1 /*
2 * Copyright (c) 2015, Mellanox Technologies. All rights reserved.
3 *
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:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
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.
22 *
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
30 * SOFTWARE.
31 */
32
33 #include <linux/mutex.h>
34 #include <linux/mlx5/driver.h>
35 #include <linux/mlx5/vport.h>
36 #include <linux/mlx5/eswitch.h>
37
38 #include "mlx5_core.h"
39 #include "fs_core.h"
40 #include "fs_cmd.h"
41 #include "diag/fs_tracepoint.h"
42 #include "accel/ipsec.h"
43 #include "fpga/ipsec.h"
44
45 #define INIT_TREE_NODE_ARRAY_SIZE(...) (sizeof((struct init_tree_node[]){__VA_ARGS__}) /\
46 sizeof(struct init_tree_node))
47
48 #define ADD_PRIO(num_prios_val, min_level_val, num_levels_val, caps_val,\
49 ...) {.type = FS_TYPE_PRIO,\
50 .min_ft_level = min_level_val,\
51 .num_levels = num_levels_val,\
52 .num_leaf_prios = num_prios_val,\
53 .caps = caps_val,\
54 .children = (struct init_tree_node[]) {__VA_ARGS__},\
55 .ar_size = INIT_TREE_NODE_ARRAY_SIZE(__VA_ARGS__) \
56 }
57
58 #define ADD_MULTIPLE_PRIO(num_prios_val, num_levels_val, ...)\
59 ADD_PRIO(num_prios_val, 0, num_levels_val, {},\
60 __VA_ARGS__)\
61
62 #define ADD_NS(def_miss_act, ...) {.type = FS_TYPE_NAMESPACE, \
63 .def_miss_action = def_miss_act,\
64 .children = (struct init_tree_node[]) {__VA_ARGS__},\
65 .ar_size = INIT_TREE_NODE_ARRAY_SIZE(__VA_ARGS__) \
66 }
67
68 #define INIT_CAPS_ARRAY_SIZE(...) (sizeof((long[]){__VA_ARGS__}) /\
69 sizeof(long))
70
71 #define FS_CAP(cap) (__mlx5_bit_off(flow_table_nic_cap, cap))
72
73 #define FS_REQUIRED_CAPS(...) {.arr_sz = INIT_CAPS_ARRAY_SIZE(__VA_ARGS__), \
74 .caps = (long[]) {__VA_ARGS__} }
75
76 #define FS_CHAINING_CAPS FS_REQUIRED_CAPS(FS_CAP(flow_table_properties_nic_receive.flow_modify_en), \
77 FS_CAP(flow_table_properties_nic_receive.modify_root), \
78 FS_CAP(flow_table_properties_nic_receive.identified_miss_table_mode), \
79 FS_CAP(flow_table_properties_nic_receive.flow_table_modify))
80
81 #define FS_CHAINING_CAPS_EGRESS \
82 FS_REQUIRED_CAPS( \
83 FS_CAP(flow_table_properties_nic_transmit.flow_modify_en), \
84 FS_CAP(flow_table_properties_nic_transmit.modify_root), \
85 FS_CAP(flow_table_properties_nic_transmit \
86 .identified_miss_table_mode), \
87 FS_CAP(flow_table_properties_nic_transmit.flow_table_modify))
88
89 #define FS_CHAINING_CAPS_RDMA_TX \
90 FS_REQUIRED_CAPS( \
91 FS_CAP(flow_table_properties_nic_transmit_rdma.flow_modify_en), \
92 FS_CAP(flow_table_properties_nic_transmit_rdma.modify_root), \
93 FS_CAP(flow_table_properties_nic_transmit_rdma \
94 .identified_miss_table_mode), \
95 FS_CAP(flow_table_properties_nic_transmit_rdma \
96 .flow_table_modify))
97
98 #define LEFTOVERS_NUM_LEVELS 1
99 #define LEFTOVERS_NUM_PRIOS 1
100
101 #define BY_PASS_PRIO_NUM_LEVELS 1
102 #define BY_PASS_MIN_LEVEL (ETHTOOL_MIN_LEVEL + MLX5_BY_PASS_NUM_PRIOS +\
103 LEFTOVERS_NUM_PRIOS)
104
105 #define ETHTOOL_PRIO_NUM_LEVELS 1
106 #define ETHTOOL_NUM_PRIOS 11
107 #define ETHTOOL_MIN_LEVEL (KERNEL_MIN_LEVEL + ETHTOOL_NUM_PRIOS)
108 /* Vlan, mac, ttc, inner ttc, {aRFS/accel and esp/esp_err} */
109 #define KERNEL_NIC_PRIO_NUM_LEVELS 6
110 #define KERNEL_NIC_NUM_PRIOS 1
111 /* One more level for tc */
112 #define KERNEL_MIN_LEVEL (KERNEL_NIC_PRIO_NUM_LEVELS + 1)
113
114 #define KERNEL_NIC_TC_NUM_PRIOS 1
115 #define KERNEL_NIC_TC_NUM_LEVELS 2
116
117 #define ANCHOR_NUM_LEVELS 1
118 #define ANCHOR_NUM_PRIOS 1
119 #define ANCHOR_MIN_LEVEL (BY_PASS_MIN_LEVEL + 1)
120
121 #define OFFLOADS_MAX_FT 2
122 #define OFFLOADS_NUM_PRIOS 2
123 #define OFFLOADS_MIN_LEVEL (ANCHOR_MIN_LEVEL + OFFLOADS_NUM_PRIOS)
124
125 #define LAG_PRIO_NUM_LEVELS 1
126 #define LAG_NUM_PRIOS 1
127 #define LAG_MIN_LEVEL (OFFLOADS_MIN_LEVEL + 1)
128
129 #define KERNEL_TX_IPSEC_NUM_PRIOS 1
130 #define KERNEL_TX_IPSEC_NUM_LEVELS 1
131 #define KERNEL_TX_MIN_LEVEL (KERNEL_TX_IPSEC_NUM_LEVELS)
132
133 struct node_caps {
134 size_t arr_sz;
135 long *caps;
136 };
137
138 static struct init_tree_node {
139 enum fs_node_type type;
140 struct init_tree_node *children;
141 int ar_size;
142 struct node_caps caps;
143 int min_ft_level;
144 int num_leaf_prios;
145 int prio;
146 int num_levels;
147 enum mlx5_flow_table_miss_action def_miss_action;
148 } root_fs = {
149 .type = FS_TYPE_NAMESPACE,
150 .ar_size = 7,
151 .children = (struct init_tree_node[]){
152 ADD_PRIO(0, BY_PASS_MIN_LEVEL, 0, FS_CHAINING_CAPS,
153 ADD_NS(MLX5_FLOW_TABLE_MISS_ACTION_DEF,
154 ADD_MULTIPLE_PRIO(MLX5_BY_PASS_NUM_PRIOS,
155 BY_PASS_PRIO_NUM_LEVELS))),
156 ADD_PRIO(0, LAG_MIN_LEVEL, 0, FS_CHAINING_CAPS,
157 ADD_NS(MLX5_FLOW_TABLE_MISS_ACTION_DEF,
158 ADD_MULTIPLE_PRIO(LAG_NUM_PRIOS,
159 LAG_PRIO_NUM_LEVELS))),
160 ADD_PRIO(0, OFFLOADS_MIN_LEVEL, 0, FS_CHAINING_CAPS,
161 ADD_NS(MLX5_FLOW_TABLE_MISS_ACTION_DEF,
162 ADD_MULTIPLE_PRIO(OFFLOADS_NUM_PRIOS,
163 OFFLOADS_MAX_FT))),
164 ADD_PRIO(0, ETHTOOL_MIN_LEVEL, 0, FS_CHAINING_CAPS,
165 ADD_NS(MLX5_FLOW_TABLE_MISS_ACTION_DEF,
166 ADD_MULTIPLE_PRIO(ETHTOOL_NUM_PRIOS,
167 ETHTOOL_PRIO_NUM_LEVELS))),
168 ADD_PRIO(0, KERNEL_MIN_LEVEL, 0, {},
169 ADD_NS(MLX5_FLOW_TABLE_MISS_ACTION_DEF,
170 ADD_MULTIPLE_PRIO(KERNEL_NIC_TC_NUM_PRIOS,
171 KERNEL_NIC_TC_NUM_LEVELS),
172 ADD_MULTIPLE_PRIO(KERNEL_NIC_NUM_PRIOS,
173 KERNEL_NIC_PRIO_NUM_LEVELS))),
174 ADD_PRIO(0, BY_PASS_MIN_LEVEL, 0, FS_CHAINING_CAPS,
175 ADD_NS(MLX5_FLOW_TABLE_MISS_ACTION_DEF,
176 ADD_MULTIPLE_PRIO(LEFTOVERS_NUM_PRIOS,
177 LEFTOVERS_NUM_LEVELS))),
178 ADD_PRIO(0, ANCHOR_MIN_LEVEL, 0, {},
179 ADD_NS(MLX5_FLOW_TABLE_MISS_ACTION_DEF,
180 ADD_MULTIPLE_PRIO(ANCHOR_NUM_PRIOS,
181 ANCHOR_NUM_LEVELS))),
182 }
183 };
184
185 static struct init_tree_node egress_root_fs = {
186 .type = FS_TYPE_NAMESPACE,
187 #ifdef CONFIG_MLX5_IPSEC
188 .ar_size = 2,
189 #else
190 .ar_size = 1,
191 #endif
192 .children = (struct init_tree_node[]) {
193 ADD_PRIO(0, MLX5_BY_PASS_NUM_PRIOS, 0,
194 FS_CHAINING_CAPS_EGRESS,
195 ADD_NS(MLX5_FLOW_TABLE_MISS_ACTION_DEF,
196 ADD_MULTIPLE_PRIO(MLX5_BY_PASS_NUM_PRIOS,
197 BY_PASS_PRIO_NUM_LEVELS))),
198 #ifdef CONFIG_MLX5_IPSEC
199 ADD_PRIO(0, KERNEL_TX_MIN_LEVEL, 0,
200 FS_CHAINING_CAPS_EGRESS,
201 ADD_NS(MLX5_FLOW_TABLE_MISS_ACTION_DEF,
202 ADD_MULTIPLE_PRIO(KERNEL_TX_IPSEC_NUM_PRIOS,
203 KERNEL_TX_IPSEC_NUM_LEVELS))),
204 #endif
205 }
206 };
207
208 #define RDMA_RX_BYPASS_PRIO 0
209 #define RDMA_RX_KERNEL_PRIO 1
210 static struct init_tree_node rdma_rx_root_fs = {
211 .type = FS_TYPE_NAMESPACE,
212 .ar_size = 2,
213 .children = (struct init_tree_node[]) {
214 [RDMA_RX_BYPASS_PRIO] =
215 ADD_PRIO(0, MLX5_BY_PASS_NUM_REGULAR_PRIOS, 0,
216 FS_CHAINING_CAPS,
217 ADD_NS(MLX5_FLOW_TABLE_MISS_ACTION_DEF,
218 ADD_MULTIPLE_PRIO(MLX5_BY_PASS_NUM_REGULAR_PRIOS,
219 BY_PASS_PRIO_NUM_LEVELS))),
220 [RDMA_RX_KERNEL_PRIO] =
221 ADD_PRIO(0, MLX5_BY_PASS_NUM_REGULAR_PRIOS + 1, 0,
222 FS_CHAINING_CAPS,
223 ADD_NS(MLX5_FLOW_TABLE_MISS_ACTION_SWITCH_DOMAIN,
224 ADD_MULTIPLE_PRIO(1, 1))),
225 }
226 };
227
228 static struct init_tree_node rdma_tx_root_fs = {
229 .type = FS_TYPE_NAMESPACE,
230 .ar_size = 1,
231 .children = (struct init_tree_node[]) {
232 ADD_PRIO(0, MLX5_BY_PASS_NUM_PRIOS, 0,
233 FS_CHAINING_CAPS_RDMA_TX,
234 ADD_NS(MLX5_FLOW_TABLE_MISS_ACTION_DEF,
235 ADD_MULTIPLE_PRIO(MLX5_BY_PASS_NUM_PRIOS,
236 BY_PASS_PRIO_NUM_LEVELS))),
237 }
238 };
239
240 enum fs_i_lock_class {
241 FS_LOCK_GRANDPARENT,
242 FS_LOCK_PARENT,
243 FS_LOCK_CHILD
244 };
245
246 static const struct rhashtable_params rhash_fte = {
247 .key_len = sizeof_field(struct fs_fte, val),
248 .key_offset = offsetof(struct fs_fte, val),
249 .head_offset = offsetof(struct fs_fte, hash),
250 .automatic_shrinking = true,
251 .min_size = 1,
252 };
253
254 static const struct rhashtable_params rhash_fg = {
255 .key_len = sizeof_field(struct mlx5_flow_group, mask),
256 .key_offset = offsetof(struct mlx5_flow_group, mask),
257 .head_offset = offsetof(struct mlx5_flow_group, hash),
258 .automatic_shrinking = true,
259 .min_size = 1,
260
261 };
262
263 static void del_hw_flow_table(struct fs_node *node);
264 static void del_hw_flow_group(struct fs_node *node);
265 static void del_hw_fte(struct fs_node *node);
266 static void del_sw_flow_table(struct fs_node *node);
267 static void del_sw_flow_group(struct fs_node *node);
268 static void del_sw_fte(struct fs_node *node);
269 static void del_sw_prio(struct fs_node *node);
270 static void del_sw_ns(struct fs_node *node);
271 /* Delete rule (destination) is special case that
272 * requires to lock the FTE for all the deletion process.
273 */
274 static void del_sw_hw_rule(struct fs_node *node);
275 static bool mlx5_flow_dests_cmp(struct mlx5_flow_destination *d1,
276 struct mlx5_flow_destination *d2);
277 static void cleanup_root_ns(struct mlx5_flow_root_namespace *root_ns);
278 static struct mlx5_flow_rule *
279 find_flow_rule(struct fs_fte *fte,
280 struct mlx5_flow_destination *dest);
281
tree_init_node(struct fs_node * node,void (* del_hw_func)(struct fs_node *),void (* del_sw_func)(struct fs_node *))282 static void tree_init_node(struct fs_node *node,
283 void (*del_hw_func)(struct fs_node *),
284 void (*del_sw_func)(struct fs_node *))
285 {
286 refcount_set(&node->refcount, 1);
287 INIT_LIST_HEAD(&node->list);
288 INIT_LIST_HEAD(&node->children);
289 init_rwsem(&node->lock);
290 node->del_hw_func = del_hw_func;
291 node->del_sw_func = del_sw_func;
292 node->active = false;
293 }
294
tree_add_node(struct fs_node * node,struct fs_node * parent)295 static void tree_add_node(struct fs_node *node, struct fs_node *parent)
296 {
297 if (parent)
298 refcount_inc(&parent->refcount);
299 node->parent = parent;
300
301 /* Parent is the root */
302 if (!parent)
303 node->root = node;
304 else
305 node->root = parent->root;
306 }
307
tree_get_node(struct fs_node * node)308 static int tree_get_node(struct fs_node *node)
309 {
310 return refcount_inc_not_zero(&node->refcount);
311 }
312
nested_down_read_ref_node(struct fs_node * node,enum fs_i_lock_class class)313 static void nested_down_read_ref_node(struct fs_node *node,
314 enum fs_i_lock_class class)
315 {
316 if (node) {
317 down_read_nested(&node->lock, class);
318 refcount_inc(&node->refcount);
319 }
320 }
321
nested_down_write_ref_node(struct fs_node * node,enum fs_i_lock_class class)322 static void nested_down_write_ref_node(struct fs_node *node,
323 enum fs_i_lock_class class)
324 {
325 if (node) {
326 down_write_nested(&node->lock, class);
327 refcount_inc(&node->refcount);
328 }
329 }
330
down_write_ref_node(struct fs_node * node,bool locked)331 static void down_write_ref_node(struct fs_node *node, bool locked)
332 {
333 if (node) {
334 if (!locked)
335 down_write(&node->lock);
336 refcount_inc(&node->refcount);
337 }
338 }
339
up_read_ref_node(struct fs_node * node)340 static void up_read_ref_node(struct fs_node *node)
341 {
342 refcount_dec(&node->refcount);
343 up_read(&node->lock);
344 }
345
up_write_ref_node(struct fs_node * node,bool locked)346 static void up_write_ref_node(struct fs_node *node, bool locked)
347 {
348 refcount_dec(&node->refcount);
349 if (!locked)
350 up_write(&node->lock);
351 }
352
tree_put_node(struct fs_node * node,bool locked)353 static void tree_put_node(struct fs_node *node, bool locked)
354 {
355 struct fs_node *parent_node = node->parent;
356
357 if (refcount_dec_and_test(&node->refcount)) {
358 if (node->del_hw_func)
359 node->del_hw_func(node);
360 if (parent_node) {
361 down_write_ref_node(parent_node, locked);
362 list_del_init(&node->list);
363 }
364 node->del_sw_func(node);
365 if (parent_node)
366 up_write_ref_node(parent_node, locked);
367 node = NULL;
368 }
369 if (!node && parent_node)
370 tree_put_node(parent_node, locked);
371 }
372
tree_remove_node(struct fs_node * node,bool locked)373 static int tree_remove_node(struct fs_node *node, bool locked)
374 {
375 if (refcount_read(&node->refcount) > 1) {
376 refcount_dec(&node->refcount);
377 return -EEXIST;
378 }
379 tree_put_node(node, locked);
380 return 0;
381 }
382
find_prio(struct mlx5_flow_namespace * ns,unsigned int prio)383 static struct fs_prio *find_prio(struct mlx5_flow_namespace *ns,
384 unsigned int prio)
385 {
386 struct fs_prio *iter_prio;
387
388 fs_for_each_prio(iter_prio, ns) {
389 if (iter_prio->prio == prio)
390 return iter_prio;
391 }
392
393 return NULL;
394 }
395
is_fwd_next_action(u32 action)396 static bool is_fwd_next_action(u32 action)
397 {
398 return action & (MLX5_FLOW_CONTEXT_ACTION_FWD_NEXT_PRIO |
399 MLX5_FLOW_CONTEXT_ACTION_FWD_NEXT_NS);
400 }
401
check_valid_spec(const struct mlx5_flow_spec * spec)402 static bool check_valid_spec(const struct mlx5_flow_spec *spec)
403 {
404 int i;
405
406 for (i = 0; i < MLX5_ST_SZ_DW_MATCH_PARAM; i++)
407 if (spec->match_value[i] & ~spec->match_criteria[i]) {
408 pr_warn("mlx5_core: match_value differs from match_criteria\n");
409 return false;
410 }
411
412 return true;
413 }
414
find_root(struct fs_node * node)415 static struct mlx5_flow_root_namespace *find_root(struct fs_node *node)
416 {
417 struct fs_node *root;
418 struct mlx5_flow_namespace *ns;
419
420 root = node->root;
421
422 if (WARN_ON(root->type != FS_TYPE_NAMESPACE)) {
423 pr_warn("mlx5: flow steering node is not in tree or garbaged\n");
424 return NULL;
425 }
426
427 ns = container_of(root, struct mlx5_flow_namespace, node);
428 return container_of(ns, struct mlx5_flow_root_namespace, ns);
429 }
430
get_steering(struct fs_node * node)431 static inline struct mlx5_flow_steering *get_steering(struct fs_node *node)
432 {
433 struct mlx5_flow_root_namespace *root = find_root(node);
434
435 if (root)
436 return root->dev->priv.steering;
437 return NULL;
438 }
439
get_dev(struct fs_node * node)440 static inline struct mlx5_core_dev *get_dev(struct fs_node *node)
441 {
442 struct mlx5_flow_root_namespace *root = find_root(node);
443
444 if (root)
445 return root->dev;
446 return NULL;
447 }
448
del_sw_ns(struct fs_node * node)449 static void del_sw_ns(struct fs_node *node)
450 {
451 kfree(node);
452 }
453
del_sw_prio(struct fs_node * node)454 static void del_sw_prio(struct fs_node *node)
455 {
456 kfree(node);
457 }
458
del_hw_flow_table(struct fs_node * node)459 static void del_hw_flow_table(struct fs_node *node)
460 {
461 struct mlx5_flow_root_namespace *root;
462 struct mlx5_flow_table *ft;
463 struct mlx5_core_dev *dev;
464 int err;
465
466 fs_get_obj(ft, node);
467 dev = get_dev(&ft->node);
468 root = find_root(&ft->node);
469 trace_mlx5_fs_del_ft(ft);
470
471 if (node->active) {
472 err = root->cmds->destroy_flow_table(root, ft);
473 if (err)
474 mlx5_core_warn(dev, "flow steering can't destroy ft\n");
475 }
476 }
477
del_sw_flow_table(struct fs_node * node)478 static void del_sw_flow_table(struct fs_node *node)
479 {
480 struct mlx5_flow_table *ft;
481 struct fs_prio *prio;
482
483 fs_get_obj(ft, node);
484
485 rhltable_destroy(&ft->fgs_hash);
486 if (ft->node.parent) {
487 fs_get_obj(prio, ft->node.parent);
488 prio->num_ft--;
489 }
490 kfree(ft);
491 }
492
modify_fte(struct fs_fte * fte)493 static void modify_fte(struct fs_fte *fte)
494 {
495 struct mlx5_flow_root_namespace *root;
496 struct mlx5_flow_table *ft;
497 struct mlx5_flow_group *fg;
498 struct mlx5_core_dev *dev;
499 int err;
500
501 fs_get_obj(fg, fte->node.parent);
502 fs_get_obj(ft, fg->node.parent);
503 dev = get_dev(&fte->node);
504
505 root = find_root(&ft->node);
506 err = root->cmds->update_fte(root, ft, fg, fte->modify_mask, fte);
507 if (err)
508 mlx5_core_warn(dev,
509 "%s can't del rule fg id=%d fte_index=%d\n",
510 __func__, fg->id, fte->index);
511 fte->modify_mask = 0;
512 }
513
del_sw_hw_rule(struct fs_node * node)514 static void del_sw_hw_rule(struct fs_node *node)
515 {
516 struct mlx5_flow_rule *rule;
517 struct fs_fte *fte;
518
519 fs_get_obj(rule, node);
520 fs_get_obj(fte, rule->node.parent);
521 trace_mlx5_fs_del_rule(rule);
522 if (is_fwd_next_action(rule->sw_action)) {
523 mutex_lock(&rule->dest_attr.ft->lock);
524 list_del(&rule->next_ft);
525 mutex_unlock(&rule->dest_attr.ft->lock);
526 }
527
528 if (rule->dest_attr.type == MLX5_FLOW_DESTINATION_TYPE_COUNTER &&
529 --fte->dests_size) {
530 fte->modify_mask |=
531 BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_ACTION) |
532 BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_FLOW_COUNTERS);
533 fte->action.action &= ~MLX5_FLOW_CONTEXT_ACTION_COUNT;
534 goto out;
535 }
536
537 if (rule->dest_attr.type == MLX5_FLOW_DESTINATION_TYPE_PORT &&
538 --fte->dests_size) {
539 fte->modify_mask |= BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_ACTION);
540 fte->action.action &= ~MLX5_FLOW_CONTEXT_ACTION_ALLOW;
541 goto out;
542 }
543
544 if ((fte->action.action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST) &&
545 --fte->dests_size) {
546 fte->modify_mask |=
547 BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_DESTINATION_LIST);
548 }
549 out:
550 kfree(rule);
551 }
552
del_hw_fte(struct fs_node * node)553 static void del_hw_fte(struct fs_node *node)
554 {
555 struct mlx5_flow_root_namespace *root;
556 struct mlx5_flow_table *ft;
557 struct mlx5_flow_group *fg;
558 struct mlx5_core_dev *dev;
559 struct fs_fte *fte;
560 int err;
561
562 fs_get_obj(fte, node);
563 fs_get_obj(fg, fte->node.parent);
564 fs_get_obj(ft, fg->node.parent);
565
566 trace_mlx5_fs_del_fte(fte);
567 dev = get_dev(&ft->node);
568 root = find_root(&ft->node);
569 if (node->active) {
570 err = root->cmds->delete_fte(root, ft, fte);
571 if (err)
572 mlx5_core_warn(dev,
573 "flow steering can't delete fte in index %d of flow group id %d\n",
574 fte->index, fg->id);
575 node->active = 0;
576 }
577 }
578
del_sw_fte(struct fs_node * node)579 static void del_sw_fte(struct fs_node *node)
580 {
581 struct mlx5_flow_steering *steering = get_steering(node);
582 struct mlx5_flow_group *fg;
583 struct fs_fte *fte;
584 int err;
585
586 fs_get_obj(fte, node);
587 fs_get_obj(fg, fte->node.parent);
588
589 err = rhashtable_remove_fast(&fg->ftes_hash,
590 &fte->hash,
591 rhash_fte);
592 WARN_ON(err);
593 ida_simple_remove(&fg->fte_allocator, fte->index - fg->start_index);
594 kmem_cache_free(steering->ftes_cache, fte);
595 }
596
del_hw_flow_group(struct fs_node * node)597 static void del_hw_flow_group(struct fs_node *node)
598 {
599 struct mlx5_flow_root_namespace *root;
600 struct mlx5_flow_group *fg;
601 struct mlx5_flow_table *ft;
602 struct mlx5_core_dev *dev;
603
604 fs_get_obj(fg, node);
605 fs_get_obj(ft, fg->node.parent);
606 dev = get_dev(&ft->node);
607 trace_mlx5_fs_del_fg(fg);
608
609 root = find_root(&ft->node);
610 if (fg->node.active && root->cmds->destroy_flow_group(root, ft, fg))
611 mlx5_core_warn(dev, "flow steering can't destroy fg %d of ft %d\n",
612 fg->id, ft->id);
613 }
614
del_sw_flow_group(struct fs_node * node)615 static void del_sw_flow_group(struct fs_node *node)
616 {
617 struct mlx5_flow_steering *steering = get_steering(node);
618 struct mlx5_flow_group *fg;
619 struct mlx5_flow_table *ft;
620 int err;
621
622 fs_get_obj(fg, node);
623 fs_get_obj(ft, fg->node.parent);
624
625 rhashtable_destroy(&fg->ftes_hash);
626 ida_destroy(&fg->fte_allocator);
627 if (ft->autogroup.active &&
628 fg->max_ftes == ft->autogroup.group_size &&
629 fg->start_index < ft->autogroup.max_fte)
630 ft->autogroup.num_groups--;
631 err = rhltable_remove(&ft->fgs_hash,
632 &fg->hash,
633 rhash_fg);
634 WARN_ON(err);
635 kmem_cache_free(steering->fgs_cache, fg);
636 }
637
insert_fte(struct mlx5_flow_group * fg,struct fs_fte * fte)638 static int insert_fte(struct mlx5_flow_group *fg, struct fs_fte *fte)
639 {
640 int index;
641 int ret;
642
643 index = ida_simple_get(&fg->fte_allocator, 0, fg->max_ftes, GFP_KERNEL);
644 if (index < 0)
645 return index;
646
647 fte->index = index + fg->start_index;
648 ret = rhashtable_insert_fast(&fg->ftes_hash,
649 &fte->hash,
650 rhash_fte);
651 if (ret)
652 goto err_ida_remove;
653
654 tree_add_node(&fte->node, &fg->node);
655 list_add_tail(&fte->node.list, &fg->node.children);
656 return 0;
657
658 err_ida_remove:
659 ida_simple_remove(&fg->fte_allocator, index);
660 return ret;
661 }
662
alloc_fte(struct mlx5_flow_table * ft,const struct mlx5_flow_spec * spec,struct mlx5_flow_act * flow_act)663 static struct fs_fte *alloc_fte(struct mlx5_flow_table *ft,
664 const struct mlx5_flow_spec *spec,
665 struct mlx5_flow_act *flow_act)
666 {
667 struct mlx5_flow_steering *steering = get_steering(&ft->node);
668 struct fs_fte *fte;
669
670 fte = kmem_cache_zalloc(steering->ftes_cache, GFP_KERNEL);
671 if (!fte)
672 return ERR_PTR(-ENOMEM);
673
674 memcpy(fte->val, &spec->match_value, sizeof(fte->val));
675 fte->node.type = FS_TYPE_FLOW_ENTRY;
676 fte->action = *flow_act;
677 fte->flow_context = spec->flow_context;
678
679 tree_init_node(&fte->node, del_hw_fte, del_sw_fte);
680
681 return fte;
682 }
683
dealloc_flow_group(struct mlx5_flow_steering * steering,struct mlx5_flow_group * fg)684 static void dealloc_flow_group(struct mlx5_flow_steering *steering,
685 struct mlx5_flow_group *fg)
686 {
687 rhashtable_destroy(&fg->ftes_hash);
688 kmem_cache_free(steering->fgs_cache, fg);
689 }
690
alloc_flow_group(struct mlx5_flow_steering * steering,u8 match_criteria_enable,const void * match_criteria,int start_index,int end_index)691 static struct mlx5_flow_group *alloc_flow_group(struct mlx5_flow_steering *steering,
692 u8 match_criteria_enable,
693 const void *match_criteria,
694 int start_index,
695 int end_index)
696 {
697 struct mlx5_flow_group *fg;
698 int ret;
699
700 fg = kmem_cache_zalloc(steering->fgs_cache, GFP_KERNEL);
701 if (!fg)
702 return ERR_PTR(-ENOMEM);
703
704 ret = rhashtable_init(&fg->ftes_hash, &rhash_fte);
705 if (ret) {
706 kmem_cache_free(steering->fgs_cache, fg);
707 return ERR_PTR(ret);
708 }
709
710 ida_init(&fg->fte_allocator);
711 fg->mask.match_criteria_enable = match_criteria_enable;
712 memcpy(&fg->mask.match_criteria, match_criteria,
713 sizeof(fg->mask.match_criteria));
714 fg->node.type = FS_TYPE_FLOW_GROUP;
715 fg->start_index = start_index;
716 fg->max_ftes = end_index - start_index + 1;
717
718 return fg;
719 }
720
alloc_insert_flow_group(struct mlx5_flow_table * ft,u8 match_criteria_enable,const void * match_criteria,int start_index,int end_index,struct list_head * prev)721 static struct mlx5_flow_group *alloc_insert_flow_group(struct mlx5_flow_table *ft,
722 u8 match_criteria_enable,
723 const void *match_criteria,
724 int start_index,
725 int end_index,
726 struct list_head *prev)
727 {
728 struct mlx5_flow_steering *steering = get_steering(&ft->node);
729 struct mlx5_flow_group *fg;
730 int ret;
731
732 fg = alloc_flow_group(steering, match_criteria_enable, match_criteria,
733 start_index, end_index);
734 if (IS_ERR(fg))
735 return fg;
736
737 /* initialize refcnt, add to parent list */
738 ret = rhltable_insert(&ft->fgs_hash,
739 &fg->hash,
740 rhash_fg);
741 if (ret) {
742 dealloc_flow_group(steering, fg);
743 return ERR_PTR(ret);
744 }
745
746 tree_init_node(&fg->node, del_hw_flow_group, del_sw_flow_group);
747 tree_add_node(&fg->node, &ft->node);
748 /* Add node to group list */
749 list_add(&fg->node.list, prev);
750 atomic_inc(&ft->node.version);
751
752 return fg;
753 }
754
alloc_flow_table(int level,u16 vport,int max_fte,enum fs_flow_table_type table_type,enum fs_flow_table_op_mod op_mod,u32 flags)755 static struct mlx5_flow_table *alloc_flow_table(int level, u16 vport, int max_fte,
756 enum fs_flow_table_type table_type,
757 enum fs_flow_table_op_mod op_mod,
758 u32 flags)
759 {
760 struct mlx5_flow_table *ft;
761 int ret;
762
763 ft = kzalloc(sizeof(*ft), GFP_KERNEL);
764 if (!ft)
765 return ERR_PTR(-ENOMEM);
766
767 ret = rhltable_init(&ft->fgs_hash, &rhash_fg);
768 if (ret) {
769 kfree(ft);
770 return ERR_PTR(ret);
771 }
772
773 ft->level = level;
774 ft->node.type = FS_TYPE_FLOW_TABLE;
775 ft->op_mod = op_mod;
776 ft->type = table_type;
777 ft->vport = vport;
778 ft->max_fte = max_fte;
779 ft->flags = flags;
780 INIT_LIST_HEAD(&ft->fwd_rules);
781 mutex_init(&ft->lock);
782
783 return ft;
784 }
785
786 /* If reverse is false, then we search for the first flow table in the
787 * root sub-tree from start(closest from right), else we search for the
788 * last flow table in the root sub-tree till start(closest from left).
789 */
find_closest_ft_recursive(struct fs_node * root,struct list_head * start,bool reverse)790 static struct mlx5_flow_table *find_closest_ft_recursive(struct fs_node *root,
791 struct list_head *start,
792 bool reverse)
793 {
794 #define list_advance_entry(pos, reverse) \
795 ((reverse) ? list_prev_entry(pos, list) : list_next_entry(pos, list))
796
797 #define list_for_each_advance_continue(pos, head, reverse) \
798 for (pos = list_advance_entry(pos, reverse); \
799 &pos->list != (head); \
800 pos = list_advance_entry(pos, reverse))
801
802 struct fs_node *iter = list_entry(start, struct fs_node, list);
803 struct mlx5_flow_table *ft = NULL;
804
805 if (!root || root->type == FS_TYPE_PRIO_CHAINS)
806 return NULL;
807
808 list_for_each_advance_continue(iter, &root->children, reverse) {
809 if (iter->type == FS_TYPE_FLOW_TABLE) {
810 fs_get_obj(ft, iter);
811 return ft;
812 }
813 ft = find_closest_ft_recursive(iter, &iter->children, reverse);
814 if (ft)
815 return ft;
816 }
817
818 return ft;
819 }
820
821 /* If reverse is false then return the first flow table in next priority of
822 * prio in the tree, else return the last flow table in the previous priority
823 * of prio in the tree.
824 */
find_closest_ft(struct fs_prio * prio,bool reverse)825 static struct mlx5_flow_table *find_closest_ft(struct fs_prio *prio, bool reverse)
826 {
827 struct mlx5_flow_table *ft = NULL;
828 struct fs_node *curr_node;
829 struct fs_node *parent;
830
831 parent = prio->node.parent;
832 curr_node = &prio->node;
833 while (!ft && parent) {
834 ft = find_closest_ft_recursive(parent, &curr_node->list, reverse);
835 curr_node = parent;
836 parent = curr_node->parent;
837 }
838 return ft;
839 }
840
841 /* Assuming all the tree is locked by mutex chain lock */
find_next_chained_ft(struct fs_prio * prio)842 static struct mlx5_flow_table *find_next_chained_ft(struct fs_prio *prio)
843 {
844 return find_closest_ft(prio, false);
845 }
846
847 /* Assuming all the tree is locked by mutex chain lock */
find_prev_chained_ft(struct fs_prio * prio)848 static struct mlx5_flow_table *find_prev_chained_ft(struct fs_prio *prio)
849 {
850 return find_closest_ft(prio, true);
851 }
852
find_next_fwd_ft(struct mlx5_flow_table * ft,struct mlx5_flow_act * flow_act)853 static struct mlx5_flow_table *find_next_fwd_ft(struct mlx5_flow_table *ft,
854 struct mlx5_flow_act *flow_act)
855 {
856 struct fs_prio *prio;
857 bool next_ns;
858
859 next_ns = flow_act->action & MLX5_FLOW_CONTEXT_ACTION_FWD_NEXT_NS;
860 fs_get_obj(prio, next_ns ? ft->ns->node.parent : ft->node.parent);
861
862 return find_next_chained_ft(prio);
863 }
864
connect_fts_in_prio(struct mlx5_core_dev * dev,struct fs_prio * prio,struct mlx5_flow_table * ft)865 static int connect_fts_in_prio(struct mlx5_core_dev *dev,
866 struct fs_prio *prio,
867 struct mlx5_flow_table *ft)
868 {
869 struct mlx5_flow_root_namespace *root = find_root(&prio->node);
870 struct mlx5_flow_table *iter;
871 int err;
872
873 fs_for_each_ft(iter, prio) {
874 err = root->cmds->modify_flow_table(root, iter, ft);
875 if (err) {
876 mlx5_core_err(dev,
877 "Failed to modify flow table id %d, type %d, err %d\n",
878 iter->id, iter->type, err);
879 /* The driver is out of sync with the FW */
880 return err;
881 }
882 }
883 return 0;
884 }
885
886 /* Connect flow tables from previous priority of prio to ft */
connect_prev_fts(struct mlx5_core_dev * dev,struct mlx5_flow_table * ft,struct fs_prio * prio)887 static int connect_prev_fts(struct mlx5_core_dev *dev,
888 struct mlx5_flow_table *ft,
889 struct fs_prio *prio)
890 {
891 struct mlx5_flow_table *prev_ft;
892
893 prev_ft = find_prev_chained_ft(prio);
894 if (prev_ft) {
895 struct fs_prio *prev_prio;
896
897 fs_get_obj(prev_prio, prev_ft->node.parent);
898 return connect_fts_in_prio(dev, prev_prio, ft);
899 }
900 return 0;
901 }
902
update_root_ft_create(struct mlx5_flow_table * ft,struct fs_prio * prio)903 static int update_root_ft_create(struct mlx5_flow_table *ft, struct fs_prio
904 *prio)
905 {
906 struct mlx5_flow_root_namespace *root = find_root(&prio->node);
907 struct mlx5_ft_underlay_qp *uqp;
908 int min_level = INT_MAX;
909 int err = 0;
910 u32 qpn;
911
912 if (root->root_ft)
913 min_level = root->root_ft->level;
914
915 if (ft->level >= min_level)
916 return 0;
917
918 if (list_empty(&root->underlay_qpns)) {
919 /* Don't set any QPN (zero) in case QPN list is empty */
920 qpn = 0;
921 err = root->cmds->update_root_ft(root, ft, qpn, false);
922 } else {
923 list_for_each_entry(uqp, &root->underlay_qpns, list) {
924 qpn = uqp->qpn;
925 err = root->cmds->update_root_ft(root, ft,
926 qpn, false);
927 if (err)
928 break;
929 }
930 }
931
932 if (err)
933 mlx5_core_warn(root->dev,
934 "Update root flow table of id(%u) qpn(%d) failed\n",
935 ft->id, qpn);
936 else
937 root->root_ft = ft;
938
939 return err;
940 }
941
_mlx5_modify_rule_destination(struct mlx5_flow_rule * rule,struct mlx5_flow_destination * dest)942 static int _mlx5_modify_rule_destination(struct mlx5_flow_rule *rule,
943 struct mlx5_flow_destination *dest)
944 {
945 struct mlx5_flow_root_namespace *root;
946 struct mlx5_flow_table *ft;
947 struct mlx5_flow_group *fg;
948 struct fs_fte *fte;
949 int modify_mask = BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_DESTINATION_LIST);
950 int err = 0;
951
952 fs_get_obj(fte, rule->node.parent);
953 if (!(fte->action.action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST))
954 return -EINVAL;
955 down_write_ref_node(&fte->node, false);
956 fs_get_obj(fg, fte->node.parent);
957 fs_get_obj(ft, fg->node.parent);
958
959 memcpy(&rule->dest_attr, dest, sizeof(*dest));
960 root = find_root(&ft->node);
961 err = root->cmds->update_fte(root, ft, fg,
962 modify_mask, fte);
963 up_write_ref_node(&fte->node, false);
964
965 return err;
966 }
967
mlx5_modify_rule_destination(struct mlx5_flow_handle * handle,struct mlx5_flow_destination * new_dest,struct mlx5_flow_destination * old_dest)968 int mlx5_modify_rule_destination(struct mlx5_flow_handle *handle,
969 struct mlx5_flow_destination *new_dest,
970 struct mlx5_flow_destination *old_dest)
971 {
972 int i;
973
974 if (!old_dest) {
975 if (handle->num_rules != 1)
976 return -EINVAL;
977 return _mlx5_modify_rule_destination(handle->rule[0],
978 new_dest);
979 }
980
981 for (i = 0; i < handle->num_rules; i++) {
982 if (mlx5_flow_dests_cmp(new_dest, &handle->rule[i]->dest_attr))
983 return _mlx5_modify_rule_destination(handle->rule[i],
984 new_dest);
985 }
986
987 return -EINVAL;
988 }
989
990 /* Modify/set FWD rules that point on old_next_ft to point on new_next_ft */
connect_fwd_rules(struct mlx5_core_dev * dev,struct mlx5_flow_table * new_next_ft,struct mlx5_flow_table * old_next_ft)991 static int connect_fwd_rules(struct mlx5_core_dev *dev,
992 struct mlx5_flow_table *new_next_ft,
993 struct mlx5_flow_table *old_next_ft)
994 {
995 struct mlx5_flow_destination dest = {};
996 struct mlx5_flow_rule *iter;
997 int err = 0;
998
999 /* new_next_ft and old_next_ft could be NULL only
1000 * when we create/destroy the anchor flow table.
1001 */
1002 if (!new_next_ft || !old_next_ft)
1003 return 0;
1004
1005 dest.type = MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE;
1006 dest.ft = new_next_ft;
1007
1008 mutex_lock(&old_next_ft->lock);
1009 list_splice_init(&old_next_ft->fwd_rules, &new_next_ft->fwd_rules);
1010 mutex_unlock(&old_next_ft->lock);
1011 list_for_each_entry(iter, &new_next_ft->fwd_rules, next_ft) {
1012 if ((iter->sw_action & MLX5_FLOW_CONTEXT_ACTION_FWD_NEXT_NS) &&
1013 iter->ft->ns == new_next_ft->ns)
1014 continue;
1015
1016 err = _mlx5_modify_rule_destination(iter, &dest);
1017 if (err)
1018 pr_err("mlx5_core: failed to modify rule to point on flow table %d\n",
1019 new_next_ft->id);
1020 }
1021 return 0;
1022 }
1023
connect_flow_table(struct mlx5_core_dev * dev,struct mlx5_flow_table * ft,struct fs_prio * prio)1024 static int connect_flow_table(struct mlx5_core_dev *dev, struct mlx5_flow_table *ft,
1025 struct fs_prio *prio)
1026 {
1027 struct mlx5_flow_table *next_ft, *first_ft;
1028 int err = 0;
1029
1030 /* Connect_prev_fts and update_root_ft_create are mutually exclusive */
1031
1032 first_ft = list_first_entry_or_null(&prio->node.children,
1033 struct mlx5_flow_table, node.list);
1034 if (!first_ft || first_ft->level > ft->level) {
1035 err = connect_prev_fts(dev, ft, prio);
1036 if (err)
1037 return err;
1038
1039 next_ft = first_ft ? first_ft : find_next_chained_ft(prio);
1040 err = connect_fwd_rules(dev, ft, next_ft);
1041 if (err)
1042 return err;
1043 }
1044
1045 if (MLX5_CAP_FLOWTABLE(dev,
1046 flow_table_properties_nic_receive.modify_root))
1047 err = update_root_ft_create(ft, prio);
1048 return err;
1049 }
1050
list_add_flow_table(struct mlx5_flow_table * ft,struct fs_prio * prio)1051 static void list_add_flow_table(struct mlx5_flow_table *ft,
1052 struct fs_prio *prio)
1053 {
1054 struct list_head *prev = &prio->node.children;
1055 struct mlx5_flow_table *iter;
1056
1057 fs_for_each_ft(iter, prio) {
1058 if (iter->level > ft->level)
1059 break;
1060 prev = &iter->node.list;
1061 }
1062 list_add(&ft->node.list, prev);
1063 }
1064
__mlx5_create_flow_table(struct mlx5_flow_namespace * ns,struct mlx5_flow_table_attr * ft_attr,enum fs_flow_table_op_mod op_mod,u16 vport)1065 static struct mlx5_flow_table *__mlx5_create_flow_table(struct mlx5_flow_namespace *ns,
1066 struct mlx5_flow_table_attr *ft_attr,
1067 enum fs_flow_table_op_mod op_mod,
1068 u16 vport)
1069 {
1070 struct mlx5_flow_root_namespace *root = find_root(&ns->node);
1071 bool unmanaged = ft_attr->flags & MLX5_FLOW_TABLE_UNMANAGED;
1072 struct mlx5_flow_table *next_ft;
1073 struct fs_prio *fs_prio = NULL;
1074 struct mlx5_flow_table *ft;
1075 int log_table_sz;
1076 int err;
1077
1078 if (!root) {
1079 pr_err("mlx5: flow steering failed to find root of namespace\n");
1080 return ERR_PTR(-ENODEV);
1081 }
1082
1083 mutex_lock(&root->chain_lock);
1084 fs_prio = find_prio(ns, ft_attr->prio);
1085 if (!fs_prio) {
1086 err = -EINVAL;
1087 goto unlock_root;
1088 }
1089 if (!unmanaged) {
1090 /* The level is related to the
1091 * priority level range.
1092 */
1093 if (ft_attr->level >= fs_prio->num_levels) {
1094 err = -ENOSPC;
1095 goto unlock_root;
1096 }
1097
1098 ft_attr->level += fs_prio->start_level;
1099 }
1100
1101 /* The level is related to the
1102 * priority level range.
1103 */
1104 ft = alloc_flow_table(ft_attr->level,
1105 vport,
1106 ft_attr->max_fte ? roundup_pow_of_two(ft_attr->max_fte) : 0,
1107 root->table_type,
1108 op_mod, ft_attr->flags);
1109 if (IS_ERR(ft)) {
1110 err = PTR_ERR(ft);
1111 goto unlock_root;
1112 }
1113
1114 tree_init_node(&ft->node, del_hw_flow_table, del_sw_flow_table);
1115 log_table_sz = ft->max_fte ? ilog2(ft->max_fte) : 0;
1116 next_ft = unmanaged ? ft_attr->next_ft :
1117 find_next_chained_ft(fs_prio);
1118 ft->def_miss_action = ns->def_miss_action;
1119 ft->ns = ns;
1120 err = root->cmds->create_flow_table(root, ft, log_table_sz, next_ft);
1121 if (err)
1122 goto free_ft;
1123
1124 if (!unmanaged) {
1125 err = connect_flow_table(root->dev, ft, fs_prio);
1126 if (err)
1127 goto destroy_ft;
1128 }
1129
1130 ft->node.active = true;
1131 down_write_ref_node(&fs_prio->node, false);
1132 if (!unmanaged) {
1133 tree_add_node(&ft->node, &fs_prio->node);
1134 list_add_flow_table(ft, fs_prio);
1135 } else {
1136 ft->node.root = fs_prio->node.root;
1137 }
1138 fs_prio->num_ft++;
1139 up_write_ref_node(&fs_prio->node, false);
1140 mutex_unlock(&root->chain_lock);
1141 trace_mlx5_fs_add_ft(ft);
1142 return ft;
1143 destroy_ft:
1144 root->cmds->destroy_flow_table(root, ft);
1145 free_ft:
1146 rhltable_destroy(&ft->fgs_hash);
1147 kfree(ft);
1148 unlock_root:
1149 mutex_unlock(&root->chain_lock);
1150 return ERR_PTR(err);
1151 }
1152
mlx5_create_flow_table(struct mlx5_flow_namespace * ns,struct mlx5_flow_table_attr * ft_attr)1153 struct mlx5_flow_table *mlx5_create_flow_table(struct mlx5_flow_namespace *ns,
1154 struct mlx5_flow_table_attr *ft_attr)
1155 {
1156 return __mlx5_create_flow_table(ns, ft_attr, FS_FT_OP_MOD_NORMAL, 0);
1157 }
1158
mlx5_create_vport_flow_table(struct mlx5_flow_namespace * ns,int prio,int max_fte,u32 level,u16 vport)1159 struct mlx5_flow_table *mlx5_create_vport_flow_table(struct mlx5_flow_namespace *ns,
1160 int prio, int max_fte,
1161 u32 level, u16 vport)
1162 {
1163 struct mlx5_flow_table_attr ft_attr = {};
1164
1165 ft_attr.max_fte = max_fte;
1166 ft_attr.level = level;
1167 ft_attr.prio = prio;
1168
1169 return __mlx5_create_flow_table(ns, &ft_attr, FS_FT_OP_MOD_NORMAL, vport);
1170 }
1171
1172 struct mlx5_flow_table*
mlx5_create_lag_demux_flow_table(struct mlx5_flow_namespace * ns,int prio,u32 level)1173 mlx5_create_lag_demux_flow_table(struct mlx5_flow_namespace *ns,
1174 int prio, u32 level)
1175 {
1176 struct mlx5_flow_table_attr ft_attr = {};
1177
1178 ft_attr.level = level;
1179 ft_attr.prio = prio;
1180 return __mlx5_create_flow_table(ns, &ft_attr, FS_FT_OP_MOD_LAG_DEMUX, 0);
1181 }
1182 EXPORT_SYMBOL(mlx5_create_lag_demux_flow_table);
1183
1184 struct mlx5_flow_table*
mlx5_create_auto_grouped_flow_table(struct mlx5_flow_namespace * ns,struct mlx5_flow_table_attr * ft_attr)1185 mlx5_create_auto_grouped_flow_table(struct mlx5_flow_namespace *ns,
1186 struct mlx5_flow_table_attr *ft_attr)
1187 {
1188 int num_reserved_entries = ft_attr->autogroup.num_reserved_entries;
1189 int autogroups_max_fte = ft_attr->max_fte - num_reserved_entries;
1190 int max_num_groups = ft_attr->autogroup.max_num_groups;
1191 struct mlx5_flow_table *ft;
1192
1193 if (max_num_groups > autogroups_max_fte)
1194 return ERR_PTR(-EINVAL);
1195 if (num_reserved_entries > ft_attr->max_fte)
1196 return ERR_PTR(-EINVAL);
1197
1198 ft = mlx5_create_flow_table(ns, ft_attr);
1199 if (IS_ERR(ft))
1200 return ft;
1201
1202 ft->autogroup.active = true;
1203 ft->autogroup.required_groups = max_num_groups;
1204 ft->autogroup.max_fte = autogroups_max_fte;
1205 /* We save place for flow groups in addition to max types */
1206 ft->autogroup.group_size = autogroups_max_fte / (max_num_groups + 1);
1207
1208 return ft;
1209 }
1210 EXPORT_SYMBOL(mlx5_create_auto_grouped_flow_table);
1211
mlx5_create_flow_group(struct mlx5_flow_table * ft,u32 * fg_in)1212 struct mlx5_flow_group *mlx5_create_flow_group(struct mlx5_flow_table *ft,
1213 u32 *fg_in)
1214 {
1215 struct mlx5_flow_root_namespace *root = find_root(&ft->node);
1216 void *match_criteria = MLX5_ADDR_OF(create_flow_group_in,
1217 fg_in, match_criteria);
1218 u8 match_criteria_enable = MLX5_GET(create_flow_group_in,
1219 fg_in,
1220 match_criteria_enable);
1221 int start_index = MLX5_GET(create_flow_group_in, fg_in,
1222 start_flow_index);
1223 int end_index = MLX5_GET(create_flow_group_in, fg_in,
1224 end_flow_index);
1225 struct mlx5_flow_group *fg;
1226 int err;
1227
1228 if (ft->autogroup.active && start_index < ft->autogroup.max_fte)
1229 return ERR_PTR(-EPERM);
1230
1231 down_write_ref_node(&ft->node, false);
1232 fg = alloc_insert_flow_group(ft, match_criteria_enable, match_criteria,
1233 start_index, end_index,
1234 ft->node.children.prev);
1235 up_write_ref_node(&ft->node, false);
1236 if (IS_ERR(fg))
1237 return fg;
1238
1239 err = root->cmds->create_flow_group(root, ft, fg_in, fg);
1240 if (err) {
1241 tree_put_node(&fg->node, false);
1242 return ERR_PTR(err);
1243 }
1244 trace_mlx5_fs_add_fg(fg);
1245 fg->node.active = true;
1246
1247 return fg;
1248 }
1249
alloc_rule(struct mlx5_flow_destination * dest)1250 static struct mlx5_flow_rule *alloc_rule(struct mlx5_flow_destination *dest)
1251 {
1252 struct mlx5_flow_rule *rule;
1253
1254 rule = kzalloc(sizeof(*rule), GFP_KERNEL);
1255 if (!rule)
1256 return NULL;
1257
1258 INIT_LIST_HEAD(&rule->next_ft);
1259 rule->node.type = FS_TYPE_FLOW_DEST;
1260 if (dest)
1261 memcpy(&rule->dest_attr, dest, sizeof(*dest));
1262
1263 return rule;
1264 }
1265
alloc_handle(int num_rules)1266 static struct mlx5_flow_handle *alloc_handle(int num_rules)
1267 {
1268 struct mlx5_flow_handle *handle;
1269
1270 handle = kzalloc(struct_size(handle, rule, num_rules), GFP_KERNEL);
1271 if (!handle)
1272 return NULL;
1273
1274 handle->num_rules = num_rules;
1275
1276 return handle;
1277 }
1278
destroy_flow_handle(struct fs_fte * fte,struct mlx5_flow_handle * handle,struct mlx5_flow_destination * dest,int i)1279 static void destroy_flow_handle(struct fs_fte *fte,
1280 struct mlx5_flow_handle *handle,
1281 struct mlx5_flow_destination *dest,
1282 int i)
1283 {
1284 for (; --i >= 0;) {
1285 if (refcount_dec_and_test(&handle->rule[i]->node.refcount)) {
1286 fte->dests_size--;
1287 list_del(&handle->rule[i]->node.list);
1288 kfree(handle->rule[i]);
1289 }
1290 }
1291 kfree(handle);
1292 }
1293
1294 static struct mlx5_flow_handle *
create_flow_handle(struct fs_fte * fte,struct mlx5_flow_destination * dest,int dest_num,int * modify_mask,bool * new_rule)1295 create_flow_handle(struct fs_fte *fte,
1296 struct mlx5_flow_destination *dest,
1297 int dest_num,
1298 int *modify_mask,
1299 bool *new_rule)
1300 {
1301 struct mlx5_flow_handle *handle;
1302 struct mlx5_flow_rule *rule = NULL;
1303 static int count = BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_FLOW_COUNTERS);
1304 static int dst = BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_DESTINATION_LIST);
1305 int type;
1306 int i = 0;
1307
1308 handle = alloc_handle((dest_num) ? dest_num : 1);
1309 if (!handle)
1310 return ERR_PTR(-ENOMEM);
1311
1312 do {
1313 if (dest) {
1314 rule = find_flow_rule(fte, dest + i);
1315 if (rule) {
1316 refcount_inc(&rule->node.refcount);
1317 goto rule_found;
1318 }
1319 }
1320
1321 *new_rule = true;
1322 rule = alloc_rule(dest + i);
1323 if (!rule)
1324 goto free_rules;
1325
1326 /* Add dest to dests list- we need flow tables to be in the
1327 * end of the list for forward to next prio rules.
1328 */
1329 tree_init_node(&rule->node, NULL, del_sw_hw_rule);
1330 if (dest &&
1331 dest[i].type != MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE)
1332 list_add(&rule->node.list, &fte->node.children);
1333 else
1334 list_add_tail(&rule->node.list, &fte->node.children);
1335 if (dest) {
1336 fte->dests_size++;
1337
1338 type = dest[i].type ==
1339 MLX5_FLOW_DESTINATION_TYPE_COUNTER;
1340 *modify_mask |= type ? count : dst;
1341 }
1342 rule_found:
1343 handle->rule[i] = rule;
1344 } while (++i < dest_num);
1345
1346 return handle;
1347
1348 free_rules:
1349 destroy_flow_handle(fte, handle, dest, i);
1350 return ERR_PTR(-ENOMEM);
1351 }
1352
1353 /* fte should not be deleted while calling this function */
1354 static struct mlx5_flow_handle *
add_rule_fte(struct fs_fte * fte,struct mlx5_flow_group * fg,struct mlx5_flow_destination * dest,int dest_num,bool update_action)1355 add_rule_fte(struct fs_fte *fte,
1356 struct mlx5_flow_group *fg,
1357 struct mlx5_flow_destination *dest,
1358 int dest_num,
1359 bool update_action)
1360 {
1361 struct mlx5_flow_root_namespace *root;
1362 struct mlx5_flow_handle *handle;
1363 struct mlx5_flow_table *ft;
1364 int modify_mask = 0;
1365 int err;
1366 bool new_rule = false;
1367
1368 handle = create_flow_handle(fte, dest, dest_num, &modify_mask,
1369 &new_rule);
1370 if (IS_ERR(handle) || !new_rule)
1371 goto out;
1372
1373 if (update_action)
1374 modify_mask |= BIT(MLX5_SET_FTE_MODIFY_ENABLE_MASK_ACTION);
1375
1376 fs_get_obj(ft, fg->node.parent);
1377 root = find_root(&fg->node);
1378 if (!(fte->status & FS_FTE_STATUS_EXISTING))
1379 err = root->cmds->create_fte(root, ft, fg, fte);
1380 else
1381 err = root->cmds->update_fte(root, ft, fg, modify_mask, fte);
1382 if (err)
1383 goto free_handle;
1384
1385 fte->node.active = true;
1386 fte->status |= FS_FTE_STATUS_EXISTING;
1387 atomic_inc(&fg->node.version);
1388
1389 out:
1390 return handle;
1391
1392 free_handle:
1393 destroy_flow_handle(fte, handle, dest, handle->num_rules);
1394 return ERR_PTR(err);
1395 }
1396
alloc_auto_flow_group(struct mlx5_flow_table * ft,const struct mlx5_flow_spec * spec)1397 static struct mlx5_flow_group *alloc_auto_flow_group(struct mlx5_flow_table *ft,
1398 const struct mlx5_flow_spec *spec)
1399 {
1400 struct list_head *prev = &ft->node.children;
1401 u32 max_fte = ft->autogroup.max_fte;
1402 unsigned int candidate_index = 0;
1403 unsigned int group_size = 0;
1404 struct mlx5_flow_group *fg;
1405
1406 if (!ft->autogroup.active)
1407 return ERR_PTR(-ENOENT);
1408
1409 if (ft->autogroup.num_groups < ft->autogroup.required_groups)
1410 group_size = ft->autogroup.group_size;
1411
1412 /* max_fte == ft->autogroup.max_types */
1413 if (group_size == 0)
1414 group_size = 1;
1415
1416 /* sorted by start_index */
1417 fs_for_each_fg(fg, ft) {
1418 if (candidate_index + group_size > fg->start_index)
1419 candidate_index = fg->start_index + fg->max_ftes;
1420 else
1421 break;
1422 prev = &fg->node.list;
1423 }
1424
1425 if (candidate_index + group_size > max_fte)
1426 return ERR_PTR(-ENOSPC);
1427
1428 fg = alloc_insert_flow_group(ft,
1429 spec->match_criteria_enable,
1430 spec->match_criteria,
1431 candidate_index,
1432 candidate_index + group_size - 1,
1433 prev);
1434 if (IS_ERR(fg))
1435 goto out;
1436
1437 if (group_size == ft->autogroup.group_size)
1438 ft->autogroup.num_groups++;
1439
1440 out:
1441 return fg;
1442 }
1443
create_auto_flow_group(struct mlx5_flow_table * ft,struct mlx5_flow_group * fg)1444 static int create_auto_flow_group(struct mlx5_flow_table *ft,
1445 struct mlx5_flow_group *fg)
1446 {
1447 struct mlx5_flow_root_namespace *root = find_root(&ft->node);
1448 int inlen = MLX5_ST_SZ_BYTES(create_flow_group_in);
1449 void *match_criteria_addr;
1450 u8 src_esw_owner_mask_on;
1451 void *misc;
1452 int err;
1453 u32 *in;
1454
1455 in = kvzalloc(inlen, GFP_KERNEL);
1456 if (!in)
1457 return -ENOMEM;
1458
1459 MLX5_SET(create_flow_group_in, in, match_criteria_enable,
1460 fg->mask.match_criteria_enable);
1461 MLX5_SET(create_flow_group_in, in, start_flow_index, fg->start_index);
1462 MLX5_SET(create_flow_group_in, in, end_flow_index, fg->start_index +
1463 fg->max_ftes - 1);
1464
1465 misc = MLX5_ADDR_OF(fte_match_param, fg->mask.match_criteria,
1466 misc_parameters);
1467 src_esw_owner_mask_on = !!MLX5_GET(fte_match_set_misc, misc,
1468 source_eswitch_owner_vhca_id);
1469 MLX5_SET(create_flow_group_in, in,
1470 source_eswitch_owner_vhca_id_valid, src_esw_owner_mask_on);
1471
1472 match_criteria_addr = MLX5_ADDR_OF(create_flow_group_in,
1473 in, match_criteria);
1474 memcpy(match_criteria_addr, fg->mask.match_criteria,
1475 sizeof(fg->mask.match_criteria));
1476
1477 err = root->cmds->create_flow_group(root, ft, in, fg);
1478 if (!err) {
1479 fg->node.active = true;
1480 trace_mlx5_fs_add_fg(fg);
1481 }
1482
1483 kvfree(in);
1484 return err;
1485 }
1486
mlx5_flow_dests_cmp(struct mlx5_flow_destination * d1,struct mlx5_flow_destination * d2)1487 static bool mlx5_flow_dests_cmp(struct mlx5_flow_destination *d1,
1488 struct mlx5_flow_destination *d2)
1489 {
1490 if (d1->type == d2->type) {
1491 if ((d1->type == MLX5_FLOW_DESTINATION_TYPE_VPORT &&
1492 d1->vport.num == d2->vport.num &&
1493 d1->vport.flags == d2->vport.flags &&
1494 ((d1->vport.flags & MLX5_FLOW_DEST_VPORT_VHCA_ID) ?
1495 (d1->vport.vhca_id == d2->vport.vhca_id) : true) &&
1496 ((d1->vport.flags & MLX5_FLOW_DEST_VPORT_REFORMAT_ID) ?
1497 (d1->vport.pkt_reformat->id ==
1498 d2->vport.pkt_reformat->id) : true)) ||
1499 (d1->type == MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE &&
1500 d1->ft == d2->ft) ||
1501 (d1->type == MLX5_FLOW_DESTINATION_TYPE_TIR &&
1502 d1->tir_num == d2->tir_num) ||
1503 (d1->type == MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE_NUM &&
1504 d1->ft_num == d2->ft_num))
1505 return true;
1506 }
1507
1508 return false;
1509 }
1510
find_flow_rule(struct fs_fte * fte,struct mlx5_flow_destination * dest)1511 static struct mlx5_flow_rule *find_flow_rule(struct fs_fte *fte,
1512 struct mlx5_flow_destination *dest)
1513 {
1514 struct mlx5_flow_rule *rule;
1515
1516 list_for_each_entry(rule, &fte->node.children, node.list) {
1517 if (mlx5_flow_dests_cmp(&rule->dest_attr, dest))
1518 return rule;
1519 }
1520 return NULL;
1521 }
1522
check_conflicting_actions_vlan(const struct mlx5_fs_vlan * vlan0,const struct mlx5_fs_vlan * vlan1)1523 static bool check_conflicting_actions_vlan(const struct mlx5_fs_vlan *vlan0,
1524 const struct mlx5_fs_vlan *vlan1)
1525 {
1526 return vlan0->ethtype != vlan1->ethtype ||
1527 vlan0->vid != vlan1->vid ||
1528 vlan0->prio != vlan1->prio;
1529 }
1530
check_conflicting_actions(const struct mlx5_flow_act * act1,const struct mlx5_flow_act * act2)1531 static bool check_conflicting_actions(const struct mlx5_flow_act *act1,
1532 const struct mlx5_flow_act *act2)
1533 {
1534 u32 action1 = act1->action;
1535 u32 action2 = act2->action;
1536 u32 xored_actions;
1537
1538 xored_actions = action1 ^ action2;
1539
1540 /* if one rule only wants to count, it's ok */
1541 if (action1 == MLX5_FLOW_CONTEXT_ACTION_COUNT ||
1542 action2 == MLX5_FLOW_CONTEXT_ACTION_COUNT)
1543 return false;
1544
1545 if (xored_actions & (MLX5_FLOW_CONTEXT_ACTION_DROP |
1546 MLX5_FLOW_CONTEXT_ACTION_PACKET_REFORMAT |
1547 MLX5_FLOW_CONTEXT_ACTION_DECAP |
1548 MLX5_FLOW_CONTEXT_ACTION_MOD_HDR |
1549 MLX5_FLOW_CONTEXT_ACTION_VLAN_POP |
1550 MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH |
1551 MLX5_FLOW_CONTEXT_ACTION_VLAN_POP_2 |
1552 MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH_2))
1553 return true;
1554
1555 if (action1 & MLX5_FLOW_CONTEXT_ACTION_PACKET_REFORMAT &&
1556 act1->pkt_reformat != act2->pkt_reformat)
1557 return true;
1558
1559 if (action1 & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR &&
1560 act1->modify_hdr != act2->modify_hdr)
1561 return true;
1562
1563 if (action1 & MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH &&
1564 check_conflicting_actions_vlan(&act1->vlan[0], &act2->vlan[0]))
1565 return true;
1566
1567 if (action1 & MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH_2 &&
1568 check_conflicting_actions_vlan(&act1->vlan[1], &act2->vlan[1]))
1569 return true;
1570
1571 return false;
1572 }
1573
check_conflicting_ftes(struct fs_fte * fte,const struct mlx5_flow_context * flow_context,const struct mlx5_flow_act * flow_act)1574 static int check_conflicting_ftes(struct fs_fte *fte,
1575 const struct mlx5_flow_context *flow_context,
1576 const struct mlx5_flow_act *flow_act)
1577 {
1578 if (check_conflicting_actions(flow_act, &fte->action)) {
1579 mlx5_core_warn(get_dev(&fte->node),
1580 "Found two FTEs with conflicting actions\n");
1581 return -EEXIST;
1582 }
1583
1584 if ((flow_context->flags & FLOW_CONTEXT_HAS_TAG) &&
1585 fte->flow_context.flow_tag != flow_context->flow_tag) {
1586 mlx5_core_warn(get_dev(&fte->node),
1587 "FTE flow tag %u already exists with different flow tag %u\n",
1588 fte->flow_context.flow_tag,
1589 flow_context->flow_tag);
1590 return -EEXIST;
1591 }
1592
1593 return 0;
1594 }
1595
add_rule_fg(struct mlx5_flow_group * fg,const struct mlx5_flow_spec * spec,struct mlx5_flow_act * flow_act,struct mlx5_flow_destination * dest,int dest_num,struct fs_fte * fte)1596 static struct mlx5_flow_handle *add_rule_fg(struct mlx5_flow_group *fg,
1597 const struct mlx5_flow_spec *spec,
1598 struct mlx5_flow_act *flow_act,
1599 struct mlx5_flow_destination *dest,
1600 int dest_num,
1601 struct fs_fte *fte)
1602 {
1603 struct mlx5_flow_handle *handle;
1604 int old_action;
1605 int i;
1606 int ret;
1607
1608 ret = check_conflicting_ftes(fte, &spec->flow_context, flow_act);
1609 if (ret)
1610 return ERR_PTR(ret);
1611
1612 old_action = fte->action.action;
1613 fte->action.action |= flow_act->action;
1614 handle = add_rule_fte(fte, fg, dest, dest_num,
1615 old_action != flow_act->action);
1616 if (IS_ERR(handle)) {
1617 fte->action.action = old_action;
1618 return handle;
1619 }
1620 trace_mlx5_fs_set_fte(fte, false);
1621
1622 for (i = 0; i < handle->num_rules; i++) {
1623 if (refcount_read(&handle->rule[i]->node.refcount) == 1) {
1624 tree_add_node(&handle->rule[i]->node, &fte->node);
1625 trace_mlx5_fs_add_rule(handle->rule[i]);
1626 }
1627 }
1628 return handle;
1629 }
1630
counter_is_valid(u32 action)1631 static bool counter_is_valid(u32 action)
1632 {
1633 return (action & (MLX5_FLOW_CONTEXT_ACTION_DROP |
1634 MLX5_FLOW_CONTEXT_ACTION_ALLOW |
1635 MLX5_FLOW_CONTEXT_ACTION_FWD_DEST));
1636 }
1637
dest_is_valid(struct mlx5_flow_destination * dest,struct mlx5_flow_act * flow_act,struct mlx5_flow_table * ft)1638 static bool dest_is_valid(struct mlx5_flow_destination *dest,
1639 struct mlx5_flow_act *flow_act,
1640 struct mlx5_flow_table *ft)
1641 {
1642 bool ignore_level = flow_act->flags & FLOW_ACT_IGNORE_FLOW_LEVEL;
1643 u32 action = flow_act->action;
1644
1645 if (dest && (dest->type == MLX5_FLOW_DESTINATION_TYPE_COUNTER))
1646 return counter_is_valid(action);
1647
1648 if (!(action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST))
1649 return true;
1650
1651 if (ignore_level) {
1652 if (ft->type != FS_FT_FDB &&
1653 ft->type != FS_FT_NIC_RX)
1654 return false;
1655
1656 if (dest->type == MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE &&
1657 ft->type != dest->ft->type)
1658 return false;
1659 }
1660
1661 if (!dest || ((dest->type ==
1662 MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE) &&
1663 (dest->ft->level <= ft->level && !ignore_level)))
1664 return false;
1665 return true;
1666 }
1667
1668 struct match_list {
1669 struct list_head list;
1670 struct mlx5_flow_group *g;
1671 };
1672
free_match_list(struct match_list * head,bool ft_locked)1673 static void free_match_list(struct match_list *head, bool ft_locked)
1674 {
1675 struct match_list *iter, *match_tmp;
1676
1677 list_for_each_entry_safe(iter, match_tmp, &head->list,
1678 list) {
1679 tree_put_node(&iter->g->node, ft_locked);
1680 list_del(&iter->list);
1681 kfree(iter);
1682 }
1683 }
1684
build_match_list(struct match_list * match_head,struct mlx5_flow_table * ft,const struct mlx5_flow_spec * spec,bool ft_locked)1685 static int build_match_list(struct match_list *match_head,
1686 struct mlx5_flow_table *ft,
1687 const struct mlx5_flow_spec *spec,
1688 bool ft_locked)
1689 {
1690 struct rhlist_head *tmp, *list;
1691 struct mlx5_flow_group *g;
1692 int err = 0;
1693
1694 rcu_read_lock();
1695 INIT_LIST_HEAD(&match_head->list);
1696 /* Collect all fgs which has a matching match_criteria */
1697 list = rhltable_lookup(&ft->fgs_hash, spec, rhash_fg);
1698 /* RCU is atomic, we can't execute FW commands here */
1699 rhl_for_each_entry_rcu(g, tmp, list, hash) {
1700 struct match_list *curr_match;
1701
1702 if (unlikely(!tree_get_node(&g->node)))
1703 continue;
1704
1705 curr_match = kmalloc(sizeof(*curr_match), GFP_ATOMIC);
1706 if (!curr_match) {
1707 rcu_read_unlock();
1708 free_match_list(match_head, ft_locked);
1709 return -ENOMEM;
1710 }
1711 curr_match->g = g;
1712 list_add_tail(&curr_match->list, &match_head->list);
1713 }
1714 rcu_read_unlock();
1715 return err;
1716 }
1717
matched_fgs_get_version(struct list_head * match_head)1718 static u64 matched_fgs_get_version(struct list_head *match_head)
1719 {
1720 struct match_list *iter;
1721 u64 version = 0;
1722
1723 list_for_each_entry(iter, match_head, list)
1724 version += (u64)atomic_read(&iter->g->node.version);
1725 return version;
1726 }
1727
1728 static struct fs_fte *
lookup_fte_locked(struct mlx5_flow_group * g,const u32 * match_value,bool take_write)1729 lookup_fte_locked(struct mlx5_flow_group *g,
1730 const u32 *match_value,
1731 bool take_write)
1732 {
1733 struct fs_fte *fte_tmp;
1734
1735 if (take_write)
1736 nested_down_write_ref_node(&g->node, FS_LOCK_PARENT);
1737 else
1738 nested_down_read_ref_node(&g->node, FS_LOCK_PARENT);
1739 fte_tmp = rhashtable_lookup_fast(&g->ftes_hash, match_value,
1740 rhash_fte);
1741 if (!fte_tmp || !tree_get_node(&fte_tmp->node)) {
1742 fte_tmp = NULL;
1743 goto out;
1744 }
1745 if (!fte_tmp->node.active) {
1746 tree_put_node(&fte_tmp->node, false);
1747 fte_tmp = NULL;
1748 goto out;
1749 }
1750
1751 nested_down_write_ref_node(&fte_tmp->node, FS_LOCK_CHILD);
1752 out:
1753 if (take_write)
1754 up_write_ref_node(&g->node, false);
1755 else
1756 up_read_ref_node(&g->node);
1757 return fte_tmp;
1758 }
1759
1760 static struct mlx5_flow_handle *
try_add_to_existing_fg(struct mlx5_flow_table * ft,struct list_head * match_head,const struct mlx5_flow_spec * spec,struct mlx5_flow_act * flow_act,struct mlx5_flow_destination * dest,int dest_num,int ft_version)1761 try_add_to_existing_fg(struct mlx5_flow_table *ft,
1762 struct list_head *match_head,
1763 const struct mlx5_flow_spec *spec,
1764 struct mlx5_flow_act *flow_act,
1765 struct mlx5_flow_destination *dest,
1766 int dest_num,
1767 int ft_version)
1768 {
1769 struct mlx5_flow_steering *steering = get_steering(&ft->node);
1770 struct mlx5_flow_group *g;
1771 struct mlx5_flow_handle *rule;
1772 struct match_list *iter;
1773 bool take_write = false;
1774 struct fs_fte *fte;
1775 u64 version = 0;
1776 int err;
1777
1778 fte = alloc_fte(ft, spec, flow_act);
1779 if (IS_ERR(fte))
1780 return ERR_PTR(-ENOMEM);
1781
1782 search_again_locked:
1783 if (flow_act->flags & FLOW_ACT_NO_APPEND)
1784 goto skip_search;
1785 version = matched_fgs_get_version(match_head);
1786 /* Try to find an fte with identical match value and attempt update its
1787 * action.
1788 */
1789 list_for_each_entry(iter, match_head, list) {
1790 struct fs_fte *fte_tmp;
1791
1792 g = iter->g;
1793 fte_tmp = lookup_fte_locked(g, spec->match_value, take_write);
1794 if (!fte_tmp)
1795 continue;
1796 rule = add_rule_fg(g, spec, flow_act, dest, dest_num, fte_tmp);
1797 /* No error check needed here, because insert_fte() is not called */
1798 up_write_ref_node(&fte_tmp->node, false);
1799 tree_put_node(&fte_tmp->node, false);
1800 kmem_cache_free(steering->ftes_cache, fte);
1801 return rule;
1802 }
1803
1804 skip_search:
1805 /* No group with matching fte found, or we skipped the search.
1806 * Try to add a new fte to any matching fg.
1807 */
1808
1809 /* Check the ft version, for case that new flow group
1810 * was added while the fgs weren't locked
1811 */
1812 if (atomic_read(&ft->node.version) != ft_version) {
1813 rule = ERR_PTR(-EAGAIN);
1814 goto out;
1815 }
1816
1817 /* Check the fgs version. If version have changed it could be that an
1818 * FTE with the same match value was added while the fgs weren't
1819 * locked.
1820 */
1821 if (!(flow_act->flags & FLOW_ACT_NO_APPEND) &&
1822 version != matched_fgs_get_version(match_head)) {
1823 take_write = true;
1824 goto search_again_locked;
1825 }
1826
1827 list_for_each_entry(iter, match_head, list) {
1828 g = iter->g;
1829
1830 nested_down_write_ref_node(&g->node, FS_LOCK_PARENT);
1831
1832 if (!g->node.active) {
1833 up_write_ref_node(&g->node, false);
1834 continue;
1835 }
1836
1837 err = insert_fte(g, fte);
1838 if (err) {
1839 up_write_ref_node(&g->node, false);
1840 if (err == -ENOSPC)
1841 continue;
1842 kmem_cache_free(steering->ftes_cache, fte);
1843 return ERR_PTR(err);
1844 }
1845
1846 nested_down_write_ref_node(&fte->node, FS_LOCK_CHILD);
1847 up_write_ref_node(&g->node, false);
1848 rule = add_rule_fg(g, spec, flow_act, dest, dest_num, fte);
1849 up_write_ref_node(&fte->node, false);
1850 if (IS_ERR(rule))
1851 tree_put_node(&fte->node, false);
1852 return rule;
1853 }
1854 rule = ERR_PTR(-ENOENT);
1855 out:
1856 kmem_cache_free(steering->ftes_cache, fte);
1857 return rule;
1858 }
1859
1860 static struct mlx5_flow_handle *
_mlx5_add_flow_rules(struct mlx5_flow_table * ft,const struct mlx5_flow_spec * spec,struct mlx5_flow_act * flow_act,struct mlx5_flow_destination * dest,int dest_num)1861 _mlx5_add_flow_rules(struct mlx5_flow_table *ft,
1862 const struct mlx5_flow_spec *spec,
1863 struct mlx5_flow_act *flow_act,
1864 struct mlx5_flow_destination *dest,
1865 int dest_num)
1866
1867 {
1868 struct mlx5_flow_steering *steering = get_steering(&ft->node);
1869 struct mlx5_flow_handle *rule;
1870 struct match_list match_head;
1871 struct mlx5_flow_group *g;
1872 bool take_write = false;
1873 struct fs_fte *fte;
1874 int version;
1875 int err;
1876 int i;
1877
1878 if (!check_valid_spec(spec))
1879 return ERR_PTR(-EINVAL);
1880
1881 for (i = 0; i < dest_num; i++) {
1882 if (!dest_is_valid(&dest[i], flow_act, ft))
1883 return ERR_PTR(-EINVAL);
1884 }
1885 nested_down_read_ref_node(&ft->node, FS_LOCK_GRANDPARENT);
1886 search_again_locked:
1887 version = atomic_read(&ft->node.version);
1888
1889 /* Collect all fgs which has a matching match_criteria */
1890 err = build_match_list(&match_head, ft, spec, take_write);
1891 if (err) {
1892 if (take_write)
1893 up_write_ref_node(&ft->node, false);
1894 else
1895 up_read_ref_node(&ft->node);
1896 return ERR_PTR(err);
1897 }
1898
1899 if (!take_write)
1900 up_read_ref_node(&ft->node);
1901
1902 rule = try_add_to_existing_fg(ft, &match_head.list, spec, flow_act, dest,
1903 dest_num, version);
1904 free_match_list(&match_head, take_write);
1905 if (!IS_ERR(rule) ||
1906 (PTR_ERR(rule) != -ENOENT && PTR_ERR(rule) != -EAGAIN)) {
1907 if (take_write)
1908 up_write_ref_node(&ft->node, false);
1909 return rule;
1910 }
1911
1912 if (!take_write) {
1913 nested_down_write_ref_node(&ft->node, FS_LOCK_GRANDPARENT);
1914 take_write = true;
1915 }
1916
1917 if (PTR_ERR(rule) == -EAGAIN ||
1918 version != atomic_read(&ft->node.version))
1919 goto search_again_locked;
1920
1921 g = alloc_auto_flow_group(ft, spec);
1922 if (IS_ERR(g)) {
1923 rule = ERR_CAST(g);
1924 up_write_ref_node(&ft->node, false);
1925 return rule;
1926 }
1927
1928 fte = alloc_fte(ft, spec, flow_act);
1929 if (IS_ERR(fte)) {
1930 up_write_ref_node(&ft->node, false);
1931 err = PTR_ERR(fte);
1932 goto err_alloc_fte;
1933 }
1934
1935 nested_down_write_ref_node(&g->node, FS_LOCK_PARENT);
1936 up_write_ref_node(&ft->node, false);
1937
1938 err = create_auto_flow_group(ft, g);
1939 if (err)
1940 goto err_release_fg;
1941
1942 err = insert_fte(g, fte);
1943 if (err)
1944 goto err_release_fg;
1945
1946 nested_down_write_ref_node(&fte->node, FS_LOCK_CHILD);
1947 up_write_ref_node(&g->node, false);
1948 rule = add_rule_fg(g, spec, flow_act, dest, dest_num, fte);
1949 up_write_ref_node(&fte->node, false);
1950 if (IS_ERR(rule))
1951 tree_put_node(&fte->node, false);
1952 tree_put_node(&g->node, false);
1953 return rule;
1954
1955 err_release_fg:
1956 up_write_ref_node(&g->node, false);
1957 kmem_cache_free(steering->ftes_cache, fte);
1958 err_alloc_fte:
1959 tree_put_node(&g->node, false);
1960 return ERR_PTR(err);
1961 }
1962
fwd_next_prio_supported(struct mlx5_flow_table * ft)1963 static bool fwd_next_prio_supported(struct mlx5_flow_table *ft)
1964 {
1965 return ((ft->type == FS_FT_NIC_RX) &&
1966 (MLX5_CAP_FLOWTABLE(get_dev(&ft->node), nic_rx_multi_path_tirs)));
1967 }
1968
1969 struct mlx5_flow_handle *
mlx5_add_flow_rules(struct mlx5_flow_table * ft,const struct mlx5_flow_spec * spec,struct mlx5_flow_act * flow_act,struct mlx5_flow_destination * dest,int num_dest)1970 mlx5_add_flow_rules(struct mlx5_flow_table *ft,
1971 const struct mlx5_flow_spec *spec,
1972 struct mlx5_flow_act *flow_act,
1973 struct mlx5_flow_destination *dest,
1974 int num_dest)
1975 {
1976 struct mlx5_flow_root_namespace *root = find_root(&ft->node);
1977 static const struct mlx5_flow_spec zero_spec = {};
1978 struct mlx5_flow_destination *gen_dest = NULL;
1979 struct mlx5_flow_table *next_ft = NULL;
1980 struct mlx5_flow_handle *handle = NULL;
1981 u32 sw_action = flow_act->action;
1982 int i;
1983
1984 if (!spec)
1985 spec = &zero_spec;
1986
1987 if (!is_fwd_next_action(sw_action))
1988 return _mlx5_add_flow_rules(ft, spec, flow_act, dest, num_dest);
1989
1990 if (!fwd_next_prio_supported(ft))
1991 return ERR_PTR(-EOPNOTSUPP);
1992
1993 mutex_lock(&root->chain_lock);
1994 next_ft = find_next_fwd_ft(ft, flow_act);
1995 if (!next_ft) {
1996 handle = ERR_PTR(-EOPNOTSUPP);
1997 goto unlock;
1998 }
1999
2000 gen_dest = kcalloc(num_dest + 1, sizeof(*dest),
2001 GFP_KERNEL);
2002 if (!gen_dest) {
2003 handle = ERR_PTR(-ENOMEM);
2004 goto unlock;
2005 }
2006 for (i = 0; i < num_dest; i++)
2007 gen_dest[i] = dest[i];
2008 gen_dest[i].type =
2009 MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE;
2010 gen_dest[i].ft = next_ft;
2011 dest = gen_dest;
2012 num_dest++;
2013 flow_act->action &= ~(MLX5_FLOW_CONTEXT_ACTION_FWD_NEXT_PRIO |
2014 MLX5_FLOW_CONTEXT_ACTION_FWD_NEXT_NS);
2015 flow_act->action |= MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
2016 handle = _mlx5_add_flow_rules(ft, spec, flow_act, dest, num_dest);
2017 if (IS_ERR(handle))
2018 goto unlock;
2019
2020 if (list_empty(&handle->rule[num_dest - 1]->next_ft)) {
2021 mutex_lock(&next_ft->lock);
2022 list_add(&handle->rule[num_dest - 1]->next_ft,
2023 &next_ft->fwd_rules);
2024 mutex_unlock(&next_ft->lock);
2025 handle->rule[num_dest - 1]->sw_action = sw_action;
2026 handle->rule[num_dest - 1]->ft = ft;
2027 }
2028 unlock:
2029 mutex_unlock(&root->chain_lock);
2030 kfree(gen_dest);
2031 return handle;
2032 }
2033 EXPORT_SYMBOL(mlx5_add_flow_rules);
2034
mlx5_del_flow_rules(struct mlx5_flow_handle * handle)2035 void mlx5_del_flow_rules(struct mlx5_flow_handle *handle)
2036 {
2037 struct fs_fte *fte;
2038 int i;
2039
2040 /* In order to consolidate the HW changes we lock the FTE for other
2041 * changes, and increase its refcount, in order not to perform the
2042 * "del" functions of the FTE. Will handle them here.
2043 * The removal of the rules is done under locked FTE.
2044 * After removing all the handle's rules, if there are remaining
2045 * rules, it means we just need to modify the FTE in FW, and
2046 * unlock/decrease the refcount we increased before.
2047 * Otherwise, it means the FTE should be deleted. First delete the
2048 * FTE in FW. Then, unlock the FTE, and proceed the tree_put_node of
2049 * the FTE, which will handle the last decrease of the refcount, as
2050 * well as required handling of its parent.
2051 */
2052 fs_get_obj(fte, handle->rule[0]->node.parent);
2053 down_write_ref_node(&fte->node, false);
2054 for (i = handle->num_rules - 1; i >= 0; i--)
2055 tree_remove_node(&handle->rule[i]->node, true);
2056 if (list_empty(&fte->node.children)) {
2057 del_hw_fte(&fte->node);
2058 /* Avoid double call to del_hw_fte */
2059 fte->node.del_hw_func = NULL;
2060 up_write_ref_node(&fte->node, false);
2061 tree_put_node(&fte->node, false);
2062 } else if (fte->dests_size) {
2063 if (fte->modify_mask)
2064 modify_fte(fte);
2065 up_write_ref_node(&fte->node, false);
2066 } else {
2067 up_write_ref_node(&fte->node, false);
2068 }
2069 kfree(handle);
2070 }
2071 EXPORT_SYMBOL(mlx5_del_flow_rules);
2072
2073 /* Assuming prio->node.children(flow tables) is sorted by level */
find_next_ft(struct mlx5_flow_table * ft)2074 static struct mlx5_flow_table *find_next_ft(struct mlx5_flow_table *ft)
2075 {
2076 struct fs_prio *prio;
2077
2078 fs_get_obj(prio, ft->node.parent);
2079
2080 if (!list_is_last(&ft->node.list, &prio->node.children))
2081 return list_next_entry(ft, node.list);
2082 return find_next_chained_ft(prio);
2083 }
2084
update_root_ft_destroy(struct mlx5_flow_table * ft)2085 static int update_root_ft_destroy(struct mlx5_flow_table *ft)
2086 {
2087 struct mlx5_flow_root_namespace *root = find_root(&ft->node);
2088 struct mlx5_ft_underlay_qp *uqp;
2089 struct mlx5_flow_table *new_root_ft = NULL;
2090 int err = 0;
2091 u32 qpn;
2092
2093 if (root->root_ft != ft)
2094 return 0;
2095
2096 new_root_ft = find_next_ft(ft);
2097 if (!new_root_ft) {
2098 root->root_ft = NULL;
2099 return 0;
2100 }
2101
2102 if (list_empty(&root->underlay_qpns)) {
2103 /* Don't set any QPN (zero) in case QPN list is empty */
2104 qpn = 0;
2105 err = root->cmds->update_root_ft(root, new_root_ft,
2106 qpn, false);
2107 } else {
2108 list_for_each_entry(uqp, &root->underlay_qpns, list) {
2109 qpn = uqp->qpn;
2110 err = root->cmds->update_root_ft(root,
2111 new_root_ft, qpn,
2112 false);
2113 if (err)
2114 break;
2115 }
2116 }
2117
2118 if (err)
2119 mlx5_core_warn(root->dev,
2120 "Update root flow table of id(%u) qpn(%d) failed\n",
2121 ft->id, qpn);
2122 else
2123 root->root_ft = new_root_ft;
2124
2125 return 0;
2126 }
2127
2128 /* Connect flow table from previous priority to
2129 * the next flow table.
2130 */
disconnect_flow_table(struct mlx5_flow_table * ft)2131 static int disconnect_flow_table(struct mlx5_flow_table *ft)
2132 {
2133 struct mlx5_core_dev *dev = get_dev(&ft->node);
2134 struct mlx5_flow_table *next_ft;
2135 struct fs_prio *prio;
2136 int err = 0;
2137
2138 err = update_root_ft_destroy(ft);
2139 if (err)
2140 return err;
2141
2142 fs_get_obj(prio, ft->node.parent);
2143 if (!(list_first_entry(&prio->node.children,
2144 struct mlx5_flow_table,
2145 node.list) == ft))
2146 return 0;
2147
2148 next_ft = find_next_ft(ft);
2149 err = connect_fwd_rules(dev, next_ft, ft);
2150 if (err)
2151 return err;
2152
2153 err = connect_prev_fts(dev, next_ft, prio);
2154 if (err)
2155 mlx5_core_warn(dev, "Failed to disconnect flow table %d\n",
2156 ft->id);
2157 return err;
2158 }
2159
mlx5_destroy_flow_table(struct mlx5_flow_table * ft)2160 int mlx5_destroy_flow_table(struct mlx5_flow_table *ft)
2161 {
2162 struct mlx5_flow_root_namespace *root = find_root(&ft->node);
2163 int err = 0;
2164
2165 mutex_lock(&root->chain_lock);
2166 if (!(ft->flags & MLX5_FLOW_TABLE_UNMANAGED))
2167 err = disconnect_flow_table(ft);
2168 if (err) {
2169 mutex_unlock(&root->chain_lock);
2170 return err;
2171 }
2172 if (tree_remove_node(&ft->node, false))
2173 mlx5_core_warn(get_dev(&ft->node), "Flow table %d wasn't destroyed, refcount > 1\n",
2174 ft->id);
2175 mutex_unlock(&root->chain_lock);
2176
2177 return err;
2178 }
2179 EXPORT_SYMBOL(mlx5_destroy_flow_table);
2180
mlx5_destroy_flow_group(struct mlx5_flow_group * fg)2181 void mlx5_destroy_flow_group(struct mlx5_flow_group *fg)
2182 {
2183 if (tree_remove_node(&fg->node, false))
2184 mlx5_core_warn(get_dev(&fg->node), "Flow group %d wasn't destroyed, refcount > 1\n",
2185 fg->id);
2186 }
2187
mlx5_get_fdb_sub_ns(struct mlx5_core_dev * dev,int n)2188 struct mlx5_flow_namespace *mlx5_get_fdb_sub_ns(struct mlx5_core_dev *dev,
2189 int n)
2190 {
2191 struct mlx5_flow_steering *steering = dev->priv.steering;
2192
2193 if (!steering || !steering->fdb_sub_ns)
2194 return NULL;
2195
2196 return steering->fdb_sub_ns[n];
2197 }
2198 EXPORT_SYMBOL(mlx5_get_fdb_sub_ns);
2199
mlx5_get_flow_namespace(struct mlx5_core_dev * dev,enum mlx5_flow_namespace_type type)2200 struct mlx5_flow_namespace *mlx5_get_flow_namespace(struct mlx5_core_dev *dev,
2201 enum mlx5_flow_namespace_type type)
2202 {
2203 struct mlx5_flow_steering *steering = dev->priv.steering;
2204 struct mlx5_flow_root_namespace *root_ns;
2205 int prio = 0;
2206 struct fs_prio *fs_prio;
2207 struct mlx5_flow_namespace *ns;
2208
2209 if (!steering)
2210 return NULL;
2211
2212 switch (type) {
2213 case MLX5_FLOW_NAMESPACE_FDB:
2214 if (steering->fdb_root_ns)
2215 return &steering->fdb_root_ns->ns;
2216 return NULL;
2217 case MLX5_FLOW_NAMESPACE_SNIFFER_RX:
2218 if (steering->sniffer_rx_root_ns)
2219 return &steering->sniffer_rx_root_ns->ns;
2220 return NULL;
2221 case MLX5_FLOW_NAMESPACE_SNIFFER_TX:
2222 if (steering->sniffer_tx_root_ns)
2223 return &steering->sniffer_tx_root_ns->ns;
2224 return NULL;
2225 default:
2226 break;
2227 }
2228
2229 if (type == MLX5_FLOW_NAMESPACE_EGRESS ||
2230 type == MLX5_FLOW_NAMESPACE_EGRESS_KERNEL) {
2231 root_ns = steering->egress_root_ns;
2232 prio = type - MLX5_FLOW_NAMESPACE_EGRESS;
2233 } else if (type == MLX5_FLOW_NAMESPACE_RDMA_RX) {
2234 root_ns = steering->rdma_rx_root_ns;
2235 prio = RDMA_RX_BYPASS_PRIO;
2236 } else if (type == MLX5_FLOW_NAMESPACE_RDMA_RX_KERNEL) {
2237 root_ns = steering->rdma_rx_root_ns;
2238 prio = RDMA_RX_KERNEL_PRIO;
2239 } else if (type == MLX5_FLOW_NAMESPACE_RDMA_TX) {
2240 root_ns = steering->rdma_tx_root_ns;
2241 } else { /* Must be NIC RX */
2242 root_ns = steering->root_ns;
2243 prio = type;
2244 }
2245
2246 if (!root_ns)
2247 return NULL;
2248
2249 fs_prio = find_prio(&root_ns->ns, prio);
2250 if (!fs_prio)
2251 return NULL;
2252
2253 ns = list_first_entry(&fs_prio->node.children,
2254 typeof(*ns),
2255 node.list);
2256
2257 return ns;
2258 }
2259 EXPORT_SYMBOL(mlx5_get_flow_namespace);
2260
mlx5_get_flow_vport_acl_namespace(struct mlx5_core_dev * dev,enum mlx5_flow_namespace_type type,int vport)2261 struct mlx5_flow_namespace *mlx5_get_flow_vport_acl_namespace(struct mlx5_core_dev *dev,
2262 enum mlx5_flow_namespace_type type,
2263 int vport)
2264 {
2265 struct mlx5_flow_steering *steering = dev->priv.steering;
2266
2267 if (!steering || vport >= mlx5_eswitch_get_total_vports(dev))
2268 return NULL;
2269
2270 switch (type) {
2271 case MLX5_FLOW_NAMESPACE_ESW_EGRESS:
2272 if (steering->esw_egress_root_ns &&
2273 steering->esw_egress_root_ns[vport])
2274 return &steering->esw_egress_root_ns[vport]->ns;
2275 else
2276 return NULL;
2277 case MLX5_FLOW_NAMESPACE_ESW_INGRESS:
2278 if (steering->esw_ingress_root_ns &&
2279 steering->esw_ingress_root_ns[vport])
2280 return &steering->esw_ingress_root_ns[vport]->ns;
2281 else
2282 return NULL;
2283 default:
2284 return NULL;
2285 }
2286 }
2287
_fs_create_prio(struct mlx5_flow_namespace * ns,unsigned int prio,int num_levels,enum fs_node_type type)2288 static struct fs_prio *_fs_create_prio(struct mlx5_flow_namespace *ns,
2289 unsigned int prio,
2290 int num_levels,
2291 enum fs_node_type type)
2292 {
2293 struct fs_prio *fs_prio;
2294
2295 fs_prio = kzalloc(sizeof(*fs_prio), GFP_KERNEL);
2296 if (!fs_prio)
2297 return ERR_PTR(-ENOMEM);
2298
2299 fs_prio->node.type = type;
2300 tree_init_node(&fs_prio->node, NULL, del_sw_prio);
2301 tree_add_node(&fs_prio->node, &ns->node);
2302 fs_prio->num_levels = num_levels;
2303 fs_prio->prio = prio;
2304 list_add_tail(&fs_prio->node.list, &ns->node.children);
2305
2306 return fs_prio;
2307 }
2308
fs_create_prio_chained(struct mlx5_flow_namespace * ns,unsigned int prio,int num_levels)2309 static struct fs_prio *fs_create_prio_chained(struct mlx5_flow_namespace *ns,
2310 unsigned int prio,
2311 int num_levels)
2312 {
2313 return _fs_create_prio(ns, prio, num_levels, FS_TYPE_PRIO_CHAINS);
2314 }
2315
fs_create_prio(struct mlx5_flow_namespace * ns,unsigned int prio,int num_levels)2316 static struct fs_prio *fs_create_prio(struct mlx5_flow_namespace *ns,
2317 unsigned int prio, int num_levels)
2318 {
2319 return _fs_create_prio(ns, prio, num_levels, FS_TYPE_PRIO);
2320 }
2321
fs_init_namespace(struct mlx5_flow_namespace * ns)2322 static struct mlx5_flow_namespace *fs_init_namespace(struct mlx5_flow_namespace
2323 *ns)
2324 {
2325 ns->node.type = FS_TYPE_NAMESPACE;
2326
2327 return ns;
2328 }
2329
fs_create_namespace(struct fs_prio * prio,int def_miss_act)2330 static struct mlx5_flow_namespace *fs_create_namespace(struct fs_prio *prio,
2331 int def_miss_act)
2332 {
2333 struct mlx5_flow_namespace *ns;
2334
2335 ns = kzalloc(sizeof(*ns), GFP_KERNEL);
2336 if (!ns)
2337 return ERR_PTR(-ENOMEM);
2338
2339 fs_init_namespace(ns);
2340 ns->def_miss_action = def_miss_act;
2341 tree_init_node(&ns->node, NULL, del_sw_ns);
2342 tree_add_node(&ns->node, &prio->node);
2343 list_add_tail(&ns->node.list, &prio->node.children);
2344
2345 return ns;
2346 }
2347
create_leaf_prios(struct mlx5_flow_namespace * ns,int prio,struct init_tree_node * prio_metadata)2348 static int create_leaf_prios(struct mlx5_flow_namespace *ns, int prio,
2349 struct init_tree_node *prio_metadata)
2350 {
2351 struct fs_prio *fs_prio;
2352 int i;
2353
2354 for (i = 0; i < prio_metadata->num_leaf_prios; i++) {
2355 fs_prio = fs_create_prio(ns, prio++, prio_metadata->num_levels);
2356 if (IS_ERR(fs_prio))
2357 return PTR_ERR(fs_prio);
2358 }
2359 return 0;
2360 }
2361
2362 #define FLOW_TABLE_BIT_SZ 1
2363 #define GET_FLOW_TABLE_CAP(dev, offset) \
2364 ((be32_to_cpu(*((__be32 *)(dev->caps.hca_cur[MLX5_CAP_FLOW_TABLE]) + \
2365 offset / 32)) >> \
2366 (32 - FLOW_TABLE_BIT_SZ - (offset & 0x1f))) & FLOW_TABLE_BIT_SZ)
has_required_caps(struct mlx5_core_dev * dev,struct node_caps * caps)2367 static bool has_required_caps(struct mlx5_core_dev *dev, struct node_caps *caps)
2368 {
2369 int i;
2370
2371 for (i = 0; i < caps->arr_sz; i++) {
2372 if (!GET_FLOW_TABLE_CAP(dev, caps->caps[i]))
2373 return false;
2374 }
2375 return true;
2376 }
2377
init_root_tree_recursive(struct mlx5_flow_steering * steering,struct init_tree_node * init_node,struct fs_node * fs_parent_node,struct init_tree_node * init_parent_node,int prio)2378 static int init_root_tree_recursive(struct mlx5_flow_steering *steering,
2379 struct init_tree_node *init_node,
2380 struct fs_node *fs_parent_node,
2381 struct init_tree_node *init_parent_node,
2382 int prio)
2383 {
2384 int max_ft_level = MLX5_CAP_FLOWTABLE(steering->dev,
2385 flow_table_properties_nic_receive.
2386 max_ft_level);
2387 struct mlx5_flow_namespace *fs_ns;
2388 struct fs_prio *fs_prio;
2389 struct fs_node *base;
2390 int i;
2391 int err;
2392
2393 if (init_node->type == FS_TYPE_PRIO) {
2394 if ((init_node->min_ft_level > max_ft_level) ||
2395 !has_required_caps(steering->dev, &init_node->caps))
2396 return 0;
2397
2398 fs_get_obj(fs_ns, fs_parent_node);
2399 if (init_node->num_leaf_prios)
2400 return create_leaf_prios(fs_ns, prio, init_node);
2401 fs_prio = fs_create_prio(fs_ns, prio, init_node->num_levels);
2402 if (IS_ERR(fs_prio))
2403 return PTR_ERR(fs_prio);
2404 base = &fs_prio->node;
2405 } else if (init_node->type == FS_TYPE_NAMESPACE) {
2406 fs_get_obj(fs_prio, fs_parent_node);
2407 fs_ns = fs_create_namespace(fs_prio, init_node->def_miss_action);
2408 if (IS_ERR(fs_ns))
2409 return PTR_ERR(fs_ns);
2410 base = &fs_ns->node;
2411 } else {
2412 return -EINVAL;
2413 }
2414 prio = 0;
2415 for (i = 0; i < init_node->ar_size; i++) {
2416 err = init_root_tree_recursive(steering, &init_node->children[i],
2417 base, init_node, prio);
2418 if (err)
2419 return err;
2420 if (init_node->children[i].type == FS_TYPE_PRIO &&
2421 init_node->children[i].num_leaf_prios) {
2422 prio += init_node->children[i].num_leaf_prios;
2423 }
2424 }
2425
2426 return 0;
2427 }
2428
init_root_tree(struct mlx5_flow_steering * steering,struct init_tree_node * init_node,struct fs_node * fs_parent_node)2429 static int init_root_tree(struct mlx5_flow_steering *steering,
2430 struct init_tree_node *init_node,
2431 struct fs_node *fs_parent_node)
2432 {
2433 int i;
2434 struct mlx5_flow_namespace *fs_ns;
2435 int err;
2436
2437 fs_get_obj(fs_ns, fs_parent_node);
2438 for (i = 0; i < init_node->ar_size; i++) {
2439 err = init_root_tree_recursive(steering, &init_node->children[i],
2440 &fs_ns->node,
2441 init_node, i);
2442 if (err)
2443 return err;
2444 }
2445 return 0;
2446 }
2447
del_sw_root_ns(struct fs_node * node)2448 static void del_sw_root_ns(struct fs_node *node)
2449 {
2450 struct mlx5_flow_root_namespace *root_ns;
2451 struct mlx5_flow_namespace *ns;
2452
2453 fs_get_obj(ns, node);
2454 root_ns = container_of(ns, struct mlx5_flow_root_namespace, ns);
2455 mutex_destroy(&root_ns->chain_lock);
2456 kfree(node);
2457 }
2458
2459 static struct mlx5_flow_root_namespace
create_root_ns(struct mlx5_flow_steering * steering,enum fs_flow_table_type table_type)2460 *create_root_ns(struct mlx5_flow_steering *steering,
2461 enum fs_flow_table_type table_type)
2462 {
2463 const struct mlx5_flow_cmds *cmds = mlx5_fs_cmd_get_default(table_type);
2464 struct mlx5_flow_root_namespace *root_ns;
2465 struct mlx5_flow_namespace *ns;
2466
2467 if (mlx5_fpga_ipsec_device_caps(steering->dev) & MLX5_ACCEL_IPSEC_CAP_DEVICE &&
2468 (table_type == FS_FT_NIC_RX || table_type == FS_FT_NIC_TX))
2469 cmds = mlx5_fs_cmd_get_default_ipsec_fpga_cmds(table_type);
2470
2471 /* Create the root namespace */
2472 root_ns = kzalloc(sizeof(*root_ns), GFP_KERNEL);
2473 if (!root_ns)
2474 return NULL;
2475
2476 root_ns->dev = steering->dev;
2477 root_ns->table_type = table_type;
2478 root_ns->cmds = cmds;
2479
2480 INIT_LIST_HEAD(&root_ns->underlay_qpns);
2481
2482 ns = &root_ns->ns;
2483 fs_init_namespace(ns);
2484 mutex_init(&root_ns->chain_lock);
2485 tree_init_node(&ns->node, NULL, del_sw_root_ns);
2486 tree_add_node(&ns->node, NULL);
2487
2488 return root_ns;
2489 }
2490
2491 static void set_prio_attrs_in_prio(struct fs_prio *prio, int acc_level);
2492
set_prio_attrs_in_ns(struct mlx5_flow_namespace * ns,int acc_level)2493 static int set_prio_attrs_in_ns(struct mlx5_flow_namespace *ns, int acc_level)
2494 {
2495 struct fs_prio *prio;
2496
2497 fs_for_each_prio(prio, ns) {
2498 /* This updates prio start_level and num_levels */
2499 set_prio_attrs_in_prio(prio, acc_level);
2500 acc_level += prio->num_levels;
2501 }
2502 return acc_level;
2503 }
2504
set_prio_attrs_in_prio(struct fs_prio * prio,int acc_level)2505 static void set_prio_attrs_in_prio(struct fs_prio *prio, int acc_level)
2506 {
2507 struct mlx5_flow_namespace *ns;
2508 int acc_level_ns = acc_level;
2509
2510 prio->start_level = acc_level;
2511 fs_for_each_ns(ns, prio) {
2512 /* This updates start_level and num_levels of ns's priority descendants */
2513 acc_level_ns = set_prio_attrs_in_ns(ns, acc_level);
2514
2515 /* If this a prio with chains, and we can jump from one chain
2516 * (namepsace) to another, so we accumulate the levels
2517 */
2518 if (prio->node.type == FS_TYPE_PRIO_CHAINS)
2519 acc_level = acc_level_ns;
2520 }
2521
2522 if (!prio->num_levels)
2523 prio->num_levels = acc_level_ns - prio->start_level;
2524 WARN_ON(prio->num_levels < acc_level_ns - prio->start_level);
2525 }
2526
set_prio_attrs(struct mlx5_flow_root_namespace * root_ns)2527 static void set_prio_attrs(struct mlx5_flow_root_namespace *root_ns)
2528 {
2529 struct mlx5_flow_namespace *ns = &root_ns->ns;
2530 struct fs_prio *prio;
2531 int start_level = 0;
2532
2533 fs_for_each_prio(prio, ns) {
2534 set_prio_attrs_in_prio(prio, start_level);
2535 start_level += prio->num_levels;
2536 }
2537 }
2538
2539 #define ANCHOR_PRIO 0
2540 #define ANCHOR_SIZE 1
2541 #define ANCHOR_LEVEL 0
create_anchor_flow_table(struct mlx5_flow_steering * steering)2542 static int create_anchor_flow_table(struct mlx5_flow_steering *steering)
2543 {
2544 struct mlx5_flow_namespace *ns = NULL;
2545 struct mlx5_flow_table_attr ft_attr = {};
2546 struct mlx5_flow_table *ft;
2547
2548 ns = mlx5_get_flow_namespace(steering->dev, MLX5_FLOW_NAMESPACE_ANCHOR);
2549 if (WARN_ON(!ns))
2550 return -EINVAL;
2551
2552 ft_attr.max_fte = ANCHOR_SIZE;
2553 ft_attr.level = ANCHOR_LEVEL;
2554 ft_attr.prio = ANCHOR_PRIO;
2555
2556 ft = mlx5_create_flow_table(ns, &ft_attr);
2557 if (IS_ERR(ft)) {
2558 mlx5_core_err(steering->dev, "Failed to create last anchor flow table");
2559 return PTR_ERR(ft);
2560 }
2561 return 0;
2562 }
2563
init_root_ns(struct mlx5_flow_steering * steering)2564 static int init_root_ns(struct mlx5_flow_steering *steering)
2565 {
2566 int err;
2567
2568 steering->root_ns = create_root_ns(steering, FS_FT_NIC_RX);
2569 if (!steering->root_ns)
2570 return -ENOMEM;
2571
2572 err = init_root_tree(steering, &root_fs, &steering->root_ns->ns.node);
2573 if (err)
2574 goto out_err;
2575
2576 set_prio_attrs(steering->root_ns);
2577 err = create_anchor_flow_table(steering);
2578 if (err)
2579 goto out_err;
2580
2581 return 0;
2582
2583 out_err:
2584 cleanup_root_ns(steering->root_ns);
2585 steering->root_ns = NULL;
2586 return err;
2587 }
2588
clean_tree(struct fs_node * node)2589 static void clean_tree(struct fs_node *node)
2590 {
2591 if (node) {
2592 struct fs_node *iter;
2593 struct fs_node *temp;
2594
2595 tree_get_node(node);
2596 list_for_each_entry_safe(iter, temp, &node->children, list)
2597 clean_tree(iter);
2598 tree_put_node(node, false);
2599 tree_remove_node(node, false);
2600 }
2601 }
2602
cleanup_root_ns(struct mlx5_flow_root_namespace * root_ns)2603 static void cleanup_root_ns(struct mlx5_flow_root_namespace *root_ns)
2604 {
2605 if (!root_ns)
2606 return;
2607
2608 clean_tree(&root_ns->ns.node);
2609 }
2610
cleanup_egress_acls_root_ns(struct mlx5_core_dev * dev)2611 static void cleanup_egress_acls_root_ns(struct mlx5_core_dev *dev)
2612 {
2613 struct mlx5_flow_steering *steering = dev->priv.steering;
2614 int i;
2615
2616 if (!steering->esw_egress_root_ns)
2617 return;
2618
2619 for (i = 0; i < mlx5_eswitch_get_total_vports(dev); i++)
2620 cleanup_root_ns(steering->esw_egress_root_ns[i]);
2621
2622 kfree(steering->esw_egress_root_ns);
2623 steering->esw_egress_root_ns = NULL;
2624 }
2625
cleanup_ingress_acls_root_ns(struct mlx5_core_dev * dev)2626 static void cleanup_ingress_acls_root_ns(struct mlx5_core_dev *dev)
2627 {
2628 struct mlx5_flow_steering *steering = dev->priv.steering;
2629 int i;
2630
2631 if (!steering->esw_ingress_root_ns)
2632 return;
2633
2634 for (i = 0; i < mlx5_eswitch_get_total_vports(dev); i++)
2635 cleanup_root_ns(steering->esw_ingress_root_ns[i]);
2636
2637 kfree(steering->esw_ingress_root_ns);
2638 steering->esw_ingress_root_ns = NULL;
2639 }
2640
mlx5_cleanup_fs(struct mlx5_core_dev * dev)2641 void mlx5_cleanup_fs(struct mlx5_core_dev *dev)
2642 {
2643 struct mlx5_flow_steering *steering = dev->priv.steering;
2644
2645 cleanup_root_ns(steering->root_ns);
2646 cleanup_egress_acls_root_ns(dev);
2647 cleanup_ingress_acls_root_ns(dev);
2648 cleanup_root_ns(steering->fdb_root_ns);
2649 steering->fdb_root_ns = NULL;
2650 kfree(steering->fdb_sub_ns);
2651 steering->fdb_sub_ns = NULL;
2652 cleanup_root_ns(steering->sniffer_rx_root_ns);
2653 cleanup_root_ns(steering->sniffer_tx_root_ns);
2654 cleanup_root_ns(steering->rdma_rx_root_ns);
2655 cleanup_root_ns(steering->rdma_tx_root_ns);
2656 cleanup_root_ns(steering->egress_root_ns);
2657 mlx5_cleanup_fc_stats(dev);
2658 kmem_cache_destroy(steering->ftes_cache);
2659 kmem_cache_destroy(steering->fgs_cache);
2660 kfree(steering);
2661 }
2662
init_sniffer_tx_root_ns(struct mlx5_flow_steering * steering)2663 static int init_sniffer_tx_root_ns(struct mlx5_flow_steering *steering)
2664 {
2665 struct fs_prio *prio;
2666
2667 steering->sniffer_tx_root_ns = create_root_ns(steering, FS_FT_SNIFFER_TX);
2668 if (!steering->sniffer_tx_root_ns)
2669 return -ENOMEM;
2670
2671 /* Create single prio */
2672 prio = fs_create_prio(&steering->sniffer_tx_root_ns->ns, 0, 1);
2673 return PTR_ERR_OR_ZERO(prio);
2674 }
2675
init_sniffer_rx_root_ns(struct mlx5_flow_steering * steering)2676 static int init_sniffer_rx_root_ns(struct mlx5_flow_steering *steering)
2677 {
2678 struct fs_prio *prio;
2679
2680 steering->sniffer_rx_root_ns = create_root_ns(steering, FS_FT_SNIFFER_RX);
2681 if (!steering->sniffer_rx_root_ns)
2682 return -ENOMEM;
2683
2684 /* Create single prio */
2685 prio = fs_create_prio(&steering->sniffer_rx_root_ns->ns, 0, 1);
2686 return PTR_ERR_OR_ZERO(prio);
2687 }
2688
init_rdma_rx_root_ns(struct mlx5_flow_steering * steering)2689 static int init_rdma_rx_root_ns(struct mlx5_flow_steering *steering)
2690 {
2691 int err;
2692
2693 steering->rdma_rx_root_ns = create_root_ns(steering, FS_FT_RDMA_RX);
2694 if (!steering->rdma_rx_root_ns)
2695 return -ENOMEM;
2696
2697 err = init_root_tree(steering, &rdma_rx_root_fs,
2698 &steering->rdma_rx_root_ns->ns.node);
2699 if (err)
2700 goto out_err;
2701
2702 set_prio_attrs(steering->rdma_rx_root_ns);
2703
2704 return 0;
2705
2706 out_err:
2707 cleanup_root_ns(steering->rdma_rx_root_ns);
2708 steering->rdma_rx_root_ns = NULL;
2709 return err;
2710 }
2711
init_rdma_tx_root_ns(struct mlx5_flow_steering * steering)2712 static int init_rdma_tx_root_ns(struct mlx5_flow_steering *steering)
2713 {
2714 int err;
2715
2716 steering->rdma_tx_root_ns = create_root_ns(steering, FS_FT_RDMA_TX);
2717 if (!steering->rdma_tx_root_ns)
2718 return -ENOMEM;
2719
2720 err = init_root_tree(steering, &rdma_tx_root_fs,
2721 &steering->rdma_tx_root_ns->ns.node);
2722 if (err)
2723 goto out_err;
2724
2725 set_prio_attrs(steering->rdma_tx_root_ns);
2726
2727 return 0;
2728
2729 out_err:
2730 cleanup_root_ns(steering->rdma_tx_root_ns);
2731 steering->rdma_tx_root_ns = NULL;
2732 return err;
2733 }
2734
2735 /* FT and tc chains are stored in the same array so we can re-use the
2736 * mlx5_get_fdb_sub_ns() and tc api for FT chains.
2737 * When creating a new ns for each chain store it in the first available slot.
2738 * Assume tc chains are created and stored first and only then the FT chain.
2739 */
store_fdb_sub_ns_prio_chain(struct mlx5_flow_steering * steering,struct mlx5_flow_namespace * ns)2740 static void store_fdb_sub_ns_prio_chain(struct mlx5_flow_steering *steering,
2741 struct mlx5_flow_namespace *ns)
2742 {
2743 int chain = 0;
2744
2745 while (steering->fdb_sub_ns[chain])
2746 ++chain;
2747
2748 steering->fdb_sub_ns[chain] = ns;
2749 }
2750
create_fdb_sub_ns_prio_chain(struct mlx5_flow_steering * steering,struct fs_prio * maj_prio)2751 static int create_fdb_sub_ns_prio_chain(struct mlx5_flow_steering *steering,
2752 struct fs_prio *maj_prio)
2753 {
2754 struct mlx5_flow_namespace *ns;
2755 struct fs_prio *min_prio;
2756 int prio;
2757
2758 ns = fs_create_namespace(maj_prio, MLX5_FLOW_TABLE_MISS_ACTION_DEF);
2759 if (IS_ERR(ns))
2760 return PTR_ERR(ns);
2761
2762 for (prio = 0; prio < FDB_TC_MAX_PRIO; prio++) {
2763 min_prio = fs_create_prio(ns, prio, FDB_TC_LEVELS_PER_PRIO);
2764 if (IS_ERR(min_prio))
2765 return PTR_ERR(min_prio);
2766 }
2767
2768 store_fdb_sub_ns_prio_chain(steering, ns);
2769
2770 return 0;
2771 }
2772
create_fdb_chains(struct mlx5_flow_steering * steering,int fs_prio,int chains)2773 static int create_fdb_chains(struct mlx5_flow_steering *steering,
2774 int fs_prio,
2775 int chains)
2776 {
2777 struct fs_prio *maj_prio;
2778 int levels;
2779 int chain;
2780 int err;
2781
2782 levels = FDB_TC_LEVELS_PER_PRIO * FDB_TC_MAX_PRIO * chains;
2783 maj_prio = fs_create_prio_chained(&steering->fdb_root_ns->ns,
2784 fs_prio,
2785 levels);
2786 if (IS_ERR(maj_prio))
2787 return PTR_ERR(maj_prio);
2788
2789 for (chain = 0; chain < chains; chain++) {
2790 err = create_fdb_sub_ns_prio_chain(steering, maj_prio);
2791 if (err)
2792 return err;
2793 }
2794
2795 return 0;
2796 }
2797
create_fdb_fast_path(struct mlx5_flow_steering * steering)2798 static int create_fdb_fast_path(struct mlx5_flow_steering *steering)
2799 {
2800 int err;
2801
2802 steering->fdb_sub_ns = kcalloc(FDB_NUM_CHAINS,
2803 sizeof(*steering->fdb_sub_ns),
2804 GFP_KERNEL);
2805 if (!steering->fdb_sub_ns)
2806 return -ENOMEM;
2807
2808 err = create_fdb_chains(steering, FDB_TC_OFFLOAD, FDB_TC_MAX_CHAIN + 1);
2809 if (err)
2810 return err;
2811
2812 err = create_fdb_chains(steering, FDB_FT_OFFLOAD, 1);
2813 if (err)
2814 return err;
2815
2816 return 0;
2817 }
2818
init_fdb_root_ns(struct mlx5_flow_steering * steering)2819 static int init_fdb_root_ns(struct mlx5_flow_steering *steering)
2820 {
2821 struct fs_prio *maj_prio;
2822 int err;
2823
2824 steering->fdb_root_ns = create_root_ns(steering, FS_FT_FDB);
2825 if (!steering->fdb_root_ns)
2826 return -ENOMEM;
2827
2828 maj_prio = fs_create_prio(&steering->fdb_root_ns->ns, FDB_BYPASS_PATH,
2829 1);
2830 if (IS_ERR(maj_prio)) {
2831 err = PTR_ERR(maj_prio);
2832 goto out_err;
2833 }
2834 err = create_fdb_fast_path(steering);
2835 if (err)
2836 goto out_err;
2837
2838 maj_prio = fs_create_prio(&steering->fdb_root_ns->ns, FDB_SLOW_PATH, 1);
2839 if (IS_ERR(maj_prio)) {
2840 err = PTR_ERR(maj_prio);
2841 goto out_err;
2842 }
2843
2844 /* We put this priority last, knowing that nothing will get here
2845 * unless explicitly forwarded to. This is possible because the
2846 * slow path tables have catch all rules and nothing gets passed
2847 * those tables.
2848 */
2849 maj_prio = fs_create_prio(&steering->fdb_root_ns->ns, FDB_PER_VPORT, 1);
2850 if (IS_ERR(maj_prio)) {
2851 err = PTR_ERR(maj_prio);
2852 goto out_err;
2853 }
2854
2855 set_prio_attrs(steering->fdb_root_ns);
2856 return 0;
2857
2858 out_err:
2859 cleanup_root_ns(steering->fdb_root_ns);
2860 kfree(steering->fdb_sub_ns);
2861 steering->fdb_sub_ns = NULL;
2862 steering->fdb_root_ns = NULL;
2863 return err;
2864 }
2865
init_egress_acl_root_ns(struct mlx5_flow_steering * steering,int vport)2866 static int init_egress_acl_root_ns(struct mlx5_flow_steering *steering, int vport)
2867 {
2868 struct fs_prio *prio;
2869
2870 steering->esw_egress_root_ns[vport] = create_root_ns(steering, FS_FT_ESW_EGRESS_ACL);
2871 if (!steering->esw_egress_root_ns[vport])
2872 return -ENOMEM;
2873
2874 /* create 1 prio*/
2875 prio = fs_create_prio(&steering->esw_egress_root_ns[vport]->ns, 0, 1);
2876 return PTR_ERR_OR_ZERO(prio);
2877 }
2878
init_ingress_acl_root_ns(struct mlx5_flow_steering * steering,int vport)2879 static int init_ingress_acl_root_ns(struct mlx5_flow_steering *steering, int vport)
2880 {
2881 struct fs_prio *prio;
2882
2883 steering->esw_ingress_root_ns[vport] = create_root_ns(steering, FS_FT_ESW_INGRESS_ACL);
2884 if (!steering->esw_ingress_root_ns[vport])
2885 return -ENOMEM;
2886
2887 /* create 1 prio*/
2888 prio = fs_create_prio(&steering->esw_ingress_root_ns[vport]->ns, 0, 1);
2889 return PTR_ERR_OR_ZERO(prio);
2890 }
2891
init_egress_acls_root_ns(struct mlx5_core_dev * dev)2892 static int init_egress_acls_root_ns(struct mlx5_core_dev *dev)
2893 {
2894 struct mlx5_flow_steering *steering = dev->priv.steering;
2895 int total_vports = mlx5_eswitch_get_total_vports(dev);
2896 int err;
2897 int i;
2898
2899 steering->esw_egress_root_ns =
2900 kcalloc(total_vports,
2901 sizeof(*steering->esw_egress_root_ns),
2902 GFP_KERNEL);
2903 if (!steering->esw_egress_root_ns)
2904 return -ENOMEM;
2905
2906 for (i = 0; i < total_vports; i++) {
2907 err = init_egress_acl_root_ns(steering, i);
2908 if (err)
2909 goto cleanup_root_ns;
2910 }
2911
2912 return 0;
2913
2914 cleanup_root_ns:
2915 for (i--; i >= 0; i--)
2916 cleanup_root_ns(steering->esw_egress_root_ns[i]);
2917 kfree(steering->esw_egress_root_ns);
2918 steering->esw_egress_root_ns = NULL;
2919 return err;
2920 }
2921
init_ingress_acls_root_ns(struct mlx5_core_dev * dev)2922 static int init_ingress_acls_root_ns(struct mlx5_core_dev *dev)
2923 {
2924 struct mlx5_flow_steering *steering = dev->priv.steering;
2925 int total_vports = mlx5_eswitch_get_total_vports(dev);
2926 int err;
2927 int i;
2928
2929 steering->esw_ingress_root_ns =
2930 kcalloc(total_vports,
2931 sizeof(*steering->esw_ingress_root_ns),
2932 GFP_KERNEL);
2933 if (!steering->esw_ingress_root_ns)
2934 return -ENOMEM;
2935
2936 for (i = 0; i < total_vports; i++) {
2937 err = init_ingress_acl_root_ns(steering, i);
2938 if (err)
2939 goto cleanup_root_ns;
2940 }
2941
2942 return 0;
2943
2944 cleanup_root_ns:
2945 for (i--; i >= 0; i--)
2946 cleanup_root_ns(steering->esw_ingress_root_ns[i]);
2947 kfree(steering->esw_ingress_root_ns);
2948 steering->esw_ingress_root_ns = NULL;
2949 return err;
2950 }
2951
init_egress_root_ns(struct mlx5_flow_steering * steering)2952 static int init_egress_root_ns(struct mlx5_flow_steering *steering)
2953 {
2954 int err;
2955
2956 steering->egress_root_ns = create_root_ns(steering,
2957 FS_FT_NIC_TX);
2958 if (!steering->egress_root_ns)
2959 return -ENOMEM;
2960
2961 err = init_root_tree(steering, &egress_root_fs,
2962 &steering->egress_root_ns->ns.node);
2963 if (err)
2964 goto cleanup;
2965 set_prio_attrs(steering->egress_root_ns);
2966 return 0;
2967 cleanup:
2968 cleanup_root_ns(steering->egress_root_ns);
2969 steering->egress_root_ns = NULL;
2970 return err;
2971 }
2972
mlx5_init_fs(struct mlx5_core_dev * dev)2973 int mlx5_init_fs(struct mlx5_core_dev *dev)
2974 {
2975 struct mlx5_flow_steering *steering;
2976 int err = 0;
2977
2978 err = mlx5_init_fc_stats(dev);
2979 if (err)
2980 return err;
2981
2982 steering = kzalloc(sizeof(*steering), GFP_KERNEL);
2983 if (!steering)
2984 return -ENOMEM;
2985 steering->dev = dev;
2986 dev->priv.steering = steering;
2987
2988 steering->fgs_cache = kmem_cache_create("mlx5_fs_fgs",
2989 sizeof(struct mlx5_flow_group), 0,
2990 0, NULL);
2991 steering->ftes_cache = kmem_cache_create("mlx5_fs_ftes", sizeof(struct fs_fte), 0,
2992 0, NULL);
2993 if (!steering->ftes_cache || !steering->fgs_cache) {
2994 err = -ENOMEM;
2995 goto err;
2996 }
2997
2998 if ((((MLX5_CAP_GEN(dev, port_type) == MLX5_CAP_PORT_TYPE_ETH) &&
2999 (MLX5_CAP_GEN(dev, nic_flow_table))) ||
3000 ((MLX5_CAP_GEN(dev, port_type) == MLX5_CAP_PORT_TYPE_IB) &&
3001 MLX5_CAP_GEN(dev, ipoib_enhanced_offloads))) &&
3002 MLX5_CAP_FLOWTABLE_NIC_RX(dev, ft_support)) {
3003 err = init_root_ns(steering);
3004 if (err)
3005 goto err;
3006 }
3007
3008 if (MLX5_ESWITCH_MANAGER(dev)) {
3009 if (MLX5_CAP_ESW_FLOWTABLE_FDB(dev, ft_support)) {
3010 err = init_fdb_root_ns(steering);
3011 if (err)
3012 goto err;
3013 }
3014 if (MLX5_CAP_ESW_EGRESS_ACL(dev, ft_support)) {
3015 err = init_egress_acls_root_ns(dev);
3016 if (err)
3017 goto err;
3018 }
3019 if (MLX5_CAP_ESW_INGRESS_ACL(dev, ft_support)) {
3020 err = init_ingress_acls_root_ns(dev);
3021 if (err)
3022 goto err;
3023 }
3024 }
3025
3026 if (MLX5_CAP_FLOWTABLE_SNIFFER_RX(dev, ft_support)) {
3027 err = init_sniffer_rx_root_ns(steering);
3028 if (err)
3029 goto err;
3030 }
3031
3032 if (MLX5_CAP_FLOWTABLE_SNIFFER_TX(dev, ft_support)) {
3033 err = init_sniffer_tx_root_ns(steering);
3034 if (err)
3035 goto err;
3036 }
3037
3038 if (MLX5_CAP_FLOWTABLE_RDMA_RX(dev, ft_support) &&
3039 MLX5_CAP_FLOWTABLE_RDMA_RX(dev, table_miss_action_domain)) {
3040 err = init_rdma_rx_root_ns(steering);
3041 if (err)
3042 goto err;
3043 }
3044
3045 if (MLX5_CAP_FLOWTABLE_RDMA_TX(dev, ft_support)) {
3046 err = init_rdma_tx_root_ns(steering);
3047 if (err)
3048 goto err;
3049 }
3050
3051 if (mlx5_fpga_ipsec_device_caps(steering->dev) & MLX5_ACCEL_IPSEC_CAP_DEVICE ||
3052 MLX5_CAP_FLOWTABLE_NIC_TX(dev, ft_support)) {
3053 err = init_egress_root_ns(steering);
3054 if (err)
3055 goto err;
3056 }
3057
3058 return 0;
3059 err:
3060 mlx5_cleanup_fs(dev);
3061 return err;
3062 }
3063
mlx5_fs_add_rx_underlay_qpn(struct mlx5_core_dev * dev,u32 underlay_qpn)3064 int mlx5_fs_add_rx_underlay_qpn(struct mlx5_core_dev *dev, u32 underlay_qpn)
3065 {
3066 struct mlx5_flow_root_namespace *root = dev->priv.steering->root_ns;
3067 struct mlx5_ft_underlay_qp *new_uqp;
3068 int err = 0;
3069
3070 new_uqp = kzalloc(sizeof(*new_uqp), GFP_KERNEL);
3071 if (!new_uqp)
3072 return -ENOMEM;
3073
3074 mutex_lock(&root->chain_lock);
3075
3076 if (!root->root_ft) {
3077 err = -EINVAL;
3078 goto update_ft_fail;
3079 }
3080
3081 err = root->cmds->update_root_ft(root, root->root_ft, underlay_qpn,
3082 false);
3083 if (err) {
3084 mlx5_core_warn(dev, "Failed adding underlay QPN (%u) to root FT err(%d)\n",
3085 underlay_qpn, err);
3086 goto update_ft_fail;
3087 }
3088
3089 new_uqp->qpn = underlay_qpn;
3090 list_add_tail(&new_uqp->list, &root->underlay_qpns);
3091
3092 mutex_unlock(&root->chain_lock);
3093
3094 return 0;
3095
3096 update_ft_fail:
3097 mutex_unlock(&root->chain_lock);
3098 kfree(new_uqp);
3099 return err;
3100 }
3101 EXPORT_SYMBOL(mlx5_fs_add_rx_underlay_qpn);
3102
mlx5_fs_remove_rx_underlay_qpn(struct mlx5_core_dev * dev,u32 underlay_qpn)3103 int mlx5_fs_remove_rx_underlay_qpn(struct mlx5_core_dev *dev, u32 underlay_qpn)
3104 {
3105 struct mlx5_flow_root_namespace *root = dev->priv.steering->root_ns;
3106 struct mlx5_ft_underlay_qp *uqp;
3107 bool found = false;
3108 int err = 0;
3109
3110 mutex_lock(&root->chain_lock);
3111 list_for_each_entry(uqp, &root->underlay_qpns, list) {
3112 if (uqp->qpn == underlay_qpn) {
3113 found = true;
3114 break;
3115 }
3116 }
3117
3118 if (!found) {
3119 mlx5_core_warn(dev, "Failed finding underlay qp (%u) in qpn list\n",
3120 underlay_qpn);
3121 err = -EINVAL;
3122 goto out;
3123 }
3124
3125 err = root->cmds->update_root_ft(root, root->root_ft, underlay_qpn,
3126 true);
3127 if (err)
3128 mlx5_core_warn(dev, "Failed removing underlay QPN (%u) from root FT err(%d)\n",
3129 underlay_qpn, err);
3130
3131 list_del(&uqp->list);
3132 mutex_unlock(&root->chain_lock);
3133 kfree(uqp);
3134
3135 return 0;
3136
3137 out:
3138 mutex_unlock(&root->chain_lock);
3139 return err;
3140 }
3141 EXPORT_SYMBOL(mlx5_fs_remove_rx_underlay_qpn);
3142
3143 static struct mlx5_flow_root_namespace
get_root_namespace(struct mlx5_core_dev * dev,enum mlx5_flow_namespace_type ns_type)3144 *get_root_namespace(struct mlx5_core_dev *dev, enum mlx5_flow_namespace_type ns_type)
3145 {
3146 struct mlx5_flow_namespace *ns;
3147
3148 if (ns_type == MLX5_FLOW_NAMESPACE_ESW_EGRESS ||
3149 ns_type == MLX5_FLOW_NAMESPACE_ESW_INGRESS)
3150 ns = mlx5_get_flow_vport_acl_namespace(dev, ns_type, 0);
3151 else
3152 ns = mlx5_get_flow_namespace(dev, ns_type);
3153 if (!ns)
3154 return NULL;
3155
3156 return find_root(&ns->node);
3157 }
3158
mlx5_modify_header_alloc(struct mlx5_core_dev * dev,u8 ns_type,u8 num_actions,void * modify_actions)3159 struct mlx5_modify_hdr *mlx5_modify_header_alloc(struct mlx5_core_dev *dev,
3160 u8 ns_type, u8 num_actions,
3161 void *modify_actions)
3162 {
3163 struct mlx5_flow_root_namespace *root;
3164 struct mlx5_modify_hdr *modify_hdr;
3165 int err;
3166
3167 root = get_root_namespace(dev, ns_type);
3168 if (!root)
3169 return ERR_PTR(-EOPNOTSUPP);
3170
3171 modify_hdr = kzalloc(sizeof(*modify_hdr), GFP_KERNEL);
3172 if (!modify_hdr)
3173 return ERR_PTR(-ENOMEM);
3174
3175 modify_hdr->ns_type = ns_type;
3176 err = root->cmds->modify_header_alloc(root, ns_type, num_actions,
3177 modify_actions, modify_hdr);
3178 if (err) {
3179 kfree(modify_hdr);
3180 return ERR_PTR(err);
3181 }
3182
3183 return modify_hdr;
3184 }
3185 EXPORT_SYMBOL(mlx5_modify_header_alloc);
3186
mlx5_modify_header_dealloc(struct mlx5_core_dev * dev,struct mlx5_modify_hdr * modify_hdr)3187 void mlx5_modify_header_dealloc(struct mlx5_core_dev *dev,
3188 struct mlx5_modify_hdr *modify_hdr)
3189 {
3190 struct mlx5_flow_root_namespace *root;
3191
3192 root = get_root_namespace(dev, modify_hdr->ns_type);
3193 if (WARN_ON(!root))
3194 return;
3195 root->cmds->modify_header_dealloc(root, modify_hdr);
3196 kfree(modify_hdr);
3197 }
3198 EXPORT_SYMBOL(mlx5_modify_header_dealloc);
3199
mlx5_packet_reformat_alloc(struct mlx5_core_dev * dev,int reformat_type,size_t size,void * reformat_data,enum mlx5_flow_namespace_type ns_type)3200 struct mlx5_pkt_reformat *mlx5_packet_reformat_alloc(struct mlx5_core_dev *dev,
3201 int reformat_type,
3202 size_t size,
3203 void *reformat_data,
3204 enum mlx5_flow_namespace_type ns_type)
3205 {
3206 struct mlx5_pkt_reformat *pkt_reformat;
3207 struct mlx5_flow_root_namespace *root;
3208 int err;
3209
3210 root = get_root_namespace(dev, ns_type);
3211 if (!root)
3212 return ERR_PTR(-EOPNOTSUPP);
3213
3214 pkt_reformat = kzalloc(sizeof(*pkt_reformat), GFP_KERNEL);
3215 if (!pkt_reformat)
3216 return ERR_PTR(-ENOMEM);
3217
3218 pkt_reformat->ns_type = ns_type;
3219 pkt_reformat->reformat_type = reformat_type;
3220 err = root->cmds->packet_reformat_alloc(root, reformat_type, size,
3221 reformat_data, ns_type,
3222 pkt_reformat);
3223 if (err) {
3224 kfree(pkt_reformat);
3225 return ERR_PTR(err);
3226 }
3227
3228 return pkt_reformat;
3229 }
3230 EXPORT_SYMBOL(mlx5_packet_reformat_alloc);
3231
mlx5_packet_reformat_dealloc(struct mlx5_core_dev * dev,struct mlx5_pkt_reformat * pkt_reformat)3232 void mlx5_packet_reformat_dealloc(struct mlx5_core_dev *dev,
3233 struct mlx5_pkt_reformat *pkt_reformat)
3234 {
3235 struct mlx5_flow_root_namespace *root;
3236
3237 root = get_root_namespace(dev, pkt_reformat->ns_type);
3238 if (WARN_ON(!root))
3239 return;
3240 root->cmds->packet_reformat_dealloc(root, pkt_reformat);
3241 kfree(pkt_reformat);
3242 }
3243 EXPORT_SYMBOL(mlx5_packet_reformat_dealloc);
3244
mlx5_flow_namespace_set_peer(struct mlx5_flow_root_namespace * ns,struct mlx5_flow_root_namespace * peer_ns)3245 int mlx5_flow_namespace_set_peer(struct mlx5_flow_root_namespace *ns,
3246 struct mlx5_flow_root_namespace *peer_ns)
3247 {
3248 if (peer_ns && ns->mode != peer_ns->mode) {
3249 mlx5_core_err(ns->dev,
3250 "Can't peer namespace of different steering mode\n");
3251 return -EINVAL;
3252 }
3253
3254 return ns->cmds->set_peer(ns, peer_ns);
3255 }
3256
3257 /* This function should be called only at init stage of the namespace.
3258 * It is not safe to call this function while steering operations
3259 * are executed in the namespace.
3260 */
mlx5_flow_namespace_set_mode(struct mlx5_flow_namespace * ns,enum mlx5_flow_steering_mode mode)3261 int mlx5_flow_namespace_set_mode(struct mlx5_flow_namespace *ns,
3262 enum mlx5_flow_steering_mode mode)
3263 {
3264 struct mlx5_flow_root_namespace *root;
3265 const struct mlx5_flow_cmds *cmds;
3266 int err;
3267
3268 root = find_root(&ns->node);
3269 if (&root->ns != ns)
3270 /* Can't set cmds to non root namespace */
3271 return -EINVAL;
3272
3273 if (root->table_type != FS_FT_FDB)
3274 return -EOPNOTSUPP;
3275
3276 if (root->mode == mode)
3277 return 0;
3278
3279 if (mode == MLX5_FLOW_STEERING_MODE_SMFS)
3280 cmds = mlx5_fs_cmd_get_dr_cmds();
3281 else
3282 cmds = mlx5_fs_cmd_get_fw_cmds();
3283 if (!cmds)
3284 return -EOPNOTSUPP;
3285
3286 err = cmds->create_ns(root);
3287 if (err) {
3288 mlx5_core_err(root->dev, "Failed to create flow namespace (%d)\n",
3289 err);
3290 return err;
3291 }
3292
3293 root->cmds->destroy_ns(root);
3294 root->cmds = cmds;
3295 root->mode = mode;
3296
3297 return 0;
3298 }
3299