Add modify field support for GENEVE option fields:
 - "RTE_FLOW_FIELD_GENEVE_OPT_TYPE"
 - "RTE_FLOW_FIELD_GENEVE_OPT_CLASS"
 - "RTE_FLOW_FIELD_GENEVE_OPT_DATA"

Each GENEVE TLV option is identified by both its "class" and "type", so
2 new fields were added to "rte_flow_action_modify_data" structure to
help specify which option to modify.

To get room for those 2 new fields, the "level" field move to use
"uint8_t" which is more than enough for encapsulation level.
This patch also reduces all modify field encapsulation level "fully
masked" initializations to use UINT8_MAX instead of UINT32_MAX.
This change avoids compilation warning caused by this API changing.

Signed-off-by: Michael Baum <michae...@nvidia.com>
Acked-by: Ori Kam <or...@nvidia.com>
---
 app/test-pmd/cmdline_flow.c            | 48 +++++++++++++++++++++++++-
 doc/guides/prog_guide/rte_flow.rst     | 23 ++++++++++++
 doc/guides/rel_notes/release_23_07.rst |  3 ++
 drivers/net/mlx5/mlx5_flow_hw.c        | 22 ++++++------
 lib/ethdev/rte_flow.h                  | 48 +++++++++++++++++++++++++-
 5 files changed, 131 insertions(+), 13 deletions(-)

diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c
index 58939ec321..8c1dea53c0 100644
--- a/app/test-pmd/cmdline_flow.c
+++ b/app/test-pmd/cmdline_flow.c
@@ -636,11 +636,15 @@ enum index {
        ACTION_MODIFY_FIELD_DST_TYPE_VALUE,
        ACTION_MODIFY_FIELD_DST_LEVEL,
        ACTION_MODIFY_FIELD_DST_LEVEL_VALUE,
+       ACTION_MODIFY_FIELD_DST_TYPE_ID,
+       ACTION_MODIFY_FIELD_DST_CLASS_ID,
        ACTION_MODIFY_FIELD_DST_OFFSET,
        ACTION_MODIFY_FIELD_SRC_TYPE,
        ACTION_MODIFY_FIELD_SRC_TYPE_VALUE,
        ACTION_MODIFY_FIELD_SRC_LEVEL,
        ACTION_MODIFY_FIELD_SRC_LEVEL_VALUE,
+       ACTION_MODIFY_FIELD_SRC_TYPE_ID,
+       ACTION_MODIFY_FIELD_SRC_CLASS_ID,
        ACTION_MODIFY_FIELD_SRC_OFFSET,
        ACTION_MODIFY_FIELD_SRC_VALUE,
        ACTION_MODIFY_FIELD_SRC_POINTER,
@@ -854,7 +858,9 @@ static const char *const modify_field_ids[] = {
        "ipv4_ecn", "ipv6_ecn", "gtp_psc_qfi", "meter_color",
        "ipv6_proto",
        "flex_item",
-       "hash_result", NULL
+       "hash_result",
+       "geneve_opt_type", "geneve_opt_class", "geneve_opt_data",
+       NULL
 };
 
 static const char *const meter_colors[] = {
@@ -2295,6 +2301,8 @@ static const enum index next_action_sample[] = {
 
 static const enum index action_modify_field_dst[] = {
        ACTION_MODIFY_FIELD_DST_LEVEL,
+       ACTION_MODIFY_FIELD_DST_TYPE_ID,
+       ACTION_MODIFY_FIELD_DST_CLASS_ID,
        ACTION_MODIFY_FIELD_DST_OFFSET,
        ACTION_MODIFY_FIELD_SRC_TYPE,
        ZERO,
@@ -2302,6 +2310,8 @@ static const enum index action_modify_field_dst[] = {
 
 static const enum index action_modify_field_src[] = {
        ACTION_MODIFY_FIELD_SRC_LEVEL,
+       ACTION_MODIFY_FIELD_SRC_TYPE_ID,
+       ACTION_MODIFY_FIELD_SRC_CLASS_ID,
        ACTION_MODIFY_FIELD_SRC_OFFSET,
        ACTION_MODIFY_FIELD_SRC_VALUE,
        ACTION_MODIFY_FIELD_SRC_POINTER,
@@ -6388,6 +6398,24 @@ static const struct token token_list[] = {
                .call = parse_vc_modify_field_level,
                .comp = comp_none,
        },
+       [ACTION_MODIFY_FIELD_DST_TYPE_ID] = {
+               .name = "dst_type_id",
+               .help = "destination field type ID",
+               .next = NEXT(action_modify_field_dst,
+                            NEXT_ENTRY(COMMON_UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY(struct rte_flow_action_modify_field,
+                                       dst.type)),
+               .call = parse_vc_conf,
+       },
+       [ACTION_MODIFY_FIELD_DST_CLASS_ID] = {
+               .name = "dst_class",
+               .help = "destination field class ID",
+               .next = NEXT(action_modify_field_dst,
+                            NEXT_ENTRY(COMMON_UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY_HTON(struct 
rte_flow_action_modify_field,
+                                            dst.class_id)),
+               .call = parse_vc_conf,
+       },
        [ACTION_MODIFY_FIELD_DST_OFFSET] = {
                .name = "dst_offset",
                .help = "destination field bit offset",
@@ -6423,6 +6451,24 @@ static const struct token token_list[] = {
                .call = parse_vc_modify_field_level,
                .comp = comp_none,
        },
+       [ACTION_MODIFY_FIELD_SRC_TYPE_ID] = {
+               .name = "src_type_id",
+               .help = "source field type ID",
+               .next = NEXT(action_modify_field_src,
+                            NEXT_ENTRY(COMMON_UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY(struct rte_flow_action_modify_field,
+                                       src.type)),
+               .call = parse_vc_conf,
+       },
+       [ACTION_MODIFY_FIELD_SRC_CLASS_ID] = {
+               .name = "src_class",
+               .help = "source field class ID",
+               .next = NEXT(action_modify_field_src,
+                            NEXT_ENTRY(COMMON_UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY_HTON(struct 
rte_flow_action_modify_field,
+                                            src.class_id)),
+               .call = parse_vc_conf,
+       },
        [ACTION_MODIFY_FIELD_SRC_OFFSET] = {
                .name = "src_offset",
                .help = "source field bit offset",
diff --git a/doc/guides/prog_guide/rte_flow.rst 
b/doc/guides/prog_guide/rte_flow.rst
index 25b57bf86d..ec812de335 100644
--- a/doc/guides/prog_guide/rte_flow.rst
+++ b/doc/guides/prog_guide/rte_flow.rst
@@ -2937,6 +2937,14 @@ as well as any tag element in the tag array:
 For the tag array (in case of multiple tags are supported and present)
 ``level`` translates directly into the array index.
 
+``type`` is used to specify (along with ``class_id``) the Geneve option which
+is being modified.
+This field is relevant only for ``RTE_FLOW_FIELD_GENEVE_OPT_XXXX`` type.
+
+``class_id`` is used to specify (along with ``type``) the Geneve option which
+is being modified.
+This field is relevant only for ``RTE_FLOW_FIELD_GENEVE_OPT_XXXX`` type.
+
 ``flex_handle`` is used to specify the flex item pointer which is being
 modified. ``flex_handle`` and ``level`` are mutually exclusive.
 
@@ -2967,6 +2975,17 @@ to replace the third byte of MAC address with value 
0x85, application should
 specify destination width as 8, destination offset as 16, and provide immediate
 value as sequence of bytes {xxx, xxx, 0x85, xxx, xxx, xxx}.
 
+The ``RTE_FLOW_FIELD_GENEVE_OPT_DATA`` type supports modifying only one DW in
+single action and align to 32 bits. For example, for modifying 16 bits start
+from offset 24, 2 different actions should be prepared. The first one includs
+``offset=24`` and ``width=8``, and the seconde one includs ``offset=32`` and
+``width=8``.
+Application should provide the data in immediate value memory only for the
+single DW even though the offset is related to start of first DW. For example,
+to replace the third byte of second DW in Geneve option data with value 0x85,
+application should specify destination width as 8, destination offset as 48,
+and provide immediate value 0xXXXX85XX.
+
 .. _table_rte_flow_action_modify_field:
 
 .. table:: MODIFY_FIELD
@@ -2994,6 +3013,10 @@ value as sequence of bytes {xxx, xxx, 0x85, xxx, xxx, 
xxx}.
    
+-----------------+----------------------------------------------------------+
    | ``level``       | encapsulation level of a packet field or tag array 
index |
    
+-----------------+----------------------------------------------------------+
+   | ``type``        | geneve option type                                      
 |
+   
+-----------------+----------------------------------------------------------+
+   | ``class_id``    | geneve option class ID                                  
 |
+   
+-----------------+----------------------------------------------------------+
    | ``flex_handle`` | flex item handle of a packet field                      
 |
    
+-----------------+----------------------------------------------------------+
    | ``offset``      | number of bits to skip at the beginning                 
 |
diff --git a/doc/guides/rel_notes/release_23_07.rst 
b/doc/guides/rel_notes/release_23_07.rst
index a9b1293689..ce1755096f 100644
--- a/doc/guides/rel_notes/release_23_07.rst
+++ b/doc/guides/rel_notes/release_23_07.rst
@@ -84,6 +84,9 @@ API Changes
    Also, make sure to start the actual text at the margin.
    =======================================================
 
+* The ``level`` field in experimental structure
+  ``struct rte_flow_action_modify_data`` was reduced to 8 bits.
+
 
 ABI Changes
 -----------
diff --git a/drivers/net/mlx5/mlx5_flow_hw.c b/drivers/net/mlx5/mlx5_flow_hw.c
index 7e0ee8d883..1b68a19900 100644
--- a/drivers/net/mlx5/mlx5_flow_hw.c
+++ b/drivers/net/mlx5/mlx5_flow_hw.c
@@ -3565,7 +3565,7 @@ flow_hw_validate_action_modify_field(const struct 
rte_flow_action *action,
                return rte_flow_error_set(error, EINVAL,
                                RTE_FLOW_ERROR_TYPE_ACTION, action,
                                "immediate value, pointer and hash result 
cannot be used as destination");
-       if (mask_conf->dst.level != UINT32_MAX)
+       if (mask_conf->dst.level != UINT8_MAX)
                return rte_flow_error_set(error, EINVAL,
                        RTE_FLOW_ERROR_TYPE_ACTION, action,
                        "destination encapsulation level must be fully masked");
@@ -3579,7 +3579,7 @@ flow_hw_validate_action_modify_field(const struct 
rte_flow_action *action,
                                "destination field mask and template are not 
equal");
        if (action_conf->src.field != RTE_FLOW_FIELD_POINTER &&
            action_conf->src.field != RTE_FLOW_FIELD_VALUE) {
-               if (mask_conf->src.level != UINT32_MAX)
+               if (mask_conf->src.level != UINT8_MAX)
                        return rte_flow_error_set(error, EINVAL,
                                RTE_FLOW_ERROR_TYPE_ACTION, action,
                                "source encapsulation level must be fully 
masked");
@@ -4450,7 +4450,7 @@ flow_hw_set_vlan_vid(struct rte_eth_dev *dev,
                .operation = RTE_FLOW_MODIFY_SET,
                .dst = {
                        .field = RTE_FLOW_FIELD_VLAN_ID,
-                       .level = 0xffffffff, .offset = 0xffffffff,
+                       .level = 0xff, .offset = 0xffffffff,
                },
                .src = {
                        .field = RTE_FLOW_FIELD_VALUE,
@@ -4583,12 +4583,12 @@ flow_hw_actions_template_create(struct rte_eth_dev *dev,
                .operation = RTE_FLOW_MODIFY_SET,
                .dst = {
                        .field = (enum 
rte_flow_field_id)MLX5_RTE_FLOW_FIELD_META_REG,
-                       .level = UINT32_MAX,
+                       .level = UINT8_MAX,
                        .offset = UINT32_MAX,
                },
                .src = {
                        .field = (enum 
rte_flow_field_id)MLX5_RTE_FLOW_FIELD_META_REG,
-                       .level = UINT32_MAX,
+                       .level = UINT8_MAX,
                        .offset = UINT32_MAX,
                },
                .width = UINT32_MAX,
@@ -5653,7 +5653,7 @@ flow_hw_create_tx_repr_tag_jump_acts_tmpl(struct 
rte_eth_dev *dev)
                .operation = RTE_FLOW_MODIFY_SET,
                .dst = {
                        .field = (enum 
rte_flow_field_id)MLX5_RTE_FLOW_FIELD_META_REG,
-                       .level = UINT32_MAX,
+                       .level = UINT8_MAX,
                        .offset = UINT32_MAX,
                },
                .src = {
@@ -5677,12 +5677,12 @@ flow_hw_create_tx_repr_tag_jump_acts_tmpl(struct 
rte_eth_dev *dev)
                .operation = RTE_FLOW_MODIFY_SET,
                .dst = {
                        .field = (enum 
rte_flow_field_id)MLX5_RTE_FLOW_FIELD_META_REG,
-                       .level = UINT32_MAX,
+                       .level = UINT8_MAX,
                        .offset = UINT32_MAX,
                },
                .src = {
                        .field = (enum 
rte_flow_field_id)MLX5_RTE_FLOW_FIELD_META_REG,
-                       .level = UINT32_MAX,
+                       .level = UINT8_MAX,
                        .offset = UINT32_MAX,
                },
                .width = UINT32_MAX,
@@ -6009,7 +6009,7 @@ flow_hw_create_ctrl_regc_jump_actions_template(struct 
rte_eth_dev *dev)
                .operation = RTE_FLOW_MODIFY_SET,
                .dst = {
                        .field = (enum 
rte_flow_field_id)MLX5_RTE_FLOW_FIELD_META_REG,
-                       .level = UINT32_MAX,
+                       .level = UINT8_MAX,
                        .offset = UINT32_MAX,
                },
                .src = {
@@ -6182,12 +6182,12 @@ 
flow_hw_create_tx_default_mreg_copy_actions_template(struct rte_eth_dev *dev)
                .operation = RTE_FLOW_MODIFY_SET,
                .dst = {
                        .field = (enum 
rte_flow_field_id)MLX5_RTE_FLOW_FIELD_META_REG,
-                       .level = UINT32_MAX,
+                       .level = UINT8_MAX,
                        .offset = UINT32_MAX,
                },
                .src = {
                        .field = (enum 
rte_flow_field_id)MLX5_RTE_FLOW_FIELD_META_REG,
-                       .level = UINT32_MAX,
+                       .level = UINT8_MAX,
                        .offset = UINT32_MAX,
                },
                .width = UINT32_MAX,
diff --git a/lib/ethdev/rte_flow.h b/lib/ethdev/rte_flow.h
index 713ba8b65c..f30d4b033f 100644
--- a/lib/ethdev/rte_flow.h
+++ b/lib/ethdev/rte_flow.h
@@ -3773,6 +3773,9 @@ enum rte_flow_field_id {
        RTE_FLOW_FIELD_IPV6_PROTO,      /**< IPv6 next header. */
        RTE_FLOW_FIELD_FLEX_ITEM,       /**< Flex item. */
        RTE_FLOW_FIELD_HASH_RESULT,     /**< Hash result. */
+       RTE_FLOW_FIELD_GENEVE_OPT_TYPE, /**< GENEVE option type */
+       RTE_FLOW_FIELD_GENEVE_OPT_CLASS,/**< GENEVE option class */
+       RTE_FLOW_FIELD_GENEVE_OPT_DATA  /**< GENEVE option data */
 };
 
 /**
@@ -3788,7 +3791,50 @@ struct rte_flow_action_modify_data {
                struct {
                        /** Encapsulation level or tag index or flex item 
handle. */
                        union {
-                               uint32_t level;
+                               struct {
+                                       /**
+                                        * Packet encapsulation level containing
+                                        * the field modify to.
+                                        *
+                                        * - @p 0 requests the default behavior.
+                                        *   Depending on the packet type, it
+                                        *   can mean outermost, innermost or
+                                        *   anything in between.
+                                        *
+                                        *   It basically stands for the
+                                        *   innermost encapsulation level
+                                        *   modification can be performed on
+                                        *   according to PMD and device
+                                        *   capabilities.
+                                        *
+                                        * - @p 1 requests modification to be
+                                        *   performed on the outermost packet
+                                        *   encapsulation level.
+                                        *
+                                        * - @p 2 and subsequent values request
+                                        *   modification to be performed on
+                                        *   the specified inner packet
+                                        *   encapsulation level, from
+                                        *   outermost to innermost (lower to
+                                        *   higher values).
+                                        *
+                                        * Values other than @p 0 are not
+                                        * necessarily supported.
+                                        */
+                                       uint8_t level;
+                                       /**
+                                        * Geneve option type. relevant only
+                                        * for RTE_FLOW_FIELD_GENEVE_OPT_XXXX
+                                        * modification type.
+                                        */
+                                       uint8_t type;
+                                       /**
+                                        * Geneve option class. relevant only
+                                        * for RTE_FLOW_FIELD_GENEVE_OPT_XXXX
+                                        * modification type.
+                                        */
+                                       rte_be16_t class_id;
+                               };
                                struct rte_flow_item_flex_handle *flex_handle;
                        };
                        /** Number of bits to skip from a field. */
-- 
2.25.1

Reply via email to