-
Notifications
You must be signed in to change notification settings - Fork 1k
[rdma] Tests traffic behavior with unknown mac #2648
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,344 @@ | ||
| import functools | ||
| import inspect | ||
| import json | ||
| import logging | ||
| import pytest | ||
| import random | ||
| import re | ||
| import time | ||
|
|
||
| import ptf.testutils as testutils | ||
| import ptf.mask as mask | ||
| import ptf.packet as packet | ||
|
|
||
| from tests.common.fixtures.ptfhost_utils import change_mac_addresses | ||
| from tests.common.fixtures.ptfhost_utils import copy_arp_responder_py | ||
| from tests.common.helpers.assertions import pytest_assert | ||
|
|
||
| logger = logging.getLogger(__name__) | ||
|
|
||
| pytestmark = [ pytest.mark.topology("t0") ] | ||
|
|
||
| TEST_PKT_CNT = 10 | ||
|
|
||
| def initClassVars(func): | ||
| """ | ||
| Automatically assign instance variables. currently handles only arg list | ||
| """ | ||
| names, varargs, keywords, defaults = inspect.getargspec(func) | ||
| @functools.wraps(func) | ||
| def wrapper(self, *args): | ||
| for name, value in list(zip(names[1:], args)): | ||
| setattr(self, name, value) | ||
|
|
||
| func(self, *args) | ||
| return wrapper | ||
|
|
||
| @pytest.fixture(autouse=True, scope="module") | ||
| def unknownMacSetup(duthosts, rand_one_dut_hostname, tbinfo): | ||
| """ | ||
| Fixture to populate all the parameters needed for the test | ||
|
|
||
| Args: | ||
| duthosts(AnsibleHost) : multi dut instance | ||
| rand_one_dut_hostname(AnsibleHost) : one of the dut instances from the multi dut | ||
| tbinfo(TestbedInfo) : testbed info | ||
|
|
||
| Yields: | ||
| setup(dict): dict of vlan, ptf, portchannel intf mappings | ||
|
|
||
| """ | ||
| duthost = duthosts[rand_one_dut_hostname] | ||
| mg_facts = duthost.get_extended_minigraph_facts(tbinfo) | ||
| # populate vlan info | ||
| vlan = dict() | ||
| vlan['addr'] = mg_facts['minigraph_vlan_interfaces'][0]['addr'] | ||
| vlan['pfx'] = mg_facts['minigraph_vlan_interfaces'][0]['prefixlen'] | ||
| vlan['ips'] = duthost.get_ip_in_range(num=1, prefix="{}/{}".format(vlan['addr'], vlan['pfx']), exclude_ips=[vlan['addr']])['ansible_facts']['generated_ips'] | ||
| vlan['hostip'] = vlan['ips'][0].split('/')[0] | ||
| vlan['ports'] = mg_facts["minigraph_vlans"].values()[0]["members"] | ||
| # populate dst intf and ptf id | ||
| ptf_portmap = mg_facts['minigraph_ptf_indices'] | ||
| dst_port = random.choice(vlan['ports']) | ||
| ptf_dst_port = ptf_portmap[dst_port] | ||
| ptf_vlan_ports = [ptf_portmap[ifname] for ifname in vlan['ports']] | ||
| # populate portchannel intf, peer address and ptf ids | ||
| pc = dict() | ||
| pc_intfs = list() | ||
| ptf_pc_ports = dict() | ||
| for key in mg_facts['minigraph_portchannels']: | ||
| value = mg_facts['minigraph_portchannels'][key] | ||
| for item in value['members']: | ||
| pc_intfs.append(item) | ||
| ptf_pc_ports[item] = (ptf_portmap[item], item, None) | ||
| pc.setdefault(key,[]).append(item) | ||
|
|
||
| for element in mg_facts['minigraph_portchannel_interfaces']: | ||
| if key in element['attachto']: | ||
| for member in pc[key]: | ||
| tmp_list = list(ptf_pc_ports[member]) | ||
| tmp_list[2] = element['peer_addr'] | ||
| ptf_pc_ports[member] = tuple(tmp_list) | ||
| break | ||
|
|
||
| setup = { 'vlan': vlan, | ||
| 'dst_port': dst_port, | ||
| 'ptf_dst_port': ptf_dst_port, | ||
| 'ptf_vlan_ports': ptf_vlan_ports, | ||
| 'pc_intfs': pc_intfs, | ||
| 'ptf_pc_ports': ptf_pc_ports | ||
| } | ||
| yield setup | ||
|
|
||
| @pytest.fixture | ||
| def flushArpFdb(duthosts, rand_one_dut_hostname): | ||
| """ | ||
| Fixture to flush all ARP and FDB entries | ||
|
|
||
| Args: | ||
| duthosts(AnsibleHost) : multi dut instance | ||
| rand_one_dut_hostname(AnsibleHost) : one of the dut instances from the multi dut | ||
neethajohn marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| """ | ||
| duthost = duthosts[rand_one_dut_hostname] | ||
| logger.info("Clear all ARP and FDB entries on the DUT") | ||
| duthost.shell("sonic-clear fdb all") | ||
| duthost.shell("ip neigh flush all") | ||
|
|
||
| yield | ||
|
|
||
| logger.info("Clear all ARP and FDB entries on the DUT") | ||
| duthost.shell("sonic-clear fdb all") | ||
| duthost.shell("ip neigh flush all") | ||
|
|
||
| @pytest.fixture(autouse=True) | ||
| def populateArp(unknownMacSetup, flushArpFdb, ptfhost, duthosts, rand_one_dut_hostname): | ||
| """ | ||
| Fixture to populate ARP entry on the DUT for the traffic destination | ||
|
|
||
| Args: | ||
| unknownMacSetup(fixture) : module scope autouse fixture for test setup | ||
| flushArpFdb(fixture) : func scope fixture | ||
| ptfhost(AnsibleHost) : ptf host instance | ||
| duthosts(AnsibleHost) : multi dut instance | ||
| rand_one_dut_hostname(AnsibleHost) : one of the dut instances from the multi dut | ||
neethajohn marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| """ | ||
| duthost = duthosts[rand_one_dut_hostname] | ||
| setup = unknownMacSetup | ||
| ptfhost.script("./scripts/remove_ip.sh") | ||
| logger.info("Populate ARP entry for dest port") | ||
| ptfhost.command("ifconfig eth{} {}".format(setup['ptf_dst_port'], setup['vlan']['ips'][0])) | ||
| ptfhost.command("ping {} -c 3".format(setup['vlan']['addr'])) | ||
|
|
||
| yield | ||
|
|
||
| logger.info("Clean up all ips on the PTF") | ||
| ptfhost.script("./scripts/remove_ip.sh") | ||
|
|
||
|
|
||
| class PreTestVerify(object): | ||
| """ Verify ARP and FDB entries are populated correctly """ | ||
| def __init__(self, duthost, dst_ip, dst_port): | ||
| """ | ||
| Args: | ||
| duthost(AnsibleHost) : dut instance | ||
| dst_ip(string): traffic dest ip | ||
| dst_port(int): ptf id for the dest port | ||
| """ | ||
| self.duthost = duthost | ||
| self.dst_ip = dst_ip | ||
| self.dst_port = dst_port | ||
| self.arp_entry = dict() | ||
|
|
||
| def _checkArpEntry(self): | ||
neethajohn marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| """ | ||
| Check if the ARP entry is present and populate the ARP to mac mapping | ||
neethajohn marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| """ | ||
| logger.info("Verify if the ARP entry is present for {}".format(self.dst_ip)) | ||
| result = self.duthost.shell("ip neigh show {}".format(self.dst_ip)) | ||
neethajohn marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| pytest_assert(result['stdout_lines'], "{} not in arp table".format(self.dst_ip)) | ||
| match = re.match("{}.*lladdr\s+(.*)\s+[A-Z]+".format(self.dst_ip), | ||
| result['stdout_lines'][0]) | ||
| pytest_assert(match, | ||
| "Regex failed while retreiving arp entry for {}".format(self.dst_ip)) | ||
| self.arp_entry.update({self.dst_ip : match.group(1)}) | ||
|
|
||
| def _checkFdbEntry(self): | ||
neethajohn marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| """ | ||
| Check if the FDB entry is missing for the port | ||
| """ | ||
| result = self.duthost.command("show mac -p {}".format(self.dst_port), | ||
| module_ignore_errors=True) | ||
| out = result['stdout'] | ||
| pytest_assert("not in list" in out) | ||
| logger.info("'{}' not present in fdb as expected".format(self.arp_entry[self.dst_ip])) | ||
|
|
||
| def verifyArpFdb(self): | ||
| """ | ||
| Validate ARP and FDB entries prior to the test run | ||
|
|
||
| Returns: | ||
| arp_entry(dict) : ARP to mac mapping | ||
| """ | ||
| self._checkArpEntry() | ||
| logger.info("Clear all FDB entries") | ||
| self.duthost.shell("sonic-clear fdb all") | ||
| time.sleep(1) | ||
| self._checkFdbEntry() | ||
| return self.arp_entry | ||
|
|
||
|
|
||
| class TrafficSendVerify(object): | ||
| """ Send traffic and check interface counters and ptf ports """ | ||
| @initClassVars | ||
| def __init__(self, duthost, ptfadapter, dst_ip, ptf_dst_port, ptf_vlan_ports, | ||
| pc_intfs, ptf_pc_ports, arp_entry, dscp): | ||
| """ | ||
| Args: | ||
| duthost(AnsibleHost) : dut instance | ||
| ptfadapter(dataplane) : ptf runner instance | ||
| dst_ip(string) : traffic dest ip | ||
| ptf_dst_port(int) : ptf index of dest port | ||
| ptf_vlan_ports(list) : ptf indices of all DUT vlan ports | ||
| pc_intfs(list) : all portchannel members | ||
| ptf_pc_ports(dict) : mapping of pc member to ptf id, peer addr | ||
| arp_entry(dict) : ARP to mac mapping | ||
| dscp(int) : dscp value to be used for the packet that gets send out | ||
| """ | ||
| self.pkts = list() | ||
| self.exp_pkts = list() | ||
| self.pkt_map = dict() | ||
| self.pre_rx_drops = dict() | ||
|
|
||
| def _constructPacket(self): | ||
| """ | ||
| Build list of packets to be sent and expected | ||
| """ | ||
| for idx, pc_info in enumerate(self.ptf_pc_ports): | ||
| udp_sport = random.randint(0, 65535) | ||
| udp_dport = random.randint(0, 65535) | ||
| src_port = self.ptf_pc_ports[pc_info][0] | ||
| src_ip = self.ptf_pc_ports[pc_info][2] | ||
| pkt = testutils.simple_udp_packet(eth_dst=self.arp_entry[self.dst_ip], | ||
| eth_src=self.ptfadapter.dataplane.get_mac(0, src_port), | ||
| ip_dst=self.dst_ip, | ||
| ip_src=src_ip, | ||
| ip_tos = self.dscp << 2, | ||
| udp_sport=udp_sport, | ||
| udp_dport=udp_dport, | ||
| ip_ttl=64 | ||
| ) | ||
| self.pkts.append(pkt) | ||
| tmp_pkt = testutils.simple_udp_packet(eth_dst=self.arp_entry[self.dst_ip], | ||
| eth_src=self.ptfadapter.dataplane.get_mac(0, src_port), | ||
| ip_dst=self.dst_ip, | ||
| ip_src=src_ip, | ||
| ip_tos = self.dscp << 2, | ||
| udp_sport=udp_sport, | ||
| udp_dport=udp_dport, | ||
| ip_ttl=63 | ||
| ) | ||
|
|
||
| tmp_pkt = mask.Mask(tmp_pkt) | ||
| tmp_pkt.set_do_not_care_scapy(packet.IP, "chksum") | ||
| self.exp_pkts.append(tmp_pkt) | ||
| self.pkt_map[pkt] = pc_info | ||
|
|
||
| def _parseCntrs(self): | ||
| """ | ||
| Parse the port stats | ||
|
|
||
| Returns: | ||
| stats(dict) : mapping of interface to interface counters | ||
| """ | ||
| result = self.duthost.command("portstat -j")["stdout"] | ||
| match = re.search("Last cached time was.*\n", result) | ||
| if match: | ||
| result = re.sub("Last cached time was.*\n", "", result) | ||
| stats = json.loads(result) | ||
| return stats | ||
|
|
||
| def _verifyIntfCounters(self, pretest=False): | ||
| """ | ||
| Collect counters before and after the test and verify them | ||
|
|
||
| Args: | ||
| pretest(bool): collect counters before or after the test run | ||
| """ | ||
| stats = self._parseCntrs() | ||
| for key, value in self.pkt_map.items(): | ||
| if pretest: | ||
| self.pre_rx_drops[value] = int(stats[value]['RX_DRP']) | ||
| else: | ||
| actual_cnt = int(stats[value]['RX_DRP']) | ||
| exp_cnt = self.pre_rx_drops[value] + TEST_PKT_CNT | ||
| pytest_assert(actual_cnt >= exp_cnt, | ||
| "Pkt dropped cnt incorrect for intf {}. Expected: {}, Obtained: {}".format(value, exp_cnt, actual_cnt)) | ||
| logger.info("Pkt count dropped on interface {}: {}, Expected: {}".format(value, actual_cnt, exp_cnt)) | ||
|
|
||
| def runTest(self): | ||
| """ | ||
| Test run and verification | ||
| """ | ||
| self._constructPacket() | ||
| logger.info("Clear all counters before test run") | ||
| self.duthost.command("sonic-clear counters") | ||
| time.sleep(1) | ||
| logger.info("Collect drop counters before test run") | ||
| self._verifyIntfCounters(pretest=True) | ||
| for pkt, exp_pkt in zip(self.pkts, self.exp_pkts): | ||
| self.ptfadapter.dataplane.flush() | ||
| src_port = self.ptf_pc_ports[self.pkt_map[pkt]][0] | ||
| logger.info("Sending traffic on intf {}".format(self.pkt_map[pkt])) | ||
| testutils.send(self.ptfadapter, src_port, pkt, count=TEST_PKT_CNT) | ||
| testutils.verify_no_packet_any(self.ptfadapter, exp_pkt, ports=self.ptf_vlan_ports) | ||
| logger.info("Collect and verify drop counters after test run") | ||
| self._verifyIntfCounters() | ||
|
|
||
|
|
||
| class TestUnknownMac(object): | ||
| @pytest.mark.parametrize("dscp", ["dscp-3", "dscp-4", "dscp-8"]) | ||
| def test_unknown_mac(self, unknownMacSetup, dscp, duthosts, rand_one_dut_hostname, ptfadapter): | ||
| """ | ||
| Verify unknown mac behavior for lossless and lossy priority | ||
|
|
||
| This test ensures that packets send on lossless and lossy priority get dropped | ||
| when the arp to mac mapping is present in the arp table and mac to port mapping | ||
| is absent in the mac table | ||
|
|
||
| Args: | ||
| unknownMacSetup(fixture) : module scope autouse fixture for test setup | ||
| dscp(string) : parametrized values for dscp | ||
| duthosts(AnsibleHost) : multi dut instance | ||
| rand_one_dut_hostname(AnsibleHost) : one of the dut instances from the multi dut | ||
| ptfadapter(dataplane) : ptf runner instance | ||
| """ | ||
| setup = unknownMacSetup | ||
| self.dscp = int(dscp.split("-")[-1]) | ||
| self.duthost = duthosts[rand_one_dut_hostname] | ||
| self.ptfadapter = ptfadapter | ||
| self.dst_port = setup['dst_port'] | ||
| self.ptf_dst_port = setup['ptf_dst_port'] | ||
| self.dst_ip = setup['vlan']['hostip'] | ||
| self.vlan_ports = setup['vlan']['ports'] | ||
| self.ptf_vlan_ports = setup['ptf_vlan_ports'] | ||
| self.pc_intfs = setup['pc_intfs'] | ||
| self.ptf_pc_ports = setup['ptf_pc_ports'] | ||
| self.validateEntries() | ||
| self.run() | ||
|
|
||
| def validateEntries(self): | ||
| """ | ||
| Validate ARP and FDB prior to the test run | ||
| """ | ||
| pre_handle = PreTestVerify(self.duthost, self.dst_ip, self.dst_port) | ||
| self.arp_entry = pre_handle.verifyArpFdb() | ||
|
|
||
| def run(self): | ||
| """ | ||
| Traffic test and verification | ||
| """ | ||
| thandle = TrafficSendVerify(self.duthost, self.ptfadapter, self.dst_ip, self.ptf_dst_port, | ||
| self.ptf_vlan_ports, | ||
| self.pc_intfs, self.ptf_pc_ports, | ||
| self.arp_entry, self.dscp) | ||
| thandle.runTest() | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.