summaryrefslogtreecommitdiff
path: root/net/test/forwarding_test.py
blob: b35e19f03e7a7da17af3dd38c75d9171a2e7cb63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#!/usr/bin/python
#
# Copyright 2015 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import itertools
import random
import unittest

from socket import *

import multinetwork_base
import net_test
import packets

class ForwardingTest(multinetwork_base.MultiNetworkBaseTest):
  TCP_TIME_WAIT = 6

  def ForwardBetweenInterfaces(self, enabled, iface1, iface2):
    for iif, oif in itertools.permutations([iface1, iface2]):
      self.iproute.IifRule(6, enabled, self.GetInterfaceName(iif),
                           self._TableForNetid(oif), self.PRIORITY_IIF)

  def setUp(self):
    self.SetSysctl("/proc/sys/net/ipv6/conf/all/forwarding", 1)

  def tearDown(self):
    self.SetSysctl("/proc/sys/net/ipv6/conf/all/forwarding", 0)

  """Checks that IPv6 forwarding works for UDP packets and is not broken by early demux.

  Relevant kernel commits:
    upstream:
      5425077d73e0c8e net: ipv6: Add early demux handler for UDP unicast
      0bd84065b19bca1 net: ipv6: Fix UDP early demux lookup with udp_l3mdev_accept=0
      Ifa9c2ddfaa5b51 net: ipv6: reset daddr and dport in sk if connect() fails
  """
  def CheckForwardingUdp(self, netid, iface1, iface2):
    # TODO: Make a test for IPv4
    # 1. Make version as an argument. Pick address to bind from array based
    #    on version.
    # 2. The prefix length of the address is hardcoded to /64. Use the subnet
    #    mask there instead.
    # 3. We recreate the address with SendRA, which obviously only works for
    #    IPv6. Use AddAddress for IPv4.

    # Create a UDP socket and bind to it
    version = 6
    s = net_test.UDPSocket(AF_INET6)
    self.SetSocketMark(s, netid)
    s.setsockopt(SOL_SOCKET, SO_REUSEADDR, 1)
    s.bind(("::", 53))

    remoteaddr = self.GetRemoteAddress(version)
    myaddr = self.MyAddress(version, netid)

    try:
      # Delete address and check if packet is forwarded
      # (and not dropped because an incorrect socket match happened)
      self.iproute.DelAddress(myaddr, 64, self.ifindices[netid])
      hoplimit = 39
      desc, udp_pkt = packets.UDPWithOptions(version, myaddr, remoteaddr, 53)
      # Decrements the hoplimit of a packet to simulate forwarding.
      desc_fwded, udp_fwd = packets.UDPWithOptions(version, myaddr, remoteaddr,
                                                   53, hoplimit - 1)
      msg = "Sent %s, expected %s" % (desc, desc_fwded)
      self.ReceivePacketOn(iface1, udp_pkt)
      self.ExpectPacketOn(iface2, msg, udp_fwd)
    finally:
      # Recreate the address.
      self.SendRA(netid)
      s.close()

  """Checks that IPv6 forwarding doesn't crash the system.

  Relevant kernel commits:
    upstream net-next:
      e7eadb4 ipv6: inet6_sk() should use sk_fullsock()
    android-3.10:
      feee3c1 ipv6: inet6_sk() should use sk_fullsock()
      cdab04e net: add sk_fullsock() helper
    android-3.18:
      8246f18 ipv6: inet6_sk() should use sk_fullsock()
      bea19db net: add sk_fullsock() helper
  """
  def CheckForwardingCrashTcp(self, netid, iface1, iface2):
    version = 6
    listensocket = net_test.IPv6TCPSocket()
    self.SetSocketMark(listensocket, netid)
    listenport = net_test.BindRandomPort(version, listensocket)

    remoteaddr = self.GetRemoteAddress(version)
    myaddr = self.MyAddress(version, netid)

    desc, syn = packets.SYN(listenport, version, remoteaddr, myaddr)
    synack_desc, synack = packets.SYNACK(version, myaddr, remoteaddr, syn)
    msg = "Sent %s, expected %s" % (desc, synack_desc)
    reply = self._ReceiveAndExpectResponse(netid, syn, synack, msg)

    establishing_ack = packets.ACK(version, remoteaddr, myaddr, reply)[1]
    self.ReceivePacketOn(netid, establishing_ack)
    accepted, peer = listensocket.accept()
    remoteport = accepted.getpeername()[1]

    accepted.close()
    desc, fin = packets.FIN(version, myaddr, remoteaddr, establishing_ack)
    self.ExpectPacketOn(netid, msg + ": expecting %s after close" % desc, fin)

    desc, finack = packets.FIN(version, remoteaddr, myaddr, fin)
    self.ReceivePacketOn(netid, finack)

    # Check our socket is now in TIME_WAIT.
    sockets = self.ReadProcNetSocket("tcp6")
    mysrc = "%s:%04X" % (net_test.FormatSockStatAddress(myaddr), listenport)
    mydst = "%s:%04X" % (net_test.FormatSockStatAddress(remoteaddr), remoteport)
    state = None
    sockets = [s for s in sockets if s[0] == mysrc and s[1] == mydst]
    self.assertEqual(1, len(sockets))
    self.assertEqual("%02X" % self.TCP_TIME_WAIT, sockets[0][2])

    # Remove our IP address.
    try:
      self.iproute.DelAddress(myaddr, 64, self.ifindices[netid])

      self.ReceivePacketOn(iface1, finack)
      self.ReceivePacketOn(iface1, establishing_ack)
      self.ReceivePacketOn(iface1, establishing_ack)
      # No crashes? Good.

    finally:
      # Put back our IP address.
      self.SendRA(netid)
      listensocket.close()

  def CheckForwardingHandlerByProto(self, protocol, netid, iif, oif):
    if protocol == IPPROTO_UDP:
      self.CheckForwardingUdp(netid, iif, oif)
    elif protocol == IPPROTO_TCP:
      self.CheckForwardingCrashTcp(netid, iif, oif)
    else:
      raise NotImplementedError

  def CheckForwardingByProto(self, proto):
    # Run the test a few times as it doesn't crash/hang the first time.
    for netids in itertools.permutations(self.tuns):
      # Pick an interface to send traffic on and two to forward traffic between.
      netid, iface1, iface2 = random.sample(netids, 3)
      self.ForwardBetweenInterfaces(True, iface1, iface2)
      try:
        self.CheckForwardingHandlerByProto(proto, netid, iface1, iface2)
      finally:
        self.ForwardBetweenInterfaces(False, iface1, iface2)

  def testForwardingUdp(self):
    self.CheckForwardingByProto(IPPROTO_UDP)

  def testForwardingCrashTcp(self):
    self.CheckForwardingByProto(IPPROTO_TCP)

if __name__ == "__main__":
  unittest.main()