3 # Copyright (c) 2016 Cisco and/or its affiliates.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
8 # http://www.apache.org/licenses/LICENSE-2.0
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
16 """Traffic script for ICMPv6 echo test."""
21 # pylint: disable=no-name-in-module
22 # pylint: disable=import-error
23 logging.getLogger("scapy.runtime").setLevel(logging.ERROR)
25 from scapy.all import Ether
26 from scapy.layers.inet6 import IPv6, ICMPv6ND_NA, ICMPv6ND_NS
27 from scapy.layers.inet6 import ICMPv6NDOptDstLLAddr
28 from scapy.layers.inet6 import ICMPv6EchoRequest, ICMPv6EchoReply
30 from resources.libraries.python.PacketVerifier import RxQueue, TxQueue
31 from resources.libraries.python.PacketVerifier import checksum_equal
32 from resources.libraries.python.TrafficScriptArg import TrafficScriptArg
36 args = TrafficScriptArg(['src_mac', 'dst_mac', 'src_ip', 'dst_ip'])
38 rxq = RxQueue(args.get_arg('rx_if'))
39 txq = TxQueue(args.get_arg('tx_if'))
41 src_mac = args.get_arg('src_mac')
42 dst_mac = args.get_arg('dst_mac')
43 src_ip = args.get_arg('src_ip')
44 dst_ip = args.get_arg('dst_ip')
50 # send ICMPv6 neighbor advertisement message
51 pkt_send = (Ether(src=src_mac, dst='ff:ff:ff:ff:ff:ff') /
52 IPv6(src=src_ip, dst='ff02::1:ff00:2') /
53 ICMPv6ND_NA(tgt=src_ip, R=0) /
54 ICMPv6NDOptDstLLAddr(lladdr=src_mac))
55 sent_packets.append(pkt_send)
58 # send ICMPv6 echo request
59 pkt_send = (Ether(src=src_mac, dst=dst_mac) /
60 IPv6(src=src_ip, dst=dst_ip) /
61 ICMPv6EchoRequest(id=echo_id, seq=echo_seq))
62 sent_packets.append(pkt_send)
65 # receive ICMPv6 echo reply
67 ether = rxq.recv(2, sent_packets)
69 raise RuntimeError('ICMPv6 echo reply Rx timeout')
71 if ether.haslayer(ICMPv6ND_NS):
72 # read another packet in the queue if the current one is ICMPv6ND_NS
75 # otherwise process the current packet
78 if not ether.haslayer(IPv6):
79 raise RuntimeError('Unexpected packet with no IPv6 received {0}'.
80 format(ether.__repr__()))
84 if not ipv6.haslayer(ICMPv6EchoReply):
85 raise RuntimeError('Unexpected packet with no ICMPv6 echo reply '
86 'received {0}'.format(ipv6.__repr__()))
88 icmpv6 = ipv6[ICMPv6EchoReply]
90 # check identifier and sequence number
91 if icmpv6.id != echo_id or icmpv6.seq != echo_seq:
92 raise RuntimeError('Invalid ICMPv6 echo reply received ID {0} seq {1} '
93 'should be ID {2} seq {3}'.
94 format(icmpv6.id, icmpv6.seq, echo_id, echo_seq))
99 tmp = ICMPv6EchoReply(str(icmpv6))
100 if not checksum_equal(tmp.cksum, cksum):
101 raise RuntimeError('Invalid checksum {0} should be {1}'.
102 format(cksum, tmp.cksum))
107 if __name__ == "__main__":