fix(Pylint): Small fixes
[csit.git] / GPL / traffic_scripts / lisp / lisp_check.py
1 #!/usr/bin/env python3
2
3 # Copyright (c) 2021 Cisco and/or its affiliates.
4 #
5 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
6 #
7 # Licensed under the Apache License 2.0 or
8 # GNU General Public License v2.0 or later;  you may not use this file
9 # except in compliance with one of these Licenses. You
10 # may obtain a copy of the Licenses at:
11 #
12 #     http://www.apache.org/licenses/LICENSE-2.0
13 #     https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
14 #
15 # Note: If this file is linked with Scapy, which is GPLv2+, your use of it
16 # must be under GPLv2+.  If at any point in the future it is no longer linked
17 # with Scapy (or other GPLv2+ licensed software), you are free to choose
18 # Apache 2.
19 #
20 # Unless required by applicable law or agreed to in writing, software
21 # distributed under the License is distributed on an "AS IS" BASIS,
22 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 # See the License for the specific language governing permissions and
24 # limitations under the License.
25
26 """Traffic script that sends an ICMP/ICMPv6 packet out one interface, receives
27 a LISP-encapsulated packet on the other interface and verifies received packet.
28 """
29
30 import sys
31
32 from scapy.all import bind_layers, Packet
33 from scapy.fields import FlagsField, BitField, IntField
34 from scapy.layers.inet import ICMP, IP, UDP
35 from scapy.layers.inet6 import ICMPv6EchoRequest
36 from scapy.layers.inet6 import IPv6, ICMPv6ND_NS, ICMPv6MLReport2, ICMPv6ND_RA
37 from scapy.layers.l2 import Ether
38 from scapy.packet import Raw
39
40 from ..PacketVerifier import RxQueue, TxQueue
41 from ..TrafficScriptArg import TrafficScriptArg
42 from ..ValidIp import valid_ipv4, valid_ipv6
43
44
45 class LispHeader(Packet):
46     """Scapy header for the LISP Layer."""
47
48     name = u"Lisp Header"
49     fields_desc = [
50         FlagsField(
51             u"flags", None, 8, [u"N", u"L", u"E", u"V", u"I", u"", u"", u""]
52         ),
53         BitField(u"nonce/map_version", 0, size=24),
54         IntField(u"instance_id/locator_status_bits", 0)]
55
56
57 class LispInnerIP(IP):
58     """Scapy inner LISP layer for IPv4-in-IPv4."""
59
60     name = u"Lisp Inner Layer - IPv4"
61
62
63 class LispInnerIPv6(IPv6):
64     """Scapy inner LISP layer for IPv6-in-IPv6."""
65
66     name = u"Lisp Inner Layer - IPv6"
67
68
69 def main():
70     """Send IP ICMP packet from one traffic generator interface to the other.
71
72     :raises RuntimeError: If the received packet is not correct.
73     """
74
75     args = TrafficScriptArg(
76         [
77             u"tg_src_mac", u"tg_dst_mac", u"src_ip", u"dst_ip", u"dut_if1_mac",
78             u"dut_if2_mac", u"src_rloc", u"dst_rloc"
79         ],
80         [u"ot_mode"]
81     )
82
83     tx_src_mac = args.get_arg(u"tg_src_mac")
84     tx_dst_mac = args.get_arg(u"dut_if1_mac")
85     rx_dst_mac = args.get_arg(u"tg_dst_mac")
86     rx_src_mac = args.get_arg(u"dut_if2_mac")
87     src_ip = args.get_arg(u"src_ip")
88     dst_ip = args.get_arg(u"dst_ip")
89     src_rloc = args.get_arg(u"src_rloc")
90     dst_rloc = args.get_arg(u"dst_rloc")
91     tx_if = args.get_arg(u"tx_if")
92     rx_if = args.get_arg(u"rx_if")
93     ot_mode = args.get_arg(u"ot_mode")
94
95     rxq = RxQueue(rx_if)
96     txq = TxQueue(tx_if)
97
98     pkt_raw = Ether(src=tx_src_mac, dst=tx_dst_mac)
99
100     if valid_ipv4(src_ip) and valid_ipv4(dst_ip):
101         pkt_raw /= IP(src=src_ip, dst=dst_ip)
102         pkt_raw /= ICMP()
103         ip_format = IP
104         lisp_layer = LispInnerIP
105     elif valid_ipv6(src_ip) and valid_ipv6(dst_ip):
106         pkt_raw /= IPv6(src=src_ip, dst=dst_ip)
107         pkt_raw /= ICMPv6EchoRequest()
108         ip_format = IPv6
109         lisp_layer = LispInnerIPv6
110     else:
111         raise ValueError(u"IP not in correct format")
112
113     bind_layers(UDP, LispHeader, dport=4341)
114     bind_layers(LispHeader, lisp_layer)
115
116     pkt_raw /= Raw()
117     sent_packets = list()
118     sent_packets.append(pkt_raw)
119     txq.send(pkt_raw)
120
121     while True:
122         if tx_if == rx_if:
123             ether = rxq.recv(2, ignore=sent_packets)
124         else:
125             ether = rxq.recv(2)
126
127         if ether is None:
128             raise RuntimeError(u"ICMP echo Rx timeout")
129
130         if ether.haslayer(ICMPv6ND_NS):
131             # read another packet in the queue if the current one is ICMPv6ND_NS
132             continue
133         elif ether.haslayer(ICMPv6MLReport2):
134             # read another packet in the queue if the current one is
135             # ICMPv6MLReport2
136             continue
137         elif ether.haslayer(ICMPv6ND_RA):
138             # read another packet in the queue if the current one is
139             # ICMPv6ND_RA
140             continue
141
142         # otherwise process the current packet
143         break
144
145     if rx_dst_mac == ether[Ether].dst and rx_src_mac == ether[Ether].src:
146         print(u"MAC addresses match.")
147     else:
148         raise RuntimeError(f"Matching packet unsuccessful: {ether!r}")
149
150     ip = ether.payload
151
152     if ot_mode == u"6to4":
153         if not isinstance(ip, IP):
154             raise RuntimeError(f"Not an IP packet received {ip!r}")
155     elif ot_mode == u"4to6":
156         if not isinstance(ip, IPv6):
157             raise RuntimeError(f"Not an IP packet received {ip!r}")
158     elif not isinstance(ip, ip_format):
159         raise RuntimeError(f"Not an IP packet received {ip!r}")
160
161     lisp = ether.getlayer(lisp_layer)
162     if not lisp:
163         raise RuntimeError("Lisp layer not present or parsing failed.")
164
165     # Compare data from packets
166     if src_ip == lisp.src:
167         print(u"Source IP matches source EID.")
168     else:
169         raise RuntimeError(
170             f"Matching Src IP unsuccessful: {src_ip} != {lisp.src}"
171         )
172
173     if dst_ip == lisp.dst:
174         print(u"Destination IP matches destination EID.")
175     else:
176         raise RuntimeError(
177             f"Matching Dst IP unsuccessful: {dst_ip} != {lisp.dst}"
178         )
179
180     if src_rloc == ip.src:
181         print(u"Source RLOC matches configuration.")
182     else:
183         raise RuntimeError(
184             f"Matching Src RLOC unsuccessful: {src_rloc} != {ip.src}"
185         )
186
187     if dst_rloc == ip.dst:
188         print(u"Destination RLOC matches configuration.")
189     else:
190         raise RuntimeError(
191             f"Matching dst RLOC unsuccessful: {dst_rloc} != {ip.dst}"
192         )
193
194     sys.exit(0)
195
196
197 if __name__ == u"__main__":
198     main()