]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-zesty-kernel.git] / drivers / net / ethernet / mellanox / mlx5 / core / en_tc.c
CommitLineData
e8f887ac
AV
1/*
2 * Copyright (c) 2016, Mellanox Technologies. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
e3a2b7ed 33#include <net/flow_dissector.h>
3f7d0eb4 34#include <net/sch_generic.h>
e3a2b7ed
AV
35#include <net/pkt_cls.h>
36#include <net/tc_act/tc_gact.h>
12185a9f 37#include <net/tc_act/tc_skbedit.h>
e8f887ac
AV
38#include <linux/mlx5/fs.h>
39#include <linux/mlx5/device.h>
40#include <linux/rhashtable.h>
03a9d11e
OG
41#include <net/switchdev.h>
42#include <net/tc_act/tc_mirred.h>
776b12b6 43#include <net/tc_act/tc_vlan.h>
bbd00f7e 44#include <net/tc_act/tc_tunnel_key.h>
a54e20b4 45#include <net/vxlan.h>
e8f887ac
AV
46#include "en.h"
47#include "en_tc.h"
03a9d11e 48#include "eswitch.h"
bbd00f7e 49#include "vxlan.h"
e8f887ac
AV
50
51struct mlx5e_tc_flow {
52 struct rhash_head node;
53 u64 cookie;
74491de9 54 struct mlx5_flow_handle *rule;
a54e20b4 55 struct list_head encap; /* flows sharing the same encap */
776b12b6 56 struct mlx5_esw_flow_attr *attr;
e8f887ac
AV
57};
58
a54e20b4
HHZ
59enum {
60 MLX5_HEADER_TYPE_VXLAN = 0x0,
61 MLX5_HEADER_TYPE_NVGRE = 0x1,
62};
63
acff797c
MG
64#define MLX5E_TC_TABLE_NUM_ENTRIES 1024
65#define MLX5E_TC_TABLE_NUM_GROUPS 4
e8f887ac 66
74491de9
MB
67static struct mlx5_flow_handle *
68mlx5e_tc_add_nic_flow(struct mlx5e_priv *priv,
69 struct mlx5_flow_spec *spec,
70 u32 action, u32 flow_tag)
e8f887ac 71{
aad7e08d
AV
72 struct mlx5_core_dev *dev = priv->mdev;
73 struct mlx5_flow_destination dest = { 0 };
66958ed9
HHZ
74 struct mlx5_flow_act flow_act = {
75 .action = action,
76 .flow_tag = flow_tag,
77 .encap_id = 0,
78 };
aad7e08d 79 struct mlx5_fc *counter = NULL;
74491de9 80 struct mlx5_flow_handle *rule;
e8f887ac
AV
81 bool table_created = false;
82
aad7e08d
AV
83 if (action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST) {
84 dest.type = MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE;
85 dest.ft = priv->fs.vlan.ft.t;
55130287 86 } else if (action & MLX5_FLOW_CONTEXT_ACTION_COUNT) {
aad7e08d
AV
87 counter = mlx5_fc_create(dev, true);
88 if (IS_ERR(counter))
89 return ERR_CAST(counter);
90
91 dest.type = MLX5_FLOW_DESTINATION_TYPE_COUNTER;
92 dest.counter = counter;
93 }
94
acff797c
MG
95 if (IS_ERR_OR_NULL(priv->fs.tc.t)) {
96 priv->fs.tc.t =
97 mlx5_create_auto_grouped_flow_table(priv->fs.ns,
98 MLX5E_TC_PRIO,
99 MLX5E_TC_TABLE_NUM_ENTRIES,
100 MLX5E_TC_TABLE_NUM_GROUPS,
c9f1b073 101 0, 0);
acff797c 102 if (IS_ERR(priv->fs.tc.t)) {
e8f887ac
AV
103 netdev_err(priv->netdev,
104 "Failed to create tc offload table\n");
aad7e08d
AV
105 rule = ERR_CAST(priv->fs.tc.t);
106 goto err_create_ft;
e8f887ac
AV
107 }
108
109 table_created = true;
110 }
111
c5bb1730 112 spec->match_criteria_enable = MLX5_MATCH_OUTER_HEADERS;
66958ed9 113 rule = mlx5_add_flow_rules(priv->fs.tc.t, spec, &flow_act, &dest, 1);
aad7e08d
AV
114
115 if (IS_ERR(rule))
116 goto err_add_rule;
117
118 return rule;
e8f887ac 119
aad7e08d
AV
120err_add_rule:
121 if (table_created) {
acff797c
MG
122 mlx5_destroy_flow_table(priv->fs.tc.t);
123 priv->fs.tc.t = NULL;
e8f887ac 124 }
aad7e08d
AV
125err_create_ft:
126 mlx5_fc_destroy(dev, counter);
e8f887ac
AV
127
128 return rule;
129}
130
74491de9
MB
131static struct mlx5_flow_handle *
132mlx5e_tc_add_fdb_flow(struct mlx5e_priv *priv,
133 struct mlx5_flow_spec *spec,
134 struct mlx5_esw_flow_attr *attr)
adb4c123
OG
135{
136 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
8b32580d
OG
137 int err;
138
139 err = mlx5_eswitch_add_vlan_action(esw, attr);
140 if (err)
141 return ERR_PTR(err);
adb4c123 142
776b12b6 143 return mlx5_eswitch_add_offloaded_rule(esw, spec, attr);
adb4c123
OG
144}
145
5067b602
RD
146static void mlx5e_detach_encap(struct mlx5e_priv *priv,
147 struct mlx5e_tc_flow *flow) {
148 struct list_head *next = flow->encap.next;
149
150 list_del(&flow->encap);
151 if (list_empty(next)) {
152 struct mlx5_encap_entry *e;
153
154 e = list_entry(next, struct mlx5_encap_entry, flows);
155 if (e->n) {
156 mlx5_encap_dealloc(priv->mdev, e->encap_id);
157 neigh_release(e->n);
158 }
159 hlist_del_rcu(&e->encap_hlist);
160 kfree(e);
161 }
162}
163
5e86397a
OG
164/* we get here also when setting rule to the FW failed, etc. It means that the
165 * flow rule itself might not exist, but some offloading related to the actions
166 * should be cleaned.
167 */
e8f887ac 168static void mlx5e_tc_del_flow(struct mlx5e_priv *priv,
961e8979 169 struct mlx5e_tc_flow *flow)
e8f887ac 170{
8b32580d 171 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
aad7e08d
AV
172 struct mlx5_fc *counter = NULL;
173
5e86397a
OG
174 if (!IS_ERR(flow->rule)) {
175 counter = mlx5_flow_rule_counter(flow->rule);
176 mlx5_del_flow_rules(flow->rule);
177 mlx5_fc_destroy(priv->mdev, counter);
178 }
86a33ae1 179
5067b602 180 if (esw && esw->mode == SRIOV_OFFLOADS) {
961e8979 181 mlx5_eswitch_del_vlan_action(esw, flow->attr);
5067b602
RD
182 if (flow->attr->action & MLX5_FLOW_CONTEXT_ACTION_ENCAP)
183 mlx5e_detach_encap(priv, flow);
184 }
8b32580d 185
5c40348c 186 if (!mlx5e_tc_num_filters(priv) && (priv->fs.tc.t)) {
acff797c
MG
187 mlx5_destroy_flow_table(priv->fs.tc.t);
188 priv->fs.tc.t = NULL;
e8f887ac
AV
189 }
190}
191
bbd00f7e
HHZ
192static void parse_vxlan_attr(struct mlx5_flow_spec *spec,
193 struct tc_cls_flower_offload *f)
194{
195 void *headers_c = MLX5_ADDR_OF(fte_match_param, spec->match_criteria,
196 outer_headers);
197 void *headers_v = MLX5_ADDR_OF(fte_match_param, spec->match_value,
198 outer_headers);
199 void *misc_c = MLX5_ADDR_OF(fte_match_param, spec->match_criteria,
200 misc_parameters);
201 void *misc_v = MLX5_ADDR_OF(fte_match_param, spec->match_value,
202 misc_parameters);
203
204 MLX5_SET_TO_ONES(fte_match_set_lyr_2_4, headers_c, ip_protocol);
205 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol, IPPROTO_UDP);
206
207 if (dissector_uses_key(f->dissector, FLOW_DISSECTOR_KEY_ENC_KEYID)) {
208 struct flow_dissector_key_keyid *key =
209 skb_flow_dissector_target(f->dissector,
210 FLOW_DISSECTOR_KEY_ENC_KEYID,
211 f->key);
212 struct flow_dissector_key_keyid *mask =
213 skb_flow_dissector_target(f->dissector,
214 FLOW_DISSECTOR_KEY_ENC_KEYID,
215 f->mask);
216 MLX5_SET(fte_match_set_misc, misc_c, vxlan_vni,
217 be32_to_cpu(mask->keyid));
218 MLX5_SET(fte_match_set_misc, misc_v, vxlan_vni,
219 be32_to_cpu(key->keyid));
220 }
221}
222
223static int parse_tunnel_attr(struct mlx5e_priv *priv,
224 struct mlx5_flow_spec *spec,
225 struct tc_cls_flower_offload *f)
226{
227 void *headers_c = MLX5_ADDR_OF(fte_match_param, spec->match_criteria,
228 outer_headers);
229 void *headers_v = MLX5_ADDR_OF(fte_match_param, spec->match_value,
230 outer_headers);
231
2e72eb43
OG
232 struct flow_dissector_key_control *enc_control =
233 skb_flow_dissector_target(f->dissector,
234 FLOW_DISSECTOR_KEY_ENC_CONTROL,
235 f->key);
236
bbd00f7e
HHZ
237 if (dissector_uses_key(f->dissector, FLOW_DISSECTOR_KEY_ENC_PORTS)) {
238 struct flow_dissector_key_ports *key =
239 skb_flow_dissector_target(f->dissector,
240 FLOW_DISSECTOR_KEY_ENC_PORTS,
241 f->key);
242 struct flow_dissector_key_ports *mask =
243 skb_flow_dissector_target(f->dissector,
244 FLOW_DISSECTOR_KEY_ENC_PORTS,
245 f->mask);
246
247 /* Full udp dst port must be given */
248 if (memchr_inv(&mask->dst, 0xff, sizeof(mask->dst)))
2fcd82e9 249 goto vxlan_match_offload_err;
bbd00f7e 250
bbd00f7e
HHZ
251 if (mlx5e_vxlan_lookup_port(priv, be16_to_cpu(key->dst)) &&
252 MLX5_CAP_ESW(priv->mdev, vxlan_encap_decap))
253 parse_vxlan_attr(spec, f);
2fcd82e9
OG
254 else {
255 netdev_warn(priv->netdev,
256 "%d isn't an offloaded vxlan udp dport\n", be16_to_cpu(key->dst));
bbd00f7e 257 return -EOPNOTSUPP;
2fcd82e9 258 }
bbd00f7e
HHZ
259
260 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
261 udp_dport, ntohs(mask->dst));
262 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
263 udp_dport, ntohs(key->dst));
264
cd377663
OG
265 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
266 udp_sport, ntohs(mask->src));
267 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
268 udp_sport, ntohs(key->src));
bbd00f7e 269 } else { /* udp dst port must be given */
2fcd82e9
OG
270vxlan_match_offload_err:
271 netdev_warn(priv->netdev,
272 "IP tunnel decap offload supported only for vxlan, must set UDP dport\n");
273 return -EOPNOTSUPP;
bbd00f7e
HHZ
274 }
275
2e72eb43 276 if (enc_control->addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS) {
bbd00f7e
HHZ
277 struct flow_dissector_key_ipv4_addrs *key =
278 skb_flow_dissector_target(f->dissector,
279 FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS,
280 f->key);
281 struct flow_dissector_key_ipv4_addrs *mask =
282 skb_flow_dissector_target(f->dissector,
283 FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS,
284 f->mask);
285 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
286 src_ipv4_src_ipv6.ipv4_layout.ipv4,
287 ntohl(mask->src));
288 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
289 src_ipv4_src_ipv6.ipv4_layout.ipv4,
290 ntohl(key->src));
291
292 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
293 dst_ipv4_dst_ipv6.ipv4_layout.ipv4,
294 ntohl(mask->dst));
295 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
296 dst_ipv4_dst_ipv6.ipv4_layout.ipv4,
297 ntohl(key->dst));
bbd00f7e 298
2e72eb43
OG
299 MLX5_SET_TO_ONES(fte_match_set_lyr_2_4, headers_c, ethertype);
300 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ethertype, ETH_P_IP);
301 }
bbd00f7e
HHZ
302
303 /* Enforce DMAC when offloading incoming tunneled flows.
304 * Flow counters require a match on the DMAC.
305 */
306 MLX5_SET_TO_ONES(fte_match_set_lyr_2_4, headers_c, dmac_47_16);
307 MLX5_SET_TO_ONES(fte_match_set_lyr_2_4, headers_c, dmac_15_0);
308 ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
309 dmac_47_16), priv->netdev->dev_addr);
310
311 /* let software handle IP fragments */
312 MLX5_SET(fte_match_set_lyr_2_4, headers_c, frag, 1);
313 MLX5_SET(fte_match_set_lyr_2_4, headers_v, frag, 0);
314
315 return 0;
316}
317
de0af0bf
RD
318static int __parse_cls_flower(struct mlx5e_priv *priv,
319 struct mlx5_flow_spec *spec,
320 struct tc_cls_flower_offload *f,
321 u8 *min_inline)
e3a2b7ed 322{
c5bb1730
MG
323 void *headers_c = MLX5_ADDR_OF(fte_match_param, spec->match_criteria,
324 outer_headers);
325 void *headers_v = MLX5_ADDR_OF(fte_match_param, spec->match_value,
326 outer_headers);
e3a2b7ed
AV
327 u16 addr_type = 0;
328 u8 ip_proto = 0;
329
de0af0bf
RD
330 *min_inline = MLX5_INLINE_MODE_L2;
331
e3a2b7ed
AV
332 if (f->dissector->used_keys &
333 ~(BIT(FLOW_DISSECTOR_KEY_CONTROL) |
334 BIT(FLOW_DISSECTOR_KEY_BASIC) |
335 BIT(FLOW_DISSECTOR_KEY_ETH_ADDRS) |
095b6cfd 336 BIT(FLOW_DISSECTOR_KEY_VLAN) |
e3a2b7ed
AV
337 BIT(FLOW_DISSECTOR_KEY_IPV4_ADDRS) |
338 BIT(FLOW_DISSECTOR_KEY_IPV6_ADDRS) |
bbd00f7e
HHZ
339 BIT(FLOW_DISSECTOR_KEY_PORTS) |
340 BIT(FLOW_DISSECTOR_KEY_ENC_KEYID) |
341 BIT(FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS) |
342 BIT(FLOW_DISSECTOR_KEY_ENC_IPV6_ADDRS) |
343 BIT(FLOW_DISSECTOR_KEY_ENC_PORTS) |
344 BIT(FLOW_DISSECTOR_KEY_ENC_CONTROL))) {
e3a2b7ed
AV
345 netdev_warn(priv->netdev, "Unsupported key used: 0x%x\n",
346 f->dissector->used_keys);
347 return -EOPNOTSUPP;
348 }
349
bbd00f7e
HHZ
350 if ((dissector_uses_key(f->dissector,
351 FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS) ||
352 dissector_uses_key(f->dissector, FLOW_DISSECTOR_KEY_ENC_KEYID) ||
353 dissector_uses_key(f->dissector, FLOW_DISSECTOR_KEY_ENC_PORTS)) &&
354 dissector_uses_key(f->dissector, FLOW_DISSECTOR_KEY_ENC_CONTROL)) {
355 struct flow_dissector_key_control *key =
356 skb_flow_dissector_target(f->dissector,
357 FLOW_DISSECTOR_KEY_ENC_CONTROL,
358 f->key);
359 switch (key->addr_type) {
360 case FLOW_DISSECTOR_KEY_IPV4_ADDRS:
361 if (parse_tunnel_attr(priv, spec, f))
362 return -EOPNOTSUPP;
363 break;
2fcd82e9
OG
364 case FLOW_DISSECTOR_KEY_IPV6_ADDRS:
365 netdev_warn(priv->netdev,
366 "IPv6 tunnel decap offload isn't supported\n");
bbd00f7e
HHZ
367 default:
368 return -EOPNOTSUPP;
369 }
370
371 /* In decap flow, header pointers should point to the inner
372 * headers, outer header were already set by parse_tunnel_attr
373 */
374 headers_c = MLX5_ADDR_OF(fte_match_param, spec->match_criteria,
375 inner_headers);
376 headers_v = MLX5_ADDR_OF(fte_match_param, spec->match_value,
377 inner_headers);
378 }
379
e3a2b7ed
AV
380 if (dissector_uses_key(f->dissector, FLOW_DISSECTOR_KEY_CONTROL)) {
381 struct flow_dissector_key_control *key =
382 skb_flow_dissector_target(f->dissector,
1dbd0d37 383 FLOW_DISSECTOR_KEY_CONTROL,
e3a2b7ed 384 f->key);
3f7d0eb4
OG
385
386 struct flow_dissector_key_control *mask =
387 skb_flow_dissector_target(f->dissector,
388 FLOW_DISSECTOR_KEY_CONTROL,
389 f->mask);
e3a2b7ed 390 addr_type = key->addr_type;
3f7d0eb4
OG
391
392 if (mask->flags & FLOW_DIS_IS_FRAGMENT) {
393 MLX5_SET(fte_match_set_lyr_2_4, headers_c, frag, 1);
394 MLX5_SET(fte_match_set_lyr_2_4, headers_v, frag,
395 key->flags & FLOW_DIS_IS_FRAGMENT);
0827444d
OG
396
397 /* the HW doesn't need L3 inline to match on frag=no */
398 if (key->flags & FLOW_DIS_IS_FRAGMENT)
399 *min_inline = MLX5_INLINE_MODE_IP;
3f7d0eb4 400 }
e3a2b7ed
AV
401 }
402
403 if (dissector_uses_key(f->dissector, FLOW_DISSECTOR_KEY_BASIC)) {
404 struct flow_dissector_key_basic *key =
405 skb_flow_dissector_target(f->dissector,
406 FLOW_DISSECTOR_KEY_BASIC,
407 f->key);
408 struct flow_dissector_key_basic *mask =
409 skb_flow_dissector_target(f->dissector,
410 FLOW_DISSECTOR_KEY_BASIC,
411 f->mask);
412 ip_proto = key->ip_proto;
413
414 MLX5_SET(fte_match_set_lyr_2_4, headers_c, ethertype,
415 ntohs(mask->n_proto));
416 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ethertype,
417 ntohs(key->n_proto));
418
419 MLX5_SET(fte_match_set_lyr_2_4, headers_c, ip_protocol,
420 mask->ip_proto);
421 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol,
422 key->ip_proto);
de0af0bf
RD
423
424 if (mask->ip_proto)
425 *min_inline = MLX5_INLINE_MODE_IP;
e3a2b7ed
AV
426 }
427
428 if (dissector_uses_key(f->dissector, FLOW_DISSECTOR_KEY_ETH_ADDRS)) {
429 struct flow_dissector_key_eth_addrs *key =
430 skb_flow_dissector_target(f->dissector,
431 FLOW_DISSECTOR_KEY_ETH_ADDRS,
432 f->key);
433 struct flow_dissector_key_eth_addrs *mask =
434 skb_flow_dissector_target(f->dissector,
435 FLOW_DISSECTOR_KEY_ETH_ADDRS,
436 f->mask);
437
438 ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_c,
439 dmac_47_16),
440 mask->dst);
441 ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
442 dmac_47_16),
443 key->dst);
444
445 ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_c,
446 smac_47_16),
447 mask->src);
448 ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
449 smac_47_16),
450 key->src);
451 }
452
095b6cfd
OG
453 if (dissector_uses_key(f->dissector, FLOW_DISSECTOR_KEY_VLAN)) {
454 struct flow_dissector_key_vlan *key =
455 skb_flow_dissector_target(f->dissector,
456 FLOW_DISSECTOR_KEY_VLAN,
457 f->key);
458 struct flow_dissector_key_vlan *mask =
459 skb_flow_dissector_target(f->dissector,
460 FLOW_DISSECTOR_KEY_VLAN,
461 f->mask);
358d79a4 462 if (mask->vlan_id || mask->vlan_priority) {
095b6cfd
OG
463 MLX5_SET(fte_match_set_lyr_2_4, headers_c, vlan_tag, 1);
464 MLX5_SET(fte_match_set_lyr_2_4, headers_v, vlan_tag, 1);
465
466 MLX5_SET(fte_match_set_lyr_2_4, headers_c, first_vid, mask->vlan_id);
467 MLX5_SET(fte_match_set_lyr_2_4, headers_v, first_vid, key->vlan_id);
358d79a4
OG
468
469 MLX5_SET(fte_match_set_lyr_2_4, headers_c, first_prio, mask->vlan_priority);
470 MLX5_SET(fte_match_set_lyr_2_4, headers_v, first_prio, key->vlan_priority);
095b6cfd
OG
471 }
472 }
473
e3a2b7ed
AV
474 if (addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS) {
475 struct flow_dissector_key_ipv4_addrs *key =
476 skb_flow_dissector_target(f->dissector,
477 FLOW_DISSECTOR_KEY_IPV4_ADDRS,
478 f->key);
479 struct flow_dissector_key_ipv4_addrs *mask =
480 skb_flow_dissector_target(f->dissector,
481 FLOW_DISSECTOR_KEY_IPV4_ADDRS,
482 f->mask);
483
484 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_c,
485 src_ipv4_src_ipv6.ipv4_layout.ipv4),
486 &mask->src, sizeof(mask->src));
487 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
488 src_ipv4_src_ipv6.ipv4_layout.ipv4),
489 &key->src, sizeof(key->src));
490 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_c,
491 dst_ipv4_dst_ipv6.ipv4_layout.ipv4),
492 &mask->dst, sizeof(mask->dst));
493 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
494 dst_ipv4_dst_ipv6.ipv4_layout.ipv4),
495 &key->dst, sizeof(key->dst));
de0af0bf
RD
496
497 if (mask->src || mask->dst)
498 *min_inline = MLX5_INLINE_MODE_IP;
e3a2b7ed
AV
499 }
500
501 if (addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS) {
502 struct flow_dissector_key_ipv6_addrs *key =
503 skb_flow_dissector_target(f->dissector,
504 FLOW_DISSECTOR_KEY_IPV6_ADDRS,
505 f->key);
506 struct flow_dissector_key_ipv6_addrs *mask =
507 skb_flow_dissector_target(f->dissector,
508 FLOW_DISSECTOR_KEY_IPV6_ADDRS,
509 f->mask);
510
511 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_c,
512 src_ipv4_src_ipv6.ipv6_layout.ipv6),
513 &mask->src, sizeof(mask->src));
514 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
515 src_ipv4_src_ipv6.ipv6_layout.ipv6),
516 &key->src, sizeof(key->src));
517
518 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_c,
519 dst_ipv4_dst_ipv6.ipv6_layout.ipv6),
520 &mask->dst, sizeof(mask->dst));
521 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
522 dst_ipv4_dst_ipv6.ipv6_layout.ipv6),
523 &key->dst, sizeof(key->dst));
de0af0bf
RD
524
525 if (ipv6_addr_type(&mask->src) != IPV6_ADDR_ANY ||
526 ipv6_addr_type(&mask->dst) != IPV6_ADDR_ANY)
527 *min_inline = MLX5_INLINE_MODE_IP;
e3a2b7ed
AV
528 }
529
530 if (dissector_uses_key(f->dissector, FLOW_DISSECTOR_KEY_PORTS)) {
531 struct flow_dissector_key_ports *key =
532 skb_flow_dissector_target(f->dissector,
533 FLOW_DISSECTOR_KEY_PORTS,
534 f->key);
535 struct flow_dissector_key_ports *mask =
536 skb_flow_dissector_target(f->dissector,
537 FLOW_DISSECTOR_KEY_PORTS,
538 f->mask);
539 switch (ip_proto) {
540 case IPPROTO_TCP:
541 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
542 tcp_sport, ntohs(mask->src));
543 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
544 tcp_sport, ntohs(key->src));
545
546 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
547 tcp_dport, ntohs(mask->dst));
548 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
549 tcp_dport, ntohs(key->dst));
550 break;
551
552 case IPPROTO_UDP:
553 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
554 udp_sport, ntohs(mask->src));
555 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
556 udp_sport, ntohs(key->src));
557
558 MLX5_SET(fte_match_set_lyr_2_4, headers_c,
559 udp_dport, ntohs(mask->dst));
560 MLX5_SET(fte_match_set_lyr_2_4, headers_v,
561 udp_dport, ntohs(key->dst));
562 break;
563 default:
564 netdev_err(priv->netdev,
565 "Only UDP and TCP transport are supported\n");
566 return -EINVAL;
567 }
de0af0bf
RD
568
569 if (mask->src || mask->dst)
570 *min_inline = MLX5_INLINE_MODE_TCP_UDP;
e3a2b7ed
AV
571 }
572
573 return 0;
574}
575
de0af0bf
RD
576static int parse_cls_flower(struct mlx5e_priv *priv,
577 struct mlx5_flow_spec *spec,
578 struct tc_cls_flower_offload *f)
579{
580 struct mlx5_core_dev *dev = priv->mdev;
581 struct mlx5_eswitch *esw = dev->priv.eswitch;
582 struct mlx5_eswitch_rep *rep = priv->ppriv;
583 u8 min_inline;
584 int err;
585
586 err = __parse_cls_flower(priv, spec, f, &min_inline);
587
588 if (!err && esw->mode == SRIOV_OFFLOADS &&
589 rep->vport != FDB_UPLINK_VPORT) {
590 if (min_inline > esw->offloads.inline_mode) {
591 netdev_warn(priv->netdev,
592 "Flow is not offloaded due to min inline setting, required %d actual %d\n",
593 min_inline, esw->offloads.inline_mode);
594 return -EOPNOTSUPP;
595 }
596 }
597
598 return err;
599}
600
5c40348c
OG
601static int parse_tc_nic_actions(struct mlx5e_priv *priv, struct tcf_exts *exts,
602 u32 *action, u32 *flow_tag)
e3a2b7ed
AV
603{
604 const struct tc_action *a;
22dc13c8 605 LIST_HEAD(actions);
e3a2b7ed
AV
606
607 if (tc_no_actions(exts))
608 return -EINVAL;
609
610 *flow_tag = MLX5_FS_DEFAULT_FLOW_TAG;
611 *action = 0;
612
22dc13c8
WC
613 tcf_exts_to_list(exts, &actions);
614 list_for_each_entry(a, &actions, list) {
e3a2b7ed
AV
615 /* Only support a single action per rule */
616 if (*action)
617 return -EINVAL;
618
619 if (is_tcf_gact_shot(a)) {
620 *action |= MLX5_FLOW_CONTEXT_ACTION_DROP;
aad7e08d
AV
621 if (MLX5_CAP_FLOWTABLE(priv->mdev,
622 flow_table_properties_nic_receive.flow_counter))
623 *action |= MLX5_FLOW_CONTEXT_ACTION_COUNT;
e3a2b7ed
AV
624 continue;
625 }
626
627 if (is_tcf_skbedit_mark(a)) {
628 u32 mark = tcf_skbedit_mark(a);
629
630 if (mark & ~MLX5E_TC_FLOW_ID_MASK) {
631 netdev_warn(priv->netdev, "Bad flow mark - only 16 bit is supported: 0x%x\n",
632 mark);
633 return -EINVAL;
634 }
635
636 *flow_tag = mark;
637 *action |= MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
638 continue;
639 }
640
641 return -EINVAL;
642 }
643
644 return 0;
645}
646
a54e20b4
HHZ
647static inline int cmp_encap_info(struct mlx5_encap_info *a,
648 struct mlx5_encap_info *b)
649{
650 return memcmp(a, b, sizeof(*a));
651}
652
653static inline int hash_encap_info(struct mlx5_encap_info *info)
654{
655 return jhash(info, sizeof(*info), 0);
656}
657
658static int mlx5e_route_lookup_ipv4(struct mlx5e_priv *priv,
659 struct net_device *mirred_dev,
660 struct net_device **out_dev,
661 struct flowi4 *fl4,
662 struct neighbour **out_n,
663 __be32 *saddr,
664 int *out_ttl)
665{
666 struct rtable *rt;
667 struct neighbour *n = NULL;
668 int ttl;
669
670#if IS_ENABLED(CONFIG_INET)
abeffce9
AB
671 int ret;
672
a54e20b4 673 rt = ip_route_output_key(dev_net(mirred_dev), fl4);
abeffce9
AB
674 ret = PTR_ERR_OR_ZERO(rt);
675 if (ret)
676 return ret;
a54e20b4
HHZ
677#else
678 return -EOPNOTSUPP;
679#endif
680
681 if (!switchdev_port_same_parent_id(priv->netdev, rt->dst.dev)) {
a42485eb 682 pr_warn("%s: can't offload, devices not on same HW e-switch\n", __func__);
a54e20b4
HHZ
683 ip_rt_put(rt);
684 return -EOPNOTSUPP;
685 }
686
687 ttl = ip4_dst_hoplimit(&rt->dst);
688 n = dst_neigh_lookup(&rt->dst, &fl4->daddr);
689 ip_rt_put(rt);
690 if (!n)
691 return -ENOMEM;
692
693 *out_n = n;
694 *saddr = fl4->saddr;
695 *out_ttl = ttl;
696 *out_dev = rt->dst.dev;
697
698 return 0;
699}
700
701static int gen_vxlan_header_ipv4(struct net_device *out_dev,
702 char buf[],
703 unsigned char h_dest[ETH_ALEN],
704 int ttl,
705 __be32 daddr,
706 __be32 saddr,
707 __be16 udp_dst_port,
708 __be32 vx_vni)
709{
710 int encap_size = VXLAN_HLEN + sizeof(struct iphdr) + ETH_HLEN;
711 struct ethhdr *eth = (struct ethhdr *)buf;
712 struct iphdr *ip = (struct iphdr *)((char *)eth + sizeof(struct ethhdr));
713 struct udphdr *udp = (struct udphdr *)((char *)ip + sizeof(struct iphdr));
714 struct vxlanhdr *vxh = (struct vxlanhdr *)((char *)udp + sizeof(struct udphdr));
715
716 memset(buf, 0, encap_size);
717
718 ether_addr_copy(eth->h_dest, h_dest);
719 ether_addr_copy(eth->h_source, out_dev->dev_addr);
720 eth->h_proto = htons(ETH_P_IP);
721
722 ip->daddr = daddr;
723 ip->saddr = saddr;
724
725 ip->ttl = ttl;
726 ip->protocol = IPPROTO_UDP;
727 ip->version = 0x4;
728 ip->ihl = 0x5;
729
730 udp->dest = udp_dst_port;
731 vxh->vx_flags = VXLAN_HF_VNI;
732 vxh->vx_vni = vxlan_vni_field(vx_vni);
733
734 return encap_size;
735}
736
737static int mlx5e_create_encap_header_ipv4(struct mlx5e_priv *priv,
738 struct net_device *mirred_dev,
739 struct mlx5_encap_entry *e,
740 struct net_device **out_dev)
741{
742 int max_encap_size = MLX5_CAP_ESW(priv->mdev, max_encap_header_size);
a42485eb 743 struct neighbour *n = NULL;
a54e20b4 744 struct flowi4 fl4 = {};
a54e20b4
HHZ
745 char *encap_header;
746 int encap_size;
abeffce9
AB
747 __be32 saddr;
748 int ttl;
a54e20b4
HHZ
749 int err;
750
751 encap_header = kzalloc(max_encap_size, GFP_KERNEL);
752 if (!encap_header)
753 return -ENOMEM;
754
755 switch (e->tunnel_type) {
756 case MLX5_HEADER_TYPE_VXLAN:
757 fl4.flowi4_proto = IPPROTO_UDP;
758 fl4.fl4_dport = e->tun_info.tp_dst;
759 break;
760 default:
761 err = -EOPNOTSUPP;
762 goto out;
763 }
764 fl4.daddr = e->tun_info.daddr;
765
766 err = mlx5e_route_lookup_ipv4(priv, mirred_dev, out_dev,
767 &fl4, &n, &saddr, &ttl);
768 if (err)
769 goto out;
770
771 e->n = n;
772 e->out_dev = *out_dev;
773
774 if (!(n->nud_state & NUD_VALID)) {
a42485eb
OG
775 pr_warn("%s: can't offload, neighbour to %pI4 invalid\n", __func__, &fl4.daddr);
776 err = -EOPNOTSUPP;
a54e20b4
HHZ
777 goto out;
778 }
779
780 neigh_ha_snapshot(e->h_dest, n, *out_dev);
781
782 switch (e->tunnel_type) {
783 case MLX5_HEADER_TYPE_VXLAN:
784 encap_size = gen_vxlan_header_ipv4(*out_dev, encap_header,
785 e->h_dest, ttl,
786 e->tun_info.daddr,
787 saddr, e->tun_info.tp_dst,
788 e->tun_info.tun_id);
789 break;
790 default:
791 err = -EOPNOTSUPP;
792 goto out;
793 }
794
795 err = mlx5_encap_alloc(priv->mdev, e->tunnel_type,
796 encap_size, encap_header, &e->encap_id);
797out:
a42485eb
OG
798 if (err && n)
799 neigh_release(n);
a54e20b4
HHZ
800 kfree(encap_header);
801 return err;
802}
803
804static int mlx5e_attach_encap(struct mlx5e_priv *priv,
805 struct ip_tunnel_info *tun_info,
806 struct net_device *mirred_dev,
807 struct mlx5_esw_flow_attr *attr)
808{
809 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
810 unsigned short family = ip_tunnel_info_af(tun_info);
811 struct ip_tunnel_key *key = &tun_info->key;
812 struct mlx5_encap_info info;
813 struct mlx5_encap_entry *e;
814 struct net_device *out_dev;
815 uintptr_t hash_key;
816 bool found = false;
817 int tunnel_type;
818 int err;
819
2fcd82e9 820 /* udp dst port must be set */
a54e20b4 821 if (!memchr_inv(&key->tp_dst, 0, sizeof(key->tp_dst)))
2fcd82e9 822 goto vxlan_encap_offload_err;
a54e20b4 823
cd377663 824 /* setting udp src port isn't supported */
2fcd82e9
OG
825 if (memchr_inv(&key->tp_src, 0, sizeof(key->tp_src))) {
826vxlan_encap_offload_err:
827 netdev_warn(priv->netdev,
828 "must set udp dst port and not set udp src port\n");
cd377663 829 return -EOPNOTSUPP;
2fcd82e9 830 }
cd377663 831
a54e20b4
HHZ
832 if (mlx5e_vxlan_lookup_port(priv, be16_to_cpu(key->tp_dst)) &&
833 MLX5_CAP_ESW(priv->mdev, vxlan_encap_decap)) {
834 info.tp_dst = key->tp_dst;
835 info.tun_id = tunnel_id_to_key32(key->tun_id);
836 tunnel_type = MLX5_HEADER_TYPE_VXLAN;
837 } else {
2fcd82e9
OG
838 netdev_warn(priv->netdev,
839 "%d isn't an offloaded vxlan udp dport\n", be16_to_cpu(key->tp_dst));
a54e20b4
HHZ
840 return -EOPNOTSUPP;
841 }
842
843 switch (family) {
844 case AF_INET:
845 info.daddr = key->u.ipv4.dst;
846 break;
2fcd82e9
OG
847 case AF_INET6:
848 netdev_warn(priv->netdev,
849 "IPv6 tunnel encap offload isn't supported\n");
a54e20b4
HHZ
850 default:
851 return -EOPNOTSUPP;
852 }
853
854 hash_key = hash_encap_info(&info);
855
856 hash_for_each_possible_rcu(esw->offloads.encap_tbl, e,
857 encap_hlist, hash_key) {
858 if (!cmp_encap_info(&e->tun_info, &info)) {
859 found = true;
860 break;
861 }
862 }
863
864 if (found) {
865 attr->encap = e;
866 return 0;
867 }
868
869 e = kzalloc(sizeof(*e), GFP_KERNEL);
870 if (!e)
871 return -ENOMEM;
872
873 e->tun_info = info;
874 e->tunnel_type = tunnel_type;
875 INIT_LIST_HEAD(&e->flows);
876
877 err = mlx5e_create_encap_header_ipv4(priv, mirred_dev, e, &out_dev);
878 if (err)
879 goto out_err;
880
881 attr->encap = e;
882 hash_add_rcu(esw->offloads.encap_tbl, &e->encap_hlist, hash_key);
883
884 return err;
885
886out_err:
887 kfree(e);
888 return err;
889}
890
03a9d11e 891static int parse_tc_fdb_actions(struct mlx5e_priv *priv, struct tcf_exts *exts,
a54e20b4 892 struct mlx5e_tc_flow *flow)
03a9d11e 893{
a54e20b4
HHZ
894 struct mlx5_esw_flow_attr *attr = flow->attr;
895 struct ip_tunnel_info *info = NULL;
03a9d11e 896 const struct tc_action *a;
22dc13c8 897 LIST_HEAD(actions);
a54e20b4
HHZ
898 bool encap = false;
899 int err;
03a9d11e
OG
900
901 if (tc_no_actions(exts))
902 return -EINVAL;
903
776b12b6
OG
904 memset(attr, 0, sizeof(*attr));
905 attr->in_rep = priv->ppriv;
03a9d11e 906
22dc13c8
WC
907 tcf_exts_to_list(exts, &actions);
908 list_for_each_entry(a, &actions, list) {
03a9d11e 909 if (is_tcf_gact_shot(a)) {
8b32580d
OG
910 attr->action |= MLX5_FLOW_CONTEXT_ACTION_DROP |
911 MLX5_FLOW_CONTEXT_ACTION_COUNT;
03a9d11e
OG
912 continue;
913 }
914
5724b8b5 915 if (is_tcf_mirred_egress_redirect(a)) {
03a9d11e
OG
916 int ifindex = tcf_mirred_ifindex(a);
917 struct net_device *out_dev;
918 struct mlx5e_priv *out_priv;
03a9d11e
OG
919
920 out_dev = __dev_get_by_index(dev_net(priv->netdev), ifindex);
921
a54e20b4
HHZ
922 if (switchdev_port_same_parent_id(priv->netdev,
923 out_dev)) {
924 attr->action |= MLX5_FLOW_CONTEXT_ACTION_FWD_DEST |
925 MLX5_FLOW_CONTEXT_ACTION_COUNT;
926 out_priv = netdev_priv(out_dev);
927 attr->out_rep = out_priv->ppriv;
928 } else if (encap) {
929 err = mlx5e_attach_encap(priv, info,
930 out_dev, attr);
931 if (err)
932 return err;
933 list_add(&flow->encap, &attr->encap->flows);
934 attr->action |= MLX5_FLOW_CONTEXT_ACTION_ENCAP |
935 MLX5_FLOW_CONTEXT_ACTION_FWD_DEST |
936 MLX5_FLOW_CONTEXT_ACTION_COUNT;
937 out_priv = netdev_priv(attr->encap->out_dev);
938 attr->out_rep = out_priv->ppriv;
939 } else {
03a9d11e
OG
940 pr_err("devices %s %s not on same switch HW, can't offload forwarding\n",
941 priv->netdev->name, out_dev->name);
942 return -EINVAL;
943 }
a54e20b4
HHZ
944 continue;
945 }
03a9d11e 946
a54e20b4
HHZ
947 if (is_tcf_tunnel_set(a)) {
948 info = tcf_tunnel_info(a);
949 if (info)
950 encap = true;
951 else
952 return -EOPNOTSUPP;
03a9d11e
OG
953 continue;
954 }
955
8b32580d
OG
956 if (is_tcf_vlan(a)) {
957 if (tcf_vlan_action(a) == VLAN_F_POP) {
958 attr->action |= MLX5_FLOW_CONTEXT_ACTION_VLAN_POP;
959 } else if (tcf_vlan_action(a) == VLAN_F_PUSH) {
960 if (tcf_vlan_push_proto(a) != htons(ETH_P_8021Q))
961 return -EOPNOTSUPP;
962
963 attr->action |= MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH;
964 attr->vlan = tcf_vlan_push_vid(a);
965 }
966 continue;
967 }
968
bbd00f7e
HHZ
969 if (is_tcf_tunnel_release(a)) {
970 attr->action |= MLX5_FLOW_CONTEXT_ACTION_DECAP;
971 continue;
972 }
973
03a9d11e
OG
974 return -EINVAL;
975 }
976 return 0;
977}
978
e3a2b7ed
AV
979int mlx5e_configure_flower(struct mlx5e_priv *priv, __be16 protocol,
980 struct tc_cls_flower_offload *f)
981{
acff797c 982 struct mlx5e_tc_table *tc = &priv->fs.tc;
e3a2b7ed 983 int err = 0;
776b12b6
OG
984 bool fdb_flow = false;
985 u32 flow_tag, action;
e3a2b7ed 986 struct mlx5e_tc_flow *flow;
c5bb1730 987 struct mlx5_flow_spec *spec;
adb4c123 988 struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
e3a2b7ed 989
776b12b6
OG
990 if (esw && esw->mode == SRIOV_OFFLOADS)
991 fdb_flow = true;
992
53636068
RD
993 if (fdb_flow)
994 flow = kzalloc(sizeof(*flow) +
995 sizeof(struct mlx5_esw_flow_attr),
996 GFP_KERNEL);
997 else
998 flow = kzalloc(sizeof(*flow), GFP_KERNEL);
e3a2b7ed 999
c5bb1730
MG
1000 spec = mlx5_vzalloc(sizeof(*spec));
1001 if (!spec || !flow) {
e3a2b7ed
AV
1002 err = -ENOMEM;
1003 goto err_free;
1004 }
1005
1006 flow->cookie = f->cookie;
1007
c5bb1730 1008 err = parse_cls_flower(priv, spec, f);
e3a2b7ed
AV
1009 if (err < 0)
1010 goto err_free;
1011
776b12b6
OG
1012 if (fdb_flow) {
1013 flow->attr = (struct mlx5_esw_flow_attr *)(flow + 1);
a54e20b4 1014 err = parse_tc_fdb_actions(priv, f->exts, flow);
adb4c123
OG
1015 if (err < 0)
1016 goto err_free;
776b12b6 1017 flow->rule = mlx5e_tc_add_fdb_flow(priv, spec, flow->attr);
adb4c123
OG
1018 } else {
1019 err = parse_tc_nic_actions(priv, f->exts, &action, &flow_tag);
1020 if (err < 0)
1021 goto err_free;
1022 flow->rule = mlx5e_tc_add_nic_flow(priv, spec, action, flow_tag);
1023 }
e3a2b7ed 1024
e3a2b7ed
AV
1025 if (IS_ERR(flow->rule)) {
1026 err = PTR_ERR(flow->rule);
5e86397a 1027 goto err_del_rule;
e3a2b7ed
AV
1028 }
1029
5c40348c
OG
1030 err = rhashtable_insert_fast(&tc->ht, &flow->node,
1031 tc->ht_params);
1032 if (err)
1033 goto err_del_rule;
1034
e3a2b7ed
AV
1035 goto out;
1036
5c40348c 1037err_del_rule:
5e86397a 1038 mlx5e_tc_del_flow(priv, flow);
e3a2b7ed
AV
1039
1040err_free:
53636068 1041 kfree(flow);
e3a2b7ed 1042out:
c5bb1730 1043 kvfree(spec);
e3a2b7ed
AV
1044 return err;
1045}
1046
1047int mlx5e_delete_flower(struct mlx5e_priv *priv,
1048 struct tc_cls_flower_offload *f)
1049{
1050 struct mlx5e_tc_flow *flow;
acff797c 1051 struct mlx5e_tc_table *tc = &priv->fs.tc;
e3a2b7ed
AV
1052
1053 flow = rhashtable_lookup_fast(&tc->ht, &f->cookie,
1054 tc->ht_params);
1055 if (!flow)
1056 return -EINVAL;
1057
1058 rhashtable_remove_fast(&tc->ht, &flow->node, tc->ht_params);
1059
961e8979 1060 mlx5e_tc_del_flow(priv, flow);
e3a2b7ed 1061
a54e20b4 1062
e3a2b7ed
AV
1063 kfree(flow);
1064
1065 return 0;
1066}
1067
aad7e08d
AV
1068int mlx5e_stats_flower(struct mlx5e_priv *priv,
1069 struct tc_cls_flower_offload *f)
1070{
1071 struct mlx5e_tc_table *tc = &priv->fs.tc;
1072 struct mlx5e_tc_flow *flow;
1073 struct tc_action *a;
1074 struct mlx5_fc *counter;
22dc13c8 1075 LIST_HEAD(actions);
aad7e08d
AV
1076 u64 bytes;
1077 u64 packets;
1078 u64 lastuse;
1079
1080 flow = rhashtable_lookup_fast(&tc->ht, &f->cookie,
1081 tc->ht_params);
1082 if (!flow)
1083 return -EINVAL;
1084
1085 counter = mlx5_flow_rule_counter(flow->rule);
1086 if (!counter)
1087 return 0;
1088
1089 mlx5_fc_query_cached(counter, &bytes, &packets, &lastuse);
1090
22dc13c8
WC
1091 tcf_exts_to_list(f->exts, &actions);
1092 list_for_each_entry(a, &actions, list)
aad7e08d
AV
1093 tcf_action_stats_update(a, bytes, packets, lastuse);
1094
1095 return 0;
1096}
1097
e8f887ac
AV
1098static const struct rhashtable_params mlx5e_tc_flow_ht_params = {
1099 .head_offset = offsetof(struct mlx5e_tc_flow, node),
1100 .key_offset = offsetof(struct mlx5e_tc_flow, cookie),
1101 .key_len = sizeof(((struct mlx5e_tc_flow *)0)->cookie),
1102 .automatic_shrinking = true,
1103};
1104
1105int mlx5e_tc_init(struct mlx5e_priv *priv)
1106{
acff797c 1107 struct mlx5e_tc_table *tc = &priv->fs.tc;
e8f887ac
AV
1108
1109 tc->ht_params = mlx5e_tc_flow_ht_params;
1110 return rhashtable_init(&tc->ht, &tc->ht_params);
1111}
1112
1113static void _mlx5e_tc_del_flow(void *ptr, void *arg)
1114{
1115 struct mlx5e_tc_flow *flow = ptr;
1116 struct mlx5e_priv *priv = arg;
1117
961e8979 1118 mlx5e_tc_del_flow(priv, flow);
e8f887ac
AV
1119 kfree(flow);
1120}
1121
1122void mlx5e_tc_cleanup(struct mlx5e_priv *priv)
1123{
acff797c 1124 struct mlx5e_tc_table *tc = &priv->fs.tc;
e8f887ac
AV
1125
1126 rhashtable_free_and_destroy(&tc->ht, _mlx5e_tc_del_flow, priv);
1127
acff797c
MG
1128 if (!IS_ERR_OR_NULL(tc->t)) {
1129 mlx5_destroy_flow_table(tc->t);
1130 tc->t = NULL;
e8f887ac
AV
1131 }
1132}