2 * Copyright (c) 2016, Mellanox Technologies. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 #include <net/flow_dissector.h>
34 #include <net/flow_offload.h>
35 #include <net/sch_generic.h>
36 #include <net/pkt_cls.h>
37 #include <net/tc_act/tc_gact.h>
38 #include <net/tc_act/tc_skbedit.h>
39 #include <linux/mlx5/fs.h>
40 #include <linux/mlx5/device.h>
41 #include <linux/rhashtable.h>
42 #include <linux/refcount.h>
43 #include <linux/completion.h>
44 #include <net/tc_act/tc_mirred.h>
45 #include <net/tc_act/tc_vlan.h>
46 #include <net/tc_act/tc_tunnel_key.h>
47 #include <net/tc_act/tc_pedit.h>
48 #include <net/tc_act/tc_csum.h>
49 #include <net/tc_act/tc_mpls.h>
50 #include <net/psample.h>
52 #include <net/ipv6_stubs.h>
53 #include <net/bareudp.h>
54 #include <net/bonding.h>
57 #include "en/rep/tc.h"
58 #include "en/rep/neigh.h"
63 #include "en/tc_tun.h"
64 #include "en/mapping.h"
66 #include "en/mod_hdr.h"
67 #include "en/tc_priv.h"
68 #include "en/tc_tun_encap.h"
69 #include "esw/sample.h"
70 #include "lib/devcom.h"
71 #include "lib/geneve.h"
72 #include "lib/fs_chains.h"
73 #include "diag/en_tc_tracepoint.h"
74 #include <asm/div64.h>
76 #define nic_chains(priv) ((priv)->fs.tc.chains)
77 #define MLX5_MH_ACT_SZ MLX5_UN_SZ_BYTES(set_add_copy_action_in_auto)
79 #define MLX5E_TC_TABLE_NUM_GROUPS 4
80 #define MLX5E_TC_TABLE_MAX_GROUP_SIZE BIT(18)
82 struct mlx5e_tc_attr_to_reg_mapping mlx5e_tc_attr_to_reg_mappings[] = {
84 .mfield = MLX5_ACTION_IN_FIELD_METADATA_REG_C_0,
89 .mfield = MLX5_ACTION_IN_FIELD_METADATA_REG_C_0,
94 .mfield = MLX5_ACTION_IN_FIELD_METADATA_REG_C_1,
96 .mlen = ESW_TUN_OPTS_BITS + ESW_TUN_ID_BITS,
97 .soffset = MLX5_BYTE_OFF(fte_match_param,
98 misc_parameters_2.metadata_reg_c_1),
100 [ZONE_TO_REG] = zone_to_reg_ct,
101 [ZONE_RESTORE_TO_REG] = zone_restore_to_reg_ct,
102 [CTSTATE_TO_REG] = ctstate_to_reg_ct,
103 [MARK_TO_REG] = mark_to_reg_ct,
104 [LABELS_TO_REG] = labels_to_reg_ct,
105 [FTEID_TO_REG] = fteid_to_reg_ct,
106 /* For NIC rules we store the retore metadata directly
107 * into reg_b that is passed to SW since we don't
108 * jump between steering domains.
110 [NIC_CHAIN_TO_REG] = {
111 .mfield = MLX5_ACTION_IN_FIELD_METADATA_REG_B,
115 [NIC_ZONE_RESTORE_TO_REG] = nic_zone_restore_to_reg_ct,
118 /* To avoid false lock dependency warning set the tc_ht lock
119 * class different than the lock class of the ht being used when deleting
120 * last flow from a group and then deleting a group, we get into del_sw_flow_group()
121 * which call rhashtable_destroy on fg->ftes_hash which will take ht->mutex but
122 * it's different than the ht->mutex here.
124 static struct lock_class_key tc_ht_lock_key;
126 static void mlx5e_put_flow_tunnel_id(struct mlx5e_tc_flow *flow);
129 mlx5e_tc_match_to_reg_match(struct mlx5_flow_spec *spec,
130 enum mlx5e_tc_attr_to_reg type,
134 void *headers_c = spec->match_criteria, *headers_v = spec->match_value, *fmask, *fval;
135 int soffset = mlx5e_tc_attr_to_reg_mappings[type].soffset;
136 int moffset = mlx5e_tc_attr_to_reg_mappings[type].moffset;
137 int match_len = mlx5e_tc_attr_to_reg_mappings[type].mlen;
138 u32 max_mask = GENMASK(match_len - 1, 0);
139 __be32 curr_mask_be, curr_val_be;
140 u32 curr_mask, curr_val;
142 fmask = headers_c + soffset;
143 fval = headers_v + soffset;
145 memcpy(&curr_mask_be, fmask, 4);
146 memcpy(&curr_val_be, fval, 4);
148 curr_mask = be32_to_cpu(curr_mask_be);
149 curr_val = be32_to_cpu(curr_val_be);
151 //move to correct offset
152 WARN_ON(mask > max_mask);
155 max_mask <<= moffset;
158 curr_mask &= ~max_mask;
159 curr_val &= ~max_mask;
161 //add current to mask
165 //back to be32 and write
166 curr_mask_be = cpu_to_be32(curr_mask);
167 curr_val_be = cpu_to_be32(curr_val);
169 memcpy(fmask, &curr_mask_be, 4);
170 memcpy(fval, &curr_val_be, 4);
172 spec->match_criteria_enable |= MLX5_MATCH_MISC_PARAMETERS_2;
176 mlx5e_tc_match_to_reg_get_match(struct mlx5_flow_spec *spec,
177 enum mlx5e_tc_attr_to_reg type,
181 void *headers_c = spec->match_criteria, *headers_v = spec->match_value, *fmask, *fval;
182 int soffset = mlx5e_tc_attr_to_reg_mappings[type].soffset;
183 int moffset = mlx5e_tc_attr_to_reg_mappings[type].moffset;
184 int match_len = mlx5e_tc_attr_to_reg_mappings[type].mlen;
185 u32 max_mask = GENMASK(match_len - 1, 0);
186 __be32 curr_mask_be, curr_val_be;
187 u32 curr_mask, curr_val;
189 fmask = headers_c + soffset;
190 fval = headers_v + soffset;
192 memcpy(&curr_mask_be, fmask, 4);
193 memcpy(&curr_val_be, fval, 4);
195 curr_mask = be32_to_cpu(curr_mask_be);
196 curr_val = be32_to_cpu(curr_val_be);
198 *mask = (curr_mask >> moffset) & max_mask;
199 *val = (curr_val >> moffset) & max_mask;
203 mlx5e_tc_match_to_reg_set_and_get_id(struct mlx5_core_dev *mdev,
204 struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts,
205 enum mlx5_flow_namespace_type ns,
206 enum mlx5e_tc_attr_to_reg type,
209 int moffset = mlx5e_tc_attr_to_reg_mappings[type].moffset;
210 int mfield = mlx5e_tc_attr_to_reg_mappings[type].mfield;
211 int mlen = mlx5e_tc_attr_to_reg_mappings[type].mlen;
215 err = alloc_mod_hdr_actions(mdev, ns, mod_hdr_acts);
219 modact = mod_hdr_acts->actions +
220 (mod_hdr_acts->num_actions * MLX5_MH_ACT_SZ);
222 /* Firmware has 5bit length field and 0 means 32bits */
226 MLX5_SET(set_action_in, modact, action_type, MLX5_ACTION_TYPE_SET);
227 MLX5_SET(set_action_in, modact, field, mfield);
228 MLX5_SET(set_action_in, modact, offset, moffset);
229 MLX5_SET(set_action_in, modact, length, mlen);
230 MLX5_SET(set_action_in, modact, data, data);
231 err = mod_hdr_acts->num_actions;
232 mod_hdr_acts->num_actions++;
237 static struct mlx5_tc_ct_priv *
238 get_ct_priv(struct mlx5e_priv *priv)
240 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
241 struct mlx5_rep_uplink_priv *uplink_priv;
242 struct mlx5e_rep_priv *uplink_rpriv;
244 if (is_mdev_switchdev_mode(priv->mdev)) {
245 uplink_rpriv = mlx5_eswitch_get_uplink_priv(esw, REP_ETH);
246 uplink_priv = &uplink_rpriv->uplink_priv;
248 return uplink_priv->ct_priv;
251 return priv->fs.tc.ct;
254 #if IS_ENABLED(CONFIG_MLX5_TC_SAMPLE)
255 static struct mlx5_esw_psample *
256 get_sample_priv(struct mlx5e_priv *priv)
258 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
259 struct mlx5_rep_uplink_priv *uplink_priv;
260 struct mlx5e_rep_priv *uplink_rpriv;
262 if (is_mdev_switchdev_mode(priv->mdev)) {
263 uplink_rpriv = mlx5_eswitch_get_uplink_priv(esw, REP_ETH);
264 uplink_priv = &uplink_rpriv->uplink_priv;
266 return uplink_priv->esw_psample;
273 struct mlx5_flow_handle *
274 mlx5_tc_rule_insert(struct mlx5e_priv *priv,
275 struct mlx5_flow_spec *spec,
276 struct mlx5_flow_attr *attr)
278 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
280 if (is_mdev_switchdev_mode(priv->mdev))
281 return mlx5_eswitch_add_offloaded_rule(esw, spec, attr);
283 return mlx5e_add_offloaded_nic_rule(priv, spec, attr);
287 mlx5_tc_rule_delete(struct mlx5e_priv *priv,
288 struct mlx5_flow_handle *rule,
289 struct mlx5_flow_attr *attr)
291 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
293 if (is_mdev_switchdev_mode(priv->mdev)) {
294 mlx5_eswitch_del_offloaded_rule(esw, rule, attr);
299 mlx5e_del_offloaded_nic_rule(priv, rule, attr);
303 mlx5e_tc_match_to_reg_set(struct mlx5_core_dev *mdev,
304 struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts,
305 enum mlx5_flow_namespace_type ns,
306 enum mlx5e_tc_attr_to_reg type,
309 int ret = mlx5e_tc_match_to_reg_set_and_get_id(mdev, mod_hdr_acts, ns, type, data);
311 return ret < 0 ? ret : 0;
314 void mlx5e_tc_match_to_reg_mod_hdr_change(struct mlx5_core_dev *mdev,
315 struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts,
316 enum mlx5e_tc_attr_to_reg type,
317 int act_id, u32 data)
319 int moffset = mlx5e_tc_attr_to_reg_mappings[type].moffset;
320 int mfield = mlx5e_tc_attr_to_reg_mappings[type].mfield;
321 int mlen = mlx5e_tc_attr_to_reg_mappings[type].mlen;
324 modact = mod_hdr_acts->actions + (act_id * MLX5_MH_ACT_SZ);
326 /* Firmware has 5bit length field and 0 means 32bits */
330 MLX5_SET(set_action_in, modact, action_type, MLX5_ACTION_TYPE_SET);
331 MLX5_SET(set_action_in, modact, field, mfield);
332 MLX5_SET(set_action_in, modact, offset, moffset);
333 MLX5_SET(set_action_in, modact, length, mlen);
334 MLX5_SET(set_action_in, modact, data, data);
337 struct mlx5e_hairpin {
338 struct mlx5_hairpin *pair;
340 struct mlx5_core_dev *func_mdev;
341 struct mlx5e_priv *func_priv;
346 struct mlx5e_rqt indir_rqt;
347 u32 indir_tirn[MLX5E_NUM_INDIR_TIRS];
348 struct mlx5e_ttc_table ttc;
351 struct mlx5e_hairpin_entry {
352 /* a node of a hash table which keeps all the hairpin entries */
353 struct hlist_node hairpin_hlist;
355 /* protects flows list */
356 spinlock_t flows_lock;
357 /* flows sharing the same hairpin */
358 struct list_head flows;
359 /* hpe's that were not fully initialized when dead peer update event
360 * function traversed them.
362 struct list_head dead_peer_wait_list;
366 struct mlx5e_hairpin *hp;
368 struct completion res_ready;
371 static void mlx5e_tc_del_flow(struct mlx5e_priv *priv,
372 struct mlx5e_tc_flow *flow);
374 struct mlx5e_tc_flow *mlx5e_flow_get(struct mlx5e_tc_flow *flow)
376 if (!flow || !refcount_inc_not_zero(&flow->refcnt))
377 return ERR_PTR(-EINVAL);
381 void mlx5e_flow_put(struct mlx5e_priv *priv, struct mlx5e_tc_flow *flow)
383 if (refcount_dec_and_test(&flow->refcnt)) {
384 mlx5e_tc_del_flow(priv, flow);
385 kfree_rcu(flow, rcu_head);
389 bool mlx5e_is_eswitch_flow(struct mlx5e_tc_flow *flow)
391 return flow_flag_test(flow, ESWITCH);
394 static bool mlx5e_is_ft_flow(struct mlx5e_tc_flow *flow)
396 return flow_flag_test(flow, FT);
399 bool mlx5e_is_offloaded_flow(struct mlx5e_tc_flow *flow)
401 return flow_flag_test(flow, OFFLOADED);
404 static int get_flow_name_space(struct mlx5e_tc_flow *flow)
406 return mlx5e_is_eswitch_flow(flow) ?
407 MLX5_FLOW_NAMESPACE_FDB : MLX5_FLOW_NAMESPACE_KERNEL;
410 static struct mod_hdr_tbl *
411 get_mod_hdr_table(struct mlx5e_priv *priv, struct mlx5e_tc_flow *flow)
413 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
415 return get_flow_name_space(flow) == MLX5_FLOW_NAMESPACE_FDB ?
416 &esw->offloads.mod_hdr :
417 &priv->fs.tc.mod_hdr;
420 static int mlx5e_attach_mod_hdr(struct mlx5e_priv *priv,
421 struct mlx5e_tc_flow *flow,
422 struct mlx5e_tc_flow_parse_attr *parse_attr)
424 struct mlx5_modify_hdr *modify_hdr;
425 struct mlx5e_mod_hdr_handle *mh;
427 mh = mlx5e_mod_hdr_attach(priv->mdev, get_mod_hdr_table(priv, flow),
428 get_flow_name_space(flow),
429 &parse_attr->mod_hdr_acts);
433 modify_hdr = mlx5e_mod_hdr_get(mh);
434 flow->attr->modify_hdr = modify_hdr;
440 static void mlx5e_detach_mod_hdr(struct mlx5e_priv *priv,
441 struct mlx5e_tc_flow *flow)
443 /* flow wasn't fully initialized */
447 mlx5e_mod_hdr_detach(priv->mdev, get_mod_hdr_table(priv, flow),
453 struct mlx5_core_dev *mlx5e_hairpin_get_mdev(struct net *net, int ifindex)
455 struct mlx5_core_dev *mdev;
456 struct net_device *netdev;
457 struct mlx5e_priv *priv;
459 netdev = dev_get_by_index(net, ifindex);
461 return ERR_PTR(-ENODEV);
463 priv = netdev_priv(netdev);
467 /* Mirred tc action holds a refcount on the ifindex net_device (see
468 * net/sched/act_mirred.c:tcf_mirred_get_dev). So, it's okay to continue using mdev
469 * after dev_put(netdev), while we're in the context of adding a tc flow.
471 * The mdev pointer corresponds to the peer/out net_device of a hairpin. It is then
472 * stored in a hairpin object, which exists until all flows, that refer to it, get
475 * On the other hand, after a hairpin object has been created, the peer net_device may
476 * be removed/unbound while there are still some hairpin flows that are using it. This
477 * case is handled by mlx5e_tc_hairpin_update_dead_peer, which is hooked to
478 * NETDEV_UNREGISTER event of the peer net_device.
483 static int mlx5e_hairpin_create_transport(struct mlx5e_hairpin *hp)
485 u32 in[MLX5_ST_SZ_DW(create_tir_in)] = {};
489 err = mlx5_core_alloc_transport_domain(hp->func_mdev, &hp->tdn);
493 tirc = MLX5_ADDR_OF(create_tir_in, in, ctx);
495 MLX5_SET(tirc, tirc, disp_type, MLX5_TIRC_DISP_TYPE_DIRECT);
496 MLX5_SET(tirc, tirc, inline_rqn, hp->pair->rqn[0]);
497 MLX5_SET(tirc, tirc, transport_domain, hp->tdn);
499 err = mlx5_core_create_tir(hp->func_mdev, in, &hp->tirn);
506 mlx5_core_dealloc_transport_domain(hp->func_mdev, hp->tdn);
511 static void mlx5e_hairpin_destroy_transport(struct mlx5e_hairpin *hp)
513 mlx5_core_destroy_tir(hp->func_mdev, hp->tirn);
514 mlx5_core_dealloc_transport_domain(hp->func_mdev, hp->tdn);
517 static int mlx5e_hairpin_fill_rqt_rqns(struct mlx5e_hairpin *hp, void *rqtc)
519 struct mlx5e_priv *priv = hp->func_priv;
520 int i, ix, sz = MLX5E_INDIR_RQT_SIZE;
521 u32 *indirection_rqt, rqn;
523 indirection_rqt = kcalloc(sz, sizeof(*indirection_rqt), GFP_KERNEL);
524 if (!indirection_rqt)
527 mlx5e_build_default_indir_rqt(indirection_rqt, sz,
530 for (i = 0; i < sz; i++) {
532 if (priv->rss_params.hfunc == ETH_RSS_HASH_XOR)
533 ix = mlx5e_bits_invert(i, ilog2(sz));
534 ix = indirection_rqt[ix];
535 rqn = hp->pair->rqn[ix];
536 MLX5_SET(rqtc, rqtc, rq_num[i], rqn);
539 kfree(indirection_rqt);
543 static int mlx5e_hairpin_create_indirect_rqt(struct mlx5e_hairpin *hp)
545 int inlen, err, sz = MLX5E_INDIR_RQT_SIZE;
546 struct mlx5e_priv *priv = hp->func_priv;
547 struct mlx5_core_dev *mdev = priv->mdev;
551 inlen = MLX5_ST_SZ_BYTES(create_rqt_in) + sizeof(u32) * sz;
552 in = kvzalloc(inlen, GFP_KERNEL);
556 rqtc = MLX5_ADDR_OF(create_rqt_in, in, rqt_context);
558 MLX5_SET(rqtc, rqtc, rqt_actual_size, sz);
559 MLX5_SET(rqtc, rqtc, rqt_max_size, sz);
561 err = mlx5e_hairpin_fill_rqt_rqns(hp, rqtc);
565 err = mlx5_core_create_rqt(mdev, in, inlen, &hp->indir_rqt.rqtn);
567 hp->indir_rqt.enabled = true;
574 static int mlx5e_hairpin_create_indirect_tirs(struct mlx5e_hairpin *hp)
576 struct mlx5e_priv *priv = hp->func_priv;
577 u32 in[MLX5_ST_SZ_DW(create_tir_in)];
581 for (tt = 0; tt < MLX5E_NUM_INDIR_TIRS; tt++) {
582 struct mlx5e_tirc_config ttconfig = mlx5e_tirc_get_default_config(tt);
584 memset(in, 0, MLX5_ST_SZ_BYTES(create_tir_in));
585 tirc = MLX5_ADDR_OF(create_tir_in, in, ctx);
587 MLX5_SET(tirc, tirc, transport_domain, hp->tdn);
588 MLX5_SET(tirc, tirc, disp_type, MLX5_TIRC_DISP_TYPE_INDIRECT);
589 MLX5_SET(tirc, tirc, indirect_table, hp->indir_rqt.rqtn);
590 mlx5e_build_indir_tir_ctx_hash(&priv->rss_params, &ttconfig, tirc, false);
592 err = mlx5_core_create_tir(hp->func_mdev, in,
593 &hp->indir_tirn[tt]);
595 mlx5_core_warn(hp->func_mdev, "create indirect tirs failed, %d\n", err);
596 goto err_destroy_tirs;
602 for (i = 0; i < tt; i++)
603 mlx5_core_destroy_tir(hp->func_mdev, hp->indir_tirn[i]);
607 static void mlx5e_hairpin_destroy_indirect_tirs(struct mlx5e_hairpin *hp)
611 for (tt = 0; tt < MLX5E_NUM_INDIR_TIRS; tt++)
612 mlx5_core_destroy_tir(hp->func_mdev, hp->indir_tirn[tt]);
615 static void mlx5e_hairpin_set_ttc_params(struct mlx5e_hairpin *hp,
616 struct ttc_params *ttc_params)
618 struct mlx5_flow_table_attr *ft_attr = &ttc_params->ft_attr;
621 memset(ttc_params, 0, sizeof(*ttc_params));
623 ttc_params->any_tt_tirn = hp->tirn;
625 for (tt = 0; tt < MLX5E_NUM_INDIR_TIRS; tt++)
626 ttc_params->indir_tirn[tt] = hp->indir_tirn[tt];
628 ft_attr->max_fte = MLX5E_TTC_TABLE_SIZE;
629 ft_attr->level = MLX5E_TC_TTC_FT_LEVEL;
630 ft_attr->prio = MLX5E_TC_PRIO;
633 static int mlx5e_hairpin_rss_init(struct mlx5e_hairpin *hp)
635 struct mlx5e_priv *priv = hp->func_priv;
636 struct ttc_params ttc_params;
639 err = mlx5e_hairpin_create_indirect_rqt(hp);
643 err = mlx5e_hairpin_create_indirect_tirs(hp);
645 goto err_create_indirect_tirs;
647 mlx5e_hairpin_set_ttc_params(hp, &ttc_params);
648 err = mlx5e_create_ttc_table(priv, &ttc_params, &hp->ttc);
650 goto err_create_ttc_table;
652 netdev_dbg(priv->netdev, "add hairpin: using %d channels rss ttc table id %x\n",
653 hp->num_channels, hp->ttc.ft.t->id);
657 err_create_ttc_table:
658 mlx5e_hairpin_destroy_indirect_tirs(hp);
659 err_create_indirect_tirs:
660 mlx5e_destroy_rqt(priv, &hp->indir_rqt);
665 static void mlx5e_hairpin_rss_cleanup(struct mlx5e_hairpin *hp)
667 struct mlx5e_priv *priv = hp->func_priv;
669 mlx5e_destroy_ttc_table(priv, &hp->ttc);
670 mlx5e_hairpin_destroy_indirect_tirs(hp);
671 mlx5e_destroy_rqt(priv, &hp->indir_rqt);
674 static struct mlx5e_hairpin *
675 mlx5e_hairpin_create(struct mlx5e_priv *priv, struct mlx5_hairpin_params *params,
678 struct mlx5_core_dev *func_mdev, *peer_mdev;
679 struct mlx5e_hairpin *hp;
680 struct mlx5_hairpin *pair;
683 hp = kzalloc(sizeof(*hp), GFP_KERNEL);
685 return ERR_PTR(-ENOMEM);
687 func_mdev = priv->mdev;
688 peer_mdev = mlx5e_hairpin_get_mdev(dev_net(priv->netdev), peer_ifindex);
689 if (IS_ERR(peer_mdev)) {
690 err = PTR_ERR(peer_mdev);
691 goto create_pair_err;
694 pair = mlx5_core_hairpin_create(func_mdev, peer_mdev, params);
697 goto create_pair_err;
700 hp->func_mdev = func_mdev;
701 hp->func_priv = priv;
702 hp->num_channels = params->num_channels;
704 err = mlx5e_hairpin_create_transport(hp);
706 goto create_transport_err;
708 if (hp->num_channels > 1) {
709 err = mlx5e_hairpin_rss_init(hp);
717 mlx5e_hairpin_destroy_transport(hp);
718 create_transport_err:
719 mlx5_core_hairpin_destroy(hp->pair);
725 static void mlx5e_hairpin_destroy(struct mlx5e_hairpin *hp)
727 if (hp->num_channels > 1)
728 mlx5e_hairpin_rss_cleanup(hp);
729 mlx5e_hairpin_destroy_transport(hp);
730 mlx5_core_hairpin_destroy(hp->pair);
734 static inline u32 hash_hairpin_info(u16 peer_vhca_id, u8 prio)
736 return (peer_vhca_id << 16 | prio);
739 static struct mlx5e_hairpin_entry *mlx5e_hairpin_get(struct mlx5e_priv *priv,
740 u16 peer_vhca_id, u8 prio)
742 struct mlx5e_hairpin_entry *hpe;
743 u32 hash_key = hash_hairpin_info(peer_vhca_id, prio);
745 hash_for_each_possible(priv->fs.tc.hairpin_tbl, hpe,
746 hairpin_hlist, hash_key) {
747 if (hpe->peer_vhca_id == peer_vhca_id && hpe->prio == prio) {
748 refcount_inc(&hpe->refcnt);
756 static void mlx5e_hairpin_put(struct mlx5e_priv *priv,
757 struct mlx5e_hairpin_entry *hpe)
759 /* no more hairpin flows for us, release the hairpin pair */
760 if (!refcount_dec_and_mutex_lock(&hpe->refcnt, &priv->fs.tc.hairpin_tbl_lock))
762 hash_del(&hpe->hairpin_hlist);
763 mutex_unlock(&priv->fs.tc.hairpin_tbl_lock);
765 if (!IS_ERR_OR_NULL(hpe->hp)) {
766 netdev_dbg(priv->netdev, "del hairpin: peer %s\n",
767 dev_name(hpe->hp->pair->peer_mdev->device));
769 mlx5e_hairpin_destroy(hpe->hp);
772 WARN_ON(!list_empty(&hpe->flows));
776 #define UNKNOWN_MATCH_PRIO 8
778 static int mlx5e_hairpin_get_prio(struct mlx5e_priv *priv,
779 struct mlx5_flow_spec *spec, u8 *match_prio,
780 struct netlink_ext_ack *extack)
782 void *headers_c, *headers_v;
783 u8 prio_val, prio_mask = 0;
786 #ifdef CONFIG_MLX5_CORE_EN_DCB
787 if (priv->dcbx_dp.trust_state != MLX5_QPTS_TRUST_PCP) {
788 NL_SET_ERR_MSG_MOD(extack,
789 "only PCP trust state supported for hairpin");
793 headers_c = MLX5_ADDR_OF(fte_match_param, spec->match_criteria, outer_headers);
794 headers_v = MLX5_ADDR_OF(fte_match_param, spec->match_value, outer_headers);
796 vlan_present = MLX5_GET(fte_match_set_lyr_2_4, headers_v, cvlan_tag);
798 prio_mask = MLX5_GET(fte_match_set_lyr_2_4, headers_c, first_prio);
799 prio_val = MLX5_GET(fte_match_set_lyr_2_4, headers_v, first_prio);
802 if (!vlan_present || !prio_mask) {
803 prio_val = UNKNOWN_MATCH_PRIO;
804 } else if (prio_mask != 0x7) {
805 NL_SET_ERR_MSG_MOD(extack,
806 "masked priority match not supported for hairpin");
810 *match_prio = prio_val;
814 static int mlx5e_hairpin_flow_add(struct mlx5e_priv *priv,
815 struct mlx5e_tc_flow *flow,
816 struct mlx5e_tc_flow_parse_attr *parse_attr,
817 struct netlink_ext_ack *extack)
819 int peer_ifindex = parse_attr->mirred_ifindex[0];
820 struct mlx5_hairpin_params params;
821 struct mlx5_core_dev *peer_mdev;
822 struct mlx5e_hairpin_entry *hpe;
823 struct mlx5e_hairpin *hp;
830 peer_mdev = mlx5e_hairpin_get_mdev(dev_net(priv->netdev), peer_ifindex);
831 if (IS_ERR(peer_mdev)) {
832 NL_SET_ERR_MSG_MOD(extack, "invalid ifindex of mirred device");
833 return PTR_ERR(peer_mdev);
836 if (!MLX5_CAP_GEN(priv->mdev, hairpin) || !MLX5_CAP_GEN(peer_mdev, hairpin)) {
837 NL_SET_ERR_MSG_MOD(extack, "hairpin is not supported");
841 peer_id = MLX5_CAP_GEN(peer_mdev, vhca_id);
842 err = mlx5e_hairpin_get_prio(priv, &parse_attr->spec, &match_prio,
847 mutex_lock(&priv->fs.tc.hairpin_tbl_lock);
848 hpe = mlx5e_hairpin_get(priv, peer_id, match_prio);
850 mutex_unlock(&priv->fs.tc.hairpin_tbl_lock);
851 wait_for_completion(&hpe->res_ready);
853 if (IS_ERR(hpe->hp)) {
860 hpe = kzalloc(sizeof(*hpe), GFP_KERNEL);
862 mutex_unlock(&priv->fs.tc.hairpin_tbl_lock);
866 spin_lock_init(&hpe->flows_lock);
867 INIT_LIST_HEAD(&hpe->flows);
868 INIT_LIST_HEAD(&hpe->dead_peer_wait_list);
869 hpe->peer_vhca_id = peer_id;
870 hpe->prio = match_prio;
871 refcount_set(&hpe->refcnt, 1);
872 init_completion(&hpe->res_ready);
874 hash_add(priv->fs.tc.hairpin_tbl, &hpe->hairpin_hlist,
875 hash_hairpin_info(peer_id, match_prio));
876 mutex_unlock(&priv->fs.tc.hairpin_tbl_lock);
878 params.log_data_size = 16;
879 params.log_data_size = min_t(u8, params.log_data_size,
880 MLX5_CAP_GEN(priv->mdev, log_max_hairpin_wq_data_sz));
881 params.log_data_size = max_t(u8, params.log_data_size,
882 MLX5_CAP_GEN(priv->mdev, log_min_hairpin_wq_data_sz));
884 params.log_num_packets = params.log_data_size -
885 MLX5_MPWRQ_MIN_LOG_STRIDE_SZ(priv->mdev);
886 params.log_num_packets = min_t(u8, params.log_num_packets,
887 MLX5_CAP_GEN(priv->mdev, log_max_hairpin_num_packets));
889 params.q_counter = priv->q_counter;
890 /* set hairpin pair per each 50Gbs share of the link */
891 mlx5e_port_max_linkspeed(priv->mdev, &link_speed);
892 link_speed = max_t(u32, link_speed, 50000);
893 link_speed64 = link_speed;
894 do_div(link_speed64, 50000);
895 params.num_channels = link_speed64;
897 hp = mlx5e_hairpin_create(priv, ¶ms, peer_ifindex);
899 complete_all(&hpe->res_ready);
905 netdev_dbg(priv->netdev, "add hairpin: tirn %x rqn %x peer %s sqn %x prio %d (log) data %d packets %d\n",
906 hp->tirn, hp->pair->rqn[0],
907 dev_name(hp->pair->peer_mdev->device),
908 hp->pair->sqn[0], match_prio, params.log_data_size, params.log_num_packets);
911 if (hpe->hp->num_channels > 1) {
912 flow_flag_set(flow, HAIRPIN_RSS);
913 flow->attr->nic_attr->hairpin_ft = hpe->hp->ttc.ft.t;
915 flow->attr->nic_attr->hairpin_tirn = hpe->hp->tirn;
919 spin_lock(&hpe->flows_lock);
920 list_add(&flow->hairpin, &hpe->flows);
921 spin_unlock(&hpe->flows_lock);
926 mlx5e_hairpin_put(priv, hpe);
930 static void mlx5e_hairpin_flow_del(struct mlx5e_priv *priv,
931 struct mlx5e_tc_flow *flow)
933 /* flow wasn't fully initialized */
937 spin_lock(&flow->hpe->flows_lock);
938 list_del(&flow->hairpin);
939 spin_unlock(&flow->hpe->flows_lock);
941 mlx5e_hairpin_put(priv, flow->hpe);
945 struct mlx5_flow_handle *
946 mlx5e_add_offloaded_nic_rule(struct mlx5e_priv *priv,
947 struct mlx5_flow_spec *spec,
948 struct mlx5_flow_attr *attr)
950 struct mlx5_flow_context *flow_context = &spec->flow_context;
951 struct mlx5_fs_chains *nic_chains = nic_chains(priv);
952 struct mlx5_nic_flow_attr *nic_attr = attr->nic_attr;
953 struct mlx5e_tc_table *tc = &priv->fs.tc;
954 struct mlx5_flow_destination dest[2] = {};
955 struct mlx5_flow_act flow_act = {
956 .action = attr->action,
957 .flags = FLOW_ACT_NO_APPEND,
959 struct mlx5_flow_handle *rule;
960 struct mlx5_flow_table *ft;
963 flow_context->flags |= FLOW_CONTEXT_HAS_TAG;
964 flow_context->flow_tag = nic_attr->flow_tag;
967 dest[dest_ix].type = MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE;
968 dest[dest_ix].ft = attr->dest_ft;
970 } else if (nic_attr->hairpin_ft) {
971 dest[dest_ix].type = MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE;
972 dest[dest_ix].ft = nic_attr->hairpin_ft;
974 } else if (nic_attr->hairpin_tirn) {
975 dest[dest_ix].type = MLX5_FLOW_DESTINATION_TYPE_TIR;
976 dest[dest_ix].tir_num = nic_attr->hairpin_tirn;
978 } else if (attr->action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST) {
979 dest[dest_ix].type = MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE;
980 if (attr->dest_chain) {
981 dest[dest_ix].ft = mlx5_chains_get_table(nic_chains,
984 if (IS_ERR(dest[dest_ix].ft))
985 return ERR_CAST(dest[dest_ix].ft);
987 dest[dest_ix].ft = mlx5e_vlan_get_flowtable(priv->fs.vlan);
992 if (dest[0].type == MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE &&
993 MLX5_CAP_FLOWTABLE_NIC_RX(priv->mdev, ignore_flow_level))
994 flow_act.flags |= FLOW_ACT_IGNORE_FLOW_LEVEL;
996 if (flow_act.action & MLX5_FLOW_CONTEXT_ACTION_COUNT) {
997 dest[dest_ix].type = MLX5_FLOW_DESTINATION_TYPE_COUNTER;
998 dest[dest_ix].counter_id = mlx5_fc_id(attr->counter);
1002 if (attr->action & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR)
1003 flow_act.modify_hdr = attr->modify_hdr;
1005 mutex_lock(&tc->t_lock);
1006 if (IS_ERR_OR_NULL(tc->t)) {
1007 /* Create the root table here if doesn't exist yet */
1009 mlx5_chains_get_table(nic_chains, 0, 1, MLX5E_TC_FT_LEVEL);
1011 if (IS_ERR(tc->t)) {
1012 mutex_unlock(&tc->t_lock);
1013 netdev_err(priv->netdev,
1014 "Failed to create tc offload table\n");
1015 rule = ERR_CAST(priv->fs.tc.t);
1019 mutex_unlock(&tc->t_lock);
1021 if (attr->chain || attr->prio)
1022 ft = mlx5_chains_get_table(nic_chains,
1023 attr->chain, attr->prio,
1029 rule = ERR_CAST(ft);
1033 if (attr->outer_match_level != MLX5_MATCH_NONE)
1034 spec->match_criteria_enable |= MLX5_MATCH_OUTER_HEADERS;
1036 rule = mlx5_add_flow_rules(ft, spec,
1037 &flow_act, dest, dest_ix);
1044 if (attr->chain || attr->prio)
1045 mlx5_chains_put_table(nic_chains,
1046 attr->chain, attr->prio,
1049 if (attr->dest_chain)
1050 mlx5_chains_put_table(nic_chains,
1051 attr->dest_chain, 1,
1054 return ERR_CAST(rule);
1058 mlx5e_tc_add_nic_flow(struct mlx5e_priv *priv,
1059 struct mlx5e_tc_flow_parse_attr *parse_attr,
1060 struct mlx5e_tc_flow *flow,
1061 struct netlink_ext_ack *extack)
1063 struct mlx5_flow_attr *attr = flow->attr;
1064 struct mlx5_core_dev *dev = priv->mdev;
1065 struct mlx5_fc *counter = NULL;
1068 if (flow_flag_test(flow, HAIRPIN)) {
1069 err = mlx5e_hairpin_flow_add(priv, flow, parse_attr, extack);
1074 if (attr->action & MLX5_FLOW_CONTEXT_ACTION_COUNT) {
1075 counter = mlx5_fc_create(dev, true);
1076 if (IS_ERR(counter))
1077 return PTR_ERR(counter);
1079 attr->counter = counter;
1082 if (attr->action & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR) {
1083 err = mlx5e_attach_mod_hdr(priv, flow, parse_attr);
1084 dealloc_mod_hdr_actions(&parse_attr->mod_hdr_acts);
1089 if (flow_flag_test(flow, CT))
1090 flow->rule[0] = mlx5_tc_ct_flow_offload(get_ct_priv(priv), flow, &parse_attr->spec,
1091 attr, &parse_attr->mod_hdr_acts);
1093 flow->rule[0] = mlx5e_add_offloaded_nic_rule(priv, &parse_attr->spec,
1096 return PTR_ERR_OR_ZERO(flow->rule[0]);
1099 void mlx5e_del_offloaded_nic_rule(struct mlx5e_priv *priv,
1100 struct mlx5_flow_handle *rule,
1101 struct mlx5_flow_attr *attr)
1103 struct mlx5_fs_chains *nic_chains = nic_chains(priv);
1105 mlx5_del_flow_rules(rule);
1107 if (attr->chain || attr->prio)
1108 mlx5_chains_put_table(nic_chains, attr->chain, attr->prio,
1111 if (attr->dest_chain)
1112 mlx5_chains_put_table(nic_chains, attr->dest_chain, 1,
1116 static void mlx5e_tc_del_nic_flow(struct mlx5e_priv *priv,
1117 struct mlx5e_tc_flow *flow)
1119 struct mlx5_flow_attr *attr = flow->attr;
1120 struct mlx5e_tc_table *tc = &priv->fs.tc;
1122 flow_flag_clear(flow, OFFLOADED);
1124 if (flow_flag_test(flow, CT))
1125 mlx5_tc_ct_delete_flow(get_ct_priv(flow->priv), flow, attr);
1126 else if (!IS_ERR_OR_NULL(flow->rule[0]))
1127 mlx5e_del_offloaded_nic_rule(priv, flow->rule[0], attr);
1129 /* Remove root table if no rules are left to avoid
1130 * extra steering hops.
1132 mutex_lock(&priv->fs.tc.t_lock);
1133 if (!mlx5e_tc_num_filters(priv, MLX5_TC_FLAG(NIC_OFFLOAD)) &&
1134 !IS_ERR_OR_NULL(tc->t)) {
1135 mlx5_chains_put_table(nic_chains(priv), 0, 1, MLX5E_TC_FT_LEVEL);
1136 priv->fs.tc.t = NULL;
1138 mutex_unlock(&priv->fs.tc.t_lock);
1140 kvfree(attr->parse_attr);
1142 if (attr->action & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR)
1143 mlx5e_detach_mod_hdr(priv, flow);
1145 mlx5_fc_destroy(priv->mdev, attr->counter);
1147 if (flow_flag_test(flow, HAIRPIN))
1148 mlx5e_hairpin_flow_del(priv, flow);
1153 struct mlx5_flow_handle *
1154 mlx5e_tc_offload_fdb_rules(struct mlx5_eswitch *esw,
1155 struct mlx5e_tc_flow *flow,
1156 struct mlx5_flow_spec *spec,
1157 struct mlx5_flow_attr *attr)
1159 struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts;
1160 struct mlx5_flow_handle *rule;
1162 if (attr->flags & MLX5_ESW_ATTR_FLAG_SLOW_PATH)
1163 return mlx5_eswitch_add_offloaded_rule(esw, spec, attr);
1165 if (flow_flag_test(flow, CT)) {
1166 mod_hdr_acts = &attr->parse_attr->mod_hdr_acts;
1168 rule = mlx5_tc_ct_flow_offload(get_ct_priv(flow->priv),
1171 #if IS_ENABLED(CONFIG_MLX5_TC_SAMPLE)
1172 } else if (flow_flag_test(flow, SAMPLE)) {
1173 rule = mlx5_esw_sample_offload(get_sample_priv(flow->priv), spec, attr);
1176 rule = mlx5_eswitch_add_offloaded_rule(esw, spec, attr);
1182 if (attr->esw_attr->split_count) {
1183 flow->rule[1] = mlx5_eswitch_add_fwd_rule(esw, spec, attr);
1184 if (IS_ERR(flow->rule[1])) {
1185 if (flow_flag_test(flow, CT))
1186 mlx5_tc_ct_delete_flow(get_ct_priv(flow->priv), flow, attr);
1188 mlx5_eswitch_del_offloaded_rule(esw, rule, attr);
1189 return flow->rule[1];
1196 void mlx5e_tc_unoffload_fdb_rules(struct mlx5_eswitch *esw,
1197 struct mlx5e_tc_flow *flow,
1198 struct mlx5_flow_attr *attr)
1200 flow_flag_clear(flow, OFFLOADED);
1202 if (attr->flags & MLX5_ESW_ATTR_FLAG_SLOW_PATH)
1203 goto offload_rule_0;
1205 if (flow_flag_test(flow, CT)) {
1206 mlx5_tc_ct_delete_flow(get_ct_priv(flow->priv), flow, attr);
1210 #if IS_ENABLED(CONFIG_MLX5_TC_SAMPLE)
1211 if (flow_flag_test(flow, SAMPLE)) {
1212 mlx5_esw_sample_unoffload(get_sample_priv(flow->priv), flow->rule[0], attr);
1217 if (attr->esw_attr->split_count)
1218 mlx5_eswitch_del_fwd_rule(esw, flow->rule[1], attr);
1221 mlx5_eswitch_del_offloaded_rule(esw, flow->rule[0], attr);
1224 struct mlx5_flow_handle *
1225 mlx5e_tc_offload_to_slow_path(struct mlx5_eswitch *esw,
1226 struct mlx5e_tc_flow *flow,
1227 struct mlx5_flow_spec *spec)
1229 struct mlx5_flow_attr *slow_attr;
1230 struct mlx5_flow_handle *rule;
1232 slow_attr = mlx5_alloc_flow_attr(MLX5_FLOW_NAMESPACE_FDB);
1234 return ERR_PTR(-ENOMEM);
1236 memcpy(slow_attr, flow->attr, ESW_FLOW_ATTR_SZ);
1237 slow_attr->action = MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
1238 slow_attr->esw_attr->split_count = 0;
1239 slow_attr->flags |= MLX5_ESW_ATTR_FLAG_SLOW_PATH;
1241 rule = mlx5e_tc_offload_fdb_rules(esw, flow, spec, slow_attr);
1243 flow_flag_set(flow, SLOW);
1250 void mlx5e_tc_unoffload_from_slow_path(struct mlx5_eswitch *esw,
1251 struct mlx5e_tc_flow *flow)
1253 struct mlx5_flow_attr *slow_attr;
1255 slow_attr = mlx5_alloc_flow_attr(MLX5_FLOW_NAMESPACE_FDB);
1257 mlx5_core_warn(flow->priv->mdev, "Unable to alloc attr to unoffload slow path rule\n");
1261 memcpy(slow_attr, flow->attr, ESW_FLOW_ATTR_SZ);
1262 slow_attr->action = MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
1263 slow_attr->esw_attr->split_count = 0;
1264 slow_attr->flags |= MLX5_ESW_ATTR_FLAG_SLOW_PATH;
1265 mlx5e_tc_unoffload_fdb_rules(esw, flow, slow_attr);
1266 flow_flag_clear(flow, SLOW);
1270 /* Caller must obtain uplink_priv->unready_flows_lock mutex before calling this
1273 static void unready_flow_add(struct mlx5e_tc_flow *flow,
1274 struct list_head *unready_flows)
1276 flow_flag_set(flow, NOT_READY);
1277 list_add_tail(&flow->unready, unready_flows);
1280 /* Caller must obtain uplink_priv->unready_flows_lock mutex before calling this
1283 static void unready_flow_del(struct mlx5e_tc_flow *flow)
1285 list_del(&flow->unready);
1286 flow_flag_clear(flow, NOT_READY);
1289 static void add_unready_flow(struct mlx5e_tc_flow *flow)
1291 struct mlx5_rep_uplink_priv *uplink_priv;
1292 struct mlx5e_rep_priv *rpriv;
1293 struct mlx5_eswitch *esw;
1295 esw = flow->priv->mdev->priv.eswitch;
1296 rpriv = mlx5_eswitch_get_uplink_priv(esw, REP_ETH);
1297 uplink_priv = &rpriv->uplink_priv;
1299 mutex_lock(&uplink_priv->unready_flows_lock);
1300 unready_flow_add(flow, &uplink_priv->unready_flows);
1301 mutex_unlock(&uplink_priv->unready_flows_lock);
1304 static void remove_unready_flow(struct mlx5e_tc_flow *flow)
1306 struct mlx5_rep_uplink_priv *uplink_priv;
1307 struct mlx5e_rep_priv *rpriv;
1308 struct mlx5_eswitch *esw;
1310 esw = flow->priv->mdev->priv.eswitch;
1311 rpriv = mlx5_eswitch_get_uplink_priv(esw, REP_ETH);
1312 uplink_priv = &rpriv->uplink_priv;
1314 mutex_lock(&uplink_priv->unready_flows_lock);
1315 unready_flow_del(flow);
1316 mutex_unlock(&uplink_priv->unready_flows_lock);
1319 static bool same_hw_devs(struct mlx5e_priv *priv, struct mlx5e_priv *peer_priv);
1321 bool mlx5e_tc_is_vf_tunnel(struct net_device *out_dev, struct net_device *route_dev)
1323 struct mlx5_core_dev *out_mdev, *route_mdev;
1324 struct mlx5e_priv *out_priv, *route_priv;
1326 out_priv = netdev_priv(out_dev);
1327 out_mdev = out_priv->mdev;
1328 route_priv = netdev_priv(route_dev);
1329 route_mdev = route_priv->mdev;
1331 if (out_mdev->coredev_type != MLX5_COREDEV_PF ||
1332 route_mdev->coredev_type != MLX5_COREDEV_VF)
1335 return same_hw_devs(out_priv, route_priv);
1338 int mlx5e_tc_query_route_vport(struct net_device *out_dev, struct net_device *route_dev, u16 *vport)
1340 struct mlx5e_priv *out_priv, *route_priv;
1341 struct mlx5_core_dev *route_mdev;
1342 struct mlx5_eswitch *esw;
1346 out_priv = netdev_priv(out_dev);
1347 esw = out_priv->mdev->priv.eswitch;
1348 route_priv = netdev_priv(route_dev);
1349 route_mdev = route_priv->mdev;
1351 vhca_id = MLX5_CAP_GEN(route_mdev, vhca_id);
1352 err = mlx5_eswitch_vhca_id_to_vport(esw, vhca_id, vport);
1356 int mlx5e_tc_add_flow_mod_hdr(struct mlx5e_priv *priv,
1357 struct mlx5e_tc_flow_parse_attr *parse_attr,
1358 struct mlx5e_tc_flow *flow)
1360 struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts = &parse_attr->mod_hdr_acts;
1361 struct mlx5_modify_hdr *mod_hdr;
1363 mod_hdr = mlx5_modify_header_alloc(priv->mdev,
1364 get_flow_name_space(flow),
1365 mod_hdr_acts->num_actions,
1366 mod_hdr_acts->actions);
1367 if (IS_ERR(mod_hdr))
1368 return PTR_ERR(mod_hdr);
1370 WARN_ON(flow->attr->modify_hdr);
1371 flow->attr->modify_hdr = mod_hdr;
1377 mlx5e_tc_add_fdb_flow(struct mlx5e_priv *priv,
1378 struct mlx5e_tc_flow *flow,
1379 struct netlink_ext_ack *extack)
1381 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
1382 struct mlx5e_tc_flow_parse_attr *parse_attr;
1383 struct mlx5_flow_attr *attr = flow->attr;
1384 bool vf_tun = false, encap_valid = true;
1385 struct net_device *encap_dev = NULL;
1386 struct mlx5_esw_flow_attr *esw_attr;
1387 struct mlx5_fc *counter = NULL;
1388 struct mlx5e_rep_priv *rpriv;
1389 struct mlx5e_priv *out_priv;
1390 u32 max_prio, max_chain;
1394 /* We check chain range only for tc flows.
1395 * For ft flows, we checked attr->chain was originally 0 and set it to
1396 * FDB_FT_CHAIN which is outside tc range.
1397 * See mlx5e_rep_setup_ft_cb().
1399 max_chain = mlx5_chains_get_chain_range(esw_chains(esw));
1400 if (!mlx5e_is_ft_flow(flow) && attr->chain > max_chain) {
1401 NL_SET_ERR_MSG_MOD(extack,
1402 "Requested chain is out of supported range");
1407 max_prio = mlx5_chains_get_prio_range(esw_chains(esw));
1408 if (attr->prio > max_prio) {
1409 NL_SET_ERR_MSG_MOD(extack,
1410 "Requested priority is out of supported range");
1415 if (flow_flag_test(flow, TUN_RX)) {
1416 err = mlx5e_attach_decap_route(priv, flow);
1421 if (flow_flag_test(flow, L3_TO_L2_DECAP)) {
1422 err = mlx5e_attach_decap(priv, flow, extack);
1427 parse_attr = attr->parse_attr;
1428 esw_attr = attr->esw_attr;
1430 for (out_index = 0; out_index < MLX5_MAX_FLOW_FWD_VPORTS; out_index++) {
1431 struct net_device *out_dev;
1434 if (!(esw_attr->dests[out_index].flags & MLX5_ESW_DEST_ENCAP))
1437 mirred_ifindex = parse_attr->mirred_ifindex[out_index];
1438 out_dev = dev_get_by_index(dev_net(priv->netdev), mirred_ifindex);
1440 NL_SET_ERR_MSG_MOD(extack, "Requested mirred device not found");
1444 err = mlx5e_attach_encap(priv, flow, out_dev, out_index,
1445 extack, &encap_dev, &encap_valid);
1450 if (esw_attr->dests[out_index].flags &
1451 MLX5_ESW_DEST_CHAIN_WITH_SRC_PORT_CHANGE)
1453 out_priv = netdev_priv(encap_dev);
1454 rpriv = out_priv->ppriv;
1455 esw_attr->dests[out_index].rep = rpriv->rep;
1456 esw_attr->dests[out_index].mdev = out_priv->mdev;
1459 if (vf_tun && esw_attr->out_count > 1) {
1460 NL_SET_ERR_MSG_MOD(extack, "VF tunnel encap with mirroring is not supported");
1465 err = mlx5_eswitch_add_vlan_action(esw, attr);
1469 if (attr->action & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR &&
1470 !(attr->ct_attr.ct_action & TCA_CT_ACT_CLEAR)) {
1472 err = mlx5e_tc_add_flow_mod_hdr(priv, parse_attr, flow);
1476 err = mlx5e_attach_mod_hdr(priv, flow, parse_attr);
1482 if (attr->action & MLX5_FLOW_CONTEXT_ACTION_COUNT) {
1483 counter = mlx5_fc_create(esw_attr->counter_dev, true);
1484 if (IS_ERR(counter)) {
1485 err = PTR_ERR(counter);
1489 attr->counter = counter;
1492 /* we get here if one of the following takes place:
1493 * (1) there's no error
1494 * (2) there's an encap action and we don't have valid neigh
1497 flow->rule[0] = mlx5e_tc_offload_to_slow_path(esw, flow, &parse_attr->spec);
1499 flow->rule[0] = mlx5e_tc_offload_fdb_rules(esw, flow, &parse_attr->spec, attr);
1501 if (IS_ERR(flow->rule[0])) {
1502 err = PTR_ERR(flow->rule[0]);
1505 flow_flag_set(flow, OFFLOADED);
1510 flow_flag_set(flow, FAILED);
1514 static bool mlx5_flow_has_geneve_opt(struct mlx5e_tc_flow *flow)
1516 struct mlx5_flow_spec *spec = &flow->attr->parse_attr->spec;
1517 void *headers_v = MLX5_ADDR_OF(fte_match_param,
1520 u32 geneve_tlv_opt_0_data = MLX5_GET(fte_match_set_misc3,
1522 geneve_tlv_option_0_data);
1524 return !!geneve_tlv_opt_0_data;
1527 static void mlx5e_tc_del_fdb_flow(struct mlx5e_priv *priv,
1528 struct mlx5e_tc_flow *flow)
1530 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
1531 struct mlx5_flow_attr *attr = flow->attr;
1532 struct mlx5_esw_flow_attr *esw_attr;
1533 bool vf_tun = false;
1536 esw_attr = attr->esw_attr;
1537 mlx5e_put_flow_tunnel_id(flow);
1539 if (flow_flag_test(flow, NOT_READY))
1540 remove_unready_flow(flow);
1542 if (mlx5e_is_offloaded_flow(flow)) {
1543 if (flow_flag_test(flow, SLOW))
1544 mlx5e_tc_unoffload_from_slow_path(esw, flow);
1546 mlx5e_tc_unoffload_fdb_rules(esw, flow, attr);
1549 if (mlx5_flow_has_geneve_opt(flow))
1550 mlx5_geneve_tlv_option_del(priv->mdev->geneve);
1552 mlx5_eswitch_del_vlan_action(esw, attr);
1554 if (flow->decap_route)
1555 mlx5e_detach_decap_route(priv, flow);
1557 for (out_index = 0; out_index < MLX5_MAX_FLOW_FWD_VPORTS; out_index++) {
1558 if (esw_attr->dests[out_index].flags &
1559 MLX5_ESW_DEST_CHAIN_WITH_SRC_PORT_CHANGE)
1561 if (esw_attr->dests[out_index].flags & MLX5_ESW_DEST_ENCAP) {
1562 mlx5e_detach_encap(priv, flow, out_index);
1563 kfree(attr->parse_attr->tun_info[out_index]);
1567 mlx5_tc_ct_match_del(get_ct_priv(priv), &flow->attr->ct_attr);
1569 if (attr->action & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR) {
1570 dealloc_mod_hdr_actions(&attr->parse_attr->mod_hdr_acts);
1571 if (vf_tun && attr->modify_hdr)
1572 mlx5_modify_header_dealloc(priv->mdev, attr->modify_hdr);
1574 mlx5e_detach_mod_hdr(priv, flow);
1576 kvfree(attr->parse_attr);
1577 kvfree(attr->esw_attr->rx_tun_attr);
1579 if (attr->action & MLX5_FLOW_CONTEXT_ACTION_COUNT)
1580 mlx5_fc_destroy(esw_attr->counter_dev, attr->counter);
1582 if (flow_flag_test(flow, L3_TO_L2_DECAP))
1583 mlx5e_detach_decap(priv, flow);
1585 kfree(flow->attr->esw_attr->sample);
1589 struct mlx5_fc *mlx5e_tc_get_counter(struct mlx5e_tc_flow *flow)
1591 return flow->attr->counter;
1594 /* Iterate over tmp_list of flows attached to flow_list head. */
1595 void mlx5e_put_flow_list(struct mlx5e_priv *priv, struct list_head *flow_list)
1597 struct mlx5e_tc_flow *flow, *tmp;
1599 list_for_each_entry_safe(flow, tmp, flow_list, tmp_list)
1600 mlx5e_flow_put(priv, flow);
1603 static void __mlx5e_tc_del_fdb_peer_flow(struct mlx5e_tc_flow *flow)
1605 struct mlx5_eswitch *esw = flow->priv->mdev->priv.eswitch;
1607 if (!flow_flag_test(flow, ESWITCH) ||
1608 !flow_flag_test(flow, DUP))
1611 mutex_lock(&esw->offloads.peer_mutex);
1612 list_del(&flow->peer);
1613 mutex_unlock(&esw->offloads.peer_mutex);
1615 flow_flag_clear(flow, DUP);
1617 if (refcount_dec_and_test(&flow->peer_flow->refcnt)) {
1618 mlx5e_tc_del_fdb_flow(flow->peer_flow->priv, flow->peer_flow);
1619 kfree(flow->peer_flow);
1622 flow->peer_flow = NULL;
1625 static void mlx5e_tc_del_fdb_peer_flow(struct mlx5e_tc_flow *flow)
1627 struct mlx5_core_dev *dev = flow->priv->mdev;
1628 struct mlx5_devcom *devcom = dev->priv.devcom;
1629 struct mlx5_eswitch *peer_esw;
1631 peer_esw = mlx5_devcom_get_peer_data(devcom, MLX5_DEVCOM_ESW_OFFLOADS);
1635 __mlx5e_tc_del_fdb_peer_flow(flow);
1636 mlx5_devcom_release_peer_data(devcom, MLX5_DEVCOM_ESW_OFFLOADS);
1639 static void mlx5e_tc_del_flow(struct mlx5e_priv *priv,
1640 struct mlx5e_tc_flow *flow)
1642 if (mlx5e_is_eswitch_flow(flow)) {
1643 mlx5e_tc_del_fdb_peer_flow(flow);
1644 mlx5e_tc_del_fdb_flow(priv, flow);
1646 mlx5e_tc_del_nic_flow(priv, flow);
1650 static int flow_has_tc_fwd_action(struct flow_cls_offload *f)
1652 struct flow_rule *rule = flow_cls_offload_flow_rule(f);
1653 struct flow_action *flow_action = &rule->action;
1654 const struct flow_action_entry *act;
1657 flow_action_for_each(i, act, flow_action) {
1659 case FLOW_ACTION_GOTO:
1670 enc_opts_is_dont_care_or_full_match(struct mlx5e_priv *priv,
1671 struct flow_dissector_key_enc_opts *opts,
1672 struct netlink_ext_ack *extack,
1675 struct geneve_opt *opt;
1680 while (opts->len > off) {
1681 opt = (struct geneve_opt *)&opts->data[off];
1683 if (!(*dont_care) || opt->opt_class || opt->type ||
1684 memchr_inv(opt->opt_data, 0, opt->length * 4)) {
1687 if (opt->opt_class != htons(U16_MAX) ||
1688 opt->type != U8_MAX) {
1689 NL_SET_ERR_MSG(extack,
1690 "Partial match of tunnel options in chain > 0 isn't supported");
1691 netdev_warn(priv->netdev,
1692 "Partial match of tunnel options in chain > 0 isn't supported");
1697 off += sizeof(struct geneve_opt) + opt->length * 4;
1703 #define COPY_DISSECTOR(rule, diss_key, dst)\
1705 struct flow_rule *__rule = (rule);\
1706 typeof(dst) __dst = dst;\
1709 skb_flow_dissector_target(__rule->match.dissector,\
1711 __rule->match.key),\
1715 static int mlx5e_get_flow_tunnel_id(struct mlx5e_priv *priv,
1716 struct mlx5e_tc_flow *flow,
1717 struct flow_cls_offload *f,
1718 struct net_device *filter_dev)
1720 struct flow_rule *rule = flow_cls_offload_flow_rule(f);
1721 struct netlink_ext_ack *extack = f->common.extack;
1722 struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts;
1723 struct flow_match_enc_opts enc_opts_match;
1724 struct tunnel_match_enc_opts tun_enc_opts;
1725 struct mlx5_rep_uplink_priv *uplink_priv;
1726 struct mlx5_flow_attr *attr = flow->attr;
1727 struct mlx5e_rep_priv *uplink_rpriv;
1728 struct tunnel_match_key tunnel_key;
1729 bool enc_opts_is_dont_care = true;
1730 u32 tun_id, enc_opts_id = 0;
1731 struct mlx5_eswitch *esw;
1735 esw = priv->mdev->priv.eswitch;
1736 uplink_rpriv = mlx5_eswitch_get_uplink_priv(esw, REP_ETH);
1737 uplink_priv = &uplink_rpriv->uplink_priv;
1739 memset(&tunnel_key, 0, sizeof(tunnel_key));
1740 COPY_DISSECTOR(rule, FLOW_DISSECTOR_KEY_ENC_CONTROL,
1741 &tunnel_key.enc_control);
1742 if (tunnel_key.enc_control.addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS)
1743 COPY_DISSECTOR(rule, FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS,
1744 &tunnel_key.enc_ipv4);
1746 COPY_DISSECTOR(rule, FLOW_DISSECTOR_KEY_ENC_IPV6_ADDRS,
1747 &tunnel_key.enc_ipv6);
1748 COPY_DISSECTOR(rule, FLOW_DISSECTOR_KEY_ENC_IP, &tunnel_key.enc_ip);
1749 COPY_DISSECTOR(rule, FLOW_DISSECTOR_KEY_ENC_PORTS,
1750 &tunnel_key.enc_tp);
1751 COPY_DISSECTOR(rule, FLOW_DISSECTOR_KEY_ENC_KEYID,
1752 &tunnel_key.enc_key_id);
1753 tunnel_key.filter_ifindex = filter_dev->ifindex;
1755 err = mapping_add(uplink_priv->tunnel_mapping, &tunnel_key, &tun_id);
1759 flow_rule_match_enc_opts(rule, &enc_opts_match);
1760 err = enc_opts_is_dont_care_or_full_match(priv,
1761 enc_opts_match.mask,
1763 &enc_opts_is_dont_care);
1767 if (!enc_opts_is_dont_care) {
1768 memset(&tun_enc_opts, 0, sizeof(tun_enc_opts));
1769 memcpy(&tun_enc_opts.key, enc_opts_match.key,
1770 sizeof(*enc_opts_match.key));
1771 memcpy(&tun_enc_opts.mask, enc_opts_match.mask,
1772 sizeof(*enc_opts_match.mask));
1774 err = mapping_add(uplink_priv->tunnel_enc_opts_mapping,
1775 &tun_enc_opts, &enc_opts_id);
1780 value = tun_id << ENC_OPTS_BITS | enc_opts_id;
1781 mask = enc_opts_id ? TUNNEL_ID_MASK :
1782 (TUNNEL_ID_MASK & ~ENC_OPTS_BITS_MASK);
1785 mlx5e_tc_match_to_reg_match(&attr->parse_attr->spec,
1786 TUNNEL_TO_REG, value, mask);
1788 mod_hdr_acts = &attr->parse_attr->mod_hdr_acts;
1789 err = mlx5e_tc_match_to_reg_set(priv->mdev,
1790 mod_hdr_acts, MLX5_FLOW_NAMESPACE_FDB,
1791 TUNNEL_TO_REG, value);
1795 attr->action |= MLX5_FLOW_CONTEXT_ACTION_MOD_HDR;
1798 flow->tunnel_id = value;
1803 mapping_remove(uplink_priv->tunnel_enc_opts_mapping,
1806 mapping_remove(uplink_priv->tunnel_mapping, tun_id);
1810 static void mlx5e_put_flow_tunnel_id(struct mlx5e_tc_flow *flow)
1812 u32 enc_opts_id = flow->tunnel_id & ENC_OPTS_BITS_MASK;
1813 u32 tun_id = flow->tunnel_id >> ENC_OPTS_BITS;
1814 struct mlx5_rep_uplink_priv *uplink_priv;
1815 struct mlx5e_rep_priv *uplink_rpriv;
1816 struct mlx5_eswitch *esw;
1818 esw = flow->priv->mdev->priv.eswitch;
1819 uplink_rpriv = mlx5_eswitch_get_uplink_priv(esw, REP_ETH);
1820 uplink_priv = &uplink_rpriv->uplink_priv;
1823 mapping_remove(uplink_priv->tunnel_mapping, tun_id);
1825 mapping_remove(uplink_priv->tunnel_enc_opts_mapping,
1829 u32 mlx5e_tc_get_flow_tun_id(struct mlx5e_tc_flow *flow)
1831 return flow->tunnel_id;
1834 void mlx5e_tc_set_ethertype(struct mlx5_core_dev *mdev,
1835 struct flow_match_basic *match, bool outer,
1836 void *headers_c, void *headers_v)
1838 bool ip_version_cap;
1840 ip_version_cap = outer ?
1841 MLX5_CAP_FLOWTABLE_NIC_RX(mdev,
1842 ft_field_support.outer_ip_version) :
1843 MLX5_CAP_FLOWTABLE_NIC_RX(mdev,
1844 ft_field_support.inner_ip_version);
1846 if (ip_version_cap && match->mask->n_proto == htons(0xFFFF) &&
1847 (match->key->n_proto == htons(ETH_P_IP) ||
1848 match->key->n_proto == htons(ETH_P_IPV6))) {
1849 MLX5_SET_TO_ONES(fte_match_set_lyr_2_4, headers_c, ip_version);
1850 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_version,
1851 match->key->n_proto == htons(ETH_P_IP) ? 4 : 6);
1853 MLX5_SET(fte_match_set_lyr_2_4, headers_c, ethertype,
1854 ntohs(match->mask->n_proto));
1855 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ethertype,
1856 ntohs(match->key->n_proto));
1860 u8 mlx5e_tc_get_ip_version(struct mlx5_flow_spec *spec, bool outer)
1867 headers_v = MLX5_ADDR_OF(fte_match_param, spec->match_value, outer_headers);
1869 headers_v = MLX5_ADDR_OF(fte_match_param, spec->match_value, inner_headers);
1871 ip_version = MLX5_GET(fte_match_set_lyr_2_4, headers_v, ip_version);
1872 /* Return ip_version converted from ethertype anyway */
1874 ethertype = MLX5_GET(fte_match_set_lyr_2_4, headers_v, ethertype);
1875 if (ethertype == ETH_P_IP || ethertype == ETH_P_ARP)
1877 else if (ethertype == ETH_P_IPV6)
1883 static int parse_tunnel_attr(struct mlx5e_priv *priv,
1884 struct mlx5e_tc_flow *flow,
1885 struct mlx5_flow_spec *spec,
1886 struct flow_cls_offload *f,
1887 struct net_device *filter_dev,
1891 struct mlx5e_tc_tunnel *tunnel = mlx5e_get_tc_tun(filter_dev);
1892 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
1893 struct netlink_ext_ack *extack = f->common.extack;
1894 bool needs_mapping, sets_mapping;
1897 if (!mlx5e_is_eswitch_flow(flow))
1900 needs_mapping = !!flow->attr->chain;
1901 sets_mapping = !flow->attr->chain && flow_has_tc_fwd_action(f);
1902 *match_inner = !needs_mapping;
1904 if ((needs_mapping || sets_mapping) &&
1905 !mlx5_eswitch_reg_c1_loopback_enabled(esw)) {
1906 NL_SET_ERR_MSG(extack,
1907 "Chains on tunnel devices isn't supported without register loopback support");
1908 netdev_warn(priv->netdev,
1909 "Chains on tunnel devices isn't supported without register loopback support");
1913 if (!flow->attr->chain) {
1914 err = mlx5e_tc_tun_parse(filter_dev, priv, spec, f,
1917 NL_SET_ERR_MSG_MOD(extack,
1918 "Failed to parse tunnel attributes");
1919 netdev_warn(priv->netdev,
1920 "Failed to parse tunnel attributes");
1924 /* With mpls over udp we decapsulate using packet reformat
1927 if (!netif_is_bareudp(filter_dev))
1928 flow->attr->action |= MLX5_FLOW_CONTEXT_ACTION_DECAP;
1929 err = mlx5e_tc_set_attr_rx_tun(flow, spec);
1932 } else if (tunnel && tunnel->tunnel_type == MLX5E_TC_TUNNEL_TYPE_VXLAN) {
1933 struct mlx5_flow_spec *tmp_spec;
1935 tmp_spec = kvzalloc(sizeof(*tmp_spec), GFP_KERNEL);
1937 NL_SET_ERR_MSG_MOD(extack, "Failed to allocate memory for vxlan tmp spec");
1938 netdev_warn(priv->netdev, "Failed to allocate memory for vxlan tmp spec");
1941 memcpy(tmp_spec, spec, sizeof(*tmp_spec));
1943 err = mlx5e_tc_tun_parse(filter_dev, priv, tmp_spec, f, match_level);
1946 NL_SET_ERR_MSG_MOD(extack, "Failed to parse tunnel attributes");
1947 netdev_warn(priv->netdev, "Failed to parse tunnel attributes");
1950 err = mlx5e_tc_set_attr_rx_tun(flow, tmp_spec);
1956 if (!needs_mapping && !sets_mapping)
1959 return mlx5e_get_flow_tunnel_id(priv, flow, f, filter_dev);
1962 static void *get_match_inner_headers_criteria(struct mlx5_flow_spec *spec)
1964 return MLX5_ADDR_OF(fte_match_param, spec->match_criteria,
1968 static void *get_match_inner_headers_value(struct mlx5_flow_spec *spec)
1970 return MLX5_ADDR_OF(fte_match_param, spec->match_value,
1974 static void *get_match_outer_headers_criteria(struct mlx5_flow_spec *spec)
1976 return MLX5_ADDR_OF(fte_match_param, spec->match_criteria,
1980 static void *get_match_outer_headers_value(struct mlx5_flow_spec *spec)
1982 return MLX5_ADDR_OF(fte_match_param, spec->match_value,
1986 static void *get_match_headers_value(u32 flags,
1987 struct mlx5_flow_spec *spec)
1989 return (flags & MLX5_FLOW_CONTEXT_ACTION_DECAP) ?
1990 get_match_inner_headers_value(spec) :
1991 get_match_outer_headers_value(spec);
1994 static void *get_match_headers_criteria(u32 flags,
1995 struct mlx5_flow_spec *spec)
1997 return (flags & MLX5_FLOW_CONTEXT_ACTION_DECAP) ?
1998 get_match_inner_headers_criteria(spec) :
1999 get_match_outer_headers_criteria(spec);
2002 static int mlx5e_flower_parse_meta(struct net_device *filter_dev,
2003 struct flow_cls_offload *f)
2005 struct flow_rule *rule = flow_cls_offload_flow_rule(f);
2006 struct netlink_ext_ack *extack = f->common.extack;
2007 struct net_device *ingress_dev;
2008 struct flow_match_meta match;
2010 if (!flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_META))
2013 flow_rule_match_meta(rule, &match);
2014 if (!match.mask->ingress_ifindex)
2017 if (match.mask->ingress_ifindex != 0xFFFFFFFF) {
2018 NL_SET_ERR_MSG_MOD(extack, "Unsupported ingress ifindex mask");
2022 ingress_dev = __dev_get_by_index(dev_net(filter_dev),
2023 match.key->ingress_ifindex);
2025 NL_SET_ERR_MSG_MOD(extack,
2026 "Can't find the ingress port to match on");
2030 if (ingress_dev != filter_dev) {
2031 NL_SET_ERR_MSG_MOD(extack,
2032 "Can't match on the ingress filter port");
2039 static bool skip_key_basic(struct net_device *filter_dev,
2040 struct flow_cls_offload *f)
2042 /* When doing mpls over udp decap, the user needs to provide
2043 * MPLS_UC as the protocol in order to be able to match on mpls
2044 * label fields. However, the actual ethertype is IP so we want to
2045 * avoid matching on this, otherwise we'll fail the match.
2047 if (netif_is_bareudp(filter_dev) && f->common.chain_index == 0)
2053 static int __parse_cls_flower(struct mlx5e_priv *priv,
2054 struct mlx5e_tc_flow *flow,
2055 struct mlx5_flow_spec *spec,
2056 struct flow_cls_offload *f,
2057 struct net_device *filter_dev,
2058 u8 *inner_match_level, u8 *outer_match_level)
2060 struct netlink_ext_ack *extack = f->common.extack;
2061 void *headers_c = MLX5_ADDR_OF(fte_match_param, spec->match_criteria,
2063 void *headers_v = MLX5_ADDR_OF(fte_match_param, spec->match_value,
2065 void *misc_c = MLX5_ADDR_OF(fte_match_param, spec->match_criteria,
2067 void *misc_v = MLX5_ADDR_OF(fte_match_param, spec->match_value,
2069 void *misc_c_3 = MLX5_ADDR_OF(fte_match_param, spec->match_criteria,
2071 void *misc_v_3 = MLX5_ADDR_OF(fte_match_param, spec->match_value,
2073 struct flow_rule *rule = flow_cls_offload_flow_rule(f);
2074 struct flow_dissector *dissector = rule->match.dissector;
2075 enum fs_flow_table_type fs_type;
2081 fs_type = mlx5e_is_eswitch_flow(flow) ? FS_FT_FDB : FS_FT_NIC_RX;
2082 match_level = outer_match_level;
2084 if (dissector->used_keys &
2085 ~(BIT(FLOW_DISSECTOR_KEY_META) |
2086 BIT(FLOW_DISSECTOR_KEY_CONTROL) |
2087 BIT(FLOW_DISSECTOR_KEY_BASIC) |
2088 BIT(FLOW_DISSECTOR_KEY_ETH_ADDRS) |
2089 BIT(FLOW_DISSECTOR_KEY_VLAN) |
2090 BIT(FLOW_DISSECTOR_KEY_CVLAN) |
2091 BIT(FLOW_DISSECTOR_KEY_IPV4_ADDRS) |
2092 BIT(FLOW_DISSECTOR_KEY_IPV6_ADDRS) |
2093 BIT(FLOW_DISSECTOR_KEY_PORTS) |
2094 BIT(FLOW_DISSECTOR_KEY_ENC_KEYID) |
2095 BIT(FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS) |
2096 BIT(FLOW_DISSECTOR_KEY_ENC_IPV6_ADDRS) |
2097 BIT(FLOW_DISSECTOR_KEY_ENC_PORTS) |
2098 BIT(FLOW_DISSECTOR_KEY_ENC_CONTROL) |
2099 BIT(FLOW_DISSECTOR_KEY_TCP) |
2100 BIT(FLOW_DISSECTOR_KEY_IP) |
2101 BIT(FLOW_DISSECTOR_KEY_CT) |
2102 BIT(FLOW_DISSECTOR_KEY_ENC_IP) |
2103 BIT(FLOW_DISSECTOR_KEY_ENC_OPTS) |
2104 BIT(FLOW_DISSECTOR_KEY_ICMP) |
2105 BIT(FLOW_DISSECTOR_KEY_MPLS))) {
2106 NL_SET_ERR_MSG_MOD(extack, "Unsupported key");
2107 netdev_dbg(priv->netdev, "Unsupported key used: 0x%x\n",
2108 dissector->used_keys);
2112 if (mlx5e_get_tc_tun(filter_dev)) {
2113 bool match_inner = false;
2115 err = parse_tunnel_attr(priv, flow, spec, f, filter_dev,
2116 outer_match_level, &match_inner);
2121 /* header pointers should point to the inner headers
2122 * if the packet was decapsulated already.
2123 * outer headers are set by parse_tunnel_attr.
2125 match_level = inner_match_level;
2126 headers_c = get_match_inner_headers_criteria(spec);
2127 headers_v = get_match_inner_headers_value(spec);
2131 err = mlx5e_flower_parse_meta(filter_dev, f);
2135 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_BASIC) &&
2136 !skip_key_basic(filter_dev, f)) {
2137 struct flow_match_basic match;
2139 flow_rule_match_basic(rule, &match);
2140 mlx5e_tc_set_ethertype(priv->mdev, &match,
2141 match_level == outer_match_level,
2142 headers_c, headers_v);
2144 if (match.mask->n_proto)
2145 *match_level = MLX5_MATCH_L2;
2147 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_VLAN) ||
2148 is_vlan_dev(filter_dev)) {
2149 struct flow_dissector_key_vlan filter_dev_mask;
2150 struct flow_dissector_key_vlan filter_dev_key;
2151 struct flow_match_vlan match;
2153 if (is_vlan_dev(filter_dev)) {
2154 match.key = &filter_dev_key;
2155 match.key->vlan_id = vlan_dev_vlan_id(filter_dev);
2156 match.key->vlan_tpid = vlan_dev_vlan_proto(filter_dev);
2157 match.key->vlan_priority = 0;
2158 match.mask = &filter_dev_mask;
2159 memset(match.mask, 0xff, sizeof(*match.mask));
2160 match.mask->vlan_priority = 0;
2162 flow_rule_match_vlan(rule, &match);
2164 if (match.mask->vlan_id ||
2165 match.mask->vlan_priority ||
2166 match.mask->vlan_tpid) {
2167 if (match.key->vlan_tpid == htons(ETH_P_8021AD)) {
2168 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
2170 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
2173 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
2175 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
2179 MLX5_SET(fte_match_set_lyr_2_4, headers_c, first_vid,
2180 match.mask->vlan_id);
2181 MLX5_SET(fte_match_set_lyr_2_4, headers_v, first_vid,
2182 match.key->vlan_id);
2184 MLX5_SET(fte_match_set_lyr_2_4, headers_c, first_prio,
2185 match.mask->vlan_priority);
2186 MLX5_SET(fte_match_set_lyr_2_4, headers_v, first_prio,
2187 match.key->vlan_priority);
2189 *match_level = MLX5_MATCH_L2;
2191 } else if (*match_level != MLX5_MATCH_NONE) {
2192 /* cvlan_tag enabled in match criteria and
2193 * disabled in match value means both S & C tags
2194 * don't exist (untagged of both)
2196 MLX5_SET(fte_match_set_lyr_2_4, headers_c, cvlan_tag, 1);
2197 *match_level = MLX5_MATCH_L2;
2200 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_CVLAN)) {
2201 struct flow_match_vlan match;
2203 flow_rule_match_cvlan(rule, &match);
2204 if (match.mask->vlan_id ||
2205 match.mask->vlan_priority ||
2206 match.mask->vlan_tpid) {
2207 if (!MLX5_CAP_FLOWTABLE_TYPE(priv->mdev, ft_field_support.outer_second_vid,
2209 NL_SET_ERR_MSG_MOD(extack,
2210 "Matching on CVLAN is not supported");
2214 if (match.key->vlan_tpid == htons(ETH_P_8021AD)) {
2215 MLX5_SET(fte_match_set_misc, misc_c,
2216 outer_second_svlan_tag, 1);
2217 MLX5_SET(fte_match_set_misc, misc_v,
2218 outer_second_svlan_tag, 1);
2220 MLX5_SET(fte_match_set_misc, misc_c,
2221 outer_second_cvlan_tag, 1);
2222 MLX5_SET(fte_match_set_misc, misc_v,
2223 outer_second_cvlan_tag, 1);
2226 MLX5_SET(fte_match_set_misc, misc_c, outer_second_vid,
2227 match.mask->vlan_id);
2228 MLX5_SET(fte_match_set_misc, misc_v, outer_second_vid,
2229 match.key->vlan_id);
2230 MLX5_SET(fte_match_set_misc, misc_c, outer_second_prio,
2231 match.mask->vlan_priority);
2232 MLX5_SET(fte_match_set_misc, misc_v, outer_second_prio,
2233 match.key->vlan_priority);
2235 *match_level = MLX5_MATCH_L2;
2236 spec->match_criteria_enable |= MLX5_MATCH_MISC_PARAMETERS;
2240 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_ETH_ADDRS)) {
2241 struct flow_match_eth_addrs match;
2243 flow_rule_match_eth_addrs(rule, &match);
2244 ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_c,
2247 ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
2251 ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_c,
2254 ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
2258 if (!is_zero_ether_addr(match.mask->src) ||
2259 !is_zero_ether_addr(match.mask->dst))
2260 *match_level = MLX5_MATCH_L2;
2263 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_CONTROL)) {
2264 struct flow_match_control match;
2266 flow_rule_match_control(rule, &match);
2267 addr_type = match.key->addr_type;
2269 /* the HW doesn't support frag first/later */
2270 if (match.mask->flags & FLOW_DIS_FIRST_FRAG)
2273 if (match.mask->flags & FLOW_DIS_IS_FRAGMENT) {
2274 MLX5_SET(fte_match_set_lyr_2_4, headers_c, frag, 1);
2275 MLX5_SET(fte_match_set_lyr_2_4, headers_v, frag,
2276 match.key->flags & FLOW_DIS_IS_FRAGMENT);
2278 /* the HW doesn't need L3 inline to match on frag=no */
2279 if (!(match.key->flags & FLOW_DIS_IS_FRAGMENT))
2280 *match_level = MLX5_MATCH_L2;
2281 /* *** L2 attributes parsing up to here *** */
2283 *match_level = MLX5_MATCH_L3;
2287 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_BASIC)) {
2288 struct flow_match_basic match;
2290 flow_rule_match_basic(rule, &match);
2291 ip_proto = match.key->ip_proto;
2293 MLX5_SET(fte_match_set_lyr_2_4, headers_c, ip_protocol,
2294 match.mask->ip_proto);
2295 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol,
2296 match.key->ip_proto);
2298 if (match.mask->ip_proto)
2299 *match_level = MLX5_MATCH_L3;
2302 if (addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS) {
2303 struct flow_match_ipv4_addrs match;
2305 flow_rule_match_ipv4_addrs(rule, &match);
2306 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_c,
2307 src_ipv4_src_ipv6.ipv4_layout.ipv4),
2308 &match.mask->src, sizeof(match.mask->src));
2309 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
2310 src_ipv4_src_ipv6.ipv4_layout.ipv4),
2311 &match.key->src, sizeof(match.key->src));
2312 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_c,
2313 dst_ipv4_dst_ipv6.ipv4_layout.ipv4),
2314 &match.mask->dst, sizeof(match.mask->dst));
2315 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
2316 dst_ipv4_dst_ipv6.ipv4_layout.ipv4),
2317 &match.key->dst, sizeof(match.key->dst));
2319 if (match.mask->src || match.mask->dst)
2320 *match_level = MLX5_MATCH_L3;
2323 if (addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS) {
2324 struct flow_match_ipv6_addrs match;
2326 flow_rule_match_ipv6_addrs(rule, &match);
2327 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_c,
2328 src_ipv4_src_ipv6.ipv6_layout.ipv6),
2329 &match.mask->src, sizeof(match.mask->src));
2330 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
2331 src_ipv4_src_ipv6.ipv6_layout.ipv6),
2332 &match.key->src, sizeof(match.key->src));
2334 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_c,
2335 dst_ipv4_dst_ipv6.ipv6_layout.ipv6),
2336 &match.mask->dst, sizeof(match.mask->dst));
2337 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
2338 dst_ipv4_dst_ipv6.ipv6_layout.ipv6),
2339 &match.key->dst, sizeof(match.key->dst));
2341 if (ipv6_addr_type(&match.mask->src) != IPV6_ADDR_ANY ||
2342 ipv6_addr_type(&match.mask->dst) != IPV6_ADDR_ANY)
2343 *match_level = MLX5_MATCH_L3;
2346 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_IP)) {
2347 struct flow_match_ip match;
2349 flow_rule_match_ip(rule, &match);
2350 MLX5_SET(fte_match_set_lyr_2_4, headers_c, ip_ecn,
2351 match.mask->tos & 0x3);
2352 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_ecn,
2353 match.key->tos & 0x3);
2355 MLX5_SET(fte_match_set_lyr_2_4, headers_c, ip_dscp,
2356 match.mask->tos >> 2);
2357 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_dscp,
2358 match.key->tos >> 2);
2360 MLX5_SET(fte_match_set_lyr_2_4, headers_c, ttl_hoplimit,
2362 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ttl_hoplimit,
2365 if (match.mask->ttl &&
2366 !MLX5_CAP_ESW_FLOWTABLE_FDB(priv->mdev,
2367 ft_field_support.outer_ipv4_ttl)) {
2368 NL_SET_ERR_MSG_MOD(extack,
2369 "Matching on TTL is not supported");
2373 if (match.mask->tos || match.mask->ttl)
2374 *match_level = MLX5_MATCH_L3;
2377 /* *** L3 attributes parsing up to here *** */
2379 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_PORTS)) {
2380 struct flow_match_ports match;
2382 flow_rule_match_ports(rule, &match);
2385 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
2386 tcp_sport, ntohs(match.mask->src));
2387 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
2388 tcp_sport, ntohs(match.key->src));
2390 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
2391 tcp_dport, ntohs(match.mask->dst));
2392 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
2393 tcp_dport, ntohs(match.key->dst));
2397 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
2398 udp_sport, ntohs(match.mask->src));
2399 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
2400 udp_sport, ntohs(match.key->src));
2402 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
2403 udp_dport, ntohs(match.mask->dst));
2404 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
2405 udp_dport, ntohs(match.key->dst));
2408 NL_SET_ERR_MSG_MOD(extack,
2409 "Only UDP and TCP transports are supported for L4 matching");
2410 netdev_err(priv->netdev,
2411 "Only UDP and TCP transport are supported\n");
2415 if (match.mask->src || match.mask->dst)
2416 *match_level = MLX5_MATCH_L4;
2419 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_TCP)) {
2420 struct flow_match_tcp match;
2422 flow_rule_match_tcp(rule, &match);
2423 MLX5_SET(fte_match_set_lyr_2_4, headers_c, tcp_flags,
2424 ntohs(match.mask->flags));
2425 MLX5_SET(fte_match_set_lyr_2_4, headers_v, tcp_flags,
2426 ntohs(match.key->flags));
2428 if (match.mask->flags)
2429 *match_level = MLX5_MATCH_L4;
2431 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_ICMP)) {
2432 struct flow_match_icmp match;
2434 flow_rule_match_icmp(rule, &match);
2437 if (!(MLX5_CAP_GEN(priv->mdev, flex_parser_protocols) &
2438 MLX5_FLEX_PROTO_ICMP))
2440 MLX5_SET(fte_match_set_misc3, misc_c_3, icmp_type,
2442 MLX5_SET(fte_match_set_misc3, misc_v_3, icmp_type,
2444 MLX5_SET(fte_match_set_misc3, misc_c_3, icmp_code,
2446 MLX5_SET(fte_match_set_misc3, misc_v_3, icmp_code,
2449 case IPPROTO_ICMPV6:
2450 if (!(MLX5_CAP_GEN(priv->mdev, flex_parser_protocols) &
2451 MLX5_FLEX_PROTO_ICMPV6))
2453 MLX5_SET(fte_match_set_misc3, misc_c_3, icmpv6_type,
2455 MLX5_SET(fte_match_set_misc3, misc_v_3, icmpv6_type,
2457 MLX5_SET(fte_match_set_misc3, misc_c_3, icmpv6_code,
2459 MLX5_SET(fte_match_set_misc3, misc_v_3, icmpv6_code,
2463 NL_SET_ERR_MSG_MOD(extack,
2464 "Code and type matching only with ICMP and ICMPv6");
2465 netdev_err(priv->netdev,
2466 "Code and type matching only with ICMP and ICMPv6\n");
2469 if (match.mask->code || match.mask->type) {
2470 *match_level = MLX5_MATCH_L4;
2471 spec->match_criteria_enable |= MLX5_MATCH_MISC_PARAMETERS_3;
2474 /* Currenlty supported only for MPLS over UDP */
2475 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_MPLS) &&
2476 !netif_is_bareudp(filter_dev)) {
2477 NL_SET_ERR_MSG_MOD(extack,
2478 "Matching on MPLS is supported only for MPLS over UDP");
2479 netdev_err(priv->netdev,
2480 "Matching on MPLS is supported only for MPLS over UDP\n");
2487 static int parse_cls_flower(struct mlx5e_priv *priv,
2488 struct mlx5e_tc_flow *flow,
2489 struct mlx5_flow_spec *spec,
2490 struct flow_cls_offload *f,
2491 struct net_device *filter_dev)
2493 u8 inner_match_level, outer_match_level, non_tunnel_match_level;
2494 struct netlink_ext_ack *extack = f->common.extack;
2495 struct mlx5_core_dev *dev = priv->mdev;
2496 struct mlx5_eswitch *esw = dev->priv.eswitch;
2497 struct mlx5e_rep_priv *rpriv = priv->ppriv;
2498 struct mlx5_eswitch_rep *rep;
2499 bool is_eswitch_flow;
2502 inner_match_level = MLX5_MATCH_NONE;
2503 outer_match_level = MLX5_MATCH_NONE;
2505 err = __parse_cls_flower(priv, flow, spec, f, filter_dev,
2506 &inner_match_level, &outer_match_level);
2507 non_tunnel_match_level = (inner_match_level == MLX5_MATCH_NONE) ?
2508 outer_match_level : inner_match_level;
2510 is_eswitch_flow = mlx5e_is_eswitch_flow(flow);
2511 if (!err && is_eswitch_flow) {
2513 if (rep->vport != MLX5_VPORT_UPLINK &&
2514 (esw->offloads.inline_mode != MLX5_INLINE_MODE_NONE &&
2515 esw->offloads.inline_mode < non_tunnel_match_level)) {
2516 NL_SET_ERR_MSG_MOD(extack,
2517 "Flow is not offloaded due to min inline setting");
2518 netdev_warn(priv->netdev,
2519 "Flow is not offloaded due to min inline setting, required %d actual %d\n",
2520 non_tunnel_match_level, esw->offloads.inline_mode);
2525 flow->attr->inner_match_level = inner_match_level;
2526 flow->attr->outer_match_level = outer_match_level;
2532 struct pedit_headers {
2534 struct vlan_hdr vlan;
2541 struct pedit_headers_action {
2542 struct pedit_headers vals;
2543 struct pedit_headers masks;
2547 static int pedit_header_offsets[] = {
2548 [FLOW_ACT_MANGLE_HDR_TYPE_ETH] = offsetof(struct pedit_headers, eth),
2549 [FLOW_ACT_MANGLE_HDR_TYPE_IP4] = offsetof(struct pedit_headers, ip4),
2550 [FLOW_ACT_MANGLE_HDR_TYPE_IP6] = offsetof(struct pedit_headers, ip6),
2551 [FLOW_ACT_MANGLE_HDR_TYPE_TCP] = offsetof(struct pedit_headers, tcp),
2552 [FLOW_ACT_MANGLE_HDR_TYPE_UDP] = offsetof(struct pedit_headers, udp),
2555 #define pedit_header(_ph, _htype) ((void *)(_ph) + pedit_header_offsets[_htype])
2557 static int set_pedit_val(u8 hdr_type, u32 mask, u32 val, u32 offset,
2558 struct pedit_headers_action *hdrs)
2560 u32 *curr_pmask, *curr_pval;
2562 curr_pmask = (u32 *)(pedit_header(&hdrs->masks, hdr_type) + offset);
2563 curr_pval = (u32 *)(pedit_header(&hdrs->vals, hdr_type) + offset);
2565 if (*curr_pmask & mask) /* disallow acting twice on the same location */
2568 *curr_pmask |= mask;
2569 *curr_pval |= (val & mask);
2577 struct mlx5_fields {
2585 #define OFFLOAD(fw_field, field_bsize, field_mask, field, off, match_field) \
2586 {MLX5_ACTION_IN_FIELD_OUT_ ## fw_field, field_bsize, field_mask, \
2587 offsetof(struct pedit_headers, field) + (off), \
2588 MLX5_BYTE_OFF(fte_match_set_lyr_2_4, match_field)}
2590 /* masked values are the same and there are no rewrites that do not have a
2593 #define SAME_VAL_MASK(type, valp, maskp, matchvalp, matchmaskp) ({ \
2594 type matchmaskx = *(type *)(matchmaskp); \
2595 type matchvalx = *(type *)(matchvalp); \
2596 type maskx = *(type *)(maskp); \
2597 type valx = *(type *)(valp); \
2599 (valx & maskx) == (matchvalx & matchmaskx) && !(maskx & (maskx ^ \
2603 static bool cmp_val_mask(void *valp, void *maskp, void *matchvalp,
2604 void *matchmaskp, u8 bsize)
2610 same = SAME_VAL_MASK(u8, valp, maskp, matchvalp, matchmaskp);
2613 same = SAME_VAL_MASK(u16, valp, maskp, matchvalp, matchmaskp);
2616 same = SAME_VAL_MASK(u32, valp, maskp, matchvalp, matchmaskp);
2623 static struct mlx5_fields fields[] = {
2624 OFFLOAD(DMAC_47_16, 32, U32_MAX, eth.h_dest[0], 0, dmac_47_16),
2625 OFFLOAD(DMAC_15_0, 16, U16_MAX, eth.h_dest[4], 0, dmac_15_0),
2626 OFFLOAD(SMAC_47_16, 32, U32_MAX, eth.h_source[0], 0, smac_47_16),
2627 OFFLOAD(SMAC_15_0, 16, U16_MAX, eth.h_source[4], 0, smac_15_0),
2628 OFFLOAD(ETHERTYPE, 16, U16_MAX, eth.h_proto, 0, ethertype),
2629 OFFLOAD(FIRST_VID, 16, U16_MAX, vlan.h_vlan_TCI, 0, first_vid),
2631 OFFLOAD(IP_DSCP, 8, 0xfc, ip4.tos, 0, ip_dscp),
2632 OFFLOAD(IP_TTL, 8, U8_MAX, ip4.ttl, 0, ttl_hoplimit),
2633 OFFLOAD(SIPV4, 32, U32_MAX, ip4.saddr, 0, src_ipv4_src_ipv6.ipv4_layout.ipv4),
2634 OFFLOAD(DIPV4, 32, U32_MAX, ip4.daddr, 0, dst_ipv4_dst_ipv6.ipv4_layout.ipv4),
2636 OFFLOAD(SIPV6_127_96, 32, U32_MAX, ip6.saddr.s6_addr32[0], 0,
2637 src_ipv4_src_ipv6.ipv6_layout.ipv6[0]),
2638 OFFLOAD(SIPV6_95_64, 32, U32_MAX, ip6.saddr.s6_addr32[1], 0,
2639 src_ipv4_src_ipv6.ipv6_layout.ipv6[4]),
2640 OFFLOAD(SIPV6_63_32, 32, U32_MAX, ip6.saddr.s6_addr32[2], 0,
2641 src_ipv4_src_ipv6.ipv6_layout.ipv6[8]),
2642 OFFLOAD(SIPV6_31_0, 32, U32_MAX, ip6.saddr.s6_addr32[3], 0,
2643 src_ipv4_src_ipv6.ipv6_layout.ipv6[12]),
2644 OFFLOAD(DIPV6_127_96, 32, U32_MAX, ip6.daddr.s6_addr32[0], 0,
2645 dst_ipv4_dst_ipv6.ipv6_layout.ipv6[0]),
2646 OFFLOAD(DIPV6_95_64, 32, U32_MAX, ip6.daddr.s6_addr32[1], 0,
2647 dst_ipv4_dst_ipv6.ipv6_layout.ipv6[4]),
2648 OFFLOAD(DIPV6_63_32, 32, U32_MAX, ip6.daddr.s6_addr32[2], 0,
2649 dst_ipv4_dst_ipv6.ipv6_layout.ipv6[8]),
2650 OFFLOAD(DIPV6_31_0, 32, U32_MAX, ip6.daddr.s6_addr32[3], 0,
2651 dst_ipv4_dst_ipv6.ipv6_layout.ipv6[12]),
2652 OFFLOAD(IPV6_HOPLIMIT, 8, U8_MAX, ip6.hop_limit, 0, ttl_hoplimit),
2653 OFFLOAD(IP_DSCP, 16, 0xc00f, ip6, 0, ip_dscp),
2655 OFFLOAD(TCP_SPORT, 16, U16_MAX, tcp.source, 0, tcp_sport),
2656 OFFLOAD(TCP_DPORT, 16, U16_MAX, tcp.dest, 0, tcp_dport),
2657 /* in linux iphdr tcp_flags is 8 bits long */
2658 OFFLOAD(TCP_FLAGS, 8, U8_MAX, tcp.ack_seq, 5, tcp_flags),
2660 OFFLOAD(UDP_SPORT, 16, U16_MAX, udp.source, 0, udp_sport),
2661 OFFLOAD(UDP_DPORT, 16, U16_MAX, udp.dest, 0, udp_dport),
2664 static unsigned long mask_to_le(unsigned long mask, int size)
2670 mask_be32 = (__force __be32)(mask);
2671 mask = (__force unsigned long)cpu_to_le32(be32_to_cpu(mask_be32));
2672 } else if (size == 16) {
2673 mask_be32 = (__force __be32)(mask);
2674 mask_be16 = *(__be16 *)&mask_be32;
2675 mask = (__force unsigned long)cpu_to_le16(be16_to_cpu(mask_be16));
2680 static int offload_pedit_fields(struct mlx5e_priv *priv,
2682 struct pedit_headers_action *hdrs,
2683 struct mlx5e_tc_flow_parse_attr *parse_attr,
2685 struct netlink_ext_ack *extack)
2687 struct pedit_headers *set_masks, *add_masks, *set_vals, *add_vals;
2688 int i, action_size, first, last, next_z;
2689 void *headers_c, *headers_v, *action, *vals_p;
2690 u32 *s_masks_p, *a_masks_p, s_mask, a_mask;
2691 struct mlx5e_tc_mod_hdr_acts *mod_acts;
2692 struct mlx5_fields *f;
2693 unsigned long mask, field_mask;
2697 mod_acts = &parse_attr->mod_hdr_acts;
2698 headers_c = get_match_headers_criteria(*action_flags, &parse_attr->spec);
2699 headers_v = get_match_headers_value(*action_flags, &parse_attr->spec);
2701 set_masks = &hdrs[0].masks;
2702 add_masks = &hdrs[1].masks;
2703 set_vals = &hdrs[0].vals;
2704 add_vals = &hdrs[1].vals;
2706 action_size = MLX5_UN_SZ_BYTES(set_add_copy_action_in_auto);
2708 for (i = 0; i < ARRAY_SIZE(fields); i++) {
2712 /* avoid seeing bits set from previous iterations */
2716 s_masks_p = (void *)set_masks + f->offset;
2717 a_masks_p = (void *)add_masks + f->offset;
2719 s_mask = *s_masks_p & f->field_mask;
2720 a_mask = *a_masks_p & f->field_mask;
2722 if (!s_mask && !a_mask) /* nothing to offload here */
2725 if (s_mask && a_mask) {
2726 NL_SET_ERR_MSG_MOD(extack,
2727 "can't set and add to the same HW field");
2728 printk(KERN_WARNING "mlx5: can't set and add to the same HW field (%x)\n", f->field);
2734 void *match_mask = headers_c + f->match_offset;
2735 void *match_val = headers_v + f->match_offset;
2737 cmd = MLX5_ACTION_TYPE_SET;
2739 vals_p = (void *)set_vals + f->offset;
2740 /* don't rewrite if we have a match on the same value */
2741 if (cmp_val_mask(vals_p, s_masks_p, match_val,
2742 match_mask, f->field_bsize))
2744 /* clear to denote we consumed this field */
2745 *s_masks_p &= ~f->field_mask;
2747 cmd = MLX5_ACTION_TYPE_ADD;
2749 vals_p = (void *)add_vals + f->offset;
2750 /* add 0 is no change */
2751 if ((*(u32 *)vals_p & f->field_mask) == 0)
2753 /* clear to denote we consumed this field */
2754 *a_masks_p &= ~f->field_mask;
2759 mask = mask_to_le(mask, f->field_bsize);
2761 first = find_first_bit(&mask, f->field_bsize);
2762 next_z = find_next_zero_bit(&mask, f->field_bsize, first);
2763 last = find_last_bit(&mask, f->field_bsize);
2764 if (first < next_z && next_z < last) {
2765 NL_SET_ERR_MSG_MOD(extack,
2766 "rewrite of few sub-fields isn't supported");
2767 printk(KERN_WARNING "mlx5: rewrite of few sub-fields (mask %lx) isn't offloaded\n",
2772 err = alloc_mod_hdr_actions(priv->mdev, namespace, mod_acts);
2774 NL_SET_ERR_MSG_MOD(extack,
2775 "too many pedit actions, can't offload");
2776 mlx5_core_warn(priv->mdev,
2777 "mlx5: parsed %d pedit actions, can't do more\n",
2778 mod_acts->num_actions);
2782 action = mod_acts->actions +
2783 (mod_acts->num_actions * action_size);
2784 MLX5_SET(set_action_in, action, action_type, cmd);
2785 MLX5_SET(set_action_in, action, field, f->field);
2787 if (cmd == MLX5_ACTION_TYPE_SET) {
2790 field_mask = mask_to_le(f->field_mask, f->field_bsize);
2792 /* if field is bit sized it can start not from first bit */
2793 start = find_first_bit(&field_mask, f->field_bsize);
2795 MLX5_SET(set_action_in, action, offset, first - start);
2796 /* length is num of bits to be written, zero means length of 32 */
2797 MLX5_SET(set_action_in, action, length, (last - first + 1));
2800 if (f->field_bsize == 32)
2801 MLX5_SET(set_action_in, action, data, ntohl(*(__be32 *)vals_p) >> first);
2802 else if (f->field_bsize == 16)
2803 MLX5_SET(set_action_in, action, data, ntohs(*(__be16 *)vals_p) >> first);
2804 else if (f->field_bsize == 8)
2805 MLX5_SET(set_action_in, action, data, *(u8 *)vals_p >> first);
2807 ++mod_acts->num_actions;
2813 static int mlx5e_flow_namespace_max_modify_action(struct mlx5_core_dev *mdev,
2816 if (namespace == MLX5_FLOW_NAMESPACE_FDB) /* FDB offloading */
2817 return MLX5_CAP_ESW_FLOWTABLE_FDB(mdev, max_modify_header_actions);
2818 else /* namespace is MLX5_FLOW_NAMESPACE_KERNEL - NIC offloading */
2819 return MLX5_CAP_FLOWTABLE_NIC_RX(mdev, max_modify_header_actions);
2822 int alloc_mod_hdr_actions(struct mlx5_core_dev *mdev,
2824 struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts)
2826 int action_size, new_num_actions, max_hw_actions;
2827 size_t new_sz, old_sz;
2830 if (mod_hdr_acts->num_actions < mod_hdr_acts->max_actions)
2833 action_size = MLX5_UN_SZ_BYTES(set_add_copy_action_in_auto);
2835 max_hw_actions = mlx5e_flow_namespace_max_modify_action(mdev,
2837 new_num_actions = min(max_hw_actions,
2838 mod_hdr_acts->actions ?
2839 mod_hdr_acts->max_actions * 2 : 1);
2840 if (mod_hdr_acts->max_actions == new_num_actions)
2843 new_sz = action_size * new_num_actions;
2844 old_sz = mod_hdr_acts->max_actions * action_size;
2845 ret = krealloc(mod_hdr_acts->actions, new_sz, GFP_KERNEL);
2849 memset(ret + old_sz, 0, new_sz - old_sz);
2850 mod_hdr_acts->actions = ret;
2851 mod_hdr_acts->max_actions = new_num_actions;
2856 void dealloc_mod_hdr_actions(struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts)
2858 kfree(mod_hdr_acts->actions);
2859 mod_hdr_acts->actions = NULL;
2860 mod_hdr_acts->num_actions = 0;
2861 mod_hdr_acts->max_actions = 0;
2864 static const struct pedit_headers zero_masks = {};
2867 parse_pedit_to_modify_hdr(struct mlx5e_priv *priv,
2868 const struct flow_action_entry *act, int namespace,
2869 struct mlx5e_tc_flow_parse_attr *parse_attr,
2870 struct pedit_headers_action *hdrs,
2871 struct netlink_ext_ack *extack)
2873 u8 cmd = (act->id == FLOW_ACTION_MANGLE) ? 0 : 1;
2874 int err = -EOPNOTSUPP;
2875 u32 mask, val, offset;
2878 htype = act->mangle.htype;
2879 err = -EOPNOTSUPP; /* can't be all optimistic */
2881 if (htype == FLOW_ACT_MANGLE_UNSPEC) {
2882 NL_SET_ERR_MSG_MOD(extack, "legacy pedit isn't offloaded");
2886 if (!mlx5e_flow_namespace_max_modify_action(priv->mdev, namespace)) {
2887 NL_SET_ERR_MSG_MOD(extack,
2888 "The pedit offload action is not supported");
2892 mask = act->mangle.mask;
2893 val = act->mangle.val;
2894 offset = act->mangle.offset;
2896 err = set_pedit_val(htype, ~mask, val, offset, &hdrs[cmd]);
2908 parse_pedit_to_reformat(struct mlx5e_priv *priv,
2909 const struct flow_action_entry *act,
2910 struct mlx5e_tc_flow_parse_attr *parse_attr,
2911 struct netlink_ext_ack *extack)
2913 u32 mask, val, offset;
2916 if (act->id != FLOW_ACTION_MANGLE)
2919 if (act->mangle.htype != FLOW_ACT_MANGLE_HDR_TYPE_ETH) {
2920 NL_SET_ERR_MSG_MOD(extack, "Only Ethernet modification is supported");
2924 mask = ~act->mangle.mask;
2925 val = act->mangle.val;
2926 offset = act->mangle.offset;
2927 p = (u32 *)&parse_attr->eth;
2928 *(p + (offset >> 2)) |= (val & mask);
2933 static int parse_tc_pedit_action(struct mlx5e_priv *priv,
2934 const struct flow_action_entry *act, int namespace,
2935 struct mlx5e_tc_flow_parse_attr *parse_attr,
2936 struct pedit_headers_action *hdrs,
2937 struct mlx5e_tc_flow *flow,
2938 struct netlink_ext_ack *extack)
2940 if (flow && flow_flag_test(flow, L3_TO_L2_DECAP))
2941 return parse_pedit_to_reformat(priv, act, parse_attr, extack);
2943 return parse_pedit_to_modify_hdr(priv, act, namespace,
2944 parse_attr, hdrs, extack);
2947 static int alloc_tc_pedit_action(struct mlx5e_priv *priv, int namespace,
2948 struct mlx5e_tc_flow_parse_attr *parse_attr,
2949 struct pedit_headers_action *hdrs,
2951 struct netlink_ext_ack *extack)
2953 struct pedit_headers *cmd_masks;
2957 err = offload_pedit_fields(priv, namespace, hdrs, parse_attr,
2958 action_flags, extack);
2960 goto out_dealloc_parsed_actions;
2962 for (cmd = 0; cmd < __PEDIT_CMD_MAX; cmd++) {
2963 cmd_masks = &hdrs[cmd].masks;
2964 if (memcmp(cmd_masks, &zero_masks, sizeof(zero_masks))) {
2965 NL_SET_ERR_MSG_MOD(extack,
2966 "attempt to offload an unsupported field");
2967 netdev_warn(priv->netdev, "attempt to offload an unsupported field (cmd %d)\n", cmd);
2968 print_hex_dump(KERN_WARNING, "mask: ", DUMP_PREFIX_ADDRESS,
2969 16, 1, cmd_masks, sizeof(zero_masks), true);
2971 goto out_dealloc_parsed_actions;
2977 out_dealloc_parsed_actions:
2978 dealloc_mod_hdr_actions(&parse_attr->mod_hdr_acts);
2982 static bool csum_offload_supported(struct mlx5e_priv *priv,
2985 struct netlink_ext_ack *extack)
2987 u32 prot_flags = TCA_CSUM_UPDATE_FLAG_IPV4HDR | TCA_CSUM_UPDATE_FLAG_TCP |
2988 TCA_CSUM_UPDATE_FLAG_UDP;
2990 /* The HW recalcs checksums only if re-writing headers */
2991 if (!(action & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR)) {
2992 NL_SET_ERR_MSG_MOD(extack,
2993 "TC csum action is only offloaded with pedit");
2994 netdev_warn(priv->netdev,
2995 "TC csum action is only offloaded with pedit\n");
2999 if (update_flags & ~prot_flags) {
3000 NL_SET_ERR_MSG_MOD(extack,
3001 "can't offload TC csum action for some header/s");
3002 netdev_warn(priv->netdev,
3003 "can't offload TC csum action for some header/s - flags %#x\n",
3011 struct ip_ttl_word {
3017 struct ipv6_hoplimit_word {
3023 static int is_action_keys_supported(const struct flow_action_entry *act,
3024 bool ct_flow, bool *modify_ip_header,
3026 struct netlink_ext_ack *extack)
3031 htype = act->mangle.htype;
3032 offset = act->mangle.offset;
3033 mask = ~act->mangle.mask;
3034 /* For IPv4 & IPv6 header check 4 byte word,
3035 * to determine that modified fields
3036 * are NOT ttl & hop_limit only.
3038 if (htype == FLOW_ACT_MANGLE_HDR_TYPE_IP4) {
3039 struct ip_ttl_word *ttl_word =
3040 (struct ip_ttl_word *)&mask;
3042 if (offset != offsetof(struct iphdr, ttl) ||
3043 ttl_word->protocol ||
3045 *modify_ip_header = true;
3048 if (offset >= offsetof(struct iphdr, saddr))
3049 *modify_tuple = true;
3051 if (ct_flow && *modify_tuple) {
3052 NL_SET_ERR_MSG_MOD(extack,
3053 "can't offload re-write of ipv4 address with action ct");
3056 } else if (htype == FLOW_ACT_MANGLE_HDR_TYPE_IP6) {
3057 struct ipv6_hoplimit_word *hoplimit_word =
3058 (struct ipv6_hoplimit_word *)&mask;
3060 if (offset != offsetof(struct ipv6hdr, payload_len) ||
3061 hoplimit_word->payload_len ||
3062 hoplimit_word->nexthdr) {
3063 *modify_ip_header = true;
3066 if (ct_flow && offset >= offsetof(struct ipv6hdr, saddr))
3067 *modify_tuple = true;
3069 if (ct_flow && *modify_tuple) {
3070 NL_SET_ERR_MSG_MOD(extack,
3071 "can't offload re-write of ipv6 address with action ct");
3074 } else if (htype == FLOW_ACT_MANGLE_HDR_TYPE_TCP ||
3075 htype == FLOW_ACT_MANGLE_HDR_TYPE_UDP) {
3076 *modify_tuple = true;
3078 NL_SET_ERR_MSG_MOD(extack,
3079 "can't offload re-write of transport header ports with action ct");
3087 static bool modify_tuple_supported(bool modify_tuple, bool ct_clear,
3088 bool ct_flow, struct netlink_ext_ack *extack,
3089 struct mlx5e_priv *priv,
3090 struct mlx5_flow_spec *spec)
3092 if (!modify_tuple || ct_clear)
3096 NL_SET_ERR_MSG_MOD(extack,
3097 "can't offload tuple modification with non-clear ct()");
3098 netdev_info(priv->netdev,
3099 "can't offload tuple modification with non-clear ct()");
3103 /* Add ct_state=-trk match so it will be offloaded for non ct flows
3104 * (or after clear action), as otherwise, since the tuple is changed,
3105 * we can't restore ct state
3107 if (mlx5_tc_ct_add_no_trk_match(spec)) {
3108 NL_SET_ERR_MSG_MOD(extack,
3109 "can't offload tuple modification with ct matches and no ct(clear) action");
3110 netdev_info(priv->netdev,
3111 "can't offload tuple modification with ct matches and no ct(clear) action");
3118 static bool modify_header_match_supported(struct mlx5e_priv *priv,
3119 struct mlx5_flow_spec *spec,
3120 struct flow_action *flow_action,
3121 u32 actions, bool ct_flow,
3123 struct netlink_ext_ack *extack)
3125 const struct flow_action_entry *act;
3126 bool modify_ip_header, modify_tuple;
3133 headers_c = get_match_headers_criteria(actions, spec);
3134 headers_v = get_match_headers_value(actions, spec);
3135 ethertype = MLX5_GET(fte_match_set_lyr_2_4, headers_v, ethertype);
3137 /* for non-IP we only re-write MACs, so we're okay */
3138 if (MLX5_GET(fte_match_set_lyr_2_4, headers_c, ip_version) == 0 &&
3139 ethertype != ETH_P_IP && ethertype != ETH_P_IPV6)
3142 modify_ip_header = false;
3143 modify_tuple = false;
3144 flow_action_for_each(i, act, flow_action) {
3145 if (act->id != FLOW_ACTION_MANGLE &&
3146 act->id != FLOW_ACTION_ADD)
3149 err = is_action_keys_supported(act, ct_flow,
3151 &modify_tuple, extack);
3156 if (!modify_tuple_supported(modify_tuple, ct_clear, ct_flow, extack,
3160 ip_proto = MLX5_GET(fte_match_set_lyr_2_4, headers_v, ip_protocol);
3161 if (modify_ip_header && ip_proto != IPPROTO_TCP &&
3162 ip_proto != IPPROTO_UDP && ip_proto != IPPROTO_ICMP) {
3163 NL_SET_ERR_MSG_MOD(extack,
3164 "can't offload re-write of non TCP/UDP");
3165 netdev_info(priv->netdev, "can't offload re-write of ip proto %d\n",
3174 static bool actions_match_supported(struct mlx5e_priv *priv,
3175 struct flow_action *flow_action,
3176 struct mlx5e_tc_flow_parse_attr *parse_attr,
3177 struct mlx5e_tc_flow *flow,
3178 struct netlink_ext_ack *extack)
3180 bool ct_flow = false, ct_clear = false;
3183 ct_clear = flow->attr->ct_attr.ct_action &
3185 ct_flow = flow_flag_test(flow, CT) && !ct_clear;
3186 actions = flow->attr->action;
3188 if (mlx5e_is_eswitch_flow(flow)) {
3189 if (flow->attr->esw_attr->split_count && ct_flow &&
3190 !MLX5_CAP_GEN(flow->attr->esw_attr->in_mdev, reg_c_preserve)) {
3191 /* All registers used by ct are cleared when using
3194 NL_SET_ERR_MSG_MOD(extack,
3195 "Can't offload mirroring with action ct");
3200 if (actions & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR)
3201 return modify_header_match_supported(priv, &parse_attr->spec,
3202 flow_action, actions,
3209 static bool same_port_devs(struct mlx5e_priv *priv, struct mlx5e_priv *peer_priv)
3211 return priv->mdev == peer_priv->mdev;
3214 static bool same_hw_devs(struct mlx5e_priv *priv, struct mlx5e_priv *peer_priv)
3216 struct mlx5_core_dev *fmdev, *pmdev;
3217 u64 fsystem_guid, psystem_guid;
3220 pmdev = peer_priv->mdev;
3222 fsystem_guid = mlx5_query_nic_system_image_guid(fmdev);
3223 psystem_guid = mlx5_query_nic_system_image_guid(pmdev);
3225 return (fsystem_guid == psystem_guid);
3228 static bool same_vf_reps(struct mlx5e_priv *priv,
3229 struct net_device *out_dev)
3231 return mlx5e_eswitch_vf_rep(priv->netdev) &&
3232 priv->netdev == out_dev;
3235 static int add_vlan_rewrite_action(struct mlx5e_priv *priv, int namespace,
3236 const struct flow_action_entry *act,
3237 struct mlx5e_tc_flow_parse_attr *parse_attr,
3238 struct pedit_headers_action *hdrs,
3239 u32 *action, struct netlink_ext_ack *extack)
3241 u16 mask16 = VLAN_VID_MASK;
3242 u16 val16 = act->vlan.vid & VLAN_VID_MASK;
3243 const struct flow_action_entry pedit_act = {
3244 .id = FLOW_ACTION_MANGLE,
3245 .mangle.htype = FLOW_ACT_MANGLE_HDR_TYPE_ETH,
3246 .mangle.offset = offsetof(struct vlan_ethhdr, h_vlan_TCI),
3247 .mangle.mask = ~(u32)be16_to_cpu(*(__be16 *)&mask16),
3248 .mangle.val = (u32)be16_to_cpu(*(__be16 *)&val16),
3250 u8 match_prio_mask, match_prio_val;
3251 void *headers_c, *headers_v;
3254 headers_c = get_match_headers_criteria(*action, &parse_attr->spec);
3255 headers_v = get_match_headers_value(*action, &parse_attr->spec);
3257 if (!(MLX5_GET(fte_match_set_lyr_2_4, headers_c, cvlan_tag) &&
3258 MLX5_GET(fte_match_set_lyr_2_4, headers_v, cvlan_tag))) {
3259 NL_SET_ERR_MSG_MOD(extack,
3260 "VLAN rewrite action must have VLAN protocol match");
3264 match_prio_mask = MLX5_GET(fte_match_set_lyr_2_4, headers_c, first_prio);
3265 match_prio_val = MLX5_GET(fte_match_set_lyr_2_4, headers_v, first_prio);
3266 if (act->vlan.prio != (match_prio_val & match_prio_mask)) {
3267 NL_SET_ERR_MSG_MOD(extack,
3268 "Changing VLAN prio is not supported");
3272 err = parse_tc_pedit_action(priv, &pedit_act, namespace, parse_attr, hdrs, NULL, extack);
3273 *action |= MLX5_FLOW_CONTEXT_ACTION_MOD_HDR;
3279 add_vlan_prio_tag_rewrite_action(struct mlx5e_priv *priv,
3280 struct mlx5e_tc_flow_parse_attr *parse_attr,
3281 struct pedit_headers_action *hdrs,
3282 u32 *action, struct netlink_ext_ack *extack)
3284 const struct flow_action_entry prio_tag_act = {
3287 MLX5_GET(fte_match_set_lyr_2_4,
3288 get_match_headers_value(*action,
3291 MLX5_GET(fte_match_set_lyr_2_4,
3292 get_match_headers_criteria(*action,
3297 return add_vlan_rewrite_action(priv, MLX5_FLOW_NAMESPACE_FDB,
3298 &prio_tag_act, parse_attr, hdrs, action,
3302 static int validate_goto_chain(struct mlx5e_priv *priv,
3303 struct mlx5e_tc_flow *flow,
3304 const struct flow_action_entry *act,
3306 struct netlink_ext_ack *extack)
3308 bool is_esw = mlx5e_is_eswitch_flow(flow);
3309 struct mlx5_flow_attr *attr = flow->attr;
3310 bool ft_flow = mlx5e_is_ft_flow(flow);
3311 u32 dest_chain = act->chain_index;
3312 struct mlx5_fs_chains *chains;
3313 struct mlx5_eswitch *esw;
3314 u32 reformat_and_fwd;
3317 esw = priv->mdev->priv.eswitch;
3318 chains = is_esw ? esw_chains(esw) : nic_chains(priv);
3319 max_chain = mlx5_chains_get_chain_range(chains);
3320 reformat_and_fwd = is_esw ?
3321 MLX5_CAP_ESW_FLOWTABLE_FDB(priv->mdev, reformat_and_fwd_to_table) :
3322 MLX5_CAP_FLOWTABLE_NIC_RX(priv->mdev, reformat_and_fwd_to_table);
3325 NL_SET_ERR_MSG_MOD(extack, "Goto action is not supported");
3329 if (!mlx5_chains_backwards_supported(chains) &&
3330 dest_chain <= attr->chain) {
3331 NL_SET_ERR_MSG_MOD(extack,
3332 "Goto lower numbered chain isn't supported");
3336 if (dest_chain > max_chain) {
3337 NL_SET_ERR_MSG_MOD(extack,
3338 "Requested destination chain is out of supported range");
3342 if (actions & (MLX5_FLOW_CONTEXT_ACTION_PACKET_REFORMAT |
3343 MLX5_FLOW_CONTEXT_ACTION_DECAP) &&
3344 !reformat_and_fwd) {
3345 NL_SET_ERR_MSG_MOD(extack,
3346 "Goto chain is not allowed if action has reformat or decap");
3353 static int parse_tc_nic_actions(struct mlx5e_priv *priv,
3354 struct flow_action *flow_action,
3355 struct mlx5e_tc_flow_parse_attr *parse_attr,
3356 struct mlx5e_tc_flow *flow,
3357 struct netlink_ext_ack *extack)
3359 struct mlx5_flow_attr *attr = flow->attr;
3360 struct pedit_headers_action hdrs[2] = {};
3361 const struct flow_action_entry *act;
3362 struct mlx5_nic_flow_attr *nic_attr;
3366 if (!flow_action_has_entries(flow_action))
3369 if (!flow_action_hw_stats_check(flow_action, extack,
3370 FLOW_ACTION_HW_STATS_DELAYED_BIT))
3373 nic_attr = attr->nic_attr;
3375 nic_attr->flow_tag = MLX5_FS_DEFAULT_FLOW_TAG;
3377 flow_action_for_each(i, act, flow_action) {
3379 case FLOW_ACTION_ACCEPT:
3380 action |= MLX5_FLOW_CONTEXT_ACTION_FWD_DEST |
3381 MLX5_FLOW_CONTEXT_ACTION_COUNT;
3383 case FLOW_ACTION_DROP:
3384 action |= MLX5_FLOW_CONTEXT_ACTION_DROP;
3385 if (MLX5_CAP_FLOWTABLE(priv->mdev,
3386 flow_table_properties_nic_receive.flow_counter))
3387 action |= MLX5_FLOW_CONTEXT_ACTION_COUNT;
3389 case FLOW_ACTION_MANGLE:
3390 case FLOW_ACTION_ADD:
3391 err = parse_tc_pedit_action(priv, act, MLX5_FLOW_NAMESPACE_KERNEL,
3392 parse_attr, hdrs, NULL, extack);
3396 action |= MLX5_FLOW_CONTEXT_ACTION_MOD_HDR;
3398 case FLOW_ACTION_VLAN_MANGLE:
3399 err = add_vlan_rewrite_action(priv,
3400 MLX5_FLOW_NAMESPACE_KERNEL,
3401 act, parse_attr, hdrs,
3407 case FLOW_ACTION_CSUM:
3408 if (csum_offload_supported(priv, action,
3414 case FLOW_ACTION_REDIRECT: {
3415 struct net_device *peer_dev = act->dev;
3417 if (priv->netdev->netdev_ops == peer_dev->netdev_ops &&
3418 same_hw_devs(priv, netdev_priv(peer_dev))) {
3419 parse_attr->mirred_ifindex[0] = peer_dev->ifindex;
3420 flow_flag_set(flow, HAIRPIN);
3421 action |= MLX5_FLOW_CONTEXT_ACTION_FWD_DEST |
3422 MLX5_FLOW_CONTEXT_ACTION_COUNT;
3424 NL_SET_ERR_MSG_MOD(extack,
3425 "device is not on same HW, can't offload");
3426 netdev_warn(priv->netdev, "device %s not on same HW, can't offload\n",
3432 case FLOW_ACTION_MARK: {
3433 u32 mark = act->mark;
3435 if (mark & ~MLX5E_TC_FLOW_ID_MASK) {
3436 NL_SET_ERR_MSG_MOD(extack,
3437 "Bad flow mark - only 16 bit is supported");
3441 nic_attr->flow_tag = mark;
3442 action |= MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
3445 case FLOW_ACTION_GOTO:
3446 err = validate_goto_chain(priv, flow, act, action,
3451 action |= MLX5_FLOW_CONTEXT_ACTION_COUNT;
3452 attr->dest_chain = act->chain_index;
3454 case FLOW_ACTION_CT:
3455 err = mlx5_tc_ct_parse_action(get_ct_priv(priv), attr, act, extack);
3459 flow_flag_set(flow, CT);
3462 NL_SET_ERR_MSG_MOD(extack, "The offload action is not supported");
3467 if (hdrs[TCA_PEDIT_KEY_EX_CMD_SET].pedits ||
3468 hdrs[TCA_PEDIT_KEY_EX_CMD_ADD].pedits) {
3469 err = alloc_tc_pedit_action(priv, MLX5_FLOW_NAMESPACE_KERNEL,
3470 parse_attr, hdrs, &action, extack);
3473 /* in case all pedit actions are skipped, remove the MOD_HDR
3476 if (parse_attr->mod_hdr_acts.num_actions == 0) {
3477 action &= ~MLX5_FLOW_CONTEXT_ACTION_MOD_HDR;
3478 dealloc_mod_hdr_actions(&parse_attr->mod_hdr_acts);
3482 attr->action = action;
3484 if (attr->dest_chain) {
3485 if (attr->action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST) {
3486 NL_SET_ERR_MSG(extack, "Mirroring goto chain rules isn't supported");
3489 attr->action |= MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
3492 if (attr->action & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR)
3493 attr->action |= MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
3495 if (!actions_match_supported(priv, flow_action, parse_attr, flow, extack))
3501 static bool is_merged_eswitch_vfs(struct mlx5e_priv *priv,
3502 struct net_device *peer_netdev)
3504 struct mlx5e_priv *peer_priv;
3506 peer_priv = netdev_priv(peer_netdev);
3508 return (MLX5_CAP_ESW(priv->mdev, merged_eswitch) &&
3509 mlx5e_eswitch_vf_rep(priv->netdev) &&
3510 mlx5e_eswitch_vf_rep(peer_netdev) &&
3511 same_hw_devs(priv, peer_priv));
3514 static int parse_tc_vlan_action(struct mlx5e_priv *priv,
3515 const struct flow_action_entry *act,
3516 struct mlx5_esw_flow_attr *attr,
3519 u8 vlan_idx = attr->total_vlan;
3521 if (vlan_idx >= MLX5_FS_VLAN_DEPTH)
3525 case FLOW_ACTION_VLAN_POP:
3527 if (!mlx5_eswitch_vlan_actions_supported(priv->mdev,
3528 MLX5_FS_VLAN_DEPTH))
3531 *action |= MLX5_FLOW_CONTEXT_ACTION_VLAN_POP_2;
3533 *action |= MLX5_FLOW_CONTEXT_ACTION_VLAN_POP;
3536 case FLOW_ACTION_VLAN_PUSH:
3537 attr->vlan_vid[vlan_idx] = act->vlan.vid;
3538 attr->vlan_prio[vlan_idx] = act->vlan.prio;
3539 attr->vlan_proto[vlan_idx] = act->vlan.proto;
3540 if (!attr->vlan_proto[vlan_idx])
3541 attr->vlan_proto[vlan_idx] = htons(ETH_P_8021Q);
3544 if (!mlx5_eswitch_vlan_actions_supported(priv->mdev,
3545 MLX5_FS_VLAN_DEPTH))
3548 *action |= MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH_2;
3550 if (!mlx5_eswitch_vlan_actions_supported(priv->mdev, 1) &&
3551 (act->vlan.proto != htons(ETH_P_8021Q) ||
3555 *action |= MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH;
3562 attr->total_vlan = vlan_idx + 1;
3567 static struct net_device *get_fdb_out_dev(struct net_device *uplink_dev,
3568 struct net_device *out_dev)
3570 struct net_device *fdb_out_dev = out_dev;
3571 struct net_device *uplink_upper;
3574 uplink_upper = netdev_master_upper_dev_get_rcu(uplink_dev);
3575 if (uplink_upper && netif_is_lag_master(uplink_upper) &&
3576 uplink_upper == out_dev) {
3577 fdb_out_dev = uplink_dev;
3578 } else if (netif_is_lag_master(out_dev)) {
3579 fdb_out_dev = bond_option_active_slave_get_rcu(netdev_priv(out_dev));
3581 (!mlx5e_eswitch_rep(fdb_out_dev) ||
3582 !netdev_port_same_parent_id(fdb_out_dev, uplink_dev)))
3589 static int add_vlan_push_action(struct mlx5e_priv *priv,
3590 struct mlx5_flow_attr *attr,
3591 struct net_device **out_dev,
3594 struct net_device *vlan_dev = *out_dev;
3595 struct flow_action_entry vlan_act = {
3596 .id = FLOW_ACTION_VLAN_PUSH,
3597 .vlan.vid = vlan_dev_vlan_id(vlan_dev),
3598 .vlan.proto = vlan_dev_vlan_proto(vlan_dev),
3603 err = parse_tc_vlan_action(priv, &vlan_act, attr->esw_attr, action);
3608 *out_dev = dev_get_by_index_rcu(dev_net(vlan_dev), dev_get_iflink(vlan_dev));
3613 if (is_vlan_dev(*out_dev))
3614 err = add_vlan_push_action(priv, attr, out_dev, action);
3619 static int add_vlan_pop_action(struct mlx5e_priv *priv,
3620 struct mlx5_flow_attr *attr,
3623 struct flow_action_entry vlan_act = {
3624 .id = FLOW_ACTION_VLAN_POP,
3626 int nest_level, err = 0;
3628 nest_level = attr->parse_attr->filter_dev->lower_level -
3629 priv->netdev->lower_level;
3630 while (nest_level--) {
3631 err = parse_tc_vlan_action(priv, &vlan_act, attr->esw_attr, action);
3639 static bool same_hw_reps(struct mlx5e_priv *priv,
3640 struct net_device *peer_netdev)
3642 struct mlx5e_priv *peer_priv;
3644 peer_priv = netdev_priv(peer_netdev);
3646 return mlx5e_eswitch_rep(priv->netdev) &&
3647 mlx5e_eswitch_rep(peer_netdev) &&
3648 same_hw_devs(priv, peer_priv);
3651 static bool is_lag_dev(struct mlx5e_priv *priv,
3652 struct net_device *peer_netdev)
3654 return ((mlx5_lag_is_sriov(priv->mdev) ||
3655 mlx5_lag_is_multipath(priv->mdev)) &&
3656 same_hw_reps(priv, peer_netdev));
3659 bool mlx5e_is_valid_eswitch_fwd_dev(struct mlx5e_priv *priv,
3660 struct net_device *out_dev)
3662 if (is_merged_eswitch_vfs(priv, out_dev))
3665 if (is_lag_dev(priv, out_dev))
3668 return mlx5e_eswitch_rep(out_dev) &&
3669 same_port_devs(priv, netdev_priv(out_dev));
3672 static bool is_duplicated_output_device(struct net_device *dev,
3673 struct net_device *out_dev,
3674 int *ifindexes, int if_count,
3675 struct netlink_ext_ack *extack)
3679 for (i = 0; i < if_count; i++) {
3680 if (ifindexes[i] == out_dev->ifindex) {
3681 NL_SET_ERR_MSG_MOD(extack,
3682 "can't duplicate output to same device");
3683 netdev_err(dev, "can't duplicate output to same device: %s\n",
3692 static int verify_uplink_forwarding(struct mlx5e_priv *priv,
3693 struct mlx5e_tc_flow *flow,
3694 struct net_device *out_dev,
3695 struct netlink_ext_ack *extack)
3697 struct mlx5_esw_flow_attr *attr = flow->attr->esw_attr;
3698 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
3699 struct mlx5e_rep_priv *rep_priv;
3701 /* Forwarding non encapsulated traffic between
3702 * uplink ports is allowed only if
3703 * termination_table_raw_traffic cap is set.
3705 * Input vport was stored attr->in_rep.
3706 * In LAG case, *priv* is the private data of
3707 * uplink which may be not the input vport.
3709 rep_priv = mlx5e_rep_to_rep_priv(attr->in_rep);
3711 if (!(mlx5e_eswitch_uplink_rep(rep_priv->netdev) &&
3712 mlx5e_eswitch_uplink_rep(out_dev)))
3715 if (!MLX5_CAP_ESW_FLOWTABLE_FDB(esw->dev,
3716 termination_table_raw_traffic)) {
3717 NL_SET_ERR_MSG_MOD(extack,
3718 "devices are both uplink, can't offload forwarding");
3719 pr_err("devices %s %s are both uplink, can't offload forwarding\n",
3720 priv->netdev->name, out_dev->name);
3722 } else if (out_dev != rep_priv->netdev) {
3723 NL_SET_ERR_MSG_MOD(extack,
3724 "devices are not the same uplink, can't offload forwarding");
3725 pr_err("devices %s %s are both uplink but not the same, can't offload forwarding\n",
3726 priv->netdev->name, out_dev->name);
3732 static int parse_tc_fdb_actions(struct mlx5e_priv *priv,
3733 struct flow_action *flow_action,
3734 struct mlx5e_tc_flow *flow,
3735 struct netlink_ext_ack *extack,
3736 struct net_device *filter_dev)
3738 struct pedit_headers_action hdrs[2] = {};
3739 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
3740 struct mlx5e_tc_flow_parse_attr *parse_attr;
3741 struct mlx5e_rep_priv *rpriv = priv->ppriv;
3742 const struct ip_tunnel_info *info = NULL;
3743 struct mlx5_flow_attr *attr = flow->attr;
3744 int ifindexes[MLX5_MAX_FLOW_FWD_VPORTS];
3745 bool ft_flow = mlx5e_is_ft_flow(flow);
3746 const struct flow_action_entry *act;
3747 struct mlx5_esw_flow_attr *esw_attr;
3748 struct mlx5_sample_attr sample = {};
3749 bool encap = false, decap = false;
3750 u32 action = attr->action;
3751 int err, i, if_count = 0;
3752 bool mpls_push = false;
3754 if (!flow_action_has_entries(flow_action))
3757 if (!flow_action_hw_stats_check(flow_action, extack,
3758 FLOW_ACTION_HW_STATS_DELAYED_BIT))
3761 esw_attr = attr->esw_attr;
3762 parse_attr = attr->parse_attr;
3764 flow_action_for_each(i, act, flow_action) {
3766 case FLOW_ACTION_DROP:
3767 action |= MLX5_FLOW_CONTEXT_ACTION_DROP |
3768 MLX5_FLOW_CONTEXT_ACTION_COUNT;
3770 case FLOW_ACTION_TRAP:
3771 if (!flow_offload_has_one_action(flow_action)) {
3772 NL_SET_ERR_MSG_MOD(extack,
3773 "action trap is supported as a sole action only");
3776 action |= (MLX5_FLOW_CONTEXT_ACTION_FWD_DEST |
3777 MLX5_FLOW_CONTEXT_ACTION_COUNT);
3778 attr->flags |= MLX5_ESW_ATTR_FLAG_SLOW_PATH;
3780 case FLOW_ACTION_MPLS_PUSH:
3781 if (!MLX5_CAP_ESW_FLOWTABLE_FDB(priv->mdev,
3782 reformat_l2_to_l3_tunnel) ||
3783 act->mpls_push.proto != htons(ETH_P_MPLS_UC)) {
3784 NL_SET_ERR_MSG_MOD(extack,
3785 "mpls push is supported only for mpls_uc protocol");
3790 case FLOW_ACTION_MPLS_POP:
3791 /* we only support mpls pop if it is the first action
3792 * and the filter net device is bareudp. Subsequent
3793 * actions can be pedit and the last can be mirred
3797 NL_SET_ERR_MSG_MOD(extack,
3798 "mpls pop supported only as first action");
3801 if (!netif_is_bareudp(filter_dev)) {
3802 NL_SET_ERR_MSG_MOD(extack,
3803 "mpls pop supported only on bareudp devices");
3807 parse_attr->eth.h_proto = act->mpls_pop.proto;
3808 action |= MLX5_FLOW_CONTEXT_ACTION_PACKET_REFORMAT;
3809 flow_flag_set(flow, L3_TO_L2_DECAP);
3811 case FLOW_ACTION_MANGLE:
3812 case FLOW_ACTION_ADD:
3813 err = parse_tc_pedit_action(priv, act, MLX5_FLOW_NAMESPACE_FDB,
3814 parse_attr, hdrs, flow, extack);
3818 if (!flow_flag_test(flow, L3_TO_L2_DECAP)) {
3819 action |= MLX5_FLOW_CONTEXT_ACTION_MOD_HDR;
3820 esw_attr->split_count = esw_attr->out_count;
3823 case FLOW_ACTION_CSUM:
3824 if (csum_offload_supported(priv, action,
3825 act->csum_flags, extack))
3829 case FLOW_ACTION_REDIRECT:
3830 case FLOW_ACTION_MIRRED: {
3831 struct mlx5e_priv *out_priv;
3832 struct net_device *out_dev;
3836 /* out_dev is NULL when filters with
3837 * non-existing mirred device are replayed to
3843 if (mpls_push && !netif_is_bareudp(out_dev)) {
3844 NL_SET_ERR_MSG_MOD(extack,
3845 "mpls is supported only through a bareudp device");
3849 if (ft_flow && out_dev == priv->netdev) {
3850 /* Ignore forward to self rules generated
3851 * by adding both mlx5 devs to the flow table
3852 * block on a normal nft offload setup.
3857 if (esw_attr->out_count >= MLX5_MAX_FLOW_FWD_VPORTS) {
3858 NL_SET_ERR_MSG_MOD(extack,
3859 "can't support more output ports, can't offload forwarding");
3860 netdev_warn(priv->netdev,
3861 "can't support more than %d output ports, can't offload forwarding\n",
3862 esw_attr->out_count);
3866 action |= MLX5_FLOW_CONTEXT_ACTION_FWD_DEST |
3867 MLX5_FLOW_CONTEXT_ACTION_COUNT;
3869 parse_attr->mirred_ifindex[esw_attr->out_count] =
3871 parse_attr->tun_info[esw_attr->out_count] =
3872 mlx5e_dup_tun_info(info);
3873 if (!parse_attr->tun_info[esw_attr->out_count])
3876 esw_attr->dests[esw_attr->out_count].flags |=
3877 MLX5_ESW_DEST_ENCAP;
3878 esw_attr->out_count++;
3879 /* attr->dests[].rep is resolved when we
3882 } else if (netdev_port_same_parent_id(priv->netdev, out_dev)) {
3883 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
3884 struct net_device *uplink_dev = mlx5_eswitch_uplink_get_proto_dev(esw, REP_ETH);
3886 if (is_duplicated_output_device(priv->netdev,
3893 ifindexes[if_count] = out_dev->ifindex;
3896 out_dev = get_fdb_out_dev(uplink_dev, out_dev);
3900 if (is_vlan_dev(out_dev)) {
3901 err = add_vlan_push_action(priv, attr,
3908 if (is_vlan_dev(parse_attr->filter_dev)) {
3909 err = add_vlan_pop_action(priv, attr,
3915 err = verify_uplink_forwarding(priv, flow, out_dev, extack);
3919 if (!mlx5e_is_valid_eswitch_fwd_dev(priv, out_dev)) {
3920 NL_SET_ERR_MSG_MOD(extack,
3921 "devices are not on same switch HW, can't offload forwarding");
3925 if (same_vf_reps(priv, out_dev)) {
3926 NL_SET_ERR_MSG_MOD(extack,
3927 "can't forward from a VF to itself");
3931 out_priv = netdev_priv(out_dev);
3932 rpriv = out_priv->ppriv;
3933 esw_attr->dests[esw_attr->out_count].rep = rpriv->rep;
3934 esw_attr->dests[esw_attr->out_count].mdev = out_priv->mdev;
3935 esw_attr->out_count++;
3936 } else if (parse_attr->filter_dev != priv->netdev) {
3937 /* All mlx5 devices are called to configure
3938 * high level device filters. Therefore, the
3939 * *attempt* to install a filter on invalid
3940 * eswitch should not trigger an explicit error
3944 NL_SET_ERR_MSG_MOD(extack,
3945 "devices are not on same switch HW, can't offload forwarding");
3946 netdev_warn(priv->netdev,
3947 "devices %s %s not on same switch HW, can't offload forwarding\n",
3954 case FLOW_ACTION_TUNNEL_ENCAP:
3962 case FLOW_ACTION_VLAN_PUSH:
3963 case FLOW_ACTION_VLAN_POP:
3964 if (act->id == FLOW_ACTION_VLAN_PUSH &&
3965 (action & MLX5_FLOW_CONTEXT_ACTION_VLAN_POP)) {
3966 /* Replace vlan pop+push with vlan modify */
3967 action &= ~MLX5_FLOW_CONTEXT_ACTION_VLAN_POP;
3968 err = add_vlan_rewrite_action(priv,
3969 MLX5_FLOW_NAMESPACE_FDB,
3970 act, parse_attr, hdrs,
3973 err = parse_tc_vlan_action(priv, act, esw_attr, &action);
3978 esw_attr->split_count = esw_attr->out_count;
3980 case FLOW_ACTION_VLAN_MANGLE:
3981 err = add_vlan_rewrite_action(priv,
3982 MLX5_FLOW_NAMESPACE_FDB,
3983 act, parse_attr, hdrs,
3988 esw_attr->split_count = esw_attr->out_count;
3990 case FLOW_ACTION_TUNNEL_DECAP:
3993 case FLOW_ACTION_GOTO:
3994 err = validate_goto_chain(priv, flow, act, action,
3999 action |= MLX5_FLOW_CONTEXT_ACTION_COUNT;
4000 attr->dest_chain = act->chain_index;
4002 case FLOW_ACTION_CT:
4003 if (flow_flag_test(flow, SAMPLE)) {
4004 NL_SET_ERR_MSG_MOD(extack, "Sample action with connection tracking is not supported");
4007 err = mlx5_tc_ct_parse_action(get_ct_priv(priv), attr, act, extack);
4011 flow_flag_set(flow, CT);
4012 esw_attr->split_count = esw_attr->out_count;
4014 case FLOW_ACTION_SAMPLE:
4015 if (flow_flag_test(flow, CT)) {
4016 NL_SET_ERR_MSG_MOD(extack, "Sample action with connection tracking is not supported");
4019 sample.rate = act->sample.rate;
4020 sample.group_num = act->sample.psample_group->group_num;
4021 if (act->sample.truncate)
4022 sample.trunc_size = act->sample.trunc_size;
4023 flow_flag_set(flow, SAMPLE);
4026 NL_SET_ERR_MSG_MOD(extack, "The offload action is not supported");
4031 /* always set IP version for indirect table handling */
4032 attr->ip_version = mlx5e_tc_get_ip_version(&parse_attr->spec, true);
4034 if (MLX5_CAP_GEN(esw->dev, prio_tag_required) &&
4035 action & MLX5_FLOW_CONTEXT_ACTION_VLAN_POP) {
4036 /* For prio tag mode, replace vlan pop with rewrite vlan prio
4039 action &= ~MLX5_FLOW_CONTEXT_ACTION_VLAN_POP;
4040 err = add_vlan_prio_tag_rewrite_action(priv, parse_attr, hdrs,
4046 if (hdrs[TCA_PEDIT_KEY_EX_CMD_SET].pedits ||
4047 hdrs[TCA_PEDIT_KEY_EX_CMD_ADD].pedits) {
4048 err = alloc_tc_pedit_action(priv, MLX5_FLOW_NAMESPACE_FDB,
4049 parse_attr, hdrs, &action, extack);
4052 /* in case all pedit actions are skipped, remove the MOD_HDR
4053 * flag. we might have set split_count either by pedit or
4054 * pop/push. if there is no pop/push either, reset it too.
4056 if (parse_attr->mod_hdr_acts.num_actions == 0) {
4057 action &= ~MLX5_FLOW_CONTEXT_ACTION_MOD_HDR;
4058 dealloc_mod_hdr_actions(&parse_attr->mod_hdr_acts);
4059 if (!((action & MLX5_FLOW_CONTEXT_ACTION_VLAN_POP) ||
4060 (action & MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH)))
4061 esw_attr->split_count = 0;
4065 attr->action = action;
4066 if (!actions_match_supported(priv, flow_action, parse_attr, flow, extack))
4069 if (attr->dest_chain) {
4071 /* It can be supported if we'll create a mapping for
4072 * the tunnel device only (without tunnel), and set
4073 * this tunnel id with this decap flow.
4075 * On restore (miss), we'll just set this saved tunnel
4079 NL_SET_ERR_MSG(extack,
4080 "Decap with goto isn't supported");
4081 netdev_warn(priv->netdev,
4082 "Decap with goto isn't supported");
4086 attr->action |= MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
4089 if (!(attr->action &
4090 (MLX5_FLOW_CONTEXT_ACTION_FWD_DEST | MLX5_FLOW_CONTEXT_ACTION_DROP))) {
4091 NL_SET_ERR_MSG_MOD(extack,
4092 "Rule must have at least one forward/drop action");
4096 if (esw_attr->split_count > 0 && !mlx5_esw_has_fwd_fdb(priv->mdev)) {
4097 NL_SET_ERR_MSG_MOD(extack,
4098 "current firmware doesn't support split rule for port mirroring");
4099 netdev_warn_once(priv->netdev, "current firmware doesn't support split rule for port mirroring\n");
4103 /* Allocate sample attribute only when there is a sample action and
4104 * no errors after parsing.
4106 if (flow_flag_test(flow, SAMPLE)) {
4107 esw_attr->sample = kzalloc(sizeof(*esw_attr->sample), GFP_KERNEL);
4108 if (!esw_attr->sample)
4110 *esw_attr->sample = sample;
4116 static void get_flags(int flags, unsigned long *flow_flags)
4118 unsigned long __flow_flags = 0;
4120 if (flags & MLX5_TC_FLAG(INGRESS))
4121 __flow_flags |= BIT(MLX5E_TC_FLOW_FLAG_INGRESS);
4122 if (flags & MLX5_TC_FLAG(EGRESS))
4123 __flow_flags |= BIT(MLX5E_TC_FLOW_FLAG_EGRESS);
4125 if (flags & MLX5_TC_FLAG(ESW_OFFLOAD))
4126 __flow_flags |= BIT(MLX5E_TC_FLOW_FLAG_ESWITCH);
4127 if (flags & MLX5_TC_FLAG(NIC_OFFLOAD))
4128 __flow_flags |= BIT(MLX5E_TC_FLOW_FLAG_NIC);
4129 if (flags & MLX5_TC_FLAG(FT_OFFLOAD))
4130 __flow_flags |= BIT(MLX5E_TC_FLOW_FLAG_FT);
4132 *flow_flags = __flow_flags;
4135 static const struct rhashtable_params tc_ht_params = {
4136 .head_offset = offsetof(struct mlx5e_tc_flow, node),
4137 .key_offset = offsetof(struct mlx5e_tc_flow, cookie),
4138 .key_len = sizeof(((struct mlx5e_tc_flow *)0)->cookie),
4139 .automatic_shrinking = true,
4142 static struct rhashtable *get_tc_ht(struct mlx5e_priv *priv,
4143 unsigned long flags)
4145 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
4146 struct mlx5e_rep_priv *uplink_rpriv;
4148 if (flags & MLX5_TC_FLAG(ESW_OFFLOAD)) {
4149 uplink_rpriv = mlx5_eswitch_get_uplink_priv(esw, REP_ETH);
4150 return &uplink_rpriv->uplink_priv.tc_ht;
4151 } else /* NIC offload */
4152 return &priv->fs.tc.ht;
4155 static bool is_peer_flow_needed(struct mlx5e_tc_flow *flow)
4157 struct mlx5_esw_flow_attr *esw_attr = flow->attr->esw_attr;
4158 struct mlx5_flow_attr *attr = flow->attr;
4159 bool is_rep_ingress = esw_attr->in_rep->vport != MLX5_VPORT_UPLINK &&
4160 flow_flag_test(flow, INGRESS);
4161 bool act_is_encap = !!(attr->action &
4162 MLX5_FLOW_CONTEXT_ACTION_PACKET_REFORMAT);
4163 bool esw_paired = mlx5_devcom_is_paired(esw_attr->in_mdev->priv.devcom,
4164 MLX5_DEVCOM_ESW_OFFLOADS);
4169 if ((mlx5_lag_is_sriov(esw_attr->in_mdev) ||
4170 mlx5_lag_is_multipath(esw_attr->in_mdev)) &&
4171 (is_rep_ingress || act_is_encap))
4177 struct mlx5_flow_attr *
4178 mlx5_alloc_flow_attr(enum mlx5_flow_namespace_type type)
4180 u32 ex_attr_size = (type == MLX5_FLOW_NAMESPACE_FDB) ?
4181 sizeof(struct mlx5_esw_flow_attr) :
4182 sizeof(struct mlx5_nic_flow_attr);
4183 struct mlx5_flow_attr *attr;
4185 return kzalloc(sizeof(*attr) + ex_attr_size, GFP_KERNEL);
4189 mlx5e_alloc_flow(struct mlx5e_priv *priv, int attr_size,
4190 struct flow_cls_offload *f, unsigned long flow_flags,
4191 struct mlx5e_tc_flow_parse_attr **__parse_attr,
4192 struct mlx5e_tc_flow **__flow)
4194 struct mlx5e_tc_flow_parse_attr *parse_attr;
4195 struct mlx5_flow_attr *attr;
4196 struct mlx5e_tc_flow *flow;
4200 flow = kzalloc(sizeof(*flow), GFP_KERNEL);
4201 parse_attr = kvzalloc(sizeof(*parse_attr), GFP_KERNEL);
4202 if (!parse_attr || !flow)
4205 flow->flags = flow_flags;
4206 flow->cookie = f->cookie;
4209 attr = mlx5_alloc_flow_attr(get_flow_name_space(flow));
4215 for (out_index = 0; out_index < MLX5_MAX_FLOW_FWD_VPORTS; out_index++)
4216 INIT_LIST_HEAD(&flow->encaps[out_index].list);
4217 INIT_LIST_HEAD(&flow->hairpin);
4218 INIT_LIST_HEAD(&flow->l3_to_l2_reformat);
4219 refcount_set(&flow->refcnt, 1);
4220 init_completion(&flow->init_done);
4223 *__parse_attr = parse_attr;
4234 mlx5e_flow_attr_init(struct mlx5_flow_attr *attr,
4235 struct mlx5e_tc_flow_parse_attr *parse_attr,
4236 struct flow_cls_offload *f)
4238 attr->parse_attr = parse_attr;
4239 attr->chain = f->common.chain_index;
4240 attr->prio = f->common.prio;
4244 mlx5e_flow_esw_attr_init(struct mlx5_flow_attr *attr,
4245 struct mlx5e_priv *priv,
4246 struct mlx5e_tc_flow_parse_attr *parse_attr,
4247 struct flow_cls_offload *f,
4248 struct mlx5_eswitch_rep *in_rep,
4249 struct mlx5_core_dev *in_mdev)
4251 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
4252 struct mlx5_esw_flow_attr *esw_attr = attr->esw_attr;
4254 mlx5e_flow_attr_init(attr, parse_attr, f);
4256 esw_attr->in_rep = in_rep;
4257 esw_attr->in_mdev = in_mdev;
4259 if (MLX5_CAP_ESW(esw->dev, counter_eswitch_affinity) ==
4260 MLX5_COUNTER_SOURCE_ESWITCH)
4261 esw_attr->counter_dev = in_mdev;
4263 esw_attr->counter_dev = priv->mdev;
4266 static struct mlx5e_tc_flow *
4267 __mlx5e_add_fdb_flow(struct mlx5e_priv *priv,
4268 struct flow_cls_offload *f,
4269 unsigned long flow_flags,
4270 struct net_device *filter_dev,
4271 struct mlx5_eswitch_rep *in_rep,
4272 struct mlx5_core_dev *in_mdev)
4274 struct flow_rule *rule = flow_cls_offload_flow_rule(f);
4275 struct netlink_ext_ack *extack = f->common.extack;
4276 struct mlx5e_tc_flow_parse_attr *parse_attr;
4277 struct mlx5e_tc_flow *flow;
4280 flow_flags |= BIT(MLX5E_TC_FLOW_FLAG_ESWITCH);
4281 attr_size = sizeof(struct mlx5_esw_flow_attr);
4282 err = mlx5e_alloc_flow(priv, attr_size, f, flow_flags,
4283 &parse_attr, &flow);
4287 parse_attr->filter_dev = filter_dev;
4288 mlx5e_flow_esw_attr_init(flow->attr,
4290 f, in_rep, in_mdev);
4292 err = parse_cls_flower(flow->priv, flow, &parse_attr->spec,
4297 /* actions validation depends on parsing the ct matches first */
4298 err = mlx5_tc_ct_match_add(get_ct_priv(priv), &parse_attr->spec, f,
4299 &flow->attr->ct_attr, extack);
4303 err = parse_tc_fdb_actions(priv, &rule->action, flow, extack, filter_dev);
4307 err = mlx5e_tc_add_fdb_flow(priv, flow, extack);
4308 complete_all(&flow->init_done);
4310 if (!(err == -ENETUNREACH && mlx5_lag_is_multipath(in_mdev)))
4313 add_unready_flow(flow);
4319 mlx5e_flow_put(priv, flow);
4321 return ERR_PTR(err);
4324 static int mlx5e_tc_add_fdb_peer_flow(struct flow_cls_offload *f,
4325 struct mlx5e_tc_flow *flow,
4326 unsigned long flow_flags)
4328 struct mlx5e_priv *priv = flow->priv, *peer_priv;
4329 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch, *peer_esw;
4330 struct mlx5_esw_flow_attr *attr = flow->attr->esw_attr;
4331 struct mlx5_devcom *devcom = priv->mdev->priv.devcom;
4332 struct mlx5e_tc_flow_parse_attr *parse_attr;
4333 struct mlx5e_rep_priv *peer_urpriv;
4334 struct mlx5e_tc_flow *peer_flow;
4335 struct mlx5_core_dev *in_mdev;
4338 peer_esw = mlx5_devcom_get_peer_data(devcom, MLX5_DEVCOM_ESW_OFFLOADS);
4342 peer_urpriv = mlx5_eswitch_get_uplink_priv(peer_esw, REP_ETH);
4343 peer_priv = netdev_priv(peer_urpriv->netdev);
4345 /* in_mdev is assigned of which the packet originated from.
4346 * So packets redirected to uplink use the same mdev of the
4347 * original flow and packets redirected from uplink use the
4350 if (attr->in_rep->vport == MLX5_VPORT_UPLINK)
4351 in_mdev = peer_priv->mdev;
4353 in_mdev = priv->mdev;
4355 parse_attr = flow->attr->parse_attr;
4356 peer_flow = __mlx5e_add_fdb_flow(peer_priv, f, flow_flags,
4357 parse_attr->filter_dev,
4358 attr->in_rep, in_mdev);
4359 if (IS_ERR(peer_flow)) {
4360 err = PTR_ERR(peer_flow);
4364 flow->peer_flow = peer_flow;
4365 flow_flag_set(flow, DUP);
4366 mutex_lock(&esw->offloads.peer_mutex);
4367 list_add_tail(&flow->peer, &esw->offloads.peer_flows);
4368 mutex_unlock(&esw->offloads.peer_mutex);
4371 mlx5_devcom_release_peer_data(devcom, MLX5_DEVCOM_ESW_OFFLOADS);
4376 mlx5e_add_fdb_flow(struct mlx5e_priv *priv,
4377 struct flow_cls_offload *f,
4378 unsigned long flow_flags,
4379 struct net_device *filter_dev,
4380 struct mlx5e_tc_flow **__flow)
4382 struct mlx5e_rep_priv *rpriv = priv->ppriv;
4383 struct mlx5_eswitch_rep *in_rep = rpriv->rep;
4384 struct mlx5_core_dev *in_mdev = priv->mdev;
4385 struct mlx5e_tc_flow *flow;
4388 flow = __mlx5e_add_fdb_flow(priv, f, flow_flags, filter_dev, in_rep,
4391 return PTR_ERR(flow);
4393 if (is_peer_flow_needed(flow)) {
4394 err = mlx5e_tc_add_fdb_peer_flow(f, flow, flow_flags);
4396 mlx5e_tc_del_fdb_flow(priv, flow);
4410 mlx5e_add_nic_flow(struct mlx5e_priv *priv,
4411 struct flow_cls_offload *f,
4412 unsigned long flow_flags,
4413 struct net_device *filter_dev,
4414 struct mlx5e_tc_flow **__flow)
4416 struct flow_rule *rule = flow_cls_offload_flow_rule(f);
4417 struct netlink_ext_ack *extack = f->common.extack;
4418 struct mlx5e_tc_flow_parse_attr *parse_attr;
4419 struct mlx5e_tc_flow *flow;
4422 if (!MLX5_CAP_FLOWTABLE_NIC_RX(priv->mdev, ignore_flow_level)) {
4423 if (!tc_cls_can_offload_and_chain0(priv->netdev, &f->common))
4425 } else if (!tc_can_offload_extack(priv->netdev, f->common.extack)) {
4429 flow_flags |= BIT(MLX5E_TC_FLOW_FLAG_NIC);
4430 attr_size = sizeof(struct mlx5_nic_flow_attr);
4431 err = mlx5e_alloc_flow(priv, attr_size, f, flow_flags,
4432 &parse_attr, &flow);
4436 parse_attr->filter_dev = filter_dev;
4437 mlx5e_flow_attr_init(flow->attr, parse_attr, f);
4439 err = parse_cls_flower(flow->priv, flow, &parse_attr->spec,
4444 err = mlx5_tc_ct_match_add(get_ct_priv(priv), &parse_attr->spec, f,
4445 &flow->attr->ct_attr, extack);
4449 err = parse_tc_nic_actions(priv, &rule->action, parse_attr, flow, extack);
4453 err = mlx5e_tc_add_nic_flow(priv, parse_attr, flow, extack);
4457 flow_flag_set(flow, OFFLOADED);
4463 flow_flag_set(flow, FAILED);
4464 dealloc_mod_hdr_actions(&parse_attr->mod_hdr_acts);
4465 mlx5e_flow_put(priv, flow);
4471 mlx5e_tc_add_flow(struct mlx5e_priv *priv,
4472 struct flow_cls_offload *f,
4473 unsigned long flags,
4474 struct net_device *filter_dev,
4475 struct mlx5e_tc_flow **flow)
4477 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
4478 unsigned long flow_flags;
4481 get_flags(flags, &flow_flags);
4483 if (!tc_can_offload_extack(priv->netdev, f->common.extack))
4486 if (esw && esw->mode == MLX5_ESWITCH_OFFLOADS)
4487 err = mlx5e_add_fdb_flow(priv, f, flow_flags,
4490 err = mlx5e_add_nic_flow(priv, f, flow_flags,
4496 static bool is_flow_rule_duplicate_allowed(struct net_device *dev,
4497 struct mlx5e_rep_priv *rpriv)
4499 /* Offloaded flow rule is allowed to duplicate on non-uplink representor
4500 * sharing tc block with other slaves of a lag device. Rpriv can be NULL if this
4501 * function is called from NIC mode.
4503 return netif_is_lag_port(dev) && rpriv && rpriv->rep->vport != MLX5_VPORT_UPLINK;
4506 int mlx5e_configure_flower(struct net_device *dev, struct mlx5e_priv *priv,
4507 struct flow_cls_offload *f, unsigned long flags)
4509 struct netlink_ext_ack *extack = f->common.extack;
4510 struct rhashtable *tc_ht = get_tc_ht(priv, flags);
4511 struct mlx5e_rep_priv *rpriv = priv->ppriv;
4512 struct mlx5e_tc_flow *flow;
4515 if (!mlx5_esw_hold(priv->mdev))
4518 mlx5_esw_get(priv->mdev);
4521 flow = rhashtable_lookup(tc_ht, &f->cookie, tc_ht_params);
4523 /* Same flow rule offloaded to non-uplink representor sharing tc block,
4526 if (is_flow_rule_duplicate_allowed(dev, rpriv) && flow->orig_dev != dev)
4529 NL_SET_ERR_MSG_MOD(extack,
4530 "flow cookie already exists, ignoring");
4531 netdev_warn_once(priv->netdev,
4532 "flow cookie %lx already exists, ignoring\n",
4542 trace_mlx5e_configure_flower(f);
4543 err = mlx5e_tc_add_flow(priv, f, flags, dev, &flow);
4547 /* Flow rule offloaded to non-uplink representor sharing tc block,
4548 * set the flow's owner dev.
4550 if (is_flow_rule_duplicate_allowed(dev, rpriv))
4551 flow->orig_dev = dev;
4553 err = rhashtable_lookup_insert_fast(tc_ht, &flow->node, tc_ht_params);
4557 mlx5_esw_release(priv->mdev);
4561 mlx5e_flow_put(priv, flow);
4563 mlx5_esw_put(priv->mdev);
4564 mlx5_esw_release(priv->mdev);
4568 static bool same_flow_direction(struct mlx5e_tc_flow *flow, int flags)
4570 bool dir_ingress = !!(flags & MLX5_TC_FLAG(INGRESS));
4571 bool dir_egress = !!(flags & MLX5_TC_FLAG(EGRESS));
4573 return flow_flag_test(flow, INGRESS) == dir_ingress &&
4574 flow_flag_test(flow, EGRESS) == dir_egress;
4577 int mlx5e_delete_flower(struct net_device *dev, struct mlx5e_priv *priv,
4578 struct flow_cls_offload *f, unsigned long flags)
4580 struct rhashtable *tc_ht = get_tc_ht(priv, flags);
4581 struct mlx5e_tc_flow *flow;
4585 flow = rhashtable_lookup(tc_ht, &f->cookie, tc_ht_params);
4586 if (!flow || !same_flow_direction(flow, flags)) {
4591 /* Only delete the flow if it doesn't have MLX5E_TC_FLOW_DELETED flag
4594 if (flow_flag_test_and_set(flow, DELETED)) {
4598 rhashtable_remove_fast(tc_ht, &flow->node, tc_ht_params);
4601 trace_mlx5e_delete_flower(f);
4602 mlx5e_flow_put(priv, flow);
4604 mlx5_esw_put(priv->mdev);
4612 int mlx5e_stats_flower(struct net_device *dev, struct mlx5e_priv *priv,
4613 struct flow_cls_offload *f, unsigned long flags)
4615 struct mlx5_devcom *devcom = priv->mdev->priv.devcom;
4616 struct rhashtable *tc_ht = get_tc_ht(priv, flags);
4617 struct mlx5_eswitch *peer_esw;
4618 struct mlx5e_tc_flow *flow;
4619 struct mlx5_fc *counter;
4626 flow = mlx5e_flow_get(rhashtable_lookup(tc_ht, &f->cookie,
4630 return PTR_ERR(flow);
4632 if (!same_flow_direction(flow, flags)) {
4637 if (mlx5e_is_offloaded_flow(flow) || flow_flag_test(flow, CT)) {
4638 counter = mlx5e_tc_get_counter(flow);
4642 mlx5_fc_query_cached(counter, &bytes, &packets, &lastuse);
4645 /* Under multipath it's possible for one rule to be currently
4646 * un-offloaded while the other rule is offloaded.
4648 peer_esw = mlx5_devcom_get_peer_data(devcom, MLX5_DEVCOM_ESW_OFFLOADS);
4652 if (flow_flag_test(flow, DUP) &&
4653 flow_flag_test(flow->peer_flow, OFFLOADED)) {
4658 counter = mlx5e_tc_get_counter(flow->peer_flow);
4660 goto no_peer_counter;
4661 mlx5_fc_query_cached(counter, &bytes2, &packets2, &lastuse2);
4664 packets += packets2;
4665 lastuse = max_t(u64, lastuse, lastuse2);
4669 mlx5_devcom_release_peer_data(devcom, MLX5_DEVCOM_ESW_OFFLOADS);
4671 flow_stats_update(&f->stats, bytes, packets, 0, lastuse,
4672 FLOW_ACTION_HW_STATS_DELAYED);
4673 trace_mlx5e_stats_flower(f);
4675 mlx5e_flow_put(priv, flow);
4679 static int apply_police_params(struct mlx5e_priv *priv, u64 rate,
4680 struct netlink_ext_ack *extack)
4682 struct mlx5e_rep_priv *rpriv = priv->ppriv;
4683 struct mlx5_eswitch *esw;
4688 vport_num = rpriv->rep->vport;
4689 if (vport_num >= MLX5_VPORT_ECPF) {
4690 NL_SET_ERR_MSG_MOD(extack,
4691 "Ingress rate limit is supported only for Eswitch ports connected to VFs");
4695 esw = priv->mdev->priv.eswitch;
4696 /* rate is given in bytes/sec.
4697 * First convert to bits/sec and then round to the nearest mbit/secs.
4698 * mbit means million bits.
4699 * Moreover, if rate is non zero we choose to configure to a minimum of
4703 rate = (rate * BITS_PER_BYTE) + 500000;
4704 do_div(rate, 1000000);
4705 rate_mbps = max_t(u32, rate, 1);
4708 err = mlx5_esw_modify_vport_rate(esw, vport_num, rate_mbps);
4710 NL_SET_ERR_MSG_MOD(extack, "failed applying action to hardware");
4715 static int scan_tc_matchall_fdb_actions(struct mlx5e_priv *priv,
4716 struct flow_action *flow_action,
4717 struct netlink_ext_ack *extack)
4719 struct mlx5e_rep_priv *rpriv = priv->ppriv;
4720 const struct flow_action_entry *act;
4724 if (!flow_action_has_entries(flow_action)) {
4725 NL_SET_ERR_MSG_MOD(extack, "matchall called with no action");
4729 if (!flow_offload_has_one_action(flow_action)) {
4730 NL_SET_ERR_MSG_MOD(extack, "matchall policing support only a single action");
4734 if (!flow_action_basic_hw_stats_check(flow_action, extack))
4737 flow_action_for_each(i, act, flow_action) {
4739 case FLOW_ACTION_POLICE:
4740 if (act->police.rate_pkt_ps) {
4741 NL_SET_ERR_MSG_MOD(extack, "QoS offload not support packets per second");
4744 err = apply_police_params(priv, act->police.rate_bytes_ps, extack);
4748 rpriv->prev_vf_vport_stats = priv->stats.vf_vport;
4751 NL_SET_ERR_MSG_MOD(extack, "mlx5 supports only police action for matchall");
4759 int mlx5e_tc_configure_matchall(struct mlx5e_priv *priv,
4760 struct tc_cls_matchall_offload *ma)
4762 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
4763 struct netlink_ext_ack *extack = ma->common.extack;
4765 if (!mlx5_esw_qos_enabled(esw)) {
4766 NL_SET_ERR_MSG_MOD(extack, "QoS is not supported on this device");
4770 if (ma->common.prio != 1) {
4771 NL_SET_ERR_MSG_MOD(extack, "only priority 1 is supported");
4775 return scan_tc_matchall_fdb_actions(priv, &ma->rule->action, extack);
4778 int mlx5e_tc_delete_matchall(struct mlx5e_priv *priv,
4779 struct tc_cls_matchall_offload *ma)
4781 struct netlink_ext_ack *extack = ma->common.extack;
4783 return apply_police_params(priv, 0, extack);
4786 void mlx5e_tc_stats_matchall(struct mlx5e_priv *priv,
4787 struct tc_cls_matchall_offload *ma)
4789 struct mlx5e_rep_priv *rpriv = priv->ppriv;
4790 struct rtnl_link_stats64 cur_stats;
4794 cur_stats = priv->stats.vf_vport;
4795 dpkts = cur_stats.rx_packets - rpriv->prev_vf_vport_stats.rx_packets;
4796 dbytes = cur_stats.rx_bytes - rpriv->prev_vf_vport_stats.rx_bytes;
4797 rpriv->prev_vf_vport_stats = cur_stats;
4798 flow_stats_update(&ma->stats, dbytes, dpkts, 0, jiffies,
4799 FLOW_ACTION_HW_STATS_DELAYED);
4802 static void mlx5e_tc_hairpin_update_dead_peer(struct mlx5e_priv *priv,
4803 struct mlx5e_priv *peer_priv)
4805 struct mlx5_core_dev *peer_mdev = peer_priv->mdev;
4806 struct mlx5e_hairpin_entry *hpe, *tmp;
4807 LIST_HEAD(init_wait_list);
4811 if (!same_hw_devs(priv, peer_priv))
4814 peer_vhca_id = MLX5_CAP_GEN(peer_mdev, vhca_id);
4816 mutex_lock(&priv->fs.tc.hairpin_tbl_lock);
4817 hash_for_each(priv->fs.tc.hairpin_tbl, bkt, hpe, hairpin_hlist)
4818 if (refcount_inc_not_zero(&hpe->refcnt))
4819 list_add(&hpe->dead_peer_wait_list, &init_wait_list);
4820 mutex_unlock(&priv->fs.tc.hairpin_tbl_lock);
4822 list_for_each_entry_safe(hpe, tmp, &init_wait_list, dead_peer_wait_list) {
4823 wait_for_completion(&hpe->res_ready);
4824 if (!IS_ERR_OR_NULL(hpe->hp) && hpe->peer_vhca_id == peer_vhca_id)
4825 mlx5_core_hairpin_clear_dead_peer(hpe->hp->pair);
4827 mlx5e_hairpin_put(priv, hpe);
4831 static int mlx5e_tc_netdev_event(struct notifier_block *this,
4832 unsigned long event, void *ptr)
4834 struct net_device *ndev = netdev_notifier_info_to_dev(ptr);
4835 struct mlx5e_flow_steering *fs;
4836 struct mlx5e_priv *peer_priv;
4837 struct mlx5e_tc_table *tc;
4838 struct mlx5e_priv *priv;
4840 if (ndev->netdev_ops != &mlx5e_netdev_ops ||
4841 event != NETDEV_UNREGISTER ||
4842 ndev->reg_state == NETREG_REGISTERED)
4845 tc = container_of(this, struct mlx5e_tc_table, netdevice_nb);
4846 fs = container_of(tc, struct mlx5e_flow_steering, tc);
4847 priv = container_of(fs, struct mlx5e_priv, fs);
4848 peer_priv = netdev_priv(ndev);
4849 if (priv == peer_priv ||
4850 !(priv->netdev->features & NETIF_F_HW_TC))
4853 mlx5e_tc_hairpin_update_dead_peer(priv, peer_priv);
4858 static int mlx5e_tc_nic_get_ft_size(struct mlx5_core_dev *dev)
4860 int tc_grp_size, tc_tbl_size;
4861 u32 max_flow_counter;
4863 max_flow_counter = (MLX5_CAP_GEN(dev, max_flow_counter_31_16) << 16) |
4864 MLX5_CAP_GEN(dev, max_flow_counter_15_0);
4866 tc_grp_size = min_t(int, max_flow_counter, MLX5E_TC_TABLE_MAX_GROUP_SIZE);
4868 tc_tbl_size = min_t(int, tc_grp_size * MLX5E_TC_TABLE_NUM_GROUPS,
4869 BIT(MLX5_CAP_FLOWTABLE_NIC_RX(dev, log_max_ft_size)));
4874 int mlx5e_tc_nic_init(struct mlx5e_priv *priv)
4876 struct mlx5e_tc_table *tc = &priv->fs.tc;
4877 struct mlx5_core_dev *dev = priv->mdev;
4878 struct mapping_ctx *chains_mapping;
4879 struct mlx5_chains_attr attr = {};
4882 mlx5e_mod_hdr_tbl_init(&tc->mod_hdr);
4883 mutex_init(&tc->t_lock);
4884 mutex_init(&tc->hairpin_tbl_lock);
4885 hash_init(tc->hairpin_tbl);
4887 err = rhashtable_init(&tc->ht, &tc_ht_params);
4891 lockdep_set_class(&tc->ht.mutex, &tc_ht_lock_key);
4893 chains_mapping = mapping_create(sizeof(struct mlx5_mapped_obj),
4894 MLX5E_TC_TABLE_CHAIN_TAG_MASK, true);
4895 if (IS_ERR(chains_mapping)) {
4896 err = PTR_ERR(chains_mapping);
4899 tc->mapping = chains_mapping;
4901 if (MLX5_CAP_FLOWTABLE_NIC_RX(priv->mdev, ignore_flow_level))
4902 attr.flags = MLX5_CHAINS_AND_PRIOS_SUPPORTED |
4903 MLX5_CHAINS_IGNORE_FLOW_LEVEL_SUPPORTED;
4904 attr.ns = MLX5_FLOW_NAMESPACE_KERNEL;
4905 attr.max_ft_sz = mlx5e_tc_nic_get_ft_size(dev);
4906 attr.max_grp_num = MLX5E_TC_TABLE_NUM_GROUPS;
4907 attr.default_ft = mlx5e_vlan_get_flowtable(priv->fs.vlan);
4908 attr.mapping = chains_mapping;
4910 tc->chains = mlx5_chains_create(dev, &attr);
4911 if (IS_ERR(tc->chains)) {
4912 err = PTR_ERR(tc->chains);
4916 tc->ct = mlx5_tc_ct_init(priv, tc->chains, &priv->fs.tc.mod_hdr,
4917 MLX5_FLOW_NAMESPACE_KERNEL);
4919 tc->netdevice_nb.notifier_call = mlx5e_tc_netdev_event;
4920 err = register_netdevice_notifier_dev_net(priv->netdev,
4924 tc->netdevice_nb.notifier_call = NULL;
4925 mlx5_core_warn(priv->mdev, "Failed to register netdev notifier\n");
4932 mlx5_tc_ct_clean(tc->ct);
4933 mlx5_chains_destroy(tc->chains);
4935 mapping_destroy(chains_mapping);
4937 rhashtable_destroy(&tc->ht);
4941 static void _mlx5e_tc_del_flow(void *ptr, void *arg)
4943 struct mlx5e_tc_flow *flow = ptr;
4944 struct mlx5e_priv *priv = flow->priv;
4946 mlx5e_tc_del_flow(priv, flow);
4950 void mlx5e_tc_nic_cleanup(struct mlx5e_priv *priv)
4952 struct mlx5e_tc_table *tc = &priv->fs.tc;
4954 if (tc->netdevice_nb.notifier_call)
4955 unregister_netdevice_notifier_dev_net(priv->netdev,
4959 mlx5e_mod_hdr_tbl_destroy(&tc->mod_hdr);
4960 mutex_destroy(&tc->hairpin_tbl_lock);
4962 rhashtable_free_and_destroy(&tc->ht, _mlx5e_tc_del_flow, NULL);
4964 if (!IS_ERR_OR_NULL(tc->t)) {
4965 mlx5_chains_put_table(tc->chains, 0, 1, MLX5E_TC_FT_LEVEL);
4968 mutex_destroy(&tc->t_lock);
4970 mlx5_tc_ct_clean(tc->ct);
4971 mapping_destroy(tc->mapping);
4972 mlx5_chains_destroy(tc->chains);
4975 int mlx5e_tc_esw_init(struct rhashtable *tc_ht)
4977 const size_t sz_enc_opts = sizeof(struct tunnel_match_enc_opts);
4978 struct mlx5_rep_uplink_priv *uplink_priv;
4979 struct mlx5e_rep_priv *rpriv;
4980 struct mapping_ctx *mapping;
4981 struct mlx5_eswitch *esw;
4982 struct mlx5e_priv *priv;
4985 uplink_priv = container_of(tc_ht, struct mlx5_rep_uplink_priv, tc_ht);
4986 rpriv = container_of(uplink_priv, struct mlx5e_rep_priv, uplink_priv);
4987 priv = netdev_priv(rpriv->netdev);
4988 esw = priv->mdev->priv.eswitch;
4990 uplink_priv->ct_priv = mlx5_tc_ct_init(netdev_priv(priv->netdev),
4992 &esw->offloads.mod_hdr,
4993 MLX5_FLOW_NAMESPACE_FDB);
4995 #if IS_ENABLED(CONFIG_MLX5_TC_SAMPLE)
4996 uplink_priv->esw_psample = mlx5_esw_sample_init(netdev_priv(priv->netdev));
4999 mapping = mapping_create(sizeof(struct tunnel_match_key),
5000 TUNNEL_INFO_BITS_MASK, true);
5001 if (IS_ERR(mapping)) {
5002 err = PTR_ERR(mapping);
5003 goto err_tun_mapping;
5005 uplink_priv->tunnel_mapping = mapping;
5007 /* 0xFFF is reserved for stack devices slow path table mark */
5008 mapping = mapping_create(sz_enc_opts, ENC_OPTS_BITS_MASK - 1, true);
5009 if (IS_ERR(mapping)) {
5010 err = PTR_ERR(mapping);
5011 goto err_enc_opts_mapping;
5013 uplink_priv->tunnel_enc_opts_mapping = mapping;
5015 err = rhashtable_init(tc_ht, &tc_ht_params);
5019 lockdep_set_class(&tc_ht->mutex, &tc_ht_lock_key);
5021 uplink_priv->encap = mlx5e_tc_tun_init(priv);
5022 if (IS_ERR(uplink_priv->encap)) {
5023 err = PTR_ERR(uplink_priv->encap);
5024 goto err_register_fib_notifier;
5029 err_register_fib_notifier:
5030 rhashtable_destroy(tc_ht);
5032 mapping_destroy(uplink_priv->tunnel_enc_opts_mapping);
5033 err_enc_opts_mapping:
5034 mapping_destroy(uplink_priv->tunnel_mapping);
5036 #if IS_ENABLED(CONFIG_MLX5_TC_SAMPLE)
5037 mlx5_esw_sample_cleanup(uplink_priv->esw_psample);
5039 mlx5_tc_ct_clean(uplink_priv->ct_priv);
5040 netdev_warn(priv->netdev,
5041 "Failed to initialize tc (eswitch), err: %d", err);
5045 void mlx5e_tc_esw_cleanup(struct rhashtable *tc_ht)
5047 struct mlx5_rep_uplink_priv *uplink_priv;
5049 uplink_priv = container_of(tc_ht, struct mlx5_rep_uplink_priv, tc_ht);
5051 rhashtable_free_and_destroy(tc_ht, _mlx5e_tc_del_flow, NULL);
5052 mlx5e_tc_tun_cleanup(uplink_priv->encap);
5054 mapping_destroy(uplink_priv->tunnel_enc_opts_mapping);
5055 mapping_destroy(uplink_priv->tunnel_mapping);
5057 #if IS_ENABLED(CONFIG_MLX5_TC_SAMPLE)
5058 mlx5_esw_sample_cleanup(uplink_priv->esw_psample);
5060 mlx5_tc_ct_clean(uplink_priv->ct_priv);
5063 int mlx5e_tc_num_filters(struct mlx5e_priv *priv, unsigned long flags)
5065 struct rhashtable *tc_ht = get_tc_ht(priv, flags);
5067 return atomic_read(&tc_ht->nelems);
5070 void mlx5e_tc_clean_fdb_peer_flows(struct mlx5_eswitch *esw)
5072 struct mlx5e_tc_flow *flow, *tmp;
5074 list_for_each_entry_safe(flow, tmp, &esw->offloads.peer_flows, peer)
5075 __mlx5e_tc_del_fdb_peer_flow(flow);
5078 void mlx5e_tc_reoffload_flows_work(struct work_struct *work)
5080 struct mlx5_rep_uplink_priv *rpriv =
5081 container_of(work, struct mlx5_rep_uplink_priv,
5082 reoffload_flows_work);
5083 struct mlx5e_tc_flow *flow, *tmp;
5085 mutex_lock(&rpriv->unready_flows_lock);
5086 list_for_each_entry_safe(flow, tmp, &rpriv->unready_flows, unready) {
5087 if (!mlx5e_tc_add_fdb_flow(flow->priv, flow, NULL))
5088 unready_flow_del(flow);
5090 mutex_unlock(&rpriv->unready_flows_lock);
5093 static int mlx5e_setup_tc_cls_flower(struct mlx5e_priv *priv,
5094 struct flow_cls_offload *cls_flower,
5095 unsigned long flags)
5097 switch (cls_flower->command) {
5098 case FLOW_CLS_REPLACE:
5099 return mlx5e_configure_flower(priv->netdev, priv, cls_flower,
5101 case FLOW_CLS_DESTROY:
5102 return mlx5e_delete_flower(priv->netdev, priv, cls_flower,
5104 case FLOW_CLS_STATS:
5105 return mlx5e_stats_flower(priv->netdev, priv, cls_flower,
5112 int mlx5e_setup_tc_block_cb(enum tc_setup_type type, void *type_data,
5115 unsigned long flags = MLX5_TC_FLAG(INGRESS);
5116 struct mlx5e_priv *priv = cb_priv;
5118 if (!priv->netdev || !netif_device_present(priv->netdev))
5121 if (mlx5e_is_uplink_rep(priv))
5122 flags |= MLX5_TC_FLAG(ESW_OFFLOAD);
5124 flags |= MLX5_TC_FLAG(NIC_OFFLOAD);
5127 case TC_SETUP_CLSFLOWER:
5128 return mlx5e_setup_tc_cls_flower(priv, type_data, flags);
5134 bool mlx5e_tc_update_skb(struct mlx5_cqe64 *cqe,
5135 struct sk_buff *skb)
5137 #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
5138 u32 chain = 0, chain_tag, reg_b, zone_restore_id;
5139 struct mlx5e_priv *priv = netdev_priv(skb->dev);
5140 struct mlx5e_tc_table *tc = &priv->fs.tc;
5141 struct mlx5_mapped_obj mapped_obj;
5142 struct tc_skb_ext *tc_skb_ext;
5145 reg_b = be32_to_cpu(cqe->ft_metadata);
5147 chain_tag = reg_b & MLX5E_TC_TABLE_CHAIN_TAG_MASK;
5149 err = mapping_find(tc->mapping, chain_tag, &mapped_obj);
5151 netdev_dbg(priv->netdev,
5152 "Couldn't find chain for chain tag: %d, err: %d\n",
5157 if (mapped_obj.type == MLX5_MAPPED_OBJ_CHAIN) {
5158 chain = mapped_obj.chain;
5159 tc_skb_ext = tc_skb_ext_alloc(skb);
5160 if (WARN_ON(!tc_skb_ext))
5163 tc_skb_ext->chain = chain;
5165 zone_restore_id = (reg_b >> REG_MAPPING_MOFFSET(NIC_ZONE_RESTORE_TO_REG)) &
5168 if (!mlx5e_tc_ct_restore_flow(tc->ct, skb,
5172 netdev_dbg(priv->netdev, "Invalid mapped object type: %d\n", mapped_obj.type);
5175 #endif /* CONFIG_NET_TC_SKB_EXT */