From: Ori Kam <orika@nvidia.com>
To: Slava Ovsiienko <viacheslavo@nvidia.com>, "dev@dpdk.org" <dev@dpdk.org>
Cc: Raslan Darawsheh <rasland@nvidia.com>,
Matan Azrad <matan@nvidia.com>,
Shahaf Shuler <shahafs@nvidia.com>,
Gregory Etelson <getelson@nvidia.com>,
NBU-Contact-Thomas Monjalon <thomas@monjalon.net>
Subject: Re: [dpdk-dev] [PATCH v2 2/5] app/testpmd: update modify field flow action support
Date: Mon, 11 Oct 2021 09:13:26 +0000 [thread overview]
Message-ID: <DM8PR12MB54008695BF89AF0F39A8FD35D6B59@DM8PR12MB5400.namprd12.prod.outlook.com> (raw)
In-Reply-To: <20211010234547.1495-3-viacheslavo@nvidia.com>
Hi Slava,
> -----Original Message-----
> From: Slava Ovsiienko <viacheslavo@nvidia.com>
> Sent: Monday, October 11, 2021 2:46 AM
> Subject: [PATCH v2 2/5] app/testpmd: update modify field flow action support
>
> The testpmd flow create command updates provided:
>
> - modify field action supports the updated actions
> - pointer type added for action source field
> - pointer and value source field takes hex string
> instead of unsigned int in host endianness
>
> There are some examples of flow with update modified field action:
>
> 1. IPv6 destination address bytes 4-7 assignment:
> 0000::1111 - > 0000:xxxx:4455:6677::1111
>
> flow create 0 egress group 1
> pattern eth / ipv6 dst is 0000::1111 / udp / end
> actions modify_field op set
> dst_type ipv6_dst
> dst_offset 32
> src_type value
> src_value 0011223344556677
> width 32 / end
>
> 2. Copy second byte of IPv4 destination address to the
> third byte of source address:
> 10.0.118.4 -> 192.168.100.1
> 10.0.168.4 -> 192.168.100.1
>
> flow create 0 egress group 1
> pattern eth / ipv4 / udp / end
> actions modify_field op set
> dst_type ipv4_src
> dst_offset 16
> src_type ipv4_dst
> src_offset 8
> width 8 / end
>
> 3. Assign METADATA value with 11223344 value from the
> hex string in the linear buffer. Please note, the value
> definition should follow host-endian, example is given
> for x86 (little-endian):
>
> flow create 0 egress group 1
> pattern eth / ipv4 / end
> actions modify_field op set
> dst_type meta
> src_type pointer
> src_ptr 44332211
> width 32 / end
>
> 4. Assign destination MAC with EA:11:0B:AD:0B:ED value:
>
> flow create 0 egress group 1
> pattern eth / end
> actions modify_field op set
> dst_type mac_dst
> src_type value
> src_value EA110BAD0BED
> width 48 / end
>
> Signed-off-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>
> ---
> app/test-pmd/cmdline_flow.c | 55 +++++++++++++++++++++++++------------
> 1 file changed, 38 insertions(+), 17 deletions(-)
>
> diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c index
> bb22294dd3..736029c4fd 100644
> --- a/app/test-pmd/cmdline_flow.c
> +++ b/app/test-pmd/cmdline_flow.c
> @@ -448,6 +448,7 @@ enum index {
> ACTION_MODIFY_FIELD_SRC_LEVEL,
> ACTION_MODIFY_FIELD_SRC_OFFSET,
> ACTION_MODIFY_FIELD_SRC_VALUE,
> + ACTION_MODIFY_FIELD_SRC_POINTER,
> ACTION_MODIFY_FIELD_WIDTH,
> ACTION_CONNTRACK,
> ACTION_CONNTRACK_UPDATE,
> @@ -468,6 +469,14 @@ enum index {
> #define ITEM_RAW_SIZE \
> (sizeof(struct rte_flow_item_raw) + ITEM_RAW_PATTERN_SIZE)
>
> +/** Maximum size for external pattern in struct
> +rte_flow_action_modify_data. */ #define ACTION_MODIFY_PATTERN_SIZE 32
> +
> +/** Storage size for struct rte_flow_action_modify_field including
> +pattern. */ #define ACTION_MODIFY_SIZE \
> + (sizeof(struct rte_flow_action_modify_field) + \
> + ACTION_MODIFY_PATTERN_SIZE)
> +
> /** Maximum number of queue indices in struct rte_flow_action_rss. */ #define
> ACTION_RSS_QUEUE_NUM 128
>
> @@ -1704,6 +1713,7 @@ static const enum index action_modify_field_src[] = {
> ACTION_MODIFY_FIELD_SRC_LEVEL,
> ACTION_MODIFY_FIELD_SRC_OFFSET,
> ACTION_MODIFY_FIELD_SRC_VALUE,
> + ACTION_MODIFY_FIELD_SRC_POINTER,
> ACTION_MODIFY_FIELD_WIDTH,
> ZERO,
> };
> @@ -4455,8 +4465,7 @@ static const struct token token_list[] = {
> [ACTION_MODIFY_FIELD] = {
> .name = "modify_field",
> .help = "modify destination field with data from source field",
> - .priv = PRIV_ACTION(MODIFY_FIELD,
> - sizeof(struct rte_flow_action_modify_field)),
> + .priv = PRIV_ACTION(MODIFY_FIELD, ACTION_MODIFY_SIZE),
> .next = NEXT(NEXT_ENTRY(ACTION_MODIFY_FIELD_OP)),
> .call = parse_vc,
> },
> @@ -4539,11 +4548,26 @@ static const struct token token_list[] = {
> .name = "src_value",
> .help = "source immediate value",
> .next = NEXT(NEXT_ENTRY(ACTION_MODIFY_FIELD_WIDTH),
> - NEXT_ENTRY(COMMON_UNSIGNED)),
> - .args = ARGS(ARGS_ENTRY(struct rte_flow_action_modify_field,
> + NEXT_ENTRY(COMMON_HEX)),
> + .args = ARGS(ARGS_ENTRY_ARB(0, 0),
> + ARGS_ENTRY_ARB(0, 0),
> + ARGS_ENTRY(struct rte_flow_action_modify_field,
> src.value)),
> .call = parse_vc_conf,
> },
> + [ACTION_MODIFY_FIELD_SRC_POINTER] = {
> + .name = "src_ptr",
> + .help = "pointer to source immediate value",
> + .next = NEXT(NEXT_ENTRY(ACTION_MODIFY_FIELD_WIDTH),
> + NEXT_ENTRY(COMMON_HEX)),
> + .args = ARGS(ARGS_ENTRY(struct rte_flow_action_modify_field,
> + src.pvalue),
> + ARGS_ENTRY_ARB(0, 0),
> + ARGS_ENTRY_ARB
> + (sizeof(struct rte_flow_action_modify_field),
> + ACTION_MODIFY_PATTERN_SIZE)),
> + .call = parse_vc_conf,
> + },
> [ACTION_MODIFY_FIELD_WIDTH] = {
> .name = "width",
> .help = "number of bits to copy",
> @@ -7830,15 +7854,11 @@ static int
> comp_set_modify_field_op(struct context *ctx, const struct token *token,
> unsigned int ent, char *buf, unsigned int size) {
> - uint16_t idx = 0;
> -
> RTE_SET_USED(ctx);
> RTE_SET_USED(token);
> - for (idx = 0; modify_field_ops[idx]; ++idx)
> - ;
> if (!buf)
> - return idx + 1;
> - if (ent < idx)
> + return RTE_DIM(modify_field_ops);
> + if (ent < RTE_DIM(modify_field_ops) - 1)
> return strlcpy(buf, modify_field_ops[ent], size);
> return -1;
> }
> @@ -7848,16 +7868,17 @@ static int
> comp_set_modify_field_id(struct context *ctx, const struct token *token,
> unsigned int ent, char *buf, unsigned int size) {
> - uint16_t idx = 0;
> + const char *name;
>
> - RTE_SET_USED(ctx);
> RTE_SET_USED(token);
> - for (idx = 0; modify_field_ids[idx]; ++idx)
> - ;
> if (!buf)
> - return idx + 1;
> - if (ent < idx)
> - return strlcpy(buf, modify_field_ids[ent], size);
> + return RTE_DIM(modify_field_ids);
> + if (ent >= RTE_DIM(modify_field_ids) - 1)
> + return -1;
> + name = modify_field_ids[ent];
> + if (ctx->curr == ACTION_MODIFY_FIELD_SRC_TYPE ||
> + (strcmp(name, "pointer") && strcmp(name, "value")))
> + return strlcpy(buf, name, size);
> return -1;
> }
>
> --
> 2.18.1
Acked-by: Ori Kam <orika@nvidia.com>
Thanks,
Ori
next prev parent reply other threads:[~2021-10-11 9:13 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-10 14:16 [dpdk-dev] [RFC 1/3] ethdev: update modify field flow action Viacheslav Ovsiienko
2021-09-10 14:16 ` [dpdk-dev] [RFC 2/3] app/testpmd: update modify field flow action support Viacheslav Ovsiienko
2021-09-10 14:16 ` [dpdk-dev] [RFC 3/3] app/testpmd: fix hex string parser in flow commands Viacheslav Ovsiienko
2021-10-01 19:52 ` [dpdk-dev] [PATCH 0/3] ethdev: update modify field flow action Viacheslav Ovsiienko
2021-10-01 19:52 ` [dpdk-dev] [PATCH 1/3] " Viacheslav Ovsiienko
2021-10-04 9:38 ` Ori Kam
2021-10-01 19:52 ` [dpdk-dev] [PATCH 2/3] app/testpmd: update modify field flow action support Viacheslav Ovsiienko
2021-10-01 19:52 ` [dpdk-dev] [PATCH 3/3] app/testpmd: fix hex string parser in flow commands Viacheslav Ovsiienko
2021-10-10 23:45 ` [dpdk-dev] [PATCH v2 0/5] ethdev: update modify field flow action Viacheslav Ovsiienko
2021-10-10 23:45 ` [dpdk-dev] [PATCH v2 1/5] " Viacheslav Ovsiienko
2021-10-11 7:19 ` Ori Kam
2021-10-11 9:54 ` Andrew Rybchenko
2021-10-10 23:45 ` [dpdk-dev] [PATCH v2 2/5] app/testpmd: update modify field flow action support Viacheslav Ovsiienko
2021-10-11 9:13 ` Ori Kam [this message]
2021-10-10 23:45 ` [dpdk-dev] [PATCH v2 3/5] app/testpmd: fix hex string parser in flow commands Viacheslav Ovsiienko
2021-10-11 9:15 ` Ori Kam
2021-10-10 23:45 ` [dpdk-dev] [PATCH v2 4/5] net/mlx5: update modify field action Viacheslav Ovsiienko
2021-10-10 23:45 ` [dpdk-dev] [PATCH v2 5/5] doc: remove modify field action data deprecation notice Viacheslav Ovsiienko
2021-10-11 9:14 ` Ori Kam
2021-10-11 9:31 ` Andrew Rybchenko
2021-10-12 8:06 ` [dpdk-dev] [PATCH v3 0/5] ethdev: update modify field flow action Viacheslav Ovsiienko
2021-10-12 8:06 ` [dpdk-dev] [PATCH v3 1/5] " Viacheslav Ovsiienko
2021-10-12 8:16 ` Andrew Rybchenko
2021-10-12 8:06 ` [dpdk-dev] [PATCH v3 2/5] ethdev: fix missed experimental tag for modify field action Viacheslav Ovsiienko
2021-10-12 8:13 ` Ori Kam
2021-10-12 8:14 ` Andrew Rybchenko
2021-10-12 8:06 ` [dpdk-dev] [PATCH v3 3/5] app/testpmd: update modify field flow action support Viacheslav Ovsiienko
2021-10-12 8:06 ` [dpdk-dev] [PATCH v3 4/5] app/testpmd: fix hex string parser in flow commands Viacheslav Ovsiienko
2021-10-12 8:06 ` [dpdk-dev] [PATCH v3 5/5] net/mlx5: update modify field action Viacheslav Ovsiienko
2021-10-12 20:25 ` [dpdk-dev] [PATCH v5 0/5] ethdev: update modify field flow action Viacheslav Ovsiienko
2021-10-12 20:25 ` [dpdk-dev] [PATCH v5 1/5] " Viacheslav Ovsiienko
2021-10-12 20:25 ` [dpdk-dev] [PATCH v5 2/5] ethdev: fix missed experimental tag for modify field action Viacheslav Ovsiienko
2021-10-12 20:25 ` [dpdk-dev] [PATCH v5 3/5] app/testpmd: update modify field flow action support Viacheslav Ovsiienko
2021-10-12 20:25 ` [dpdk-dev] [PATCH v5 4/5] app/testpmd: fix hex string parser in flow commands Viacheslav Ovsiienko
2021-10-12 20:25 ` [dpdk-dev] [PATCH v5 5/5] net/mlx5: update modify field action Viacheslav Ovsiienko
2021-10-13 13:46 ` [dpdk-dev] [PATCH v5 0/5] ethdev: update modify field flow action Ferruh Yigit
2021-10-13 18:45 ` [dpdk-dev] [PATCH v6 " Viacheslav Ovsiienko
2021-10-13 18:45 ` [dpdk-dev] [PATCH v6 1/5] " Viacheslav Ovsiienko
2021-10-14 12:08 ` Ferruh Yigit
2021-10-14 20:07 ` Slava Ovsiienko
2021-10-13 18:45 ` [dpdk-dev] [PATCH v6 2/5] ethdev: fix missed experimental tag for modify field action Viacheslav Ovsiienko
2021-10-13 18:45 ` [dpdk-dev] [PATCH v6 3/5] app/testpmd: update modify field flow action support Viacheslav Ovsiienko
2021-10-13 18:45 ` [dpdk-dev] [PATCH v6 4/5] app/testpmd: fix hex string parser in flow commands Viacheslav Ovsiienko
2021-10-13 18:45 ` [dpdk-dev] [PATCH v6 5/5] net/mlx5: update modify field action Viacheslav Ovsiienko
2021-10-14 12:37 ` [dpdk-dev] [PATCH v6 0/5] ethdev: update modify field flow action Ferruh Yigit
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=DM8PR12MB54008695BF89AF0F39A8FD35D6B59@DM8PR12MB5400.namprd12.prod.outlook.com \
--to=orika@nvidia.com \
--cc=dev@dpdk.org \
--cc=getelson@nvidia.com \
--cc=matan@nvidia.com \
--cc=rasland@nvidia.com \
--cc=shahafs@nvidia.com \
--cc=thomas@monjalon.net \
--cc=viacheslavo@nvidia.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).