diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2019-08-22 18:40:28 +0200 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-08-26 19:13:47 +0000 |
commit | 3f1964d2d2847c5307694fe8daea0a7eef1e2733 (patch) | |
tree | 38a2df4b683da5b5c9b98fc8898eb9cd2d38a032 /test/test_gso.py | |
parent | 61b28ba69df829e1e8aa9f8dd1983493cd26b927 (diff) |
gso: fix segmentation when gso_size greater than vlib buffer size
Type: fix
Ticket: VPP-1751
Change-Id: I5ffb078492adc97374290de404f2ec0102b75184
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Diffstat (limited to 'test/test_gso.py')
-rw-r--r-- | test/test_gso.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/test/test_gso.py b/test/test_gso.py index b7d3b98b2e9..87626ccf01f 100644 --- a/test/test_gso.py +++ b/test/test_gso.py @@ -170,5 +170,37 @@ class TestGSO(VppTestCase): size -= 20 # TCP header self.assertEqual(size, 65200) + # + # Send jumbo frame with gso enabled only on input interface with 9K MTU + # and DF bit is unset. GSO packet will be fragmented. GSO size will be + # 8960. + # + self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index, [9000, 0, 0, 0]) + self.create_pg_interfaces(range(5, 6), 1, 8960) + for i in self.pg_interfaces: + i.admin_up() + i.config_ip4() + i.config_ip6() + i.disable_ipv6_ra() + i.resolve_arp() + i.resolve_ndp() + + self.vapi.sw_interface_set_mtu(self.pg5.sw_if_index, [9000, 0, 0, 0]) + p44 = (Ether(src=self.pg5.remote_mac, dst=self.pg5.local_mac) / + IP(src=self.pg5.remote_ip4, dst=self.pg1.remote_ip4) / + TCP(sport=1234, dport=1234) / + Raw('\xa5' * 65200)) + + self.pg1.enable_capture() + rxs = self.send_and_expect(self.pg5, [p44], self.pg1, 33) + size = 0 + for rx in rxs: + self.assertEqual(rx[Ether].src, self.pg1.local_mac) + self.assertEqual(rx[Ether].dst, self.pg1.remote_mac) + self.assertEqual(rx[IP].src, self.pg5.remote_ip4) + self.assertEqual(rx[IP].dst, self.pg1.remote_ip4) + size = rxs[32][TCP].seq + rxs[32][IP].len - 20 - 20 + self.assertEqual(size, 65200) + if __name__ == '__main__': unittest.main(testRunner=VppTestRunner) |