net: ipa: Add missing of_node_put() in ipa_firmware_load()
[linux-2.6-block.git] / net / sched / act_api.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * net/sched/act_api.c Packet action API.
4 *
1da177e4 5 * Author: Jamal Hadi Salim
1da177e4
LT
6 */
7
1da177e4
LT
8#include <linux/types.h>
9#include <linux/kernel.h>
1da177e4 10#include <linux/string.h>
1da177e4 11#include <linux/errno.h>
5a0e3ad6 12#include <linux/slab.h>
1da177e4 13#include <linux/skbuff.h>
1da177e4
LT
14#include <linux/init.h>
15#include <linux/kmod.h>
ab27cfb8 16#include <linux/err.h>
3a9a231d 17#include <linux/module.h>
b854272b
DL
18#include <net/net_namespace.h>
19#include <net/sock.h>
1da177e4 20#include <net/sch_generic.h>
1045ba77 21#include <net/pkt_cls.h>
1da177e4 22#include <net/act_api.h>
dc5fc579 23#include <net/netlink.h>
1da177e4 24
c129412f 25#ifdef CONFIG_INET
26DEFINE_STATIC_KEY_FALSE(tcf_frag_xmit_count);
27EXPORT_SYMBOL_GPL(tcf_frag_xmit_count);
28#endif
29
30int tcf_dev_queue_xmit(struct sk_buff *skb, int (*xmit)(struct sk_buff *skb))
31{
32#ifdef CONFIG_INET
33 if (static_branch_unlikely(&tcf_frag_xmit_count))
34 return sch_frag_xmit_hook(skb, xmit);
35#endif
36
37 return xmit(skb);
38}
39EXPORT_SYMBOL_GPL(tcf_dev_queue_xmit);
40
db50514f
JP
41static void tcf_action_goto_chain_exec(const struct tc_action *a,
42 struct tcf_result *res)
43{
ee3bbfe8 44 const struct tcf_chain *chain = rcu_dereference_bh(a->goto_chain);
db50514f
JP
45
46 res->goto_tp = rcu_dereference_bh(chain->filter_chain);
47}
48
eec94fdb
VB
49static void tcf_free_cookie_rcu(struct rcu_head *p)
50{
51 struct tc_cookie *cookie = container_of(p, struct tc_cookie, rcu);
52
53 kfree(cookie->data);
54 kfree(cookie);
55}
56
57static void tcf_set_action_cookie(struct tc_cookie __rcu **old_cookie,
58 struct tc_cookie *new_cookie)
59{
60 struct tc_cookie *old;
61
0dbc81ea 62 old = xchg((__force struct tc_cookie **)old_cookie, new_cookie);
eec94fdb
VB
63 if (old)
64 call_rcu(&old->rcu, tcf_free_cookie_rcu);
65}
66
85d0966f
DC
67int tcf_action_check_ctrlact(int action, struct tcf_proto *tp,
68 struct tcf_chain **newchain,
69 struct netlink_ext_ack *extack)
70{
71 int opcode = TC_ACT_EXT_OPCODE(action), ret = -EINVAL;
72 u32 chain_index;
73
74 if (!opcode)
75 ret = action > TC_ACT_VALUE_MAX ? -EINVAL : 0;
76 else if (opcode <= TC_ACT_EXT_OPCODE_MAX || action == TC_ACT_UNSPEC)
77 ret = 0;
78 if (ret) {
79 NL_SET_ERR_MSG(extack, "invalid control action");
80 goto end;
81 }
82
83 if (TC_ACT_EXT_CMP(action, TC_ACT_GOTO_CHAIN)) {
84 chain_index = action & TC_ACT_EXT_VAL_MASK;
85 if (!tp || !newchain) {
86 ret = -EINVAL;
87 NL_SET_ERR_MSG(extack,
88 "can't goto NULL proto/chain");
89 goto end;
90 }
91 *newchain = tcf_chain_get_by_act(tp->chain->block, chain_index);
92 if (!*newchain) {
93 ret = -ENOMEM;
94 NL_SET_ERR_MSG(extack,
95 "can't allocate goto_chain");
96 }
97 }
98end:
99 return ret;
100}
101EXPORT_SYMBOL(tcf_action_check_ctrlact);
102
103struct tcf_chain *tcf_action_set_ctrlact(struct tc_action *a, int action,
ee3bbfe8 104 struct tcf_chain *goto_chain)
85d0966f 105{
85d0966f 106 a->tcfa_action = action;
445d3749 107 goto_chain = rcu_replace_pointer(a->goto_chain, goto_chain, 1);
ee3bbfe8 108 return goto_chain;
85d0966f
DC
109}
110EXPORT_SYMBOL(tcf_action_set_ctrlact);
111
d7fb60b9
CW
112/* XXX: For standalone actions, we don't need a RCU grace period either, because
113 * actions are always connected to filters and filters are already destroyed in
114 * RCU callbacks, so after a RCU grace period actions are already disconnected
115 * from filters. Readers later can not find us.
116 */
117static void free_tcf(struct tc_action *p)
519c818e 118{
ee3bbfe8 119 struct tcf_chain *chain = rcu_dereference_protected(p->goto_chain, 1);
85d0966f 120
519c818e 121 free_percpu(p->cpu_bstats);
28169aba 122 free_percpu(p->cpu_bstats_hw);
519c818e 123 free_percpu(p->cpu_qstats);
1045ba77 124
eec94fdb 125 tcf_set_action_cookie(&p->act_cookie, NULL);
85d0966f
DC
126 if (chain)
127 tcf_chain_put_by_act(chain);
1045ba77 128
519c818e
ED
129 kfree(p);
130}
131
16af6067 132static void tcf_action_cleanup(struct tc_action *p)
e9ce1cd3 133{
16af6067
VB
134 if (p->ops->cleanup)
135 p->ops->cleanup(p);
136
1c0d32fd 137 gen_kill_estimator(&p->tcfa_rate_est);
d7fb60b9 138 free_tcf(p);
e9ce1cd3 139}
e9ce1cd3 140
16af6067
VB
141static int __tcf_action_put(struct tc_action *p, bool bind)
142{
143 struct tcf_idrinfo *idrinfo = p->idrinfo;
144
95278dda 145 if (refcount_dec_and_mutex_lock(&p->tcfa_refcnt, &idrinfo->lock)) {
16af6067
VB
146 if (bind)
147 atomic_dec(&p->tcfa_bindcnt);
148 idr_remove(&idrinfo->action_idr, p->tcfa_index);
95278dda 149 mutex_unlock(&idrinfo->lock);
16af6067
VB
150
151 tcf_action_cleanup(p);
152 return 1;
153 }
154
155 if (bind)
156 atomic_dec(&p->tcfa_bindcnt);
157
158 return 0;
159}
160
b3650bf7 161static int __tcf_idr_release(struct tc_action *p, bool bind, bool strict)
e9ce1cd3
DM
162{
163 int ret = 0;
164
036bb443
VB
165 /* Release with strict==1 and bind==0 is only called through act API
166 * interface (classifiers always bind). Only case when action with
167 * positive reference count and zero bind count can exist is when it was
168 * also created with act API (unbinding last classifier will destroy the
169 * action if it was created by classifier). So only case when bind count
170 * can be changed after initial check is when unbound action is
171 * destroyed by act API while classifier binds to action with same id
172 * concurrently. This result either creation of new action(same behavior
173 * as before), or reusing existing action if concurrent process
174 * increments reference count before action is deleted. Both scenarios
175 * are acceptable.
176 */
e9ce1cd3 177 if (p) {
16af6067 178 if (!bind && strict && atomic_read(&p->tcfa_bindcnt) > 0)
55334a5d 179 return -EPERM;
e9ce1cd3 180
16af6067 181 if (__tcf_action_put(p, bind))
1d4150c0 182 ret = ACT_P_DELETED;
e9ce1cd3 183 }
28e6b67f 184
e9ce1cd3
DM
185 return ret;
186}
b3650bf7
VB
187
188int tcf_idr_release(struct tc_action *a, bool bind)
189{
190 const struct tc_action_ops *ops = a->ops;
191 int ret;
192
193 ret = __tcf_idr_release(a, bind, false);
194 if (ret == ACT_P_DELETED)
195 module_put(ops->owner);
196 return ret;
197}
198EXPORT_SYMBOL(tcf_idr_release);
e9ce1cd3 199
4e76e75d
RM
200static size_t tcf_action_shared_attrs_size(const struct tc_action *act)
201{
e0479b67 202 struct tc_cookie *act_cookie;
4e76e75d
RM
203 u32 cookie_len = 0;
204
e0479b67
VB
205 rcu_read_lock();
206 act_cookie = rcu_dereference(act->act_cookie);
207
208 if (act_cookie)
209 cookie_len = nla_total_size(act_cookie->len);
210 rcu_read_unlock();
4e76e75d
RM
211
212 return nla_total_size(0) /* action number nested */
213 + nla_total_size(IFNAMSIZ) /* TCA_ACT_KIND */
214 + cookie_len /* TCA_ACT_COOKIE */
0dfb2d82 215 + nla_total_size(sizeof(struct nla_bitfield32)) /* TCA_ACT_HW_STATS */
4e76e75d 216 + nla_total_size(0) /* TCA_ACT_STATS nested */
1521a67e 217 + nla_total_size(sizeof(struct nla_bitfield32)) /* TCA_ACT_FLAGS */
4e76e75d
RM
218 /* TCA_STATS_BASIC */
219 + nla_total_size_64bit(sizeof(struct gnet_stats_basic))
b33e699f
ED
220 /* TCA_STATS_PKT64 */
221 + nla_total_size_64bit(sizeof(u64))
4e76e75d
RM
222 /* TCA_STATS_QUEUE */
223 + nla_total_size_64bit(sizeof(struct gnet_stats_queue))
224 + nla_total_size(0) /* TCA_OPTIONS nested */
225 + nla_total_size(sizeof(struct tcf_t)); /* TCA_GACT_TM */
226}
227
228static size_t tcf_action_full_attrs_size(size_t sz)
229{
230 return NLMSG_HDRLEN /* struct nlmsghdr */
231 + sizeof(struct tcamsg)
232 + nla_total_size(0) /* TCA_ACT_TAB nested */
233 + sz;
234}
235
236static size_t tcf_action_fill_size(const struct tc_action *act)
237{
238 size_t sz = tcf_action_shared_attrs_size(act);
239
240 if (act->ops->get_fill_size)
241 return act->ops->get_fill_size(act) + sz;
242 return sz;
243}
244
94f44f28
VB
245static int
246tcf_action_dump_terse(struct sk_buff *skb, struct tc_action *a, bool from_act)
247{
248 unsigned char *b = skb_tail_pointer(skb);
249 struct tc_cookie *cookie;
250
251 if (nla_put_string(skb, TCA_KIND, a->ops->kind))
252 goto nla_put_failure;
253 if (tcf_action_copy_stats(skb, a, 0))
254 goto nla_put_failure;
255 if (from_act && nla_put_u32(skb, TCA_ACT_INDEX, a->tcfa_index))
256 goto nla_put_failure;
257
258 rcu_read_lock();
259 cookie = rcu_dereference(a->act_cookie);
260 if (cookie) {
261 if (nla_put(skb, TCA_ACT_COOKIE, cookie->len, cookie->data)) {
262 rcu_read_unlock();
263 goto nla_put_failure;
264 }
265 }
266 rcu_read_unlock();
267
268 return 0;
269
270nla_put_failure:
271 nlmsg_trim(skb, b);
272 return -1;
273}
274
65a206c0 275static int tcf_dump_walker(struct tcf_idrinfo *idrinfo, struct sk_buff *skb,
a85a970a 276 struct netlink_callback *cb)
e9ce1cd3 277{
65a206c0 278 int err = 0, index = -1, s_i = 0, n_i = 0;
90825b23 279 u32 act_flags = cb->args[2];
e62e484d 280 unsigned long jiffy_since = cb->args[3];
4b3550ef 281 struct nlattr *nest;
65a206c0
CM
282 struct idr *idr = &idrinfo->action_idr;
283 struct tc_action *p;
284 unsigned long id = 1;
e33d2b74 285 unsigned long tmp;
e9ce1cd3 286
95278dda 287 mutex_lock(&idrinfo->lock);
e9ce1cd3
DM
288
289 s_i = cb->args[0];
290
e33d2b74 291 idr_for_each_entry_ul(idr, p, tmp, id) {
65a206c0
CM
292 index++;
293 if (index < s_i)
294 continue;
580e4273
CW
295 if (IS_ERR(p))
296 continue;
65a206c0
CM
297
298 if (jiffy_since &&
299 time_after(jiffy_since,
300 (unsigned long)p->tcfa_tm.lastuse))
301 continue;
302
ae0be8de 303 nest = nla_nest_start_noflag(skb, n_i);
734549eb
CD
304 if (!nest) {
305 index--;
65a206c0 306 goto nla_put_failure;
734549eb 307 }
f460019b 308 err = (act_flags & TCA_ACT_FLAG_TERSE_DUMP) ?
94f44f28
VB
309 tcf_action_dump_terse(skb, p, true) :
310 tcf_action_dump_1(skb, p, 0, 0);
65a206c0
CM
311 if (err < 0) {
312 index--;
313 nlmsg_trim(skb, nest);
314 goto done;
e9ce1cd3 315 }
65a206c0
CM
316 nla_nest_end(skb, nest);
317 n_i++;
f460019b 318 if (!(act_flags & TCA_ACT_FLAG_LARGE_DUMP_ON) &&
65a206c0
CM
319 n_i >= TCA_ACT_MAX_PRIO)
320 goto done;
e9ce1cd3
DM
321 }
322done:
e62e484d
JHS
323 if (index >= 0)
324 cb->args[0] = index + 1;
325
95278dda 326 mutex_unlock(&idrinfo->lock);
90825b23 327 if (n_i) {
f460019b 328 if (act_flags & TCA_ACT_FLAG_LARGE_DUMP_ON)
90825b23
JHS
329 cb->args[1] = n_i;
330 }
e9ce1cd3
DM
331 return n_i;
332
7ba699c6 333nla_put_failure:
4b3550ef 334 nla_nest_cancel(skb, nest);
e9ce1cd3
DM
335 goto done;
336}
337
ec3ed293
VB
338static int tcf_idr_release_unsafe(struct tc_action *p)
339{
340 if (atomic_read(&p->tcfa_bindcnt) > 0)
341 return -EPERM;
342
343 if (refcount_dec_and_test(&p->tcfa_refcnt)) {
344 idr_remove(&p->idrinfo->action_idr, p->tcfa_index);
345 tcf_action_cleanup(p);
346 return ACT_P_DELETED;
347 }
348
349 return 0;
350}
351
65a206c0 352static int tcf_del_walker(struct tcf_idrinfo *idrinfo, struct sk_buff *skb,
a85a970a 353 const struct tc_action_ops *ops)
e9ce1cd3 354{
4b3550ef 355 struct nlattr *nest;
65a206c0 356 int n_i = 0;
55334a5d 357 int ret = -EINVAL;
65a206c0
CM
358 struct idr *idr = &idrinfo->action_idr;
359 struct tc_action *p;
360 unsigned long id = 1;
e33d2b74 361 unsigned long tmp;
e9ce1cd3 362
ae0be8de 363 nest = nla_nest_start_noflag(skb, 0);
4b3550ef
PM
364 if (nest == NULL)
365 goto nla_put_failure;
a85a970a 366 if (nla_put_string(skb, TCA_KIND, ops->kind))
1b34ec43 367 goto nla_put_failure;
65a206c0 368
95278dda 369 mutex_lock(&idrinfo->lock);
e33d2b74 370 idr_for_each_entry_ul(idr, p, tmp, id) {
0fedc63f
CW
371 if (IS_ERR(p))
372 continue;
ec3ed293 373 ret = tcf_idr_release_unsafe(p);
65a206c0 374 if (ret == ACT_P_DELETED) {
255cd50f 375 module_put(ops->owner);
65a206c0
CM
376 n_i++;
377 } else if (ret < 0) {
95278dda 378 mutex_unlock(&idrinfo->lock);
65a206c0 379 goto nla_put_failure;
e9ce1cd3
DM
380 }
381 }
95278dda 382 mutex_unlock(&idrinfo->lock);
ec3ed293 383
1b34ec43
DM
384 if (nla_put_u32(skb, TCA_FCNT, n_i))
385 goto nla_put_failure;
4b3550ef 386 nla_nest_end(skb, nest);
e9ce1cd3
DM
387
388 return n_i;
7ba699c6 389nla_put_failure:
4b3550ef 390 nla_nest_cancel(skb, nest);
55334a5d 391 return ret;
e9ce1cd3
DM
392}
393
ddf97ccd
WC
394int tcf_generic_walker(struct tc_action_net *tn, struct sk_buff *skb,
395 struct netlink_callback *cb, int type,
b3620145
AA
396 const struct tc_action_ops *ops,
397 struct netlink_ext_ack *extack)
e9ce1cd3 398{
65a206c0 399 struct tcf_idrinfo *idrinfo = tn->idrinfo;
ddf97ccd 400
e9ce1cd3 401 if (type == RTM_DELACTION) {
65a206c0 402 return tcf_del_walker(idrinfo, skb, ops);
e9ce1cd3 403 } else if (type == RTM_GETACTION) {
65a206c0 404 return tcf_dump_walker(idrinfo, skb, cb);
e9ce1cd3 405 } else {
b3620145
AA
406 WARN(1, "tcf_generic_walker: unknown command %d\n", type);
407 NL_SET_ERR_MSG(extack, "tcf_generic_walker: unknown command");
e9ce1cd3
DM
408 return -EINVAL;
409 }
410}
ddf97ccd 411EXPORT_SYMBOL(tcf_generic_walker);
e9ce1cd3 412
7d485c45 413int tcf_idr_search(struct tc_action_net *tn, struct tc_action **a, u32 index)
e9ce1cd3 414{
3f7c72bc
VB
415 struct tcf_idrinfo *idrinfo = tn->idrinfo;
416 struct tc_action *p;
e9ce1cd3 417
95278dda 418 mutex_lock(&idrinfo->lock);
322d884b 419 p = idr_find(&idrinfo->action_idr, index);
7d485c45 420 if (IS_ERR(p))
0190c1d4 421 p = NULL;
7d485c45 422 else if (p)
3f7c72bc 423 refcount_inc(&p->tcfa_refcnt);
95278dda 424 mutex_unlock(&idrinfo->lock);
e9ce1cd3 425
3f7c72bc
VB
426 if (p) {
427 *a = p;
428 return true;
429 }
430 return false;
e9ce1cd3 431}
65a206c0 432EXPORT_SYMBOL(tcf_idr_search);
e9ce1cd3 433
97a3f84f 434static int tcf_idr_delete_index(struct tcf_idrinfo *idrinfo, u32 index)
2a2ea349 435{
2a2ea349
VB
436 struct tc_action *p;
437 int ret = 0;
438
95278dda 439 mutex_lock(&idrinfo->lock);
2a2ea349
VB
440 p = idr_find(&idrinfo->action_idr, index);
441 if (!p) {
95278dda 442 mutex_unlock(&idrinfo->lock);
2a2ea349
VB
443 return -ENOENT;
444 }
445
446 if (!atomic_read(&p->tcfa_bindcnt)) {
447 if (refcount_dec_and_test(&p->tcfa_refcnt)) {
448 struct module *owner = p->ops->owner;
449
450 WARN_ON(p != idr_remove(&idrinfo->action_idr,
451 p->tcfa_index));
95278dda 452 mutex_unlock(&idrinfo->lock);
2a2ea349 453
16af6067 454 tcf_action_cleanup(p);
2a2ea349
VB
455 module_put(owner);
456 return 0;
457 }
458 ret = 0;
459 } else {
460 ret = -EPERM;
461 }
462
95278dda 463 mutex_unlock(&idrinfo->lock);
2a2ea349
VB
464 return ret;
465}
2a2ea349 466
65a206c0
CM
467int tcf_idr_create(struct tc_action_net *tn, u32 index, struct nlattr *est,
468 struct tc_action **a, const struct tc_action_ops *ops,
e3822678 469 int bind, bool cpustats, u32 flags)
e9ce1cd3 470{
ec0595cc 471 struct tc_action *p = kzalloc(ops->size, GFP_KERNEL);
65a206c0 472 struct tcf_idrinfo *idrinfo = tn->idrinfo;
519c818e 473 int err = -ENOMEM;
e9ce1cd3
DM
474
475 if (unlikely(!p))
86062033 476 return -ENOMEM;
036bb443 477 refcount_set(&p->tcfa_refcnt, 1);
e9ce1cd3 478 if (bind)
036bb443 479 atomic_set(&p->tcfa_bindcnt, 1);
e9ce1cd3 480
519c818e
ED
481 if (cpustats) {
482 p->cpu_bstats = netdev_alloc_pcpu_stats(struct gnet_stats_basic_cpu);
339913a8 483 if (!p->cpu_bstats)
519c818e 484 goto err1;
28169aba
EC
485 p->cpu_bstats_hw = netdev_alloc_pcpu_stats(struct gnet_stats_basic_cpu);
486 if (!p->cpu_bstats_hw)
487 goto err2;
339913a8
MW
488 p->cpu_qstats = alloc_percpu(struct gnet_stats_queue);
489 if (!p->cpu_qstats)
28169aba 490 goto err3;
519c818e 491 }
ec0595cc 492 spin_lock_init(&p->tcfa_lock);
339913a8 493 p->tcfa_index = index;
ec0595cc
WC
494 p->tcfa_tm.install = jiffies;
495 p->tcfa_tm.lastuse = jiffies;
496 p->tcfa_tm.firstuse = 0;
e3822678 497 p->tcfa_flags = flags;
0e991ec6 498 if (est) {
ec0595cc
WC
499 err = gen_new_estimator(&p->tcfa_bstats, p->cpu_bstats,
500 &p->tcfa_rate_est,
501 &p->tcfa_lock, NULL, est);
339913a8 502 if (err)
28169aba 503 goto err4;
0e991ec6
SH
504 }
505
65a206c0 506 p->idrinfo = idrinfo;
b3650bf7 507 __module_get(ops->owner);
ec0595cc 508 p->ops = ops;
ec0595cc 509 *a = p;
86062033 510 return 0;
28169aba 511err4:
339913a8 512 free_percpu(p->cpu_qstats);
28169aba
EC
513err3:
514 free_percpu(p->cpu_bstats_hw);
339913a8
MW
515err2:
516 free_percpu(p->cpu_bstats);
517err1:
518 kfree(p);
519 return err;
e9ce1cd3 520}
65a206c0 521EXPORT_SYMBOL(tcf_idr_create);
e9ce1cd3 522
e3822678
VB
523int tcf_idr_create_from_flags(struct tc_action_net *tn, u32 index,
524 struct nlattr *est, struct tc_action **a,
525 const struct tc_action_ops *ops, int bind,
526 u32 flags)
527{
528 /* Set cpustats according to actions flags. */
529 return tcf_idr_create(tn, index, est, a, ops, bind,
530 !(flags & TCA_ACT_FLAGS_NO_PERCPU_STATS), flags);
531}
532EXPORT_SYMBOL(tcf_idr_create_from_flags);
533
0190c1d4
VB
534/* Cleanup idr index that was allocated but not initialized. */
535
536void tcf_idr_cleanup(struct tc_action_net *tn, u32 index)
537{
538 struct tcf_idrinfo *idrinfo = tn->idrinfo;
539
95278dda 540 mutex_lock(&idrinfo->lock);
0190c1d4
VB
541 /* Remove ERR_PTR(-EBUSY) allocated by tcf_idr_check_alloc */
542 WARN_ON(!IS_ERR(idr_remove(&idrinfo->action_idr, index)));
95278dda 543 mutex_unlock(&idrinfo->lock);
0190c1d4
VB
544}
545EXPORT_SYMBOL(tcf_idr_cleanup);
546
547/* Check if action with specified index exists. If actions is found, increments
548 * its reference and bind counters, and return 1. Otherwise insert temporary
549 * error pointer (to prevent concurrent users from inserting actions with same
550 * index) and return 0.
551 */
552
553int tcf_idr_check_alloc(struct tc_action_net *tn, u32 *index,
554 struct tc_action **a, int bind)
555{
556 struct tcf_idrinfo *idrinfo = tn->idrinfo;
557 struct tc_action *p;
558 int ret;
559
560again:
95278dda 561 mutex_lock(&idrinfo->lock);
0190c1d4
VB
562 if (*index) {
563 p = idr_find(&idrinfo->action_idr, *index);
564 if (IS_ERR(p)) {
565 /* This means that another process allocated
566 * index but did not assign the pointer yet.
567 */
95278dda 568 mutex_unlock(&idrinfo->lock);
0190c1d4
VB
569 goto again;
570 }
571
572 if (p) {
573 refcount_inc(&p->tcfa_refcnt);
574 if (bind)
575 atomic_inc(&p->tcfa_bindcnt);
576 *a = p;
577 ret = 1;
578 } else {
579 *a = NULL;
580 ret = idr_alloc_u32(&idrinfo->action_idr, NULL, index,
95278dda 581 *index, GFP_KERNEL);
0190c1d4
VB
582 if (!ret)
583 idr_replace(&idrinfo->action_idr,
584 ERR_PTR(-EBUSY), *index);
585 }
586 } else {
587 *index = 1;
588 *a = NULL;
589 ret = idr_alloc_u32(&idrinfo->action_idr, NULL, index,
95278dda 590 UINT_MAX, GFP_KERNEL);
0190c1d4
VB
591 if (!ret)
592 idr_replace(&idrinfo->action_idr, ERR_PTR(-EBUSY),
593 *index);
594 }
95278dda 595 mutex_unlock(&idrinfo->lock);
0190c1d4
VB
596 return ret;
597}
598EXPORT_SYMBOL(tcf_idr_check_alloc);
599
65a206c0
CM
600void tcf_idrinfo_destroy(const struct tc_action_ops *ops,
601 struct tcf_idrinfo *idrinfo)
1d4150c0 602{
65a206c0
CM
603 struct idr *idr = &idrinfo->action_idr;
604 struct tc_action *p;
605 int ret;
606 unsigned long id = 1;
e33d2b74 607 unsigned long tmp;
1d4150c0 608
e33d2b74 609 idr_for_each_entry_ul(idr, p, tmp, id) {
65a206c0
CM
610 ret = __tcf_idr_release(p, false, true);
611 if (ret == ACT_P_DELETED)
612 module_put(ops->owner);
613 else if (ret < 0)
614 return;
1d4150c0 615 }
65a206c0 616 idr_destroy(&idrinfo->action_idr);
1d4150c0 617}
65a206c0 618EXPORT_SYMBOL(tcf_idrinfo_destroy);
1d4150c0 619
1f747c26 620static LIST_HEAD(act_base);
1da177e4
LT
621static DEFINE_RWLOCK(act_mod_lock);
622
ddf97ccd
WC
623int tcf_register_action(struct tc_action_ops *act,
624 struct pernet_operations *ops)
1da177e4 625{
1f747c26 626 struct tc_action_ops *a;
ddf97ccd 627 int ret;
1da177e4 628
ddf97ccd 629 if (!act->act || !act->dump || !act->init || !act->walk || !act->lookup)
76c82d7a
JHS
630 return -EINVAL;
631
ab102b80
WC
632 /* We have to register pernet ops before making the action ops visible,
633 * otherwise tcf_action_init_1() could get a partially initialized
634 * netns.
635 */
636 ret = register_pernet_subsys(ops);
637 if (ret)
638 return ret;
639
1da177e4 640 write_lock(&act_mod_lock);
1f747c26 641 list_for_each_entry(a, &act_base, head) {
eddd2cf1 642 if (act->id == a->id || (strcmp(act->kind, a->kind) == 0)) {
1da177e4 643 write_unlock(&act_mod_lock);
ab102b80 644 unregister_pernet_subsys(ops);
1da177e4
LT
645 return -EEXIST;
646 }
647 }
1f747c26 648 list_add_tail(&act->head, &act_base);
1da177e4 649 write_unlock(&act_mod_lock);
ddf97ccd 650
1da177e4
LT
651 return 0;
652}
62e3ba1b 653EXPORT_SYMBOL(tcf_register_action);
1da177e4 654
ddf97ccd
WC
655int tcf_unregister_action(struct tc_action_ops *act,
656 struct pernet_operations *ops)
1da177e4 657{
1f747c26 658 struct tc_action_ops *a;
1da177e4
LT
659 int err = -ENOENT;
660
661 write_lock(&act_mod_lock);
a792866a
ED
662 list_for_each_entry(a, &act_base, head) {
663 if (a == act) {
664 list_del(&act->head);
665 err = 0;
1da177e4 666 break;
a792866a 667 }
1da177e4
LT
668 }
669 write_unlock(&act_mod_lock);
ab102b80
WC
670 if (!err)
671 unregister_pernet_subsys(ops);
1da177e4
LT
672 return err;
673}
62e3ba1b 674EXPORT_SYMBOL(tcf_unregister_action);
1da177e4
LT
675
676/* lookup by name */
677static struct tc_action_ops *tc_lookup_action_n(char *kind)
678{
a792866a 679 struct tc_action_ops *a, *res = NULL;
1da177e4
LT
680
681 if (kind) {
682 read_lock(&act_mod_lock);
1f747c26 683 list_for_each_entry(a, &act_base, head) {
1da177e4 684 if (strcmp(kind, a->kind) == 0) {
a792866a
ED
685 if (try_module_get(a->owner))
686 res = a;
1da177e4
LT
687 break;
688 }
689 }
690 read_unlock(&act_mod_lock);
691 }
a792866a 692 return res;
1da177e4
LT
693}
694
7ba699c6
PM
695/* lookup by nlattr */
696static struct tc_action_ops *tc_lookup_action(struct nlattr *kind)
1da177e4 697{
a792866a 698 struct tc_action_ops *a, *res = NULL;
1da177e4
LT
699
700 if (kind) {
701 read_lock(&act_mod_lock);
1f747c26 702 list_for_each_entry(a, &act_base, head) {
7ba699c6 703 if (nla_strcmp(kind, a->kind) == 0) {
a792866a
ED
704 if (try_module_get(a->owner))
705 res = a;
1da177e4
LT
706 break;
707 }
708 }
709 read_unlock(&act_mod_lock);
710 }
a792866a 711 return res;
1da177e4 712}
1da177e4 713
e5a4b17d 714/*TCA_ACT_MAX_PRIO is 32, there count up to 32 */
e0ee84de 715#define TCA_ACT_MAX_PRIO_MASK 0x1FF
22dc13c8
WC
716int tcf_action_exec(struct sk_buff *skb, struct tc_action **actions,
717 int nr_actions, struct tcf_result *res)
1da177e4 718{
e0ee84de
JHS
719 u32 jmp_prgcnt = 0;
720 u32 jmp_ttl = TCA_ACT_MAX_PRIO; /*matches actions per filter */
ec1a9cca
JP
721 int i;
722 int ret = TC_ACT_OK;
1da177e4 723
e7246e12
WB
724 if (skb_skip_tc_classify(skb))
725 return TC_ACT_OK;
726
e0ee84de 727restart_act_graph:
22dc13c8
WC
728 for (i = 0; i < nr_actions; i++) {
729 const struct tc_action *a = actions[i];
730
e0ee84de
JHS
731 if (jmp_prgcnt > 0) {
732 jmp_prgcnt -= 1;
733 continue;
734 }
1da177e4 735repeat:
63acd680 736 ret = a->ops->act(skb, a, res);
63acd680
JHS
737 if (ret == TC_ACT_REPEAT)
738 goto repeat; /* we need a ttl - JHS */
e0ee84de 739
9da3242e 740 if (TC_ACT_EXT_CMP(ret, TC_ACT_JUMP)) {
e0ee84de
JHS
741 jmp_prgcnt = ret & TCA_ACT_MAX_PRIO_MASK;
742 if (!jmp_prgcnt || (jmp_prgcnt > nr_actions)) {
743 /* faulty opcode, stop pipeline */
744 return TC_ACT_OK;
745 } else {
746 jmp_ttl -= 1;
747 if (jmp_ttl > 0)
748 goto restart_act_graph;
749 else /* faulty graph, stop pipeline */
750 return TC_ACT_OK;
751 }
db50514f 752 } else if (TC_ACT_EXT_CMP(ret, TC_ACT_GOTO_CHAIN)) {
ee3bbfe8
DC
753 if (unlikely(!rcu_access_pointer(a->goto_chain))) {
754 net_warn_ratelimited("can't go to NULL chain!\n");
755 return TC_ACT_SHOT;
756 }
db50514f 757 tcf_action_goto_chain_exec(a, res);
e0ee84de
JHS
758 }
759
63acd680 760 if (ret != TC_ACT_PIPE)
e7246e12 761 break;
1da177e4 762 }
e0ee84de 763
1da177e4
LT
764 return ret;
765}
62e3ba1b 766EXPORT_SYMBOL(tcf_action_exec);
1da177e4 767
90b73b77 768int tcf_action_destroy(struct tc_action *actions[], int bind)
1da177e4 769{
255cd50f 770 const struct tc_action_ops *ops;
90b73b77
VB
771 struct tc_action *a;
772 int ret = 0, i;
1da177e4 773
90b73b77
VB
774 for (i = 0; i < TCA_ACT_MAX_PRIO && actions[i]; i++) {
775 a = actions[i];
776 actions[i] = NULL;
255cd50f 777 ops = a->ops;
65a206c0 778 ret = __tcf_idr_release(a, bind, true);
55334a5d 779 if (ret == ACT_P_DELETED)
255cd50f 780 module_put(ops->owner);
55334a5d
WC
781 else if (ret < 0)
782 return ret;
1da177e4 783 }
55334a5d 784 return ret;
1da177e4
LT
785}
786
16af6067
VB
787static int tcf_action_put(struct tc_action *p)
788{
789 return __tcf_action_put(p, false);
790}
791
edfaf94f 792/* Put all actions in this array, skip those NULL's. */
90b73b77 793static void tcf_action_put_many(struct tc_action *actions[])
cae422f3 794{
90b73b77 795 int i;
cae422f3 796
edfaf94f 797 for (i = 0; i < TCA_ACT_MAX_PRIO; i++) {
90b73b77 798 struct tc_action *a = actions[i];
edfaf94f 799 const struct tc_action_ops *ops;
cae422f3 800
edfaf94f
CW
801 if (!a)
802 continue;
803 ops = a->ops;
cae422f3
VB
804 if (tcf_action_put(a))
805 module_put(ops->owner);
806 }
807}
808
1da177e4
LT
809int
810tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
811{
1da177e4
LT
812 return a->ops->dump(skb, a, bind, ref);
813}
814
ca44b738
VB
815int
816tcf_action_dump_1(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
817{
818 int err = -EINVAL;
819 unsigned char *b = skb_tail_pointer(skb);
820 struct nlattr *nest;
821
94f44f28 822 if (tcf_action_dump_terse(skb, a, false))
ca44b738
VB
823 goto nla_put_failure;
824
8953b077
JP
825 if (a->hw_stats != TCA_ACT_HW_STATS_ANY &&
826 nla_put_bitfield32(skb, TCA_ACT_HW_STATS,
827 a->hw_stats, TCA_ACT_HW_STATS_ANY))
828 goto nla_put_failure;
e3822678 829
93a129eb
JP
830 if (a->used_hw_stats_valid &&
831 nla_put_bitfield32(skb, TCA_ACT_USED_HW_STATS,
832 a->used_hw_stats, TCA_ACT_HW_STATS_ANY))
833 goto nla_put_failure;
834
8953b077
JP
835 if (a->tcfa_flags &&
836 nla_put_bitfield32(skb, TCA_ACT_FLAGS,
837 a->tcfa_flags, a->tcfa_flags))
838 goto nla_put_failure;
e3822678 839
ae0be8de 840 nest = nla_nest_start_noflag(skb, TCA_OPTIONS);
4b3550ef
PM
841 if (nest == NULL)
842 goto nla_put_failure;
cc7ec456
ED
843 err = tcf_action_dump_old(skb, a, bind, ref);
844 if (err > 0) {
4b3550ef 845 nla_nest_end(skb, nest);
1da177e4
LT
846 return err;
847 }
848
7ba699c6 849nla_put_failure:
dc5fc579 850 nlmsg_trim(skb, b);
1da177e4
LT
851 return -1;
852}
62e3ba1b 853EXPORT_SYMBOL(tcf_action_dump_1);
1da177e4 854
90b73b77 855int tcf_action_dump(struct sk_buff *skb, struct tc_action *actions[],
ca44b738 856 int bind, int ref, bool terse)
1da177e4
LT
857{
858 struct tc_action *a;
90b73b77 859 int err = -EINVAL, i;
4b3550ef 860 struct nlattr *nest;
1da177e4 861
90b73b77
VB
862 for (i = 0; i < TCA_ACT_MAX_PRIO && actions[i]; i++) {
863 a = actions[i];
4097e9d2 864 nest = nla_nest_start_noflag(skb, i + 1);
4b3550ef
PM
865 if (nest == NULL)
866 goto nla_put_failure;
94f44f28 867 err = terse ? tcf_action_dump_terse(skb, a, false) :
ca44b738 868 tcf_action_dump_1(skb, a, bind, ref);
1da177e4 869 if (err < 0)
4fe683f5 870 goto errout;
4b3550ef 871 nla_nest_end(skb, nest);
1da177e4
LT
872 }
873
874 return 0;
875
7ba699c6 876nla_put_failure:
4fe683f5
TG
877 err = -EINVAL;
878errout:
4b3550ef 879 nla_nest_cancel(skb, nest);
4fe683f5 880 return err;
1da177e4
LT
881}
882
e0535ce5 883static struct tc_cookie *nla_memdup_cookie(struct nlattr **tb)
1045ba77 884{
e0535ce5
WB
885 struct tc_cookie *c = kzalloc(sizeof(*c), GFP_KERNEL);
886 if (!c)
887 return NULL;
888
889 c->data = nla_memdup(tb[TCA_ACT_COOKIE], GFP_KERNEL);
890 if (!c->data) {
891 kfree(c);
892 return NULL;
1045ba77 893 }
e0535ce5 894 c->len = nla_len(tb[TCA_ACT_COOKIE]);
1045ba77 895
e0535ce5 896 return c;
1045ba77
JHS
897}
898
0dfb2d82 899static u8 tcf_action_hw_stats_get(struct nlattr *hw_stats_attr)
44f86580 900{
0dfb2d82 901 struct nla_bitfield32 hw_stats_bf;
44f86580
JP
902
903 /* If the user did not pass the attr, that means he does
904 * not care about the type. Return "any" in that case
905 * which is setting on all supported types.
906 */
0dfb2d82
JK
907 if (!hw_stats_attr)
908 return TCA_ACT_HW_STATS_ANY;
909 hw_stats_bf = nla_get_bitfield32(hw_stats_attr);
910 return hw_stats_bf.value;
44f86580
JP
911}
912
199ce850 913static const struct nla_policy tcf_action_policy[TCA_ACT_MAX + 1] = {
4b793fec 914 [TCA_ACT_KIND] = { .type = NLA_STRING },
199ce850
CW
915 [TCA_ACT_INDEX] = { .type = NLA_U32 },
916 [TCA_ACT_COOKIE] = { .type = NLA_BINARY,
917 .len = TC_COOKIE_MAX_SIZE },
918 [TCA_ACT_OPTIONS] = { .type = NLA_NESTED },
47a1494b
JB
919 [TCA_ACT_FLAGS] = NLA_POLICY_BITFIELD32(TCA_ACT_FLAGS_NO_PERCPU_STATS),
920 [TCA_ACT_HW_STATS] = NLA_POLICY_BITFIELD32(TCA_ACT_HW_STATS_ANY),
199ce850
CW
921};
922
396d7f23 923void tcf_idr_insert_many(struct tc_action *actions[])
e49d8c22 924{
0fedc63f 925 int i;
e49d8c22 926
0fedc63f
CW
927 for (i = 0; i < TCA_ACT_MAX_PRIO; i++) {
928 struct tc_action *a = actions[i];
929 struct tcf_idrinfo *idrinfo;
930
931 if (!a)
932 continue;
933 idrinfo = a->idrinfo;
934 mutex_lock(&idrinfo->lock);
935 /* Replace ERR_PTR(-EBUSY) allocated by tcf_idr_check_alloc if
936 * it is just created, otherwise this is just a nop.
937 */
938 idr_replace(&idrinfo->action_idr, a, a->tcfa_index);
939 mutex_unlock(&idrinfo->lock);
940 }
e49d8c22
CW
941}
942
d349f997
CW
943struct tc_action_ops *tc_action_load_ops(char *name, struct nlattr *nla,
944 bool rtnl_held,
945 struct netlink_ext_ack *extack)
1da177e4 946{
d349f997 947 struct nlattr *tb[TCA_ACT_MAX + 1];
1da177e4
LT
948 struct tc_action_ops *a_o;
949 char act_name[IFNAMSIZ];
7ba699c6 950 struct nlattr *kind;
ab27cfb8 951 int err;
1da177e4 952
1da177e4 953 if (name == NULL) {
199ce850
CW
954 err = nla_parse_nested_deprecated(tb, TCA_ACT_MAX, nla,
955 tcf_action_policy, extack);
cee63723 956 if (err < 0)
d349f997 957 return ERR_PTR(err);
cee63723 958 err = -EINVAL;
7ba699c6 959 kind = tb[TCA_ACT_KIND];
84ae017a
AA
960 if (!kind) {
961 NL_SET_ERR_MSG(extack, "TC action kind must be specified");
d349f997 962 return ERR_PTR(err);
84ae017a 963 }
872f6903 964 if (nla_strscpy(act_name, kind, IFNAMSIZ) < 0) {
4b793fec 965 NL_SET_ERR_MSG(extack, "TC action name too long");
d349f997 966 return ERR_PTR(err);
4b793fec 967 }
1da177e4 968 } else {
84ae017a
AA
969 if (strlcpy(act_name, name, IFNAMSIZ) >= IFNAMSIZ) {
970 NL_SET_ERR_MSG(extack, "TC action name too long");
d349f997 971 return ERR_PTR(-EINVAL);
84ae017a 972 }
1da177e4
LT
973 }
974
975 a_o = tc_lookup_action_n(act_name);
976 if (a_o == NULL) {
95a5afca 977#ifdef CONFIG_MODULES
789871bb
VB
978 if (rtnl_held)
979 rtnl_unlock();
4bba3925 980 request_module("act_%s", act_name);
789871bb
VB
981 if (rtnl_held)
982 rtnl_lock();
1da177e4
LT
983
984 a_o = tc_lookup_action_n(act_name);
985
986 /* We dropped the RTNL semaphore in order to
987 * perform the module load. So, even if we
988 * succeeded in loading the module we have to
989 * tell the caller to replay the request. We
990 * indicate this using -EAGAIN.
991 */
992 if (a_o != NULL) {
d349f997
CW
993 module_put(a_o->owner);
994 return ERR_PTR(-EAGAIN);
1da177e4
LT
995 }
996#endif
84ae017a 997 NL_SET_ERR_MSG(extack, "Failed to load TC action module");
d349f997 998 return ERR_PTR(-ENOENT);
1da177e4
LT
999 }
1000
d349f997
CW
1001 return a_o;
1002}
1003
1004struct tc_action *tcf_action_init_1(struct net *net, struct tcf_proto *tp,
1005 struct nlattr *nla, struct nlattr *est,
1006 char *name, int ovr, int bind,
87c750e8
VB
1007 struct tc_action_ops *a_o, int *init_res,
1008 bool rtnl_held,
d349f997
CW
1009 struct netlink_ext_ack *extack)
1010{
1011 struct nla_bitfield32 flags = { 0, 0 };
1012 u8 hw_stats = TCA_ACT_HW_STATS_ANY;
1013 struct nlattr *tb[TCA_ACT_MAX + 1];
1014 struct tc_cookie *cookie = NULL;
1015 struct tc_action *a;
1016 int err;
1017
1da177e4 1018 /* backward compatibility for policer */
d349f997
CW
1019 if (name == NULL) {
1020 err = nla_parse_nested_deprecated(tb, TCA_ACT_MAX, nla,
1021 tcf_action_policy, extack);
1022 if (err < 0)
1023 return ERR_PTR(err);
1024 if (tb[TCA_ACT_COOKIE]) {
1025 cookie = nla_memdup_cookie(tb);
1026 if (!cookie) {
1027 NL_SET_ERR_MSG(extack, "No memory to generate TC cookie");
1028 err = -ENOMEM;
1029 goto err_out;
1030 }
1031 }
1032 hw_stats = tcf_action_hw_stats_get(tb[TCA_ACT_HW_STATS]);
1033 if (tb[TCA_ACT_FLAGS])
1034 flags = nla_get_bitfield32(tb[TCA_ACT_FLAGS]);
1035
589dad6d 1036 err = a_o->init(net, tb[TCA_ACT_OPTIONS], est, &a, ovr, bind,
abbb0d33 1037 rtnl_held, tp, flags.value, extack);
d349f997 1038 } else {
789871bb 1039 err = a_o->init(net, nla, est, &a, ovr, bind, rtnl_held,
abbb0d33 1040 tp, flags.value, extack);
d349f997 1041 }
ab27cfb8 1042 if (err < 0)
d349f997 1043 goto err_out;
87c750e8 1044 *init_res = err;
1da177e4 1045
eec94fdb
VB
1046 if (!name && tb[TCA_ACT_COOKIE])
1047 tcf_set_action_cookie(&a->act_cookie, cookie);
1045ba77 1048
44f86580 1049 if (!name)
0dfb2d82 1050 a->hw_stats = hw_stats;
44f86580 1051
1da177e4
LT
1052 return a;
1053
d349f997 1054err_out:
e0535ce5
WB
1055 if (cookie) {
1056 kfree(cookie->data);
1057 kfree(cookie);
1058 }
ab27cfb8 1059 return ERR_PTR(err);
1da177e4
LT
1060}
1061
90b73b77
VB
1062/* Returns numbers of initialized actions or negative error. */
1063
9fb9f251
JP
1064int tcf_action_init(struct net *net, struct tcf_proto *tp, struct nlattr *nla,
1065 struct nlattr *est, char *name, int ovr, int bind,
87c750e8 1066 struct tc_action *actions[], int init_res[], size_t *attr_size,
789871bb 1067 bool rtnl_held, struct netlink_ext_ack *extack)
1da177e4 1068{
d349f997 1069 struct tc_action_ops *ops[TCA_ACT_MAX_PRIO] = {};
cc7ec456 1070 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
33be6271 1071 struct tc_action *act;
4e76e75d 1072 size_t sz = 0;
cee63723 1073 int err;
1da177e4
LT
1074 int i;
1075
8cb08174
JB
1076 err = nla_parse_nested_deprecated(tb, TCA_ACT_MAX_PRIO, nla, NULL,
1077 extack);
cee63723 1078 if (err < 0)
33be6271 1079 return err;
1da177e4 1080
d349f997
CW
1081 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
1082 struct tc_action_ops *a_o;
1083
1084 a_o = tc_action_load_ops(name, tb[i], rtnl_held, extack);
1085 if (IS_ERR(a_o)) {
1086 err = PTR_ERR(a_o);
1087 goto err_mod;
1088 }
1089 ops[i - 1] = a_o;
1090 }
1091
7ba699c6 1092 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
aea0d727 1093 act = tcf_action_init_1(net, tp, tb[i], est, name, ovr, bind,
87c750e8
VB
1094 ops[i - 1], &init_res[i - 1], rtnl_held,
1095 extack);
33be6271
WC
1096 if (IS_ERR(act)) {
1097 err = PTR_ERR(act);
1da177e4 1098 goto err;
33be6271 1099 }
4e76e75d 1100 sz += tcf_action_fill_size(act);
90b73b77
VB
1101 /* Start from index 0 */
1102 actions[i - 1] = act;
1da177e4 1103 }
aecc5cef 1104
0fedc63f
CW
1105 /* We have to commit them all together, because if any error happened in
1106 * between, we could not handle the failure gracefully.
1107 */
1108 tcf_idr_insert_many(actions);
1109
4e76e75d 1110 *attr_size = tcf_action_full_attrs_size(sz);
b3650bf7
VB
1111 err = i - 1;
1112 goto err_mod;
1da177e4
LT
1113
1114err:
33be6271 1115 tcf_action_destroy(actions, bind);
d349f997
CW
1116err_mod:
1117 for (i = 0; i < TCA_ACT_MAX_PRIO; i++) {
1118 if (ops[i])
1119 module_put(ops[i]->owner);
1120 }
33be6271 1121 return err;
1da177e4
LT
1122}
1123
4b61d3e8
PL
1124void tcf_action_update_stats(struct tc_action *a, u64 bytes, u64 packets,
1125 u64 drops, bool hw)
c8ecebd0 1126{
5e174d5e
VB
1127 if (a->cpu_bstats) {
1128 _bstats_cpu_update(this_cpu_ptr(a->cpu_bstats), bytes, packets);
c8ecebd0 1129
4b61d3e8 1130 this_cpu_ptr(a->cpu_qstats)->drops += drops;
5e174d5e
VB
1131
1132 if (hw)
1133 _bstats_cpu_update(this_cpu_ptr(a->cpu_bstats_hw),
1134 bytes, packets);
1135 return;
1136 }
c8ecebd0 1137
5e174d5e 1138 _bstats_update(&a->tcfa_bstats, bytes, packets);
4b61d3e8 1139 a->tcfa_qstats.drops += drops;
c8ecebd0 1140 if (hw)
5e174d5e 1141 _bstats_update(&a->tcfa_bstats_hw, bytes, packets);
c8ecebd0
VB
1142}
1143EXPORT_SYMBOL(tcf_action_update_stats);
1144
ec0595cc 1145int tcf_action_copy_stats(struct sk_buff *skb, struct tc_action *p,
1da177e4
LT
1146 int compat_mode)
1147{
1148 int err = 0;
1149 struct gnet_dump d;
10297b99 1150
7eb8896d 1151 if (p == NULL)
1da177e4
LT
1152 goto errout;
1153
1154 /* compat_mode being true specifies a call that is supposed
06fe9fb4 1155 * to add additional backward compatibility statistic TLVs.
1da177e4
LT
1156 */
1157 if (compat_mode) {
ec0595cc 1158 if (p->type == TCA_OLD_COMPAT)
1da177e4 1159 err = gnet_stats_start_copy_compat(skb, 0,
9854518e
ND
1160 TCA_STATS,
1161 TCA_XSTATS,
ec0595cc 1162 &p->tcfa_lock, &d,
9854518e 1163 TCA_PAD);
1da177e4
LT
1164 else
1165 return 0;
1166 } else
1167 err = gnet_stats_start_copy(skb, TCA_ACT_STATS,
ec0595cc 1168 &p->tcfa_lock, &d, TCA_ACT_PAD);
1da177e4
LT
1169
1170 if (err < 0)
1171 goto errout;
1172
ec0595cc 1173 if (gnet_stats_copy_basic(NULL, &d, p->cpu_bstats, &p->tcfa_bstats) < 0 ||
28169aba
EC
1174 gnet_stats_copy_basic_hw(NULL, &d, p->cpu_bstats_hw,
1175 &p->tcfa_bstats_hw) < 0 ||
1c0d32fd 1176 gnet_stats_copy_rate_est(&d, &p->tcfa_rate_est) < 0 ||
519c818e 1177 gnet_stats_copy_queue(&d, p->cpu_qstats,
ec0595cc
WC
1178 &p->tcfa_qstats,
1179 p->tcfa_qstats.qlen) < 0)
1da177e4
LT
1180 goto errout;
1181
1182 if (gnet_stats_finish_copy(&d) < 0)
1183 goto errout;
1184
1185 return 0;
1186
1187errout:
1188 return -1;
1189}
1190
90b73b77 1191static int tca_get_fill(struct sk_buff *skb, struct tc_action *actions[],
0b0f43fe
JHS
1192 u32 portid, u32 seq, u16 flags, int event, int bind,
1193 int ref)
1da177e4
LT
1194{
1195 struct tcamsg *t;
1196 struct nlmsghdr *nlh;
27a884dc 1197 unsigned char *b = skb_tail_pointer(skb);
4b3550ef 1198 struct nlattr *nest;
1da177e4 1199
15e47304 1200 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*t), flags);
8b00a53c
DM
1201 if (!nlh)
1202 goto out_nlmsg_trim;
1203 t = nlmsg_data(nlh);
1da177e4 1204 t->tca_family = AF_UNSPEC;
9ef1d4c7
PM
1205 t->tca__pad1 = 0;
1206 t->tca__pad2 = 0;
10297b99 1207
ae0be8de 1208 nest = nla_nest_start_noflag(skb, TCA_ACT_TAB);
1af85155 1209 if (!nest)
8b00a53c 1210 goto out_nlmsg_trim;
1da177e4 1211
ca44b738 1212 if (tcf_action_dump(skb, actions, bind, ref, false) < 0)
8b00a53c 1213 goto out_nlmsg_trim;
1da177e4 1214
4b3550ef 1215 nla_nest_end(skb, nest);
10297b99 1216
27a884dc 1217 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1da177e4
LT
1218 return skb->len;
1219
8b00a53c 1220out_nlmsg_trim:
dc5fc579 1221 nlmsg_trim(skb, b);
1da177e4
LT
1222 return -1;
1223}
1224
1225static int
c4c4290c 1226tcf_get_notify(struct net *net, u32 portid, struct nlmsghdr *n,
90b73b77 1227 struct tc_action *actions[], int event,
84ae017a 1228 struct netlink_ext_ack *extack)
1da177e4
LT
1229{
1230 struct sk_buff *skb;
1da177e4
LT
1231
1232 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1233 if (!skb)
1234 return -ENOBUFS;
0b0f43fe 1235 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, event,
3f7c72bc 1236 0, 1) <= 0) {
84ae017a 1237 NL_SET_ERR_MSG(extack, "Failed to fill netlink attributes while adding TC action");
1da177e4
LT
1238 kfree_skb(skb);
1239 return -EINVAL;
1240 }
2942e900 1241
15e47304 1242 return rtnl_unicast(skb, net, portid);
1da177e4
LT
1243}
1244
ddf97ccd 1245static struct tc_action *tcf_action_get_1(struct net *net, struct nlattr *nla,
84ae017a
AA
1246 struct nlmsghdr *n, u32 portid,
1247 struct netlink_ext_ack *extack)
1da177e4 1248{
cc7ec456 1249 struct nlattr *tb[TCA_ACT_MAX + 1];
a85a970a 1250 const struct tc_action_ops *ops;
1da177e4
LT
1251 struct tc_action *a;
1252 int index;
ab27cfb8 1253 int err;
1da177e4 1254
199ce850
CW
1255 err = nla_parse_nested_deprecated(tb, TCA_ACT_MAX, nla,
1256 tcf_action_policy, extack);
cee63723 1257 if (err < 0)
ab27cfb8 1258 goto err_out;
1da177e4 1259
cee63723 1260 err = -EINVAL;
7ba699c6 1261 if (tb[TCA_ACT_INDEX] == NULL ||
84ae017a
AA
1262 nla_len(tb[TCA_ACT_INDEX]) < sizeof(index)) {
1263 NL_SET_ERR_MSG(extack, "Invalid TC action index value");
ab27cfb8 1264 goto err_out;
84ae017a 1265 }
1587bac4 1266 index = nla_get_u32(tb[TCA_ACT_INDEX]);
1da177e4 1267
ab27cfb8 1268 err = -EINVAL;
a85a970a 1269 ops = tc_lookup_action(tb[TCA_ACT_KIND]);
84ae017a 1270 if (!ops) { /* could happen in batch of actions */
f061b48c 1271 NL_SET_ERR_MSG(extack, "Specified TC action kind not found");
a85a970a 1272 goto err_out;
84ae017a 1273 }
ab27cfb8 1274 err = -ENOENT;
f061b48c
CW
1275 if (ops->lookup(net, &a, index) == 0) {
1276 NL_SET_ERR_MSG(extack, "TC action with specified index not found");
1da177e4 1277 goto err_mod;
f061b48c 1278 }
1da177e4 1279
a85a970a 1280 module_put(ops->owner);
1da177e4 1281 return a;
ab27cfb8 1282
1da177e4 1283err_mod:
a85a970a 1284 module_put(ops->owner);
ab27cfb8
PM
1285err_out:
1286 return ERR_PTR(err);
1da177e4
LT
1287}
1288
7316ae88 1289static int tca_action_flush(struct net *net, struct nlattr *nla,
84ae017a
AA
1290 struct nlmsghdr *n, u32 portid,
1291 struct netlink_ext_ack *extack)
1da177e4
LT
1292{
1293 struct sk_buff *skb;
1294 unsigned char *b;
1295 struct nlmsghdr *nlh;
1296 struct tcamsg *t;
1297 struct netlink_callback dcb;
4b3550ef 1298 struct nlattr *nest;
cc7ec456 1299 struct nlattr *tb[TCA_ACT_MAX + 1];
a85a970a 1300 const struct tc_action_ops *ops;
7ba699c6 1301 struct nlattr *kind;
36723873 1302 int err = -ENOMEM;
1da177e4 1303
1da177e4 1304 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
84ae017a 1305 if (!skb)
36723873 1306 return err;
1da177e4 1307
27a884dc 1308 b = skb_tail_pointer(skb);
1da177e4 1309
199ce850
CW
1310 err = nla_parse_nested_deprecated(tb, TCA_ACT_MAX, nla,
1311 tcf_action_policy, extack);
cee63723 1312 if (err < 0)
1da177e4
LT
1313 goto err_out;
1314
cee63723 1315 err = -EINVAL;
7ba699c6 1316 kind = tb[TCA_ACT_KIND];
a85a970a 1317 ops = tc_lookup_action(kind);
84ae017a
AA
1318 if (!ops) { /*some idjot trying to flush unknown action */
1319 NL_SET_ERR_MSG(extack, "Cannot flush unknown TC action");
1da177e4 1320 goto err_out;
84ae017a 1321 }
1da177e4 1322
0b0f43fe
JHS
1323 nlh = nlmsg_put(skb, portid, n->nlmsg_seq, RTM_DELACTION,
1324 sizeof(*t), 0);
84ae017a
AA
1325 if (!nlh) {
1326 NL_SET_ERR_MSG(extack, "Failed to create TC action flush notification");
8b00a53c 1327 goto out_module_put;
84ae017a 1328 }
8b00a53c 1329 t = nlmsg_data(nlh);
1da177e4 1330 t->tca_family = AF_UNSPEC;
9ef1d4c7
PM
1331 t->tca__pad1 = 0;
1332 t->tca__pad2 = 0;
1da177e4 1333
ae0be8de 1334 nest = nla_nest_start_noflag(skb, TCA_ACT_TAB);
84ae017a
AA
1335 if (!nest) {
1336 NL_SET_ERR_MSG(extack, "Failed to add new netlink message");
8b00a53c 1337 goto out_module_put;
84ae017a 1338 }
1da177e4 1339
41780105 1340 err = ops->walk(net, skb, &dcb, RTM_DELACTION, ops, extack);
66dede2d
DC
1341 if (err <= 0) {
1342 nla_nest_cancel(skb, nest);
8b00a53c 1343 goto out_module_put;
66dede2d 1344 }
1da177e4 1345
4b3550ef 1346 nla_nest_end(skb, nest);
1da177e4 1347
27a884dc 1348 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1da177e4 1349 nlh->nlmsg_flags |= NLM_F_ROOT;
a85a970a 1350 module_put(ops->owner);
15e47304 1351 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
cc7ec456 1352 n->nlmsg_flags & NLM_F_ECHO);
1da177e4
LT
1353 if (err > 0)
1354 return 0;
84ae017a
AA
1355 if (err < 0)
1356 NL_SET_ERR_MSG(extack, "Failed to send TC action flush notification");
1da177e4
LT
1357
1358 return err;
1359
8b00a53c 1360out_module_put:
a85a970a 1361 module_put(ops->owner);
1da177e4
LT
1362err_out:
1363 kfree_skb(skb);
1da177e4
LT
1364 return err;
1365}
1366
b144e7ec 1367static int tcf_action_delete(struct net *net, struct tc_action *actions[])
16af6067 1368{
97a3f84f 1369 int i;
16af6067 1370
90b73b77
VB
1371 for (i = 0; i < TCA_ACT_MAX_PRIO && actions[i]; i++) {
1372 struct tc_action *a = actions[i];
16af6067 1373 const struct tc_action_ops *ops = a->ops;
16af6067
VB
1374 /* Actions can be deleted concurrently so we must save their
1375 * type and id to search again after reference is released.
1376 */
97a3f84f
CW
1377 struct tcf_idrinfo *idrinfo = a->idrinfo;
1378 u32 act_index = a->tcfa_index;
16af6067 1379
c10bbfae 1380 actions[i] = NULL;
16af6067
VB
1381 if (tcf_action_put(a)) {
1382 /* last reference, action was deleted concurrently */
1383 module_put(ops->owner);
1384 } else {
97a3f84f
CW
1385 int ret;
1386
16af6067 1387 /* now do the delete */
97a3f84f 1388 ret = tcf_idr_delete_index(idrinfo, act_index);
edfaf94f 1389 if (ret < 0)
16af6067
VB
1390 return ret;
1391 }
1392 }
1393 return 0;
1394}
1395
a56e1953 1396static int
90b73b77 1397tcf_del_notify(struct net *net, struct nlmsghdr *n, struct tc_action *actions[],
edfaf94f 1398 u32 portid, size_t attr_size, struct netlink_ext_ack *extack)
a56e1953
WC
1399{
1400 int ret;
1401 struct sk_buff *skb;
1402
d04e6990
RM
1403 skb = alloc_skb(attr_size <= NLMSG_GOODSIZE ? NLMSG_GOODSIZE : attr_size,
1404 GFP_KERNEL);
a56e1953
WC
1405 if (!skb)
1406 return -ENOBUFS;
1407
1408 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, RTM_DELACTION,
3f7c72bc 1409 0, 2) <= 0) {
84ae017a 1410 NL_SET_ERR_MSG(extack, "Failed to fill netlink TC action attributes");
a56e1953
WC
1411 kfree_skb(skb);
1412 return -EINVAL;
1413 }
1414
1415 /* now do the delete */
b144e7ec 1416 ret = tcf_action_delete(net, actions);
55334a5d 1417 if (ret < 0) {
84ae017a 1418 NL_SET_ERR_MSG(extack, "Failed to delete TC action");
55334a5d
WC
1419 kfree_skb(skb);
1420 return ret;
1421 }
a56e1953
WC
1422
1423 ret = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
1424 n->nlmsg_flags & NLM_F_ECHO);
1425 if (ret > 0)
1426 return 0;
1427 return ret;
1428}
1429
1da177e4 1430static int
7316ae88 1431tca_action_gd(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
84ae017a 1432 u32 portid, int event, struct netlink_ext_ack *extack)
1da177e4 1433{
cee63723 1434 int i, ret;
cc7ec456 1435 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
33be6271 1436 struct tc_action *act;
d04e6990 1437 size_t attr_size = 0;
edfaf94f 1438 struct tc_action *actions[TCA_ACT_MAX_PRIO] = {};
1da177e4 1439
8cb08174
JB
1440 ret = nla_parse_nested_deprecated(tb, TCA_ACT_MAX_PRIO, nla, NULL,
1441 extack);
cee63723
PM
1442 if (ret < 0)
1443 return ret;
1da177e4 1444
cc7ec456 1445 if (event == RTM_DELACTION && n->nlmsg_flags & NLM_F_ROOT) {
1af85155 1446 if (tb[1])
84ae017a 1447 return tca_action_flush(net, tb[1], n, portid, extack);
1af85155 1448
84ae017a 1449 NL_SET_ERR_MSG(extack, "Invalid netlink attributes while flushing TC action");
1af85155 1450 return -EINVAL;
1da177e4
LT
1451 }
1452
7ba699c6 1453 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
84ae017a 1454 act = tcf_action_get_1(net, tb[i], n, portid, extack);
ab27cfb8
PM
1455 if (IS_ERR(act)) {
1456 ret = PTR_ERR(act);
1da177e4 1457 goto err;
ab27cfb8 1458 }
4e76e75d 1459 attr_size += tcf_action_fill_size(act);
90b73b77 1460 actions[i - 1] = act;
1da177e4 1461 }
4e76e75d
RM
1462
1463 attr_size = tcf_action_full_attrs_size(attr_size);
1da177e4
LT
1464
1465 if (event == RTM_GETACTION)
90b73b77 1466 ret = tcf_get_notify(net, portid, n, actions, event, extack);
1da177e4 1467 else { /* delete */
edfaf94f 1468 ret = tcf_del_notify(net, n, actions, portid, attr_size, extack);
a56e1953 1469 if (ret)
1da177e4 1470 goto err;
edfaf94f 1471 return 0;
1da177e4
LT
1472 }
1473err:
edfaf94f 1474 tcf_action_put_many(actions);
1da177e4
LT
1475 return ret;
1476}
1477
a56e1953 1478static int
90b73b77 1479tcf_add_notify(struct net *net, struct nlmsghdr *n, struct tc_action *actions[],
d04e6990 1480 u32 portid, size_t attr_size, struct netlink_ext_ack *extack)
1da177e4 1481{
1da177e4 1482 struct sk_buff *skb;
1da177e4
LT
1483 int err = 0;
1484
d04e6990
RM
1485 skb = alloc_skb(attr_size <= NLMSG_GOODSIZE ? NLMSG_GOODSIZE : attr_size,
1486 GFP_KERNEL);
1da177e4
LT
1487 if (!skb)
1488 return -ENOBUFS;
1489
a56e1953
WC
1490 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, n->nlmsg_flags,
1491 RTM_NEWACTION, 0, 0) <= 0) {
d143b9e3 1492 NL_SET_ERR_MSG(extack, "Failed to fill netlink attributes while adding TC action");
a56e1953
WC
1493 kfree_skb(skb);
1494 return -EINVAL;
1495 }
10297b99 1496
a56e1953
WC
1497 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
1498 n->nlmsg_flags & NLM_F_ECHO);
1da177e4
LT
1499 if (err > 0)
1500 err = 0;
1501 return err;
1da177e4
LT
1502}
1503
5a7a5555 1504static int tcf_action_add(struct net *net, struct nlattr *nla,
aea0d727
AA
1505 struct nlmsghdr *n, u32 portid, int ovr,
1506 struct netlink_ext_ack *extack)
1da177e4 1507{
d04e6990 1508 size_t attr_size = 0;
87c750e8 1509 int loop, ret, i;
90b73b77 1510 struct tc_action *actions[TCA_ACT_MAX_PRIO] = {};
87c750e8 1511 int init_res[TCA_ACT_MAX_PRIO] = {};
1da177e4 1512
39f13ea2
ED
1513 for (loop = 0; loop < 10; loop++) {
1514 ret = tcf_action_init(net, NULL, nla, NULL, NULL, ovr, 0,
87c750e8 1515 actions, init_res, &attr_size, true, extack);
39f13ea2
ED
1516 if (ret != -EAGAIN)
1517 break;
1518 }
1519
90b73b77 1520 if (ret < 0)
f07fed82 1521 return ret;
90b73b77 1522 ret = tcf_add_notify(net, n, actions, portid, attr_size, extack);
87c750e8
VB
1523
1524 /* only put existing actions */
1525 for (i = 0; i < TCA_ACT_MAX_PRIO; i++)
1526 if (init_res[i] == ACT_P_CREATED)
1527 actions[i] = NULL;
1528 tcf_action_put_many(actions);
1da177e4 1529
cae422f3 1530 return ret;
1da177e4
LT
1531}
1532
90825b23 1533static const struct nla_policy tcaa_policy[TCA_ROOT_MAX + 1] = {
f460019b
VB
1534 [TCA_ROOT_FLAGS] = NLA_POLICY_BITFIELD32(TCA_ACT_FLAG_LARGE_DUMP_ON |
1535 TCA_ACT_FLAG_TERSE_DUMP),
e62e484d 1536 [TCA_ROOT_TIME_DELTA] = { .type = NLA_U32 },
90825b23
JHS
1537};
1538
c21ef3e3
DA
1539static int tc_ctl_action(struct sk_buff *skb, struct nlmsghdr *n,
1540 struct netlink_ext_ack *extack)
1da177e4 1541{
3b1e0a65 1542 struct net *net = sock_net(skb->sk);
90825b23 1543 struct nlattr *tca[TCA_ROOT_MAX + 1];
8bf15395 1544 u32 portid = NETLINK_CB(skb).portid;
1da177e4
LT
1545 int ret = 0, ovr = 0;
1546
0b0f43fe
JHS
1547 if ((n->nlmsg_type != RTM_GETACTION) &&
1548 !netlink_capable(skb, CAP_NET_ADMIN))
dfc47ef8
EB
1549 return -EPERM;
1550
8cb08174
JB
1551 ret = nlmsg_parse_deprecated(n, sizeof(struct tcamsg), tca,
1552 TCA_ROOT_MAX, NULL, extack);
7ba699c6
PM
1553 if (ret < 0)
1554 return ret;
1555
1556 if (tca[TCA_ACT_TAB] == NULL) {
84ae017a 1557 NL_SET_ERR_MSG(extack, "Netlink action attributes missing");
1da177e4
LT
1558 return -EINVAL;
1559 }
1560
cc7ec456 1561 /* n->nlmsg_flags & NLM_F_CREATE */
1da177e4
LT
1562 switch (n->nlmsg_type) {
1563 case RTM_NEWACTION:
1564 /* we are going to assume all other flags
25985edc 1565 * imply create only if it doesn't exist
1da177e4
LT
1566 * Note that CREATE | EXCL implies that
1567 * but since we want avoid ambiguity (eg when flags
1568 * is zero) then just set this
1569 */
cc7ec456 1570 if (n->nlmsg_flags & NLM_F_REPLACE)
1da177e4 1571 ovr = 1;
aea0d727
AA
1572 ret = tcf_action_add(net, tca[TCA_ACT_TAB], n, portid, ovr,
1573 extack);
1da177e4
LT
1574 break;
1575 case RTM_DELACTION:
7316ae88 1576 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
84ae017a 1577 portid, RTM_DELACTION, extack);
1da177e4
LT
1578 break;
1579 case RTM_GETACTION:
7316ae88 1580 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
84ae017a 1581 portid, RTM_GETACTION, extack);
1da177e4
LT
1582 break;
1583 default:
1584 BUG();
1585 }
1586
1587 return ret;
1588}
1589
90825b23 1590static struct nlattr *find_dump_kind(struct nlattr **nla)
1da177e4 1591{
cc7ec456 1592 struct nlattr *tb1, *tb2[TCA_ACT_MAX + 1];
7ba699c6 1593 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
7ba699c6 1594 struct nlattr *kind;
1da177e4 1595
7ba699c6 1596 tb1 = nla[TCA_ACT_TAB];
1da177e4
LT
1597 if (tb1 == NULL)
1598 return NULL;
1599
8cb08174 1600 if (nla_parse_deprecated(tb, TCA_ACT_MAX_PRIO, nla_data(tb1), NLMSG_ALIGN(nla_len(tb1)), NULL, NULL) < 0)
1da177e4 1601 return NULL;
1da177e4 1602
6d834e04
PM
1603 if (tb[1] == NULL)
1604 return NULL;
199ce850 1605 if (nla_parse_nested_deprecated(tb2, TCA_ACT_MAX, tb[1], tcf_action_policy, NULL) < 0)
1da177e4 1606 return NULL;
7ba699c6 1607 kind = tb2[TCA_ACT_KIND];
1da177e4 1608
26dab893 1609 return kind;
1da177e4
LT
1610}
1611
5a7a5555 1612static int tc_dump_action(struct sk_buff *skb, struct netlink_callback *cb)
1da177e4 1613{
ddf97ccd 1614 struct net *net = sock_net(skb->sk);
1da177e4 1615 struct nlmsghdr *nlh;
27a884dc 1616 unsigned char *b = skb_tail_pointer(skb);
4b3550ef 1617 struct nlattr *nest;
1da177e4 1618 struct tc_action_ops *a_o;
1da177e4 1619 int ret = 0;
8b00a53c 1620 struct tcamsg *t = (struct tcamsg *) nlmsg_data(cb->nlh);
90825b23
JHS
1621 struct nlattr *tb[TCA_ROOT_MAX + 1];
1622 struct nlattr *count_attr = NULL;
e62e484d 1623 unsigned long jiffy_since = 0;
90825b23
JHS
1624 struct nlattr *kind = NULL;
1625 struct nla_bitfield32 bf;
e62e484d 1626 u32 msecs_since = 0;
90825b23
JHS
1627 u32 act_count = 0;
1628
8cb08174
JB
1629 ret = nlmsg_parse_deprecated(cb->nlh, sizeof(struct tcamsg), tb,
1630 TCA_ROOT_MAX, tcaa_policy, cb->extack);
90825b23
JHS
1631 if (ret < 0)
1632 return ret;
1da177e4 1633
90825b23 1634 kind = find_dump_kind(tb);
1da177e4 1635 if (kind == NULL) {
6ff9c364 1636 pr_info("tc_dump_action: action bad kind\n");
1da177e4
LT
1637 return 0;
1638 }
1639
26dab893 1640 a_o = tc_lookup_action(kind);
cc7ec456 1641 if (a_o == NULL)
1da177e4 1642 return 0;
1da177e4 1643
90825b23
JHS
1644 cb->args[2] = 0;
1645 if (tb[TCA_ROOT_FLAGS]) {
1646 bf = nla_get_bitfield32(tb[TCA_ROOT_FLAGS]);
1647 cb->args[2] = bf.value;
1648 }
1649
e62e484d
JHS
1650 if (tb[TCA_ROOT_TIME_DELTA]) {
1651 msecs_since = nla_get_u32(tb[TCA_ROOT_TIME_DELTA]);
1652 }
1653
15e47304 1654 nlh = nlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
8b00a53c
DM
1655 cb->nlh->nlmsg_type, sizeof(*t), 0);
1656 if (!nlh)
1657 goto out_module_put;
90825b23 1658
e62e484d
JHS
1659 if (msecs_since)
1660 jiffy_since = jiffies - msecs_to_jiffies(msecs_since);
1661
8b00a53c 1662 t = nlmsg_data(nlh);
1da177e4 1663 t->tca_family = AF_UNSPEC;
9ef1d4c7
PM
1664 t->tca__pad1 = 0;
1665 t->tca__pad2 = 0;
e62e484d 1666 cb->args[3] = jiffy_since;
90825b23
JHS
1667 count_attr = nla_reserve(skb, TCA_ROOT_COUNT, sizeof(u32));
1668 if (!count_attr)
1669 goto out_module_put;
1da177e4 1670
ae0be8de 1671 nest = nla_nest_start_noflag(skb, TCA_ACT_TAB);
4b3550ef 1672 if (nest == NULL)
8b00a53c 1673 goto out_module_put;
1da177e4 1674
41780105 1675 ret = a_o->walk(net, skb, cb, RTM_GETACTION, a_o, NULL);
1da177e4 1676 if (ret < 0)
8b00a53c 1677 goto out_module_put;
1da177e4
LT
1678
1679 if (ret > 0) {
4b3550ef 1680 nla_nest_end(skb, nest);
1da177e4 1681 ret = skb->len;
90825b23
JHS
1682 act_count = cb->args[1];
1683 memcpy(nla_data(count_attr), &act_count, sizeof(u32));
1684 cb->args[1] = 0;
1da177e4 1685 } else
ebecaa66 1686 nlmsg_trim(skb, b);
1da177e4 1687
27a884dc 1688 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
15e47304 1689 if (NETLINK_CB(cb->skb).portid && ret)
1da177e4
LT
1690 nlh->nlmsg_flags |= NLM_F_MULTI;
1691 module_put(a_o->owner);
1692 return skb->len;
1693
8b00a53c 1694out_module_put:
1da177e4 1695 module_put(a_o->owner);
dc5fc579 1696 nlmsg_trim(skb, b);
1da177e4
LT
1697 return skb->len;
1698}
1699
1700static int __init tc_action_init(void)
1701{
b97bac64
FW
1702 rtnl_register(PF_UNSPEC, RTM_NEWACTION, tc_ctl_action, NULL, 0);
1703 rtnl_register(PF_UNSPEC, RTM_DELACTION, tc_ctl_action, NULL, 0);
c7ac8679 1704 rtnl_register(PF_UNSPEC, RTM_GETACTION, tc_ctl_action, tc_dump_action,
b97bac64 1705 0);
1da177e4 1706
1da177e4
LT
1707 return 0;
1708}
1709
1710subsys_initcall(tc_action_init);