blob: 972378f47f3cfd2ef03b33ac3a3a5ea7801e7afe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/act_api.c Packet action API.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Author: Jamal Hadi Salim
10 *
11 *
12 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/types.h>
15#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/errno.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/init.h>
21#include <linux/kmod.h>
Patrick McHardyab27cfb2008-01-23 20:33:13 -080022#include <linux/err.h>
Denis V. Lunevb8542722007-12-01 00:21:31 +110023#include <net/net_namespace.h>
24#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <net/sch_generic.h>
26#include <net/act_api.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070027#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
David S. Millere9ce1cd2006-08-21 23:54:55 -070029void tcf_hash_destroy(struct tcf_common *p, struct tcf_hashinfo *hinfo)
30{
31 unsigned int h = tcf_hash(p->tcfc_index, hinfo->hmask);
32 struct tcf_common **p1p;
33
34 for (p1p = &hinfo->htab[h]; *p1p; p1p = &(*p1p)->tcfc_next) {
35 if (*p1p == p) {
36 write_lock_bh(hinfo->lock);
37 *p1p = p->tcfc_next;
38 write_unlock_bh(hinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -070039 gen_kill_estimator(&p->tcfc_bstats,
40 &p->tcfc_rate_est);
David S. Millere9ce1cd2006-08-21 23:54:55 -070041 kfree(p);
42 return;
43 }
44 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -070045 WARN_ON(1);
David S. Millere9ce1cd2006-08-21 23:54:55 -070046}
47EXPORT_SYMBOL(tcf_hash_destroy);
48
49int tcf_hash_release(struct tcf_common *p, int bind,
50 struct tcf_hashinfo *hinfo)
51{
52 int ret = 0;
53
54 if (p) {
55 if (bind)
56 p->tcfc_bindcnt--;
57
58 p->tcfc_refcnt--;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090059 if (p->tcfc_bindcnt <= 0 && p->tcfc_refcnt <= 0) {
David S. Millere9ce1cd2006-08-21 23:54:55 -070060 tcf_hash_destroy(p, hinfo);
61 ret = 1;
62 }
63 }
64 return ret;
65}
66EXPORT_SYMBOL(tcf_hash_release);
67
68static int tcf_dump_walker(struct sk_buff *skb, struct netlink_callback *cb,
69 struct tc_action *a, struct tcf_hashinfo *hinfo)
70{
71 struct tcf_common *p;
72 int err = 0, index = -1,i = 0, s_i = 0, n_i = 0;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080073 struct nlattr *nest;
David S. Millere9ce1cd2006-08-21 23:54:55 -070074
Jamal Hadi Salime1e992e2007-09-12 16:32:59 +020075 read_lock_bh(hinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -070076
77 s_i = cb->args[0];
78
79 for (i = 0; i < (hinfo->hmask + 1); i++) {
80 p = hinfo->htab[tcf_hash(i, hinfo->hmask)];
81
82 for (; p; p = p->tcfc_next) {
83 index++;
84 if (index < s_i)
85 continue;
86 a->priv = p;
87 a->order = n_i;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080088
89 nest = nla_nest_start(skb, a->order);
90 if (nest == NULL)
91 goto nla_put_failure;
David S. Millere9ce1cd2006-08-21 23:54:55 -070092 err = tcf_action_dump_1(skb, a, 0, 0);
93 if (err < 0) {
94 index--;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080095 nlmsg_trim(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -070096 goto done;
97 }
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080098 nla_nest_end(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -070099 n_i++;
100 if (n_i >= TCA_ACT_MAX_PRIO)
101 goto done;
102 }
103 }
104done:
Jamal Hadi Salime1e992e2007-09-12 16:32:59 +0200105 read_unlock_bh(hinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700106 if (n_i)
107 cb->args[0] += n_i;
108 return n_i;
109
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800110nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800111 nla_nest_cancel(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700112 goto done;
113}
114
115static int tcf_del_walker(struct sk_buff *skb, struct tc_action *a,
116 struct tcf_hashinfo *hinfo)
117{
118 struct tcf_common *p, *s_p;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800119 struct nlattr *nest;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700120 int i= 0, n_i = 0;
121
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800122 nest = nla_nest_start(skb, a->order);
123 if (nest == NULL)
124 goto nla_put_failure;
Patrick McHardy57e1c482008-01-23 20:34:28 -0800125 NLA_PUT_STRING(skb, TCA_KIND, a->ops->kind);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700126 for (i = 0; i < (hinfo->hmask + 1); i++) {
127 p = hinfo->htab[tcf_hash(i, hinfo->hmask)];
128
129 while (p != NULL) {
130 s_p = p->tcfc_next;
131 if (ACT_P_DELETED == tcf_hash_release(p, 0, hinfo))
132 module_put(a->ops->owner);
133 n_i++;
134 p = s_p;
135 }
136 }
Patrick McHardy24beeab2008-01-23 20:34:48 -0800137 NLA_PUT_U32(skb, TCA_FCNT, n_i);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800138 nla_nest_end(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700139
140 return n_i;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800141nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800142 nla_nest_cancel(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700143 return -EINVAL;
144}
145
146int tcf_generic_walker(struct sk_buff *skb, struct netlink_callback *cb,
147 int type, struct tc_action *a)
148{
149 struct tcf_hashinfo *hinfo = a->ops->hinfo;
150
151 if (type == RTM_DELACTION) {
152 return tcf_del_walker(skb, a, hinfo);
153 } else if (type == RTM_GETACTION) {
154 return tcf_dump_walker(skb, cb, a, hinfo);
155 } else {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000156 WARN(1, "tcf_generic_walker: unknown action %d\n", type);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700157 return -EINVAL;
158 }
159}
160EXPORT_SYMBOL(tcf_generic_walker);
161
162struct tcf_common *tcf_hash_lookup(u32 index, struct tcf_hashinfo *hinfo)
163{
164 struct tcf_common *p;
165
Jamal Hadi Salime1e992e2007-09-12 16:32:59 +0200166 read_lock_bh(hinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700167 for (p = hinfo->htab[tcf_hash(index, hinfo->hmask)]; p;
168 p = p->tcfc_next) {
169 if (p->tcfc_index == index)
170 break;
171 }
Jamal Hadi Salime1e992e2007-09-12 16:32:59 +0200172 read_unlock_bh(hinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700173
174 return p;
175}
176EXPORT_SYMBOL(tcf_hash_lookup);
177
178u32 tcf_hash_new_index(u32 *idx_gen, struct tcf_hashinfo *hinfo)
179{
180 u32 val = *idx_gen;
181
182 do {
183 if (++val == 0)
184 val = 1;
185 } while (tcf_hash_lookup(val, hinfo));
186
187 return (*idx_gen = val);
188}
189EXPORT_SYMBOL(tcf_hash_new_index);
190
191int tcf_hash_search(struct tc_action *a, u32 index)
192{
193 struct tcf_hashinfo *hinfo = a->ops->hinfo;
194 struct tcf_common *p = tcf_hash_lookup(index, hinfo);
195
196 if (p) {
197 a->priv = p;
198 return 1;
199 }
200 return 0;
201}
202EXPORT_SYMBOL(tcf_hash_search);
203
204struct tcf_common *tcf_hash_check(u32 index, struct tc_action *a, int bind,
205 struct tcf_hashinfo *hinfo)
206{
207 struct tcf_common *p = NULL;
208 if (index && (p = tcf_hash_lookup(index, hinfo)) != NULL) {
Jamal Hadi Salim76aab2c2008-08-07 20:37:22 -0700209 if (bind)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700210 p->tcfc_bindcnt++;
Jamal Hadi Salim76aab2c2008-08-07 20:37:22 -0700211 p->tcfc_refcnt++;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700212 a->priv = p;
213 }
214 return p;
215}
216EXPORT_SYMBOL(tcf_hash_check);
217
Stephen Hemminger0e991ec2008-11-25 21:12:32 -0800218struct tcf_common *tcf_hash_create(u32 index, struct nlattr *est,
219 struct tc_action *a, int size, int bind,
220 u32 *idx_gen, struct tcf_hashinfo *hinfo)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700221{
222 struct tcf_common *p = kzalloc(size, GFP_KERNEL);
223
224 if (unlikely(!p))
Stephen Hemminger0e991ec2008-11-25 21:12:32 -0800225 return ERR_PTR(-ENOMEM);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700226 p->tcfc_refcnt = 1;
227 if (bind)
228 p->tcfc_bindcnt = 1;
229
230 spin_lock_init(&p->tcfc_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700231 p->tcfc_index = index ? index : tcf_hash_new_index(idx_gen, hinfo);
232 p->tcfc_tm.install = jiffies;
233 p->tcfc_tm.lastuse = jiffies;
Stephen Hemminger0e991ec2008-11-25 21:12:32 -0800234 if (est) {
235 int err = gen_new_estimator(&p->tcfc_bstats, &p->tcfc_rate_est,
236 &p->tcfc_lock, est);
237 if (err) {
238 kfree(p);
239 return ERR_PTR(err);
240 }
241 }
242
David S. Millere9ce1cd2006-08-21 23:54:55 -0700243 a->priv = (void *) p;
244 return p;
245}
246EXPORT_SYMBOL(tcf_hash_create);
247
248void tcf_hash_insert(struct tcf_common *p, struct tcf_hashinfo *hinfo)
249{
250 unsigned int h = tcf_hash(p->tcfc_index, hinfo->hmask);
251
252 write_lock_bh(hinfo->lock);
253 p->tcfc_next = hinfo->htab[h];
254 hinfo->htab[h] = p;
255 write_unlock_bh(hinfo->lock);
256}
257EXPORT_SYMBOL(tcf_hash_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259static struct tc_action_ops *act_base = NULL;
260static DEFINE_RWLOCK(act_mod_lock);
261
262int tcf_register_action(struct tc_action_ops *act)
263{
264 struct tc_action_ops *a, **ap;
265
266 write_lock(&act_mod_lock);
267 for (ap = &act_base; (a = *ap) != NULL; ap = &a->next) {
268 if (act->type == a->type || (strcmp(act->kind, a->kind) == 0)) {
269 write_unlock(&act_mod_lock);
270 return -EEXIST;
271 }
272 }
273 act->next = NULL;
274 *ap = act;
275 write_unlock(&act_mod_lock);
276 return 0;
277}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800278EXPORT_SYMBOL(tcf_register_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280int tcf_unregister_action(struct tc_action_ops *act)
281{
282 struct tc_action_ops *a, **ap;
283 int err = -ENOENT;
284
285 write_lock(&act_mod_lock);
286 for (ap = &act_base; (a = *ap) != NULL; ap = &a->next)
287 if (a == act)
288 break;
289 if (a) {
290 *ap = a->next;
291 a->next = NULL;
292 err = 0;
293 }
294 write_unlock(&act_mod_lock);
295 return err;
296}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800297EXPORT_SYMBOL(tcf_unregister_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299/* lookup by name */
300static struct tc_action_ops *tc_lookup_action_n(char *kind)
301{
302 struct tc_action_ops *a = NULL;
303
304 if (kind) {
305 read_lock(&act_mod_lock);
306 for (a = act_base; a; a = a->next) {
307 if (strcmp(kind, a->kind) == 0) {
308 if (!try_module_get(a->owner)) {
309 read_unlock(&act_mod_lock);
310 return NULL;
311 }
312 break;
313 }
314 }
315 read_unlock(&act_mod_lock);
316 }
317 return a;
318}
319
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800320/* lookup by nlattr */
321static struct tc_action_ops *tc_lookup_action(struct nlattr *kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 struct tc_action_ops *a = NULL;
324
325 if (kind) {
326 read_lock(&act_mod_lock);
327 for (a = act_base; a; a = a->next) {
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800328 if (nla_strcmp(kind, a->kind) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (!try_module_get(a->owner)) {
330 read_unlock(&act_mod_lock);
331 return NULL;
332 }
333 break;
334 }
335 }
336 read_unlock(&act_mod_lock);
337 }
338 return a;
339}
340
341#if 0
342/* lookup by id */
343static struct tc_action_ops *tc_lookup_action_id(u32 type)
344{
345 struct tc_action_ops *a = NULL;
346
347 if (type) {
348 read_lock(&act_mod_lock);
349 for (a = act_base; a; a = a->next) {
350 if (a->type == type) {
351 if (!try_module_get(a->owner)) {
352 read_unlock(&act_mod_lock);
353 return NULL;
354 }
355 break;
356 }
357 }
358 read_unlock(&act_mod_lock);
359 }
360 return a;
361}
362#endif
363
364int tcf_action_exec(struct sk_buff *skb, struct tc_action *act,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900365 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 struct tc_action *a;
368 int ret = -1;
369
370 if (skb->tc_verd & TC_NCLS) {
371 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 ret = TC_ACT_OK;
373 goto exec_done;
374 }
375 while ((a = act) != NULL) {
376repeat:
377 if (a->ops && a->ops->act) {
Patrick McHardyf43c5a02006-01-08 22:15:34 -0800378 ret = a->ops->act(skb, a, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (TC_MUNGED & skb->tc_verd) {
380 /* copied already, allow trampling */
381 skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd);
382 skb->tc_verd = CLR_TC_MUNGED(skb->tc_verd);
383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (ret == TC_ACT_REPEAT)
385 goto repeat; /* we need a ttl - JHS */
J Hadi Salim14d50e72005-05-03 16:29:13 -0700386 if (ret != TC_ACT_PIPE)
387 goto exec_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389 act = a->next;
390 }
391exec_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return ret;
393}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800394EXPORT_SYMBOL(tcf_action_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396void tcf_action_destroy(struct tc_action *act, int bind)
397{
398 struct tc_action *a;
399
400 for (a = act; a; a = act) {
401 if (a->ops && a->ops->cleanup) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (a->ops->cleanup(a, bind) == ACT_P_DELETED)
403 module_put(a->ops->owner);
404 act = act->next;
405 kfree(a);
stephen hemminger6ff9c362010-05-12 06:37:05 +0000406 } else {
407 /*FIXME: Remove later - catch insertion bugs*/
408 WARN(1, "tcf_action_destroy: BUG? destroying NULL ops\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 act = act->next;
410 kfree(a);
411 }
412 }
413}
414
415int
416tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
417{
418 int err = -EINVAL;
419
420 if (a->ops == NULL || a->ops->dump == NULL)
421 return err;
422 return a->ops->dump(skb, a, bind, ref);
423}
424
425int
426tcf_action_dump_1(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
427{
428 int err = -EINVAL;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700429 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800430 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 if (a->ops == NULL || a->ops->dump == NULL)
433 return err;
434
Patrick McHardy57e1c482008-01-23 20:34:28 -0800435 NLA_PUT_STRING(skb, TCA_KIND, a->ops->kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (tcf_action_copy_stats(skb, a, 0))
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800437 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800438 nest = nla_nest_start(skb, TCA_OPTIONS);
439 if (nest == NULL)
440 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if ((err = tcf_action_dump_old(skb, a, bind, ref)) > 0) {
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800442 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return err;
444 }
445
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800446nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700447 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return -1;
449}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800450EXPORT_SYMBOL(tcf_action_dump_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452int
453tcf_action_dump(struct sk_buff *skb, struct tc_action *act, int bind, int ref)
454{
455 struct tc_action *a;
456 int err = -EINVAL;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800457 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 while ((a = act) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 act = a->next;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800461 nest = nla_nest_start(skb, a->order);
462 if (nest == NULL)
463 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 err = tcf_action_dump_1(skb, a, bind, ref);
465 if (err < 0)
Thomas Graf4fe683f2006-07-05 20:47:28 -0700466 goto errout;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800467 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469
470 return 0;
471
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800472nla_put_failure:
Thomas Graf4fe683f2006-07-05 20:47:28 -0700473 err = -EINVAL;
474errout:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800475 nla_nest_cancel(skb, nest);
Thomas Graf4fe683f2006-07-05 20:47:28 -0700476 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800479struct tc_action *tcf_action_init_1(struct nlattr *nla, struct nlattr *est,
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800480 char *name, int ovr, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 struct tc_action *a;
483 struct tc_action_ops *a_o;
484 char act_name[IFNAMSIZ];
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800485 struct nlattr *tb[TCA_ACT_MAX+1];
486 struct nlattr *kind;
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800487 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (name == NULL) {
Patrick McHardycee63722008-01-23 20:33:32 -0800490 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
491 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 goto err_out;
Patrick McHardycee63722008-01-23 20:33:32 -0800493 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800494 kind = tb[TCA_ACT_KIND];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (kind == NULL)
496 goto err_out;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800497 if (nla_strlcpy(act_name, kind, IFNAMSIZ) >= IFNAMSIZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 goto err_out;
499 } else {
Patrick McHardycee63722008-01-23 20:33:32 -0800500 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (strlcpy(act_name, name, IFNAMSIZ) >= IFNAMSIZ)
502 goto err_out;
503 }
504
505 a_o = tc_lookup_action_n(act_name);
506 if (a_o == NULL) {
Johannes Berg95a5afc2008-10-16 15:24:51 -0700507#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 rtnl_unlock();
Patrick McHardy4bba3922006-01-08 22:22:14 -0800509 request_module("act_%s", act_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 rtnl_lock();
511
512 a_o = tc_lookup_action_n(act_name);
513
514 /* We dropped the RTNL semaphore in order to
515 * perform the module load. So, even if we
516 * succeeded in loading the module we have to
517 * tell the caller to replay the request. We
518 * indicate this using -EAGAIN.
519 */
520 if (a_o != NULL) {
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800521 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 goto err_mod;
523 }
524#endif
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800525 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 goto err_out;
527 }
528
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800529 err = -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700530 a = kzalloc(sizeof(*a), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (a == NULL)
532 goto err_mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 /* backward compatibility for policer */
535 if (name == NULL)
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800536 err = a_o->init(tb[TCA_ACT_OPTIONS], est, a, ovr, bind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 else
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800538 err = a_o->init(nla, est, a, ovr, bind);
539 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 goto err_free;
541
542 /* module count goes up only when brand new policy is created
543 if it exists and is only bound to in a_o->init() then
544 ACT_P_CREATED is not returned (a zero is).
545 */
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800546 if (err != ACT_P_CREATED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 module_put(a_o->owner);
548 a->ops = a_o;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return a;
551
552err_free:
553 kfree(a);
554err_mod:
555 module_put(a_o->owner);
556err_out:
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800557 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800560struct tc_action *tcf_action_init(struct nlattr *nla, struct nlattr *est,
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800561 char *name, int ovr, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800563 struct nlattr *tb[TCA_ACT_MAX_PRIO+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 struct tc_action *head = NULL, *act, *act_prev = NULL;
Patrick McHardycee63722008-01-23 20:33:32 -0800565 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 int i;
567
Patrick McHardycee63722008-01-23 20:33:32 -0800568 err = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
569 if (err < 0)
570 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800572 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800573 act = tcf_action_init_1(tb[i], est, name, ovr, bind);
574 if (IS_ERR(act))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 goto err;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800576 act->order = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 if (head == NULL)
579 head = act;
580 else
581 act_prev->next = act;
582 act_prev = act;
583 }
584 return head;
585
586err:
587 if (head != NULL)
588 tcf_action_destroy(head, bind);
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800589 return act;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
592int tcf_action_copy_stats(struct sk_buff *skb, struct tc_action *a,
593 int compat_mode)
594{
595 int err = 0;
596 struct gnet_dump d;
597 struct tcf_act_hdr *h = a->priv;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (h == NULL)
600 goto errout;
601
602 /* compat_mode being true specifies a call that is supposed
Dirk Hohndel06fe9fb2009-09-28 21:43:57 -0400603 * to add additional backward compatibility statistic TLVs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 */
605 if (compat_mode) {
606 if (a->type == TCA_OLD_COMPAT)
607 err = gnet_stats_start_copy_compat(skb, 0,
Patrick McHardy4bdf3992007-07-02 22:47:37 -0700608 TCA_STATS, TCA_XSTATS, &h->tcf_lock, &d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 else
610 return 0;
611 } else
612 err = gnet_stats_start_copy(skb, TCA_ACT_STATS,
Patrick McHardy4bdf3992007-07-02 22:47:37 -0700613 &h->tcf_lock, &d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 if (err < 0)
616 goto errout;
617
618 if (a->ops != NULL && a->ops->get_stats != NULL)
619 if (a->ops->get_stats(skb, a) < 0)
620 goto errout;
621
David S. Millere9ce1cd2006-08-21 23:54:55 -0700622 if (gnet_stats_copy_basic(&d, &h->tcf_bstats) < 0 ||
Eric Dumazetd250a5f2009-10-02 10:32:18 +0000623 gnet_stats_copy_rate_est(&d, &h->tcf_bstats,
624 &h->tcf_rate_est) < 0 ||
David S. Millere9ce1cd2006-08-21 23:54:55 -0700625 gnet_stats_copy_queue(&d, &h->tcf_qstats) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 goto errout;
627
628 if (gnet_stats_finish_copy(&d) < 0)
629 goto errout;
630
631 return 0;
632
633errout:
634 return -1;
635}
636
637static int
638tca_get_fill(struct sk_buff *skb, struct tc_action *a, u32 pid, u32 seq,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900639 u16 flags, int event, int bind, int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
641 struct tcamsg *t;
642 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700643 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800644 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700646 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*t), flags);
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 t = NLMSG_DATA(nlh);
649 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700650 t->tca__pad1 = 0;
651 t->tca__pad2 = 0;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900652
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800653 nest = nla_nest_start(skb, TCA_ACT_TAB);
654 if (nest == NULL)
655 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 if (tcf_action_dump(skb, a, bind, ref) < 0)
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800658 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800660 nla_nest_end(skb, nest);
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900661
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700662 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return skb->len;
664
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800665nla_put_failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666nlmsg_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700667 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return -1;
669}
670
671static int
Tom Goff7316ae82010-03-19 15:40:13 +0000672act_get_notify(struct net *net, u32 pid, struct nlmsghdr *n,
673 struct tc_action *a, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
678 if (!skb)
679 return -ENOBUFS;
680 if (tca_get_fill(skb, a, pid, n->nlmsg_seq, 0, event, 0, 0) <= 0) {
681 kfree_skb(skb);
682 return -EINVAL;
683 }
Thomas Graf2942e902006-08-15 00:30:25 -0700684
Tom Goff7316ae82010-03-19 15:40:13 +0000685 return rtnl_unicast(skb, net, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
688static struct tc_action *
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800689tcf_action_get_1(struct nlattr *nla, struct nlmsghdr *n, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800691 struct nlattr *tb[TCA_ACT_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 struct tc_action *a;
693 int index;
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800694 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Patrick McHardycee63722008-01-23 20:33:32 -0800696 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
697 if (err < 0)
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800698 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Patrick McHardycee63722008-01-23 20:33:32 -0800700 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800701 if (tb[TCA_ACT_INDEX] == NULL ||
702 nla_len(tb[TCA_ACT_INDEX]) < sizeof(index))
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800703 goto err_out;
Patrick McHardy1587bac2008-01-23 20:35:03 -0800704 index = nla_get_u32(tb[TCA_ACT_INDEX]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800706 err = -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700707 a = kzalloc(sizeof(struct tc_action), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (a == NULL)
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800709 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800711 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800712 a->ops = tc_lookup_action(tb[TCA_ACT_KIND]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (a->ops == NULL)
714 goto err_free;
715 if (a->ops->lookup == NULL)
716 goto err_mod;
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800717 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (a->ops->lookup(a, index) == 0)
719 goto err_mod;
720
721 module_put(a->ops->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return a;
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724err_mod:
725 module_put(a->ops->owner);
726err_free:
727 kfree(a);
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800728err_out:
729 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
732static void cleanup_a(struct tc_action *act)
733{
734 struct tc_action *a;
735
736 for (a = act; a; a = act) {
737 act = a->next;
738 kfree(a);
739 }
740}
741
742static struct tc_action *create_a(int i)
743{
744 struct tc_action *act;
745
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700746 act = kzalloc(sizeof(*act), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if (act == NULL) {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000748 pr_debug("create_a: failed to alloc!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return NULL;
750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 act->order = i;
752 return act;
753}
754
Tom Goff7316ae82010-03-19 15:40:13 +0000755static int tca_action_flush(struct net *net, struct nlattr *nla,
756 struct nlmsghdr *n, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
758 struct sk_buff *skb;
759 unsigned char *b;
760 struct nlmsghdr *nlh;
761 struct tcamsg *t;
762 struct netlink_callback dcb;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800763 struct nlattr *nest;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800764 struct nlattr *tb[TCA_ACT_MAX+1];
765 struct nlattr *kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 struct tc_action *a = create_a(0);
Jamal Hadi Salim36723872008-08-13 02:41:45 -0700767 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 if (a == NULL) {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000770 pr_debug("tca_action_flush: couldnt create tc_action\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return err;
772 }
773
774 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
775 if (!skb) {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000776 pr_debug("tca_action_flush: failed skb alloc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 kfree(a);
Jamal Hadi Salim36723872008-08-13 02:41:45 -0700778 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700781 b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Patrick McHardycee63722008-01-23 20:33:32 -0800783 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
784 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 goto err_out;
786
Patrick McHardycee63722008-01-23 20:33:32 -0800787 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800788 kind = tb[TCA_ACT_KIND];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 a->ops = tc_lookup_action(kind);
790 if (a->ops == NULL)
791 goto err_out;
792
793 nlh = NLMSG_PUT(skb, pid, n->nlmsg_seq, RTM_DELACTION, sizeof(*t));
794 t = NLMSG_DATA(nlh);
795 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700796 t->tca__pad1 = 0;
797 t->tca__pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800799 nest = nla_nest_start(skb, TCA_ACT_TAB);
800 if (nest == NULL)
801 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 err = a->ops->walk(skb, &dcb, RTM_DELACTION, a);
804 if (err < 0)
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800805 goto nla_put_failure;
Jamal Hadi Salimf97017c2008-08-13 02:41:22 -0700806 if (err == 0)
807 goto noflush_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800809 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700811 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 nlh->nlmsg_flags |= NLM_F_ROOT;
813 module_put(a->ops->owner);
814 kfree(a);
Tom Goff7316ae82010-03-19 15:40:13 +0000815 err = rtnetlink_send(skb, net, pid, RTNLGRP_TC, n->nlmsg_flags&NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (err > 0)
817 return 0;
818
819 return err;
820
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800821nla_put_failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822nlmsg_failure:
Thomas Grafebbaeab2006-07-09 11:36:23 -0700823 module_put(a->ops->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824err_out:
Jamal Hadi Salimf97017c2008-08-13 02:41:22 -0700825noflush_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 kfree_skb(skb);
827 kfree(a);
828 return err;
829}
830
831static int
Tom Goff7316ae82010-03-19 15:40:13 +0000832tca_action_gd(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
833 u32 pid, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Patrick McHardycee63722008-01-23 20:33:32 -0800835 int i, ret;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800836 struct nlattr *tb[TCA_ACT_MAX_PRIO+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 struct tc_action *head = NULL, *act, *act_prev = NULL;
838
Patrick McHardycee63722008-01-23 20:33:32 -0800839 ret = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
840 if (ret < 0)
841 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 if (event == RTM_DELACTION && n->nlmsg_flags&NLM_F_ROOT) {
Jamal Hadi Salimf97017c2008-08-13 02:41:22 -0700844 if (tb[1] != NULL)
Tom Goff7316ae82010-03-19 15:40:13 +0000845 return tca_action_flush(net, tb[1], n, pid);
Jamal Hadi Salimf97017c2008-08-13 02:41:22 -0700846 else
847 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800850 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800851 act = tcf_action_get_1(tb[i], n, pid);
852 if (IS_ERR(act)) {
853 ret = PTR_ERR(act);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto err;
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800855 }
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800856 act->order = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 if (head == NULL)
859 head = act;
860 else
861 act_prev->next = act;
862 act_prev = act;
863 }
864
865 if (event == RTM_GETACTION)
Tom Goff7316ae82010-03-19 15:40:13 +0000866 ret = act_get_notify(net, pid, n, head, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 else { /* delete */
868 struct sk_buff *skb;
869
870 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
871 if (!skb) {
872 ret = -ENOBUFS;
873 goto err;
874 }
875
876 if (tca_get_fill(skb, head, pid, n->nlmsg_seq, 0, event,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900877 0, 1) <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 kfree_skb(skb);
879 ret = -EINVAL;
880 goto err;
881 }
882
883 /* now do the delete */
884 tcf_action_destroy(head, 0);
Tom Goff7316ae82010-03-19 15:40:13 +0000885 ret = rtnetlink_send(skb, net, pid, RTNLGRP_TC,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900886 n->nlmsg_flags&NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (ret > 0)
888 return 0;
889 return ret;
890 }
891err:
892 cleanup_a(head);
893 return ret;
894}
895
Tom Goff7316ae82010-03-19 15:40:13 +0000896static int tcf_add_notify(struct net *net, struct tc_action *a,
897 u32 pid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
899 struct tcamsg *t;
900 struct nlmsghdr *nlh;
901 struct sk_buff *skb;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800902 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 unsigned char *b;
904 int err = 0;
905
906 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
907 if (!skb)
908 return -ENOBUFS;
909
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700910 b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700912 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*t), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 t = NLMSG_DATA(nlh);
914 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700915 t->tca__pad1 = 0;
916 t->tca__pad2 = 0;
917
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800918 nest = nla_nest_start(skb, TCA_ACT_TAB);
919 if (nest == NULL)
920 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 if (tcf_action_dump(skb, a, 0, 0) < 0)
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800923 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800925 nla_nest_end(skb, nest);
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900926
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700927 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Patrick McHardyac6d4392005-08-14 19:29:52 -0700928 NETLINK_CB(skb).dst_group = RTNLGRP_TC;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900929
Tom Goff7316ae82010-03-19 15:40:13 +0000930 err = rtnetlink_send(skb, net, pid, RTNLGRP_TC, flags&NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (err > 0)
932 err = 0;
933 return err;
934
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800935nla_put_failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936nlmsg_failure:
Patrick McHardyf6e57462006-03-12 20:33:22 -0800937 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return -1;
939}
940
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942static int
Tom Goff7316ae82010-03-19 15:40:13 +0000943tcf_action_add(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
944 u32 pid, int ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
946 int ret = 0;
947 struct tc_action *act;
948 struct tc_action *a;
949 u32 seq = n->nlmsg_seq;
950
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800951 act = tcf_action_init(nla, NULL, NULL, ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (act == NULL)
953 goto done;
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800954 if (IS_ERR(act)) {
955 ret = PTR_ERR(act);
956 goto done;
957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 /* dump then free all the actions after update; inserted policy
960 * stays intact
961 * */
Tom Goff7316ae82010-03-19 15:40:13 +0000962 ret = tcf_add_notify(net, act, pid, seq, RTM_NEWACTION, n->nlmsg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 for (a = act; a; a = act) {
964 act = a->next;
965 kfree(a);
966 }
967done:
968 return ret;
969}
970
971static int tc_ctl_action(struct sk_buff *skb, struct nlmsghdr *n, void *arg)
972{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900973 struct net *net = sock_net(skb->sk);
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800974 struct nlattr *tca[TCA_ACT_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 u32 pid = skb ? NETLINK_CB(skb).pid : 0;
976 int ret = 0, ovr = 0;
977
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800978 ret = nlmsg_parse(n, sizeof(struct tcamsg), tca, TCA_ACT_MAX, NULL);
979 if (ret < 0)
980 return ret;
981
982 if (tca[TCA_ACT_TAB] == NULL) {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000983 pr_notice("tc_ctl_action: received NO action attribs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return -EINVAL;
985 }
986
987 /* n->nlmsg_flags&NLM_F_CREATE
988 * */
989 switch (n->nlmsg_type) {
990 case RTM_NEWACTION:
991 /* we are going to assume all other flags
992 * imply create only if it doesnt exist
993 * Note that CREATE | EXCL implies that
994 * but since we want avoid ambiguity (eg when flags
995 * is zero) then just set this
996 */
997 if (n->nlmsg_flags&NLM_F_REPLACE)
998 ovr = 1;
999replay:
Tom Goff7316ae82010-03-19 15:40:13 +00001000 ret = tcf_action_add(net, tca[TCA_ACT_TAB], n, pid, ovr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 if (ret == -EAGAIN)
1002 goto replay;
1003 break;
1004 case RTM_DELACTION:
Tom Goff7316ae82010-03-19 15:40:13 +00001005 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
1006 pid, RTM_DELACTION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 break;
1008 case RTM_GETACTION:
Tom Goff7316ae82010-03-19 15:40:13 +00001009 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
1010 pid, RTM_GETACTION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 break;
1012 default:
1013 BUG();
1014 }
1015
1016 return ret;
1017}
1018
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001019static struct nlattr *
Patrick McHardy3a6c2b42009-08-25 16:07:40 +02001020find_dump_kind(const struct nlmsghdr *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001022 struct nlattr *tb1, *tb2[TCA_ACT_MAX+1];
1023 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
1024 struct nlattr *nla[TCAA_MAX + 1];
1025 struct nlattr *kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Patrick McHardyc96c9472008-01-23 20:32:58 -08001027 if (nlmsg_parse(n, sizeof(struct tcamsg), nla, TCAA_MAX, NULL) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return NULL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001029 tb1 = nla[TCA_ACT_TAB];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 if (tb1 == NULL)
1031 return NULL;
1032
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001033 if (nla_parse(tb, TCA_ACT_MAX_PRIO, nla_data(tb1),
1034 NLMSG_ALIGN(nla_len(tb1)), NULL) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Patrick McHardy6d834e02008-01-23 20:32:42 -08001037 if (tb[1] == NULL)
1038 return NULL;
1039 if (nla_parse(tb2, TCA_ACT_MAX, nla_data(tb[1]),
1040 nla_len(tb[1]), NULL) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return NULL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001042 kind = tb2[TCA_ACT_KIND];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Thomas Graf26dab892006-07-05 20:45:06 -07001044 return kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
1047static int
1048tc_dump_action(struct sk_buff *skb, struct netlink_callback *cb)
1049{
1050 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001051 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001052 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 struct tc_action_ops *a_o;
1054 struct tc_action a;
1055 int ret = 0;
1056 struct tcamsg *t = (struct tcamsg *) NLMSG_DATA(cb->nlh);
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001057 struct nlattr *kind = find_dump_kind(cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 if (kind == NULL) {
stephen hemminger6ff9c362010-05-12 06:37:05 +00001060 pr_info("tc_dump_action: action bad kind\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 return 0;
1062 }
1063
Thomas Graf26dab892006-07-05 20:45:06 -07001064 a_o = tc_lookup_action(kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (a_o == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return 0;
1067 }
1068
1069 memset(&a, 0, sizeof(struct tc_action));
1070 a.ops = a_o;
1071
1072 if (a_o->walk == NULL) {
stephen hemminger6ff9c362010-05-12 06:37:05 +00001073 WARN(1, "tc_dump_action: %s !capable of dumping table\n",
1074 a_o->kind);
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001075 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077
1078 nlh = NLMSG_PUT(skb, NETLINK_CB(cb->skb).pid, cb->nlh->nlmsg_seq,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001079 cb->nlh->nlmsg_type, sizeof(*t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 t = NLMSG_DATA(nlh);
1081 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001082 t->tca__pad1 = 0;
1083 t->tca__pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001085 nest = nla_nest_start(skb, TCA_ACT_TAB);
1086 if (nest == NULL)
1087 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089 ret = a_o->walk(skb, cb, RTM_GETACTION, &a);
1090 if (ret < 0)
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001091 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 if (ret > 0) {
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001094 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 ret = skb->len;
1096 } else
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001097 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001099 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (NETLINK_CB(cb->skb).pid && ret)
1101 nlh->nlmsg_flags |= NLM_F_MULTI;
1102 module_put(a_o->owner);
1103 return skb->len;
1104
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001105nla_put_failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106nlmsg_failure:
1107 module_put(a_o->owner);
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001108 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 return skb->len;
1110}
1111
1112static int __init tc_action_init(void)
1113{
Thomas Graf708914c2007-03-22 11:56:59 -07001114 rtnl_register(PF_UNSPEC, RTM_NEWACTION, tc_ctl_action, NULL);
1115 rtnl_register(PF_UNSPEC, RTM_DELACTION, tc_ctl_action, NULL);
1116 rtnl_register(PF_UNSPEC, RTM_GETACTION, tc_ctl_action, tc_dump_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return 0;
1119}
1120
1121subsys_initcall(tc_action_init);