#!/usr/bin/env python3 r"""Bridge STP Basic First, verify that a fully connected mesh of 4 DUTs is pruned to a spanning tree. Since the mesh contains 3 redundant paths, can infer that a spanning tree has been created if all host interfaces can reach each other while exactly three links are in the blocking state. Then, assign explicit priorities to all bridges and ports, and verify that a spanning tree rooted at A is formed, with B, C, and D all directly connected to A. """ import infamy from infamy.util import parallel, until def stp_compatible(physical, logical): # Multi-chip mv88e6xxx systems do not flush their ATU's correctly # (tracked by kernelkit/linux#2) return "broken-stp" not in physical["provides"] def addbr(dut): ip = { "A": "10.0.0.101", "B": "10.0.0.102", "C": "10.0.0.103", "D": "10.0.0.104" }[dut.name] brports = [ { "name": dut[n], "infix-interfaces:bridge-port": { "bridge": "br0", } } for n in ("a", "b", "c", "d", "h") if n != dut.name.lower() ] dut.put_config_dicts({ "ietf-interfaces": { "interfaces": { "interface": [ { "name": "br0", "type": "infix-if-type:bridge", "enabled": True, "bridge": { "stp": {}, }, "ipv4": { "address": [ { "ip": ip, "prefix-length": 24, } ] }, } ] + brports, } } }) def explicit_prios(dut): def prio(n): match n: case "a"|"A": return 1 case "b"|"B": return 2 case "c"|"C": return 3 case "d"|"D": return 4 brports = [ { "name": dut[n], "infix-interfaces:bridge-port": { "stp": { "cist": { "priority": prio(n), }, }, } } for n in ("a", "b", "c", "d") if n != dut.name.lower() ] dut.put_config_dicts({ "ietf-interfaces": { "interfaces": { "interface": [ { "name": "br0", "bridge": { "stp": { "cist": { "priority": prio(dut.name), }, }, }, } ] + brports, } } }) def num_blocking(dut): num = 0 for iface in dut.get_data("/ietf-interfaces:interfaces")["interfaces"]["interface"]: state = iface.get("bridge-port", {}).get("stp", {}).get("cist", {}).get("state") if state == "blocking": num += 1 return num def bridge_id(dut, id): br0 = dut.get_data("/ietf-interfaces:interfaces/interface[name='br0']")\ ["interfaces"]["interface"]["br0"] cist = br0.get("bridge", {}).get("stp", {}).get("cist", {}) if not (cid := cist.get(id)): return None return f"{cid['priority']:1x}.{cid['system-id']:03x}.{cid['address']}" def port_role(dut, port): iface = dut.get_data(f"/ietf-interfaces:interfaces/interface[name='{port}']")\ ["interfaces"]["interface"][port] return iface.get("bridge-port", {}).get("stp", {}).get("cist", {}).get("role") with infamy.Test() as test: with test.step("Set up topology and attach to target DUT"): env = infamy.Env(nodes_compatible=stp_compatible) a, b, c, d = parallel(lambda: env.attach("A"), lambda: env.attach("B"), lambda: env.attach("C"), lambda: env.attach("D")) host = { p: env.ltop.xlate("host", p)[1] for p in ("a", "b", "c", "d") } with test.step("Configure a bridge with spanning tree eneabled on dut a, b, c, and d"): parallel(lambda: addbr(a), lambda: addbr(b), lambda: addbr(c), lambda: addbr(d)) with test.step("Add an IP address to each host interface in the 10.0.0.0/24 subnet"): ns = { p: infamy.IsolatedMacVlan(host[p]).start() for p in ("a", "b", "c", "d") } parallel(lambda: ns["a"].addip("10.0.0.1"), lambda: ns["b"].addip("10.0.0.2"), lambda: ns["c"].addip("10.0.0.3"), lambda: ns["d"].addip("10.0.0.4")) with test.step("Verify that exactly three links are blocking"): until(lambda: sum(map(num_blocking, (a, b, c, d))) == 3, 60) with test.step("Verify that host:a can reach host:{b,c,d}"): parallel(lambda: ns["a"].must_reach("10.0.0.2"), lambda: ns["a"].must_reach("10.0.0.3"), lambda: ns["a"].must_reach("10.0.0.4")) with test.step("Add explicit port and bridge priorities: a,b,c,d=>1,2,3,4"): parallel(lambda: explicit_prios(a), lambda: explicit_prios(b), lambda: explicit_prios(c), lambda: explicit_prios(d)) with test.step("Verify that A, B, C and D agrees on A being the root bridge"): a_id = bridge_id(a, "bridge-id") print(f"A's bridge-id: {a_id}") until(lambda: all(map(lambda n: bridge_id(n, "root-id") == a_id, (a, b, c, d))), 60) with test.step("Verify that B, C and D all use their direct connection to on A"): until(lambda: all(map(lambda n: port_role(n, n["a"]) == "root", (b, c, d))), 60) with test.step("Verify that host:a can reach host:{b,c,d}"): parallel(lambda: ns["a"].must_reach("10.0.0.2"), lambda: ns["a"].must_reach("10.0.0.3"), lambda: ns["a"].must_reach("10.0.0.4")) test.succeed()