2 * Copyright (c) 2015, Mellanox Technologies. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 #include <linux/mutex.h>
34 #include <linux/mlx5/driver.h>
36 #include "mlx5_core.h"
39 #include "diag/fs_tracepoint.h"
40 #include "accel/ipsec.h"
41 #include "fpga/ipsec.h"
43 #define INIT_TREE_NODE_ARRAY_SIZE(...) (sizeof((struct init_tree_node[]){__VA_ARGS__}) /\
44 sizeof(struct init_tree_node))
46 #define ADD_PRIO(num_prios_val, min_level_val, num_levels_val, caps_val,\
47 ...) {.type = FS_TYPE_PRIO,\
48 .min_ft_level = min_level_val,\
49 .num_levels = num_levels_val,\
50 .num_leaf_prios = num_prios_val,\
52 .children = (struct init_tree_node[]) {__VA_ARGS__},\
53 .ar_size = INIT_TREE_NODE_ARRAY_SIZE(__VA_ARGS__) \
56 #define ADD_MULTIPLE_PRIO(num_prios_val, num_levels_val, ...)\
57 ADD_PRIO(num_prios_val, 0, num_levels_val, {},\
60 #define ADD_NS(...) {.type = FS_TYPE_NAMESPACE,\
61 .children = (struct init_tree_node[]) {__VA_ARGS__},\
62 .ar_size = INIT_TREE_NODE_ARRAY_SIZE(__VA_ARGS__) \
65 #define INIT_CAPS_ARRAY_SIZE(...) (sizeof((long[]){__VA_ARGS__}) /\
68 #define FS_CAP(cap) (__mlx5_bit_off(flow_table_nic_cap, cap))
70 #define FS_REQUIRED_CAPS(...) {.arr_sz = INIT_CAPS_ARRAY_SIZE(__VA_ARGS__), \
71 .caps = (long[]) {__VA_ARGS__} }
73 #define FS_CHAINING_CAPS FS_REQUIRED_CAPS(FS_CAP(flow_table_properties_nic_receive.flow_modify_en), \
74 FS_CAP(flow_table_properties_nic_receive.modify_root), \
75 FS_CAP(flow_table_properties_nic_receive.identified_miss_table_mode), \
76 FS_CAP(flow_table_properties_nic_receive.flow_table_modify))
78 #define LEFTOVERS_NUM_LEVELS 1
79 #define LEFTOVERS_NUM_PRIOS 1
81 #define BY_PASS_PRIO_NUM_LEVELS 1
82 #define BY_PASS_MIN_LEVEL (ETHTOOL_MIN_LEVEL + MLX5_BY_PASS_NUM_PRIOS +\
85 #define ETHTOOL_PRIO_NUM_LEVELS 1
86 #define ETHTOOL_NUM_PRIOS 11
87 #define ETHTOOL_MIN_LEVEL (KERNEL_MIN_LEVEL + ETHTOOL_NUM_PRIOS)
88 /* Vlan, mac, ttc, inner ttc, aRFS */
89 #define KERNEL_NIC_PRIO_NUM_LEVELS 5
90 #define KERNEL_NIC_NUM_PRIOS 1
91 /* One more level for tc */
92 #define KERNEL_MIN_LEVEL (KERNEL_NIC_PRIO_NUM_LEVELS + 1)
94 #define KERNEL_NIC_TC_NUM_PRIOS 1
95 #define KERNEL_NIC_TC_NUM_LEVELS 2
97 #define ANCHOR_NUM_LEVELS 1
98 #define ANCHOR_NUM_PRIOS 1
99 #define ANCHOR_MIN_LEVEL (BY_PASS_MIN_LEVEL + 1)
101 #define OFFLOADS_MAX_FT 1
102 #define OFFLOADS_NUM_PRIOS 1
103 #define OFFLOADS_MIN_LEVEL (ANCHOR_MIN_LEVEL + 1)
105 #define LAG_PRIO_NUM_LEVELS 1
106 #define LAG_NUM_PRIOS 1
107 #define LAG_MIN_LEVEL (OFFLOADS_MIN_LEVEL + 1)
114 static struct init_tree_node {
115 enum fs_node_type type;
116 struct init_tree_node *children;
118 struct node_caps caps;
124 .type = FS_TYPE_NAMESPACE,
126 .children = (struct init_tree_node[]) {
127 ADD_PRIO(0, BY_PASS_MIN_LEVEL, 0,
129 ADD_NS(ADD_MULTIPLE_PRIO(MLX5_BY_PASS_NUM_PRIOS,
130 BY_PASS_PRIO_NUM_LEVELS))),
131 ADD_PRIO(0, LAG_MIN_LEVEL, 0,
133 ADD_NS(ADD_MULTIPLE_PRIO(LAG_NUM_PRIOS,
134 LAG_PRIO_NUM_LEVELS))),
135 ADD_PRIO(0, OFFLOADS_MIN_LEVEL, 0, {},
136 ADD_NS(ADD_MULTIPLE_PRIO(OFFLOADS_NUM_PRIOS, OFFLOADS_MAX_FT))),
137 ADD_PRIO(0, ETHTOOL_MIN_LEVEL, 0,
139 ADD_NS(ADD_MULTIPLE_PRIO(ETHTOOL_NUM_PRIOS,
140 ETHTOOL_PRIO_NUM_LEVELS))),
141 ADD_PRIO(0, KERNEL_MIN_LEVEL, 0, {},
142 ADD_NS(ADD_MULTIPLE_PRIO(KERNEL_NIC_TC_NUM_PRIOS, KERNEL_NIC_TC_NUM_LEVELS),
143 ADD_MULTIPLE_PRIO(KERNEL_NIC_NUM_PRIOS,
144 KERNEL_NIC_PRIO_NUM_LEVELS))),
145 ADD_PRIO(0, BY_PASS_MIN_LEVEL, 0,
147 ADD_NS(ADD_MULTIPLE_PRIO(LEFTOVERS_NUM_PRIOS, LEFTOVERS_NUM_LEVELS))),
148 ADD_PRIO(0, ANCHOR_MIN_LEVEL, 0, {},
149 ADD_NS(ADD_MULTIPLE_PRIO(ANCHOR_NUM_PRIOS, ANCHOR_NUM_LEVELS))),
153 enum fs_i_lock_class {
159 static const struct rhashtable_params rhash_fte = {
160 .key_len = FIELD_SIZEOF(struct fs_fte, val),
161 .key_offset = offsetof(struct fs_fte, val),
162 .head_offset = offsetof(struct fs_fte, hash),
163 .automatic_shrinking = true,
167 static const struct rhashtable_params rhash_fg = {
168 .key_len = FIELD_SIZEOF(struct mlx5_flow_group, mask),
169 .key_offset = offsetof(struct mlx5_flow_group, mask),
170 .head_offset = offsetof(struct mlx5_flow_group, hash),
171 .automatic_shrinking = true,
176 static void del_hw_flow_table(struct fs_node *node);
177 static void del_hw_flow_group(struct fs_node *node);
178 static void del_hw_fte(struct fs_node *node);
179 static void del_sw_flow_table(struct fs_node *node);
180 static void del_sw_flow_group(struct fs_node *node);
181 static void del_sw_fte(struct fs_node *node);
182 static void del_sw_prio(struct fs_node *node);
183 static void del_sw_ns(struct fs_node *node);
184 /* Delete rule (destination) is special case that
185 * requires to lock the FTE for all the deletion process.
187 static void del_sw_hw_rule(struct fs_node *node);
188 static bool mlx5_flow_dests_cmp(struct mlx5_flow_destination *d1,
189 struct mlx5_flow_destination *d2);
190 static struct mlx5_flow_rule *
191 find_flow_rule(struct fs_fte *fte,
192 struct mlx5_flow_destination *dest);
194 static void tree_init_node(struct fs_node *node,
195 void (*del_hw_func)(struct fs_node *),
196 void (*del_sw_func)(struct fs_node *))
198 refcount_set(&node->refcount, 1);
199 INIT_LIST_HEAD(&node->list);
200 INIT_LIST_HEAD(&node->children);
201 init_rwsem(&node->lock);
202 node->del_hw_func = del_hw_func;
203 node->del_sw_func = del_sw_func;
204 node->active = false;
207 static void tree_add_node(struct fs_node *node, struct fs_node *parent)
210 refcount_inc(&parent->refcount);
211 node->parent = parent;
213 /* Parent is the root */
217 node->root = parent->root;
220 static int tree_get_node(struct fs_node *node)
222 return refcount_inc_not_zero(&node->refcount);
225 static void nested_down_read_ref_node(struct fs_node *node,
226 enum fs_i_lock_class class)
229 down_read_nested(&node->lock, class);
230 refcount_inc(&node->refcount);
234 static void nested_down_write_ref_node(struct fs_node *node,
235 enum fs_i_lock_class class)
238 down_write_nested(&node->lock, class);
239 refcount_inc(&node->refcount);
243 static void down_write_ref_node(struct fs_node *node)
246 down_write(&node->lock);
247 refcount_inc(&node->refcount);
251 static void up_read_ref_node(struct fs_node *node)
253 refcount_dec(&node->refcount);
254 up_read(&node->lock);
257 static void up_write_ref_node(struct fs_node *node)
259 refcount_dec(&node->refcount);
260 up_write(&node->lock);
263 static void tree_put_node(struct fs_node *node)
265 struct fs_node *parent_node = node->parent;
267 if (refcount_dec_and_test(&node->refcount)) {
268 if (node->del_hw_func)
269 node->del_hw_func(node);
271 /* Only root namespace doesn't have parent and we just
272 * need to free its node.
274 down_write_ref_node(parent_node);
275 list_del_init(&node->list);
276 if (node->del_sw_func)
277 node->del_sw_func(node);
278 up_write_ref_node(parent_node);
284 if (!node && parent_node)
285 tree_put_node(parent_node);
288 static int tree_remove_node(struct fs_node *node)
290 if (refcount_read(&node->refcount) > 1) {
291 refcount_dec(&node->refcount);
298 static struct fs_prio *find_prio(struct mlx5_flow_namespace *ns,
301 struct fs_prio *iter_prio;
303 fs_for_each_prio(iter_prio, ns) {
304 if (iter_prio->prio == prio)
311 static bool check_last_reserved(const u32 *match_criteria)
313 char *match_criteria_reserved =
314 MLX5_ADDR_OF(fte_match_param, match_criteria, MLX5_FTE_MATCH_PARAM_RESERVED);
316 return !match_criteria_reserved[0] &&
317 !memcmp(match_criteria_reserved, match_criteria_reserved + 1,
318 MLX5_FLD_SZ_BYTES(fte_match_param,
319 MLX5_FTE_MATCH_PARAM_RESERVED) - 1);
322 static bool check_valid_mask(u8 match_criteria_enable, const u32 *match_criteria)
324 if (match_criteria_enable & ~(
325 (1 << MLX5_CREATE_FLOW_GROUP_IN_MATCH_CRITERIA_ENABLE_OUTER_HEADERS) |
326 (1 << MLX5_CREATE_FLOW_GROUP_IN_MATCH_CRITERIA_ENABLE_MISC_PARAMETERS) |
327 (1 << MLX5_CREATE_FLOW_GROUP_IN_MATCH_CRITERIA_ENABLE_INNER_HEADERS)))
330 if (!(match_criteria_enable &
331 1 << MLX5_CREATE_FLOW_GROUP_IN_MATCH_CRITERIA_ENABLE_OUTER_HEADERS)) {
332 char *fg_type_mask = MLX5_ADDR_OF(fte_match_param,
333 match_criteria, outer_headers);
335 if (fg_type_mask[0] ||
336 memcmp(fg_type_mask, fg_type_mask + 1,
337 MLX5_ST_SZ_BYTES(fte_match_set_lyr_2_4) - 1))
341 if (!(match_criteria_enable &
342 1 << MLX5_CREATE_FLOW_GROUP_IN_MATCH_CRITERIA_ENABLE_MISC_PARAMETERS)) {
343 char *fg_type_mask = MLX5_ADDR_OF(fte_match_param,
344 match_criteria, misc_parameters);
346 if (fg_type_mask[0] ||
347 memcmp(fg_type_mask, fg_type_mask + 1,
348 MLX5_ST_SZ_BYTES(fte_match_set_misc) - 1))
352 if (!(match_criteria_enable &
353 1 << MLX5_CREATE_FLOW_GROUP_IN_MATCH_CRITERIA_ENABLE_INNER_HEADERS)) {
354 char *fg_type_mask = MLX5_ADDR_OF(fte_match_param,
355 match_criteria, inner_headers);
357 if (fg_type_mask[0] ||
358 memcmp(fg_type_mask, fg_type_mask + 1,
359 MLX5_ST_SZ_BYTES(fte_match_set_lyr_2_4) - 1))
363 return check_last_reserved(match_criteria);
366 static bool check_valid_spec(const struct mlx5_flow_spec *spec)
370 if (!check_valid_mask(spec->match_criteria_enable, spec->match_criteria)) {
371 pr_warn("mlx5_core: Match criteria given mismatches match_criteria_enable\n");
375 for (i = 0; i < MLX5_ST_SZ_DW_MATCH_PARAM; i++)
376 if (spec->match_value[i] & ~spec->match_criteria[i]) {
377 pr_warn("mlx5_core: match_value differs from match_criteria\n");
381 return check_last_reserved(spec->match_value);
384 static struct mlx5_flow_root_namespace *find_root(struct fs_node *node)
386 struct fs_node *root;
387 struct mlx5_flow_namespace *ns;
391 if (WARN_ON(root->type != FS_TYPE_NAMESPACE)) {
392 pr_warn("mlx5: flow steering node is not in tree or garbaged\n");
396 ns = container_of(root, struct mlx5_flow_namespace, node);
397 return container_of(ns, struct mlx5_flow_root_namespace, ns);
400 static inline struct mlx5_flow_steering *get_steering(struct fs_node *node)
402 struct mlx5_flow_root_namespace *root = find_root(node);
405 return root->dev->priv.steering;
409 static inline struct mlx5_core_dev *get_dev(struct fs_node *node)
411 struct mlx5_flow_root_namespace *root = find_root(node);
418 static void del_sw_ns(struct fs_node *node)
423 static void del_sw_prio(struct fs_node *node)
428 static void del_hw_flow_table(struct fs_node *node)
430 struct mlx5_flow_root_namespace *root;
431 struct mlx5_flow_table *ft;
432 struct mlx5_core_dev *dev;
435 fs_get_obj(ft, node);
436 dev = get_dev(&ft->node);
437 root = find_root(&ft->node);
440 err = root->cmds->destroy_flow_table(dev, ft);
442 mlx5_core_warn(dev, "flow steering can't destroy ft\n");
446 static void del_sw_flow_table(struct fs_node *node)
448 struct mlx5_flow_table *ft;
449 struct fs_prio *prio;
451 fs_get_obj(ft, node);
453 rhltable_destroy(&ft->fgs_hash);
454 fs_get_obj(prio, ft->node.parent);
459 static void del_sw_hw_rule(struct fs_node *node)
461 struct mlx5_flow_root_namespace *root;
462 struct mlx5_flow_rule *rule;
463 struct mlx5_flow_table *ft;
464 struct mlx5_flow_group *fg;
467 struct mlx5_core_dev *dev = get_dev(node);
469 bool update_fte = false;
471 fs_get_obj(rule, node);
472 fs_get_obj(fte, rule->node.parent);
473 fs_get_obj(fg, fte->node.parent);
474 fs_get_obj(ft, fg->node.parent);
475 trace_mlx5_fs_del_rule(rule);
476 if (rule->sw_action == MLX5_FLOW_CONTEXT_ACTION_FWD_NEXT_PRIO) {
477 mutex_lock(&rule->dest_attr.ft->lock);
478 list_del(&rule->next_ft);
479 mutex_unlock(&rule->dest_attr.ft->lock);
482 if (rule->dest_attr.type == MLX5_FLOW_DESTINATION_TYPE_COUNTER &&
484 modify_mask = BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_ACTION);
485 fte->action.action &= ~MLX5_FLOW_CONTEXT_ACTION_COUNT;
490 if ((fte->action.action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST) &&
492 modify_mask = BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_DESTINATION_LIST),
496 root = find_root(&ft->node);
497 if (update_fte && fte->dests_size) {
498 err = root->cmds->update_fte(dev, ft, fg->id, modify_mask, fte);
501 "%s can't del rule fg id=%d fte_index=%d\n",
502 __func__, fg->id, fte->index);
507 static void del_hw_fte(struct fs_node *node)
509 struct mlx5_flow_root_namespace *root;
510 struct mlx5_flow_table *ft;
511 struct mlx5_flow_group *fg;
512 struct mlx5_core_dev *dev;
516 fs_get_obj(fte, node);
517 fs_get_obj(fg, fte->node.parent);
518 fs_get_obj(ft, fg->node.parent);
520 trace_mlx5_fs_del_fte(fte);
521 dev = get_dev(&ft->node);
522 root = find_root(&ft->node);
524 err = root->cmds->delete_fte(dev, ft, fte);
527 "flow steering can't delete fte in index %d of flow group id %d\n",
532 static void del_sw_fte(struct fs_node *node)
534 struct mlx5_flow_steering *steering = get_steering(node);
535 struct mlx5_flow_group *fg;
539 fs_get_obj(fte, node);
540 fs_get_obj(fg, fte->node.parent);
542 err = rhashtable_remove_fast(&fg->ftes_hash,
546 ida_simple_remove(&fg->fte_allocator, fte->index - fg->start_index);
547 kmem_cache_free(steering->ftes_cache, fte);
550 static void del_hw_flow_group(struct fs_node *node)
552 struct mlx5_flow_root_namespace *root;
553 struct mlx5_flow_group *fg;
554 struct mlx5_flow_table *ft;
555 struct mlx5_core_dev *dev;
557 fs_get_obj(fg, node);
558 fs_get_obj(ft, fg->node.parent);
559 dev = get_dev(&ft->node);
560 trace_mlx5_fs_del_fg(fg);
562 root = find_root(&ft->node);
563 if (fg->node.active && root->cmds->destroy_flow_group(dev, ft, fg->id))
564 mlx5_core_warn(dev, "flow steering can't destroy fg %d of ft %d\n",
568 static void del_sw_flow_group(struct fs_node *node)
570 struct mlx5_flow_steering *steering = get_steering(node);
571 struct mlx5_flow_group *fg;
572 struct mlx5_flow_table *ft;
575 fs_get_obj(fg, node);
576 fs_get_obj(ft, fg->node.parent);
578 rhashtable_destroy(&fg->ftes_hash);
579 ida_destroy(&fg->fte_allocator);
580 if (ft->autogroup.active)
581 ft->autogroup.num_groups--;
582 err = rhltable_remove(&ft->fgs_hash,
586 kmem_cache_free(steering->fgs_cache, fg);
589 static int insert_fte(struct mlx5_flow_group *fg, struct fs_fte *fte)
594 index = ida_simple_get(&fg->fte_allocator, 0, fg->max_ftes, GFP_KERNEL);
598 fte->index = index + fg->start_index;
599 ret = rhashtable_insert_fast(&fg->ftes_hash,
605 tree_add_node(&fte->node, &fg->node);
606 list_add_tail(&fte->node.list, &fg->node.children);
610 ida_simple_remove(&fg->fte_allocator, index);
614 static struct fs_fte *alloc_fte(struct mlx5_flow_table *ft,
616 struct mlx5_flow_act *flow_act)
618 struct mlx5_flow_steering *steering = get_steering(&ft->node);
621 fte = kmem_cache_zalloc(steering->ftes_cache, GFP_KERNEL);
623 return ERR_PTR(-ENOMEM);
625 memcpy(fte->val, match_value, sizeof(fte->val));
626 fte->node.type = FS_TYPE_FLOW_ENTRY;
627 fte->action = *flow_act;
629 tree_init_node(&fte->node, del_hw_fte, del_sw_fte);
634 static void dealloc_flow_group(struct mlx5_flow_steering *steering,
635 struct mlx5_flow_group *fg)
637 rhashtable_destroy(&fg->ftes_hash);
638 kmem_cache_free(steering->fgs_cache, fg);
641 static struct mlx5_flow_group *alloc_flow_group(struct mlx5_flow_steering *steering,
642 u8 match_criteria_enable,
643 void *match_criteria,
647 struct mlx5_flow_group *fg;
650 fg = kmem_cache_zalloc(steering->fgs_cache, GFP_KERNEL);
652 return ERR_PTR(-ENOMEM);
654 ret = rhashtable_init(&fg->ftes_hash, &rhash_fte);
656 kmem_cache_free(steering->fgs_cache, fg);
659 ida_init(&fg->fte_allocator);
660 fg->mask.match_criteria_enable = match_criteria_enable;
661 memcpy(&fg->mask.match_criteria, match_criteria,
662 sizeof(fg->mask.match_criteria));
663 fg->node.type = FS_TYPE_FLOW_GROUP;
664 fg->start_index = start_index;
665 fg->max_ftes = end_index - start_index + 1;
670 static struct mlx5_flow_group *alloc_insert_flow_group(struct mlx5_flow_table *ft,
671 u8 match_criteria_enable,
672 void *match_criteria,
675 struct list_head *prev)
677 struct mlx5_flow_steering *steering = get_steering(&ft->node);
678 struct mlx5_flow_group *fg;
681 fg = alloc_flow_group(steering, match_criteria_enable, match_criteria,
682 start_index, end_index);
686 /* initialize refcnt, add to parent list */
687 ret = rhltable_insert(&ft->fgs_hash,
691 dealloc_flow_group(steering, fg);
695 tree_init_node(&fg->node, del_hw_flow_group, del_sw_flow_group);
696 tree_add_node(&fg->node, &ft->node);
697 /* Add node to group list */
698 list_add(&fg->node.list, prev);
699 atomic_inc(&ft->node.version);
704 static struct mlx5_flow_table *alloc_flow_table(int level, u16 vport, int max_fte,
705 enum fs_flow_table_type table_type,
706 enum fs_flow_table_op_mod op_mod,
709 struct mlx5_flow_table *ft;
712 ft = kzalloc(sizeof(*ft), GFP_KERNEL);
714 return ERR_PTR(-ENOMEM);
716 ret = rhltable_init(&ft->fgs_hash, &rhash_fg);
723 ft->node.type = FS_TYPE_FLOW_TABLE;
725 ft->type = table_type;
727 ft->max_fte = max_fte;
729 INIT_LIST_HEAD(&ft->fwd_rules);
730 mutex_init(&ft->lock);
735 /* If reverse is false, then we search for the first flow table in the
736 * root sub-tree from start(closest from right), else we search for the
737 * last flow table in the root sub-tree till start(closest from left).
739 static struct mlx5_flow_table *find_closest_ft_recursive(struct fs_node *root,
740 struct list_head *start,
743 #define list_advance_entry(pos, reverse) \
744 ((reverse) ? list_prev_entry(pos, list) : list_next_entry(pos, list))
746 #define list_for_each_advance_continue(pos, head, reverse) \
747 for (pos = list_advance_entry(pos, reverse); \
748 &pos->list != (head); \
749 pos = list_advance_entry(pos, reverse))
751 struct fs_node *iter = list_entry(start, struct fs_node, list);
752 struct mlx5_flow_table *ft = NULL;
757 list_for_each_advance_continue(iter, &root->children, reverse) {
758 if (iter->type == FS_TYPE_FLOW_TABLE) {
759 fs_get_obj(ft, iter);
762 ft = find_closest_ft_recursive(iter, &iter->children, reverse);
770 /* If reverse if false then return the first flow table in next priority of
771 * prio in the tree, else return the last flow table in the previous priority
772 * of prio in the tree.
774 static struct mlx5_flow_table *find_closest_ft(struct fs_prio *prio, bool reverse)
776 struct mlx5_flow_table *ft = NULL;
777 struct fs_node *curr_node;
778 struct fs_node *parent;
780 parent = prio->node.parent;
781 curr_node = &prio->node;
782 while (!ft && parent) {
783 ft = find_closest_ft_recursive(parent, &curr_node->list, reverse);
785 parent = curr_node->parent;
790 /* Assuming all the tree is locked by mutex chain lock */
791 static struct mlx5_flow_table *find_next_chained_ft(struct fs_prio *prio)
793 return find_closest_ft(prio, false);
796 /* Assuming all the tree is locked by mutex chain lock */
797 static struct mlx5_flow_table *find_prev_chained_ft(struct fs_prio *prio)
799 return find_closest_ft(prio, true);
802 static int connect_fts_in_prio(struct mlx5_core_dev *dev,
803 struct fs_prio *prio,
804 struct mlx5_flow_table *ft)
806 struct mlx5_flow_root_namespace *root = find_root(&prio->node);
807 struct mlx5_flow_table *iter;
811 fs_for_each_ft(iter, prio) {
813 err = root->cmds->modify_flow_table(dev, iter, ft);
815 mlx5_core_warn(dev, "Failed to modify flow table %d\n",
817 /* The driver is out of sync with the FW */
826 /* Connect flow tables from previous priority of prio to ft */
827 static int connect_prev_fts(struct mlx5_core_dev *dev,
828 struct mlx5_flow_table *ft,
829 struct fs_prio *prio)
831 struct mlx5_flow_table *prev_ft;
833 prev_ft = find_prev_chained_ft(prio);
835 struct fs_prio *prev_prio;
837 fs_get_obj(prev_prio, prev_ft->node.parent);
838 return connect_fts_in_prio(dev, prev_prio, ft);
843 static int update_root_ft_create(struct mlx5_flow_table *ft, struct fs_prio
846 struct mlx5_flow_root_namespace *root = find_root(&prio->node);
847 struct mlx5_ft_underlay_qp *uqp;
848 int min_level = INT_MAX;
853 min_level = root->root_ft->level;
855 if (ft->level >= min_level)
858 if (list_empty(&root->underlay_qpns)) {
859 /* Don't set any QPN (zero) in case QPN list is empty */
861 err = root->cmds->update_root_ft(root->dev, ft, qpn, false);
863 list_for_each_entry(uqp, &root->underlay_qpns, list) {
865 err = root->cmds->update_root_ft(root->dev, ft,
873 mlx5_core_warn(root->dev,
874 "Update root flow table of id(%u) qpn(%d) failed\n",
882 static int _mlx5_modify_rule_destination(struct mlx5_flow_rule *rule,
883 struct mlx5_flow_destination *dest)
885 struct mlx5_flow_root_namespace *root;
886 struct mlx5_flow_table *ft;
887 struct mlx5_flow_group *fg;
889 int modify_mask = BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_DESTINATION_LIST);
892 fs_get_obj(fte, rule->node.parent);
893 if (!(fte->action.action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST))
895 down_write_ref_node(&fte->node);
896 fs_get_obj(fg, fte->node.parent);
897 fs_get_obj(ft, fg->node.parent);
899 memcpy(&rule->dest_attr, dest, sizeof(*dest));
900 root = find_root(&ft->node);
901 err = root->cmds->update_fte(get_dev(&ft->node), ft, fg->id,
903 up_write_ref_node(&fte->node);
908 int mlx5_modify_rule_destination(struct mlx5_flow_handle *handle,
909 struct mlx5_flow_destination *new_dest,
910 struct mlx5_flow_destination *old_dest)
915 if (handle->num_rules != 1)
917 return _mlx5_modify_rule_destination(handle->rule[0],
921 for (i = 0; i < handle->num_rules; i++) {
922 if (mlx5_flow_dests_cmp(new_dest, &handle->rule[i]->dest_attr))
923 return _mlx5_modify_rule_destination(handle->rule[i],
930 /* Modify/set FWD rules that point on old_next_ft to point on new_next_ft */
931 static int connect_fwd_rules(struct mlx5_core_dev *dev,
932 struct mlx5_flow_table *new_next_ft,
933 struct mlx5_flow_table *old_next_ft)
935 struct mlx5_flow_destination dest = {};
936 struct mlx5_flow_rule *iter;
939 /* new_next_ft and old_next_ft could be NULL only
940 * when we create/destroy the anchor flow table.
942 if (!new_next_ft || !old_next_ft)
945 dest.type = MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE;
946 dest.ft = new_next_ft;
948 mutex_lock(&old_next_ft->lock);
949 list_splice_init(&old_next_ft->fwd_rules, &new_next_ft->fwd_rules);
950 mutex_unlock(&old_next_ft->lock);
951 list_for_each_entry(iter, &new_next_ft->fwd_rules, next_ft) {
952 err = _mlx5_modify_rule_destination(iter, &dest);
954 pr_err("mlx5_core: failed to modify rule to point on flow table %d\n",
960 static int connect_flow_table(struct mlx5_core_dev *dev, struct mlx5_flow_table *ft,
961 struct fs_prio *prio)
963 struct mlx5_flow_table *next_ft;
966 /* Connect_prev_fts and update_root_ft_create are mutually exclusive */
968 if (list_empty(&prio->node.children)) {
969 err = connect_prev_fts(dev, ft, prio);
973 next_ft = find_next_chained_ft(prio);
974 err = connect_fwd_rules(dev, ft, next_ft);
979 if (MLX5_CAP_FLOWTABLE(dev,
980 flow_table_properties_nic_receive.modify_root))
981 err = update_root_ft_create(ft, prio);
985 static void list_add_flow_table(struct mlx5_flow_table *ft,
986 struct fs_prio *prio)
988 struct list_head *prev = &prio->node.children;
989 struct mlx5_flow_table *iter;
991 fs_for_each_ft(iter, prio) {
992 if (iter->level > ft->level)
994 prev = &iter->node.list;
996 list_add(&ft->node.list, prev);
999 static struct mlx5_flow_table *__mlx5_create_flow_table(struct mlx5_flow_namespace *ns,
1000 struct mlx5_flow_table_attr *ft_attr,
1001 enum fs_flow_table_op_mod op_mod,
1004 struct mlx5_flow_root_namespace *root = find_root(&ns->node);
1005 struct mlx5_flow_table *next_ft = NULL;
1006 struct fs_prio *fs_prio = NULL;
1007 struct mlx5_flow_table *ft;
1012 pr_err("mlx5: flow steering failed to find root of namespace\n");
1013 return ERR_PTR(-ENODEV);
1016 mutex_lock(&root->chain_lock);
1017 fs_prio = find_prio(ns, ft_attr->prio);
1022 if (ft_attr->level >= fs_prio->num_levels) {
1026 /* The level is related to the
1027 * priority level range.
1029 ft_attr->level += fs_prio->start_level;
1030 ft = alloc_flow_table(ft_attr->level,
1032 ft_attr->max_fte ? roundup_pow_of_two(ft_attr->max_fte) : 0,
1034 op_mod, ft_attr->flags);
1040 tree_init_node(&ft->node, del_hw_flow_table, del_sw_flow_table);
1041 log_table_sz = ft->max_fte ? ilog2(ft->max_fte) : 0;
1042 next_ft = find_next_chained_ft(fs_prio);
1043 err = root->cmds->create_flow_table(root->dev, ft->vport, ft->op_mod,
1044 ft->type, ft->level, log_table_sz,
1045 next_ft, &ft->id, ft->flags);
1049 err = connect_flow_table(root->dev, ft, fs_prio);
1052 ft->node.active = true;
1053 down_write_ref_node(&fs_prio->node);
1054 tree_add_node(&ft->node, &fs_prio->node);
1055 list_add_flow_table(ft, fs_prio);
1057 up_write_ref_node(&fs_prio->node);
1058 mutex_unlock(&root->chain_lock);
1061 root->cmds->destroy_flow_table(root->dev, ft);
1065 mutex_unlock(&root->chain_lock);
1066 return ERR_PTR(err);
1069 struct mlx5_flow_table *mlx5_create_flow_table(struct mlx5_flow_namespace *ns,
1070 struct mlx5_flow_table_attr *ft_attr)
1072 return __mlx5_create_flow_table(ns, ft_attr, FS_FT_OP_MOD_NORMAL, 0);
1075 struct mlx5_flow_table *mlx5_create_vport_flow_table(struct mlx5_flow_namespace *ns,
1076 int prio, int max_fte,
1077 u32 level, u16 vport)
1079 struct mlx5_flow_table_attr ft_attr = {};
1081 ft_attr.max_fte = max_fte;
1082 ft_attr.level = level;
1083 ft_attr.prio = prio;
1085 return __mlx5_create_flow_table(ns, &ft_attr, FS_FT_OP_MOD_NORMAL, vport);
1088 struct mlx5_flow_table*
1089 mlx5_create_lag_demux_flow_table(struct mlx5_flow_namespace *ns,
1090 int prio, u32 level)
1092 struct mlx5_flow_table_attr ft_attr = {};
1094 ft_attr.level = level;
1095 ft_attr.prio = prio;
1096 return __mlx5_create_flow_table(ns, &ft_attr, FS_FT_OP_MOD_LAG_DEMUX, 0);
1098 EXPORT_SYMBOL(mlx5_create_lag_demux_flow_table);
1100 struct mlx5_flow_table*
1101 mlx5_create_auto_grouped_flow_table(struct mlx5_flow_namespace *ns,
1103 int num_flow_table_entries,
1108 struct mlx5_flow_table_attr ft_attr = {};
1109 struct mlx5_flow_table *ft;
1111 if (max_num_groups > num_flow_table_entries)
1112 return ERR_PTR(-EINVAL);
1114 ft_attr.max_fte = num_flow_table_entries;
1115 ft_attr.prio = prio;
1116 ft_attr.level = level;
1117 ft_attr.flags = flags;
1119 ft = mlx5_create_flow_table(ns, &ft_attr);
1123 ft->autogroup.active = true;
1124 ft->autogroup.required_groups = max_num_groups;
1128 EXPORT_SYMBOL(mlx5_create_auto_grouped_flow_table);
1130 struct mlx5_flow_group *mlx5_create_flow_group(struct mlx5_flow_table *ft,
1133 struct mlx5_flow_root_namespace *root = find_root(&ft->node);
1134 void *match_criteria = MLX5_ADDR_OF(create_flow_group_in,
1135 fg_in, match_criteria);
1136 u8 match_criteria_enable = MLX5_GET(create_flow_group_in,
1138 match_criteria_enable);
1139 int start_index = MLX5_GET(create_flow_group_in, fg_in,
1141 int end_index = MLX5_GET(create_flow_group_in, fg_in,
1143 struct mlx5_core_dev *dev = get_dev(&ft->node);
1144 struct mlx5_flow_group *fg;
1147 if (!check_valid_mask(match_criteria_enable, match_criteria))
1148 return ERR_PTR(-EINVAL);
1150 if (ft->autogroup.active)
1151 return ERR_PTR(-EPERM);
1153 down_write_ref_node(&ft->node);
1154 fg = alloc_insert_flow_group(ft, match_criteria_enable, match_criteria,
1155 start_index, end_index,
1156 ft->node.children.prev);
1157 up_write_ref_node(&ft->node);
1161 err = root->cmds->create_flow_group(dev, ft, fg_in, &fg->id);
1163 tree_put_node(&fg->node);
1164 return ERR_PTR(err);
1166 trace_mlx5_fs_add_fg(fg);
1167 fg->node.active = true;
1172 static struct mlx5_flow_rule *alloc_rule(struct mlx5_flow_destination *dest)
1174 struct mlx5_flow_rule *rule;
1176 rule = kzalloc(sizeof(*rule), GFP_KERNEL);
1180 INIT_LIST_HEAD(&rule->next_ft);
1181 rule->node.type = FS_TYPE_FLOW_DEST;
1183 memcpy(&rule->dest_attr, dest, sizeof(*dest));
1188 static struct mlx5_flow_handle *alloc_handle(int num_rules)
1190 struct mlx5_flow_handle *handle;
1192 handle = kzalloc(sizeof(*handle) + sizeof(handle->rule[0]) *
1193 num_rules, GFP_KERNEL);
1197 handle->num_rules = num_rules;
1202 static void destroy_flow_handle(struct fs_fte *fte,
1203 struct mlx5_flow_handle *handle,
1204 struct mlx5_flow_destination *dest,
1208 if (refcount_dec_and_test(&handle->rule[i]->node.refcount)) {
1210 list_del(&handle->rule[i]->node.list);
1211 kfree(handle->rule[i]);
1217 static struct mlx5_flow_handle *
1218 create_flow_handle(struct fs_fte *fte,
1219 struct mlx5_flow_destination *dest,
1224 struct mlx5_flow_handle *handle;
1225 struct mlx5_flow_rule *rule = NULL;
1226 static int count = BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_FLOW_COUNTERS);
1227 static int dst = BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_DESTINATION_LIST);
1231 handle = alloc_handle((dest_num) ? dest_num : 1);
1233 return ERR_PTR(-ENOMEM);
1237 rule = find_flow_rule(fte, dest + i);
1239 refcount_inc(&rule->node.refcount);
1245 rule = alloc_rule(dest + i);
1249 /* Add dest to dests list- we need flow tables to be in the
1250 * end of the list for forward to next prio rules.
1252 tree_init_node(&rule->node, NULL, del_sw_hw_rule);
1254 dest[i].type != MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE)
1255 list_add(&rule->node.list, &fte->node.children);
1257 list_add_tail(&rule->node.list, &fte->node.children);
1261 type = dest[i].type ==
1262 MLX5_FLOW_DESTINATION_TYPE_COUNTER;
1263 *modify_mask |= type ? count : dst;
1266 handle->rule[i] = rule;
1267 } while (++i < dest_num);
1272 destroy_flow_handle(fte, handle, dest, i);
1273 return ERR_PTR(-ENOMEM);
1276 /* fte should not be deleted while calling this function */
1277 static struct mlx5_flow_handle *
1278 add_rule_fte(struct fs_fte *fte,
1279 struct mlx5_flow_group *fg,
1280 struct mlx5_flow_destination *dest,
1284 struct mlx5_flow_root_namespace *root;
1285 struct mlx5_flow_handle *handle;
1286 struct mlx5_flow_table *ft;
1287 int modify_mask = 0;
1289 bool new_rule = false;
1291 handle = create_flow_handle(fte, dest, dest_num, &modify_mask,
1293 if (IS_ERR(handle) || !new_rule)
1297 modify_mask |= BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_ACTION);
1299 fs_get_obj(ft, fg->node.parent);
1300 root = find_root(&fg->node);
1301 if (!(fte->status & FS_FTE_STATUS_EXISTING))
1302 err = root->cmds->create_fte(get_dev(&ft->node),
1305 err = root->cmds->update_fte(get_dev(&ft->node), ft, fg->id,
1310 fte->node.active = true;
1311 fte->status |= FS_FTE_STATUS_EXISTING;
1312 atomic_inc(&fte->node.version);
1318 destroy_flow_handle(fte, handle, dest, handle->num_rules);
1319 return ERR_PTR(err);
1322 static struct mlx5_flow_group *alloc_auto_flow_group(struct mlx5_flow_table *ft,
1323 struct mlx5_flow_spec *spec)
1325 struct list_head *prev = &ft->node.children;
1326 struct mlx5_flow_group *fg;
1327 unsigned int candidate_index = 0;
1328 unsigned int group_size = 0;
1330 if (!ft->autogroup.active)
1331 return ERR_PTR(-ENOENT);
1333 if (ft->autogroup.num_groups < ft->autogroup.required_groups)
1334 /* We save place for flow groups in addition to max types */
1335 group_size = ft->max_fte / (ft->autogroup.required_groups + 1);
1337 /* ft->max_fte == ft->autogroup.max_types */
1338 if (group_size == 0)
1341 /* sorted by start_index */
1342 fs_for_each_fg(fg, ft) {
1343 if (candidate_index + group_size > fg->start_index)
1344 candidate_index = fg->start_index + fg->max_ftes;
1347 prev = &fg->node.list;
1350 if (candidate_index + group_size > ft->max_fte)
1351 return ERR_PTR(-ENOSPC);
1353 fg = alloc_insert_flow_group(ft,
1354 spec->match_criteria_enable,
1355 spec->match_criteria,
1357 candidate_index + group_size - 1,
1362 ft->autogroup.num_groups++;
1368 static int create_auto_flow_group(struct mlx5_flow_table *ft,
1369 struct mlx5_flow_group *fg)
1371 struct mlx5_flow_root_namespace *root = find_root(&ft->node);
1372 struct mlx5_core_dev *dev = get_dev(&ft->node);
1373 int inlen = MLX5_ST_SZ_BYTES(create_flow_group_in);
1374 void *match_criteria_addr;
1378 in = kvzalloc(inlen, GFP_KERNEL);
1382 MLX5_SET(create_flow_group_in, in, match_criteria_enable,
1383 fg->mask.match_criteria_enable);
1384 MLX5_SET(create_flow_group_in, in, start_flow_index, fg->start_index);
1385 MLX5_SET(create_flow_group_in, in, end_flow_index, fg->start_index +
1387 match_criteria_addr = MLX5_ADDR_OF(create_flow_group_in,
1388 in, match_criteria);
1389 memcpy(match_criteria_addr, fg->mask.match_criteria,
1390 sizeof(fg->mask.match_criteria));
1392 err = root->cmds->create_flow_group(dev, ft, in, &fg->id);
1394 fg->node.active = true;
1395 trace_mlx5_fs_add_fg(fg);
1402 static bool mlx5_flow_dests_cmp(struct mlx5_flow_destination *d1,
1403 struct mlx5_flow_destination *d2)
1405 if (d1->type == d2->type) {
1406 if ((d1->type == MLX5_FLOW_DESTINATION_TYPE_VPORT &&
1407 d1->vport_num == d2->vport_num) ||
1408 (d1->type == MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE &&
1409 d1->ft == d2->ft) ||
1410 (d1->type == MLX5_FLOW_DESTINATION_TYPE_TIR &&
1411 d1->tir_num == d2->tir_num))
1418 static struct mlx5_flow_rule *find_flow_rule(struct fs_fte *fte,
1419 struct mlx5_flow_destination *dest)
1421 struct mlx5_flow_rule *rule;
1423 list_for_each_entry(rule, &fte->node.children, node.list) {
1424 if (mlx5_flow_dests_cmp(&rule->dest_attr, dest))
1430 static bool check_conflicting_actions(u32 action1, u32 action2)
1432 u32 xored_actions = action1 ^ action2;
1434 /* if one rule only wants to count, it's ok */
1435 if (action1 == MLX5_FLOW_CONTEXT_ACTION_COUNT ||
1436 action2 == MLX5_FLOW_CONTEXT_ACTION_COUNT)
1439 if (xored_actions & (MLX5_FLOW_CONTEXT_ACTION_DROP |
1440 MLX5_FLOW_CONTEXT_ACTION_ENCAP |
1441 MLX5_FLOW_CONTEXT_ACTION_DECAP |
1442 MLX5_FLOW_CONTEXT_ACTION_MOD_HDR))
1448 static int check_conflicting_ftes(struct fs_fte *fte, const struct mlx5_flow_act *flow_act)
1450 if (check_conflicting_actions(flow_act->action, fte->action.action)) {
1451 mlx5_core_warn(get_dev(&fte->node),
1452 "Found two FTEs with conflicting actions\n");
1456 if (flow_act->has_flow_tag &&
1457 fte->action.flow_tag != flow_act->flow_tag) {
1458 mlx5_core_warn(get_dev(&fte->node),
1459 "FTE flow tag %u already exists with different flow tag %u\n",
1460 fte->action.flow_tag,
1461 flow_act->flow_tag);
1468 static struct mlx5_flow_handle *add_rule_fg(struct mlx5_flow_group *fg,
1470 struct mlx5_flow_act *flow_act,
1471 struct mlx5_flow_destination *dest,
1475 struct mlx5_flow_handle *handle;
1480 ret = check_conflicting_ftes(fte, flow_act);
1482 return ERR_PTR(ret);
1484 old_action = fte->action.action;
1485 fte->action.action |= flow_act->action;
1486 handle = add_rule_fte(fte, fg, dest, dest_num,
1487 old_action != flow_act->action);
1488 if (IS_ERR(handle)) {
1489 fte->action.action = old_action;
1492 trace_mlx5_fs_set_fte(fte, false);
1494 for (i = 0; i < handle->num_rules; i++) {
1495 if (refcount_read(&handle->rule[i]->node.refcount) == 1) {
1496 tree_add_node(&handle->rule[i]->node, &fte->node);
1497 trace_mlx5_fs_add_rule(handle->rule[i]);
1503 struct mlx5_fc *mlx5_flow_rule_counter(struct mlx5_flow_handle *handle)
1505 struct mlx5_flow_rule *dst;
1508 fs_get_obj(fte, handle->rule[0]->node.parent);
1510 fs_for_each_dst(dst, fte) {
1511 if (dst->dest_attr.type == MLX5_FLOW_DESTINATION_TYPE_COUNTER)
1512 return dst->dest_attr.counter;
1518 static bool counter_is_valid(struct mlx5_fc *counter, u32 action)
1520 if (!(action & MLX5_FLOW_CONTEXT_ACTION_COUNT))
1526 return (action & (MLX5_FLOW_CONTEXT_ACTION_DROP |
1527 MLX5_FLOW_CONTEXT_ACTION_FWD_DEST));
1530 static bool dest_is_valid(struct mlx5_flow_destination *dest,
1532 struct mlx5_flow_table *ft)
1534 if (dest && (dest->type == MLX5_FLOW_DESTINATION_TYPE_COUNTER))
1535 return counter_is_valid(dest->counter, action);
1537 if (!(action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST))
1540 if (!dest || ((dest->type ==
1541 MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE) &&
1542 (dest->ft->level <= ft->level)))
1548 struct list_head list;
1549 struct mlx5_flow_group *g;
1552 struct match_list_head {
1553 struct list_head list;
1554 struct match_list first;
1557 static void free_match_list(struct match_list_head *head)
1559 if (!list_empty(&head->list)) {
1560 struct match_list *iter, *match_tmp;
1562 list_del(&head->first.list);
1563 tree_put_node(&head->first.g->node);
1564 list_for_each_entry_safe(iter, match_tmp, &head->list,
1566 tree_put_node(&iter->g->node);
1567 list_del(&iter->list);
1573 static int build_match_list(struct match_list_head *match_head,
1574 struct mlx5_flow_table *ft,
1575 struct mlx5_flow_spec *spec)
1577 struct rhlist_head *tmp, *list;
1578 struct mlx5_flow_group *g;
1582 INIT_LIST_HEAD(&match_head->list);
1583 /* Collect all fgs which has a matching match_criteria */
1584 list = rhltable_lookup(&ft->fgs_hash, spec, rhash_fg);
1585 /* RCU is atomic, we can't execute FW commands here */
1586 rhl_for_each_entry_rcu(g, tmp, list, hash) {
1587 struct match_list *curr_match;
1589 if (likely(list_empty(&match_head->list))) {
1590 if (!tree_get_node(&g->node))
1592 match_head->first.g = g;
1593 list_add_tail(&match_head->first.list,
1598 curr_match = kmalloc(sizeof(*curr_match), GFP_ATOMIC);
1600 free_match_list(match_head);
1604 if (!tree_get_node(&g->node)) {
1609 list_add_tail(&curr_match->list, &match_head->list);
1616 static u64 matched_fgs_get_version(struct list_head *match_head)
1618 struct match_list *iter;
1621 list_for_each_entry(iter, match_head, list)
1622 version += (u64)atomic_read(&iter->g->node.version);
1626 static struct mlx5_flow_handle *
1627 try_add_to_existing_fg(struct mlx5_flow_table *ft,
1628 struct list_head *match_head,
1629 struct mlx5_flow_spec *spec,
1630 struct mlx5_flow_act *flow_act,
1631 struct mlx5_flow_destination *dest,
1635 struct mlx5_flow_steering *steering = get_steering(&ft->node);
1636 struct mlx5_flow_group *g;
1637 struct mlx5_flow_handle *rule;
1638 struct match_list *iter;
1639 bool take_write = false;
1644 fte = alloc_fte(ft, spec->match_value, flow_act);
1646 return ERR_PTR(-ENOMEM);
1648 list_for_each_entry(iter, match_head, list) {
1649 nested_down_read_ref_node(&iter->g->node, FS_LOCK_PARENT);
1652 search_again_locked:
1653 version = matched_fgs_get_version(match_head);
1654 /* Try to find a fg that already contains a matching fte */
1655 list_for_each_entry(iter, match_head, list) {
1656 struct fs_fte *fte_tmp;
1659 fte_tmp = rhashtable_lookup_fast(&g->ftes_hash, spec->match_value,
1661 if (!fte_tmp || !tree_get_node(&fte_tmp->node))
1664 nested_down_write_ref_node(&fte_tmp->node, FS_LOCK_CHILD);
1666 list_for_each_entry(iter, match_head, list)
1667 up_read_ref_node(&iter->g->node);
1669 list_for_each_entry(iter, match_head, list)
1670 up_write_ref_node(&iter->g->node);
1673 rule = add_rule_fg(g, spec->match_value,
1674 flow_act, dest, dest_num, fte_tmp);
1675 up_write_ref_node(&fte_tmp->node);
1676 tree_put_node(&fte_tmp->node);
1677 kmem_cache_free(steering->ftes_cache, fte);
1681 /* No group with matching fte found. Try to add a new fte to any
1686 list_for_each_entry(iter, match_head, list)
1687 up_read_ref_node(&iter->g->node);
1688 list_for_each_entry(iter, match_head, list)
1689 nested_down_write_ref_node(&iter->g->node,
1694 /* Check the ft version, for case that new flow group
1695 * was added while the fgs weren't locked
1697 if (atomic_read(&ft->node.version) != ft_version) {
1698 rule = ERR_PTR(-EAGAIN);
1702 /* Check the fgs version, for case the new FTE with the
1703 * same values was added while the fgs weren't locked
1705 if (version != matched_fgs_get_version(match_head))
1706 goto search_again_locked;
1708 list_for_each_entry(iter, match_head, list) {
1711 if (!g->node.active)
1713 err = insert_fte(g, fte);
1717 list_for_each_entry(iter, match_head, list)
1718 up_write_ref_node(&iter->g->node);
1719 kmem_cache_free(steering->ftes_cache, fte);
1720 return ERR_PTR(err);
1723 nested_down_write_ref_node(&fte->node, FS_LOCK_CHILD);
1724 list_for_each_entry(iter, match_head, list)
1725 up_write_ref_node(&iter->g->node);
1726 rule = add_rule_fg(g, spec->match_value,
1727 flow_act, dest, dest_num, fte);
1728 up_write_ref_node(&fte->node);
1729 tree_put_node(&fte->node);
1732 rule = ERR_PTR(-ENOENT);
1734 list_for_each_entry(iter, match_head, list)
1735 up_write_ref_node(&iter->g->node);
1736 kmem_cache_free(steering->ftes_cache, fte);
1740 static struct mlx5_flow_handle *
1741 _mlx5_add_flow_rules(struct mlx5_flow_table *ft,
1742 struct mlx5_flow_spec *spec,
1743 struct mlx5_flow_act *flow_act,
1744 struct mlx5_flow_destination *dest,
1748 struct mlx5_flow_steering *steering = get_steering(&ft->node);
1749 struct mlx5_flow_group *g;
1750 struct mlx5_flow_handle *rule;
1751 struct match_list_head match_head;
1752 bool take_write = false;
1758 if (!check_valid_spec(spec))
1759 return ERR_PTR(-EINVAL);
1761 for (i = 0; i < dest_num; i++) {
1762 if (!dest_is_valid(&dest[i], flow_act->action, ft))
1763 return ERR_PTR(-EINVAL);
1765 nested_down_read_ref_node(&ft->node, FS_LOCK_GRANDPARENT);
1766 search_again_locked:
1767 version = atomic_read(&ft->node.version);
1769 /* Collect all fgs which has a matching match_criteria */
1770 err = build_match_list(&match_head, ft, spec);
1773 up_write_ref_node(&ft->node);
1774 return ERR_PTR(err);
1778 up_read_ref_node(&ft->node);
1780 rule = try_add_to_existing_fg(ft, &match_head.list, spec, flow_act, dest,
1782 free_match_list(&match_head);
1783 if (!IS_ERR(rule) ||
1784 (PTR_ERR(rule) != -ENOENT && PTR_ERR(rule) != -EAGAIN)) {
1786 up_write_ref_node(&ft->node);
1791 nested_down_write_ref_node(&ft->node, FS_LOCK_GRANDPARENT);
1795 if (PTR_ERR(rule) == -EAGAIN ||
1796 version != atomic_read(&ft->node.version))
1797 goto search_again_locked;
1799 g = alloc_auto_flow_group(ft, spec);
1802 up_write_ref_node(&ft->node);
1806 nested_down_write_ref_node(&g->node, FS_LOCK_PARENT);
1807 up_write_ref_node(&ft->node);
1809 err = create_auto_flow_group(ft, g);
1811 goto err_release_fg;
1813 fte = alloc_fte(ft, spec->match_value, flow_act);
1816 goto err_release_fg;
1819 err = insert_fte(g, fte);
1821 kmem_cache_free(steering->ftes_cache, fte);
1822 goto err_release_fg;
1825 nested_down_write_ref_node(&fte->node, FS_LOCK_CHILD);
1826 up_write_ref_node(&g->node);
1827 rule = add_rule_fg(g, spec->match_value, flow_act, dest,
1829 up_write_ref_node(&fte->node);
1830 tree_put_node(&fte->node);
1831 tree_put_node(&g->node);
1835 up_write_ref_node(&g->node);
1836 tree_put_node(&g->node);
1837 return ERR_PTR(err);
1840 static bool fwd_next_prio_supported(struct mlx5_flow_table *ft)
1842 return ((ft->type == FS_FT_NIC_RX) &&
1843 (MLX5_CAP_FLOWTABLE(get_dev(&ft->node), nic_rx_multi_path_tirs)));
1846 struct mlx5_flow_handle *
1847 mlx5_add_flow_rules(struct mlx5_flow_table *ft,
1848 struct mlx5_flow_spec *spec,
1849 struct mlx5_flow_act *flow_act,
1850 struct mlx5_flow_destination *dest,
1853 struct mlx5_flow_root_namespace *root = find_root(&ft->node);
1854 struct mlx5_flow_destination gen_dest = {};
1855 struct mlx5_flow_table *next_ft = NULL;
1856 struct mlx5_flow_handle *handle = NULL;
1857 u32 sw_action = flow_act->action;
1858 struct fs_prio *prio;
1860 fs_get_obj(prio, ft->node.parent);
1861 if (flow_act->action == MLX5_FLOW_CONTEXT_ACTION_FWD_NEXT_PRIO) {
1862 if (!fwd_next_prio_supported(ft))
1863 return ERR_PTR(-EOPNOTSUPP);
1865 return ERR_PTR(-EINVAL);
1866 mutex_lock(&root->chain_lock);
1867 next_ft = find_next_chained_ft(prio);
1869 gen_dest.type = MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE;
1870 gen_dest.ft = next_ft;
1873 flow_act->action = MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
1875 mutex_unlock(&root->chain_lock);
1876 return ERR_PTR(-EOPNOTSUPP);
1880 handle = _mlx5_add_flow_rules(ft, spec, flow_act, dest, dest_num);
1882 if (sw_action == MLX5_FLOW_CONTEXT_ACTION_FWD_NEXT_PRIO) {
1883 if (!IS_ERR_OR_NULL(handle) &&
1884 (list_empty(&handle->rule[0]->next_ft))) {
1885 mutex_lock(&next_ft->lock);
1886 list_add(&handle->rule[0]->next_ft,
1887 &next_ft->fwd_rules);
1888 mutex_unlock(&next_ft->lock);
1889 handle->rule[0]->sw_action = MLX5_FLOW_CONTEXT_ACTION_FWD_NEXT_PRIO;
1891 mutex_unlock(&root->chain_lock);
1895 EXPORT_SYMBOL(mlx5_add_flow_rules);
1897 void mlx5_del_flow_rules(struct mlx5_flow_handle *handle)
1901 for (i = handle->num_rules - 1; i >= 0; i--)
1902 tree_remove_node(&handle->rule[i]->node);
1905 EXPORT_SYMBOL(mlx5_del_flow_rules);
1907 /* Assuming prio->node.children(flow tables) is sorted by level */
1908 static struct mlx5_flow_table *find_next_ft(struct mlx5_flow_table *ft)
1910 struct fs_prio *prio;
1912 fs_get_obj(prio, ft->node.parent);
1914 if (!list_is_last(&ft->node.list, &prio->node.children))
1915 return list_next_entry(ft, node.list);
1916 return find_next_chained_ft(prio);
1919 static int update_root_ft_destroy(struct mlx5_flow_table *ft)
1921 struct mlx5_flow_root_namespace *root = find_root(&ft->node);
1922 struct mlx5_ft_underlay_qp *uqp;
1923 struct mlx5_flow_table *new_root_ft = NULL;
1927 if (root->root_ft != ft)
1930 new_root_ft = find_next_ft(ft);
1932 root->root_ft = NULL;
1936 if (list_empty(&root->underlay_qpns)) {
1937 /* Don't set any QPN (zero) in case QPN list is empty */
1939 err = root->cmds->update_root_ft(root->dev, new_root_ft,
1942 list_for_each_entry(uqp, &root->underlay_qpns, list) {
1944 err = root->cmds->update_root_ft(root->dev,
1953 mlx5_core_warn(root->dev,
1954 "Update root flow table of id(%u) qpn(%d) failed\n",
1957 root->root_ft = new_root_ft;
1962 /* Connect flow table from previous priority to
1963 * the next flow table.
1965 static int disconnect_flow_table(struct mlx5_flow_table *ft)
1967 struct mlx5_core_dev *dev = get_dev(&ft->node);
1968 struct mlx5_flow_table *next_ft;
1969 struct fs_prio *prio;
1972 err = update_root_ft_destroy(ft);
1976 fs_get_obj(prio, ft->node.parent);
1977 if (!(list_first_entry(&prio->node.children,
1978 struct mlx5_flow_table,
1982 next_ft = find_next_chained_ft(prio);
1983 err = connect_fwd_rules(dev, next_ft, ft);
1987 err = connect_prev_fts(dev, next_ft, prio);
1989 mlx5_core_warn(dev, "Failed to disconnect flow table %d\n",
1994 int mlx5_destroy_flow_table(struct mlx5_flow_table *ft)
1996 struct mlx5_flow_root_namespace *root = find_root(&ft->node);
1999 mutex_lock(&root->chain_lock);
2000 err = disconnect_flow_table(ft);
2002 mutex_unlock(&root->chain_lock);
2005 if (tree_remove_node(&ft->node))
2006 mlx5_core_warn(get_dev(&ft->node), "Flow table %d wasn't destroyed, refcount > 1\n",
2008 mutex_unlock(&root->chain_lock);
2012 EXPORT_SYMBOL(mlx5_destroy_flow_table);
2014 void mlx5_destroy_flow_group(struct mlx5_flow_group *fg)
2016 if (tree_remove_node(&fg->node))
2017 mlx5_core_warn(get_dev(&fg->node), "Flow group %d wasn't destroyed, refcount > 1\n",
2021 struct mlx5_flow_namespace *mlx5_get_flow_namespace(struct mlx5_core_dev *dev,
2022 enum mlx5_flow_namespace_type type)
2024 struct mlx5_flow_steering *steering = dev->priv.steering;
2025 struct mlx5_flow_root_namespace *root_ns;
2027 struct fs_prio *fs_prio;
2028 struct mlx5_flow_namespace *ns;
2034 case MLX5_FLOW_NAMESPACE_BYPASS:
2035 case MLX5_FLOW_NAMESPACE_LAG:
2036 case MLX5_FLOW_NAMESPACE_OFFLOADS:
2037 case MLX5_FLOW_NAMESPACE_ETHTOOL:
2038 case MLX5_FLOW_NAMESPACE_KERNEL:
2039 case MLX5_FLOW_NAMESPACE_LEFTOVERS:
2040 case MLX5_FLOW_NAMESPACE_ANCHOR:
2043 case MLX5_FLOW_NAMESPACE_FDB:
2044 if (steering->fdb_root_ns)
2045 return &steering->fdb_root_ns->ns;
2048 case MLX5_FLOW_NAMESPACE_SNIFFER_RX:
2049 if (steering->sniffer_rx_root_ns)
2050 return &steering->sniffer_rx_root_ns->ns;
2053 case MLX5_FLOW_NAMESPACE_SNIFFER_TX:
2054 if (steering->sniffer_tx_root_ns)
2055 return &steering->sniffer_tx_root_ns->ns;
2058 case MLX5_FLOW_NAMESPACE_EGRESS:
2059 if (steering->egress_root_ns)
2060 return &steering->egress_root_ns->ns;
2067 root_ns = steering->root_ns;
2071 fs_prio = find_prio(&root_ns->ns, prio);
2075 ns = list_first_entry(&fs_prio->node.children,
2081 EXPORT_SYMBOL(mlx5_get_flow_namespace);
2083 struct mlx5_flow_namespace *mlx5_get_flow_vport_acl_namespace(struct mlx5_core_dev *dev,
2084 enum mlx5_flow_namespace_type type,
2087 struct mlx5_flow_steering *steering = dev->priv.steering;
2089 if (!steering || vport >= MLX5_TOTAL_VPORTS(dev))
2093 case MLX5_FLOW_NAMESPACE_ESW_EGRESS:
2094 if (steering->esw_egress_root_ns &&
2095 steering->esw_egress_root_ns[vport])
2096 return &steering->esw_egress_root_ns[vport]->ns;
2099 case MLX5_FLOW_NAMESPACE_ESW_INGRESS:
2100 if (steering->esw_ingress_root_ns &&
2101 steering->esw_ingress_root_ns[vport])
2102 return &steering->esw_ingress_root_ns[vport]->ns;
2110 static struct fs_prio *fs_create_prio(struct mlx5_flow_namespace *ns,
2111 unsigned int prio, int num_levels)
2113 struct fs_prio *fs_prio;
2115 fs_prio = kzalloc(sizeof(*fs_prio), GFP_KERNEL);
2117 return ERR_PTR(-ENOMEM);
2119 fs_prio->node.type = FS_TYPE_PRIO;
2120 tree_init_node(&fs_prio->node, NULL, del_sw_prio);
2121 tree_add_node(&fs_prio->node, &ns->node);
2122 fs_prio->num_levels = num_levels;
2123 fs_prio->prio = prio;
2124 list_add_tail(&fs_prio->node.list, &ns->node.children);
2129 static struct mlx5_flow_namespace *fs_init_namespace(struct mlx5_flow_namespace
2132 ns->node.type = FS_TYPE_NAMESPACE;
2137 static struct mlx5_flow_namespace *fs_create_namespace(struct fs_prio *prio)
2139 struct mlx5_flow_namespace *ns;
2141 ns = kzalloc(sizeof(*ns), GFP_KERNEL);
2143 return ERR_PTR(-ENOMEM);
2145 fs_init_namespace(ns);
2146 tree_init_node(&ns->node, NULL, del_sw_ns);
2147 tree_add_node(&ns->node, &prio->node);
2148 list_add_tail(&ns->node.list, &prio->node.children);
2153 static int create_leaf_prios(struct mlx5_flow_namespace *ns, int prio,
2154 struct init_tree_node *prio_metadata)
2156 struct fs_prio *fs_prio;
2159 for (i = 0; i < prio_metadata->num_leaf_prios; i++) {
2160 fs_prio = fs_create_prio(ns, prio++, prio_metadata->num_levels);
2161 if (IS_ERR(fs_prio))
2162 return PTR_ERR(fs_prio);
2167 #define FLOW_TABLE_BIT_SZ 1
2168 #define GET_FLOW_TABLE_CAP(dev, offset) \
2169 ((be32_to_cpu(*((__be32 *)(dev->caps.hca_cur[MLX5_CAP_FLOW_TABLE]) + \
2171 (32 - FLOW_TABLE_BIT_SZ - (offset & 0x1f))) & FLOW_TABLE_BIT_SZ)
2172 static bool has_required_caps(struct mlx5_core_dev *dev, struct node_caps *caps)
2176 for (i = 0; i < caps->arr_sz; i++) {
2177 if (!GET_FLOW_TABLE_CAP(dev, caps->caps[i]))
2183 static int init_root_tree_recursive(struct mlx5_flow_steering *steering,
2184 struct init_tree_node *init_node,
2185 struct fs_node *fs_parent_node,
2186 struct init_tree_node *init_parent_node,
2189 int max_ft_level = MLX5_CAP_FLOWTABLE(steering->dev,
2190 flow_table_properties_nic_receive.
2192 struct mlx5_flow_namespace *fs_ns;
2193 struct fs_prio *fs_prio;
2194 struct fs_node *base;
2198 if (init_node->type == FS_TYPE_PRIO) {
2199 if ((init_node->min_ft_level > max_ft_level) ||
2200 !has_required_caps(steering->dev, &init_node->caps))
2203 fs_get_obj(fs_ns, fs_parent_node);
2204 if (init_node->num_leaf_prios)
2205 return create_leaf_prios(fs_ns, prio, init_node);
2206 fs_prio = fs_create_prio(fs_ns, prio, init_node->num_levels);
2207 if (IS_ERR(fs_prio))
2208 return PTR_ERR(fs_prio);
2209 base = &fs_prio->node;
2210 } else if (init_node->type == FS_TYPE_NAMESPACE) {
2211 fs_get_obj(fs_prio, fs_parent_node);
2212 fs_ns = fs_create_namespace(fs_prio);
2214 return PTR_ERR(fs_ns);
2215 base = &fs_ns->node;
2220 for (i = 0; i < init_node->ar_size; i++) {
2221 err = init_root_tree_recursive(steering, &init_node->children[i],
2222 base, init_node, prio);
2225 if (init_node->children[i].type == FS_TYPE_PRIO &&
2226 init_node->children[i].num_leaf_prios) {
2227 prio += init_node->children[i].num_leaf_prios;
2234 static int init_root_tree(struct mlx5_flow_steering *steering,
2235 struct init_tree_node *init_node,
2236 struct fs_node *fs_parent_node)
2239 struct mlx5_flow_namespace *fs_ns;
2242 fs_get_obj(fs_ns, fs_parent_node);
2243 for (i = 0; i < init_node->ar_size; i++) {
2244 err = init_root_tree_recursive(steering, &init_node->children[i],
2253 static struct mlx5_flow_root_namespace
2254 *create_root_ns(struct mlx5_flow_steering *steering,
2255 enum fs_flow_table_type table_type)
2257 const struct mlx5_flow_cmds *cmds = mlx5_fs_cmd_get_default(table_type);
2258 struct mlx5_flow_root_namespace *root_ns;
2259 struct mlx5_flow_namespace *ns;
2261 if (mlx5_accel_ipsec_device_caps(steering->dev) & MLX5_ACCEL_IPSEC_CAP_DEVICE &&
2262 (table_type == FS_FT_NIC_RX || table_type == FS_FT_NIC_TX))
2263 cmds = mlx5_fs_cmd_get_default_ipsec_fpga_cmds(table_type);
2265 /* Create the root namespace */
2266 root_ns = kvzalloc(sizeof(*root_ns), GFP_KERNEL);
2270 root_ns->dev = steering->dev;
2271 root_ns->table_type = table_type;
2272 root_ns->cmds = cmds;
2274 INIT_LIST_HEAD(&root_ns->underlay_qpns);
2277 fs_init_namespace(ns);
2278 mutex_init(&root_ns->chain_lock);
2279 tree_init_node(&ns->node, NULL, NULL);
2280 tree_add_node(&ns->node, NULL);
2285 static void set_prio_attrs_in_prio(struct fs_prio *prio, int acc_level);
2287 static int set_prio_attrs_in_ns(struct mlx5_flow_namespace *ns, int acc_level)
2289 struct fs_prio *prio;
2291 fs_for_each_prio(prio, ns) {
2292 /* This updates prio start_level and num_levels */
2293 set_prio_attrs_in_prio(prio, acc_level);
2294 acc_level += prio->num_levels;
2299 static void set_prio_attrs_in_prio(struct fs_prio *prio, int acc_level)
2301 struct mlx5_flow_namespace *ns;
2302 int acc_level_ns = acc_level;
2304 prio->start_level = acc_level;
2305 fs_for_each_ns(ns, prio)
2306 /* This updates start_level and num_levels of ns's priority descendants */
2307 acc_level_ns = set_prio_attrs_in_ns(ns, acc_level);
2308 if (!prio->num_levels)
2309 prio->num_levels = acc_level_ns - prio->start_level;
2310 WARN_ON(prio->num_levels < acc_level_ns - prio->start_level);
2313 static void set_prio_attrs(struct mlx5_flow_root_namespace *root_ns)
2315 struct mlx5_flow_namespace *ns = &root_ns->ns;
2316 struct fs_prio *prio;
2317 int start_level = 0;
2319 fs_for_each_prio(prio, ns) {
2320 set_prio_attrs_in_prio(prio, start_level);
2321 start_level += prio->num_levels;
2325 #define ANCHOR_PRIO 0
2326 #define ANCHOR_SIZE 1
2327 #define ANCHOR_LEVEL 0
2328 static int create_anchor_flow_table(struct mlx5_flow_steering *steering)
2330 struct mlx5_flow_namespace *ns = NULL;
2331 struct mlx5_flow_table_attr ft_attr = {};
2332 struct mlx5_flow_table *ft;
2334 ns = mlx5_get_flow_namespace(steering->dev, MLX5_FLOW_NAMESPACE_ANCHOR);
2338 ft_attr.max_fte = ANCHOR_SIZE;
2339 ft_attr.level = ANCHOR_LEVEL;
2340 ft_attr.prio = ANCHOR_PRIO;
2342 ft = mlx5_create_flow_table(ns, &ft_attr);
2344 mlx5_core_err(steering->dev, "Failed to create last anchor flow table");
2350 static int init_root_ns(struct mlx5_flow_steering *steering)
2352 steering->root_ns = create_root_ns(steering, FS_FT_NIC_RX);
2353 if (!steering->root_ns)
2356 if (init_root_tree(steering, &root_fs, &steering->root_ns->ns.node))
2359 set_prio_attrs(steering->root_ns);
2361 if (create_anchor_flow_table(steering))
2367 mlx5_cleanup_fs(steering->dev);
2371 static void clean_tree(struct fs_node *node)
2374 struct fs_node *iter;
2375 struct fs_node *temp;
2377 tree_get_node(node);
2378 list_for_each_entry_safe(iter, temp, &node->children, list)
2380 tree_put_node(node);
2381 tree_remove_node(node);
2385 static void cleanup_root_ns(struct mlx5_flow_root_namespace *root_ns)
2390 clean_tree(&root_ns->ns.node);
2393 static void cleanup_egress_acls_root_ns(struct mlx5_core_dev *dev)
2395 struct mlx5_flow_steering *steering = dev->priv.steering;
2398 if (!steering->esw_egress_root_ns)
2401 for (i = 0; i < MLX5_TOTAL_VPORTS(dev); i++)
2402 cleanup_root_ns(steering->esw_egress_root_ns[i]);
2404 kfree(steering->esw_egress_root_ns);
2407 static void cleanup_ingress_acls_root_ns(struct mlx5_core_dev *dev)
2409 struct mlx5_flow_steering *steering = dev->priv.steering;
2412 if (!steering->esw_ingress_root_ns)
2415 for (i = 0; i < MLX5_TOTAL_VPORTS(dev); i++)
2416 cleanup_root_ns(steering->esw_ingress_root_ns[i]);
2418 kfree(steering->esw_ingress_root_ns);
2421 void mlx5_cleanup_fs(struct mlx5_core_dev *dev)
2423 struct mlx5_flow_steering *steering = dev->priv.steering;
2425 cleanup_root_ns(steering->root_ns);
2426 cleanup_egress_acls_root_ns(dev);
2427 cleanup_ingress_acls_root_ns(dev);
2428 cleanup_root_ns(steering->fdb_root_ns);
2429 cleanup_root_ns(steering->sniffer_rx_root_ns);
2430 cleanup_root_ns(steering->sniffer_tx_root_ns);
2431 cleanup_root_ns(steering->egress_root_ns);
2432 mlx5_cleanup_fc_stats(dev);
2433 kmem_cache_destroy(steering->ftes_cache);
2434 kmem_cache_destroy(steering->fgs_cache);
2438 static int init_sniffer_tx_root_ns(struct mlx5_flow_steering *steering)
2440 struct fs_prio *prio;
2442 steering->sniffer_tx_root_ns = create_root_ns(steering, FS_FT_SNIFFER_TX);
2443 if (!steering->sniffer_tx_root_ns)
2446 /* Create single prio */
2447 prio = fs_create_prio(&steering->sniffer_tx_root_ns->ns, 0, 1);
2449 cleanup_root_ns(steering->sniffer_tx_root_ns);
2450 return PTR_ERR(prio);
2455 static int init_sniffer_rx_root_ns(struct mlx5_flow_steering *steering)
2457 struct fs_prio *prio;
2459 steering->sniffer_rx_root_ns = create_root_ns(steering, FS_FT_SNIFFER_RX);
2460 if (!steering->sniffer_rx_root_ns)
2463 /* Create single prio */
2464 prio = fs_create_prio(&steering->sniffer_rx_root_ns->ns, 0, 1);
2466 cleanup_root_ns(steering->sniffer_rx_root_ns);
2467 return PTR_ERR(prio);
2472 static int init_fdb_root_ns(struct mlx5_flow_steering *steering)
2474 struct fs_prio *prio;
2476 steering->fdb_root_ns = create_root_ns(steering, FS_FT_FDB);
2477 if (!steering->fdb_root_ns)
2480 prio = fs_create_prio(&steering->fdb_root_ns->ns, 0, 1);
2484 prio = fs_create_prio(&steering->fdb_root_ns->ns, 1, 1);
2488 set_prio_attrs(steering->fdb_root_ns);
2492 cleanup_root_ns(steering->fdb_root_ns);
2493 steering->fdb_root_ns = NULL;
2494 return PTR_ERR(prio);
2497 static int init_egress_acl_root_ns(struct mlx5_flow_steering *steering, int vport)
2499 struct fs_prio *prio;
2501 steering->esw_egress_root_ns[vport] = create_root_ns(steering, FS_FT_ESW_EGRESS_ACL);
2502 if (!steering->esw_egress_root_ns[vport])
2506 prio = fs_create_prio(&steering->esw_egress_root_ns[vport]->ns, 0, 1);
2507 return PTR_ERR_OR_ZERO(prio);
2510 static int init_ingress_acl_root_ns(struct mlx5_flow_steering *steering, int vport)
2512 struct fs_prio *prio;
2514 steering->esw_ingress_root_ns[vport] = create_root_ns(steering, FS_FT_ESW_INGRESS_ACL);
2515 if (!steering->esw_ingress_root_ns[vport])
2519 prio = fs_create_prio(&steering->esw_ingress_root_ns[vport]->ns, 0, 1);
2520 return PTR_ERR_OR_ZERO(prio);
2523 static int init_egress_acls_root_ns(struct mlx5_core_dev *dev)
2525 struct mlx5_flow_steering *steering = dev->priv.steering;
2529 steering->esw_egress_root_ns = kcalloc(MLX5_TOTAL_VPORTS(dev),
2530 sizeof(*steering->esw_egress_root_ns),
2532 if (!steering->esw_egress_root_ns)
2535 for (i = 0; i < MLX5_TOTAL_VPORTS(dev); i++) {
2536 err = init_egress_acl_root_ns(steering, i);
2538 goto cleanup_root_ns;
2544 for (i--; i >= 0; i--)
2545 cleanup_root_ns(steering->esw_egress_root_ns[i]);
2546 kfree(steering->esw_egress_root_ns);
2550 static int init_ingress_acls_root_ns(struct mlx5_core_dev *dev)
2552 struct mlx5_flow_steering *steering = dev->priv.steering;
2556 steering->esw_ingress_root_ns = kcalloc(MLX5_TOTAL_VPORTS(dev),
2557 sizeof(*steering->esw_ingress_root_ns),
2559 if (!steering->esw_ingress_root_ns)
2562 for (i = 0; i < MLX5_TOTAL_VPORTS(dev); i++) {
2563 err = init_ingress_acl_root_ns(steering, i);
2565 goto cleanup_root_ns;
2571 for (i--; i >= 0; i--)
2572 cleanup_root_ns(steering->esw_ingress_root_ns[i]);
2573 kfree(steering->esw_ingress_root_ns);
2577 static int init_egress_root_ns(struct mlx5_flow_steering *steering)
2579 struct fs_prio *prio;
2581 steering->egress_root_ns = create_root_ns(steering,
2583 if (!steering->egress_root_ns)
2587 prio = fs_create_prio(&steering->egress_root_ns->ns, 0, 1);
2588 return PTR_ERR_OR_ZERO(prio);
2591 int mlx5_init_fs(struct mlx5_core_dev *dev)
2593 struct mlx5_flow_steering *steering;
2596 err = mlx5_init_fc_stats(dev);
2600 steering = kzalloc(sizeof(*steering), GFP_KERNEL);
2603 steering->dev = dev;
2604 dev->priv.steering = steering;
2606 steering->fgs_cache = kmem_cache_create("mlx5_fs_fgs",
2607 sizeof(struct mlx5_flow_group), 0,
2609 steering->ftes_cache = kmem_cache_create("mlx5_fs_ftes", sizeof(struct fs_fte), 0,
2611 if (!steering->ftes_cache || !steering->fgs_cache) {
2616 if ((((MLX5_CAP_GEN(dev, port_type) == MLX5_CAP_PORT_TYPE_ETH) &&
2617 (MLX5_CAP_GEN(dev, nic_flow_table))) ||
2618 ((MLX5_CAP_GEN(dev, port_type) == MLX5_CAP_PORT_TYPE_IB) &&
2619 MLX5_CAP_GEN(dev, ipoib_enhanced_offloads))) &&
2620 MLX5_CAP_FLOWTABLE_NIC_RX(dev, ft_support)) {
2621 err = init_root_ns(steering);
2626 if (MLX5_CAP_GEN(dev, eswitch_flow_table)) {
2627 if (MLX5_CAP_ESW_FLOWTABLE_FDB(dev, ft_support)) {
2628 err = init_fdb_root_ns(steering);
2632 if (MLX5_CAP_ESW_EGRESS_ACL(dev, ft_support)) {
2633 err = init_egress_acls_root_ns(dev);
2637 if (MLX5_CAP_ESW_INGRESS_ACL(dev, ft_support)) {
2638 err = init_ingress_acls_root_ns(dev);
2644 if (MLX5_CAP_FLOWTABLE_SNIFFER_RX(dev, ft_support)) {
2645 err = init_sniffer_rx_root_ns(steering);
2650 if (MLX5_CAP_FLOWTABLE_SNIFFER_TX(dev, ft_support)) {
2651 err = init_sniffer_tx_root_ns(steering);
2656 if (MLX5_IPSEC_DEV(dev)) {
2657 err = init_egress_root_ns(steering);
2664 mlx5_cleanup_fs(dev);
2668 int mlx5_fs_add_rx_underlay_qpn(struct mlx5_core_dev *dev, u32 underlay_qpn)
2670 struct mlx5_flow_root_namespace *root = dev->priv.steering->root_ns;
2671 struct mlx5_ft_underlay_qp *new_uqp;
2674 new_uqp = kzalloc(sizeof(*new_uqp), GFP_KERNEL);
2678 mutex_lock(&root->chain_lock);
2680 if (!root->root_ft) {
2682 goto update_ft_fail;
2685 err = root->cmds->update_root_ft(dev, root->root_ft, underlay_qpn,
2688 mlx5_core_warn(dev, "Failed adding underlay QPN (%u) to root FT err(%d)\n",
2690 goto update_ft_fail;
2693 new_uqp->qpn = underlay_qpn;
2694 list_add_tail(&new_uqp->list, &root->underlay_qpns);
2696 mutex_unlock(&root->chain_lock);
2701 mutex_unlock(&root->chain_lock);
2705 EXPORT_SYMBOL(mlx5_fs_add_rx_underlay_qpn);
2707 int mlx5_fs_remove_rx_underlay_qpn(struct mlx5_core_dev *dev, u32 underlay_qpn)
2709 struct mlx5_flow_root_namespace *root = dev->priv.steering->root_ns;
2710 struct mlx5_ft_underlay_qp *uqp;
2714 mutex_lock(&root->chain_lock);
2715 list_for_each_entry(uqp, &root->underlay_qpns, list) {
2716 if (uqp->qpn == underlay_qpn) {
2723 mlx5_core_warn(dev, "Failed finding underlay qp (%u) in qpn list\n",
2729 err = root->cmds->update_root_ft(dev, root->root_ft, underlay_qpn,
2732 mlx5_core_warn(dev, "Failed removing underlay QPN (%u) from root FT err(%d)\n",
2735 list_del(&uqp->list);
2736 mutex_unlock(&root->chain_lock);
2742 mutex_unlock(&root->chain_lock);
2745 EXPORT_SYMBOL(mlx5_fs_remove_rx_underlay_qpn);