From: Nicholas Pratte <npratte@iol.unh.edu>
To: jspewock@iol.unh.edu
Cc: thomas@monjalon.net, Luca.Vizzarro@arm.com,
Honnappa.Nagarahalli@arm.com, probb@iol.unh.edu,
yoan.picchi@foss.arm.com, wathsala.vithanage@arm.com,
juraj.linkes@pantheon.tech, paul.szczepanek@arm.com,
dev@dpdk.org
Subject: Re: [PATCH v3 1/4] dts: add send_packets to test suites and rework packet addressing
Date: Fri, 26 Jul 2024 10:37:59 -0400 [thread overview]
Message-ID: <CAKXZ7ehRvDuPZLkDaPTzqZeJtPhWnvgFxTSdnZSnKQEZVqMMfQ@mail.gmail.com> (raw)
In-Reply-To: <20240724150714.226970-2-jspewock@iol.unh.edu>
This is great, I'll be using this in-favor of the boolean solution
that I implemented! Just to bring this to your attention. I am
currently working on some Generic Routing Encapsulation suites the
require multiple IP layers at packet creation; they look something
like:
Ether() / IP() / GRE() / IP() / UDP() / Raw(load='x'*80)
I have to take a deeper look to see how multiple IP layers affect the
declaration of src and dst variables, I'll let you know what I find as
some changes might be needed on this implementation to avoid future
bugs. Once I figure it out, I'll leave a review tag for you.
On Wed, Jul 24, 2024 at 11:07 AM <jspewock@iol.unh.edu> wrote:
>
> From: Jeremy Spewock <jspewock@iol.unh.edu>
>
> Currently the only method provided in the test suite class for sending
> packets sends a single packet and then captures the results. There is,
> in some cases, a need to send multiple packets at once while not really
> needing to capture any traffic received back. The method to do this
> exists in the traffic generator already, but this patch exposes the
> method to test suites.
>
> This patch also updates the _adjust_addresses method of test suites so
> that addresses of packets are only modified if the developer did not
> configure them beforehand. This allows for developers to have more
> control over the content of their packets when sending them through the
> framework.
>
> Signed-off-by: Jeremy Spewock <jspewock@iol.unh.edu>
> ---
> dts/framework/test_suite.py | 74 ++++++++++++++++++--------
> dts/framework/testbed_model/tg_node.py | 9 ++++
> 2 files changed, 62 insertions(+), 21 deletions(-)
>
> diff --git a/dts/framework/test_suite.py b/dts/framework/test_suite.py
> index 694b2eba65..0b678ed62d 100644
> --- a/dts/framework/test_suite.py
> +++ b/dts/framework/test_suite.py
> @@ -199,7 +199,7 @@ def send_packet_and_capture(
> Returns:
> A list of received packets.
> """
> - packet = self._adjust_addresses(packet)
> + packet = self._adjust_addresses([packet])[0]
> return self.tg_node.send_packet_and_capture(
> packet,
> self._tg_port_egress,
> @@ -208,6 +208,18 @@ def send_packet_and_capture(
> duration,
> )
>
> + def send_packets(
> + self,
> + packets: list[Packet],
> + ) -> None:
> + """Send packets using the traffic generator and do not capture received traffic.
> +
> + Args:
> + packets: Packets to send.
> + """
> + packets = self._adjust_addresses(packets)
> + self.tg_node.send_packets(packets, self._tg_port_egress)
> +
> def get_expected_packet(self, packet: Packet) -> Packet:
> """Inject the proper L2/L3 addresses into `packet`.
>
> @@ -219,39 +231,59 @@ def get_expected_packet(self, packet: Packet) -> Packet:
> """
> return self._adjust_addresses(packet, expected=True)
>
> - def _adjust_addresses(self, packet: Packet, expected: bool = False) -> Packet:
> + def _adjust_addresses(self, packets: list[Packet], expected: bool = False) -> list[Packet]:
> """L2 and L3 address additions in both directions.
>
> + Only missing addresses are added to packets, existing addressed will not be overridden.
> +
> Assumptions:
> Two links between SUT and TG, one link is TG -> SUT, the other SUT -> TG.
>
> Args:
> - packet: The packet to modify.
> + packets: The packets to modify.
> expected: If :data:`True`, the direction is SUT -> TG,
> otherwise the direction is TG -> SUT.
> """
> - if expected:
> - # The packet enters the TG from SUT
> - # update l2 addresses
> - packet.src = self._sut_port_egress.mac_address
> - packet.dst = self._tg_port_ingress.mac_address
> + ret_packets = []
> + for packet in packets:
> + default_pkt_src = type(packet)().src
> + default_pkt_dst = type(packet)().dst
> + default_pkt_payload_src = IP().src if hasattr(packet.payload, "src") else None
> + default_pkt_payload_dst = IP().dst if hasattr(packet.payload, "dst") else None
> + # If `expected` is :data:`True`, the packet enters the TG from SUT, otherwise the
> + # packet leaves the TG towards the SUT
>
> - # The packet is routed from TG egress to TG ingress
> - # update l3 addresses
> - packet.payload.src = self._tg_ip_address_egress.ip.exploded
> - packet.payload.dst = self._tg_ip_address_ingress.ip.exploded
> - else:
> - # The packet leaves TG towards SUT
> # update l2 addresses
> - packet.src = self._tg_port_egress.mac_address
> - packet.dst = self._sut_port_ingress.mac_address
> + if packet.src == default_pkt_src:
> + packet.src = (
> + self._sut_port_egress.mac_address
> + if expected
> + else self._tg_port_egress.mac_address
> + )
> + if packet.dst == default_pkt_dst:
> + packet.dst = (
> + self._tg_port_ingress.mac_address
> + if expected
> + else self._sut_port_ingress.mac_address
> + )
> +
> + # The packet is routed from TG egress to TG ingress regardless of if it is expected or
> + # not.
>
> - # The packet is routed from TG egress to TG ingress
> # update l3 addresses
> - packet.payload.src = self._tg_ip_address_egress.ip.exploded
> - packet.payload.dst = self._tg_ip_address_ingress.ip.exploded
> -
> - return Ether(packet.build())
> + if (
> + default_pkt_payload_src is not None
> + and packet.payload.src == default_pkt_payload_src
> + ):
> + packet.payload.src = self._tg_ip_address_egress.ip.exploded
> + if (
> + default_pkt_payload_dst is not None
> + and packet.payload.dst == default_pkt_payload_dst
> + ):
> + packet.payload.dst = self._tg_ip_address_ingress.ip.exploded
> + ret_packets.append(Ether(packet.build()))
> +
> + return ret_packets
>
> def verify(self, condition: bool, failure_description: str) -> None:
> """Verify `condition` and handle failures.
> diff --git a/dts/framework/testbed_model/tg_node.py b/dts/framework/testbed_model/tg_node.py
> index 4ee326e99c..758b676258 100644
> --- a/dts/framework/testbed_model/tg_node.py
> +++ b/dts/framework/testbed_model/tg_node.py
> @@ -83,6 +83,15 @@ def send_packet_and_capture(
> duration,
> )
>
> + def send_packets(self, packets: list[Packet], port: Port):
> + """Send packets without capturing resulting received packets.
> +
> + Args:
> + packets: Packets to send.
> + port: Port to send the packets on.
> + """
> + self.traffic_generator.send_packets(packets, port)
> +
> def close(self) -> None:
> """Free all resources used by the node.
>
> --
> 2.45.2
>
next prev parent reply other threads:[~2024-07-26 14:38 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-25 15:53 [PATCH v1 0/4] dts: add dynamic queue configuration test suite jspewock
2024-06-25 15:53 ` [PATCH v1 1/4] dts: add send_packets to test suites and rework packet addressing jspewock
2024-06-25 15:53 ` [PATCH v1 2/4] dts: add port queue modification and forwarding stats to testpmd jspewock
2024-06-25 15:53 ` [PATCH v1 3/4] dts: add dynamic queue test suite jspewock
2024-06-25 15:53 ` [PATCH v1 4/4] dts: add dynamic queue conf to the yaml schema jspewock
2024-07-03 21:58 ` [PATCH v2 0/4] dts: add dynamic queue configuration test suite jspewock
2024-07-03 21:58 ` [PATCH v2 1/4] dts: add send_packets to test suites and rework packet addressing jspewock
2024-07-03 21:58 ` [PATCH v2 2/4] dts: add port queue modification and forwarding stats to testpmd jspewock
2024-07-03 21:58 ` [PATCH v2 3/4] dts: add dynamic queue test suite jspewock
2024-07-03 21:58 ` [PATCH v2 4/4] dts: add dynamic queue conf to the yaml schema jspewock
2024-07-24 15:07 ` [PATCH v3 0/4] dts: add dynamic queue configuration test suite jspewock
2024-07-24 15:07 ` [PATCH v3 1/4] dts: add send_packets to test suites and rework packet addressing jspewock
2024-07-26 14:37 ` Nicholas Pratte [this message]
2024-07-26 19:00 ` Nicholas Pratte
2024-07-26 19:13 ` Jeremy Spewock
2024-08-29 19:42 ` Nicholas Pratte
2024-07-24 15:07 ` [PATCH v3 2/4] dts: add port queue modification and forwarding stats to testpmd jspewock
2024-07-24 15:07 ` [PATCH v3 3/4] dts: add dynamic queue test suite jspewock
2024-07-24 15:07 ` [PATCH v3 4/4] dts: add dynamic queue conf to the yaml schema jspewock
2024-09-04 15:49 ` [PATCH v4 0/2] dts: add dynamic queue configuration test suite jspewock
2024-09-04 15:49 ` [PATCH v4 1/2] dts: add port queue modification and forwarding stats to testpmd jspewock
2024-09-04 15:49 ` [PATCH v4 2/2] dts: add dynamic queue test suite jspewock
2024-09-25 19:20 ` [PATCH v5 0/2] dts: add dynamic queue configuration " jspewock
2024-09-25 19:20 ` [PATCH v5 1/2] dts: add port queue modification and forwarding stats to testpmd jspewock
2024-09-25 19:20 ` [PATCH v5 2/2] dts: add dynamic queue test suite jspewock
2024-11-05 16:58 ` [PATCH v6 0/2] dts: add dynamic queue configuration " Dean Marx
2024-11-05 16:58 ` [PATCH v6 1/2] dts: add port queue modification and forwarding stats to testpmd Dean Marx
2024-11-18 23:25 ` Patrick Robb
2024-11-18 23:36 ` Patrick Robb
2024-11-05 16:58 ` [PATCH v6 2/2] dts: add dynamic queue test suite Dean Marx
2024-11-18 23:24 ` Patrick Robb
2024-11-18 23:24 ` Patrick Robb
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAKXZ7ehRvDuPZLkDaPTzqZeJtPhWnvgFxTSdnZSnKQEZVqMMfQ@mail.gmail.com \
--to=npratte@iol.unh.edu \
--cc=Honnappa.Nagarahalli@arm.com \
--cc=Luca.Vizzarro@arm.com \
--cc=dev@dpdk.org \
--cc=jspewock@iol.unh.edu \
--cc=juraj.linkes@pantheon.tech \
--cc=paul.szczepanek@arm.com \
--cc=probb@iol.unh.edu \
--cc=thomas@monjalon.net \
--cc=wathsala.vithanage@arm.com \
--cc=yoan.picchi@foss.arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).