Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| 2 | # Copyright (c) 2021 Graphiant, Inc. |
| 3 | |
| 4 | import unittest |
| 5 | import scapy.compat |
| 6 | from scapy.layers.inet import IP, UDP |
| 7 | from scapy.layers.l2 import Ether |
| 8 | from scapy.packet import Raw |
| 9 | from framework import VppTestCase, VppTestRunner |
| 10 | from vpp_papi import VppEnum |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 11 | from vpp_policer import VppPolicer, PolicerAction, Dir |
Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 12 | |
| 13 | NUM_PKTS = 67 |
| 14 | |
| 15 | |
| 16 | class TestPolicerInput(VppTestCase): |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 17 | """Policer on an interface""" |
| 18 | |
Klement Sekera | 8d81502 | 2021-03-15 16:58:10 +0100 | [diff] [blame] | 19 | vpp_worker_count = 2 |
Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 20 | |
| 21 | def setUp(self): |
| 22 | super(TestPolicerInput, self).setUp() |
| 23 | |
| 24 | self.create_pg_interfaces(range(2)) |
| 25 | for i in self.pg_interfaces: |
| 26 | i.admin_up() |
| 27 | i.config_ip4() |
| 28 | i.resolve_arp() |
| 29 | |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 30 | self.pkt = ( |
| 31 | Ether(src=self.pg0.remote_mac, dst=self.pg0.local_mac) |
| 32 | / IP(src=self.pg0.remote_ip4, dst=self.pg1.remote_ip4) |
| 33 | / UDP(sport=1234, dport=1234) |
| 34 | / Raw(b"\xa5" * 100) |
| 35 | ) |
Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 36 | |
| 37 | def tearDown(self): |
| 38 | for i in self.pg_interfaces: |
| 39 | i.unconfig_ip4() |
| 40 | i.admin_down() |
| 41 | super(TestPolicerInput, self).tearDown() |
| 42 | |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 43 | def policer_interface_test(self, dir: Dir): |
Brian Russell | 26bcbc1 | 2021-02-18 11:02:29 +0000 | [diff] [blame] | 44 | pkts = self.pkt * NUM_PKTS |
| 45 | |
Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 46 | action_tx = PolicerAction( |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 47 | VppEnum.vl_api_sse2_qos_action_type_t.SSE2_QOS_ACTION_API_TRANSMIT, 0 |
| 48 | ) |
| 49 | policer = VppPolicer( |
| 50 | self, |
| 51 | "pol1", |
| 52 | 80, |
| 53 | 0, |
| 54 | 1000, |
| 55 | 0, |
| 56 | conform_action=action_tx, |
| 57 | exceed_action=action_tx, |
| 58 | violate_action=action_tx, |
| 59 | ) |
Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 60 | policer.add_vpp_config() |
| 61 | |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 62 | sw_if_index = self.pg0.sw_if_index if dir == Dir.RX else self.pg1.sw_if_index |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 63 | |
Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 64 | # Start policing on pg0 |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 65 | policer.apply_vpp_config(sw_if_index, dir, True) |
Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 66 | |
Brian Russell | 26bcbc1 | 2021-02-18 11:02:29 +0000 | [diff] [blame] | 67 | rx = self.send_and_expect(self.pg0, pkts, self.pg1, worker=0) |
Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 68 | stats = policer.get_stats() |
| 69 | |
| 70 | # Single rate, 2 colour policer - expect conform, violate but no exceed |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 71 | self.assertGreater(stats["conform_packets"], 0) |
| 72 | self.assertEqual(stats["exceed_packets"], 0) |
| 73 | self.assertGreater(stats["violate_packets"], 0) |
Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 74 | |
| 75 | # Stop policing on pg0 |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 76 | policer.apply_vpp_config(sw_if_index, dir, False) |
Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 77 | |
Brian Russell | 26bcbc1 | 2021-02-18 11:02:29 +0000 | [diff] [blame] | 78 | rx = self.send_and_expect(self.pg0, pkts, self.pg1, worker=0) |
| 79 | |
Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 80 | statsnew = policer.get_stats() |
| 81 | |
| 82 | # No new packets counted |
| 83 | self.assertEqual(stats, statsnew) |
| 84 | |
| 85 | policer.remove_vpp_config() |
| 86 | |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 87 | def test_policer_input(self): |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 88 | """Input Policing""" |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 89 | self.policer_interface_test(Dir.RX) |
| 90 | |
| 91 | def test_policer_output(self): |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 92 | """Output Policing""" |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 93 | self.policer_interface_test(Dir.TX) |
| 94 | |
| 95 | def policer_handoff_test(self, dir: Dir): |
Brian Russell | 26bcbc1 | 2021-02-18 11:02:29 +0000 | [diff] [blame] | 96 | pkts = self.pkt * NUM_PKTS |
| 97 | |
| 98 | action_tx = PolicerAction( |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 99 | VppEnum.vl_api_sse2_qos_action_type_t.SSE2_QOS_ACTION_API_TRANSMIT, 0 |
| 100 | ) |
| 101 | policer = VppPolicer( |
| 102 | self, |
| 103 | "pol2", |
| 104 | 80, |
| 105 | 0, |
| 106 | 1000, |
| 107 | 0, |
| 108 | conform_action=action_tx, |
| 109 | exceed_action=action_tx, |
| 110 | violate_action=action_tx, |
| 111 | ) |
Brian Russell | 26bcbc1 | 2021-02-18 11:02:29 +0000 | [diff] [blame] | 112 | policer.add_vpp_config() |
| 113 | |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 114 | sw_if_index = self.pg0.sw_if_index if dir == Dir.RX else self.pg1.sw_if_index |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 115 | |
Brian Russell | 26bcbc1 | 2021-02-18 11:02:29 +0000 | [diff] [blame] | 116 | # Bind the policer to worker 1 |
| 117 | policer.bind_vpp_config(1, True) |
| 118 | |
| 119 | # Start policing on pg0 |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 120 | policer.apply_vpp_config(sw_if_index, dir, True) |
Brian Russell | 26bcbc1 | 2021-02-18 11:02:29 +0000 | [diff] [blame] | 121 | |
| 122 | for worker in [0, 1]: |
| 123 | self.send_and_expect(self.pg0, pkts, self.pg1, worker=worker) |
| 124 | self.logger.debug(self.vapi.cli("show trace max 100")) |
| 125 | |
| 126 | stats = policer.get_stats() |
| 127 | stats0 = policer.get_stats(worker=0) |
| 128 | stats1 = policer.get_stats(worker=1) |
| 129 | |
| 130 | # Worker 1, should have done all the policing |
| 131 | self.assertEqual(stats, stats1) |
| 132 | |
| 133 | # Worker 0, should have handed everything off |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 134 | self.assertEqual(stats0["conform_packets"], 0) |
| 135 | self.assertEqual(stats0["exceed_packets"], 0) |
| 136 | self.assertEqual(stats0["violate_packets"], 0) |
Brian Russell | 26bcbc1 | 2021-02-18 11:02:29 +0000 | [diff] [blame] | 137 | |
| 138 | # Unbind the policer from worker 1 and repeat |
| 139 | policer.bind_vpp_config(1, False) |
| 140 | for worker in [0, 1]: |
| 141 | self.send_and_expect(self.pg0, pkts, self.pg1, worker=worker) |
| 142 | self.logger.debug(self.vapi.cli("show trace max 100")) |
| 143 | |
| 144 | # The policer should auto-bind to worker 0 when packets arrive |
| 145 | stats = policer.get_stats() |
| 146 | |
| 147 | # The 2 workers should now have policed the same amount |
| 148 | stats = policer.get_stats() |
| 149 | stats0 = policer.get_stats(worker=0) |
| 150 | stats1 = policer.get_stats(worker=1) |
| 151 | |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 152 | self.assertGreater(stats0["conform_packets"], 0) |
| 153 | self.assertEqual(stats0["exceed_packets"], 0) |
| 154 | self.assertGreater(stats0["violate_packets"], 0) |
Brian Russell | 26bcbc1 | 2021-02-18 11:02:29 +0000 | [diff] [blame] | 155 | |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 156 | self.assertGreater(stats1["conform_packets"], 0) |
| 157 | self.assertEqual(stats1["exceed_packets"], 0) |
| 158 | self.assertGreater(stats1["violate_packets"], 0) |
Brian Russell | 26bcbc1 | 2021-02-18 11:02:29 +0000 | [diff] [blame] | 159 | |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 160 | self.assertEqual( |
| 161 | stats0["conform_packets"] + stats1["conform_packets"], |
| 162 | stats["conform_packets"], |
| 163 | ) |
Brian Russell | 26bcbc1 | 2021-02-18 11:02:29 +0000 | [diff] [blame] | 164 | |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 165 | self.assertEqual( |
| 166 | stats0["violate_packets"] + stats1["violate_packets"], |
| 167 | stats["violate_packets"], |
| 168 | ) |
Brian Russell | 26bcbc1 | 2021-02-18 11:02:29 +0000 | [diff] [blame] | 169 | |
| 170 | # Stop policing on pg0 |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 171 | policer.apply_vpp_config(sw_if_index, dir, False) |
Brian Russell | 26bcbc1 | 2021-02-18 11:02:29 +0000 | [diff] [blame] | 172 | |
| 173 | policer.remove_vpp_config() |
Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 174 | |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 175 | def test_policer_handoff_input(self): |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 176 | """Worker thread handoff policer input""" |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 177 | self.policer_handoff_test(Dir.RX) |
| 178 | |
| 179 | def test_policer_handoff_output(self): |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 180 | """Worker thread handoff policer output""" |
Stanislav Zaikin | e5a3ae0 | 2022-04-05 19:23:12 +0200 | [diff] [blame] | 181 | self.policer_handoff_test(Dir.TX) |
| 182 | |
| 183 | |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 184 | if __name__ == "__main__": |
Brian Russell | 6e6920d | 2021-02-17 15:54:52 +0000 | [diff] [blame] | 185 | unittest.main(testRunner=VppTestRunner) |