blob: acea3feae76216142ad3ac9b8c113060f8327765 [file] [log] [blame]
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -05001/*
2 * net/sched/ife.c Inter-FE action based on ForCES WG InterFE LFB
3 *
4 * Refer to:
5 * draft-ietf-forces-interfelfb-03
6 * and
7 * netdev01 paper:
8 * "Distributing Linux Traffic Control Classifier-Action
9 * Subsystem"
10 * Authors: Jamal Hadi Salim and Damascene M. Joachimpillai
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 *
17 * copyright Jamal Hadi Salim (2015)
18 *
19*/
20
21#include <linux/types.h>
22#include <linux/kernel.h>
23#include <linux/string.h>
24#include <linux/errno.h>
25#include <linux/skbuff.h>
26#include <linux/rtnetlink.h>
27#include <linux/module.h>
28#include <linux/init.h>
29#include <net/net_namespace.h>
30#include <net/netlink.h>
31#include <net/pkt_sched.h>
32#include <uapi/linux/tc_act/tc_ife.h>
33#include <net/tc_act/tc_ife.h>
34#include <linux/etherdevice.h>
Yotam Gigi295a6e02017-02-01 15:30:03 +020035#include <net/ife.h>
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050036
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030037static unsigned int ife_net_id;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050038static int max_metacnt = IFE_META_MAX + 1;
WANG Conga85a9702016-07-25 16:09:41 -070039static struct tc_action_ops act_ife_ops;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050040
41static const struct nla_policy ife_policy[TCA_IFE_MAX + 1] = {
42 [TCA_IFE_PARMS] = { .len = sizeof(struct tc_ife)},
43 [TCA_IFE_DMAC] = { .len = ETH_ALEN},
44 [TCA_IFE_SMAC] = { .len = ETH_ALEN},
45 [TCA_IFE_TYPE] = { .type = NLA_U16},
46};
47
Jamal Hadi Salim6a5d58b2016-09-18 07:31:42 -040048int ife_encode_meta_u16(u16 metaval, void *skbdata, struct tcf_meta_info *mi)
49{
50 u16 edata = 0;
51
52 if (mi->metaval)
53 edata = *(u16 *)mi->metaval;
54 else if (metaval)
55 edata = metaval;
56
57 if (!edata) /* will not encode */
58 return 0;
59
60 edata = htons(edata);
61 return ife_tlv_meta_encode(skbdata, mi->metaid, 2, &edata);
62}
63EXPORT_SYMBOL_GPL(ife_encode_meta_u16);
64
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050065int ife_get_meta_u32(struct sk_buff *skb, struct tcf_meta_info *mi)
66{
67 if (mi->metaval)
68 return nla_put_u32(skb, mi->metaid, *(u32 *)mi->metaval);
69 else
70 return nla_put(skb, mi->metaid, 0, NULL);
71}
72EXPORT_SYMBOL_GPL(ife_get_meta_u32);
73
74int ife_check_meta_u32(u32 metaval, struct tcf_meta_info *mi)
75{
76 if (metaval || mi->metaval)
77 return 8; /* T+L+V == 2+2+4 */
78
79 return 0;
80}
81EXPORT_SYMBOL_GPL(ife_check_meta_u32);
82
Jamal Hadi Salim6a5d58b2016-09-18 07:31:42 -040083int ife_check_meta_u16(u16 metaval, struct tcf_meta_info *mi)
84{
85 if (metaval || mi->metaval)
86 return 8; /* T+L+(V) == 2+2+(2+2bytepad) */
87
88 return 0;
89}
90EXPORT_SYMBOL_GPL(ife_check_meta_u16);
91
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050092int ife_encode_meta_u32(u32 metaval, void *skbdata, struct tcf_meta_info *mi)
93{
94 u32 edata = metaval;
95
96 if (mi->metaval)
97 edata = *(u32 *)mi->metaval;
98 else if (metaval)
99 edata = metaval;
100
101 if (!edata) /* will not encode */
102 return 0;
103
104 edata = htonl(edata);
105 return ife_tlv_meta_encode(skbdata, mi->metaid, 4, &edata);
106}
107EXPORT_SYMBOL_GPL(ife_encode_meta_u32);
108
109int ife_get_meta_u16(struct sk_buff *skb, struct tcf_meta_info *mi)
110{
111 if (mi->metaval)
112 return nla_put_u16(skb, mi->metaid, *(u16 *)mi->metaval);
113 else
114 return nla_put(skb, mi->metaid, 0, NULL);
115}
116EXPORT_SYMBOL_GPL(ife_get_meta_u16);
117
WANG Cong067a7cd2016-06-20 13:37:18 -0700118int ife_alloc_meta_u32(struct tcf_meta_info *mi, void *metaval, gfp_t gfp)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500119{
WANG Cong067a7cd2016-06-20 13:37:18 -0700120 mi->metaval = kmemdup(metaval, sizeof(u32), gfp);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500121 if (!mi->metaval)
122 return -ENOMEM;
123
124 return 0;
125}
126EXPORT_SYMBOL_GPL(ife_alloc_meta_u32);
127
WANG Cong067a7cd2016-06-20 13:37:18 -0700128int ife_alloc_meta_u16(struct tcf_meta_info *mi, void *metaval, gfp_t gfp)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500129{
WANG Cong067a7cd2016-06-20 13:37:18 -0700130 mi->metaval = kmemdup(metaval, sizeof(u16), gfp);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500131 if (!mi->metaval)
132 return -ENOMEM;
133
134 return 0;
135}
136EXPORT_SYMBOL_GPL(ife_alloc_meta_u16);
137
138void ife_release_meta_gen(struct tcf_meta_info *mi)
139{
140 kfree(mi->metaval);
141}
142EXPORT_SYMBOL_GPL(ife_release_meta_gen);
143
144int ife_validate_meta_u32(void *val, int len)
145{
Jamal Hadi Salim28a10c42016-08-22 07:10:20 -0400146 if (len == sizeof(u32))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500147 return 0;
148
149 return -EINVAL;
150}
151EXPORT_SYMBOL_GPL(ife_validate_meta_u32);
152
153int ife_validate_meta_u16(void *val, int len)
154{
Jamal Hadi Salim28a10c42016-08-22 07:10:20 -0400155 /* length will not include padding */
156 if (len == sizeof(u16))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500157 return 0;
158
159 return -EINVAL;
160}
161EXPORT_SYMBOL_GPL(ife_validate_meta_u16);
162
163static LIST_HEAD(ifeoplist);
164static DEFINE_RWLOCK(ife_mod_lock);
165
166static struct tcf_meta_ops *find_ife_oplist(u16 metaid)
167{
168 struct tcf_meta_ops *o;
169
170 read_lock(&ife_mod_lock);
171 list_for_each_entry(o, &ifeoplist, list) {
172 if (o->metaid == metaid) {
173 if (!try_module_get(o->owner))
174 o = NULL;
175 read_unlock(&ife_mod_lock);
176 return o;
177 }
178 }
179 read_unlock(&ife_mod_lock);
180
181 return NULL;
182}
183
184int register_ife_op(struct tcf_meta_ops *mops)
185{
186 struct tcf_meta_ops *m;
187
188 if (!mops->metaid || !mops->metatype || !mops->name ||
189 !mops->check_presence || !mops->encode || !mops->decode ||
190 !mops->get || !mops->alloc)
191 return -EINVAL;
192
193 write_lock(&ife_mod_lock);
194
195 list_for_each_entry(m, &ifeoplist, list) {
196 if (m->metaid == mops->metaid ||
197 (strcmp(mops->name, m->name) == 0)) {
198 write_unlock(&ife_mod_lock);
199 return -EEXIST;
200 }
201 }
202
203 if (!mops->release)
204 mops->release = ife_release_meta_gen;
205
206 list_add_tail(&mops->list, &ifeoplist);
207 write_unlock(&ife_mod_lock);
208 return 0;
209}
210EXPORT_SYMBOL_GPL(unregister_ife_op);
211
212int unregister_ife_op(struct tcf_meta_ops *mops)
213{
214 struct tcf_meta_ops *m;
215 int err = -ENOENT;
216
217 write_lock(&ife_mod_lock);
218 list_for_each_entry(m, &ifeoplist, list) {
219 if (m->metaid == mops->metaid) {
220 list_del(&mops->list);
221 err = 0;
222 break;
223 }
224 }
225 write_unlock(&ife_mod_lock);
226
227 return err;
228}
229EXPORT_SYMBOL_GPL(register_ife_op);
230
231static int ife_validate_metatype(struct tcf_meta_ops *ops, void *val, int len)
232{
233 int ret = 0;
234 /* XXX: unfortunately cant use nla_policy at this point
235 * because a length of 0 is valid in the case of
236 * "allow". "use" semantics do enforce for proper
237 * length and i couldve use nla_policy but it makes it hard
238 * to use it just for that..
239 */
240 if (ops->validate)
241 return ops->validate(val, len);
242
243 if (ops->metatype == NLA_U32)
244 ret = ife_validate_meta_u32(val, len);
245 else if (ops->metatype == NLA_U16)
246 ret = ife_validate_meta_u16(val, len);
247
248 return ret;
249}
250
Cong Wang65787592017-10-13 12:58:13 -0700251#ifdef CONFIG_MODULES
Roman Mashakd3f24ba2017-10-11 10:50:30 -0400252static const char *ife_meta_id2name(u32 metaid)
253{
254 switch (metaid) {
255 case IFE_META_SKBMARK:
256 return "skbmark";
257 case IFE_META_PRIO:
258 return "skbprio";
259 case IFE_META_TCINDEX:
260 return "tcindex";
261 default:
262 return "unknown";
263 }
264}
Cong Wang65787592017-10-13 12:58:13 -0700265#endif
Roman Mashakd3f24ba2017-10-11 10:50:30 -0400266
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500267/* called when adding new meta information
WANG Cong067a7cd2016-06-20 13:37:18 -0700268 * under ife->tcf_lock for existing action
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500269*/
270static int load_metaops_and_vet(struct tcf_ife_info *ife, u32 metaid,
WANG Cong067a7cd2016-06-20 13:37:18 -0700271 void *val, int len, bool exists)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500272{
273 struct tcf_meta_ops *ops = find_ife_oplist(metaid);
274 int ret = 0;
275
276 if (!ops) {
277 ret = -ENOENT;
278#ifdef CONFIG_MODULES
WANG Cong067a7cd2016-06-20 13:37:18 -0700279 if (exists)
280 spin_unlock_bh(&ife->tcf_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500281 rtnl_unlock();
Roman Mashakd3f24ba2017-10-11 10:50:30 -0400282 request_module("ife-meta-%s", ife_meta_id2name(metaid));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500283 rtnl_lock();
WANG Cong067a7cd2016-06-20 13:37:18 -0700284 if (exists)
285 spin_lock_bh(&ife->tcf_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500286 ops = find_ife_oplist(metaid);
287#endif
288 }
289
290 if (ops) {
291 ret = 0;
292 if (len)
293 ret = ife_validate_metatype(ops, val, len);
294
295 module_put(ops->owner);
296 }
297
298 return ret;
299}
300
301/* called when adding new meta information
WANG Cong067a7cd2016-06-20 13:37:18 -0700302 * under ife->tcf_lock for existing action
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500303*/
304static int add_metainfo(struct tcf_ife_info *ife, u32 metaid, void *metaval,
WANG Cong817e9f22016-06-20 13:37:19 -0700305 int len, bool atomic)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500306{
307 struct tcf_meta_info *mi = NULL;
308 struct tcf_meta_ops *ops = find_ife_oplist(metaid);
309 int ret = 0;
310
311 if (!ops)
312 return -ENOENT;
313
WANG Cong817e9f22016-06-20 13:37:19 -0700314 mi = kzalloc(sizeof(*mi), atomic ? GFP_ATOMIC : GFP_KERNEL);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500315 if (!mi) {
316 /*put back what find_ife_oplist took */
317 module_put(ops->owner);
318 return -ENOMEM;
319 }
320
321 mi->metaid = metaid;
322 mi->ops = ops;
323 if (len > 0) {
WANG Cong817e9f22016-06-20 13:37:19 -0700324 ret = ops->alloc(mi, metaval, atomic ? GFP_ATOMIC : GFP_KERNEL);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500325 if (ret != 0) {
326 kfree(mi);
327 module_put(ops->owner);
328 return ret;
329 }
330 }
331
332 list_add_tail(&mi->metalist, &ife->metalist);
333
334 return ret;
335}
336
337static int use_all_metadata(struct tcf_ife_info *ife)
338{
339 struct tcf_meta_ops *o;
340 int rc = 0;
341 int installed = 0;
342
WANG Cong817e9f22016-06-20 13:37:19 -0700343 read_lock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500344 list_for_each_entry(o, &ifeoplist, list) {
WANG Cong817e9f22016-06-20 13:37:19 -0700345 rc = add_metainfo(ife, o->metaid, NULL, 0, true);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500346 if (rc == 0)
347 installed += 1;
348 }
WANG Cong817e9f22016-06-20 13:37:19 -0700349 read_unlock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500350
351 if (installed)
352 return 0;
353 else
354 return -EINVAL;
355}
356
357static int dump_metalist(struct sk_buff *skb, struct tcf_ife_info *ife)
358{
359 struct tcf_meta_info *e;
360 struct nlattr *nest;
361 unsigned char *b = skb_tail_pointer(skb);
362 int total_encoded = 0;
363
364 /*can only happen on decode */
365 if (list_empty(&ife->metalist))
366 return 0;
367
368 nest = nla_nest_start(skb, TCA_IFE_METALST);
369 if (!nest)
370 goto out_nlmsg_trim;
371
372 list_for_each_entry(e, &ife->metalist, metalist) {
373 if (!e->ops->get(skb, e))
374 total_encoded += 1;
375 }
376
377 if (!total_encoded)
378 goto out_nlmsg_trim;
379
380 nla_nest_end(skb, nest);
381
382 return 0;
383
384out_nlmsg_trim:
385 nlmsg_trim(skb, b);
386 return -1;
387}
388
389/* under ife->tcf_lock */
Cong Wang9a63b252017-12-05 12:53:07 -0800390static void _tcf_ife_cleanup(struct tc_action *a)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500391{
WANG Conga85a9702016-07-25 16:09:41 -0700392 struct tcf_ife_info *ife = to_ife(a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500393 struct tcf_meta_info *e, *n;
394
395 list_for_each_entry_safe(e, n, &ife->metalist, metalist) {
396 module_put(e->ops->owner);
397 list_del(&e->metalist);
398 if (e->metaval) {
399 if (e->ops->release)
400 e->ops->release(e);
401 else
402 kfree(e->metaval);
403 }
404 kfree(e);
405 }
406}
407
Cong Wang9a63b252017-12-05 12:53:07 -0800408static void tcf_ife_cleanup(struct tc_action *a)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500409{
WANG Conga85a9702016-07-25 16:09:41 -0700410 struct tcf_ife_info *ife = to_ife(a);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400411 struct tcf_ife_params *p;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500412
413 spin_lock_bh(&ife->tcf_lock);
Cong Wang9a63b252017-12-05 12:53:07 -0800414 _tcf_ife_cleanup(a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500415 spin_unlock_bh(&ife->tcf_lock);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400416
417 p = rcu_dereference_protected(ife->params, 1);
Davide Caratti0a889b92018-06-19 15:39:46 +0200418 if (p)
419 kfree_rcu(p, rcu);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500420}
421
WANG Cong067a7cd2016-06-20 13:37:18 -0700422/* under ife->tcf_lock for existing action */
423static int populate_metalist(struct tcf_ife_info *ife, struct nlattr **tb,
424 bool exists)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500425{
426 int len = 0;
427 int rc = 0;
428 int i = 0;
429 void *val;
430
431 for (i = 1; i < max_metacnt; i++) {
432 if (tb[i]) {
433 val = nla_data(tb[i]);
434 len = nla_len(tb[i]);
435
WANG Cong067a7cd2016-06-20 13:37:18 -0700436 rc = load_metaops_and_vet(ife, i, val, len, exists);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500437 if (rc != 0)
438 return rc;
439
WANG Cong067a7cd2016-06-20 13:37:18 -0700440 rc = add_metainfo(ife, i, val, len, exists);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500441 if (rc)
442 return rc;
443 }
444 }
445
446 return rc;
447}
448
449static int tcf_ife_init(struct net *net, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -0700450 struct nlattr *est, struct tc_action **a,
Vlad Buslov789871b2018-07-05 17:24:25 +0300451 int ovr, int bind, bool rtnl_held,
452 struct netlink_ext_ack *extack)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500453{
454 struct tc_action_net *tn = net_generic(net, ife_net_id);
455 struct nlattr *tb[TCA_IFE_MAX + 1];
456 struct nlattr *tb2[IFE_META_MAX + 1];
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400457 struct tcf_ife_params *p, *p_old;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500458 struct tcf_ife_info *ife;
Alexander Aringb522ed62017-08-28 15:03:14 -0400459 u16 ife_type = ETH_P_IFE;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500460 struct tc_ife *parm;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500461 u8 *daddr = NULL;
462 u8 *saddr = NULL;
WANG Congb2313072016-06-13 13:46:28 -0700463 bool exists = false;
464 int ret = 0;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500465 int err;
466
Johannes Bergfceb6432017-04-12 14:34:07 +0200467 err = nla_parse_nested(tb, TCA_IFE_MAX, nla, ife_policy, NULL);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500468 if (err < 0)
469 return err;
470
471 if (!tb[TCA_IFE_PARMS])
472 return -EINVAL;
473
474 parm = nla_data(tb[TCA_IFE_PARMS]);
475
Alexander Aring734534e2017-10-11 17:16:06 -0400476 /* IFE_DECODE is 0 and indicates the opposite of IFE_ENCODE because
477 * they cannot run as the same time. Check on all other values which
478 * are not supported right now.
479 */
480 if (parm->flags & ~IFE_ENCODE)
481 return -EINVAL;
482
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400483 p = kzalloc(sizeof(*p), GFP_KERNEL);
484 if (!p)
485 return -ENOMEM;
486
Chris Mi65a206c2017-08-30 02:31:59 -0400487 exists = tcf_idr_check(tn, parm->index, a, bind);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400488 if (exists && bind) {
489 kfree(p);
Jamal Hadi Salim4e8c8612016-05-10 16:49:31 -0400490 return 0;
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400491 }
Jamal Hadi Salim4e8c8612016-05-10 16:49:31 -0400492
Jamal Hadi Salim4e8c8612016-05-10 16:49:31 -0400493 if (!exists) {
Chris Mi65a206c2017-08-30 02:31:59 -0400494 ret = tcf_idr_create(tn, parm->index, est, a, &act_ife_ops,
Alexander Aringced273e2017-10-11 17:16:07 -0400495 bind, true);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400496 if (ret) {
497 kfree(p);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500498 return ret;
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400499 }
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500500 ret = ACT_P_CREATED;
Vlad Buslov4e8ddd72018-07-05 17:24:30 +0300501 } else if (!ovr) {
Chris Mi65a206c2017-08-30 02:31:59 -0400502 tcf_idr_release(*a, bind);
Vlad Buslov4e8ddd72018-07-05 17:24:30 +0300503 kfree(p);
504 return -EEXIST;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500505 }
506
WANG Conga85a9702016-07-25 16:09:41 -0700507 ife = to_ife(*a);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400508 p->flags = parm->flags;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500509
510 if (parm->flags & IFE_ENCODE) {
Alexander Aringb522ed62017-08-28 15:03:14 -0400511 if (tb[TCA_IFE_TYPE])
512 ife_type = nla_get_u16(tb[TCA_IFE_TYPE]);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500513 if (tb[TCA_IFE_DMAC])
514 daddr = nla_data(tb[TCA_IFE_DMAC]);
515 if (tb[TCA_IFE_SMAC])
516 saddr = nla_data(tb[TCA_IFE_SMAC]);
517 }
518
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500519 if (parm->flags & IFE_ENCODE) {
520 if (daddr)
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400521 ether_addr_copy(p->eth_dst, daddr);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500522 else
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400523 eth_zero_addr(p->eth_dst);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500524
525 if (saddr)
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400526 ether_addr_copy(p->eth_src, saddr);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500527 else
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400528 eth_zero_addr(p->eth_src);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500529
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400530 p->eth_type = ife_type;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500531 }
532
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400533 if (exists)
534 spin_lock_bh(&ife->tcf_lock);
535
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500536 if (ret == ACT_P_CREATED)
537 INIT_LIST_HEAD(&ife->metalist);
538
539 if (tb[TCA_IFE_METALST]) {
540 err = nla_parse_nested(tb2, IFE_META_MAX, tb[TCA_IFE_METALST],
Johannes Bergfceb6432017-04-12 14:34:07 +0200541 NULL, NULL);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500542 if (err) {
543metadata_parse_err:
544 if (ret == ACT_P_CREATED)
Davide Caratti0a889b92018-06-19 15:39:46 +0200545 tcf_idr_release(*a, bind);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500546
WANG Cong067a7cd2016-06-20 13:37:18 -0700547 if (exists)
548 spin_unlock_bh(&ife->tcf_lock);
Vlad Buslov4e8ddd72018-07-05 17:24:30 +0300549 tcf_idr_release(*a, bind);
550
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400551 kfree(p);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500552 return err;
553 }
554
WANG Cong067a7cd2016-06-20 13:37:18 -0700555 err = populate_metalist(ife, tb2, exists);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500556 if (err)
557 goto metadata_parse_err;
558
559 } else {
560 /* if no passed metadata allow list or passed allow-all
561 * then here we process by adding as many supported metadatum
562 * as we can. You better have at least one else we are
563 * going to bail out
564 */
565 err = use_all_metadata(ife);
566 if (err) {
567 if (ret == ACT_P_CREATED)
Davide Caratti0a889b92018-06-19 15:39:46 +0200568 tcf_idr_release(*a, bind);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500569
WANG Cong067a7cd2016-06-20 13:37:18 -0700570 if (exists)
571 spin_unlock_bh(&ife->tcf_lock);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400572 kfree(p);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500573 return err;
574 }
575 }
576
Davide Caratticbf56c22018-06-19 15:45:50 +0200577 ife->tcf_action = parm->action;
WANG Cong067a7cd2016-06-20 13:37:18 -0700578 if (exists)
579 spin_unlock_bh(&ife->tcf_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500580
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400581 p_old = rtnl_dereference(ife->params);
582 rcu_assign_pointer(ife->params, p);
583 if (p_old)
584 kfree_rcu(p_old, rcu);
585
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500586 if (ret == ACT_P_CREATED)
Chris Mi65a206c2017-08-30 02:31:59 -0400587 tcf_idr_insert(tn, *a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500588
589 return ret;
590}
591
592static int tcf_ife_dump(struct sk_buff *skb, struct tc_action *a, int bind,
593 int ref)
594{
595 unsigned char *b = skb_tail_pointer(skb);
WANG Conga85a9702016-07-25 16:09:41 -0700596 struct tcf_ife_info *ife = to_ife(a);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400597 struct tcf_ife_params *p = rtnl_dereference(ife->params);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500598 struct tc_ife opt = {
599 .index = ife->tcf_index,
Vlad Buslov036bb442018-07-05 17:24:24 +0300600 .refcnt = refcount_read(&ife->tcf_refcnt) - ref,
601 .bindcnt = atomic_read(&ife->tcf_bindcnt) - bind,
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500602 .action = ife->tcf_action,
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400603 .flags = p->flags,
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500604 };
605 struct tcf_t t;
606
607 if (nla_put(skb, TCA_IFE_PARMS, sizeof(opt), &opt))
608 goto nla_put_failure;
609
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400610 tcf_tm_dump(&t, &ife->tcf_tm);
Nicolas Dichtel9854518e2016-04-26 10:06:18 +0200611 if (nla_put_64bit(skb, TCA_IFE_TM, sizeof(t), &t, TCA_IFE_PAD))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500612 goto nla_put_failure;
613
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400614 if (!is_zero_ether_addr(p->eth_dst)) {
615 if (nla_put(skb, TCA_IFE_DMAC, ETH_ALEN, p->eth_dst))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500616 goto nla_put_failure;
617 }
618
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400619 if (!is_zero_ether_addr(p->eth_src)) {
620 if (nla_put(skb, TCA_IFE_SMAC, ETH_ALEN, p->eth_src))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500621 goto nla_put_failure;
622 }
623
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400624 if (nla_put(skb, TCA_IFE_TYPE, 2, &p->eth_type))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500625 goto nla_put_failure;
626
627 if (dump_metalist(skb, ife)) {
628 /*ignore failure to dump metalist */
629 pr_info("Failed to dump metalist\n");
630 }
631
632 return skb->len;
633
634nla_put_failure:
635 nlmsg_trim(skb, b);
636 return -1;
637}
638
Or Gerlitz4dba87b2017-03-16 12:53:41 +0200639static int find_decode_metaid(struct sk_buff *skb, struct tcf_ife_info *ife,
640 u16 metaid, u16 mlen, void *mdata)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500641{
642 struct tcf_meta_info *e;
643
644 /* XXX: use hash to speed up */
645 list_for_each_entry(e, &ife->metalist, metalist) {
646 if (metaid == e->metaid) {
647 if (e->ops) {
648 /* We check for decode presence already */
649 return e->ops->decode(skb, mdata, mlen);
650 }
651 }
652 }
653
Alexander Aringf6cd1452018-04-20 15:15:03 -0400654 return -ENOENT;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500655}
656
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500657static int tcf_ife_decode(struct sk_buff *skb, const struct tc_action *a,
658 struct tcf_result *res)
659{
WANG Conga85a9702016-07-25 16:09:41 -0700660 struct tcf_ife_info *ife = to_ife(a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500661 int action = ife->tcf_action;
Yotam Gigi295a6e02017-02-01 15:30:03 +0200662 u8 *ifehdr_end;
663 u8 *tlv_data;
664 u16 metalen;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500665
Alexander Aringced273e2017-10-11 17:16:07 -0400666 bstats_cpu_update(this_cpu_ptr(ife->common.cpu_bstats), skb);
Jamal Hadi Salim9c4a4e42016-06-06 06:32:53 -0400667 tcf_lastuse_update(&ife->tcf_tm);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500668
Yotam Gigi295a6e02017-02-01 15:30:03 +0200669 if (skb_at_tc_ingress(skb))
670 skb_push(skb, skb->dev->hard_header_len);
671
672 tlv_data = ife_decode(skb, &metalen);
673 if (unlikely(!tlv_data)) {
Alexander Aringced273e2017-10-11 17:16:07 -0400674 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500675 return TC_ACT_SHOT;
676 }
677
Yotam Gigi295a6e02017-02-01 15:30:03 +0200678 ifehdr_end = tlv_data + metalen;
679 for (; tlv_data < ifehdr_end; tlv_data = ife_tlv_meta_next(tlv_data)) {
680 u8 *curr_data;
681 u16 mtype;
682 u16 dlen;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500683
Alexander Aringcc74edd2018-04-20 15:15:04 -0400684 curr_data = ife_tlv_meta_decode(tlv_data, ifehdr_end, &mtype,
685 &dlen, NULL);
686 if (!curr_data) {
687 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
688 return TC_ACT_SHOT;
689 }
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500690
Yotam Gigi295a6e02017-02-01 15:30:03 +0200691 if (find_decode_metaid(skb, ife, mtype, dlen, curr_data)) {
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500692 /* abuse overlimits to count when we receive metadata
693 * but dont have an ops for it
694 */
Yotam Gigi295a6e02017-02-01 15:30:03 +0200695 pr_info_ratelimited("Unknown metaid %d dlen %d\n",
696 mtype, dlen);
Alexander Aringced273e2017-10-11 17:16:07 -0400697 qstats_overlimit_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500698 }
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500699 }
700
Yotam Gigi295a6e02017-02-01 15:30:03 +0200701 if (WARN_ON(tlv_data != ifehdr_end)) {
Alexander Aringced273e2017-10-11 17:16:07 -0400702 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
Yotam Gigi295a6e02017-02-01 15:30:03 +0200703 return TC_ACT_SHOT;
704 }
705
706 skb->protocol = eth_type_trans(skb, skb->dev);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500707 skb_reset_network_header(skb);
Yotam Gigi295a6e02017-02-01 15:30:03 +0200708
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500709 return action;
710}
711
712/*XXX: check if we can do this at install time instead of current
713 * send data path
714**/
715static int ife_get_sz(struct sk_buff *skb, struct tcf_ife_info *ife)
716{
717 struct tcf_meta_info *e, *n;
718 int tot_run_sz = 0, run_sz = 0;
719
720 list_for_each_entry_safe(e, n, &ife->metalist, metalist) {
721 if (e->ops->check_presence) {
722 run_sz = e->ops->check_presence(skb, e);
723 tot_run_sz += run_sz;
724 }
725 }
726
727 return tot_run_sz;
728}
729
730static int tcf_ife_encode(struct sk_buff *skb, const struct tc_action *a,
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400731 struct tcf_result *res, struct tcf_ife_params *p)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500732{
WANG Conga85a9702016-07-25 16:09:41 -0700733 struct tcf_ife_info *ife = to_ife(a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500734 int action = ife->tcf_action;
735 struct ethhdr *oethh; /* outer ether header */
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500736 struct tcf_meta_info *e;
737 /*
738 OUTERHDR:TOTMETALEN:{TLVHDR:Metadatum:TLVHDR..}:ORIGDATA
739 where ORIGDATA = original ethernet header ...
740 */
741 u16 metalen = ife_get_sz(skb, ife);
742 int hdrm = metalen + skb->dev->hard_header_len + IFE_METAHDRLEN;
Yotam Gigi295a6e02017-02-01 15:30:03 +0200743 unsigned int skboff = 0;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500744 int new_len = skb->len + hdrm;
745 bool exceed_mtu = false;
Yotam Gigi295a6e02017-02-01 15:30:03 +0200746 void *ife_meta;
747 int err = 0;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500748
Willem de Bruijna5135bc2017-01-07 17:06:36 -0500749 if (!skb_at_tc_ingress(skb)) {
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500750 if (new_len > skb->dev->mtu)
751 exceed_mtu = true;
752 }
753
Alexander Aringced273e2017-10-11 17:16:07 -0400754 bstats_cpu_update(this_cpu_ptr(ife->common.cpu_bstats), skb);
Jamal Hadi Salim9c4a4e42016-06-06 06:32:53 -0400755 tcf_lastuse_update(&ife->tcf_tm);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500756
757 if (!metalen) { /* no metadata to send */
758 /* abuse overlimits to count when we allow packet
759 * with no metadata
760 */
Alexander Aringced273e2017-10-11 17:16:07 -0400761 qstats_overlimit_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500762 return action;
763 }
764 /* could be stupid policy setup or mtu config
765 * so lets be conservative.. */
766 if ((action == TC_ACT_SHOT) || exceed_mtu) {
Alexander Aringced273e2017-10-11 17:16:07 -0400767 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500768 return TC_ACT_SHOT;
769 }
770
Willem de Bruijna5135bc2017-01-07 17:06:36 -0500771 if (skb_at_tc_ingress(skb))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500772 skb_push(skb, skb->dev->hard_header_len);
773
Yotam Gigi295a6e02017-02-01 15:30:03 +0200774 ife_meta = ife_encode(skb, metalen);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500775
Alexander Aringced273e2017-10-11 17:16:07 -0400776 spin_lock(&ife->tcf_lock);
777
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500778 /* XXX: we dont have a clever way of telling encode to
779 * not repeat some of the computations that are done by
780 * ops->presence_check...
781 */
782 list_for_each_entry(e, &ife->metalist, metalist) {
783 if (e->ops->encode) {
Yotam Gigi295a6e02017-02-01 15:30:03 +0200784 err = e->ops->encode(skb, (void *)(ife_meta + skboff),
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500785 e);
786 }
787 if (err < 0) {
788 /* too corrupt to keep around if overwritten */
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500789 spin_unlock(&ife->tcf_lock);
Alexander Aringced273e2017-10-11 17:16:07 -0400790 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500791 return TC_ACT_SHOT;
792 }
793 skboff += err;
794 }
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400795 spin_unlock(&ife->tcf_lock);
Yotam Gigi295a6e02017-02-01 15:30:03 +0200796 oethh = (struct ethhdr *)skb->data;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500797
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400798 if (!is_zero_ether_addr(p->eth_src))
799 ether_addr_copy(oethh->h_source, p->eth_src);
800 if (!is_zero_ether_addr(p->eth_dst))
801 ether_addr_copy(oethh->h_dest, p->eth_dst);
802 oethh->h_proto = htons(p->eth_type);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500803
Willem de Bruijna5135bc2017-01-07 17:06:36 -0500804 if (skb_at_tc_ingress(skb))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500805 skb_pull(skb, skb->dev->hard_header_len);
806
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500807 return action;
808}
809
810static int tcf_ife_act(struct sk_buff *skb, const struct tc_action *a,
811 struct tcf_result *res)
812{
WANG Conga85a9702016-07-25 16:09:41 -0700813 struct tcf_ife_info *ife = to_ife(a);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400814 struct tcf_ife_params *p;
815 int ret;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500816
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400817 rcu_read_lock();
818 p = rcu_dereference(ife->params);
819 if (p->flags & IFE_ENCODE) {
820 ret = tcf_ife_encode(skb, a, res, p);
821 rcu_read_unlock();
822 return ret;
823 }
824 rcu_read_unlock();
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500825
Alexander Aring734534e2017-10-11 17:16:06 -0400826 return tcf_ife_decode(skb, a, res);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500827}
828
829static int tcf_ife_walker(struct net *net, struct sk_buff *skb,
830 struct netlink_callback *cb, int type,
Alexander Aring41780102018-02-15 10:54:58 -0500831 const struct tc_action_ops *ops,
832 struct netlink_ext_ack *extack)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500833{
834 struct tc_action_net *tn = net_generic(net, ife_net_id);
835
Alexander Aringb3620142018-02-15 10:54:59 -0500836 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500837}
838
Alexander Aring331a9292018-02-15 10:54:57 -0500839static int tcf_ife_search(struct net *net, struct tc_action **a, u32 index,
840 struct netlink_ext_ack *extack)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500841{
842 struct tc_action_net *tn = net_generic(net, ife_net_id);
843
Chris Mi65a206c2017-08-30 02:31:59 -0400844 return tcf_idr_search(tn, a, index);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500845}
846
Vlad Buslovb4090742018-07-05 17:24:28 +0300847static int tcf_ife_delete(struct net *net, u32 index)
848{
849 struct tc_action_net *tn = net_generic(net, ife_net_id);
850
851 return tcf_idr_delete_index(tn, index);
852}
853
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500854static struct tc_action_ops act_ife_ops = {
855 .kind = "ife",
856 .type = TCA_ACT_IFE,
857 .owner = THIS_MODULE,
858 .act = tcf_ife_act,
859 .dump = tcf_ife_dump,
860 .cleanup = tcf_ife_cleanup,
861 .init = tcf_ife_init,
862 .walk = tcf_ife_walker,
863 .lookup = tcf_ife_search,
Vlad Buslovb4090742018-07-05 17:24:28 +0300864 .delete = tcf_ife_delete,
WANG Conga85a9702016-07-25 16:09:41 -0700865 .size = sizeof(struct tcf_ife_info),
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500866};
867
868static __net_init int ife_init_net(struct net *net)
869{
870 struct tc_action_net *tn = net_generic(net, ife_net_id);
871
Cong Wangc7e460c2017-11-06 13:47:18 -0800872 return tc_action_net_init(tn, &act_ife_ops);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500873}
874
Cong Wang039af9c2017-12-11 15:35:03 -0800875static void __net_exit ife_exit_net(struct list_head *net_list)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500876{
Cong Wang039af9c2017-12-11 15:35:03 -0800877 tc_action_net_exit(net_list, ife_net_id);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500878}
879
880static struct pernet_operations ife_net_ops = {
881 .init = ife_init_net,
Cong Wang039af9c2017-12-11 15:35:03 -0800882 .exit_batch = ife_exit_net,
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500883 .id = &ife_net_id,
884 .size = sizeof(struct tc_action_net),
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500885};
886
887static int __init ife_init_module(void)
888{
889 return tcf_register_action(&act_ife_ops, &ife_net_ops);
890}
891
892static void __exit ife_cleanup_module(void)
893{
894 tcf_unregister_action(&act_ife_ops, &ife_net_ops);
895}
896
897module_init(ife_init_module);
898module_exit(ife_cleanup_module);
899
900MODULE_AUTHOR("Jamal Hadi Salim(2015)");
901MODULE_DESCRIPTION("Inter-FE LFB action");
902MODULE_LICENSE("GPL");