blob: dce2b6ecdbd897371dbe93decefc58aa2deca223 [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>
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040023#include <linux/module.h>
Denis V. Lunevb8542722007-12-01 00:21:31 +110024#include <net/net_namespace.h>
25#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <net/sch_generic.h>
27#include <net/act_api.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070028#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
David S. Millere9ce1cd2006-08-21 23:54:55 -070030void tcf_hash_destroy(struct tcf_common *p, struct tcf_hashinfo *hinfo)
31{
WANG Cong89819dc2013-12-15 20:15:09 -080032 spin_lock_bh(&hinfo->lock);
33 hlist_del(&p->tcfc_head);
34 spin_unlock_bh(&hinfo->lock);
35 gen_kill_estimator(&p->tcfc_bstats,
36 &p->tcfc_rate_est);
37 /*
38 * gen_estimator est_timer() might access p->tcfc_lock
39 * or bstats, wait a RCU grace period before freeing p
40 */
41 kfree_rcu(p, tcfc_rcu);
David S. Millere9ce1cd2006-08-21 23:54:55 -070042}
43EXPORT_SYMBOL(tcf_hash_destroy);
44
45int tcf_hash_release(struct tcf_common *p, int bind,
46 struct tcf_hashinfo *hinfo)
47{
48 int ret = 0;
49
50 if (p) {
51 if (bind)
52 p->tcfc_bindcnt--;
53
54 p->tcfc_refcnt--;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090055 if (p->tcfc_bindcnt <= 0 && p->tcfc_refcnt <= 0) {
David S. Millere9ce1cd2006-08-21 23:54:55 -070056 tcf_hash_destroy(p, hinfo);
57 ret = 1;
58 }
59 }
60 return ret;
61}
62EXPORT_SYMBOL(tcf_hash_release);
63
64static int tcf_dump_walker(struct sk_buff *skb, struct netlink_callback *cb,
65 struct tc_action *a, struct tcf_hashinfo *hinfo)
66{
WANG Cong89819dc2013-12-15 20:15:09 -080067 struct hlist_head *head;
David S. Millere9ce1cd2006-08-21 23:54:55 -070068 struct tcf_common *p;
Eric Dumazetcc7ec452011-01-19 19:26:56 +000069 int err = 0, index = -1, i = 0, s_i = 0, n_i = 0;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080070 struct nlattr *nest;
David S. Millere9ce1cd2006-08-21 23:54:55 -070071
WANG Cong89819dc2013-12-15 20:15:09 -080072 spin_lock_bh(&hinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -070073
74 s_i = cb->args[0];
75
76 for (i = 0; i < (hinfo->hmask + 1); i++) {
WANG Cong89819dc2013-12-15 20:15:09 -080077 head = &hinfo->htab[tcf_hash(i, hinfo->hmask)];
David S. Millere9ce1cd2006-08-21 23:54:55 -070078
WANG Cong89819dc2013-12-15 20:15:09 -080079 hlist_for_each_entry_rcu(p, head, tcfc_head) {
David S. Millere9ce1cd2006-08-21 23:54:55 -070080 index++;
81 if (index < s_i)
82 continue;
83 a->priv = p;
84 a->order = n_i;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080085
86 nest = nla_nest_start(skb, a->order);
87 if (nest == NULL)
88 goto nla_put_failure;
David S. Millere9ce1cd2006-08-21 23:54:55 -070089 err = tcf_action_dump_1(skb, a, 0, 0);
90 if (err < 0) {
91 index--;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080092 nlmsg_trim(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -070093 goto done;
94 }
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080095 nla_nest_end(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -070096 n_i++;
97 if (n_i >= TCA_ACT_MAX_PRIO)
98 goto done;
99 }
100 }
101done:
WANG Cong89819dc2013-12-15 20:15:09 -0800102 spin_unlock_bh(&hinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700103 if (n_i)
104 cb->args[0] += n_i;
105 return n_i;
106
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800107nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800108 nla_nest_cancel(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700109 goto done;
110}
111
112static int tcf_del_walker(struct sk_buff *skb, struct tc_action *a,
113 struct tcf_hashinfo *hinfo)
114{
WANG Cong89819dc2013-12-15 20:15:09 -0800115 struct hlist_head *head;
116 struct hlist_node *n;
117 struct tcf_common *p;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800118 struct nlattr *nest;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000119 int i = 0, n_i = 0;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700120
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800121 nest = nla_nest_start(skb, a->order);
122 if (nest == NULL)
123 goto nla_put_failure;
David S. Miller1b34ec42012-03-29 05:11:39 -0400124 if (nla_put_string(skb, TCA_KIND, a->ops->kind))
125 goto nla_put_failure;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700126 for (i = 0; i < (hinfo->hmask + 1); i++) {
WANG Cong89819dc2013-12-15 20:15:09 -0800127 head = &hinfo->htab[tcf_hash(i, hinfo->hmask)];
128 hlist_for_each_entry_safe(p, n, head, tcfc_head) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700129 if (ACT_P_DELETED == tcf_hash_release(p, 0, hinfo))
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000130 module_put(a->ops->owner);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700131 n_i++;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700132 }
133 }
David S. Miller1b34ec42012-03-29 05:11:39 -0400134 if (nla_put_u32(skb, TCA_FCNT, n_i))
135 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800136 nla_nest_end(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700137
138 return n_i;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800139nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800140 nla_nest_cancel(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700141 return -EINVAL;
142}
143
144int tcf_generic_walker(struct sk_buff *skb, struct netlink_callback *cb,
145 int type, struct tc_action *a)
146{
147 struct tcf_hashinfo *hinfo = a->ops->hinfo;
148
149 if (type == RTM_DELACTION) {
150 return tcf_del_walker(skb, a, hinfo);
151 } else if (type == RTM_GETACTION) {
152 return tcf_dump_walker(skb, cb, a, hinfo);
153 } else {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000154 WARN(1, "tcf_generic_walker: unknown action %d\n", type);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700155 return -EINVAL;
156 }
157}
158EXPORT_SYMBOL(tcf_generic_walker);
159
160struct tcf_common *tcf_hash_lookup(u32 index, struct tcf_hashinfo *hinfo)
161{
WANG Cong89819dc2013-12-15 20:15:09 -0800162 struct tcf_common *p = NULL;
163 struct hlist_head *head;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700164
WANG Cong89819dc2013-12-15 20:15:09 -0800165 spin_lock_bh(&hinfo->lock);
166 head = &hinfo->htab[tcf_hash(index, hinfo->hmask)];
167 hlist_for_each_entry_rcu(p, head, tcfc_head)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700168 if (p->tcfc_index == index)
169 break;
WANG Cong89819dc2013-12-15 20:15:09 -0800170 spin_unlock_bh(&hinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700171
172 return p;
173}
174EXPORT_SYMBOL(tcf_hash_lookup);
175
176u32 tcf_hash_new_index(u32 *idx_gen, struct tcf_hashinfo *hinfo)
177{
178 u32 val = *idx_gen;
179
180 do {
181 if (++val == 0)
182 val = 1;
183 } while (tcf_hash_lookup(val, hinfo));
184
Yang Yingliang17569fa2013-12-10 20:55:29 +0800185 *idx_gen = val;
186 return val;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700187}
188EXPORT_SYMBOL(tcf_hash_new_index);
189
190int tcf_hash_search(struct tc_action *a, u32 index)
191{
192 struct tcf_hashinfo *hinfo = a->ops->hinfo;
193 struct tcf_common *p = tcf_hash_lookup(index, hinfo);
194
195 if (p) {
196 a->priv = p;
197 return 1;
198 }
199 return 0;
200}
201EXPORT_SYMBOL(tcf_hash_search);
202
203struct tcf_common *tcf_hash_check(u32 index, struct tc_action *a, int bind,
204 struct tcf_hashinfo *hinfo)
205{
206 struct tcf_common *p = NULL;
207 if (index && (p = tcf_hash_lookup(index, hinfo)) != NULL) {
Jamal Hadi Salim76aab2c2008-08-07 20:37:22 -0700208 if (bind)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700209 p->tcfc_bindcnt++;
Jamal Hadi Salim76aab2c2008-08-07 20:37:22 -0700210 p->tcfc_refcnt++;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700211 a->priv = p;
212 }
213 return p;
214}
215EXPORT_SYMBOL(tcf_hash_check);
216
Stephen Hemminger0e991ec2008-11-25 21:12:32 -0800217struct tcf_common *tcf_hash_create(u32 index, struct nlattr *est,
218 struct tc_action *a, int size, int bind,
219 u32 *idx_gen, struct tcf_hashinfo *hinfo)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700220{
221 struct tcf_common *p = kzalloc(size, GFP_KERNEL);
222
223 if (unlikely(!p))
Stephen Hemminger0e991ec2008-11-25 21:12:32 -0800224 return ERR_PTR(-ENOMEM);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700225 p->tcfc_refcnt = 1;
226 if (bind)
227 p->tcfc_bindcnt = 1;
228
229 spin_lock_init(&p->tcfc_lock);
WANG Cong89819dc2013-12-15 20:15:09 -0800230 INIT_HLIST_NODE(&p->tcfc_head);
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
WANG Cong89819dc2013-12-15 20:15:09 -0800252 spin_lock_bh(&hinfo->lock);
253 hlist_add_head(&p->tcfc_head, &hinfo->htab[h]);
254 spin_unlock_bh(&hinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700255}
256EXPORT_SYMBOL(tcf_hash_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
WANG Cong1f747c22013-12-15 20:15:10 -0800258static LIST_HEAD(act_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static DEFINE_RWLOCK(act_mod_lock);
260
261int tcf_register_action(struct tc_action_ops *act)
262{
WANG Cong1f747c22013-12-15 20:15:10 -0800263 struct tc_action_ops *a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Jamal Hadi Salim76c82d72013-12-04 09:26:52 -0500265 /* Must supply act, dump, cleanup and init */
266 if (!act->act || !act->dump || !act->cleanup || !act->init)
267 return -EINVAL;
268
Jamal Hadi Salim382ca8a2013-12-04 09:26:55 -0500269 /* Supply defaults */
Jamal Hadi Salim63ef6172013-12-04 09:26:53 -0500270 if (!act->lookup)
271 act->lookup = tcf_hash_search;
Jamal Hadi Salim382ca8a2013-12-04 09:26:55 -0500272 if (!act->walk)
273 act->walk = tcf_generic_walker;
Jamal Hadi Salim63ef6172013-12-04 09:26:53 -0500274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 write_lock(&act_mod_lock);
WANG Cong1f747c22013-12-15 20:15:10 -0800276 list_for_each_entry(a, &act_base, head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (act->type == a->type || (strcmp(act->kind, a->kind) == 0)) {
278 write_unlock(&act_mod_lock);
279 return -EEXIST;
280 }
281 }
WANG Cong1f747c22013-12-15 20:15:10 -0800282 list_add_tail(&act->head, &act_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 write_unlock(&act_mod_lock);
284 return 0;
285}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800286EXPORT_SYMBOL(tcf_register_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288int tcf_unregister_action(struct tc_action_ops *act)
289{
WANG Cong1f747c22013-12-15 20:15:10 -0800290 struct tc_action_ops *a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 int err = -ENOENT;
292
293 write_lock(&act_mod_lock);
Eric Dumazeta7928662013-12-20 12:32:32 -0800294 list_for_each_entry(a, &act_base, head) {
295 if (a == act) {
296 list_del(&act->head);
297 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 break;
Eric Dumazeta7928662013-12-20 12:32:32 -0800299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301 write_unlock(&act_mod_lock);
302 return err;
303}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800304EXPORT_SYMBOL(tcf_unregister_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306/* lookup by name */
307static struct tc_action_ops *tc_lookup_action_n(char *kind)
308{
Eric Dumazeta7928662013-12-20 12:32:32 -0800309 struct tc_action_ops *a, *res = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 if (kind) {
312 read_lock(&act_mod_lock);
WANG Cong1f747c22013-12-15 20:15:10 -0800313 list_for_each_entry(a, &act_base, head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (strcmp(kind, a->kind) == 0) {
Eric Dumazeta7928662013-12-20 12:32:32 -0800315 if (try_module_get(a->owner))
316 res = a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 break;
318 }
319 }
320 read_unlock(&act_mod_lock);
321 }
Eric Dumazeta7928662013-12-20 12:32:32 -0800322 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800325/* lookup by nlattr */
326static struct tc_action_ops *tc_lookup_action(struct nlattr *kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Eric Dumazeta7928662013-12-20 12:32:32 -0800328 struct tc_action_ops *a, *res = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 if (kind) {
331 read_lock(&act_mod_lock);
WANG Cong1f747c22013-12-15 20:15:10 -0800332 list_for_each_entry(a, &act_base, head) {
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800333 if (nla_strcmp(kind, a->kind) == 0) {
Eric Dumazeta7928662013-12-20 12:32:32 -0800334 if (try_module_get(a->owner))
335 res = a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 break;
337 }
338 }
339 read_unlock(&act_mod_lock);
340 }
Eric Dumazeta7928662013-12-20 12:32:32 -0800341 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
WANG Cong33be6272013-12-15 20:15:05 -0800344int tcf_action_exec(struct sk_buff *skb, const struct list_head *actions,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900345 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Eric Dumazetdc7f9f62011-07-05 23:25:42 +0000347 const struct tc_action *a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 int ret = -1;
349
350 if (skb->tc_verd & TC_NCLS) {
351 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 ret = TC_ACT_OK;
353 goto exec_done;
354 }
WANG Cong33be6272013-12-15 20:15:05 -0800355 list_for_each_entry(a, actions, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356repeat:
Jamal Hadi Salim76c82d72013-12-04 09:26:52 -0500357 if (a->ops) {
Patrick McHardyf43c5a02006-01-08 22:15:34 -0800358 ret = a->ops->act(skb, a, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (TC_MUNGED & skb->tc_verd) {
360 /* copied already, allow trampling */
361 skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd);
362 skb->tc_verd = CLR_TC_MUNGED(skb->tc_verd);
363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (ret == TC_ACT_REPEAT)
365 goto repeat; /* we need a ttl - JHS */
J Hadi Salim14d50e72005-05-03 16:29:13 -0700366 if (ret != TC_ACT_PIPE)
367 goto exec_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
370exec_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return ret;
372}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800373EXPORT_SYMBOL(tcf_action_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
WANG Cong33be6272013-12-15 20:15:05 -0800375void tcf_action_destroy(struct list_head *actions, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
WANG Cong33be6272013-12-15 20:15:05 -0800377 struct tc_action *a, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
WANG Cong33be6272013-12-15 20:15:05 -0800379 list_for_each_entry_safe(a, tmp, actions, list) {
Jamal Hadi Salim76c82d72013-12-04 09:26:52 -0500380 if (a->ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (a->ops->cleanup(a, bind) == ACT_P_DELETED)
382 module_put(a->ops->owner);
WANG Cong33be6272013-12-15 20:15:05 -0800383 list_del(&a->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 kfree(a);
stephen hemminger6ff9c362010-05-12 06:37:05 +0000385 } else {
386 /*FIXME: Remove later - catch insertion bugs*/
387 WARN(1, "tcf_action_destroy: BUG? destroying NULL ops\n");
WANG Cong33be6272013-12-15 20:15:05 -0800388 list_del(&a->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 kfree(a);
390 }
391 }
392}
393
394int
395tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
396{
397 int err = -EINVAL;
398
Jamal Hadi Salim76c82d72013-12-04 09:26:52 -0500399 if (a->ops == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return err;
401 return a->ops->dump(skb, a, bind, ref);
402}
403
404int
405tcf_action_dump_1(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
406{
407 int err = -EINVAL;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700408 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800409 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Jamal Hadi Salim76c82d72013-12-04 09:26:52 -0500411 if (a->ops == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return err;
413
David S. Miller1b34ec42012-03-29 05:11:39 -0400414 if (nla_put_string(skb, TCA_KIND, a->ops->kind))
415 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (tcf_action_copy_stats(skb, a, 0))
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800417 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800418 nest = nla_nest_start(skb, TCA_OPTIONS);
419 if (nest == NULL)
420 goto nla_put_failure;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000421 err = tcf_action_dump_old(skb, a, bind, ref);
422 if (err > 0) {
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800423 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return err;
425 }
426
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800427nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700428 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return -1;
430}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800431EXPORT_SYMBOL(tcf_action_dump_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433int
WANG Cong33be6272013-12-15 20:15:05 -0800434tcf_action_dump(struct sk_buff *skb, struct list_head *actions, int bind, int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 struct tc_action *a;
437 int err = -EINVAL;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800438 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
WANG Cong33be6272013-12-15 20:15:05 -0800440 list_for_each_entry(a, actions, list) {
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800441 nest = nla_nest_start(skb, a->order);
442 if (nest == NULL)
443 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 err = tcf_action_dump_1(skb, a, bind, ref);
445 if (err < 0)
Thomas Graf4fe683f2006-07-05 20:47:28 -0700446 goto errout;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800447 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449
450 return 0;
451
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800452nla_put_failure:
Thomas Graf4fe683f2006-07-05 20:47:28 -0700453 err = -EINVAL;
454errout:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800455 nla_nest_cancel(skb, nest);
Thomas Graf4fe683f2006-07-05 20:47:28 -0700456 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000459struct tc_action *tcf_action_init_1(struct net *net, struct nlattr *nla,
460 struct nlattr *est, char *name, int ovr,
461 int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
463 struct tc_action *a;
464 struct tc_action_ops *a_o;
465 char act_name[IFNAMSIZ];
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000466 struct nlattr *tb[TCA_ACT_MAX + 1];
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800467 struct nlattr *kind;
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800468 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (name == NULL) {
Patrick McHardycee63722008-01-23 20:33:32 -0800471 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
472 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 goto err_out;
Patrick McHardycee63722008-01-23 20:33:32 -0800474 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800475 kind = tb[TCA_ACT_KIND];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (kind == NULL)
477 goto err_out;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800478 if (nla_strlcpy(act_name, kind, IFNAMSIZ) >= IFNAMSIZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 goto err_out;
480 } else {
Patrick McHardycee63722008-01-23 20:33:32 -0800481 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (strlcpy(act_name, name, IFNAMSIZ) >= IFNAMSIZ)
483 goto err_out;
484 }
485
486 a_o = tc_lookup_action_n(act_name);
487 if (a_o == NULL) {
Johannes Berg95a5afc2008-10-16 15:24:51 -0700488#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 rtnl_unlock();
Patrick McHardy4bba3922006-01-08 22:22:14 -0800490 request_module("act_%s", act_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 rtnl_lock();
492
493 a_o = tc_lookup_action_n(act_name);
494
495 /* We dropped the RTNL semaphore in order to
496 * perform the module load. So, even if we
497 * succeeded in loading the module we have to
498 * tell the caller to replay the request. We
499 * indicate this using -EAGAIN.
500 */
501 if (a_o != NULL) {
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800502 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 goto err_mod;
504 }
505#endif
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800506 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 goto err_out;
508 }
509
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800510 err = -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700511 a = kzalloc(sizeof(*a), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (a == NULL)
513 goto err_mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
WANG Cong33be6272013-12-15 20:15:05 -0800515 INIT_LIST_HEAD(&a->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 /* backward compatibility for policer */
517 if (name == NULL)
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000518 err = a_o->init(net, tb[TCA_ACT_OPTIONS], est, a, ovr, bind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 else
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000520 err = a_o->init(net, nla, est, a, ovr, bind);
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800521 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 goto err_free;
523
524 /* module count goes up only when brand new policy is created
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000525 * if it exists and is only bound to in a_o->init() then
526 * ACT_P_CREATED is not returned (a zero is).
527 */
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800528 if (err != ACT_P_CREATED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 module_put(a_o->owner);
530 a->ops = a_o;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return a;
533
534err_free:
535 kfree(a);
536err_mod:
537 module_put(a_o->owner);
538err_out:
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800539 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
WANG Cong33be6272013-12-15 20:15:05 -0800542int tcf_action_init(struct net *net, struct nlattr *nla,
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000543 struct nlattr *est, char *name, int ovr,
WANG Cong33be6272013-12-15 20:15:05 -0800544 int bind, struct list_head *actions)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000546 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
WANG Cong33be6272013-12-15 20:15:05 -0800547 struct tc_action *act;
Patrick McHardycee63722008-01-23 20:33:32 -0800548 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 int i;
550
Patrick McHardycee63722008-01-23 20:33:32 -0800551 err = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
552 if (err < 0)
WANG Cong33be6272013-12-15 20:15:05 -0800553 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800555 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000556 act = tcf_action_init_1(net, tb[i], est, name, ovr, bind);
WANG Cong33be6272013-12-15 20:15:05 -0800557 if (IS_ERR(act)) {
558 err = PTR_ERR(act);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 goto err;
WANG Cong33be6272013-12-15 20:15:05 -0800560 }
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800561 act->order = i;
WANG Cong33be6272013-12-15 20:15:05 -0800562 list_add_tail(&act->list, actions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
WANG Cong33be6272013-12-15 20:15:05 -0800564 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566err:
WANG Cong33be6272013-12-15 20:15:05 -0800567 tcf_action_destroy(actions, bind);
568 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
571int tcf_action_copy_stats(struct sk_buff *skb, struct tc_action *a,
572 int compat_mode)
573{
574 int err = 0;
575 struct gnet_dump d;
576 struct tcf_act_hdr *h = a->priv;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (h == NULL)
579 goto errout;
580
581 /* compat_mode being true specifies a call that is supposed
Dirk Hohndel06fe9fb2009-09-28 21:43:57 -0400582 * to add additional backward compatibility statistic TLVs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 */
584 if (compat_mode) {
585 if (a->type == TCA_OLD_COMPAT)
586 err = gnet_stats_start_copy_compat(skb, 0,
Patrick McHardy4bdf3992007-07-02 22:47:37 -0700587 TCA_STATS, TCA_XSTATS, &h->tcf_lock, &d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 else
589 return 0;
590 } else
591 err = gnet_stats_start_copy(skb, TCA_ACT_STATS,
Patrick McHardy4bdf3992007-07-02 22:47:37 -0700592 &h->tcf_lock, &d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 if (err < 0)
595 goto errout;
596
David S. Millere9ce1cd2006-08-21 23:54:55 -0700597 if (gnet_stats_copy_basic(&d, &h->tcf_bstats) < 0 ||
Eric Dumazetd250a5f2009-10-02 10:32:18 +0000598 gnet_stats_copy_rate_est(&d, &h->tcf_bstats,
599 &h->tcf_rate_est) < 0 ||
David S. Millere9ce1cd2006-08-21 23:54:55 -0700600 gnet_stats_copy_queue(&d, &h->tcf_qstats) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 goto errout;
602
603 if (gnet_stats_finish_copy(&d) < 0)
604 goto errout;
605
606 return 0;
607
608errout:
609 return -1;
610}
611
612static int
WANG Cong33be6272013-12-15 20:15:05 -0800613tca_get_fill(struct sk_buff *skb, struct list_head *actions, u32 portid, u32 seq,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900614 u16 flags, int event, int bind, int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
616 struct tcamsg *t;
617 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700618 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800619 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Eric W. Biederman15e47302012-09-07 20:12:54 +0000621 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*t), flags);
David S. Miller8b00a532012-06-26 21:39:32 -0700622 if (!nlh)
623 goto out_nlmsg_trim;
624 t = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700626 t->tca__pad1 = 0;
627 t->tca__pad2 = 0;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900628
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800629 nest = nla_nest_start(skb, TCA_ACT_TAB);
630 if (nest == NULL)
David S. Miller8b00a532012-06-26 21:39:32 -0700631 goto out_nlmsg_trim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
WANG Cong33be6272013-12-15 20:15:05 -0800633 if (tcf_action_dump(skb, actions, bind, ref) < 0)
David S. Miller8b00a532012-06-26 21:39:32 -0700634 goto out_nlmsg_trim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800636 nla_nest_end(skb, nest);
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900637
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700638 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return skb->len;
640
David S. Miller8b00a532012-06-26 21:39:32 -0700641out_nlmsg_trim:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700642 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return -1;
644}
645
646static int
Eric W. Biederman15e47302012-09-07 20:12:54 +0000647act_get_notify(struct net *net, u32 portid, struct nlmsghdr *n,
WANG Cong33be6272013-12-15 20:15:05 -0800648 struct list_head *actions, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
650 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
653 if (!skb)
654 return -ENOBUFS;
WANG Cong33be6272013-12-15 20:15:05 -0800655 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, event, 0, 0) <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 kfree_skb(skb);
657 return -EINVAL;
658 }
Thomas Graf2942e902006-08-15 00:30:25 -0700659
Eric W. Biederman15e47302012-09-07 20:12:54 +0000660 return rtnl_unicast(skb, net, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
663static struct tc_action *
Eric W. Biederman15e47302012-09-07 20:12:54 +0000664tcf_action_get_1(struct nlattr *nla, struct nlmsghdr *n, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000666 struct nlattr *tb[TCA_ACT_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 struct tc_action *a;
668 int index;
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800669 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Patrick McHardycee63722008-01-23 20:33:32 -0800671 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
672 if (err < 0)
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800673 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Patrick McHardycee63722008-01-23 20:33:32 -0800675 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800676 if (tb[TCA_ACT_INDEX] == NULL ||
677 nla_len(tb[TCA_ACT_INDEX]) < sizeof(index))
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800678 goto err_out;
Patrick McHardy1587bac2008-01-23 20:35:03 -0800679 index = nla_get_u32(tb[TCA_ACT_INDEX]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800681 err = -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700682 a = kzalloc(sizeof(struct tc_action), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (a == NULL)
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800684 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
WANG Cong33be6272013-12-15 20:15:05 -0800686 INIT_LIST_HEAD(&a->list);
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800687 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800688 a->ops = tc_lookup_action(tb[TCA_ACT_KIND]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (a->ops == NULL)
690 goto err_free;
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800691 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (a->ops->lookup(a, index) == 0)
693 goto err_mod;
694
695 module_put(a->ops->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return a;
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698err_mod:
699 module_put(a->ops->owner);
700err_free:
701 kfree(a);
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800702err_out:
703 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
WANG Cong33be6272013-12-15 20:15:05 -0800706static void cleanup_a(struct list_head *actions)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
WANG Cong33be6272013-12-15 20:15:05 -0800708 struct tc_action *a, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
WANG Cong33be6272013-12-15 20:15:05 -0800710 list_for_each_entry_safe(a, tmp, actions, list) {
711 list_del(&a->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 kfree(a);
713 }
714}
715
716static struct tc_action *create_a(int i)
717{
718 struct tc_action *act;
719
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700720 act = kzalloc(sizeof(*act), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (act == NULL) {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000722 pr_debug("create_a: failed to alloc!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return NULL;
724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 act->order = i;
WANG Cong33be6272013-12-15 20:15:05 -0800726 INIT_LIST_HEAD(&act->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return act;
728}
729
Tom Goff7316ae82010-03-19 15:40:13 +0000730static int tca_action_flush(struct net *net, struct nlattr *nla,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000731 struct nlmsghdr *n, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
733 struct sk_buff *skb;
734 unsigned char *b;
735 struct nlmsghdr *nlh;
736 struct tcamsg *t;
737 struct netlink_callback dcb;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800738 struct nlattr *nest;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000739 struct nlattr *tb[TCA_ACT_MAX + 1];
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800740 struct nlattr *kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 struct tc_action *a = create_a(0);
Jamal Hadi Salim36723872008-08-13 02:41:45 -0700742 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 if (a == NULL) {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000745 pr_debug("tca_action_flush: couldnt create tc_action\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return err;
747 }
748
749 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
750 if (!skb) {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000751 pr_debug("tca_action_flush: failed skb alloc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 kfree(a);
Jamal Hadi Salim36723872008-08-13 02:41:45 -0700753 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700756 b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Patrick McHardycee63722008-01-23 20:33:32 -0800758 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
759 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 goto err_out;
761
Patrick McHardycee63722008-01-23 20:33:32 -0800762 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800763 kind = tb[TCA_ACT_KIND];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 a->ops = tc_lookup_action(kind);
765 if (a->ops == NULL)
766 goto err_out;
767
Eric W. Biederman15e47302012-09-07 20:12:54 +0000768 nlh = nlmsg_put(skb, portid, n->nlmsg_seq, RTM_DELACTION, sizeof(*t), 0);
David S. Miller8b00a532012-06-26 21:39:32 -0700769 if (!nlh)
770 goto out_module_put;
771 t = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700773 t->tca__pad1 = 0;
774 t->tca__pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800776 nest = nla_nest_start(skb, TCA_ACT_TAB);
777 if (nest == NULL)
David S. Miller8b00a532012-06-26 21:39:32 -0700778 goto out_module_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 err = a->ops->walk(skb, &dcb, RTM_DELACTION, a);
781 if (err < 0)
David S. Miller8b00a532012-06-26 21:39:32 -0700782 goto out_module_put;
Jamal Hadi Salimf97017c2008-08-13 02:41:22 -0700783 if (err == 0)
784 goto noflush_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800786 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700788 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 nlh->nlmsg_flags |= NLM_F_ROOT;
790 module_put(a->ops->owner);
791 kfree(a);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000792 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000793 n->nlmsg_flags & NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (err > 0)
795 return 0;
796
797 return err;
798
David S. Miller8b00a532012-06-26 21:39:32 -0700799out_module_put:
Thomas Grafebbaeab2006-07-09 11:36:23 -0700800 module_put(a->ops->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801err_out:
Jamal Hadi Salimf97017c2008-08-13 02:41:22 -0700802noflush_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 kfree_skb(skb);
804 kfree(a);
805 return err;
806}
807
808static int
Tom Goff7316ae82010-03-19 15:40:13 +0000809tca_action_gd(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000810 u32 portid, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Patrick McHardycee63722008-01-23 20:33:32 -0800812 int i, ret;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000813 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
WANG Cong33be6272013-12-15 20:15:05 -0800814 struct tc_action *act;
815 LIST_HEAD(actions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Patrick McHardycee63722008-01-23 20:33:32 -0800817 ret = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
818 if (ret < 0)
819 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000821 if (event == RTM_DELACTION && n->nlmsg_flags & NLM_F_ROOT) {
Jamal Hadi Salimf97017c2008-08-13 02:41:22 -0700822 if (tb[1] != NULL)
Eric W. Biederman15e47302012-09-07 20:12:54 +0000823 return tca_action_flush(net, tb[1], n, portid);
Jamal Hadi Salimf97017c2008-08-13 02:41:22 -0700824 else
825 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800828 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
Eric W. Biederman15e47302012-09-07 20:12:54 +0000829 act = tcf_action_get_1(tb[i], n, portid);
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800830 if (IS_ERR(act)) {
831 ret = PTR_ERR(act);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 goto err;
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800833 }
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800834 act->order = i;
WANG Cong33be6272013-12-15 20:15:05 -0800835 list_add_tail(&act->list, &actions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
838 if (event == RTM_GETACTION)
WANG Cong33be6272013-12-15 20:15:05 -0800839 ret = act_get_notify(net, portid, n, &actions, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 else { /* delete */
841 struct sk_buff *skb;
842
843 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
844 if (!skb) {
845 ret = -ENOBUFS;
846 goto err;
847 }
848
WANG Cong33be6272013-12-15 20:15:05 -0800849 if (tca_get_fill(skb, &actions, portid, n->nlmsg_seq, 0, event,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900850 0, 1) <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 kfree_skb(skb);
852 ret = -EINVAL;
853 goto err;
854 }
855
856 /* now do the delete */
WANG Cong33be6272013-12-15 20:15:05 -0800857 tcf_action_destroy(&actions, 0);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000858 ret = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000859 n->nlmsg_flags & NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (ret > 0)
861 return 0;
862 return ret;
863 }
864err:
WANG Cong33be6272013-12-15 20:15:05 -0800865 cleanup_a(&actions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return ret;
867}
868
WANG Cong33be6272013-12-15 20:15:05 -0800869static int tcf_add_notify(struct net *net, struct list_head *actions,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000870 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
872 struct tcamsg *t;
873 struct nlmsghdr *nlh;
874 struct sk_buff *skb;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800875 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 unsigned char *b;
877 int err = 0;
878
879 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
880 if (!skb)
881 return -ENOBUFS;
882
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700883 b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Eric W. Biederman15e47302012-09-07 20:12:54 +0000885 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*t), flags);
David S. Miller8b00a532012-06-26 21:39:32 -0700886 if (!nlh)
887 goto out_kfree_skb;
888 t = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700890 t->tca__pad1 = 0;
891 t->tca__pad2 = 0;
892
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800893 nest = nla_nest_start(skb, TCA_ACT_TAB);
894 if (nest == NULL)
David S. Miller8b00a532012-06-26 21:39:32 -0700895 goto out_kfree_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
WANG Cong33be6272013-12-15 20:15:05 -0800897 if (tcf_action_dump(skb, actions, 0, 0) < 0)
David S. Miller8b00a532012-06-26 21:39:32 -0700898 goto out_kfree_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800900 nla_nest_end(skb, nest);
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900901
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700902 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Patrick McHardyac6d4392005-08-14 19:29:52 -0700903 NETLINK_CB(skb).dst_group = RTNLGRP_TC;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900904
Eric W. Biederman15e47302012-09-07 20:12:54 +0000905 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC, flags & NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (err > 0)
907 err = 0;
908 return err;
909
David S. Miller8b00a532012-06-26 21:39:32 -0700910out_kfree_skb:
Patrick McHardyf6e57462006-03-12 20:33:22 -0800911 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return -1;
913}
914
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916static int
Tom Goff7316ae82010-03-19 15:40:13 +0000917tcf_action_add(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000918 u32 portid, int ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
920 int ret = 0;
WANG Cong33be6272013-12-15 20:15:05 -0800921 LIST_HEAD(actions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 u32 seq = n->nlmsg_seq;
923
WANG Cong33be6272013-12-15 20:15:05 -0800924 ret = tcf_action_init(net, nla, NULL, NULL, ovr, 0, &actions);
925 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 goto done;
927
928 /* dump then free all the actions after update; inserted policy
929 * stays intact
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000930 */
WANG Cong33be6272013-12-15 20:15:05 -0800931 ret = tcf_add_notify(net, &actions, portid, seq, RTM_NEWACTION, n->nlmsg_flags);
932 cleanup_a(&actions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933done:
934 return ret;
935}
936
Thomas Graf661d2962013-03-21 07:45:29 +0000937static int tc_ctl_action(struct sk_buff *skb, struct nlmsghdr *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900939 struct net *net = sock_net(skb->sk);
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800940 struct nlattr *tca[TCA_ACT_MAX + 1];
Eric W. Biederman15e47302012-09-07 20:12:54 +0000941 u32 portid = skb ? NETLINK_CB(skb).portid : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 int ret = 0, ovr = 0;
943
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +0000944 if ((n->nlmsg_type != RTM_GETACTION) && !capable(CAP_NET_ADMIN))
945 return -EPERM;
946
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800947 ret = nlmsg_parse(n, sizeof(struct tcamsg), tca, TCA_ACT_MAX, NULL);
948 if (ret < 0)
949 return ret;
950
951 if (tca[TCA_ACT_TAB] == NULL) {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000952 pr_notice("tc_ctl_action: received NO action attribs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return -EINVAL;
954 }
955
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000956 /* n->nlmsg_flags & NLM_F_CREATE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 switch (n->nlmsg_type) {
958 case RTM_NEWACTION:
959 /* we are going to assume all other flags
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300960 * imply create only if it doesn't exist
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 * Note that CREATE | EXCL implies that
962 * but since we want avoid ambiguity (eg when flags
963 * is zero) then just set this
964 */
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000965 if (n->nlmsg_flags & NLM_F_REPLACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 ovr = 1;
967replay:
Eric W. Biederman15e47302012-09-07 20:12:54 +0000968 ret = tcf_action_add(net, tca[TCA_ACT_TAB], n, portid, ovr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (ret == -EAGAIN)
970 goto replay;
971 break;
972 case RTM_DELACTION:
Tom Goff7316ae82010-03-19 15:40:13 +0000973 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000974 portid, RTM_DELACTION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 break;
976 case RTM_GETACTION:
Tom Goff7316ae82010-03-19 15:40:13 +0000977 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000978 portid, RTM_GETACTION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 break;
980 default:
981 BUG();
982 }
983
984 return ret;
985}
986
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800987static struct nlattr *
Patrick McHardy3a6c2b42009-08-25 16:07:40 +0200988find_dump_kind(const struct nlmsghdr *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000990 struct nlattr *tb1, *tb2[TCA_ACT_MAX + 1];
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800991 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
992 struct nlattr *nla[TCAA_MAX + 1];
993 struct nlattr *kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Patrick McHardyc96c9472008-01-23 20:32:58 -0800995 if (nlmsg_parse(n, sizeof(struct tcamsg), nla, TCAA_MAX, NULL) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return NULL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800997 tb1 = nla[TCA_ACT_TAB];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (tb1 == NULL)
999 return NULL;
1000
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001001 if (nla_parse(tb, TCA_ACT_MAX_PRIO, nla_data(tb1),
1002 NLMSG_ALIGN(nla_len(tb1)), NULL) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Patrick McHardy6d834e02008-01-23 20:32:42 -08001005 if (tb[1] == NULL)
1006 return NULL;
1007 if (nla_parse(tb2, TCA_ACT_MAX, nla_data(tb[1]),
1008 nla_len(tb[1]), NULL) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 return NULL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001010 kind = tb2[TCA_ACT_KIND];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Thomas Graf26dab892006-07-05 20:45:06 -07001012 return kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
1015static int
1016tc_dump_action(struct sk_buff *skb, struct netlink_callback *cb)
1017{
1018 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001019 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001020 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 struct tc_action_ops *a_o;
1022 struct tc_action a;
1023 int ret = 0;
David S. Miller8b00a532012-06-26 21:39:32 -07001024 struct tcamsg *t = (struct tcamsg *) nlmsg_data(cb->nlh);
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001025 struct nlattr *kind = find_dump_kind(cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 if (kind == NULL) {
stephen hemminger6ff9c362010-05-12 06:37:05 +00001028 pr_info("tc_dump_action: action bad kind\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return 0;
1030 }
1031
Thomas Graf26dab892006-07-05 20:45:06 -07001032 a_o = tc_lookup_action(kind);
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001033 if (a_o == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 memset(&a, 0, sizeof(struct tc_action));
1037 a.ops = a_o;
1038
Eric W. Biederman15e47302012-09-07 20:12:54 +00001039 nlh = nlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
David S. Miller8b00a532012-06-26 21:39:32 -07001040 cb->nlh->nlmsg_type, sizeof(*t), 0);
1041 if (!nlh)
1042 goto out_module_put;
1043 t = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001045 t->tca__pad1 = 0;
1046 t->tca__pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001048 nest = nla_nest_start(skb, TCA_ACT_TAB);
1049 if (nest == NULL)
David S. Miller8b00a532012-06-26 21:39:32 -07001050 goto out_module_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 ret = a_o->walk(skb, cb, RTM_GETACTION, &a);
1053 if (ret < 0)
David S. Miller8b00a532012-06-26 21:39:32 -07001054 goto out_module_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 if (ret > 0) {
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001057 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 ret = skb->len;
1059 } else
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001060 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001062 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001063 if (NETLINK_CB(cb->skb).portid && ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 nlh->nlmsg_flags |= NLM_F_MULTI;
1065 module_put(a_o->owner);
1066 return skb->len;
1067
David S. Miller8b00a532012-06-26 21:39:32 -07001068out_module_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 module_put(a_o->owner);
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001070 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 return skb->len;
1072}
1073
1074static int __init tc_action_init(void)
1075{
Greg Rosec7ac8672011-06-10 01:27:09 +00001076 rtnl_register(PF_UNSPEC, RTM_NEWACTION, tc_ctl_action, NULL, NULL);
1077 rtnl_register(PF_UNSPEC, RTM_DELACTION, tc_ctl_action, NULL, NULL);
1078 rtnl_register(PF_UNSPEC, RTM_GETACTION, tc_ctl_action, tc_dump_action,
1079 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return 0;
1082}
1083
1084subsys_initcall(tc_action_init);