blob: cb17e2d90801af4ded6355c524059740cae68898 [file] [log] [blame]
Klement Sekeraf62ae122016-10-11 11:47:09 +02001import os
Dmitry Valter71d02aa2023-01-27 12:49:55 +00002import shutil
Paul Vinciguerra582eac52020-04-03 12:18:40 -04003import socket
snaramre5d4b8912019-12-13 23:39:35 +00004from socket import inet_pton, inet_ntop
Klement Sekerab91017a2017-02-09 06:04:36 +01005import struct
Paul Vinciguerra582eac52020-04-03 12:18:40 -04006import time
Klement Sekera97f6edc2017-01-12 07:17:01 +01007from traceback import format_exc, format_stack
Dave Wallace8800f732023-08-31 00:47:44 -04008from sh import tshark
9from pathlib import Path
Paul Vinciguerraa7427ec2019-03-10 10:04:23 -070010
Klement Sekerab23ffd72021-05-31 16:08:53 +020011from config import config
Klement Sekera0e3c0de2016-09-29 14:43:44 +020012from scapy.utils import wrpcap, rdpcap, PcapReader
Klement Sekera97f6edc2017-01-12 07:17:01 +010013from scapy.plist import PacketList
Klement Sekeraf62ae122016-10-11 11:47:09 +020014from vpp_interface import VppInterface
Neale Ranns6197cb72021-06-03 14:43:21 +000015from vpp_papi import VppEnum
Klement Sekeraf62ae122016-10-11 11:47:09 +020016
Matej Klotton0178d522016-11-04 11:11:44 +010017from scapy.layers.l2 import Ether, ARP
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020018from scapy.layers.inet6 import (
19 IPv6,
20 ICMPv6ND_NS,
21 ICMPv6ND_NA,
22 ICMPv6NDOptSrcLLAddr,
23 ICMPv6NDOptDstLLAddr,
24 ICMPv6ND_RA,
25 RouterAlert,
26 IPv6ExtHdrHopByHop,
27)
Klement Sekera26cd0242022-02-18 10:35:08 +000028from util import ppp, ppc, UnexpectedPacketError
Neale Ranns75152282017-01-09 01:00:45 -080029from scapy.utils6 import in6_getnsma, in6_getnsmac, in6_ismaddr
Klement Sekeraf62ae122016-10-11 11:47:09 +020030
Klement Sekerada505f62017-01-04 12:58:53 +010031
Klement Sekeraacb9b8e2017-02-14 02:55:31 +010032class CaptureTimeoutError(Exception):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020033 """Exception raised if capture or packet doesn't appear within timeout"""
34
Klement Sekeraacb9b8e2017-02-14 02:55:31 +010035 pass
36
37
Klement Sekera65cc8c02016-12-18 15:49:54 +010038def is_ipv6_misc(p):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020039 """Is packet one of uninteresting IPv6 broadcasts?"""
Klement Sekera65cc8c02016-12-18 15:49:54 +010040 if p.haslayer(ICMPv6ND_RA):
Neale Ranns75152282017-01-09 01:00:45 -080041 if in6_ismaddr(p[IPv6].dst):
42 return True
Klement Sekera65cc8c02016-12-18 15:49:54 +010043 if p.haslayer(IPv6ExtHdrHopByHop):
44 for o in p[IPv6ExtHdrHopByHop].options:
45 if isinstance(o, RouterAlert):
46 return True
47 return False
48
49
Klement Sekeraf62ae122016-10-11 11:47:09 +020050class VppPGInterface(VppInterface):
51 """
52 VPP packet-generator interface
53 """
54
55 @property
56 def pg_index(self):
57 """packet-generator interface index assigned by VPP"""
58 return self._pg_index
59
60 @property
Mohsin Kazmi22e9cfd2019-07-23 11:54:48 +020061 def gso_enabled(self):
62 """gso enabled on packet-generator interface"""
63 if self._gso_enabled == 0:
64 return "gso-disabled"
65 return "gso-enabled"
66
67 @property
68 def gso_size(self):
69 """gso size on packet-generator interface"""
70 return self._gso_size
71
72 @property
Mohsin Kazmif382b062020-08-11 15:00:44 +020073 def coalesce_is_enabled(self):
74 """coalesce enabled on packet-generator interface"""
75 if self._coalesce_enabled == 0:
76 return "coalesce-disabled"
77 return "coalesce-enabled"
78
79 @property
Klement Sekeraf62ae122016-10-11 11:47:09 +020080 def out_path(self):
81 """pcap file path - captured packets"""
82 return self._out_path
83
Klement Sekera7ba9fae2021-03-31 13:36:38 +020084 def get_in_path(self, worker):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020085 """pcap file path - injected packets"""
Klement Sekera7ba9fae2021-03-31 13:36:38 +020086 if worker is not None:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020087 return "%s/pg%u_wrk%u_in.pcap" % (self.test.tempdir, self.pg_index, worker)
Klement Sekera7ba9fae2021-03-31 13:36:38 +020088 return "%s/pg%u_in.pcap" % (self.test.tempdir, self.pg_index)
Klement Sekeraf62ae122016-10-11 11:47:09 +020089
90 @property
91 def capture_cli(self):
92 """CLI string to start capture on this interface"""
93 return self._capture_cli
94
Klement Sekera7ba9fae2021-03-31 13:36:38 +020095 def get_cap_name(self, worker=None):
96 """return capture name for this interface and given worker"""
97 if worker is not None:
98 return self._cap_name + "-worker%d" % worker
Klement Sekeraf62ae122016-10-11 11:47:09 +020099 return self._cap_name
100
Klement Sekera7ba9fae2021-03-31 13:36:38 +0200101 def get_input_cli(self, nb_replays=None, worker=None):
102 """return CLI string to load the injected packets"""
103 input_cli = "packet-generator new pcap %s source pg%u name %s" % (
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200104 self.get_in_path(worker),
105 self.pg_index,
106 self.get_cap_name(worker),
107 )
Klement Sekera7ba9fae2021-03-31 13:36:38 +0200108 if nb_replays is not None:
109 return "%s limit %d" % (input_cli, nb_replays)
110 if worker is not None:
111 return "%s worker %d" % (input_cli, worker)
112 return input_cli
Klement Sekeraf62ae122016-10-11 11:47:09 +0200113
Klement Sekera778c2762016-11-08 02:00:28 +0100114 @property
115 def in_history_counter(self):
116 """Self-incrementing counter used when renaming old pcap files"""
117 v = self._in_history_counter
118 self._in_history_counter += 1
119 return v
120
121 @property
122 def out_history_counter(self):
123 """Self-incrementing counter used when renaming old pcap files"""
124 v = self._out_history_counter
125 self._out_history_counter += 1
126 return v
127
Neale Ranns6197cb72021-06-03 14:43:21 +0000128 def __init__(self, test, pg_index, gso, gso_size, mode):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200129 """Create VPP packet-generator interface"""
Klement Sekera7ba9fae2021-03-31 13:36:38 +0200130 super().__init__(test)
Klement Sekeraa98346f2018-05-16 10:52:45 +0200131
Neale Ranns6197cb72021-06-03 14:43:21 +0000132 r = test.vapi.pg_create_interface_v2(pg_index, gso, gso_size, mode)
Klement Sekera31da2e32018-06-24 22:49:55 +0200133 self.set_sw_if_index(r.sw_if_index)
134
Matej Klottonc5bf07f2016-11-23 15:27:17 +0100135 self._in_history_counter = 0
136 self._out_history_counter = 0
Klement Sekera97f6edc2017-01-12 07:17:01 +0100137 self._out_assert_counter = 0
Matej Klottonc5bf07f2016-11-23 15:27:17 +0100138 self._pg_index = pg_index
Mohsin Kazmi22e9cfd2019-07-23 11:54:48 +0200139 self._gso_enabled = gso
140 self._gso_size = gso_size
Mohsin Kazmif382b062020-08-11 15:00:44 +0200141 self._coalesce_enabled = 0
Klement Sekera74dcdbf2016-11-14 09:49:09 +0100142 self._out_file = "pg%u_out.pcap" % self.pg_index
Klement Sekera778c2762016-11-08 02:00:28 +0100143 self._out_path = self.test.tempdir + "/" + self._out_file
Klement Sekeraf62ae122016-10-11 11:47:09 +0200144 self._capture_cli = "packet-generator capture pg%u pcap %s" % (
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200145 self.pg_index,
146 self.out_path,
147 )
148 self._cap_name = "pcap%u-sw_if_index-%s" % (self.pg_index, self.sw_if_index)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200149
Dave Wallace8800f732023-08-31 00:47:44 -0400150 def link_pcap_file(self, path, direction, counter):
Klement Sekerab23ffd72021-05-31 16:08:53 +0200151 if not config.keep_pcaps:
Klement Sekerab23ffd72021-05-31 16:08:53 +0200152 return
Dave Wallace8800f732023-08-31 00:47:44 -0400153 filename = os.path.basename(path)
154 test_name = (
155 self.test_name
156 if hasattr(self, "test_name")
157 else f"suite{self.test.__name__}"
158 )
159 name = f"{self.test.tempdir}/{test_name}.[timestamp:{time.time():.8f}].{self.name}-{direction}-{counter:04}.{filename}"
160 if os.path.isfile(name):
161 self.test.logger.debug(
162 f"Skipping hard link creation: {name} already exists!"
163 )
164 return
Paul Vinciguerra4b58a862019-05-28 15:40:47 -0400165 try:
166 if os.path.isfile(path):
Dave Wallace8800f732023-08-31 00:47:44 -0400167 self.test.logger.debug(f"Creating hard link {path}->{name}")
168 os.link(path, name)
Paul Vinciguerra4b58a862019-05-28 15:40:47 -0400169 except OSError:
Dave Wallace8800f732023-08-31 00:47:44 -0400170 self.test.logger.debug(
171 f"OSError: Could not create hard link {path}->{name}"
172 )
173
174 def remove_old_pcap_file(self, path):
175 try:
176 self.test.logger.debug(f"Removing {path}")
177 os.remove(path)
178 except OSError:
179 self.test.logger.debug(f"OSError: Could not remove {path}")
180 return
181
182 def decode_pcap_files(self, pcap_dir, filename_prefix):
183 # Generate tshark packet trace of testcase pcap files
184 pg_decode = f"{pcap_dir}/pcap-decode-{filename_prefix}.txt"
185 if os.path.isfile(pg_decode):
186 self.test.logger.debug(
187 f"The pg streams decode file already exists: {pg_decode}"
188 )
189 return
190 self.test.logger.debug(
191 f"Generating testcase pg streams decode file: {pg_decode}"
192 )
193 ts_opts = "-Vr"
194 for p in sorted(Path(pcap_dir).glob(f"{filename_prefix}*.pcap")):
195 self.test.logger.debug(f"Decoding {p}")
196 with open(f"{pg_decode}", "a", buffering=1) as f:
197 print(f"tshark {ts_opts} {p}", file=f)
198 tshark(ts_opts, f"{p}", _out=f)
199 print("", file=f)
Paul Vinciguerra4b58a862019-05-28 15:40:47 -0400200
Klement Sekerada505f62017-01-04 12:58:53 +0100201 def enable_capture(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200202 """Enable capture on this packet-generator interface
203 of at most n packets.
204 If n < 0, this is no limit
Alexandre Poirriera618e202019-05-07 10:43:41 +0200205 """
Andrew Yourtchenkocb265c62019-07-25 10:03:51 +0000206 # disable the capture to flush the capture
207 self.disable_capture()
Dave Wallace8800f732023-08-31 00:47:44 -0400208 self.remove_old_pcap_file(self.out_path)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200209 # FIXME this should be an API, but no such exists atm
210 self.test.vapi.cli(self.capture_cli)
Klement Sekera0e3c0de2016-09-29 14:43:44 +0200211 self._pcap_reader = None
Klement Sekeraf62ae122016-10-11 11:47:09 +0200212
Alexandre Poirriera618e202019-05-07 10:43:41 +0200213 def disable_capture(self):
214 self.test.vapi.cli("%s disable" % self.capture_cli)
215
Mohsin Kazmif382b062020-08-11 15:00:44 +0200216 def coalesce_enable(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200217 """Enable packet coalesce on this packet-generator interface"""
Mohsin Kazmif382b062020-08-11 15:00:44 +0200218 self._coalesce_enabled = 1
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200219 self.test.vapi.pg_interface_enable_disable_coalesce(self.sw_if_index, 1)
Mohsin Kazmif382b062020-08-11 15:00:44 +0200220
221 def coalesce_disable(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200222 """Disable packet coalesce on this packet-generator interface"""
Mohsin Kazmif382b062020-08-11 15:00:44 +0200223 self._coalesce_enabled = 0
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200224 self.test.vapi.pg_interface_enable_disable_coalesce(self.sw_if_index, 0)
Mohsin Kazmif382b062020-08-11 15:00:44 +0200225
Klement Sekera4ecbf102019-07-31 13:14:16 +0000226 def add_stream(self, pkts, nb_replays=None, worker=None):
Klement Sekeraf62ae122016-10-11 11:47:09 +0200227 """
228 Add a stream of packets to this packet-generator
229
230 :param pkts: iterable packets
231
232 """
Dave Wallace8800f732023-08-31 00:47:44 -0400233 in_pcap = self.get_in_path(worker)
234 if os.path.isfile(in_pcap):
235 self.remove_old_pcap_file(in_pcap)
236 wrpcap(in_pcap, pkts)
Klement Sekera3ff6ffc2021-04-01 18:19:29 +0200237 self.test.register_pcap(self, worker)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200238 # FIXME this should be an API, but no such exists atm
Klement Sekera7ba9fae2021-03-31 13:36:38 +0200239 self.test.vapi.cli(self.get_input_cli(nb_replays, worker))
Dave Wallace8800f732023-08-31 00:47:44 -0400240 self.link_pcap_file(self.get_in_path(worker), "inp", self.in_history_counter)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200241
Klement Sekera97f6edc2017-01-12 07:17:01 +0100242 def generate_debug_aid(self, kind):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200243 """Create a hardlink to the out file with a counter and a file
Klement Sekera97f6edc2017-01-12 07:17:01 +0100244 containing stack trace to ease debugging in case of multiple capture
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200245 files present."""
246 self.test.logger.debug("Generating debug aid for %s on %s" % (kind, self._name))
247 link_path, stack_path = [
248 "%s/debug_%s_%s_%s.%s"
249 % (self.test.tempdir, self._name, self._out_assert_counter, kind, suffix)
250 for suffix in ["pcap", "stack"]
251 ]
Klement Sekera97f6edc2017-01-12 07:17:01 +0100252 os.link(self.out_path, link_path)
253 with open(stack_path, "w") as f:
254 f.writelines(format_stack())
255 self._out_assert_counter += 1
256
Klement Sekeradab231a2016-12-21 08:50:14 +0100257 def _get_capture(self, timeout, filter_out_fn=is_ipv6_misc):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200258 """Helper method to get capture and filter it"""
Klement Sekeraf62ae122016-10-11 11:47:09 +0200259 try:
Klement Sekeradab231a2016-12-21 08:50:14 +0100260 if not self.wait_for_capture_file(timeout):
261 return None
Klement Sekeraf62ae122016-10-11 11:47:09 +0200262 output = rdpcap(self.out_path)
Dave Wallace8800f732023-08-31 00:47:44 -0400263 self.test.logger.debug(f"Capture has {len(output.res)} packets")
Klement Sekeradab231a2016-12-21 08:50:14 +0100264 except:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200265 self.test.logger.debug(
266 "Exception in scapy.rdpcap (%s): %s" % (self.out_path, format_exc())
267 )
Klement Sekeradab231a2016-12-21 08:50:14 +0100268 return None
Klement Sekera65cc8c02016-12-18 15:49:54 +0100269 before = len(output.res)
Klement Sekeradab231a2016-12-21 08:50:14 +0100270 if filter_out_fn:
271 output.res = [p for p in output.res if not filter_out_fn(p)]
Klement Sekera97f6edc2017-01-12 07:17:01 +0100272 removed = before - len(output.res)
Klement Sekera65cc8c02016-12-18 15:49:54 +0100273 if removed:
274 self.test.logger.debug(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200275 "Filtered out %s packets from capture (returning %s)"
276 % (removed, len(output.res))
277 )
Klement Sekeraf62ae122016-10-11 11:47:09 +0200278 return output
Matej Klotton0178d522016-11-04 11:11:44 +0100279
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200280 def get_capture(
281 self, expected_count=None, remark=None, timeout=1, filter_out_fn=is_ipv6_misc
282 ):
283 """Get captured packets
Klement Sekeradab231a2016-12-21 08:50:14 +0100284
285 :param expected_count: expected number of packets to capture, if None,
286 then self.test.packet_count_for_dst_pg_idx is
287 used to lookup the expected count
288 :param remark: remark printed into debug logs
289 :param timeout: how long to wait for packets
290 :param filter_out_fn: filter applied to each packet, packets for which
291 the filter returns True are removed from capture
292 :returns: iterable packets
293 """
294 remaining_time = timeout
295 capture = None
296 name = self.name if remark is None else "%s (%s)" % (self.name, remark)
297 based_on = "based on provided argument"
298 if expected_count is None:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200299 expected_count = self.test.get_packet_count_for_if_idx(self.sw_if_index)
Klement Sekeradab231a2016-12-21 08:50:14 +0100300 based_on = "based on stored packet_infos"
Klement Sekerac86fa022017-01-02 09:03:47 +0100301 if expected_count == 0:
302 raise Exception(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200303 "Internal error, expected packet count for %s is 0!" % name
304 )
305 self.test.logger.debug(
306 "Expecting to capture %s (%s) packets on %s"
307 % (expected_count, based_on, name)
308 )
Klement Sekeradab231a2016-12-21 08:50:14 +0100309 while remaining_time > 0:
310 before = time.time()
311 capture = self._get_capture(remaining_time, filter_out_fn)
312 elapsed_time = time.time() - before
313 if capture:
314 if len(capture.res) == expected_count:
315 # bingo, got the packets we expected
316 return capture
Jan Gelety057bb8c2016-12-20 17:32:45 +0100317 elif len(capture.res) > expected_count:
Dave Wallace8800f732023-08-31 00:47:44 -0400318 self.test.logger.error(
319 ppc(
320 f"Unexpected packets captured, got {len(capture.res)}, expected {expected_count}:",
321 capture,
322 )
323 )
Jan Gelety057bb8c2016-12-20 17:32:45 +0100324 break
Klement Sekera97f6edc2017-01-12 07:17:01 +0100325 else:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200326 self.test.logger.debug(
327 "Partial capture containing %s "
328 "packets doesn't match expected "
329 "count %s (yet?)" % (len(capture.res), expected_count)
330 )
Klement Sekera97f6edc2017-01-12 07:17:01 +0100331 elif expected_count == 0:
332 # bingo, got None as we expected - return empty capture
333 return PacketList()
Klement Sekeradab231a2016-12-21 08:50:14 +0100334 remaining_time -= elapsed_time
335 if capture:
Klement Sekera97f6edc2017-01-12 07:17:01 +0100336 self.generate_debug_aid("count-mismatch")
Klement Sekera26cd0242022-02-18 10:35:08 +0000337 if len(capture) > 0 and 0 == expected_count:
338 rem = f"\n{remark}" if remark else ""
339 raise UnexpectedPacketError(
Dave Wallace8800f732023-08-31 00:47:44 -0400340 capture[0],
341 f"\n({len(capture)} packets captured in total){rem} on {name}",
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200342 )
Dave Wallace8800f732023-08-31 00:47:44 -0400343 msg = f"Captured packets mismatch, captured {len(capture.res)} packets, expected {expected_count} packets on {name}:"
344 raise Exception(f"{ppc(msg, capture)}")
Klement Sekeradab231a2016-12-21 08:50:14 +0100345 else:
Klement Sekera16ce09d2022-04-23 11:34:29 +0200346 if 0 == expected_count:
347 return
Dave Wallace8800f732023-08-31 00:47:44 -0400348 raise Exception(f"No packets captured on {name} (timeout = {timeout}s)")
Klement Sekeradab231a2016-12-21 08:50:14 +0100349
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200350 def assert_nothing_captured(
351 self, timeout=1, remark=None, filter_out_fn=is_ipv6_misc
352 ):
353 """Assert that nothing unfiltered was captured on interface
Klement Sekeradab231a2016-12-21 08:50:14 +0100354
355 :param remark: remark printed into debug logs
356 :param filter_out_fn: filter applied to each packet, packets for which
357 the filter returns True are removed from capture
358 """
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200359 capture = self.get_capture(
360 0, timeout=timeout, remark=remark, filter_out_fn=filter_out_fn
361 )
Klement Sekera16ce09d2022-04-23 11:34:29 +0200362 if not capture or len(capture.res) == 0:
363 # junk filtered out, we're good
364 return
Klement Sekera9225dee2016-12-12 08:36:58 +0100365
Andrew Yourtchenko3d36f192019-10-11 12:34:12 +0000366 def wait_for_pg_stop(self):
367 # wait till packet-generator is stopped
368 # "show packet-generator" while it is still running gives this:
369 # Name Enabled Count Parameters
370 # pcap0-sw_if_inde Yes 64 limit 64, ...
371 #
372 # also have a 5-minute timeout just in case things go terribly wrong...
373 deadline = time.time() + 300
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200374 while self.test.vapi.cli("show packet-generator").find("Yes") != -1:
Andrew Yourtchenko3d36f192019-10-11 12:34:12 +0000375 self._test.sleep(0.01) # yield
376 if time.time() > deadline:
377 self.test.logger.debug("Timeout waiting for pg to stop")
378 break
379
Klement Sekera9225dee2016-12-12 08:36:58 +0100380 def wait_for_capture_file(self, timeout=1):
381 """
382 Wait until pcap capture file appears
383
384 :param timeout: How long to wait for the packet (default 1s)
385
Klement Sekeradab231a2016-12-21 08:50:14 +0100386 :returns: True/False if the file is present or appears within timeout
Klement Sekera9225dee2016-12-12 08:36:58 +0100387 """
Andrew Yourtchenko3d36f192019-10-11 12:34:12 +0000388 self.wait_for_pg_stop()
Klement Sekeraacb9b8e2017-02-14 02:55:31 +0100389 deadline = time.time() + timeout
Klement Sekera9225dee2016-12-12 08:36:58 +0100390 if not os.path.isfile(self.out_path):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200391 self.test.logger.debug(
Dave Wallace8800f732023-08-31 00:47:44 -0400392 f"Waiting for capture file {self.out_path} to appear, timeout is {timeout}s\n"
393 f"{' '.join(format_stack(limit=10))}"
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200394 )
Klement Sekera9225dee2016-12-12 08:36:58 +0100395 else:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200396 self.test.logger.debug("Capture file %s already exists" % self.out_path)
Dave Wallace8800f732023-08-31 00:47:44 -0400397 self.link_pcap_file(self.out_path, "out", self.out_history_counter)
Klement Sekeradab231a2016-12-21 08:50:14 +0100398 return True
Klement Sekeraacb9b8e2017-02-14 02:55:31 +0100399 while time.time() < deadline:
Klement Sekera9225dee2016-12-12 08:36:58 +0100400 if os.path.isfile(self.out_path):
401 break
Paul Vinciguerra0f6602c2019-03-10 09:10:54 -0700402 self._test.sleep(0) # yield
Klement Sekera9225dee2016-12-12 08:36:58 +0100403 if os.path.isfile(self.out_path):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200404 self.test.logger.debug(
405 "Capture file appeared after %fs" % (time.time() - (deadline - timeout))
406 )
Klement Sekera9225dee2016-12-12 08:36:58 +0100407 else:
408 self.test.logger.debug("Timeout - capture file still nowhere")
Klement Sekeradab231a2016-12-21 08:50:14 +0100409 return False
Dave Wallace8800f732023-08-31 00:47:44 -0400410 self.link_pcap_file(self.out_path, "out", self.out_history_counter)
Klement Sekeradab231a2016-12-21 08:50:14 +0100411 return True
Klement Sekera9225dee2016-12-12 08:36:58 +0100412
Klement Sekeraacb9b8e2017-02-14 02:55:31 +0100413 def verify_enough_packet_data_in_pcap(self):
Klement Sekerab91017a2017-02-09 06:04:36 +0100414 """
Klement Sekeraacb9b8e2017-02-14 02:55:31 +0100415 Check if enough data is available in file handled by internal pcap
416 reader so that a whole packet can be read.
Klement Sekerab91017a2017-02-09 06:04:36 +0100417
Klement Sekeraacb9b8e2017-02-14 02:55:31 +0100418 :returns: True if enough data present, else False
Klement Sekerab91017a2017-02-09 06:04:36 +0100419 """
420 orig_pos = self._pcap_reader.f.tell() # save file position
421 enough_data = False
Klement Sekeraacb9b8e2017-02-14 02:55:31 +0100422 # read packet header from pcap
423 packet_header_size = 16
424 caplen = None
425 end_pos = None
426 hdr = self._pcap_reader.f.read(packet_header_size)
427 if len(hdr) == packet_header_size:
428 # parse the capture length - caplen
Klement Sekerab91017a2017-02-09 06:04:36 +0100429 sec, usec, caplen, wirelen = struct.unpack(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200430 self._pcap_reader.endian + "IIII", hdr
431 )
Klement Sekerab91017a2017-02-09 06:04:36 +0100432 self._pcap_reader.f.seek(0, 2) # seek to end of file
433 end_pos = self._pcap_reader.f.tell() # get position at end
434 if end_pos >= orig_pos + len(hdr) + caplen:
435 enough_data = True # yay, we have enough data
Klement Sekerab91017a2017-02-09 06:04:36 +0100436 self._pcap_reader.f.seek(orig_pos, 0) # restore original position
Klement Sekeraacb9b8e2017-02-14 02:55:31 +0100437 return enough_data
Klement Sekerab91017a2017-02-09 06:04:36 +0100438
Klement Sekeradab231a2016-12-21 08:50:14 +0100439 def wait_for_packet(self, timeout, filter_out_fn=is_ipv6_misc):
Klement Sekera0e3c0de2016-09-29 14:43:44 +0200440 """
441 Wait for next packet captured with a timeout
442
443 :param timeout: How long to wait for the packet
444
445 :returns: Captured packet if no packet arrived within timeout
446 :raises Exception: if no packet arrives within timeout
447 """
Klement Sekeradab231a2016-12-21 08:50:14 +0100448 deadline = time.time() + timeout
Klement Sekera0e3c0de2016-09-29 14:43:44 +0200449 if self._pcap_reader is None:
Klement Sekeradab231a2016-12-21 08:50:14 +0100450 if not self.wait_for_capture_file(timeout):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200451 raise CaptureTimeoutError(
452 "Capture file %s did not appear within timeout" % self.out_path
453 )
Klement Sekeradab231a2016-12-21 08:50:14 +0100454 while time.time() < deadline:
455 try:
456 self._pcap_reader = PcapReader(self.out_path)
457 break
458 except:
Klement Sekerada505f62017-01-04 12:58:53 +0100459 self.test.logger.debug(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200460 "Exception in scapy.PcapReader(%s): %s"
461 % (self.out_path, format_exc())
462 )
Klement Sekeradab231a2016-12-21 08:50:14 +0100463 if not self._pcap_reader:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200464 raise CaptureTimeoutError(
465 "Capture file %s did not appear within timeout" % self.out_path
466 )
Klement Sekera0e3c0de2016-09-29 14:43:44 +0200467
Klement Sekeraacb9b8e2017-02-14 02:55:31 +0100468 poll = False
469 if timeout > 0:
470 self.test.logger.debug("Waiting for packet")
471 else:
472 poll = True
473 self.test.logger.debug("Polling for packet")
474 while time.time() < deadline or poll:
475 if not self.verify_enough_packet_data_in_pcap():
Paul Vinciguerra0f6602c2019-03-10 09:10:54 -0700476 self._test.sleep(0) # yield
Klement Sekeraacb9b8e2017-02-14 02:55:31 +0100477 poll = False
478 continue
Klement Sekera0e3c0de2016-09-29 14:43:44 +0200479 p = self._pcap_reader.recv()
480 if p is not None:
Klement Sekeradab231a2016-12-21 08:50:14 +0100481 if filter_out_fn is not None and filter_out_fn(p):
482 self.test.logger.debug(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200483 "Packet received after %ss was filtered out"
484 % (time.time() - (deadline - timeout))
485 )
Klement Sekeradab231a2016-12-21 08:50:14 +0100486 else:
Klement Sekerada505f62017-01-04 12:58:53 +0100487 self.test.logger.debug(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200488 "Packet received after %fs"
489 % (time.time() - (deadline - timeout))
490 )
Klement Sekeradab231a2016-12-21 08:50:14 +0100491 return p
Paul Vinciguerra0f6602c2019-03-10 09:10:54 -0700492 self._test.sleep(0) # yield
Klement Sekeraacb9b8e2017-02-14 02:55:31 +0100493 poll = False
Dave Wallace8800f732023-08-31 00:47:44 -0400494 self.test.logger.debug(f"Timeout ({timeout}) - no packets received")
495 raise CaptureTimeoutError(f"Packet didn't arrive within timeout ({timeout})")
Klement Sekera0e3c0de2016-09-29 14:43:44 +0200496
Matej Klotton0178d522016-11-04 11:11:44 +0100497 def create_arp_req(self):
498 """Create ARP request applicable for this interface"""
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200499 return Ether(dst="ff:ff:ff:ff:ff:ff", src=self.remote_mac) / ARP(
500 op=ARP.who_has,
501 pdst=self.local_ip4,
502 psrc=self.remote_ip4,
503 hwsrc=self.remote_mac,
504 )
Matej Klotton0178d522016-11-04 11:11:44 +0100505
Benoît Ganne2699fe22021-01-18 19:25:38 +0100506 def create_ndp_req(self, addr=None):
Matej Klotton0178d522016-11-04 11:11:44 +0100507 """Create NDP - NS applicable for this interface"""
Benoît Ganne2699fe22021-01-18 19:25:38 +0100508 if not addr:
509 addr = self.local_ip6
510 nsma = in6_getnsma(inet_pton(socket.AF_INET6, addr))
Neale Ranns465a1a32017-01-07 10:04:09 -0800511 d = inet_ntop(socket.AF_INET6, nsma)
512
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200513 return (
514 Ether(dst=in6_getnsmac(nsma))
515 / IPv6(dst=d, src=self.remote_ip6)
516 / ICMPv6ND_NS(tgt=addr)
517 / ICMPv6NDOptSrcLLAddr(lladdr=self.remote_mac)
518 )
Matej Klotton0178d522016-11-04 11:11:44 +0100519
520 def resolve_arp(self, pg_interface=None):
521 """Resolve ARP using provided packet-generator interface
522
523 :param pg_interface: interface used to resolve, if None then this
524 interface is used
525
526 """
527 if pg_interface is None:
528 pg_interface = self
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200529 self.test.logger.info(
530 "Sending ARP request for %s on port %s"
531 % (self.local_ip4, pg_interface.name)
532 )
Matej Klotton0178d522016-11-04 11:11:44 +0100533 arp_req = self.create_arp_req()
534 pg_interface.add_stream(arp_req)
535 pg_interface.enable_capture()
536 self.test.pg_start()
Klement Sekera7bb873a2016-11-18 07:38:42 +0100537 self.test.logger.info(self.test.vapi.cli("show trace"))
Klement Sekera9225dee2016-12-12 08:36:58 +0100538 try:
Klement Sekeradab231a2016-12-21 08:50:14 +0100539 captured_packet = pg_interface.wait_for_packet(1)
Klement Sekera9225dee2016-12-12 08:36:58 +0100540 except:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200541 self.test.logger.info("No ARP received on port %s" % pg_interface.name)
Matej Klotton0178d522016-11-04 11:11:44 +0100542 return
Klement Sekeradab231a2016-12-21 08:50:14 +0100543 arp_reply = captured_packet.copy() # keep original for exception
Matej Klotton0178d522016-11-04 11:11:44 +0100544 try:
545 if arp_reply[ARP].op == ARP.is_at:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200546 self.test.logger.info(
547 "VPP %s MAC address is %s " % (self.name, arp_reply[ARP].hwsrc)
548 )
Matej Klotton0178d522016-11-04 11:11:44 +0100549 self._local_mac = arp_reply[ARP].hwsrc
550 else:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200551 self.test.logger.info("No ARP received on port %s" % pg_interface.name)
Matej Klotton0178d522016-11-04 11:11:44 +0100552 except:
Klement Sekera7bb873a2016-11-18 07:38:42 +0100553 self.test.logger.error(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200554 ppp("Unexpected response to ARP request:", captured_packet)
555 )
Matej Klotton0178d522016-11-04 11:11:44 +0100556 raise
557
Benoît Ganne2699fe22021-01-18 19:25:38 +0100558 def resolve_ndp(self, pg_interface=None, timeout=1, link_layer=False):
Matej Klotton0178d522016-11-04 11:11:44 +0100559 """Resolve NDP using provided packet-generator interface
560
561 :param pg_interface: interface used to resolve, if None then this
562 interface is used
Klement Sekeradab231a2016-12-21 08:50:14 +0100563 :param timeout: how long to wait for response before giving up
Benoît Ganne2699fe22021-01-18 19:25:38 +0100564 :param link_layer: resolve for global address if False (default)
565 or for link-layer address if True
Matej Klotton0178d522016-11-04 11:11:44 +0100566
567 """
568 if pg_interface is None:
569 pg_interface = self
Benoît Ganne2699fe22021-01-18 19:25:38 +0100570 addr = self.local_ip6_ll if link_layer else self.local_ip6
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200571 self.test.logger.info(
572 "Sending NDP request for %s on port %s" % (addr, pg_interface.name)
573 )
Benoît Ganne2699fe22021-01-18 19:25:38 +0100574 ndp_req = self.create_ndp_req(addr)
Matej Klotton0178d522016-11-04 11:11:44 +0100575 pg_interface.add_stream(ndp_req)
576 pg_interface.enable_capture()
577 self.test.pg_start()
Klement Sekeradab231a2016-12-21 08:50:14 +0100578 now = time.time()
579 deadline = now + timeout
Neale Ranns82a06a92016-12-08 20:05:33 +0000580 # Enabling IPv6 on an interface can generate more than the
581 # ND reply we are looking for (namely MLD). So loop through
582 # the replies to look for want we want.
Klement Sekeradab231a2016-12-21 08:50:14 +0100583 while now < deadline:
584 try:
585 captured_packet = pg_interface.wait_for_packet(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200586 deadline - now, filter_out_fn=None
587 )
Klement Sekeradab231a2016-12-21 08:50:14 +0100588 except:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200589 self.test.logger.error("Timeout while waiting for NDP response")
Klement Sekeradab231a2016-12-21 08:50:14 +0100590 raise
591 ndp_reply = captured_packet.copy() # keep original for exception
Neale Ranns82a06a92016-12-08 20:05:33 +0000592 try:
593 ndp_na = ndp_reply[ICMPv6ND_NA]
594 opt = ndp_na[ICMPv6NDOptDstLLAddr]
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200595 self.test.logger.info(
596 "VPP %s MAC address is %s " % (self.name, opt.lladdr)
597 )
Neale Ranns82a06a92016-12-08 20:05:33 +0000598 self._local_mac = opt.lladdr
Klement Sekeradab231a2016-12-21 08:50:14 +0100599 self.test.logger.debug(self.test.vapi.cli("show trace"))
600 # we now have the MAC we've been after
601 return
Neale Ranns82a06a92016-12-08 20:05:33 +0000602 except:
603 self.test.logger.info(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200604 ppp("Unexpected response to NDP request:", captured_packet)
605 )
Klement Sekeradab231a2016-12-21 08:50:14 +0100606 now = time.time()
607
608 self.test.logger.debug(self.test.vapi.cli("show trace"))
609 raise Exception("Timeout while waiting for NDP response")