mlxsw: spectrum_acl: Split chunk struct into chunk and vchunk
[linux-2.6-block.git] / drivers / net / ethernet / mellanox / mlxsw / spectrum_acl.c
CommitLineData
9948a064
JP
1// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2/* Copyright (c) 2017-2018 Mellanox Technologies. All rights reserved */
22a67766
JP
3
4#include <linux/kernel.h>
5#include <linux/slab.h>
6#include <linux/errno.h>
7#include <linux/list.h>
8#include <linux/string.h>
9#include <linux/rhashtable.h>
10#include <linux/netdevice.h>
3aaff323 11#include <net/net_namespace.h>
a150201a 12#include <net/tc_act/tc_vlan.h>
22a67766
JP
13
14#include "reg.h"
15#include "core.h"
16#include "resources.h"
17#include "spectrum.h"
18#include "core_acl_flex_keys.h"
19#include "core_acl_flex_actions.h"
64eccd00 20#include "spectrum_acl_tcam.h"
22a67766
JP
21
22struct mlxsw_sp_acl {
446a1541 23 struct mlxsw_sp *mlxsw_sp;
22a67766 24 struct mlxsw_afk *afk;
a1107487 25 struct mlxsw_sp_fid *dummy_fid;
22a67766 26 struct rhashtable ruleset_ht;
096e914f 27 struct list_head rules;
446a1541
AS
28 struct {
29 struct delayed_work dw;
30 unsigned long interval; /* ms */
31#define MLXSW_SP_ACL_RULE_ACTIVITY_UPDATE_PERIOD_MS 1000
32 } rule_activity_update;
bab5c1cf 33 struct mlxsw_sp_acl_tcam tcam;
22a67766
JP
34};
35
36struct mlxsw_afk *mlxsw_sp_acl_afk(struct mlxsw_sp_acl *acl)
37{
38 return acl->afk;
39}
40
3aaff323
JP
41struct mlxsw_sp_acl_block_binding {
42 struct list_head list;
43 struct net_device *dev;
44 struct mlxsw_sp_port *mlxsw_sp_port;
22a67766 45 bool ingress;
3aaff323
JP
46};
47
48struct mlxsw_sp_acl_block {
49 struct list_head binding_list;
50 struct mlxsw_sp_acl_ruleset *ruleset_zero;
51 struct mlxsw_sp *mlxsw_sp;
52 unsigned int rule_count;
53 unsigned int disable_count;
54};
55
56struct mlxsw_sp_acl_ruleset_ht_key {
57 struct mlxsw_sp_acl_block *block;
45b62742 58 u32 chain_index;
22a67766
JP
59 const struct mlxsw_sp_acl_profile_ops *ops;
60};
61
62struct mlxsw_sp_acl_ruleset {
63 struct rhash_head ht_node; /* Member of acl HT */
64 struct mlxsw_sp_acl_ruleset_ht_key ht_key;
65 struct rhashtable rule_ht;
66 unsigned int ref_count;
67 unsigned long priv[0];
68 /* priv has to be always the last item */
69};
70
71struct mlxsw_sp_acl_rule {
72 struct rhash_head ht_node; /* Member of rule HT */
096e914f 73 struct list_head list;
22a67766
JP
74 unsigned long cookie; /* HT key */
75 struct mlxsw_sp_acl_ruleset *ruleset;
76 struct mlxsw_sp_acl_rule_info *rulei;
446a1541 77 u64 last_used;
7c1b8eb1
AS
78 u64 last_packets;
79 u64 last_bytes;
22a67766
JP
80 unsigned long priv[0];
81 /* priv has to be always the last item */
82};
83
84static const struct rhashtable_params mlxsw_sp_acl_ruleset_ht_params = {
85 .key_len = sizeof(struct mlxsw_sp_acl_ruleset_ht_key),
86 .key_offset = offsetof(struct mlxsw_sp_acl_ruleset, ht_key),
87 .head_offset = offsetof(struct mlxsw_sp_acl_ruleset, ht_node),
88 .automatic_shrinking = true,
89};
90
91static const struct rhashtable_params mlxsw_sp_acl_rule_ht_params = {
92 .key_len = sizeof(unsigned long),
93 .key_offset = offsetof(struct mlxsw_sp_acl_rule, cookie),
94 .head_offset = offsetof(struct mlxsw_sp_acl_rule, ht_node),
95 .automatic_shrinking = true,
96};
97
a1107487
IS
98struct mlxsw_sp_fid *mlxsw_sp_acl_dummy_fid(struct mlxsw_sp *mlxsw_sp)
99{
100 return mlxsw_sp->acl->dummy_fid;
101}
102
3aaff323
JP
103struct mlxsw_sp *mlxsw_sp_acl_block_mlxsw_sp(struct mlxsw_sp_acl_block *block)
104{
105 return block->mlxsw_sp;
106}
107
108unsigned int mlxsw_sp_acl_block_rule_count(struct mlxsw_sp_acl_block *block)
109{
110 return block ? block->rule_count : 0;
111}
112
113void mlxsw_sp_acl_block_disable_inc(struct mlxsw_sp_acl_block *block)
114{
115 if (block)
116 block->disable_count++;
117}
118
119void mlxsw_sp_acl_block_disable_dec(struct mlxsw_sp_acl_block *block)
120{
121 if (block)
122 block->disable_count--;
123}
124
125bool mlxsw_sp_acl_block_disabled(struct mlxsw_sp_acl_block *block)
9fe5fdf2 126{
3aaff323
JP
127 return block->disable_count;
128}
129
903fcf73
ND
130bool mlxsw_sp_acl_block_is_egress_bound(struct mlxsw_sp_acl_block *block)
131{
132 struct mlxsw_sp_acl_block_binding *binding;
133
134 list_for_each_entry(binding, &block->binding_list, list) {
135 if (!binding->ingress)
136 return true;
137 }
138 return false;
139}
140
808be37a
IS
141static bool
142mlxsw_sp_acl_ruleset_is_singular(const struct mlxsw_sp_acl_ruleset *ruleset)
143{
144 /* We hold a reference on ruleset ourselves */
145 return ruleset->ref_count == 2;
146}
147
3aaff323
JP
148static int
149mlxsw_sp_acl_ruleset_bind(struct mlxsw_sp *mlxsw_sp,
150 struct mlxsw_sp_acl_block *block,
151 struct mlxsw_sp_acl_block_binding *binding)
152{
153 struct mlxsw_sp_acl_ruleset *ruleset = block->ruleset_zero;
9fe5fdf2
JP
154 const struct mlxsw_sp_acl_profile_ops *ops = ruleset->ht_key.ops;
155
3aaff323 156 return ops->ruleset_bind(mlxsw_sp, ruleset->priv,
4b23258d 157 binding->mlxsw_sp_port, binding->ingress);
9fe5fdf2
JP
158}
159
3aaff323
JP
160static void
161mlxsw_sp_acl_ruleset_unbind(struct mlxsw_sp *mlxsw_sp,
162 struct mlxsw_sp_acl_block *block,
163 struct mlxsw_sp_acl_block_binding *binding)
9fe5fdf2 164{
3aaff323 165 struct mlxsw_sp_acl_ruleset *ruleset = block->ruleset_zero;
9fe5fdf2
JP
166 const struct mlxsw_sp_acl_profile_ops *ops = ruleset->ht_key.ops;
167
3aaff323 168 ops->ruleset_unbind(mlxsw_sp, ruleset->priv,
4b23258d 169 binding->mlxsw_sp_port, binding->ingress);
3aaff323
JP
170}
171
172static bool mlxsw_sp_acl_ruleset_block_bound(struct mlxsw_sp_acl_block *block)
173{
174 return block->ruleset_zero;
175}
176
177static int
178mlxsw_sp_acl_ruleset_block_bind(struct mlxsw_sp *mlxsw_sp,
179 struct mlxsw_sp_acl_ruleset *ruleset,
180 struct mlxsw_sp_acl_block *block)
181{
182 struct mlxsw_sp_acl_block_binding *binding;
183 int err;
184
185 block->ruleset_zero = ruleset;
186 list_for_each_entry(binding, &block->binding_list, list) {
187 err = mlxsw_sp_acl_ruleset_bind(mlxsw_sp, block, binding);
188 if (err)
189 goto rollback;
190 }
191 return 0;
192
193rollback:
194 list_for_each_entry_continue_reverse(binding, &block->binding_list,
195 list)
196 mlxsw_sp_acl_ruleset_unbind(mlxsw_sp, block, binding);
197 block->ruleset_zero = NULL;
198
199 return err;
200}
201
202static void
203mlxsw_sp_acl_ruleset_block_unbind(struct mlxsw_sp *mlxsw_sp,
204 struct mlxsw_sp_acl_ruleset *ruleset,
205 struct mlxsw_sp_acl_block *block)
206{
207 struct mlxsw_sp_acl_block_binding *binding;
208
209 list_for_each_entry(binding, &block->binding_list, list)
210 mlxsw_sp_acl_ruleset_unbind(mlxsw_sp, block, binding);
211 block->ruleset_zero = NULL;
212}
213
214struct mlxsw_sp_acl_block *mlxsw_sp_acl_block_create(struct mlxsw_sp *mlxsw_sp,
215 struct net *net)
216{
217 struct mlxsw_sp_acl_block *block;
218
219 block = kzalloc(sizeof(*block), GFP_KERNEL);
220 if (!block)
221 return NULL;
222 INIT_LIST_HEAD(&block->binding_list);
223 block->mlxsw_sp = mlxsw_sp;
224 return block;
225}
226
227void mlxsw_sp_acl_block_destroy(struct mlxsw_sp_acl_block *block)
228{
229 WARN_ON(!list_empty(&block->binding_list));
230 kfree(block);
231}
232
233static struct mlxsw_sp_acl_block_binding *
234mlxsw_sp_acl_block_lookup(struct mlxsw_sp_acl_block *block,
235 struct mlxsw_sp_port *mlxsw_sp_port, bool ingress)
236{
237 struct mlxsw_sp_acl_block_binding *binding;
238
239 list_for_each_entry(binding, &block->binding_list, list)
240 if (binding->mlxsw_sp_port == mlxsw_sp_port &&
241 binding->ingress == ingress)
242 return binding;
243 return NULL;
244}
245
246int mlxsw_sp_acl_block_bind(struct mlxsw_sp *mlxsw_sp,
247 struct mlxsw_sp_acl_block *block,
248 struct mlxsw_sp_port *mlxsw_sp_port,
249 bool ingress)
250{
251 struct mlxsw_sp_acl_block_binding *binding;
252 int err;
253
254 if (WARN_ON(mlxsw_sp_acl_block_lookup(block, mlxsw_sp_port, ingress)))
255 return -EEXIST;
256
257 binding = kzalloc(sizeof(*binding), GFP_KERNEL);
258 if (!binding)
259 return -ENOMEM;
260 binding->mlxsw_sp_port = mlxsw_sp_port;
261 binding->ingress = ingress;
262
263 if (mlxsw_sp_acl_ruleset_block_bound(block)) {
264 err = mlxsw_sp_acl_ruleset_bind(mlxsw_sp, block, binding);
265 if (err)
266 goto err_ruleset_bind;
267 }
268
269 list_add(&binding->list, &block->binding_list);
270 return 0;
271
272err_ruleset_bind:
273 kfree(binding);
274 return err;
275}
276
277int mlxsw_sp_acl_block_unbind(struct mlxsw_sp *mlxsw_sp,
278 struct mlxsw_sp_acl_block *block,
279 struct mlxsw_sp_port *mlxsw_sp_port,
280 bool ingress)
281{
282 struct mlxsw_sp_acl_block_binding *binding;
283
284 binding = mlxsw_sp_acl_block_lookup(block, mlxsw_sp_port, ingress);
285 if (!binding)
286 return -ENOENT;
287
288 list_del(&binding->list);
289
290 if (mlxsw_sp_acl_ruleset_block_bound(block))
291 mlxsw_sp_acl_ruleset_unbind(mlxsw_sp, block, binding);
292
293 kfree(binding);
294 return 0;
9fe5fdf2
JP
295}
296
22a67766 297static struct mlxsw_sp_acl_ruleset *
3aaff323
JP
298mlxsw_sp_acl_ruleset_create(struct mlxsw_sp *mlxsw_sp,
299 struct mlxsw_sp_acl_block *block, u32 chain_index,
e2f2a1fd
JP
300 const struct mlxsw_sp_acl_profile_ops *ops,
301 struct mlxsw_afk_element_usage *tmplt_elusage)
22a67766
JP
302{
303 struct mlxsw_sp_acl *acl = mlxsw_sp->acl;
304 struct mlxsw_sp_acl_ruleset *ruleset;
305 size_t alloc_size;
306 int err;
307
308 alloc_size = sizeof(*ruleset) + ops->ruleset_priv_size;
309 ruleset = kzalloc(alloc_size, GFP_KERNEL);
310 if (!ruleset)
311 return ERR_PTR(-ENOMEM);
312 ruleset->ref_count = 1;
3aaff323 313 ruleset->ht_key.block = block;
9fe5fdf2 314 ruleset->ht_key.chain_index = chain_index;
22a67766
JP
315 ruleset->ht_key.ops = ops;
316
317 err = rhashtable_init(&ruleset->rule_ht, &mlxsw_sp_acl_rule_ht_params);
318 if (err)
319 goto err_rhashtable_init;
320
e2f2a1fd
JP
321 err = ops->ruleset_add(mlxsw_sp, &acl->tcam, ruleset->priv,
322 tmplt_elusage);
22a67766
JP
323 if (err)
324 goto err_ops_ruleset_add;
325
22a67766
JP
326 err = rhashtable_insert_fast(&acl->ruleset_ht, &ruleset->ht_node,
327 mlxsw_sp_acl_ruleset_ht_params);
328 if (err)
9fe5fdf2
JP
329 goto err_ht_insert;
330
9fe5fdf2
JP
331 return ruleset;
332
9fe5fdf2
JP
333err_ht_insert:
334 ops->ruleset_del(mlxsw_sp, ruleset->priv);
335err_ops_ruleset_add:
336 rhashtable_destroy(&ruleset->rule_ht);
337err_rhashtable_init:
338 kfree(ruleset);
339 return ERR_PTR(err);
22a67766
JP
340}
341
9fe5fdf2
JP
342static void mlxsw_sp_acl_ruleset_destroy(struct mlxsw_sp *mlxsw_sp,
343 struct mlxsw_sp_acl_ruleset *ruleset)
22a67766
JP
344{
345 const struct mlxsw_sp_acl_profile_ops *ops = ruleset->ht_key.ops;
346 struct mlxsw_sp_acl *acl = mlxsw_sp->acl;
347
22a67766
JP
348 rhashtable_remove_fast(&acl->ruleset_ht, &ruleset->ht_node,
349 mlxsw_sp_acl_ruleset_ht_params);
9fe5fdf2
JP
350 ops->ruleset_del(mlxsw_sp, ruleset->priv);
351 rhashtable_destroy(&ruleset->rule_ht);
352 kfree(ruleset);
22a67766
JP
353}
354
355static void mlxsw_sp_acl_ruleset_ref_inc(struct mlxsw_sp_acl_ruleset *ruleset)
356{
357 ruleset->ref_count++;
358}
359
360static void mlxsw_sp_acl_ruleset_ref_dec(struct mlxsw_sp *mlxsw_sp,
361 struct mlxsw_sp_acl_ruleset *ruleset)
362{
363 if (--ruleset->ref_count)
364 return;
22a67766
JP
365 mlxsw_sp_acl_ruleset_destroy(mlxsw_sp, ruleset);
366}
367
dbec8ee9 368static struct mlxsw_sp_acl_ruleset *
3aaff323
JP
369__mlxsw_sp_acl_ruleset_lookup(struct mlxsw_sp_acl *acl,
370 struct mlxsw_sp_acl_block *block, u32 chain_index,
dbec8ee9
JP
371 const struct mlxsw_sp_acl_profile_ops *ops)
372{
373 struct mlxsw_sp_acl_ruleset_ht_key ht_key;
374
375 memset(&ht_key, 0, sizeof(ht_key));
3aaff323 376 ht_key.block = block;
dbec8ee9
JP
377 ht_key.chain_index = chain_index;
378 ht_key.ops = ops;
379 return rhashtable_lookup_fast(&acl->ruleset_ht, &ht_key,
380 mlxsw_sp_acl_ruleset_ht_params);
381}
382
383struct mlxsw_sp_acl_ruleset *
3aaff323
JP
384mlxsw_sp_acl_ruleset_lookup(struct mlxsw_sp *mlxsw_sp,
385 struct mlxsw_sp_acl_block *block, u32 chain_index,
dbec8ee9
JP
386 enum mlxsw_sp_acl_profile profile)
387{
388 const struct mlxsw_sp_acl_profile_ops *ops;
389 struct mlxsw_sp_acl *acl = mlxsw_sp->acl;
390 struct mlxsw_sp_acl_ruleset *ruleset;
391
bab5c1cf 392 ops = mlxsw_sp_acl_tcam_profile_ops(mlxsw_sp, profile);
dbec8ee9
JP
393 if (!ops)
394 return ERR_PTR(-EINVAL);
3aaff323 395 ruleset = __mlxsw_sp_acl_ruleset_lookup(acl, block, chain_index, ops);
dbec8ee9
JP
396 if (!ruleset)
397 return ERR_PTR(-ENOENT);
398 return ruleset;
399}
400
22a67766 401struct mlxsw_sp_acl_ruleset *
3aaff323
JP
402mlxsw_sp_acl_ruleset_get(struct mlxsw_sp *mlxsw_sp,
403 struct mlxsw_sp_acl_block *block, u32 chain_index,
e2f2a1fd
JP
404 enum mlxsw_sp_acl_profile profile,
405 struct mlxsw_afk_element_usage *tmplt_elusage)
22a67766
JP
406{
407 const struct mlxsw_sp_acl_profile_ops *ops;
408 struct mlxsw_sp_acl *acl = mlxsw_sp->acl;
22a67766 409 struct mlxsw_sp_acl_ruleset *ruleset;
22a67766 410
bab5c1cf 411 ops = mlxsw_sp_acl_tcam_profile_ops(mlxsw_sp, profile);
22a67766
JP
412 if (!ops)
413 return ERR_PTR(-EINVAL);
414
3aaff323 415 ruleset = __mlxsw_sp_acl_ruleset_lookup(acl, block, chain_index, ops);
22a67766
JP
416 if (ruleset) {
417 mlxsw_sp_acl_ruleset_ref_inc(ruleset);
418 return ruleset;
419 }
e2f2a1fd
JP
420 return mlxsw_sp_acl_ruleset_create(mlxsw_sp, block, chain_index, ops,
421 tmplt_elusage);
22a67766
JP
422}
423
424void mlxsw_sp_acl_ruleset_put(struct mlxsw_sp *mlxsw_sp,
425 struct mlxsw_sp_acl_ruleset *ruleset)
426{
427 mlxsw_sp_acl_ruleset_ref_dec(mlxsw_sp, ruleset);
428}
429
0ade3b64
JP
430u16 mlxsw_sp_acl_ruleset_group_id(struct mlxsw_sp_acl_ruleset *ruleset)
431{
432 const struct mlxsw_sp_acl_profile_ops *ops = ruleset->ht_key.ops;
433
434 return ops->ruleset_group_id(ruleset->priv);
435}
436
22a67766 437struct mlxsw_sp_acl_rule_info *
c20580c2
ND
438mlxsw_sp_acl_rulei_create(struct mlxsw_sp_acl *acl,
439 struct mlxsw_afa_block *afa_block)
22a67766
JP
440{
441 struct mlxsw_sp_acl_rule_info *rulei;
442 int err;
443
444 rulei = kzalloc(sizeof(*rulei), GFP_KERNEL);
445 if (!rulei)
446 return NULL;
c20580c2
ND
447
448 if (afa_block) {
449 rulei->act_block = afa_block;
450 return rulei;
451 }
452
d3b939b8 453 rulei->act_block = mlxsw_afa_block_create(acl->mlxsw_sp->afa);
22a67766
JP
454 if (IS_ERR(rulei->act_block)) {
455 err = PTR_ERR(rulei->act_block);
456 goto err_afa_block_create;
457 }
c20580c2 458 rulei->action_created = 1;
22a67766
JP
459 return rulei;
460
461err_afa_block_create:
462 kfree(rulei);
463 return ERR_PTR(err);
464}
465
466void mlxsw_sp_acl_rulei_destroy(struct mlxsw_sp_acl_rule_info *rulei)
467{
c20580c2
ND
468 if (rulei->action_created)
469 mlxsw_afa_block_destroy(rulei->act_block);
22a67766
JP
470 kfree(rulei);
471}
472
473int mlxsw_sp_acl_rulei_commit(struct mlxsw_sp_acl_rule_info *rulei)
474{
475 return mlxsw_afa_block_commit(rulei->act_block);
476}
477
478void mlxsw_sp_acl_rulei_priority(struct mlxsw_sp_acl_rule_info *rulei,
479 unsigned int priority)
480{
2139469b 481 rulei->priority = priority >> 16;
22a67766
JP
482}
483
484void mlxsw_sp_acl_rulei_keymask_u32(struct mlxsw_sp_acl_rule_info *rulei,
485 enum mlxsw_afk_element element,
486 u32 key_value, u32 mask_value)
487{
488 mlxsw_afk_values_add_u32(&rulei->values, element,
489 key_value, mask_value);
490}
491
492void mlxsw_sp_acl_rulei_keymask_buf(struct mlxsw_sp_acl_rule_info *rulei,
493 enum mlxsw_afk_element element,
494 const char *key_value,
495 const char *mask_value, unsigned int len)
496{
497 mlxsw_afk_values_add_buf(&rulei->values, element,
498 key_value, mask_value, len);
499}
500
2a52a8c6 501int mlxsw_sp_acl_rulei_act_continue(struct mlxsw_sp_acl_rule_info *rulei)
22a67766 502{
2a52a8c6 503 return mlxsw_afa_block_continue(rulei->act_block);
22a67766
JP
504}
505
2a52a8c6
JP
506int mlxsw_sp_acl_rulei_act_jump(struct mlxsw_sp_acl_rule_info *rulei,
507 u16 group_id)
22a67766 508{
2a52a8c6 509 return mlxsw_afa_block_jump(rulei->act_block, group_id);
22a67766
JP
510}
511
49bae2f3
JP
512int mlxsw_sp_acl_rulei_act_terminate(struct mlxsw_sp_acl_rule_info *rulei)
513{
514 return mlxsw_afa_block_terminate(rulei->act_block);
515}
516
22a67766
JP
517int mlxsw_sp_acl_rulei_act_drop(struct mlxsw_sp_acl_rule_info *rulei)
518{
519 return mlxsw_afa_block_append_drop(rulei->act_block);
520}
521
df7eea96
JP
522int mlxsw_sp_acl_rulei_act_trap(struct mlxsw_sp_acl_rule_info *rulei)
523{
9cb3fa94
YG
524 return mlxsw_afa_block_append_trap(rulei->act_block,
525 MLXSW_TRAP_ID_ACL0);
df7eea96
JP
526}
527
22a67766
JP
528int mlxsw_sp_acl_rulei_act_fwd(struct mlxsw_sp *mlxsw_sp,
529 struct mlxsw_sp_acl_rule_info *rulei,
ad7769ca
ND
530 struct net_device *out_dev,
531 struct netlink_ext_ack *extack)
22a67766
JP
532{
533 struct mlxsw_sp_port *mlxsw_sp_port;
534 u8 local_port;
535 bool in_port;
536
537 if (out_dev) {
af1fe786
ND
538 if (!mlxsw_sp_port_dev_check(out_dev)) {
539 NL_SET_ERR_MSG_MOD(extack, "Invalid output device");
22a67766 540 return -EINVAL;
af1fe786 541 }
22a67766 542 mlxsw_sp_port = netdev_priv(out_dev);
af1fe786
ND
543 if (mlxsw_sp_port->mlxsw_sp != mlxsw_sp) {
544 NL_SET_ERR_MSG_MOD(extack, "Invalid output device");
22a67766 545 return -EINVAL;
af1fe786 546 }
22a67766
JP
547 local_port = mlxsw_sp_port->local_port;
548 in_port = false;
549 } else {
4bb51bd6 550 /* If out_dev is NULL, the caller wants to
22a67766
JP
551 * set forward to ingress port.
552 */
553 local_port = 0;
554 in_port = true;
555 }
556 return mlxsw_afa_block_append_fwd(rulei->act_block,
ad7769ca 557 local_port, in_port, extack);
22a67766
JP
558}
559
d0d13c18
AS
560int mlxsw_sp_acl_rulei_act_mirror(struct mlxsw_sp *mlxsw_sp,
561 struct mlxsw_sp_acl_rule_info *rulei,
562 struct mlxsw_sp_acl_block *block,
ad7769ca
ND
563 struct net_device *out_dev,
564 struct netlink_ext_ack *extack)
d0d13c18
AS
565{
566 struct mlxsw_sp_acl_block_binding *binding;
d0d13c18
AS
567 struct mlxsw_sp_port *in_port;
568
af1fe786
ND
569 if (!list_is_singular(&block->binding_list)) {
570 NL_SET_ERR_MSG_MOD(extack, "Only a single mirror source is allowed");
d0d13c18 571 return -EOPNOTSUPP;
af1fe786 572 }
d0d13c18
AS
573 binding = list_first_entry(&block->binding_list,
574 struct mlxsw_sp_acl_block_binding, list);
575 in_port = binding->mlxsw_sp_port;
d0d13c18
AS
576
577 return mlxsw_afa_block_append_mirror(rulei->act_block,
578 in_port->local_port,
079c9f39 579 out_dev,
ad7769ca
ND
580 binding->ingress,
581 extack);
d0d13c18
AS
582}
583
a150201a
PM
584int mlxsw_sp_acl_rulei_act_vlan(struct mlxsw_sp *mlxsw_sp,
585 struct mlxsw_sp_acl_rule_info *rulei,
ad7769ca
ND
586 u32 action, u16 vid, u16 proto, u8 prio,
587 struct netlink_ext_ack *extack)
a150201a
PM
588{
589 u8 ethertype;
590
73867881 591 if (action == FLOW_ACTION_VLAN_MANGLE) {
a150201a
PM
592 switch (proto) {
593 case ETH_P_8021Q:
594 ethertype = 0;
595 break;
596 case ETH_P_8021AD:
597 ethertype = 1;
598 break;
599 default:
af1fe786 600 NL_SET_ERR_MSG_MOD(extack, "Unsupported VLAN protocol");
a150201a
PM
601 dev_err(mlxsw_sp->bus_info->dev, "Unsupported VLAN protocol %#04x\n",
602 proto);
603 return -EINVAL;
604 }
605
606 return mlxsw_afa_block_append_vlan_modify(rulei->act_block,
ad7769ca
ND
607 vid, prio, ethertype,
608 extack);
a150201a 609 } else {
af1fe786 610 NL_SET_ERR_MSG_MOD(extack, "Unsupported VLAN action");
a150201a
PM
611 dev_err(mlxsw_sp->bus_info->dev, "Unsupported VLAN action\n");
612 return -EINVAL;
613 }
614}
615
48170729 616int mlxsw_sp_acl_rulei_act_count(struct mlxsw_sp *mlxsw_sp,
ad7769ca
ND
617 struct mlxsw_sp_acl_rule_info *rulei,
618 struct netlink_ext_ack *extack)
48170729
AS
619{
620 return mlxsw_afa_block_append_counter(rulei->act_block,
ad7769ca 621 &rulei->counter_index, extack);
48170729
AS
622}
623
ac44dd43
JP
624int mlxsw_sp_acl_rulei_act_fid_set(struct mlxsw_sp *mlxsw_sp,
625 struct mlxsw_sp_acl_rule_info *rulei,
ad7769ca 626 u16 fid, struct netlink_ext_ack *extack)
ac44dd43 627{
ad7769ca 628 return mlxsw_afa_block_append_fid_set(rulei->act_block, fid, extack);
ac44dd43
JP
629}
630
22a67766
JP
631struct mlxsw_sp_acl_rule *
632mlxsw_sp_acl_rule_create(struct mlxsw_sp *mlxsw_sp,
633 struct mlxsw_sp_acl_ruleset *ruleset,
ad7769ca 634 unsigned long cookie,
c20580c2 635 struct mlxsw_afa_block *afa_block,
ad7769ca 636 struct netlink_ext_ack *extack)
22a67766
JP
637{
638 const struct mlxsw_sp_acl_profile_ops *ops = ruleset->ht_key.ops;
639 struct mlxsw_sp_acl_rule *rule;
640 int err;
641
642 mlxsw_sp_acl_ruleset_ref_inc(ruleset);
64eccd00
JP
643 rule = kzalloc(sizeof(*rule) + ops->rule_priv_size(mlxsw_sp),
644 GFP_KERNEL);
22a67766
JP
645 if (!rule) {
646 err = -ENOMEM;
647 goto err_alloc;
648 }
649 rule->cookie = cookie;
650 rule->ruleset = ruleset;
651
c20580c2 652 rule->rulei = mlxsw_sp_acl_rulei_create(mlxsw_sp->acl, afa_block);
22a67766
JP
653 if (IS_ERR(rule->rulei)) {
654 err = PTR_ERR(rule->rulei);
655 goto err_rulei_create;
656 }
48170729 657
22a67766
JP
658 return rule;
659
660err_rulei_create:
661 kfree(rule);
662err_alloc:
663 mlxsw_sp_acl_ruleset_ref_dec(mlxsw_sp, ruleset);
664 return ERR_PTR(err);
665}
666
667void mlxsw_sp_acl_rule_destroy(struct mlxsw_sp *mlxsw_sp,
668 struct mlxsw_sp_acl_rule *rule)
669{
670 struct mlxsw_sp_acl_ruleset *ruleset = rule->ruleset;
671
672 mlxsw_sp_acl_rulei_destroy(rule->rulei);
673 kfree(rule);
674 mlxsw_sp_acl_ruleset_ref_dec(mlxsw_sp, ruleset);
675}
676
677int mlxsw_sp_acl_rule_add(struct mlxsw_sp *mlxsw_sp,
678 struct mlxsw_sp_acl_rule *rule)
679{
680 struct mlxsw_sp_acl_ruleset *ruleset = rule->ruleset;
681 const struct mlxsw_sp_acl_profile_ops *ops = ruleset->ht_key.ops;
682 int err;
683
684 err = ops->rule_add(mlxsw_sp, ruleset->priv, rule->priv, rule->rulei);
685 if (err)
686 return err;
687
688 err = rhashtable_insert_fast(&ruleset->rule_ht, &rule->ht_node,
689 mlxsw_sp_acl_rule_ht_params);
690 if (err)
691 goto err_rhashtable_insert;
692
808be37a
IS
693 if (!ruleset->ht_key.chain_index &&
694 mlxsw_sp_acl_ruleset_is_singular(ruleset)) {
695 /* We only need ruleset with chain index 0, the implicit
696 * one, to be directly bound to device. The rest of the
697 * rulesets are bound by "Goto action set".
698 */
699 err = mlxsw_sp_acl_ruleset_block_bind(mlxsw_sp, ruleset,
700 ruleset->ht_key.block);
701 if (err)
702 goto err_ruleset_block_bind;
703 }
704
096e914f 705 list_add_tail(&rule->list, &mlxsw_sp->acl->rules);
3aaff323 706 ruleset->ht_key.block->rule_count++;
22a67766
JP
707 return 0;
708
808be37a
IS
709err_ruleset_block_bind:
710 rhashtable_remove_fast(&ruleset->rule_ht, &rule->ht_node,
711 mlxsw_sp_acl_rule_ht_params);
22a67766
JP
712err_rhashtable_insert:
713 ops->rule_del(mlxsw_sp, rule->priv);
714 return err;
715}
716
717void mlxsw_sp_acl_rule_del(struct mlxsw_sp *mlxsw_sp,
718 struct mlxsw_sp_acl_rule *rule)
719{
720 struct mlxsw_sp_acl_ruleset *ruleset = rule->ruleset;
721 const struct mlxsw_sp_acl_profile_ops *ops = ruleset->ht_key.ops;
722
3aaff323 723 ruleset->ht_key.block->rule_count--;
096e914f 724 list_del(&rule->list);
808be37a
IS
725 if (!ruleset->ht_key.chain_index &&
726 mlxsw_sp_acl_ruleset_is_singular(ruleset))
727 mlxsw_sp_acl_ruleset_block_unbind(mlxsw_sp, ruleset,
728 ruleset->ht_key.block);
22a67766
JP
729 rhashtable_remove_fast(&ruleset->rule_ht, &rule->ht_node,
730 mlxsw_sp_acl_rule_ht_params);
731 ops->rule_del(mlxsw_sp, rule->priv);
732}
733
2507a64c
ND
734int mlxsw_sp_acl_rule_action_replace(struct mlxsw_sp *mlxsw_sp,
735 struct mlxsw_sp_acl_rule *rule,
736 struct mlxsw_afa_block *afa_block)
737{
738 struct mlxsw_sp_acl_ruleset *ruleset = rule->ruleset;
739 const struct mlxsw_sp_acl_profile_ops *ops = ruleset->ht_key.ops;
740 struct mlxsw_sp_acl_rule_info *rulei;
741
742 rulei = mlxsw_sp_acl_rule_rulei(rule);
743 rulei->act_block = afa_block;
744
42d704e0 745 return ops->rule_action_replace(mlxsw_sp, rule->priv, rule->rulei);
2507a64c
ND
746}
747
22a67766
JP
748struct mlxsw_sp_acl_rule *
749mlxsw_sp_acl_rule_lookup(struct mlxsw_sp *mlxsw_sp,
750 struct mlxsw_sp_acl_ruleset *ruleset,
751 unsigned long cookie)
752{
753 return rhashtable_lookup_fast(&ruleset->rule_ht, &cookie,
754 mlxsw_sp_acl_rule_ht_params);
755}
756
757struct mlxsw_sp_acl_rule_info *
758mlxsw_sp_acl_rule_rulei(struct mlxsw_sp_acl_rule *rule)
759{
760 return rule->rulei;
761}
762
446a1541
AS
763static int mlxsw_sp_acl_rule_activity_update(struct mlxsw_sp *mlxsw_sp,
764 struct mlxsw_sp_acl_rule *rule)
765{
766 struct mlxsw_sp_acl_ruleset *ruleset = rule->ruleset;
767 const struct mlxsw_sp_acl_profile_ops *ops = ruleset->ht_key.ops;
768 bool active;
769 int err;
770
771 err = ops->rule_activity_get(mlxsw_sp, rule->priv, &active);
772 if (err)
773 return err;
774 if (active)
775 rule->last_used = jiffies;
776 return 0;
777}
778
779static int mlxsw_sp_acl_rules_activity_update(struct mlxsw_sp_acl *acl)
780{
781 struct mlxsw_sp_acl_rule *rule;
782 int err;
783
784 /* Protect internal structures from changes */
785 rtnl_lock();
786 list_for_each_entry(rule, &acl->rules, list) {
787 err = mlxsw_sp_acl_rule_activity_update(acl->mlxsw_sp,
788 rule);
789 if (err)
790 goto err_rule_update;
791 }
792 rtnl_unlock();
793 return 0;
794
795err_rule_update:
796 rtnl_unlock();
797 return err;
798}
799
800static void mlxsw_sp_acl_rule_activity_work_schedule(struct mlxsw_sp_acl *acl)
801{
802 unsigned long interval = acl->rule_activity_update.interval;
803
804 mlxsw_core_schedule_dw(&acl->rule_activity_update.dw,
805 msecs_to_jiffies(interval));
806}
807
3021afe1 808static void mlxsw_sp_acl_rule_activity_update_work(struct work_struct *work)
446a1541
AS
809{
810 struct mlxsw_sp_acl *acl = container_of(work, struct mlxsw_sp_acl,
811 rule_activity_update.dw.work);
812 int err;
813
814 err = mlxsw_sp_acl_rules_activity_update(acl);
815 if (err)
816 dev_err(acl->mlxsw_sp->bus_info->dev, "Could not update acl activity");
817
818 mlxsw_sp_acl_rule_activity_work_schedule(acl);
819}
820
7c1b8eb1
AS
821int mlxsw_sp_acl_rule_get_stats(struct mlxsw_sp *mlxsw_sp,
822 struct mlxsw_sp_acl_rule *rule,
823 u64 *packets, u64 *bytes, u64 *last_use)
824
825{
826 struct mlxsw_sp_acl_rule_info *rulei;
827 u64 current_packets;
828 u64 current_bytes;
829 int err;
830
831 rulei = mlxsw_sp_acl_rule_rulei(rule);
832 err = mlxsw_sp_flow_counter_get(mlxsw_sp, rulei->counter_index,
833 &current_packets, &current_bytes);
834 if (err)
835 return err;
836
837 *packets = current_packets - rule->last_packets;
838 *bytes = current_bytes - rule->last_bytes;
839 *last_use = rule->last_used;
840
841 rule->last_bytes = current_bytes;
842 rule->last_packets = current_packets;
843
844 return 0;
845}
846
22a67766
JP
847int mlxsw_sp_acl_init(struct mlxsw_sp *mlxsw_sp)
848{
a1107487 849 struct mlxsw_sp_fid *fid;
22a67766 850 struct mlxsw_sp_acl *acl;
bab5c1cf 851 size_t alloc_size;
22a67766
JP
852 int err;
853
bab5c1cf
JP
854 alloc_size = sizeof(*acl) + mlxsw_sp_acl_tcam_priv_size(mlxsw_sp);
855 acl = kzalloc(alloc_size, GFP_KERNEL);
22a67766
JP
856 if (!acl)
857 return -ENOMEM;
858 mlxsw_sp->acl = acl;
446a1541 859 acl->mlxsw_sp = mlxsw_sp;
22a67766
JP
860 acl->afk = mlxsw_afk_create(MLXSW_CORE_RES_GET(mlxsw_sp->core,
861 ACL_FLEX_KEYS),
c17d2083 862 mlxsw_sp->afk_ops);
22a67766
JP
863 if (!acl->afk) {
864 err = -ENOMEM;
865 goto err_afk_create;
866 }
867
22a67766
JP
868 err = rhashtable_init(&acl->ruleset_ht,
869 &mlxsw_sp_acl_ruleset_ht_params);
870 if (err)
871 goto err_rhashtable_init;
872
a1107487
IS
873 fid = mlxsw_sp_fid_dummy_get(mlxsw_sp);
874 if (IS_ERR(fid)) {
875 err = PTR_ERR(fid);
876 goto err_fid_get;
877 }
878 acl->dummy_fid = fid;
879
096e914f 880 INIT_LIST_HEAD(&acl->rules);
bab5c1cf 881 err = mlxsw_sp_acl_tcam_init(mlxsw_sp, &acl->tcam);
22a67766
JP
882 if (err)
883 goto err_acl_ops_init;
884
446a1541
AS
885 /* Create the delayed work for the rule activity_update */
886 INIT_DELAYED_WORK(&acl->rule_activity_update.dw,
3021afe1 887 mlxsw_sp_acl_rule_activity_update_work);
446a1541
AS
888 acl->rule_activity_update.interval = MLXSW_SP_ACL_RULE_ACTIVITY_UPDATE_PERIOD_MS;
889 mlxsw_core_schedule_dw(&acl->rule_activity_update.dw, 0);
22a67766
JP
890 return 0;
891
892err_acl_ops_init:
a1107487
IS
893 mlxsw_sp_fid_put(fid);
894err_fid_get:
22a67766
JP
895 rhashtable_destroy(&acl->ruleset_ht);
896err_rhashtable_init:
22a67766
JP
897 mlxsw_afk_destroy(acl->afk);
898err_afk_create:
899 kfree(acl);
900 return err;
901}
902
903void mlxsw_sp_acl_fini(struct mlxsw_sp *mlxsw_sp)
904{
905 struct mlxsw_sp_acl *acl = mlxsw_sp->acl;
22a67766 906
446a1541 907 cancel_delayed_work_sync(&mlxsw_sp->acl->rule_activity_update.dw);
bab5c1cf 908 mlxsw_sp_acl_tcam_fini(mlxsw_sp, &acl->tcam);
096e914f 909 WARN_ON(!list_empty(&acl->rules));
a1107487 910 mlxsw_sp_fid_put(acl->dummy_fid);
22a67766 911 rhashtable_destroy(&acl->ruleset_ht);
22a67766
JP
912 mlxsw_afk_destroy(acl->afk);
913 kfree(acl);
914}