blob: a2ddea04183afbf9ddd30e43ad29c4feec56332a [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -05002/*
3 * net/sched/ife.c Inter-FE action based on ForCES WG InterFE LFB
4 *
5 * Refer to:
6 * draft-ietf-forces-interfelfb-03
7 * and
8 * netdev01 paper:
9 * "Distributing Linux Traffic Control Classifier-Action
10 * Subsystem"
11 * Authors: Jamal Hadi Salim and Damascene M. Joachimpillai
12 *
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050013 * copyright Jamal Hadi Salim (2015)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050014*/
15
16#include <linux/types.h>
17#include <linux/kernel.h>
18#include <linux/string.h>
19#include <linux/errno.h>
20#include <linux/skbuff.h>
21#include <linux/rtnetlink.h>
22#include <linux/module.h>
23#include <linux/init.h>
24#include <net/net_namespace.h>
25#include <net/netlink.h>
26#include <net/pkt_sched.h>
Davide Caratti11a94d72019-03-20 15:00:03 +010027#include <net/pkt_cls.h>
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050028#include <uapi/linux/tc_act/tc_ife.h>
29#include <net/tc_act/tc_ife.h>
30#include <linux/etherdevice.h>
Yotam Gigi295a6e02017-02-01 15:30:03 +020031#include <net/ife.h>
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050032
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030033static unsigned int ife_net_id;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050034static int max_metacnt = IFE_META_MAX + 1;
WANG Conga85a9702016-07-25 16:09:41 -070035static struct tc_action_ops act_ife_ops;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050036
37static const struct nla_policy ife_policy[TCA_IFE_MAX + 1] = {
38 [TCA_IFE_PARMS] = { .len = sizeof(struct tc_ife)},
39 [TCA_IFE_DMAC] = { .len = ETH_ALEN},
40 [TCA_IFE_SMAC] = { .len = ETH_ALEN},
41 [TCA_IFE_TYPE] = { .type = NLA_U16},
42};
43
Jamal Hadi Salim6a5d58b2016-09-18 07:31:42 -040044int ife_encode_meta_u16(u16 metaval, void *skbdata, struct tcf_meta_info *mi)
45{
46 u16 edata = 0;
47
48 if (mi->metaval)
49 edata = *(u16 *)mi->metaval;
50 else if (metaval)
51 edata = metaval;
52
53 if (!edata) /* will not encode */
54 return 0;
55
56 edata = htons(edata);
57 return ife_tlv_meta_encode(skbdata, mi->metaid, 2, &edata);
58}
59EXPORT_SYMBOL_GPL(ife_encode_meta_u16);
60
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050061int ife_get_meta_u32(struct sk_buff *skb, struct tcf_meta_info *mi)
62{
63 if (mi->metaval)
64 return nla_put_u32(skb, mi->metaid, *(u32 *)mi->metaval);
65 else
66 return nla_put(skb, mi->metaid, 0, NULL);
67}
68EXPORT_SYMBOL_GPL(ife_get_meta_u32);
69
70int ife_check_meta_u32(u32 metaval, struct tcf_meta_info *mi)
71{
72 if (metaval || mi->metaval)
73 return 8; /* T+L+V == 2+2+4 */
74
75 return 0;
76}
77EXPORT_SYMBOL_GPL(ife_check_meta_u32);
78
Jamal Hadi Salim6a5d58b2016-09-18 07:31:42 -040079int ife_check_meta_u16(u16 metaval, struct tcf_meta_info *mi)
80{
81 if (metaval || mi->metaval)
82 return 8; /* T+L+(V) == 2+2+(2+2bytepad) */
83
84 return 0;
85}
86EXPORT_SYMBOL_GPL(ife_check_meta_u16);
87
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050088int ife_encode_meta_u32(u32 metaval, void *skbdata, struct tcf_meta_info *mi)
89{
90 u32 edata = metaval;
91
92 if (mi->metaval)
93 edata = *(u32 *)mi->metaval;
94 else if (metaval)
95 edata = metaval;
96
97 if (!edata) /* will not encode */
98 return 0;
99
100 edata = htonl(edata);
101 return ife_tlv_meta_encode(skbdata, mi->metaid, 4, &edata);
102}
103EXPORT_SYMBOL_GPL(ife_encode_meta_u32);
104
105int ife_get_meta_u16(struct sk_buff *skb, struct tcf_meta_info *mi)
106{
107 if (mi->metaval)
108 return nla_put_u16(skb, mi->metaid, *(u16 *)mi->metaval);
109 else
110 return nla_put(skb, mi->metaid, 0, NULL);
111}
112EXPORT_SYMBOL_GPL(ife_get_meta_u16);
113
WANG Cong067a7cd2016-06-20 13:37:18 -0700114int ife_alloc_meta_u32(struct tcf_meta_info *mi, void *metaval, gfp_t gfp)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500115{
WANG Cong067a7cd2016-06-20 13:37:18 -0700116 mi->metaval = kmemdup(metaval, sizeof(u32), gfp);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500117 if (!mi->metaval)
118 return -ENOMEM;
119
120 return 0;
121}
122EXPORT_SYMBOL_GPL(ife_alloc_meta_u32);
123
WANG Cong067a7cd2016-06-20 13:37:18 -0700124int ife_alloc_meta_u16(struct tcf_meta_info *mi, void *metaval, gfp_t gfp)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500125{
WANG Cong067a7cd2016-06-20 13:37:18 -0700126 mi->metaval = kmemdup(metaval, sizeof(u16), gfp);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500127 if (!mi->metaval)
128 return -ENOMEM;
129
130 return 0;
131}
132EXPORT_SYMBOL_GPL(ife_alloc_meta_u16);
133
134void ife_release_meta_gen(struct tcf_meta_info *mi)
135{
136 kfree(mi->metaval);
137}
138EXPORT_SYMBOL_GPL(ife_release_meta_gen);
139
140int ife_validate_meta_u32(void *val, int len)
141{
Jamal Hadi Salim28a10c42016-08-22 07:10:20 -0400142 if (len == sizeof(u32))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500143 return 0;
144
145 return -EINVAL;
146}
147EXPORT_SYMBOL_GPL(ife_validate_meta_u32);
148
149int ife_validate_meta_u16(void *val, int len)
150{
Jamal Hadi Salim28a10c42016-08-22 07:10:20 -0400151 /* length will not include padding */
152 if (len == sizeof(u16))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500153 return 0;
154
155 return -EINVAL;
156}
157EXPORT_SYMBOL_GPL(ife_validate_meta_u16);
158
159static LIST_HEAD(ifeoplist);
160static DEFINE_RWLOCK(ife_mod_lock);
161
162static struct tcf_meta_ops *find_ife_oplist(u16 metaid)
163{
164 struct tcf_meta_ops *o;
165
Cong Wang8ce5be12018-08-19 12:22:11 -0700166 read_lock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500167 list_for_each_entry(o, &ifeoplist, list) {
168 if (o->metaid == metaid) {
169 if (!try_module_get(o->owner))
170 o = NULL;
Cong Wang8ce5be12018-08-19 12:22:11 -0700171 read_unlock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500172 return o;
173 }
174 }
Cong Wang8ce5be12018-08-19 12:22:11 -0700175 read_unlock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500176
177 return NULL;
178}
179
180int register_ife_op(struct tcf_meta_ops *mops)
181{
182 struct tcf_meta_ops *m;
183
184 if (!mops->metaid || !mops->metatype || !mops->name ||
185 !mops->check_presence || !mops->encode || !mops->decode ||
186 !mops->get || !mops->alloc)
187 return -EINVAL;
188
Cong Wang8ce5be12018-08-19 12:22:11 -0700189 write_lock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500190
191 list_for_each_entry(m, &ifeoplist, list) {
192 if (m->metaid == mops->metaid ||
193 (strcmp(mops->name, m->name) == 0)) {
Cong Wang8ce5be12018-08-19 12:22:11 -0700194 write_unlock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500195 return -EEXIST;
196 }
197 }
198
199 if (!mops->release)
200 mops->release = ife_release_meta_gen;
201
202 list_add_tail(&mops->list, &ifeoplist);
Cong Wang8ce5be12018-08-19 12:22:11 -0700203 write_unlock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500204 return 0;
205}
206EXPORT_SYMBOL_GPL(unregister_ife_op);
207
208int unregister_ife_op(struct tcf_meta_ops *mops)
209{
210 struct tcf_meta_ops *m;
211 int err = -ENOENT;
212
Cong Wang8ce5be12018-08-19 12:22:11 -0700213 write_lock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500214 list_for_each_entry(m, &ifeoplist, list) {
215 if (m->metaid == mops->metaid) {
216 list_del(&mops->list);
217 err = 0;
218 break;
219 }
220 }
Cong Wang8ce5be12018-08-19 12:22:11 -0700221 write_unlock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500222
223 return err;
224}
225EXPORT_SYMBOL_GPL(register_ife_op);
226
227static int ife_validate_metatype(struct tcf_meta_ops *ops, void *val, int len)
228{
229 int ret = 0;
230 /* XXX: unfortunately cant use nla_policy at this point
231 * because a length of 0 is valid in the case of
232 * "allow". "use" semantics do enforce for proper
233 * length and i couldve use nla_policy but it makes it hard
234 * to use it just for that..
235 */
236 if (ops->validate)
237 return ops->validate(val, len);
238
239 if (ops->metatype == NLA_U32)
240 ret = ife_validate_meta_u32(val, len);
241 else if (ops->metatype == NLA_U16)
242 ret = ife_validate_meta_u16(val, len);
243
244 return ret;
245}
246
Cong Wang65787592017-10-13 12:58:13 -0700247#ifdef CONFIG_MODULES
Roman Mashakd3f24ba2017-10-11 10:50:30 -0400248static const char *ife_meta_id2name(u32 metaid)
249{
250 switch (metaid) {
251 case IFE_META_SKBMARK:
252 return "skbmark";
253 case IFE_META_PRIO:
254 return "skbprio";
255 case IFE_META_TCINDEX:
256 return "tcindex";
257 default:
258 return "unknown";
259 }
260}
Cong Wang65787592017-10-13 12:58:13 -0700261#endif
Roman Mashakd3f24ba2017-10-11 10:50:30 -0400262
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500263/* called when adding new meta information
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500264*/
Cong Wang4e407ff2018-08-19 12:22:12 -0700265static int load_metaops_and_vet(u32 metaid, void *val, int len, bool rtnl_held)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500266{
267 struct tcf_meta_ops *ops = find_ife_oplist(metaid);
268 int ret = 0;
269
270 if (!ops) {
271 ret = -ENOENT;
272#ifdef CONFIG_MODULES
Vlad Buslov54d0d422018-08-10 20:51:44 +0300273 if (rtnl_held)
274 rtnl_unlock();
Roman Mashakd3f24ba2017-10-11 10:50:30 -0400275 request_module("ife-meta-%s", ife_meta_id2name(metaid));
Vlad Buslov54d0d422018-08-10 20:51:44 +0300276 if (rtnl_held)
277 rtnl_lock();
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500278 ops = find_ife_oplist(metaid);
279#endif
280 }
281
282 if (ops) {
283 ret = 0;
284 if (len)
285 ret = ife_validate_metatype(ops, val, len);
286
287 module_put(ops->owner);
288 }
289
290 return ret;
291}
292
293/* called when adding new meta information
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500294*/
Cong Wang5ffe57d2018-08-19 12:22:13 -0700295static int __add_metainfo(const struct tcf_meta_ops *ops,
296 struct tcf_ife_info *ife, u32 metaid, void *metaval,
297 int len, bool atomic, bool exists)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500298{
299 struct tcf_meta_info *mi = NULL;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500300 int ret = 0;
301
WANG Cong817e9f22016-06-20 13:37:19 -0700302 mi = kzalloc(sizeof(*mi), atomic ? GFP_ATOMIC : GFP_KERNEL);
Cong Wang5ffe57d2018-08-19 12:22:13 -0700303 if (!mi)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500304 return -ENOMEM;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500305
306 mi->metaid = metaid;
307 mi->ops = ops;
308 if (len > 0) {
WANG Cong817e9f22016-06-20 13:37:19 -0700309 ret = ops->alloc(mi, metaval, atomic ? GFP_ATOMIC : GFP_KERNEL);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500310 if (ret != 0) {
311 kfree(mi);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500312 return ret;
313 }
314 }
315
Cong Wang4e407ff2018-08-19 12:22:12 -0700316 if (exists)
317 spin_lock_bh(&ife->tcf_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500318 list_add_tail(&mi->metalist, &ife->metalist);
Cong Wang4e407ff2018-08-19 12:22:12 -0700319 if (exists)
320 spin_unlock_bh(&ife->tcf_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500321
322 return ret;
323}
324
Vlad Buslov84cb8eb2018-09-04 00:44:42 +0300325static int add_metainfo_and_get_ops(const struct tcf_meta_ops *ops,
326 struct tcf_ife_info *ife, u32 metaid,
327 bool exists)
328{
329 int ret;
330
331 if (!try_module_get(ops->owner))
332 return -ENOENT;
333 ret = __add_metainfo(ops, ife, metaid, NULL, 0, true, exists);
334 if (ret)
335 module_put(ops->owner);
336 return ret;
337}
338
Cong Wang5ffe57d2018-08-19 12:22:13 -0700339static int add_metainfo(struct tcf_ife_info *ife, u32 metaid, void *metaval,
340 int len, bool exists)
341{
342 const struct tcf_meta_ops *ops = find_ife_oplist(metaid);
343 int ret;
344
345 if (!ops)
346 return -ENOENT;
347 ret = __add_metainfo(ops, ife, metaid, metaval, len, false, exists);
348 if (ret)
349 /*put back what find_ife_oplist took */
350 module_put(ops->owner);
351 return ret;
352}
353
Cong Wang4e407ff2018-08-19 12:22:12 -0700354static int use_all_metadata(struct tcf_ife_info *ife, bool exists)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500355{
356 struct tcf_meta_ops *o;
357 int rc = 0;
358 int installed = 0;
359
Cong Wang8ce5be12018-08-19 12:22:11 -0700360 read_lock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500361 list_for_each_entry(o, &ifeoplist, list) {
Vlad Buslov84cb8eb2018-09-04 00:44:42 +0300362 rc = add_metainfo_and_get_ops(o, ife, o->metaid, exists);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500363 if (rc == 0)
364 installed += 1;
365 }
Cong Wang8ce5be12018-08-19 12:22:11 -0700366 read_unlock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500367
368 if (installed)
369 return 0;
370 else
371 return -EINVAL;
372}
373
374static int dump_metalist(struct sk_buff *skb, struct tcf_ife_info *ife)
375{
376 struct tcf_meta_info *e;
377 struct nlattr *nest;
378 unsigned char *b = skb_tail_pointer(skb);
379 int total_encoded = 0;
380
381 /*can only happen on decode */
382 if (list_empty(&ife->metalist))
383 return 0;
384
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200385 nest = nla_nest_start_noflag(skb, TCA_IFE_METALST);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500386 if (!nest)
387 goto out_nlmsg_trim;
388
389 list_for_each_entry(e, &ife->metalist, metalist) {
390 if (!e->ops->get(skb, e))
391 total_encoded += 1;
392 }
393
394 if (!total_encoded)
395 goto out_nlmsg_trim;
396
397 nla_nest_end(skb, nest);
398
399 return 0;
400
401out_nlmsg_trim:
402 nlmsg_trim(skb, b);
403 return -1;
404}
405
406/* under ife->tcf_lock */
Cong Wang9a63b252017-12-05 12:53:07 -0800407static void _tcf_ife_cleanup(struct tc_action *a)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500408{
WANG Conga85a9702016-07-25 16:09:41 -0700409 struct tcf_ife_info *ife = to_ife(a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500410 struct tcf_meta_info *e, *n;
411
412 list_for_each_entry_safe(e, n, &ife->metalist, metalist) {
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500413 list_del(&e->metalist);
414 if (e->metaval) {
415 if (e->ops->release)
416 e->ops->release(e);
417 else
418 kfree(e->metaval);
419 }
Cong Wang6d784f12018-09-03 11:08:15 -0700420 module_put(e->ops->owner);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500421 kfree(e);
422 }
423}
424
Cong Wang9a63b252017-12-05 12:53:07 -0800425static void tcf_ife_cleanup(struct tc_action *a)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500426{
WANG Conga85a9702016-07-25 16:09:41 -0700427 struct tcf_ife_info *ife = to_ife(a);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400428 struct tcf_ife_params *p;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500429
430 spin_lock_bh(&ife->tcf_lock);
Cong Wang9a63b252017-12-05 12:53:07 -0800431 _tcf_ife_cleanup(a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500432 spin_unlock_bh(&ife->tcf_lock);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400433
434 p = rcu_dereference_protected(ife->params, 1);
Davide Caratti0a889b92018-06-19 15:39:46 +0200435 if (p)
436 kfree_rcu(p, rcu);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500437}
438
Cong Wangcc8e58f2020-09-03 19:10:11 -0700439static int load_metalist(struct nlattr **tb, bool rtnl_held)
440{
441 int i;
442
443 for (i = 1; i < max_metacnt; i++) {
444 if (tb[i]) {
445 void *val = nla_data(tb[i]);
446 int len = nla_len(tb[i]);
447 int rc;
448
449 rc = load_metaops_and_vet(i, val, len, rtnl_held);
450 if (rc != 0)
451 return rc;
452 }
453 }
454
455 return 0;
456}
457
WANG Cong067a7cd2016-06-20 13:37:18 -0700458static int populate_metalist(struct tcf_ife_info *ife, struct nlattr **tb,
Vlad Buslov54d0d422018-08-10 20:51:44 +0300459 bool exists, bool rtnl_held)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500460{
461 int len = 0;
462 int rc = 0;
463 int i = 0;
464 void *val;
465
466 for (i = 1; i < max_metacnt; i++) {
467 if (tb[i]) {
468 val = nla_data(tb[i]);
469 len = nla_len(tb[i]);
470
Cong Wang5ffe57d2018-08-19 12:22:13 -0700471 rc = add_metainfo(ife, i, val, len, exists);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500472 if (rc)
473 return rc;
474 }
475 }
476
477 return rc;
478}
479
480static int tcf_ife_init(struct net *net, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -0700481 struct nlattr *est, struct tc_action **a,
Vlad Buslov789871b2018-07-05 17:24:25 +0300482 int ovr, int bind, bool rtnl_held,
Vlad Buslovabbb0d32019-10-30 16:09:05 +0200483 struct tcf_proto *tp, u32 flags,
484 struct netlink_ext_ack *extack)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500485{
486 struct tc_action_net *tn = net_generic(net, ife_net_id);
487 struct nlattr *tb[TCA_IFE_MAX + 1];
488 struct nlattr *tb2[IFE_META_MAX + 1];
Davide Caratti11a94d72019-03-20 15:00:03 +0100489 struct tcf_chain *goto_ch = NULL;
Vlad Buslov54d0d422018-08-10 20:51:44 +0300490 struct tcf_ife_params *p;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500491 struct tcf_ife_info *ife;
Alexander Aringb522ed62017-08-28 15:03:14 -0400492 u16 ife_type = ETH_P_IFE;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500493 struct tc_ife *parm;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500494 u8 *daddr = NULL;
495 u8 *saddr = NULL;
WANG Congb2313072016-06-13 13:46:28 -0700496 bool exists = false;
497 int ret = 0;
Dmytro Linkin7be8ef22019-08-01 13:02:51 +0000498 u32 index;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500499 int err;
500
Cong Wangc8ec4632019-07-22 21:43:00 -0700501 if (!nla) {
502 NL_SET_ERR_MSG_MOD(extack, "IFE requires attributes to be passed");
503 return -EINVAL;
504 }
505
Johannes Berg8cb08172019-04-26 14:07:28 +0200506 err = nla_parse_nested_deprecated(tb, TCA_IFE_MAX, nla, ife_policy,
507 NULL);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500508 if (err < 0)
509 return err;
510
511 if (!tb[TCA_IFE_PARMS])
512 return -EINVAL;
513
514 parm = nla_data(tb[TCA_IFE_PARMS]);
515
Alexander Aring734534e2017-10-11 17:16:06 -0400516 /* IFE_DECODE is 0 and indicates the opposite of IFE_ENCODE because
517 * they cannot run as the same time. Check on all other values which
518 * are not supported right now.
519 */
520 if (parm->flags & ~IFE_ENCODE)
521 return -EINVAL;
522
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400523 p = kzalloc(sizeof(*p), GFP_KERNEL);
524 if (!p)
525 return -ENOMEM;
526
Cong Wangcc8e58f2020-09-03 19:10:11 -0700527 if (tb[TCA_IFE_METALST]) {
528 err = nla_parse_nested_deprecated(tb2, IFE_META_MAX,
529 tb[TCA_IFE_METALST], NULL,
530 NULL);
531 if (err) {
532 kfree(p);
533 return err;
534 }
535 err = load_metalist(tb2, rtnl_held);
536 if (err) {
537 kfree(p);
538 return err;
539 }
540 }
541
Dmytro Linkin7be8ef22019-08-01 13:02:51 +0000542 index = parm->index;
543 err = tcf_idr_check_alloc(tn, &index, a, bind);
Vlad Buslov01e866b2018-07-09 14:33:26 +0300544 if (err < 0) {
545 kfree(p);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300546 return err;
Vlad Buslov01e866b2018-07-09 14:33:26 +0300547 }
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300548 exists = err;
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400549 if (exists && bind) {
550 kfree(p);
Jamal Hadi Salim4e8c8612016-05-10 16:49:31 -0400551 return 0;
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400552 }
Jamal Hadi Salim4e8c8612016-05-10 16:49:31 -0400553
Jamal Hadi Salim4e8c8612016-05-10 16:49:31 -0400554 if (!exists) {
Dmytro Linkin7be8ef22019-08-01 13:02:51 +0000555 ret = tcf_idr_create(tn, index, est, a, &act_ife_ops,
Vlad Buslove3822672019-10-30 16:09:06 +0200556 bind, true, 0);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400557 if (ret) {
Dmytro Linkin7be8ef22019-08-01 13:02:51 +0000558 tcf_idr_cleanup(tn, index);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400559 kfree(p);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500560 return ret;
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400561 }
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500562 ret = ACT_P_CREATED;
Vlad Buslov4e8ddd72018-07-05 17:24:30 +0300563 } else if (!ovr) {
Chris Mi65a206c2017-08-30 02:31:59 -0400564 tcf_idr_release(*a, bind);
Vlad Buslov4e8ddd72018-07-05 17:24:30 +0300565 kfree(p);
566 return -EEXIST;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500567 }
568
WANG Conga85a9702016-07-25 16:09:41 -0700569 ife = to_ife(*a);
Eric Dumazet44c23d72020-01-15 08:20:39 -0800570 if (ret == ACT_P_CREATED)
571 INIT_LIST_HEAD(&ife->metalist);
572
Davide Caratti11a94d72019-03-20 15:00:03 +0100573 err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
574 if (err < 0)
575 goto release_idr;
576
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400577 p->flags = parm->flags;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500578
579 if (parm->flags & IFE_ENCODE) {
Alexander Aringb522ed62017-08-28 15:03:14 -0400580 if (tb[TCA_IFE_TYPE])
581 ife_type = nla_get_u16(tb[TCA_IFE_TYPE]);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500582 if (tb[TCA_IFE_DMAC])
583 daddr = nla_data(tb[TCA_IFE_DMAC]);
584 if (tb[TCA_IFE_SMAC])
585 saddr = nla_data(tb[TCA_IFE_SMAC]);
586 }
587
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500588 if (parm->flags & IFE_ENCODE) {
589 if (daddr)
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400590 ether_addr_copy(p->eth_dst, daddr);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500591 else
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400592 eth_zero_addr(p->eth_dst);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500593
594 if (saddr)
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400595 ether_addr_copy(p->eth_src, saddr);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500596 else
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400597 eth_zero_addr(p->eth_src);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500598
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400599 p->eth_type = ife_type;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500600 }
601
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500602 if (tb[TCA_IFE_METALST]) {
Vlad Buslov54d0d422018-08-10 20:51:44 +0300603 err = populate_metalist(ife, tb2, exists, rtnl_held);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500604 if (err)
605 goto metadata_parse_err;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500606 } else {
607 /* if no passed metadata allow list or passed allow-all
608 * then here we process by adding as many supported metadatum
609 * as we can. You better have at least one else we are
610 * going to bail out
611 */
Cong Wang4e407ff2018-08-19 12:22:12 -0700612 err = use_all_metadata(ife, exists);
Davide Caratti11a94d72019-03-20 15:00:03 +0100613 if (err)
614 goto metadata_parse_err;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500615 }
616
Cong Wang4e407ff2018-08-19 12:22:12 -0700617 if (exists)
618 spin_lock_bh(&ife->tcf_lock);
Vlad Buslov54d0d422018-08-10 20:51:44 +0300619 /* protected by tcf_lock when modifying existing action */
Davide Caratti11a94d72019-03-20 15:00:03 +0100620 goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
Paul E. McKenney445d3742019-09-23 16:09:18 -0700621 p = rcu_replace_pointer(ife->params, p, 1);
Vlad Buslov54d0d422018-08-10 20:51:44 +0300622
WANG Cong067a7cd2016-06-20 13:37:18 -0700623 if (exists)
624 spin_unlock_bh(&ife->tcf_lock);
Davide Caratti11a94d72019-03-20 15:00:03 +0100625 if (goto_ch)
626 tcf_chain_put_by_act(goto_ch);
Vlad Buslov54d0d422018-08-10 20:51:44 +0300627 if (p)
628 kfree_rcu(p, rcu);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400629
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500630 return ret;
Davide Caratti11a94d72019-03-20 15:00:03 +0100631metadata_parse_err:
632 if (goto_ch)
633 tcf_chain_put_by_act(goto_ch);
634release_idr:
635 kfree(p);
636 tcf_idr_release(*a, bind);
637 return err;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500638}
639
640static int tcf_ife_dump(struct sk_buff *skb, struct tc_action *a, int bind,
641 int ref)
642{
643 unsigned char *b = skb_tail_pointer(skb);
WANG Conga85a9702016-07-25 16:09:41 -0700644 struct tcf_ife_info *ife = to_ife(a);
Vlad Buslov54d0d422018-08-10 20:51:44 +0300645 struct tcf_ife_params *p;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500646 struct tc_ife opt = {
647 .index = ife->tcf_index,
Vlad Buslov036bb442018-07-05 17:24:24 +0300648 .refcnt = refcount_read(&ife->tcf_refcnt) - ref,
649 .bindcnt = atomic_read(&ife->tcf_bindcnt) - bind,
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500650 };
651 struct tcf_t t;
652
Vlad Buslov54d0d422018-08-10 20:51:44 +0300653 spin_lock_bh(&ife->tcf_lock);
654 opt.action = ife->tcf_action;
655 p = rcu_dereference_protected(ife->params,
656 lockdep_is_held(&ife->tcf_lock));
657 opt.flags = p->flags;
658
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500659 if (nla_put(skb, TCA_IFE_PARMS, sizeof(opt), &opt))
660 goto nla_put_failure;
661
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400662 tcf_tm_dump(&t, &ife->tcf_tm);
Nicolas Dichtel9854518e2016-04-26 10:06:18 +0200663 if (nla_put_64bit(skb, TCA_IFE_TM, sizeof(t), &t, TCA_IFE_PAD))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500664 goto nla_put_failure;
665
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400666 if (!is_zero_ether_addr(p->eth_dst)) {
667 if (nla_put(skb, TCA_IFE_DMAC, ETH_ALEN, p->eth_dst))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500668 goto nla_put_failure;
669 }
670
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400671 if (!is_zero_ether_addr(p->eth_src)) {
672 if (nla_put(skb, TCA_IFE_SMAC, ETH_ALEN, p->eth_src))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500673 goto nla_put_failure;
674 }
675
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400676 if (nla_put(skb, TCA_IFE_TYPE, 2, &p->eth_type))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500677 goto nla_put_failure;
678
679 if (dump_metalist(skb, ife)) {
680 /*ignore failure to dump metalist */
681 pr_info("Failed to dump metalist\n");
682 }
683
Vlad Buslov54d0d422018-08-10 20:51:44 +0300684 spin_unlock_bh(&ife->tcf_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500685 return skb->len;
686
687nla_put_failure:
Vlad Buslov54d0d422018-08-10 20:51:44 +0300688 spin_unlock_bh(&ife->tcf_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500689 nlmsg_trim(skb, b);
690 return -1;
691}
692
Or Gerlitz4dba87b2017-03-16 12:53:41 +0200693static int find_decode_metaid(struct sk_buff *skb, struct tcf_ife_info *ife,
694 u16 metaid, u16 mlen, void *mdata)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500695{
696 struct tcf_meta_info *e;
697
698 /* XXX: use hash to speed up */
699 list_for_each_entry(e, &ife->metalist, metalist) {
700 if (metaid == e->metaid) {
701 if (e->ops) {
702 /* We check for decode presence already */
703 return e->ops->decode(skb, mdata, mlen);
704 }
705 }
706 }
707
Alexander Aringf6cd1452018-04-20 15:15:03 -0400708 return -ENOENT;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500709}
710
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500711static int tcf_ife_decode(struct sk_buff *skb, const struct tc_action *a,
712 struct tcf_result *res)
713{
WANG Conga85a9702016-07-25 16:09:41 -0700714 struct tcf_ife_info *ife = to_ife(a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500715 int action = ife->tcf_action;
Yotam Gigi295a6e02017-02-01 15:30:03 +0200716 u8 *ifehdr_end;
717 u8 *tlv_data;
718 u16 metalen;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500719
Alexander Aringced273e2017-10-11 17:16:07 -0400720 bstats_cpu_update(this_cpu_ptr(ife->common.cpu_bstats), skb);
Jamal Hadi Salim9c4a4e42016-06-06 06:32:53 -0400721 tcf_lastuse_update(&ife->tcf_tm);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500722
Yotam Gigi295a6e02017-02-01 15:30:03 +0200723 if (skb_at_tc_ingress(skb))
724 skb_push(skb, skb->dev->hard_header_len);
725
726 tlv_data = ife_decode(skb, &metalen);
727 if (unlikely(!tlv_data)) {
Alexander Aringced273e2017-10-11 17:16:07 -0400728 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500729 return TC_ACT_SHOT;
730 }
731
Yotam Gigi295a6e02017-02-01 15:30:03 +0200732 ifehdr_end = tlv_data + metalen;
733 for (; tlv_data < ifehdr_end; tlv_data = ife_tlv_meta_next(tlv_data)) {
734 u8 *curr_data;
735 u16 mtype;
736 u16 dlen;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500737
Alexander Aringcc74edd2018-04-20 15:15:04 -0400738 curr_data = ife_tlv_meta_decode(tlv_data, ifehdr_end, &mtype,
739 &dlen, NULL);
740 if (!curr_data) {
741 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
742 return TC_ACT_SHOT;
743 }
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500744
Yotam Gigi295a6e02017-02-01 15:30:03 +0200745 if (find_decode_metaid(skb, ife, mtype, dlen, curr_data)) {
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500746 /* abuse overlimits to count when we receive metadata
747 * but dont have an ops for it
748 */
Yotam Gigi295a6e02017-02-01 15:30:03 +0200749 pr_info_ratelimited("Unknown metaid %d dlen %d\n",
750 mtype, dlen);
Alexander Aringced273e2017-10-11 17:16:07 -0400751 qstats_overlimit_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500752 }
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500753 }
754
Yotam Gigi295a6e02017-02-01 15:30:03 +0200755 if (WARN_ON(tlv_data != ifehdr_end)) {
Alexander Aringced273e2017-10-11 17:16:07 -0400756 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
Yotam Gigi295a6e02017-02-01 15:30:03 +0200757 return TC_ACT_SHOT;
758 }
759
760 skb->protocol = eth_type_trans(skb, skb->dev);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500761 skb_reset_network_header(skb);
Yotam Gigi295a6e02017-02-01 15:30:03 +0200762
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500763 return action;
764}
765
766/*XXX: check if we can do this at install time instead of current
767 * send data path
768**/
769static int ife_get_sz(struct sk_buff *skb, struct tcf_ife_info *ife)
770{
771 struct tcf_meta_info *e, *n;
772 int tot_run_sz = 0, run_sz = 0;
773
774 list_for_each_entry_safe(e, n, &ife->metalist, metalist) {
775 if (e->ops->check_presence) {
776 run_sz = e->ops->check_presence(skb, e);
777 tot_run_sz += run_sz;
778 }
779 }
780
781 return tot_run_sz;
782}
783
784static int tcf_ife_encode(struct sk_buff *skb, const struct tc_action *a,
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400785 struct tcf_result *res, struct tcf_ife_params *p)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500786{
WANG Conga85a9702016-07-25 16:09:41 -0700787 struct tcf_ife_info *ife = to_ife(a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500788 int action = ife->tcf_action;
789 struct ethhdr *oethh; /* outer ether header */
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500790 struct tcf_meta_info *e;
791 /*
792 OUTERHDR:TOTMETALEN:{TLVHDR:Metadatum:TLVHDR..}:ORIGDATA
793 where ORIGDATA = original ethernet header ...
794 */
795 u16 metalen = ife_get_sz(skb, ife);
796 int hdrm = metalen + skb->dev->hard_header_len + IFE_METAHDRLEN;
Yotam Gigi295a6e02017-02-01 15:30:03 +0200797 unsigned int skboff = 0;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500798 int new_len = skb->len + hdrm;
799 bool exceed_mtu = false;
Yotam Gigi295a6e02017-02-01 15:30:03 +0200800 void *ife_meta;
801 int err = 0;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500802
Willem de Bruijna5135bc2017-01-07 17:06:36 -0500803 if (!skb_at_tc_ingress(skb)) {
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500804 if (new_len > skb->dev->mtu)
805 exceed_mtu = true;
806 }
807
Alexander Aringced273e2017-10-11 17:16:07 -0400808 bstats_cpu_update(this_cpu_ptr(ife->common.cpu_bstats), skb);
Jamal Hadi Salim9c4a4e42016-06-06 06:32:53 -0400809 tcf_lastuse_update(&ife->tcf_tm);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500810
811 if (!metalen) { /* no metadata to send */
812 /* abuse overlimits to count when we allow packet
813 * with no metadata
814 */
Alexander Aringced273e2017-10-11 17:16:07 -0400815 qstats_overlimit_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500816 return action;
817 }
818 /* could be stupid policy setup or mtu config
819 * so lets be conservative.. */
820 if ((action == TC_ACT_SHOT) || exceed_mtu) {
Alexander Aringced273e2017-10-11 17:16:07 -0400821 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500822 return TC_ACT_SHOT;
823 }
824
Willem de Bruijna5135bc2017-01-07 17:06:36 -0500825 if (skb_at_tc_ingress(skb))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500826 skb_push(skb, skb->dev->hard_header_len);
827
Yotam Gigi295a6e02017-02-01 15:30:03 +0200828 ife_meta = ife_encode(skb, metalen);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500829
Alexander Aringced273e2017-10-11 17:16:07 -0400830 spin_lock(&ife->tcf_lock);
831
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500832 /* XXX: we dont have a clever way of telling encode to
833 * not repeat some of the computations that are done by
834 * ops->presence_check...
835 */
836 list_for_each_entry(e, &ife->metalist, metalist) {
837 if (e->ops->encode) {
Yotam Gigi295a6e02017-02-01 15:30:03 +0200838 err = e->ops->encode(skb, (void *)(ife_meta + skboff),
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500839 e);
840 }
841 if (err < 0) {
842 /* too corrupt to keep around if overwritten */
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500843 spin_unlock(&ife->tcf_lock);
Alexander Aringced273e2017-10-11 17:16:07 -0400844 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500845 return TC_ACT_SHOT;
846 }
847 skboff += err;
848 }
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400849 spin_unlock(&ife->tcf_lock);
Yotam Gigi295a6e02017-02-01 15:30:03 +0200850 oethh = (struct ethhdr *)skb->data;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500851
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400852 if (!is_zero_ether_addr(p->eth_src))
853 ether_addr_copy(oethh->h_source, p->eth_src);
854 if (!is_zero_ether_addr(p->eth_dst))
855 ether_addr_copy(oethh->h_dest, p->eth_dst);
856 oethh->h_proto = htons(p->eth_type);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500857
Willem de Bruijna5135bc2017-01-07 17:06:36 -0500858 if (skb_at_tc_ingress(skb))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500859 skb_pull(skb, skb->dev->hard_header_len);
860
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500861 return action;
862}
863
864static int tcf_ife_act(struct sk_buff *skb, const struct tc_action *a,
865 struct tcf_result *res)
866{
WANG Conga85a9702016-07-25 16:09:41 -0700867 struct tcf_ife_info *ife = to_ife(a);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400868 struct tcf_ife_params *p;
869 int ret;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500870
Paolo Abeni7fd4b282018-07-30 14:30:43 +0200871 p = rcu_dereference_bh(ife->params);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400872 if (p->flags & IFE_ENCODE) {
873 ret = tcf_ife_encode(skb, a, res, p);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400874 return ret;
875 }
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500876
Alexander Aring734534e2017-10-11 17:16:06 -0400877 return tcf_ife_decode(skb, a, res);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500878}
879
880static int tcf_ife_walker(struct net *net, struct sk_buff *skb,
881 struct netlink_callback *cb, int type,
Alexander Aring41780102018-02-15 10:54:58 -0500882 const struct tc_action_ops *ops,
883 struct netlink_ext_ack *extack)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500884{
885 struct tc_action_net *tn = net_generic(net, ife_net_id);
886
Alexander Aringb3620142018-02-15 10:54:59 -0500887 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500888}
889
Cong Wangf061b482018-08-29 10:15:35 -0700890static int tcf_ife_search(struct net *net, struct tc_action **a, u32 index)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500891{
892 struct tc_action_net *tn = net_generic(net, ife_net_id);
893
Chris Mi65a206c2017-08-30 02:31:59 -0400894 return tcf_idr_search(tn, a, index);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500895}
896
897static struct tc_action_ops act_ife_ops = {
898 .kind = "ife",
Eli Coheneddd2cf2019-02-10 14:25:00 +0200899 .id = TCA_ID_IFE,
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500900 .owner = THIS_MODULE,
901 .act = tcf_ife_act,
902 .dump = tcf_ife_dump,
903 .cleanup = tcf_ife_cleanup,
904 .init = tcf_ife_init,
905 .walk = tcf_ife_walker,
906 .lookup = tcf_ife_search,
WANG Conga85a9702016-07-25 16:09:41 -0700907 .size = sizeof(struct tcf_ife_info),
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500908};
909
910static __net_init int ife_init_net(struct net *net)
911{
912 struct tc_action_net *tn = net_generic(net, ife_net_id);
913
Cong Wang981471b2019-08-25 10:01:32 -0700914 return tc_action_net_init(net, tn, &act_ife_ops);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500915}
916
Cong Wang039af9c2017-12-11 15:35:03 -0800917static void __net_exit ife_exit_net(struct list_head *net_list)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500918{
Cong Wang039af9c2017-12-11 15:35:03 -0800919 tc_action_net_exit(net_list, ife_net_id);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500920}
921
922static struct pernet_operations ife_net_ops = {
923 .init = ife_init_net,
Cong Wang039af9c2017-12-11 15:35:03 -0800924 .exit_batch = ife_exit_net,
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500925 .id = &ife_net_id,
926 .size = sizeof(struct tc_action_net),
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500927};
928
929static int __init ife_init_module(void)
930{
931 return tcf_register_action(&act_ife_ops, &ife_net_ops);
932}
933
934static void __exit ife_cleanup_module(void)
935{
936 tcf_unregister_action(&act_ife_ops, &ife_net_ops);
937}
938
939module_init(ife_init_module);
940module_exit(ife_cleanup_module);
941
942MODULE_AUTHOR("Jamal Hadi Salim(2015)");
943MODULE_DESCRIPTION("Inter-FE LFB action");
944MODULE_LICENSE("GPL");