From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 657B6440BD; Fri, 24 May 2024 20:36:15 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B8C4E40693; Fri, 24 May 2024 20:36:12 +0200 (CEST) Received: from mail-oi1-f172.google.com (mail-oi1-f172.google.com [209.85.167.172]) by mails.dpdk.org (Postfix) with ESMTP id 2FD0E40693 for ; Fri, 24 May 2024 20:36:11 +0200 (CEST) Received: by mail-oi1-f172.google.com with SMTP id 5614622812f47-3c9c825b0d9so83932b6e.1 for ; Fri, 24 May 2024 11:36:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; t=1716575770; x=1717180570; darn=dpdk.org; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=qNdNwAVymqTKaiW7WJkyTRMxKslOnsJedFnc/kN11OE=; b=TUTOrXtQOykJ74W9c/GeCcyYkxEJTB0CbiAjtlgXhLuaM6CCzmTC2aFh7ckOfwkBVG SgRVvN14f+zBpv+4C8iN9T/5CpYIcgvdeuyZaqCZT31rvkl7h94TQDmh3oT11A+ixLyc mnHO4Pt0SZEAy6Tin086+T4t+IW0Qo+W7iWjA= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1716575770; x=1717180570; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=qNdNwAVymqTKaiW7WJkyTRMxKslOnsJedFnc/kN11OE=; b=hje0CV1cl7rVXjgUPf6vcOhPiEJqWnH9RriqC+Gvg4WUxaVIF6+YwRl1oQvh90dV7J UBCGKGUY0yd582QbWqm9cmJYGvLGMblfddIwjP6v+V3R4zT8Wz5bmEFxBHnx8vNTk6+p Z77iIFLnZ2NKSaPFgUaxlTF54JeFHxSJiFlL/5KnSFbx2xvXVnm1UK8SR5cquiJn+BoY 1WQGxkxABNUxGDGDvzBOIJifMlbFOrRsSvvqwu+ITyzizxK8/6IE4uLLyGt0eLSR0M8n ru4WIZkK58PLFeFB1Om/V3ZLpyHVysh4IQKygoGfCD8fg9C+3mGX5DjRBQsQxsO0TMTC of8A== X-Gm-Message-State: AOJu0YwGKyvC5gN1PrsEXGGfnG9HZxfFWSanS+KxCmtLjty8qzfM7wFj HF6k1bbFuPyyOzjtOKczn/joBnjquHM8gtfW645XgEvc5uzilRWRY7NjrwIuWYk= X-Google-Smtp-Source: AGHT+IGe5s0x7zv5YsAOF914mE+Mx2MRGq2VkICOK6ZBiWGqznwScTNIvC83C2qu+2E+M/3M2R1Nzw== X-Received: by 2002:a05:6808:238d:b0:3c8:4dcb:1e70 with SMTP id 5614622812f47-3d1a548569cmr3650705b6e.2.1716575770353; Fri, 24 May 2024 11:36:10 -0700 (PDT) Received: from localhost.unh.edu ([2606:4100:3880:1271:e2f8:4ec3:8bf3:864c]) by smtp.gmail.com with ESMTPSA id d75a77b69052e-43fb16b99d4sm10421761cf.2.2024.05.24.11.36.09 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 24 May 2024 11:36:09 -0700 (PDT) From: Nicholas Pratte To: thomas@monjalon.net, jspewock@iol.unh.edu, juraj.linkes@pantheon.tech, luca.vizzarro@arm.com, yoan.picchi@foss.arm.com, bruce.richardson@intel.com, Honnappa.Nagarahalli@arm.com, probb@iol.unh.edu, paul.szczepanek@arm.com Cc: dev@dpdk.org, Nicholas Pratte Subject: [RFC PATCH] Initial Implementation For Jumbo Frames Test Suite Date: Fri, 24 May 2024 14:36:04 -0400 Message-ID: <20240524183604.6925-2-npratte@iol.unh.edu> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240524183604.6925-1-npratte@iol.unh.edu> References: <20240524183604.6925-1-npratte@iol.unh.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org The following test suite reflects the fundamental outline for how the jumbo frames test suite may be designed. The test suite consists of five individual test cases, each of which assesses the behavior of packet transmissions for both 1518 byte and 9000 byte frames. The edge cases are ripped directly from the old DTS framework, and the general methodology is the same as well. The process, at this point, has been refactored to operate within the new DTS framework. Bugzilla ID: 1421 Signed-off-by: Nicholas Pratte --- dts/framework/config/conf_yaml_schema.json | 3 +- dts/tests/TestSuite_jumboframes.py | 210 +++++++++++++++++++++ 2 files changed, 212 insertions(+), 1 deletion(-) create mode 100644 dts/tests/TestSuite_jumboframes.py diff --git a/dts/framework/config/conf_yaml_schema.json b/dts/framework/config/conf_yaml_schema.json index 4731f4511d..6b9d749022 100644 --- a/dts/framework/config/conf_yaml_schema.json +++ b/dts/framework/config/conf_yaml_schema.json @@ -187,7 +187,8 @@ "enum": [ "hello_world", "os_udp", - "pmd_buffer_scatter" + "pmd_buffer_scatter", + "jumboframes" ] }, "test_target": { diff --git a/dts/tests/TestSuite_jumboframes.py b/dts/tests/TestSuite_jumboframes.py new file mode 100644 index 0000000000..dd253101aa --- /dev/null +++ b/dts/tests/TestSuite_jumboframes.py @@ -0,0 +1,210 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2023-2024 University of New Hampshire +"""Jumbo frame consistency and compatibility test suite. + +The test suite ensures the consistency of jumbo frames transmission within +Poll Mode Drivers using a series of individual test cases. If a Poll Mode +Driver receives a packet that is greater than its assigned MTU length, then +that packet will be dropped, and thus not received. Likewise, if a Poll Mode Driver +receives a packet that is less than or equal to a its designated MTU length, then the +packet should be transmitted by the Poll Mode Driver, completeing a cycle within the +testbed and getting received by the traffic generator. Thus, the following test suite +evaluates the behavior within all possible edge cases, ensuring that a test Poll +Mode Driver strictly abides by the above implications. +""" + +from framework.test_suite import TestSuite +from framework.remote_session.testpmd_shell import TestPmdShell + +from scapy.layers.inet import IP # type: ignore[import] +from scapy.layers.l2 import Ether # type: ignore[import] +from scapy.packet import Raw # type: ignore[import] + +ETHER_HEADER_LEN = 18 +IP_HEADER_LEN = 20 +ETHER_STANDARD_MTU = 1518 +ETHER_JUMBO_FRAME_MTU = 9000 + + +class TestJumboframes(TestSuite): + """DPDK PMD jumbo frames test suite. + + Asserts the expected behavior of frames greater than, less then, or equal to + a designated MTU size in the testpmd application. If a packet size greater + than the designated testpmd MTU length is retrieved, the test fails. If a + packet size less than or equal to the designated testpmd MTU length is retrieved, + the test passes. + """ + + def set_up_suite(self) -> None: + """Set up the test suite. + + Setup: + Set traffic generator MTU lengths to a size greater than scope of all + test cases. + """ + self.tg_node.main_session.configure_port_mtu( + ETHER_JUMBO_FRAME_MTU + 200, self._tg_port_egress + ) + self.tg_node.main_session.configure_port_mtu( + ETHER_JUMBO_FRAME_MTU + 200, self._tg_port_ingress + ) + + def send_packet_and_verify(self, pktsize: int, should_receive: bool = True) -> None: + """Generate, send, and capture packets to verify that the sent packet was received or not. + + Generates a packet based on a specified size and sends it to the SUT. The desired packet's + payload size is calculated, and arbitrary, byte-sized characters are inserted into the + packet before sending. Packets are captured, and depending on the test case, packet + payloads are checked to determine if the sent payload was received. + + Args: + pktsize: Size of packet to be generated and sent. + should_receive: Indicate whether the test case expects to receive the packet or not. + """ + pktlength = pktsize - ETHER_HEADER_LEN + padding = pktlength - IP_HEADER_LEN + + packet = Ether() / IP(len=pktlength) / Raw(load="\x50" * padding) + received_packets = self.send_packet_and_capture(packet) + + found = any( + ("\x50" * padding) in str(packets.load) + for packets in received_packets + if hasattr(packets, "load") + ) + + print(found) + if should_receive: + self.verify(found, "Packet pass assert error") + else: + self.verify(not found, "Packet drop assert error") + + def test_jumboframes_normal_nojumbo(self) -> None: + """Assess the boundaries of packets sent less than or equal to the standard MTU length. + + PMDs are set to the standard MTU length of 1518 to assess behavior of sent packets less than + or equal to this size. Sends two packets: one that is less than 1518 bytes, and another that + is equal to 1518 bytes. The test case expects to receive both packets. + + Test: + Start testpmd and send packets of sizes 1517 and 1518. + """ + testpmd = self.sut_node.create_interactive_shell( + TestPmdShell, + app_parameters=( + "--max-pkt-len=%s " % (ETHER_STANDARD_MTU) + "--port-topology=paired " + "--tx-offloads=0x8000 " + ), + privileged=True, + ) + testpmd.start() + self.send_packet_and_verify(ETHER_STANDARD_MTU - 1) + self.send_packet_and_verify(ETHER_STANDARD_MTU) + testpmd.close() + + def test_jumboframes_jumbo_nojumbo(self) -> None: + """Assess the boundaries of packets sent greater than standard MTU length. + + PMDs are set to the standard MTU length of 1518 bytes to assess behavior of sent packets + greater than this size. Sends one packet with a frame size of 1519. The test cases does + not expect to receive this packet. + + Test: + Start testpmd with standard MTU size of 1518. Send a packet of 1519 and verify it was + not received. + """ + testpmd = self.sut_node.create_interactive_shell( + TestPmdShell, + app_parameters=( + "--max-pkt-len=%s " % (ETHER_STANDARD_MTU) + "--port-topology=paired " + "--tx-offloads=0x8000 " + ), + privileged=True, + ) + testpmd.start() + self.send_packet_and_verify(ETHER_STANDARD_MTU + 1, False) + testpmd.close() + + def test_jumboframes_normal_jumbo(self) -> None: + """Assess the consistency of standard 1518 byte packets using a 9000 byte jumbo MTU length. + + PMDs are set to a jumbo frame size of 9000 bytes. Packets of sizes 1517 and 1518 are sent + to assess the boundaries of packets less than or equal to the standard MTU length of 1518. + The test case expects to receive both packets. + + Test: + Start testpmd with a jumbo frame size of 9000 bytes. Send a packet of 1517 and 1518 + and verify they were received. + """ + testpmd = self.sut_node.create_interactive_shell( + TestPmdShell, + app_parameters=( + "--max-pkt-len=%s " % (ETHER_JUMBO_FRAME_MTU) + "--port-topology=paired " + "--tx-offloads=0x8000 " + ), + privileged=True, + ) + testpmd.start() + self.send_packet_and_verify(ETHER_STANDARD_MTU - 1) + self.send_packet_and_verify(ETHER_STANDARD_MTU) + testpmd.close() + + def test_jumboframes_jumbo_jumbo(self) -> None: + """Assess the boundaries packets sent at an MTU size of 9000 bytes. + + PMDs are set to a jumbo frames size of 9000 bytes. Packets of size 1519, 8999, and 9000 + are sent. The test expects to receive all packets. + + Test: + Start testpmd with an MTU length of 9000 bytes. Send packets of size 1519, 8999, + and 9000 and verify that all packets were received. + """ + testpmd = self.sut_node.create_interactive_shell( + TestPmdShell, + app_parameters=( + "--max-pkt-len=%s " % (ETHER_JUMBO_FRAME_MTU) + "--port-topology=paired " + "--tx-offloads=0x8000 " + ), + privileged=True, + ) + testpmd.start() + self.send_packet_and_verify(ETHER_STANDARD_MTU + 1) + self.send_packet_and_verify(ETHER_JUMBO_FRAME_MTU - 1) + self.send_packet_and_verify(ETHER_JUMBO_FRAME_MTU) + testpmd.close() + + def test_jumboframes_bigger_jumbo(self) -> None: + """Assess the behavior of packets send greater than a specified MTU length of 9000 bytes. + + PMDs are set to a jumbo frames size of 9000 bytes. A packet of size 9001 is sent to the SUT. + The test case does not expect to receive the packet. + + Test: + Start testpmd with an MTU length of 9000 bytes. Send a packet of 9001 bytes and verify + it was not received. + """ + testpmd = self.sut_node.create_interactive_shell( + TestPmdShell, + app_parameters=( + "--max-pkt-len=%s " % (ETHER_JUMBO_FRAME_MTU) + "--port-topology=paired " + "--tx-offloads=0x8000 " + ), + privileged=True, + ) + testpmd.start() + self.send_packet_and_verify(ETHER_JUMBO_FRAME_MTU + 1, False) + testpmd.close() + + def tear_down_suite(self) -> None: + """Tear down the test suite. + + Teardown: + Set the MTU size of the traffic generator back to the standard 1518 byte size. + """ + self.tg_node.main_session.configure_port_mtu( + ETHER_STANDARD_MTU - ETHER_HEADER_LEN, self._tg_port_egress + ) + self.tg_node.main_session.configure_port_mtu( + ETHER_STANDARD_MTU - ETHER_HEADER_LEN, self._tg_port_ingress + ) -- 2.44.0