app/testpmd: add flow table management
Add testpmd support for the rte_flow_table API. Provide the command line interface for the flow table creation/destruction. Usage example: testpmd> flow template_table 0 create table_id 6 group 9 priority 4 ingress mode 1 rules_number 64 pattern_template 2 actions_template 4 testpmd> flow template_table 0 destroy table 6 Signed-off-by: Alexander Kozyrev <akozyrev@nvidia.com> Acked-by: Ori Kam <orika@nvidia.com>
This commit is contained in:
parent
04cc665fab
commit
c4b3887334
@ -58,6 +58,7 @@ enum index {
|
||||
COMMON_FLEX_TOKEN,
|
||||
COMMON_PATTERN_TEMPLATE_ID,
|
||||
COMMON_ACTIONS_TEMPLATE_ID,
|
||||
COMMON_TABLE_ID,
|
||||
|
||||
/* TOP-level command. */
|
||||
ADD,
|
||||
@ -78,6 +79,7 @@ enum index {
|
||||
CONFIGURE,
|
||||
PATTERN_TEMPLATE,
|
||||
ACTIONS_TEMPLATE,
|
||||
TABLE,
|
||||
INDIRECT_ACTION,
|
||||
VALIDATE,
|
||||
CREATE,
|
||||
@ -118,6 +120,20 @@ enum index {
|
||||
ACTIONS_TEMPLATE_SPEC,
|
||||
ACTIONS_TEMPLATE_MASK,
|
||||
|
||||
/* Table arguments. */
|
||||
TABLE_CREATE,
|
||||
TABLE_DESTROY,
|
||||
TABLE_CREATE_ID,
|
||||
TABLE_DESTROY_ID,
|
||||
TABLE_GROUP,
|
||||
TABLE_PRIORITY,
|
||||
TABLE_INGRESS,
|
||||
TABLE_EGRESS,
|
||||
TABLE_TRANSFER,
|
||||
TABLE_RULES_NUMBER,
|
||||
TABLE_PATTERN_TEMPLATE,
|
||||
TABLE_ACTIONS_TEMPLATE,
|
||||
|
||||
/* Tunnel arguments. */
|
||||
TUNNEL_CREATE,
|
||||
TUNNEL_CREATE_TYPE,
|
||||
@ -912,6 +928,18 @@ struct buffer {
|
||||
uint32_t *template_id;
|
||||
uint32_t template_id_n;
|
||||
} templ_destroy; /**< Template destroy arguments. */
|
||||
struct {
|
||||
uint32_t id;
|
||||
struct rte_flow_template_table_attr attr;
|
||||
uint32_t *pat_templ_id;
|
||||
uint32_t pat_templ_id_n;
|
||||
uint32_t *act_templ_id;
|
||||
uint32_t act_templ_id_n;
|
||||
} table; /**< Table arguments. */
|
||||
struct {
|
||||
uint32_t *table_id;
|
||||
uint32_t table_id_n;
|
||||
} table_destroy; /**< Template destroy arguments. */
|
||||
struct {
|
||||
uint32_t *action_id;
|
||||
uint32_t action_id_n;
|
||||
@ -1049,6 +1077,32 @@ static const enum index next_at_destroy_attr[] = {
|
||||
ZERO,
|
||||
};
|
||||
|
||||
static const enum index next_table_subcmd[] = {
|
||||
TABLE_CREATE,
|
||||
TABLE_DESTROY,
|
||||
ZERO,
|
||||
};
|
||||
|
||||
static const enum index next_table_attr[] = {
|
||||
TABLE_CREATE_ID,
|
||||
TABLE_GROUP,
|
||||
TABLE_PRIORITY,
|
||||
TABLE_INGRESS,
|
||||
TABLE_EGRESS,
|
||||
TABLE_TRANSFER,
|
||||
TABLE_RULES_NUMBER,
|
||||
TABLE_PATTERN_TEMPLATE,
|
||||
TABLE_ACTIONS_TEMPLATE,
|
||||
END,
|
||||
ZERO,
|
||||
};
|
||||
|
||||
static const enum index next_table_destroy_attr[] = {
|
||||
TABLE_DESTROY_ID,
|
||||
END,
|
||||
ZERO,
|
||||
};
|
||||
|
||||
static const enum index next_ia_create_attr[] = {
|
||||
INDIRECT_ACTION_CREATE_ID,
|
||||
INDIRECT_ACTION_INGRESS,
|
||||
@ -2154,6 +2208,11 @@ static int parse_template(struct context *, const struct token *,
|
||||
static int parse_template_destroy(struct context *, const struct token *,
|
||||
const char *, unsigned int,
|
||||
void *, unsigned int);
|
||||
static int parse_table(struct context *, const struct token *,
|
||||
const char *, unsigned int, void *, unsigned int);
|
||||
static int parse_table_destroy(struct context *, const struct token *,
|
||||
const char *, unsigned int,
|
||||
void *, unsigned int);
|
||||
static int parse_tunnel(struct context *, const struct token *,
|
||||
const char *, unsigned int,
|
||||
void *, unsigned int);
|
||||
@ -2227,6 +2286,8 @@ static int comp_pattern_template_id(struct context *, const struct token *,
|
||||
unsigned int, char *, unsigned int);
|
||||
static int comp_actions_template_id(struct context *, const struct token *,
|
||||
unsigned int, char *, unsigned int);
|
||||
static int comp_table_id(struct context *, const struct token *,
|
||||
unsigned int, char *, unsigned int);
|
||||
|
||||
/** Token definitions. */
|
||||
static const struct token token_list[] = {
|
||||
@ -2391,6 +2452,13 @@ static const struct token token_list[] = {
|
||||
.call = parse_int,
|
||||
.comp = comp_actions_template_id,
|
||||
},
|
||||
[COMMON_TABLE_ID] = {
|
||||
.name = "{table_id}",
|
||||
.type = "TABLE_ID",
|
||||
.help = "table id",
|
||||
.call = parse_int,
|
||||
.comp = comp_table_id,
|
||||
},
|
||||
/* Top-level command. */
|
||||
[FLOW] = {
|
||||
.name = "flow",
|
||||
@ -2401,6 +2469,7 @@ static const struct token token_list[] = {
|
||||
CONFIGURE,
|
||||
PATTERN_TEMPLATE,
|
||||
ACTIONS_TEMPLATE,
|
||||
TABLE,
|
||||
INDIRECT_ACTION,
|
||||
VALIDATE,
|
||||
CREATE,
|
||||
@ -2617,6 +2686,104 @@ static const struct token token_list[] = {
|
||||
.call = parse_template,
|
||||
},
|
||||
/* Top-level command. */
|
||||
[TABLE] = {
|
||||
.name = "template_table",
|
||||
.type = "{command} {port_id} [{arg} [...]]",
|
||||
.help = "manage template tables",
|
||||
.next = NEXT(next_table_subcmd, NEXT_ENTRY(COMMON_PORT_ID)),
|
||||
.args = ARGS(ARGS_ENTRY(struct buffer, port)),
|
||||
.call = parse_table,
|
||||
},
|
||||
/* Sub-level commands. */
|
||||
[TABLE_CREATE] = {
|
||||
.name = "create",
|
||||
.help = "create template table",
|
||||
.next = NEXT(next_table_attr),
|
||||
.call = parse_table,
|
||||
},
|
||||
[TABLE_DESTROY] = {
|
||||
.name = "destroy",
|
||||
.help = "destroy template table",
|
||||
.next = NEXT(NEXT_ENTRY(TABLE_DESTROY_ID)),
|
||||
.args = ARGS(ARGS_ENTRY(struct buffer, port)),
|
||||
.call = parse_table_destroy,
|
||||
},
|
||||
/* Table arguments. */
|
||||
[TABLE_CREATE_ID] = {
|
||||
.name = "table_id",
|
||||
.help = "specify table id to create",
|
||||
.next = NEXT(next_table_attr,
|
||||
NEXT_ENTRY(COMMON_TABLE_ID)),
|
||||
.args = ARGS(ARGS_ENTRY(struct buffer, args.table.id)),
|
||||
},
|
||||
[TABLE_DESTROY_ID] = {
|
||||
.name = "table",
|
||||
.help = "specify table id to destroy",
|
||||
.next = NEXT(next_table_destroy_attr,
|
||||
NEXT_ENTRY(COMMON_TABLE_ID)),
|
||||
.args = ARGS(ARGS_ENTRY_PTR(struct buffer,
|
||||
args.table_destroy.table_id)),
|
||||
.call = parse_table_destroy,
|
||||
},
|
||||
[TABLE_GROUP] = {
|
||||
.name = "group",
|
||||
.help = "specify a group",
|
||||
.next = NEXT(next_table_attr, NEXT_ENTRY(COMMON_GROUP_ID)),
|
||||
.args = ARGS(ARGS_ENTRY(struct buffer,
|
||||
args.table.attr.flow_attr.group)),
|
||||
},
|
||||
[TABLE_PRIORITY] = {
|
||||
.name = "priority",
|
||||
.help = "specify a priority level",
|
||||
.next = NEXT(next_table_attr, NEXT_ENTRY(COMMON_PRIORITY_LEVEL)),
|
||||
.args = ARGS(ARGS_ENTRY(struct buffer,
|
||||
args.table.attr.flow_attr.priority)),
|
||||
},
|
||||
[TABLE_EGRESS] = {
|
||||
.name = "egress",
|
||||
.help = "affect rule to egress",
|
||||
.next = NEXT(next_table_attr),
|
||||
.call = parse_table,
|
||||
},
|
||||
[TABLE_INGRESS] = {
|
||||
.name = "ingress",
|
||||
.help = "affect rule to ingress",
|
||||
.next = NEXT(next_table_attr),
|
||||
.call = parse_table,
|
||||
},
|
||||
[TABLE_TRANSFER] = {
|
||||
.name = "transfer",
|
||||
.help = "affect rule to transfer",
|
||||
.next = NEXT(next_table_attr),
|
||||
.call = parse_table,
|
||||
},
|
||||
[TABLE_RULES_NUMBER] = {
|
||||
.name = "rules_number",
|
||||
.help = "number of rules in table",
|
||||
.next = NEXT(next_table_attr,
|
||||
NEXT_ENTRY(COMMON_UNSIGNED)),
|
||||
.args = ARGS(ARGS_ENTRY(struct buffer,
|
||||
args.table.attr.nb_flows)),
|
||||
},
|
||||
[TABLE_PATTERN_TEMPLATE] = {
|
||||
.name = "pattern_template",
|
||||
.help = "specify pattern template id",
|
||||
.next = NEXT(next_table_attr,
|
||||
NEXT_ENTRY(COMMON_PATTERN_TEMPLATE_ID)),
|
||||
.args = ARGS(ARGS_ENTRY_PTR(struct buffer,
|
||||
args.table.pat_templ_id)),
|
||||
.call = parse_table,
|
||||
},
|
||||
[TABLE_ACTIONS_TEMPLATE] = {
|
||||
.name = "actions_template",
|
||||
.help = "specify actions template id",
|
||||
.next = NEXT(next_table_attr,
|
||||
NEXT_ENTRY(COMMON_ACTIONS_TEMPLATE_ID)),
|
||||
.args = ARGS(ARGS_ENTRY_PTR(struct buffer,
|
||||
args.table.act_templ_id)),
|
||||
.call = parse_table,
|
||||
},
|
||||
/* Top-level command. */
|
||||
[INDIRECT_ACTION] = {
|
||||
.name = "indirect_action",
|
||||
.type = "{command} {port_id} [{arg} [...]]",
|
||||
@ -8223,6 +8390,119 @@ parse_template_destroy(struct context *ctx, const struct token *token,
|
||||
return len;
|
||||
}
|
||||
|
||||
/** Parse tokens for table create command. */
|
||||
static int
|
||||
parse_table(struct context *ctx, const struct token *token,
|
||||
const char *str, unsigned int len,
|
||||
void *buf, unsigned int size)
|
||||
{
|
||||
struct buffer *out = buf;
|
||||
uint32_t *template_id;
|
||||
|
||||
/* Token name must match. */
|
||||
if (parse_default(ctx, token, str, len, NULL, 0) < 0)
|
||||
return -1;
|
||||
/* Nothing else to do if there is no buffer. */
|
||||
if (!out)
|
||||
return len;
|
||||
if (!out->command) {
|
||||
if (ctx->curr != TABLE)
|
||||
return -1;
|
||||
if (sizeof(*out) > size)
|
||||
return -1;
|
||||
out->command = ctx->curr;
|
||||
ctx->objdata = 0;
|
||||
ctx->object = out;
|
||||
ctx->objmask = NULL;
|
||||
return len;
|
||||
}
|
||||
switch (ctx->curr) {
|
||||
case TABLE_CREATE:
|
||||
out->command = ctx->curr;
|
||||
ctx->objdata = 0;
|
||||
ctx->object = out;
|
||||
ctx->objmask = NULL;
|
||||
out->args.table.id = UINT32_MAX;
|
||||
return len;
|
||||
case TABLE_PATTERN_TEMPLATE:
|
||||
out->args.table.pat_templ_id =
|
||||
(void *)RTE_ALIGN_CEIL((uintptr_t)(out + 1),
|
||||
sizeof(double));
|
||||
template_id = out->args.table.pat_templ_id
|
||||
+ out->args.table.pat_templ_id_n++;
|
||||
if ((uint8_t *)template_id > (uint8_t *)out + size)
|
||||
return -1;
|
||||
ctx->objdata = 0;
|
||||
ctx->object = template_id;
|
||||
ctx->objmask = NULL;
|
||||
return len;
|
||||
case TABLE_ACTIONS_TEMPLATE:
|
||||
out->args.table.act_templ_id =
|
||||
(void *)RTE_ALIGN_CEIL((uintptr_t)
|
||||
(out->args.table.pat_templ_id +
|
||||
out->args.table.pat_templ_id_n),
|
||||
sizeof(double));
|
||||
template_id = out->args.table.act_templ_id
|
||||
+ out->args.table.act_templ_id_n++;
|
||||
if ((uint8_t *)template_id > (uint8_t *)out + size)
|
||||
return -1;
|
||||
ctx->objdata = 0;
|
||||
ctx->object = template_id;
|
||||
ctx->objmask = NULL;
|
||||
return len;
|
||||
case TABLE_INGRESS:
|
||||
out->args.table.attr.flow_attr.ingress = 1;
|
||||
return len;
|
||||
case TABLE_EGRESS:
|
||||
out->args.table.attr.flow_attr.egress = 1;
|
||||
return len;
|
||||
case TABLE_TRANSFER:
|
||||
out->args.table.attr.flow_attr.transfer = 1;
|
||||
return len;
|
||||
default:
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
/** Parse tokens for table destroy command. */
|
||||
static int
|
||||
parse_table_destroy(struct context *ctx, const struct token *token,
|
||||
const char *str, unsigned int len,
|
||||
void *buf, unsigned int size)
|
||||
{
|
||||
struct buffer *out = buf;
|
||||
uint32_t *table_id;
|
||||
|
||||
/* Token name must match. */
|
||||
if (parse_default(ctx, token, str, len, NULL, 0) < 0)
|
||||
return -1;
|
||||
/* Nothing else to do if there is no buffer. */
|
||||
if (!out)
|
||||
return len;
|
||||
if (!out->command || out->command == TABLE) {
|
||||
if (ctx->curr != TABLE_DESTROY)
|
||||
return -1;
|
||||
if (sizeof(*out) > size)
|
||||
return -1;
|
||||
out->command = ctx->curr;
|
||||
ctx->objdata = 0;
|
||||
ctx->object = out;
|
||||
ctx->objmask = NULL;
|
||||
out->args.table_destroy.table_id =
|
||||
(void *)RTE_ALIGN_CEIL((uintptr_t)(out + 1),
|
||||
sizeof(double));
|
||||
return len;
|
||||
}
|
||||
table_id = out->args.table_destroy.table_id
|
||||
+ out->args.table_destroy.table_id_n++;
|
||||
if ((uint8_t *)table_id > (uint8_t *)out + size)
|
||||
return -1;
|
||||
ctx->objdata = 0;
|
||||
ctx->object = table_id;
|
||||
ctx->objmask = NULL;
|
||||
return len;
|
||||
}
|
||||
|
||||
static int
|
||||
parse_flex(struct context *ctx, const struct token *token,
|
||||
const char *str, unsigned int len,
|
||||
@ -9240,6 +9520,30 @@ comp_actions_template_id(struct context *ctx, const struct token *token,
|
||||
return i;
|
||||
}
|
||||
|
||||
/** Complete available table IDs. */
|
||||
static int
|
||||
comp_table_id(struct context *ctx, const struct token *token,
|
||||
unsigned int ent, char *buf, unsigned int size)
|
||||
{
|
||||
unsigned int i = 0;
|
||||
struct rte_port *port;
|
||||
struct port_table *pt;
|
||||
|
||||
(void)token;
|
||||
if (port_id_is_invalid(ctx->port, DISABLED_WARN) ||
|
||||
ctx->port == (portid_t)RTE_PORT_ALL)
|
||||
return -1;
|
||||
port = &ports[ctx->port];
|
||||
for (pt = port->table_list; pt != NULL; pt = pt->next) {
|
||||
if (buf && i == ent)
|
||||
return snprintf(buf, size, "%u", pt->id);
|
||||
++i;
|
||||
}
|
||||
if (buf)
|
||||
return -1;
|
||||
return i;
|
||||
}
|
||||
|
||||
/** Internal context. */
|
||||
static struct context cmd_flow_context;
|
||||
|
||||
@ -9540,6 +9844,17 @@ cmd_flow_parsed(const struct buffer *in)
|
||||
in->args.templ_destroy.template_id_n,
|
||||
in->args.templ_destroy.template_id);
|
||||
break;
|
||||
case TABLE_CREATE:
|
||||
port_flow_template_table_create(in->port, in->args.table.id,
|
||||
&in->args.table.attr, in->args.table.pat_templ_id_n,
|
||||
in->args.table.pat_templ_id, in->args.table.act_templ_id_n,
|
||||
in->args.table.act_templ_id);
|
||||
break;
|
||||
case TABLE_DESTROY:
|
||||
port_flow_template_table_destroy(in->port,
|
||||
in->args.table_destroy.table_id_n,
|
||||
in->args.table_destroy.table_id);
|
||||
break;
|
||||
case INDIRECT_ACTION_CREATE:
|
||||
port_action_handle_create(
|
||||
in->port, in->args.vc.attr.group,
|
||||
|
@ -1653,6 +1653,49 @@ template_alloc(uint32_t id, struct port_template **template,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
table_alloc(uint32_t id, struct port_table **table,
|
||||
struct port_table **list)
|
||||
{
|
||||
struct port_table *lst = *list;
|
||||
struct port_table **ppt;
|
||||
struct port_table *pt = NULL;
|
||||
|
||||
*table = NULL;
|
||||
if (id == UINT32_MAX) {
|
||||
/* taking first available ID */
|
||||
if (lst) {
|
||||
if (lst->id == UINT32_MAX - 1) {
|
||||
printf("Highest table ID is already"
|
||||
" assigned, delete it first\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
id = lst->id + 1;
|
||||
} else {
|
||||
id = 0;
|
||||
}
|
||||
}
|
||||
pt = calloc(1, sizeof(*pt));
|
||||
if (!pt) {
|
||||
printf("Allocation of table failed\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
ppt = list;
|
||||
while (*ppt && (*ppt)->id > id)
|
||||
ppt = &(*ppt)->next;
|
||||
if (*ppt && (*ppt)->id == id) {
|
||||
printf("Table #%u is already assigned,"
|
||||
" delete it first\n", id);
|
||||
free(pt);
|
||||
return -EINVAL;
|
||||
}
|
||||
pt->next = *ppt;
|
||||
pt->id = id;
|
||||
*ppt = pt;
|
||||
*table = pt;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/** Get info about flow management resources. */
|
||||
int
|
||||
port_flow_get_info(portid_t port_id)
|
||||
@ -2289,6 +2332,134 @@ port_flow_actions_template_destroy(portid_t port_id, uint32_t n,
|
||||
return ret;
|
||||
}
|
||||
|
||||
/** Create table */
|
||||
int
|
||||
port_flow_template_table_create(portid_t port_id, uint32_t id,
|
||||
const struct rte_flow_template_table_attr *table_attr,
|
||||
uint32_t nb_pattern_templates, uint32_t *pattern_templates,
|
||||
uint32_t nb_actions_templates, uint32_t *actions_templates)
|
||||
{
|
||||
struct rte_port *port;
|
||||
struct port_table *pt;
|
||||
struct port_template *temp = NULL;
|
||||
int ret;
|
||||
uint32_t i;
|
||||
struct rte_flow_error error;
|
||||
struct rte_flow_pattern_template
|
||||
*flow_pattern_templates[nb_pattern_templates];
|
||||
struct rte_flow_actions_template
|
||||
*flow_actions_templates[nb_actions_templates];
|
||||
|
||||
if (port_id_is_invalid(port_id, ENABLED_WARN) ||
|
||||
port_id == (portid_t)RTE_PORT_ALL)
|
||||
return -EINVAL;
|
||||
port = &ports[port_id];
|
||||
for (i = 0; i < nb_pattern_templates; ++i) {
|
||||
bool found = false;
|
||||
temp = port->pattern_templ_list;
|
||||
while (temp) {
|
||||
if (pattern_templates[i] == temp->id) {
|
||||
flow_pattern_templates[i] =
|
||||
temp->template.pattern_template;
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
temp = temp->next;
|
||||
}
|
||||
if (!found) {
|
||||
printf("Pattern template #%u is invalid\n",
|
||||
pattern_templates[i]);
|
||||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
for (i = 0; i < nb_actions_templates; ++i) {
|
||||
bool found = false;
|
||||
temp = port->actions_templ_list;
|
||||
while (temp) {
|
||||
if (actions_templates[i] == temp->id) {
|
||||
flow_actions_templates[i] =
|
||||
temp->template.actions_template;
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
temp = temp->next;
|
||||
}
|
||||
if (!found) {
|
||||
printf("Actions template #%u is invalid\n",
|
||||
actions_templates[i]);
|
||||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
ret = table_alloc(id, &pt, &port->table_list);
|
||||
if (ret)
|
||||
return ret;
|
||||
/* Poisoning to make sure PMDs update it in case of error. */
|
||||
memset(&error, 0x22, sizeof(error));
|
||||
pt->table = rte_flow_template_table_create(port_id, table_attr,
|
||||
flow_pattern_templates, nb_pattern_templates,
|
||||
flow_actions_templates, nb_actions_templates,
|
||||
&error);
|
||||
|
||||
if (!pt->table) {
|
||||
uint32_t destroy_id = pt->id;
|
||||
port_flow_template_table_destroy(port_id, 1, &destroy_id);
|
||||
return port_flow_complain(&error);
|
||||
}
|
||||
pt->nb_pattern_templates = nb_pattern_templates;
|
||||
pt->nb_actions_templates = nb_actions_templates;
|
||||
printf("Template table #%u created\n", pt->id);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/** Destroy table */
|
||||
int
|
||||
port_flow_template_table_destroy(portid_t port_id,
|
||||
uint32_t n, const uint32_t *table)
|
||||
{
|
||||
struct rte_port *port;
|
||||
struct port_table **tmp;
|
||||
uint32_t c = 0;
|
||||
int ret = 0;
|
||||
|
||||
if (port_id_is_invalid(port_id, ENABLED_WARN) ||
|
||||
port_id == (portid_t)RTE_PORT_ALL)
|
||||
return -EINVAL;
|
||||
port = &ports[port_id];
|
||||
tmp = &port->table_list;
|
||||
while (*tmp) {
|
||||
uint32_t i;
|
||||
|
||||
for (i = 0; i != n; ++i) {
|
||||
struct rte_flow_error error;
|
||||
struct port_table *pt = *tmp;
|
||||
|
||||
if (table[i] != pt->id)
|
||||
continue;
|
||||
/*
|
||||
* Poisoning to make sure PMDs update it in case
|
||||
* of error.
|
||||
*/
|
||||
memset(&error, 0x33, sizeof(error));
|
||||
|
||||
if (pt->table &&
|
||||
rte_flow_template_table_destroy(port_id,
|
||||
pt->table,
|
||||
&error)) {
|
||||
ret = port_flow_complain(&error);
|
||||
continue;
|
||||
}
|
||||
*tmp = pt->next;
|
||||
printf("Template table #%u destroyed\n", pt->id);
|
||||
free(pt);
|
||||
break;
|
||||
}
|
||||
if (i == n)
|
||||
tmp = &(*tmp)->next;
|
||||
++c;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
/** Create flow rule. */
|
||||
int
|
||||
port_flow_create(portid_t port_id,
|
||||
|
@ -177,6 +177,16 @@ struct port_template {
|
||||
} template; /**< PMD opaque template object */
|
||||
};
|
||||
|
||||
/** Descriptor for a flow table. */
|
||||
struct port_table {
|
||||
struct port_table *next; /**< Next table in list. */
|
||||
struct port_table *tmp; /**< Temporary linking. */
|
||||
uint32_t id; /**< Table ID. */
|
||||
uint32_t nb_pattern_templates; /**< Number of pattern templates. */
|
||||
uint32_t nb_actions_templates; /**< Number of actions templates. */
|
||||
struct rte_flow_template_table *table; /**< PMD opaque template object */
|
||||
};
|
||||
|
||||
/** Descriptor for a single flow. */
|
||||
struct port_flow {
|
||||
struct port_flow *next; /**< Next flow in list. */
|
||||
@ -259,6 +269,7 @@ struct rte_port {
|
||||
uint8_t slave_flag; /**< bonding slave port */
|
||||
struct port_template *pattern_templ_list; /**< Pattern templates. */
|
||||
struct port_template *actions_templ_list; /**< Actions templates. */
|
||||
struct port_table *table_list; /**< Flow tables. */
|
||||
struct port_flow *flow_list; /**< Associated flows. */
|
||||
struct port_indirect_action *actions_list;
|
||||
/**< Associated indirect actions. */
|
||||
@ -916,6 +927,12 @@ int port_flow_actions_template_create(portid_t port_id, uint32_t id,
|
||||
const struct rte_flow_action *masks);
|
||||
int port_flow_actions_template_destroy(portid_t port_id, uint32_t n,
|
||||
const uint32_t *template);
|
||||
int port_flow_template_table_create(portid_t port_id, uint32_t id,
|
||||
const struct rte_flow_template_table_attr *table_attr,
|
||||
uint32_t nb_pattern_templates, uint32_t *pattern_templates,
|
||||
uint32_t nb_actions_templates, uint32_t *actions_templates);
|
||||
int port_flow_template_table_destroy(portid_t port_id,
|
||||
uint32_t n, const uint32_t *table);
|
||||
int port_flow_validate(portid_t port_id,
|
||||
const struct rte_flow_attr *attr,
|
||||
const struct rte_flow_item *pattern,
|
||||
|
@ -3364,6 +3364,19 @@ following sections.
|
||||
|
||||
flow actions_template {port_id} destroy actions_template {id} [...]
|
||||
|
||||
- Create a table::
|
||||
|
||||
flow table {port_id} create
|
||||
[table_id {id}]
|
||||
[group {group_id}] [priority {level}] [ingress] [egress] [transfer]
|
||||
rules_number {number}
|
||||
pattern_template {pattern_template_id}
|
||||
actions_template {actions_template_id}
|
||||
|
||||
- Destroy a table::
|
||||
|
||||
flow table {port_id} destroy table {id} [...]
|
||||
|
||||
- Check whether a flow rule can be created::
|
||||
|
||||
flow validate {port_id}
|
||||
@ -3549,6 +3562,46 @@ The usual error message is shown when an actions template cannot be destroyed::
|
||||
|
||||
Caught error type [...] ([...]): [...]
|
||||
|
||||
Creating template table
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
``flow template_table create`` creates the specified template table.
|
||||
It is bound to ``rte_flow_template_table_create()``::
|
||||
|
||||
flow template_table {port_id} create
|
||||
[table_id {id}] [group {group_id}]
|
||||
[priority {level}] [ingress] [egress] [transfer]
|
||||
rules_number {number}
|
||||
pattern_template {pattern_template_id}
|
||||
actions_template {actions_template_id}
|
||||
|
||||
If successful, it will show::
|
||||
|
||||
Template table #[...] created
|
||||
|
||||
Otherwise it will show an error message of the form::
|
||||
|
||||
Caught error type [...] ([...]): [...]
|
||||
|
||||
Destroying flow table
|
||||
~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
``flow template_table destroy`` destroys one or more template tables
|
||||
from their table ID (as returned by ``flow template_table create``),
|
||||
this command calls ``rte_flow_template_table_destroy()`` as many
|
||||
times as necessary::
|
||||
|
||||
flow template_table {port_id} destroy table {id} [...]
|
||||
|
||||
If successful, it will show::
|
||||
|
||||
Template table #[...] destroyed
|
||||
|
||||
It does not report anything for table IDs that do not exist.
|
||||
The usual error message is shown when a table cannot be destroyed::
|
||||
|
||||
Caught error type [...] ([...]): [...]
|
||||
|
||||
Creating a tunnel stub for offload
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user