blob: b919826939e0bd4e3b5fc986f024b3e1f0f5e4c6 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * net/sched/act_api.c Packet action API.
4 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author: Jamal Hadi Salim
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/types.h>
9#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/errno.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/init.h>
15#include <linux/kmod.h>
Patrick McHardyab27cfb2008-01-23 20:33:13 -080016#include <linux/err.h>
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040017#include <linux/module.h>
Denis V. Lunevb8542722007-12-01 00:21:31 +110018#include <net/net_namespace.h>
19#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <net/sch_generic.h>
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -050021#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <net/act_api.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070023#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
wenxuc1294122020-11-25 12:01:23 +080025#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
Jiri Pirkodb505142017-05-17 11:08:03 +020041static void tcf_action_goto_chain_exec(const struct tc_action *a,
42 struct tcf_result *res)
43{
Davide Carattiee3bbfe2019-03-20 15:00:16 +010044 const struct tcf_chain *chain = rcu_dereference_bh(a->goto_chain);
Jiri Pirkodb505142017-05-17 11:08:03 +020045
46 res->goto_tp = rcu_dereference_bh(chain->filter_chain);
47}
48
Vlad Busloveec94fd2018-07-05 17:24:23 +030049static 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
David S. Miller0dbc81e2018-07-08 17:02:59 +090062 old = xchg((__force struct tc_cookie **)old_cookie, new_cookie);
Vlad Busloveec94fd2018-07-05 17:24:23 +030063 if (old)
64 call_rcu(&old->rcu, tcf_free_cookie_rcu);
65}
66
Davide Caratti85d09662019-03-20 14:59:59 +010067int 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,
Davide Carattiee3bbfe2019-03-20 15:00:16 +0100104 struct tcf_chain *goto_chain)
Davide Caratti85d09662019-03-20 14:59:59 +0100105{
Davide Caratti85d09662019-03-20 14:59:59 +0100106 a->tcfa_action = action;
Paul E. McKenney445d3742019-09-23 16:09:18 -0700107 goto_chain = rcu_replace_pointer(a->goto_chain, goto_chain, 1);
Davide Carattiee3bbfe2019-03-20 15:00:16 +0100108 return goto_chain;
Davide Caratti85d09662019-03-20 14:59:59 +0100109}
110EXPORT_SYMBOL(tcf_action_set_ctrlact);
111
Cong Wangd7fb60b2017-09-11 16:33:30 -0700112/* 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)
Eric Dumazet519c8182015-07-06 05:18:04 -0700118{
Davide Carattiee3bbfe2019-03-20 15:00:16 +0100119 struct tcf_chain *chain = rcu_dereference_protected(p->goto_chain, 1);
Davide Caratti85d09662019-03-20 14:59:59 +0100120
Eric Dumazet519c8182015-07-06 05:18:04 -0700121 free_percpu(p->cpu_bstats);
Eelco Chaudron28169ab2018-09-21 07:14:02 -0400122 free_percpu(p->cpu_bstats_hw);
Eric Dumazet519c8182015-07-06 05:18:04 -0700123 free_percpu(p->cpu_qstats);
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500124
Vlad Busloveec94fd2018-07-05 17:24:23 +0300125 tcf_set_action_cookie(&p->act_cookie, NULL);
Davide Caratti85d09662019-03-20 14:59:59 +0100126 if (chain)
127 tcf_chain_put_by_act(chain);
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500128
Eric Dumazet519c8182015-07-06 05:18:04 -0700129 kfree(p);
130}
131
Vlad Buslov16af6062018-07-05 17:24:29 +0300132static void tcf_action_cleanup(struct tc_action *p)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700133{
Vlad Buslov16af6062018-07-05 17:24:29 +0300134 if (p->ops->cleanup)
135 p->ops->cleanup(p);
136
Eric Dumazet1c0d32f2016-12-04 09:48:16 -0800137 gen_kill_estimator(&p->tcfa_rate_est);
Cong Wangd7fb60b2017-09-11 16:33:30 -0700138 free_tcf(p);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700139}
David S. Millere9ce1cd2006-08-21 23:54:55 -0700140
Vlad Buslov16af6062018-07-05 17:24:29 +0300141static int __tcf_action_put(struct tc_action *p, bool bind)
142{
143 struct tcf_idrinfo *idrinfo = p->idrinfo;
144
Cong Wang95278dd2018-10-02 12:50:19 -0700145 if (refcount_dec_and_mutex_lock(&p->tcfa_refcnt, &idrinfo->lock)) {
Vlad Buslov16af6062018-07-05 17:24:29 +0300146 if (bind)
147 atomic_dec(&p->tcfa_bindcnt);
148 idr_remove(&idrinfo->action_idr, p->tcfa_index);
Cong Wang95278dd2018-10-02 12:50:19 -0700149 mutex_unlock(&idrinfo->lock);
Vlad Buslov16af6062018-07-05 17:24:29 +0300150
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
Chris Mi65a206c2017-08-30 02:31:59 -0400161int __tcf_idr_release(struct tc_action *p, bool bind, bool strict)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700162{
163 int ret = 0;
164
Vlad Buslov036bb442018-07-05 17:24:24 +0300165 /* 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 */
David S. Millere9ce1cd2006-08-21 23:54:55 -0700177 if (p) {
Vlad Buslov16af6062018-07-05 17:24:29 +0300178 if (!bind && strict && atomic_read(&p->tcfa_bindcnt) > 0)
WANG Cong55334a52014-02-11 17:07:34 -0800179 return -EPERM;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700180
Vlad Buslov16af6062018-07-05 17:24:29 +0300181 if (__tcf_action_put(p, bind))
WANG Cong1d4150c2016-02-22 15:57:52 -0800182 ret = ACT_P_DELETED;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700183 }
Daniel Borkmann28e6b672015-07-29 23:35:25 +0200184
David S. Millere9ce1cd2006-08-21 23:54:55 -0700185 return ret;
186}
Chris Mi65a206c2017-08-30 02:31:59 -0400187EXPORT_SYMBOL(__tcf_idr_release);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700188
Roman Mashak4e76e752018-03-08 16:59:19 -0500189static size_t tcf_action_shared_attrs_size(const struct tc_action *act)
190{
Vlad Buslove0479b62018-07-09 20:26:47 +0300191 struct tc_cookie *act_cookie;
Roman Mashak4e76e752018-03-08 16:59:19 -0500192 u32 cookie_len = 0;
193
Vlad Buslove0479b62018-07-09 20:26:47 +0300194 rcu_read_lock();
195 act_cookie = rcu_dereference(act->act_cookie);
196
197 if (act_cookie)
198 cookie_len = nla_total_size(act_cookie->len);
199 rcu_read_unlock();
Roman Mashak4e76e752018-03-08 16:59:19 -0500200
201 return nla_total_size(0) /* action number nested */
202 + nla_total_size(IFNAMSIZ) /* TCA_ACT_KIND */
203 + cookie_len /* TCA_ACT_COOKIE */
Jakub Kicinski0dfb2d82020-03-19 16:26:23 -0700204 + nla_total_size(sizeof(struct nla_bitfield32)) /* TCA_ACT_HW_STATS */
Roman Mashak4e76e752018-03-08 16:59:19 -0500205 + nla_total_size(0) /* TCA_ACT_STATS nested */
Jiri Pirko1521a672020-02-25 13:54:12 +0100206 + nla_total_size(sizeof(struct nla_bitfield32)) /* TCA_ACT_FLAGS */
Roman Mashak4e76e752018-03-08 16:59:19 -0500207 /* TCA_STATS_BASIC */
208 + nla_total_size_64bit(sizeof(struct gnet_stats_basic))
Eric Dumazetb33e6992019-11-04 19:13:15 -0800209 /* TCA_STATS_PKT64 */
210 + nla_total_size_64bit(sizeof(u64))
Roman Mashak4e76e752018-03-08 16:59:19 -0500211 /* TCA_STATS_QUEUE */
212 + nla_total_size_64bit(sizeof(struct gnet_stats_queue))
213 + nla_total_size(0) /* TCA_OPTIONS nested */
214 + nla_total_size(sizeof(struct tcf_t)); /* TCA_GACT_TM */
215}
216
217static size_t tcf_action_full_attrs_size(size_t sz)
218{
219 return NLMSG_HDRLEN /* struct nlmsghdr */
220 + sizeof(struct tcamsg)
221 + nla_total_size(0) /* TCA_ACT_TAB nested */
222 + sz;
223}
224
225static size_t tcf_action_fill_size(const struct tc_action *act)
226{
227 size_t sz = tcf_action_shared_attrs_size(act);
228
229 if (act->ops->get_fill_size)
230 return act->ops->get_fill_size(act) + sz;
231 return sz;
232}
233
Vlad Buslov94f44f22020-11-02 22:12:43 +0200234static int
235tcf_action_dump_terse(struct sk_buff *skb, struct tc_action *a, bool from_act)
236{
237 unsigned char *b = skb_tail_pointer(skb);
238 struct tc_cookie *cookie;
239
240 if (nla_put_string(skb, TCA_KIND, a->ops->kind))
241 goto nla_put_failure;
242 if (tcf_action_copy_stats(skb, a, 0))
243 goto nla_put_failure;
244 if (from_act && nla_put_u32(skb, TCA_ACT_INDEX, a->tcfa_index))
245 goto nla_put_failure;
246
247 rcu_read_lock();
248 cookie = rcu_dereference(a->act_cookie);
249 if (cookie) {
250 if (nla_put(skb, TCA_ACT_COOKIE, cookie->len, cookie->data)) {
251 rcu_read_unlock();
252 goto nla_put_failure;
253 }
254 }
255 rcu_read_unlock();
256
257 return 0;
258
259nla_put_failure:
260 nlmsg_trim(skb, b);
261 return -1;
262}
263
Chris Mi65a206c2017-08-30 02:31:59 -0400264static int tcf_dump_walker(struct tcf_idrinfo *idrinfo, struct sk_buff *skb,
WANG Conga85a9702016-07-25 16:09:41 -0700265 struct netlink_callback *cb)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700266{
Chris Mi65a206c2017-08-30 02:31:59 -0400267 int err = 0, index = -1, s_i = 0, n_i = 0;
Jamal Hadi Salim90825b22017-07-30 13:24:51 -0400268 u32 act_flags = cb->args[2];
Jamal Hadi Salime62e4842017-07-30 13:24:52 -0400269 unsigned long jiffy_since = cb->args[3];
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800270 struct nlattr *nest;
Chris Mi65a206c2017-08-30 02:31:59 -0400271 struct idr *idr = &idrinfo->action_idr;
272 struct tc_action *p;
273 unsigned long id = 1;
Cong Wange33d2b72019-06-28 11:03:41 -0700274 unsigned long tmp;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700275
Cong Wang95278dd2018-10-02 12:50:19 -0700276 mutex_lock(&idrinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700277
278 s_i = cb->args[0];
279
Cong Wange33d2b72019-06-28 11:03:41 -0700280 idr_for_each_entry_ul(idr, p, tmp, id) {
Chris Mi65a206c2017-08-30 02:31:59 -0400281 index++;
282 if (index < s_i)
283 continue;
Cong Wang580e4272020-10-02 12:13:34 -0700284 if (IS_ERR(p))
285 continue;
WANG Conga85a9702016-07-25 16:09:41 -0700286
Chris Mi65a206c2017-08-30 02:31:59 -0400287 if (jiffy_since &&
288 time_after(jiffy_since,
289 (unsigned long)p->tcfa_tm.lastuse))
290 continue;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700291
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200292 nest = nla_nest_start_noflag(skb, n_i);
Craig Dillabaugh734549e2018-03-26 14:58:32 -0400293 if (!nest) {
294 index--;
Chris Mi65a206c2017-08-30 02:31:59 -0400295 goto nla_put_failure;
Craig Dillabaugh734549e2018-03-26 14:58:32 -0400296 }
Vlad Buslovf4600192020-11-24 18:40:54 +0200297 err = (act_flags & TCA_ACT_FLAG_TERSE_DUMP) ?
Vlad Buslov94f44f22020-11-02 22:12:43 +0200298 tcf_action_dump_terse(skb, p, true) :
299 tcf_action_dump_1(skb, p, 0, 0);
Chris Mi65a206c2017-08-30 02:31:59 -0400300 if (err < 0) {
301 index--;
302 nlmsg_trim(skb, nest);
303 goto done;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700304 }
Chris Mi65a206c2017-08-30 02:31:59 -0400305 nla_nest_end(skb, nest);
306 n_i++;
Vlad Buslovf4600192020-11-24 18:40:54 +0200307 if (!(act_flags & TCA_ACT_FLAG_LARGE_DUMP_ON) &&
Chris Mi65a206c2017-08-30 02:31:59 -0400308 n_i >= TCA_ACT_MAX_PRIO)
309 goto done;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700310 }
311done:
Jamal Hadi Salime62e4842017-07-30 13:24:52 -0400312 if (index >= 0)
313 cb->args[0] = index + 1;
314
Cong Wang95278dd2018-10-02 12:50:19 -0700315 mutex_unlock(&idrinfo->lock);
Jamal Hadi Salim90825b22017-07-30 13:24:51 -0400316 if (n_i) {
Vlad Buslovf4600192020-11-24 18:40:54 +0200317 if (act_flags & TCA_ACT_FLAG_LARGE_DUMP_ON)
Jamal Hadi Salim90825b22017-07-30 13:24:51 -0400318 cb->args[1] = n_i;
319 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700320 return n_i;
321
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800322nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800323 nla_nest_cancel(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700324 goto done;
325}
326
Vlad Buslovec3ed292018-09-19 16:37:29 -0700327static int tcf_idr_release_unsafe(struct tc_action *p)
328{
329 if (atomic_read(&p->tcfa_bindcnt) > 0)
330 return -EPERM;
331
332 if (refcount_dec_and_test(&p->tcfa_refcnt)) {
333 idr_remove(&p->idrinfo->action_idr, p->tcfa_index);
334 tcf_action_cleanup(p);
335 return ACT_P_DELETED;
336 }
337
338 return 0;
339}
340
Chris Mi65a206c2017-08-30 02:31:59 -0400341static int tcf_del_walker(struct tcf_idrinfo *idrinfo, struct sk_buff *skb,
WANG Conga85a9702016-07-25 16:09:41 -0700342 const struct tc_action_ops *ops)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700343{
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800344 struct nlattr *nest;
Chris Mi65a206c2017-08-30 02:31:59 -0400345 int n_i = 0;
WANG Cong55334a52014-02-11 17:07:34 -0800346 int ret = -EINVAL;
Chris Mi65a206c2017-08-30 02:31:59 -0400347 struct idr *idr = &idrinfo->action_idr;
348 struct tc_action *p;
349 unsigned long id = 1;
Cong Wange33d2b72019-06-28 11:03:41 -0700350 unsigned long tmp;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700351
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200352 nest = nla_nest_start_noflag(skb, 0);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800353 if (nest == NULL)
354 goto nla_put_failure;
WANG Conga85a9702016-07-25 16:09:41 -0700355 if (nla_put_string(skb, TCA_KIND, ops->kind))
David S. Miller1b34ec42012-03-29 05:11:39 -0400356 goto nla_put_failure;
WANG Conga85a9702016-07-25 16:09:41 -0700357
Cong Wang95278dd2018-10-02 12:50:19 -0700358 mutex_lock(&idrinfo->lock);
Cong Wange33d2b72019-06-28 11:03:41 -0700359 idr_for_each_entry_ul(idr, p, tmp, id) {
Cong Wang0fedc632020-09-22 20:56:24 -0700360 if (IS_ERR(p))
361 continue;
Vlad Buslovec3ed292018-09-19 16:37:29 -0700362 ret = tcf_idr_release_unsafe(p);
Chris Mi65a206c2017-08-30 02:31:59 -0400363 if (ret == ACT_P_DELETED) {
Jiri Pirko255cd502017-09-13 17:32:37 +0200364 module_put(ops->owner);
Chris Mi65a206c2017-08-30 02:31:59 -0400365 n_i++;
366 } else if (ret < 0) {
Cong Wang95278dd2018-10-02 12:50:19 -0700367 mutex_unlock(&idrinfo->lock);
Chris Mi65a206c2017-08-30 02:31:59 -0400368 goto nla_put_failure;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700369 }
370 }
Cong Wang95278dd2018-10-02 12:50:19 -0700371 mutex_unlock(&idrinfo->lock);
Vlad Buslovec3ed292018-09-19 16:37:29 -0700372
David S. Miller1b34ec42012-03-29 05:11:39 -0400373 if (nla_put_u32(skb, TCA_FCNT, n_i))
374 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800375 nla_nest_end(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700376
377 return n_i;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800378nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800379 nla_nest_cancel(skb, nest);
WANG Cong55334a52014-02-11 17:07:34 -0800380 return ret;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700381}
382
WANG Congddf97cc2016-02-22 15:57:53 -0800383int tcf_generic_walker(struct tc_action_net *tn, struct sk_buff *skb,
384 struct netlink_callback *cb, int type,
Alexander Aringb3620142018-02-15 10:54:59 -0500385 const struct tc_action_ops *ops,
386 struct netlink_ext_ack *extack)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700387{
Chris Mi65a206c2017-08-30 02:31:59 -0400388 struct tcf_idrinfo *idrinfo = tn->idrinfo;
WANG Congddf97cc2016-02-22 15:57:53 -0800389
David S. Millere9ce1cd2006-08-21 23:54:55 -0700390 if (type == RTM_DELACTION) {
Chris Mi65a206c2017-08-30 02:31:59 -0400391 return tcf_del_walker(idrinfo, skb, ops);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700392 } else if (type == RTM_GETACTION) {
Chris Mi65a206c2017-08-30 02:31:59 -0400393 return tcf_dump_walker(idrinfo, skb, cb);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700394 } else {
Alexander Aringb3620142018-02-15 10:54:59 -0500395 WARN(1, "tcf_generic_walker: unknown command %d\n", type);
396 NL_SET_ERR_MSG(extack, "tcf_generic_walker: unknown command");
David S. Millere9ce1cd2006-08-21 23:54:55 -0700397 return -EINVAL;
398 }
399}
WANG Congddf97cc2016-02-22 15:57:53 -0800400EXPORT_SYMBOL(tcf_generic_walker);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700401
Cong Wang7d485c42018-08-19 12:22:08 -0700402int tcf_idr_search(struct tc_action_net *tn, struct tc_action **a, u32 index)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700403{
Vlad Buslov3f7c72b2018-07-05 17:24:26 +0300404 struct tcf_idrinfo *idrinfo = tn->idrinfo;
405 struct tc_action *p;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700406
Cong Wang95278dd2018-10-02 12:50:19 -0700407 mutex_lock(&idrinfo->lock);
Matthew Wilcox322d8842017-11-28 10:01:24 -0500408 p = idr_find(&idrinfo->action_idr, index);
Cong Wang7d485c42018-08-19 12:22:08 -0700409 if (IS_ERR(p))
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300410 p = NULL;
Cong Wang7d485c42018-08-19 12:22:08 -0700411 else if (p)
Vlad Buslov3f7c72b2018-07-05 17:24:26 +0300412 refcount_inc(&p->tcfa_refcnt);
Cong Wang95278dd2018-10-02 12:50:19 -0700413 mutex_unlock(&idrinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700414
Vlad Buslov3f7c72b2018-07-05 17:24:26 +0300415 if (p) {
416 *a = p;
417 return true;
418 }
419 return false;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700420}
Chris Mi65a206c2017-08-30 02:31:59 -0400421EXPORT_SYMBOL(tcf_idr_search);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700422
Cong Wang97a3f84f2018-08-19 12:22:06 -0700423static int tcf_idr_delete_index(struct tcf_idrinfo *idrinfo, u32 index)
Vlad Buslov2a2ea342018-07-05 17:24:27 +0300424{
Vlad Buslov2a2ea342018-07-05 17:24:27 +0300425 struct tc_action *p;
426 int ret = 0;
427
Cong Wang95278dd2018-10-02 12:50:19 -0700428 mutex_lock(&idrinfo->lock);
Vlad Buslov2a2ea342018-07-05 17:24:27 +0300429 p = idr_find(&idrinfo->action_idr, index);
430 if (!p) {
Cong Wang95278dd2018-10-02 12:50:19 -0700431 mutex_unlock(&idrinfo->lock);
Vlad Buslov2a2ea342018-07-05 17:24:27 +0300432 return -ENOENT;
433 }
434
435 if (!atomic_read(&p->tcfa_bindcnt)) {
436 if (refcount_dec_and_test(&p->tcfa_refcnt)) {
437 struct module *owner = p->ops->owner;
438
439 WARN_ON(p != idr_remove(&idrinfo->action_idr,
440 p->tcfa_index));
Cong Wang95278dd2018-10-02 12:50:19 -0700441 mutex_unlock(&idrinfo->lock);
Vlad Buslov2a2ea342018-07-05 17:24:27 +0300442
Vlad Buslov16af6062018-07-05 17:24:29 +0300443 tcf_action_cleanup(p);
Vlad Buslov2a2ea342018-07-05 17:24:27 +0300444 module_put(owner);
445 return 0;
446 }
447 ret = 0;
448 } else {
449 ret = -EPERM;
450 }
451
Cong Wang95278dd2018-10-02 12:50:19 -0700452 mutex_unlock(&idrinfo->lock);
Vlad Buslov2a2ea342018-07-05 17:24:27 +0300453 return ret;
454}
Vlad Buslov2a2ea342018-07-05 17:24:27 +0300455
Chris Mi65a206c2017-08-30 02:31:59 -0400456int tcf_idr_create(struct tc_action_net *tn, u32 index, struct nlattr *est,
457 struct tc_action **a, const struct tc_action_ops *ops,
Vlad Buslove3822672019-10-30 16:09:06 +0200458 int bind, bool cpustats, u32 flags)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700459{
WANG Congec0595c2016-07-25 16:09:42 -0700460 struct tc_action *p = kzalloc(ops->size, GFP_KERNEL);
Chris Mi65a206c2017-08-30 02:31:59 -0400461 struct tcf_idrinfo *idrinfo = tn->idrinfo;
Eric Dumazet519c8182015-07-06 05:18:04 -0700462 int err = -ENOMEM;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700463
464 if (unlikely(!p))
WANG Cong86062032014-02-11 17:07:31 -0800465 return -ENOMEM;
Vlad Buslov036bb442018-07-05 17:24:24 +0300466 refcount_set(&p->tcfa_refcnt, 1);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700467 if (bind)
Vlad Buslov036bb442018-07-05 17:24:24 +0300468 atomic_set(&p->tcfa_bindcnt, 1);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700469
Eric Dumazet519c8182015-07-06 05:18:04 -0700470 if (cpustats) {
471 p->cpu_bstats = netdev_alloc_pcpu_stats(struct gnet_stats_basic_cpu);
Matthew Wilcox339913a2017-11-28 10:28:15 -0500472 if (!p->cpu_bstats)
Eric Dumazet519c8182015-07-06 05:18:04 -0700473 goto err1;
Eelco Chaudron28169ab2018-09-21 07:14:02 -0400474 p->cpu_bstats_hw = netdev_alloc_pcpu_stats(struct gnet_stats_basic_cpu);
475 if (!p->cpu_bstats_hw)
476 goto err2;
Matthew Wilcox339913a2017-11-28 10:28:15 -0500477 p->cpu_qstats = alloc_percpu(struct gnet_stats_queue);
478 if (!p->cpu_qstats)
Eelco Chaudron28169ab2018-09-21 07:14:02 -0400479 goto err3;
Eric Dumazet519c8182015-07-06 05:18:04 -0700480 }
WANG Congec0595c2016-07-25 16:09:42 -0700481 spin_lock_init(&p->tcfa_lock);
Matthew Wilcox339913a2017-11-28 10:28:15 -0500482 p->tcfa_index = index;
WANG Congec0595c2016-07-25 16:09:42 -0700483 p->tcfa_tm.install = jiffies;
484 p->tcfa_tm.lastuse = jiffies;
485 p->tcfa_tm.firstuse = 0;
Vlad Buslove3822672019-10-30 16:09:06 +0200486 p->tcfa_flags = flags;
Stephen Hemminger0e991ec2008-11-25 21:12:32 -0800487 if (est) {
WANG Congec0595c2016-07-25 16:09:42 -0700488 err = gen_new_estimator(&p->tcfa_bstats, p->cpu_bstats,
489 &p->tcfa_rate_est,
490 &p->tcfa_lock, NULL, est);
Matthew Wilcox339913a2017-11-28 10:28:15 -0500491 if (err)
Eelco Chaudron28169ab2018-09-21 07:14:02 -0400492 goto err4;
Stephen Hemminger0e991ec2008-11-25 21:12:32 -0800493 }
494
Chris Mi65a206c2017-08-30 02:31:59 -0400495 p->idrinfo = idrinfo;
WANG Congec0595c2016-07-25 16:09:42 -0700496 p->ops = ops;
WANG Congec0595c2016-07-25 16:09:42 -0700497 *a = p;
WANG Cong86062032014-02-11 17:07:31 -0800498 return 0;
Eelco Chaudron28169ab2018-09-21 07:14:02 -0400499err4:
Matthew Wilcox339913a2017-11-28 10:28:15 -0500500 free_percpu(p->cpu_qstats);
Eelco Chaudron28169ab2018-09-21 07:14:02 -0400501err3:
502 free_percpu(p->cpu_bstats_hw);
Matthew Wilcox339913a2017-11-28 10:28:15 -0500503err2:
504 free_percpu(p->cpu_bstats);
505err1:
506 kfree(p);
507 return err;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700508}
Chris Mi65a206c2017-08-30 02:31:59 -0400509EXPORT_SYMBOL(tcf_idr_create);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700510
Vlad Buslove3822672019-10-30 16:09:06 +0200511int tcf_idr_create_from_flags(struct tc_action_net *tn, u32 index,
512 struct nlattr *est, struct tc_action **a,
513 const struct tc_action_ops *ops, int bind,
514 u32 flags)
515{
516 /* Set cpustats according to actions flags. */
517 return tcf_idr_create(tn, index, est, a, ops, bind,
518 !(flags & TCA_ACT_FLAGS_NO_PERCPU_STATS), flags);
519}
520EXPORT_SYMBOL(tcf_idr_create_from_flags);
521
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300522/* Cleanup idr index that was allocated but not initialized. */
523
524void tcf_idr_cleanup(struct tc_action_net *tn, u32 index)
525{
526 struct tcf_idrinfo *idrinfo = tn->idrinfo;
527
Cong Wang95278dd2018-10-02 12:50:19 -0700528 mutex_lock(&idrinfo->lock);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300529 /* Remove ERR_PTR(-EBUSY) allocated by tcf_idr_check_alloc */
530 WARN_ON(!IS_ERR(idr_remove(&idrinfo->action_idr, index)));
Cong Wang95278dd2018-10-02 12:50:19 -0700531 mutex_unlock(&idrinfo->lock);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300532}
533EXPORT_SYMBOL(tcf_idr_cleanup);
534
535/* Check if action with specified index exists. If actions is found, increments
536 * its reference and bind counters, and return 1. Otherwise insert temporary
537 * error pointer (to prevent concurrent users from inserting actions with same
538 * index) and return 0.
539 */
540
541int tcf_idr_check_alloc(struct tc_action_net *tn, u32 *index,
542 struct tc_action **a, int bind)
543{
544 struct tcf_idrinfo *idrinfo = tn->idrinfo;
545 struct tc_action *p;
546 int ret;
547
548again:
Cong Wang95278dd2018-10-02 12:50:19 -0700549 mutex_lock(&idrinfo->lock);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300550 if (*index) {
551 p = idr_find(&idrinfo->action_idr, *index);
552 if (IS_ERR(p)) {
553 /* This means that another process allocated
554 * index but did not assign the pointer yet.
555 */
Cong Wang95278dd2018-10-02 12:50:19 -0700556 mutex_unlock(&idrinfo->lock);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300557 goto again;
558 }
559
560 if (p) {
561 refcount_inc(&p->tcfa_refcnt);
562 if (bind)
563 atomic_inc(&p->tcfa_bindcnt);
564 *a = p;
565 ret = 1;
566 } else {
567 *a = NULL;
568 ret = idr_alloc_u32(&idrinfo->action_idr, NULL, index,
Cong Wang95278dd2018-10-02 12:50:19 -0700569 *index, GFP_KERNEL);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300570 if (!ret)
571 idr_replace(&idrinfo->action_idr,
572 ERR_PTR(-EBUSY), *index);
573 }
574 } else {
575 *index = 1;
576 *a = NULL;
577 ret = idr_alloc_u32(&idrinfo->action_idr, NULL, index,
Cong Wang95278dd2018-10-02 12:50:19 -0700578 UINT_MAX, GFP_KERNEL);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300579 if (!ret)
580 idr_replace(&idrinfo->action_idr, ERR_PTR(-EBUSY),
581 *index);
582 }
Cong Wang95278dd2018-10-02 12:50:19 -0700583 mutex_unlock(&idrinfo->lock);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300584 return ret;
585}
586EXPORT_SYMBOL(tcf_idr_check_alloc);
587
Chris Mi65a206c2017-08-30 02:31:59 -0400588void tcf_idrinfo_destroy(const struct tc_action_ops *ops,
589 struct tcf_idrinfo *idrinfo)
WANG Cong1d4150c2016-02-22 15:57:52 -0800590{
Chris Mi65a206c2017-08-30 02:31:59 -0400591 struct idr *idr = &idrinfo->action_idr;
592 struct tc_action *p;
593 int ret;
594 unsigned long id = 1;
Cong Wange33d2b72019-06-28 11:03:41 -0700595 unsigned long tmp;
WANG Cong1d4150c2016-02-22 15:57:52 -0800596
Cong Wange33d2b72019-06-28 11:03:41 -0700597 idr_for_each_entry_ul(idr, p, tmp, id) {
Chris Mi65a206c2017-08-30 02:31:59 -0400598 ret = __tcf_idr_release(p, false, true);
599 if (ret == ACT_P_DELETED)
600 module_put(ops->owner);
601 else if (ret < 0)
602 return;
WANG Cong1d4150c2016-02-22 15:57:52 -0800603 }
Chris Mi65a206c2017-08-30 02:31:59 -0400604 idr_destroy(&idrinfo->action_idr);
WANG Cong1d4150c2016-02-22 15:57:52 -0800605}
Chris Mi65a206c2017-08-30 02:31:59 -0400606EXPORT_SYMBOL(tcf_idrinfo_destroy);
WANG Cong1d4150c2016-02-22 15:57:52 -0800607
WANG Cong1f747c22013-12-15 20:15:10 -0800608static LIST_HEAD(act_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609static DEFINE_RWLOCK(act_mod_lock);
610
WANG Congddf97cc2016-02-22 15:57:53 -0800611int tcf_register_action(struct tc_action_ops *act,
612 struct pernet_operations *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
WANG Cong1f747c22013-12-15 20:15:10 -0800614 struct tc_action_ops *a;
WANG Congddf97cc2016-02-22 15:57:53 -0800615 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
WANG Congddf97cc2016-02-22 15:57:53 -0800617 if (!act->act || !act->dump || !act->init || !act->walk || !act->lookup)
Jamal Hadi Salim76c82d72013-12-04 09:26:52 -0500618 return -EINVAL;
619
WANG Congab102b82016-10-11 10:56:45 -0700620 /* We have to register pernet ops before making the action ops visible,
621 * otherwise tcf_action_init_1() could get a partially initialized
622 * netns.
623 */
624 ret = register_pernet_subsys(ops);
625 if (ret)
626 return ret;
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 write_lock(&act_mod_lock);
WANG Cong1f747c22013-12-15 20:15:10 -0800629 list_for_each_entry(a, &act_base, head) {
Eli Coheneddd2cf2019-02-10 14:25:00 +0200630 if (act->id == a->id || (strcmp(act->kind, a->kind) == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 write_unlock(&act_mod_lock);
WANG Congab102b82016-10-11 10:56:45 -0700632 unregister_pernet_subsys(ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return -EEXIST;
634 }
635 }
WANG Cong1f747c22013-12-15 20:15:10 -0800636 list_add_tail(&act->head, &act_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 write_unlock(&act_mod_lock);
WANG Congddf97cc2016-02-22 15:57:53 -0800638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return 0;
640}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800641EXPORT_SYMBOL(tcf_register_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
WANG Congddf97cc2016-02-22 15:57:53 -0800643int tcf_unregister_action(struct tc_action_ops *act,
644 struct pernet_operations *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
WANG Cong1f747c22013-12-15 20:15:10 -0800646 struct tc_action_ops *a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 int err = -ENOENT;
648
649 write_lock(&act_mod_lock);
Eric Dumazeta7928662013-12-20 12:32:32 -0800650 list_for_each_entry(a, &act_base, head) {
651 if (a == act) {
652 list_del(&act->head);
653 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 break;
Eric Dumazeta7928662013-12-20 12:32:32 -0800655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657 write_unlock(&act_mod_lock);
WANG Congab102b82016-10-11 10:56:45 -0700658 if (!err)
659 unregister_pernet_subsys(ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return err;
661}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800662EXPORT_SYMBOL(tcf_unregister_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664/* lookup by name */
665static struct tc_action_ops *tc_lookup_action_n(char *kind)
666{
Eric Dumazeta7928662013-12-20 12:32:32 -0800667 struct tc_action_ops *a, *res = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 if (kind) {
670 read_lock(&act_mod_lock);
WANG Cong1f747c22013-12-15 20:15:10 -0800671 list_for_each_entry(a, &act_base, head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (strcmp(kind, a->kind) == 0) {
Eric Dumazeta7928662013-12-20 12:32:32 -0800673 if (try_module_get(a->owner))
674 res = a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 break;
676 }
677 }
678 read_unlock(&act_mod_lock);
679 }
Eric Dumazeta7928662013-12-20 12:32:32 -0800680 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800683/* lookup by nlattr */
684static struct tc_action_ops *tc_lookup_action(struct nlattr *kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Eric Dumazeta7928662013-12-20 12:32:32 -0800686 struct tc_action_ops *a, *res = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if (kind) {
689 read_lock(&act_mod_lock);
WANG Cong1f747c22013-12-15 20:15:10 -0800690 list_for_each_entry(a, &act_base, head) {
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800691 if (nla_strcmp(kind, a->kind) == 0) {
Eric Dumazeta7928662013-12-20 12:32:32 -0800692 if (try_module_get(a->owner))
693 res = a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 break;
695 }
696 }
697 read_unlock(&act_mod_lock);
698 }
Eric Dumazeta7928662013-12-20 12:32:32 -0800699 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Menglong Donge5a4b172020-11-09 02:02:17 -0500702/*TCA_ACT_MAX_PRIO is 32, there count up to 32 */
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400703#define TCA_ACT_MAX_PRIO_MASK 0x1FF
WANG Cong22dc13c2016-08-13 22:35:00 -0700704int tcf_action_exec(struct sk_buff *skb, struct tc_action **actions,
705 int nr_actions, struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400707 u32 jmp_prgcnt = 0;
708 u32 jmp_ttl = TCA_ACT_MAX_PRIO; /*matches actions per filter */
Jiri Pirkoec1a9cc2017-08-04 14:29:02 +0200709 int i;
710 int ret = TC_ACT_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Willem de Bruijne7246e12017-01-07 17:06:35 -0500712 if (skb_skip_tc_classify(skb))
713 return TC_ACT_OK;
714
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400715restart_act_graph:
WANG Cong22dc13c2016-08-13 22:35:00 -0700716 for (i = 0; i < nr_actions; i++) {
717 const struct tc_action *a = actions[i];
718
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400719 if (jmp_prgcnt > 0) {
720 jmp_prgcnt -= 1;
721 continue;
722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723repeat:
Jamal Hadi Salim63acd682013-12-23 08:02:12 -0500724 ret = a->ops->act(skb, a, res);
Jamal Hadi Salim63acd682013-12-23 08:02:12 -0500725 if (ret == TC_ACT_REPEAT)
726 goto repeat; /* we need a ttl - JHS */
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400727
Jiri Pirko9da32422017-05-02 10:12:00 +0200728 if (TC_ACT_EXT_CMP(ret, TC_ACT_JUMP)) {
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400729 jmp_prgcnt = ret & TCA_ACT_MAX_PRIO_MASK;
730 if (!jmp_prgcnt || (jmp_prgcnt > nr_actions)) {
731 /* faulty opcode, stop pipeline */
732 return TC_ACT_OK;
733 } else {
734 jmp_ttl -= 1;
735 if (jmp_ttl > 0)
736 goto restart_act_graph;
737 else /* faulty graph, stop pipeline */
738 return TC_ACT_OK;
739 }
Jiri Pirkodb505142017-05-17 11:08:03 +0200740 } else if (TC_ACT_EXT_CMP(ret, TC_ACT_GOTO_CHAIN)) {
Davide Carattiee3bbfe2019-03-20 15:00:16 +0100741 if (unlikely(!rcu_access_pointer(a->goto_chain))) {
742 net_warn_ratelimited("can't go to NULL chain!\n");
743 return TC_ACT_SHOT;
744 }
Jiri Pirkodb505142017-05-17 11:08:03 +0200745 tcf_action_goto_chain_exec(a, res);
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400746 }
747
Jamal Hadi Salim63acd682013-12-23 08:02:12 -0500748 if (ret != TC_ACT_PIPE)
Willem de Bruijne7246e12017-01-07 17:06:35 -0500749 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return ret;
753}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800754EXPORT_SYMBOL(tcf_action_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Vlad Buslov90b73b72018-07-05 17:24:33 +0300756int tcf_action_destroy(struct tc_action *actions[], int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Jiri Pirko255cd502017-09-13 17:32:37 +0200758 const struct tc_action_ops *ops;
Vlad Buslov90b73b72018-07-05 17:24:33 +0300759 struct tc_action *a;
760 int ret = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Vlad Buslov90b73b72018-07-05 17:24:33 +0300762 for (i = 0; i < TCA_ACT_MAX_PRIO && actions[i]; i++) {
763 a = actions[i];
764 actions[i] = NULL;
Jiri Pirko255cd502017-09-13 17:32:37 +0200765 ops = a->ops;
Chris Mi65a206c2017-08-30 02:31:59 -0400766 ret = __tcf_idr_release(a, bind, true);
WANG Cong55334a52014-02-11 17:07:34 -0800767 if (ret == ACT_P_DELETED)
Jiri Pirko255cd502017-09-13 17:32:37 +0200768 module_put(ops->owner);
WANG Cong55334a52014-02-11 17:07:34 -0800769 else if (ret < 0)
770 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
WANG Cong55334a52014-02-11 17:07:34 -0800772 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Vlad Buslov16af6062018-07-05 17:24:29 +0300775static int tcf_action_put(struct tc_action *p)
776{
777 return __tcf_action_put(p, false);
778}
779
Cong Wangedfaf942018-08-19 12:22:05 -0700780/* Put all actions in this array, skip those NULL's. */
Vlad Buslov90b73b72018-07-05 17:24:33 +0300781static void tcf_action_put_many(struct tc_action *actions[])
Vlad Buslovcae422f2018-07-05 17:24:31 +0300782{
Vlad Buslov90b73b72018-07-05 17:24:33 +0300783 int i;
Vlad Buslovcae422f2018-07-05 17:24:31 +0300784
Cong Wangedfaf942018-08-19 12:22:05 -0700785 for (i = 0; i < TCA_ACT_MAX_PRIO; i++) {
Vlad Buslov90b73b72018-07-05 17:24:33 +0300786 struct tc_action *a = actions[i];
Cong Wangedfaf942018-08-19 12:22:05 -0700787 const struct tc_action_ops *ops;
Vlad Buslovcae422f2018-07-05 17:24:31 +0300788
Cong Wangedfaf942018-08-19 12:22:05 -0700789 if (!a)
790 continue;
791 ops = a->ops;
Vlad Buslovcae422f2018-07-05 17:24:31 +0300792 if (tcf_action_put(a))
793 module_put(ops->owner);
794 }
795}
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797int
798tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
799{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return a->ops->dump(skb, a, bind, ref);
801}
802
Vlad Buslovca44b732020-05-15 14:40:12 +0300803int
804tcf_action_dump_1(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
805{
806 int err = -EINVAL;
807 unsigned char *b = skb_tail_pointer(skb);
808 struct nlattr *nest;
809
Vlad Buslov94f44f22020-11-02 22:12:43 +0200810 if (tcf_action_dump_terse(skb, a, false))
Vlad Buslovca44b732020-05-15 14:40:12 +0300811 goto nla_put_failure;
812
Jiri Pirko8953b072020-03-28 16:37:42 +0100813 if (a->hw_stats != TCA_ACT_HW_STATS_ANY &&
814 nla_put_bitfield32(skb, TCA_ACT_HW_STATS,
815 a->hw_stats, TCA_ACT_HW_STATS_ANY))
816 goto nla_put_failure;
Jiri Pirko44f86582020-03-07 12:40:20 +0100817
Jiri Pirko93a129e2020-03-28 16:37:43 +0100818 if (a->used_hw_stats_valid &&
819 nla_put_bitfield32(skb, TCA_ACT_USED_HW_STATS,
820 a->used_hw_stats, TCA_ACT_HW_STATS_ANY))
821 goto nla_put_failure;
822
Jiri Pirko8953b072020-03-28 16:37:42 +0100823 if (a->tcfa_flags &&
824 nla_put_bitfield32(skb, TCA_ACT_FLAGS,
825 a->tcfa_flags, a->tcfa_flags))
826 goto nla_put_failure;
Vlad Buslove3822672019-10-30 16:09:06 +0200827
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200828 nest = nla_nest_start_noflag(skb, TCA_OPTIONS);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800829 if (nest == NULL)
830 goto nla_put_failure;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000831 err = tcf_action_dump_old(skb, a, bind, ref);
832 if (err > 0) {
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800833 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return err;
835 }
836
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800837nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700838 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return -1;
840}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800841EXPORT_SYMBOL(tcf_action_dump_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Vlad Buslov90b73b72018-07-05 17:24:33 +0300843int tcf_action_dump(struct sk_buff *skb, struct tc_action *actions[],
Vlad Buslovca44b732020-05-15 14:40:12 +0300844 int bind, int ref, bool terse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 struct tc_action *a;
Vlad Buslov90b73b72018-07-05 17:24:33 +0300847 int err = -EINVAL, i;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800848 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Vlad Buslov90b73b72018-07-05 17:24:33 +0300850 for (i = 0; i < TCA_ACT_MAX_PRIO && actions[i]; i++) {
851 a = actions[i];
Vlad Buslov4097e9d22019-05-23 09:32:31 +0300852 nest = nla_nest_start_noflag(skb, i + 1);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800853 if (nest == NULL)
854 goto nla_put_failure;
Vlad Buslov94f44f22020-11-02 22:12:43 +0200855 err = terse ? tcf_action_dump_terse(skb, a, false) :
Vlad Buslovca44b732020-05-15 14:40:12 +0300856 tcf_action_dump_1(skb, a, bind, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (err < 0)
Thomas Graf4fe683f2006-07-05 20:47:28 -0700858 goto errout;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800859 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
861
862 return 0;
863
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800864nla_put_failure:
Thomas Graf4fe683f2006-07-05 20:47:28 -0700865 err = -EINVAL;
866errout:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800867 nla_nest_cancel(skb, nest);
Thomas Graf4fe683f2006-07-05 20:47:28 -0700868 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200871static struct tc_cookie *nla_memdup_cookie(struct nlattr **tb)
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500872{
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200873 struct tc_cookie *c = kzalloc(sizeof(*c), GFP_KERNEL);
874 if (!c)
875 return NULL;
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500876
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200877 c->data = nla_memdup(tb[TCA_ACT_COOKIE], GFP_KERNEL);
878 if (!c->data) {
879 kfree(c);
880 return NULL;
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500881 }
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200882 c->len = nla_len(tb[TCA_ACT_COOKIE]);
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500883
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200884 return c;
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500885}
886
Jakub Kicinski0dfb2d82020-03-19 16:26:23 -0700887static u8 tcf_action_hw_stats_get(struct nlattr *hw_stats_attr)
Jiri Pirko44f86582020-03-07 12:40:20 +0100888{
Jakub Kicinski0dfb2d82020-03-19 16:26:23 -0700889 struct nla_bitfield32 hw_stats_bf;
Jiri Pirko44f86582020-03-07 12:40:20 +0100890
891 /* If the user did not pass the attr, that means he does
892 * not care about the type. Return "any" in that case
893 * which is setting on all supported types.
894 */
Jakub Kicinski0dfb2d82020-03-19 16:26:23 -0700895 if (!hw_stats_attr)
896 return TCA_ACT_HW_STATS_ANY;
897 hw_stats_bf = nla_get_bitfield32(hw_stats_attr);
898 return hw_stats_bf.value;
Jiri Pirko44f86582020-03-07 12:40:20 +0100899}
900
Cong Wang199ce852019-09-18 18:44:43 -0700901static const struct nla_policy tcf_action_policy[TCA_ACT_MAX + 1] = {
Cong Wang4b793fe2019-10-07 13:26:29 -0700902 [TCA_ACT_KIND] = { .type = NLA_STRING },
Cong Wang199ce852019-09-18 18:44:43 -0700903 [TCA_ACT_INDEX] = { .type = NLA_U32 },
904 [TCA_ACT_COOKIE] = { .type = NLA_BINARY,
905 .len = TC_COOKIE_MAX_SIZE },
906 [TCA_ACT_OPTIONS] = { .type = NLA_NESTED },
Johannes Berg47a14942020-04-30 22:13:05 +0200907 [TCA_ACT_FLAGS] = NLA_POLICY_BITFIELD32(TCA_ACT_FLAGS_NO_PERCPU_STATS),
908 [TCA_ACT_HW_STATS] = NLA_POLICY_BITFIELD32(TCA_ACT_HW_STATS_ANY),
Cong Wang199ce852019-09-18 18:44:43 -0700909};
910
Vlad Buslov396d7f22021-02-16 18:22:00 +0200911void tcf_idr_insert_many(struct tc_action *actions[])
Cong Wange49d8c22020-09-22 20:56:23 -0700912{
Cong Wang0fedc632020-09-22 20:56:24 -0700913 int i;
Cong Wange49d8c22020-09-22 20:56:23 -0700914
Cong Wang0fedc632020-09-22 20:56:24 -0700915 for (i = 0; i < TCA_ACT_MAX_PRIO; i++) {
916 struct tc_action *a = actions[i];
917 struct tcf_idrinfo *idrinfo;
918
919 if (!a)
920 continue;
921 idrinfo = a->idrinfo;
922 mutex_lock(&idrinfo->lock);
923 /* Replace ERR_PTR(-EBUSY) allocated by tcf_idr_check_alloc if
924 * it is just created, otherwise this is just a nop.
925 */
926 idr_replace(&idrinfo->action_idr, a, a->tcfa_index);
927 mutex_unlock(&idrinfo->lock);
928 }
Cong Wange49d8c22020-09-22 20:56:23 -0700929}
930
Cong Wangd349f992021-01-16 16:56:57 -0800931struct tc_action_ops *tc_action_load_ops(char *name, struct nlattr *nla,
932 bool rtnl_held,
933 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000935 struct nlattr *tb[TCA_ACT_MAX + 1];
Cong Wangd349f992021-01-16 16:56:57 -0800936 struct tc_action_ops *a_o;
937 char act_name[IFNAMSIZ];
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800938 struct nlattr *kind;
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800939 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (name == NULL) {
Cong Wang199ce852019-09-18 18:44:43 -0700942 err = nla_parse_nested_deprecated(tb, TCA_ACT_MAX, nla,
943 tcf_action_policy, extack);
Patrick McHardycee63722008-01-23 20:33:32 -0800944 if (err < 0)
Cong Wangd349f992021-01-16 16:56:57 -0800945 return ERR_PTR(err);
Patrick McHardycee63722008-01-23 20:33:32 -0800946 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800947 kind = tb[TCA_ACT_KIND];
Alexander Aring84ae0172018-02-15 10:54:55 -0500948 if (!kind) {
949 NL_SET_ERR_MSG(extack, "TC action kind must be specified");
Cong Wangd349f992021-01-16 16:56:57 -0800950 return ERR_PTR(err);
Alexander Aring84ae0172018-02-15 10:54:55 -0500951 }
Francis Laniel872f6902020-11-15 18:08:06 +0100952 if (nla_strscpy(act_name, kind, IFNAMSIZ) < 0) {
Cong Wang4b793fe2019-10-07 13:26:29 -0700953 NL_SET_ERR_MSG(extack, "TC action name too long");
Cong Wangd349f992021-01-16 16:56:57 -0800954 return ERR_PTR(err);
Cong Wang4b793fe2019-10-07 13:26:29 -0700955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 } else {
Alexander Aring84ae0172018-02-15 10:54:55 -0500957 if (strlcpy(act_name, name, IFNAMSIZ) >= IFNAMSIZ) {
958 NL_SET_ERR_MSG(extack, "TC action name too long");
Cong Wangd349f992021-01-16 16:56:57 -0800959 return ERR_PTR(-EINVAL);
Alexander Aring84ae0172018-02-15 10:54:55 -0500960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
962
963 a_o = tc_lookup_action_n(act_name);
964 if (a_o == NULL) {
Johannes Berg95a5afc2008-10-16 15:24:51 -0700965#ifdef CONFIG_MODULES
Vlad Buslov789871b2018-07-05 17:24:25 +0300966 if (rtnl_held)
967 rtnl_unlock();
Patrick McHardy4bba3922006-01-08 22:22:14 -0800968 request_module("act_%s", act_name);
Vlad Buslov789871b2018-07-05 17:24:25 +0300969 if (rtnl_held)
970 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 a_o = tc_lookup_action_n(act_name);
973
974 /* We dropped the RTNL semaphore in order to
975 * perform the module load. So, even if we
976 * succeeded in loading the module we have to
977 * tell the caller to replay the request. We
978 * indicate this using -EAGAIN.
979 */
980 if (a_o != NULL) {
Cong Wangd349f992021-01-16 16:56:57 -0800981 module_put(a_o->owner);
982 return ERR_PTR(-EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
984#endif
Alexander Aring84ae0172018-02-15 10:54:55 -0500985 NL_SET_ERR_MSG(extack, "Failed to load TC action module");
Cong Wangd349f992021-01-16 16:56:57 -0800986 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988
Cong Wangd349f992021-01-16 16:56:57 -0800989 return a_o;
990}
991
992struct tc_action *tcf_action_init_1(struct net *net, struct tcf_proto *tp,
993 struct nlattr *nla, struct nlattr *est,
994 char *name, int ovr, int bind,
995 struct tc_action_ops *a_o, bool rtnl_held,
996 struct netlink_ext_ack *extack)
997{
998 struct nla_bitfield32 flags = { 0, 0 };
999 u8 hw_stats = TCA_ACT_HW_STATS_ANY;
1000 struct nlattr *tb[TCA_ACT_MAX + 1];
1001 struct tc_cookie *cookie = NULL;
1002 struct tc_action *a;
1003 int err;
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 /* backward compatibility for policer */
Cong Wangd349f992021-01-16 16:56:57 -08001006 if (name == NULL) {
1007 err = nla_parse_nested_deprecated(tb, TCA_ACT_MAX, nla,
1008 tcf_action_policy, extack);
1009 if (err < 0)
1010 return ERR_PTR(err);
1011 if (tb[TCA_ACT_COOKIE]) {
1012 cookie = nla_memdup_cookie(tb);
1013 if (!cookie) {
1014 NL_SET_ERR_MSG(extack, "No memory to generate TC cookie");
1015 err = -ENOMEM;
1016 goto err_out;
1017 }
1018 }
1019 hw_stats = tcf_action_hw_stats_get(tb[TCA_ACT_HW_STATS]);
1020 if (tb[TCA_ACT_FLAGS])
1021 flags = nla_get_bitfield32(tb[TCA_ACT_FLAGS]);
1022
Alexander Aring589dad62018-02-15 10:54:56 -05001023 err = a_o->init(net, tb[TCA_ACT_OPTIONS], est, &a, ovr, bind,
Vlad Buslovabbb0d32019-10-30 16:09:05 +02001024 rtnl_held, tp, flags.value, extack);
Cong Wangd349f992021-01-16 16:56:57 -08001025 } else {
Vlad Buslov789871b2018-07-05 17:24:25 +03001026 err = a_o->init(net, nla, est, &a, ovr, bind, rtnl_held,
Vlad Buslovabbb0d32019-10-30 16:09:05 +02001027 tp, flags.value, extack);
Cong Wangd349f992021-01-16 16:56:57 -08001028 }
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001029 if (err < 0)
Cong Wangd349f992021-01-16 16:56:57 -08001030 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Vlad Busloveec94fd2018-07-05 17:24:23 +03001032 if (!name && tb[TCA_ACT_COOKIE])
1033 tcf_set_action_cookie(&a->act_cookie, cookie);
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -05001034
Jiri Pirko44f86582020-03-07 12:40:20 +01001035 if (!name)
Jakub Kicinski0dfb2d82020-03-19 16:26:23 -07001036 a->hw_stats = hw_stats;
Jiri Pirko44f86582020-03-07 12:40:20 +01001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 /* module count goes up only when brand new policy is created
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001039 * if it exists and is only bound to in a_o->init() then
1040 * ACT_P_CREATED is not returned (a zero is).
1041 */
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001042 if (err != ACT_P_CREATED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 module_put(a_o->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return a;
1046
Cong Wangd349f992021-01-16 16:56:57 -08001047err_out:
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +02001048 if (cookie) {
1049 kfree(cookie->data);
1050 kfree(cookie);
1051 }
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001052 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
Vlad Buslov90b73b72018-07-05 17:24:33 +03001055/* Returns numbers of initialized actions or negative error. */
1056
Jiri Pirko9fb9f252017-05-17 11:08:02 +02001057int tcf_action_init(struct net *net, struct tcf_proto *tp, struct nlattr *nla,
1058 struct nlattr *est, char *name, int ovr, int bind,
Vlad Buslov90b73b72018-07-05 17:24:33 +03001059 struct tc_action *actions[], size_t *attr_size,
Vlad Buslov789871b2018-07-05 17:24:25 +03001060 bool rtnl_held, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Cong Wangd349f992021-01-16 16:56:57 -08001062 struct tc_action_ops *ops[TCA_ACT_MAX_PRIO] = {};
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001063 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
WANG Cong33be6272013-12-15 20:15:05 -08001064 struct tc_action *act;
Roman Mashak4e76e752018-03-08 16:59:19 -05001065 size_t sz = 0;
Patrick McHardycee63722008-01-23 20:33:32 -08001066 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 int i;
1068
Johannes Berg8cb08172019-04-26 14:07:28 +02001069 err = nla_parse_nested_deprecated(tb, TCA_ACT_MAX_PRIO, nla, NULL,
1070 extack);
Patrick McHardycee63722008-01-23 20:33:32 -08001071 if (err < 0)
WANG Cong33be6272013-12-15 20:15:05 -08001072 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001074 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
Cong Wangd349f992021-01-16 16:56:57 -08001075 struct tc_action_ops *a_o;
1076
1077 a_o = tc_action_load_ops(name, tb[i], rtnl_held, extack);
1078 if (IS_ERR(a_o)) {
1079 err = PTR_ERR(a_o);
1080 goto err_mod;
1081 }
1082 ops[i - 1] = a_o;
1083 }
1084
1085 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
Alexander Aringaea0d722018-02-15 10:54:54 -05001086 act = tcf_action_init_1(net, tp, tb[i], est, name, ovr, bind,
Cong Wangd349f992021-01-16 16:56:57 -08001087 ops[i - 1], rtnl_held, extack);
WANG Cong33be6272013-12-15 20:15:05 -08001088 if (IS_ERR(act)) {
1089 err = PTR_ERR(act);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 goto err;
WANG Cong33be6272013-12-15 20:15:05 -08001091 }
Roman Mashak4e76e752018-03-08 16:59:19 -05001092 sz += tcf_action_fill_size(act);
Vlad Buslov90b73b72018-07-05 17:24:33 +03001093 /* Start from index 0 */
1094 actions[i - 1] = act;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
Jamal Hadi Salimaecc5ce2016-09-19 19:02:51 -04001096
Cong Wang0fedc632020-09-22 20:56:24 -07001097 /* We have to commit them all together, because if any error happened in
1098 * between, we could not handle the failure gracefully.
1099 */
1100 tcf_idr_insert_many(actions);
1101
Roman Mashak4e76e752018-03-08 16:59:19 -05001102 *attr_size = tcf_action_full_attrs_size(sz);
Vlad Buslov90b73b72018-07-05 17:24:33 +03001103 return i - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105err:
WANG Cong33be6272013-12-15 20:15:05 -08001106 tcf_action_destroy(actions, bind);
Cong Wangd349f992021-01-16 16:56:57 -08001107err_mod:
1108 for (i = 0; i < TCA_ACT_MAX_PRIO; i++) {
1109 if (ops[i])
1110 module_put(ops[i]->owner);
1111 }
WANG Cong33be6272013-12-15 20:15:05 -08001112 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
1114
Po Liu4b61d3e2020-06-19 14:01:07 +08001115void tcf_action_update_stats(struct tc_action *a, u64 bytes, u64 packets,
1116 u64 drops, bool hw)
Vlad Buslovc8ecebd2019-10-30 16:09:00 +02001117{
Vlad Buslov5e174d52019-10-30 16:09:04 +02001118 if (a->cpu_bstats) {
1119 _bstats_cpu_update(this_cpu_ptr(a->cpu_bstats), bytes, packets);
Vlad Buslovc8ecebd2019-10-30 16:09:00 +02001120
Po Liu4b61d3e2020-06-19 14:01:07 +08001121 this_cpu_ptr(a->cpu_qstats)->drops += drops;
Vlad Buslov5e174d52019-10-30 16:09:04 +02001122
1123 if (hw)
1124 _bstats_cpu_update(this_cpu_ptr(a->cpu_bstats_hw),
1125 bytes, packets);
1126 return;
1127 }
1128
1129 _bstats_update(&a->tcfa_bstats, bytes, packets);
Po Liu4b61d3e2020-06-19 14:01:07 +08001130 a->tcfa_qstats.drops += drops;
Vlad Buslovc8ecebd2019-10-30 16:09:00 +02001131 if (hw)
Vlad Buslov5e174d52019-10-30 16:09:04 +02001132 _bstats_update(&a->tcfa_bstats_hw, bytes, packets);
Vlad Buslovc8ecebd2019-10-30 16:09:00 +02001133}
1134EXPORT_SYMBOL(tcf_action_update_stats);
1135
WANG Congec0595c2016-07-25 16:09:42 -07001136int tcf_action_copy_stats(struct sk_buff *skb, struct tc_action *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 int compat_mode)
1138{
1139 int err = 0;
1140 struct gnet_dump d;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001141
WANG Cong7eb88962014-01-09 16:14:05 -08001142 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 goto errout;
1144
1145 /* compat_mode being true specifies a call that is supposed
Dirk Hohndel06fe9fb2009-09-28 21:43:57 -04001146 * to add additional backward compatibility statistic TLVs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 */
1148 if (compat_mode) {
WANG Congec0595c2016-07-25 16:09:42 -07001149 if (p->type == TCA_OLD_COMPAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 err = gnet_stats_start_copy_compat(skb, 0,
Nicolas Dichtel9854518e2016-04-26 10:06:18 +02001151 TCA_STATS,
1152 TCA_XSTATS,
WANG Congec0595c2016-07-25 16:09:42 -07001153 &p->tcfa_lock, &d,
Nicolas Dichtel9854518e2016-04-26 10:06:18 +02001154 TCA_PAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 else
1156 return 0;
1157 } else
1158 err = gnet_stats_start_copy(skb, TCA_ACT_STATS,
WANG Congec0595c2016-07-25 16:09:42 -07001159 &p->tcfa_lock, &d, TCA_ACT_PAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 if (err < 0)
1162 goto errout;
1163
WANG Congec0595c2016-07-25 16:09:42 -07001164 if (gnet_stats_copy_basic(NULL, &d, p->cpu_bstats, &p->tcfa_bstats) < 0 ||
Eelco Chaudron28169ab2018-09-21 07:14:02 -04001165 gnet_stats_copy_basic_hw(NULL, &d, p->cpu_bstats_hw,
1166 &p->tcfa_bstats_hw) < 0 ||
Eric Dumazet1c0d32f2016-12-04 09:48:16 -08001167 gnet_stats_copy_rate_est(&d, &p->tcfa_rate_est) < 0 ||
Eric Dumazet519c8182015-07-06 05:18:04 -07001168 gnet_stats_copy_queue(&d, p->cpu_qstats,
WANG Congec0595c2016-07-25 16:09:42 -07001169 &p->tcfa_qstats,
1170 p->tcfa_qstats.qlen) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 goto errout;
1172
1173 if (gnet_stats_finish_copy(&d) < 0)
1174 goto errout;
1175
1176 return 0;
1177
1178errout:
1179 return -1;
1180}
1181
Vlad Buslov90b73b72018-07-05 17:24:33 +03001182static int tca_get_fill(struct sk_buff *skb, struct tc_action *actions[],
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -04001183 u32 portid, u32 seq, u16 flags, int event, int bind,
1184 int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
1186 struct tcamsg *t;
1187 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001188 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001189 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Eric W. Biederman15e47302012-09-07 20:12:54 +00001191 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*t), flags);
David S. Miller8b00a532012-06-26 21:39:32 -07001192 if (!nlh)
1193 goto out_nlmsg_trim;
1194 t = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001196 t->tca__pad1 = 0;
1197 t->tca__pad2 = 0;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001198
Michal Kubecekae0be8d2019-04-26 11:13:06 +02001199 nest = nla_nest_start_noflag(skb, TCA_ACT_TAB);
Alexander Aring1af8515582018-02-15 10:54:53 -05001200 if (!nest)
David S. Miller8b00a532012-06-26 21:39:32 -07001201 goto out_nlmsg_trim;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Vlad Buslovca44b732020-05-15 14:40:12 +03001203 if (tcf_action_dump(skb, actions, bind, ref, false) < 0)
David S. Miller8b00a532012-06-26 21:39:32 -07001204 goto out_nlmsg_trim;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001206 nla_nest_end(skb, nest);
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001207
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001208 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 return skb->len;
1210
David S. Miller8b00a532012-06-26 21:39:32 -07001211out_nlmsg_trim:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001212 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return -1;
1214}
1215
1216static int
Roman Mashakc4c42902017-07-13 13:12:18 -04001217tcf_get_notify(struct net *net, u32 portid, struct nlmsghdr *n,
Vlad Buslov90b73b72018-07-05 17:24:33 +03001218 struct tc_action *actions[], int event,
Alexander Aring84ae0172018-02-15 10:54:55 -05001219 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
1221 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1224 if (!skb)
1225 return -ENOBUFS;
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -04001226 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, event,
Vlad Buslov3f7c72b2018-07-05 17:24:26 +03001227 0, 1) <= 0) {
Alexander Aring84ae0172018-02-15 10:54:55 -05001228 NL_SET_ERR_MSG(extack, "Failed to fill netlink attributes while adding TC action");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 kfree_skb(skb);
1230 return -EINVAL;
1231 }
Thomas Graf2942e902006-08-15 00:30:25 -07001232
Eric W. Biederman15e47302012-09-07 20:12:54 +00001233 return rtnl_unicast(skb, net, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
WANG Congddf97cc2016-02-22 15:57:53 -08001236static struct tc_action *tcf_action_get_1(struct net *net, struct nlattr *nla,
Alexander Aring84ae0172018-02-15 10:54:55 -05001237 struct nlmsghdr *n, u32 portid,
1238 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001240 struct nlattr *tb[TCA_ACT_MAX + 1];
WANG Conga85a9702016-07-25 16:09:41 -07001241 const struct tc_action_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 struct tc_action *a;
1243 int index;
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001244 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Cong Wang199ce852019-09-18 18:44:43 -07001246 err = nla_parse_nested_deprecated(tb, TCA_ACT_MAX, nla,
1247 tcf_action_policy, extack);
Patrick McHardycee63722008-01-23 20:33:32 -08001248 if (err < 0)
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001249 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Patrick McHardycee63722008-01-23 20:33:32 -08001251 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001252 if (tb[TCA_ACT_INDEX] == NULL ||
Alexander Aring84ae0172018-02-15 10:54:55 -05001253 nla_len(tb[TCA_ACT_INDEX]) < sizeof(index)) {
1254 NL_SET_ERR_MSG(extack, "Invalid TC action index value");
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001255 goto err_out;
Alexander Aring84ae0172018-02-15 10:54:55 -05001256 }
Patrick McHardy1587bac2008-01-23 20:35:03 -08001257 index = nla_get_u32(tb[TCA_ACT_INDEX]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001259 err = -EINVAL;
WANG Conga85a9702016-07-25 16:09:41 -07001260 ops = tc_lookup_action(tb[TCA_ACT_KIND]);
Alexander Aring84ae0172018-02-15 10:54:55 -05001261 if (!ops) { /* could happen in batch of actions */
Cong Wangf061b482018-08-29 10:15:35 -07001262 NL_SET_ERR_MSG(extack, "Specified TC action kind not found");
WANG Conga85a9702016-07-25 16:09:41 -07001263 goto err_out;
Alexander Aring84ae0172018-02-15 10:54:55 -05001264 }
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001265 err = -ENOENT;
Cong Wangf061b482018-08-29 10:15:35 -07001266 if (ops->lookup(net, &a, index) == 0) {
1267 NL_SET_ERR_MSG(extack, "TC action with specified index not found");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 goto err_mod;
Cong Wangf061b482018-08-29 10:15:35 -07001269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
WANG Conga85a9702016-07-25 16:09:41 -07001271 module_put(ops->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 return a;
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274err_mod:
WANG Conga85a9702016-07-25 16:09:41 -07001275 module_put(ops->owner);
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001276err_out:
1277 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Tom Goff7316ae82010-03-19 15:40:13 +00001280static int tca_action_flush(struct net *net, struct nlattr *nla,
Alexander Aring84ae0172018-02-15 10:54:55 -05001281 struct nlmsghdr *n, u32 portid,
1282 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
1284 struct sk_buff *skb;
1285 unsigned char *b;
1286 struct nlmsghdr *nlh;
1287 struct tcamsg *t;
1288 struct netlink_callback dcb;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001289 struct nlattr *nest;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001290 struct nlattr *tb[TCA_ACT_MAX + 1];
WANG Conga85a9702016-07-25 16:09:41 -07001291 const struct tc_action_ops *ops;
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001292 struct nlattr *kind;
Jamal Hadi Salim36723872008-08-13 02:41:45 -07001293 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
Alexander Aring84ae0172018-02-15 10:54:55 -05001296 if (!skb)
Jamal Hadi Salim36723872008-08-13 02:41:45 -07001297 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001299 b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Cong Wang199ce852019-09-18 18:44:43 -07001301 err = nla_parse_nested_deprecated(tb, TCA_ACT_MAX, nla,
1302 tcf_action_policy, extack);
Patrick McHardycee63722008-01-23 20:33:32 -08001303 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 goto err_out;
1305
Patrick McHardycee63722008-01-23 20:33:32 -08001306 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001307 kind = tb[TCA_ACT_KIND];
WANG Conga85a9702016-07-25 16:09:41 -07001308 ops = tc_lookup_action(kind);
Alexander Aring84ae0172018-02-15 10:54:55 -05001309 if (!ops) { /*some idjot trying to flush unknown action */
1310 NL_SET_ERR_MSG(extack, "Cannot flush unknown TC action");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 goto err_out;
Alexander Aring84ae0172018-02-15 10:54:55 -05001312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -04001314 nlh = nlmsg_put(skb, portid, n->nlmsg_seq, RTM_DELACTION,
1315 sizeof(*t), 0);
Alexander Aring84ae0172018-02-15 10:54:55 -05001316 if (!nlh) {
1317 NL_SET_ERR_MSG(extack, "Failed to create TC action flush notification");
David S. Miller8b00a532012-06-26 21:39:32 -07001318 goto out_module_put;
Alexander Aring84ae0172018-02-15 10:54:55 -05001319 }
David S. Miller8b00a532012-06-26 21:39:32 -07001320 t = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001322 t->tca__pad1 = 0;
1323 t->tca__pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Michal Kubecekae0be8d2019-04-26 11:13:06 +02001325 nest = nla_nest_start_noflag(skb, TCA_ACT_TAB);
Alexander Aring84ae0172018-02-15 10:54:55 -05001326 if (!nest) {
1327 NL_SET_ERR_MSG(extack, "Failed to add new netlink message");
David S. Miller8b00a532012-06-26 21:39:32 -07001328 goto out_module_put;
Alexander Aring84ae0172018-02-15 10:54:55 -05001329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Alexander Aring41780102018-02-15 10:54:58 -05001331 err = ops->walk(net, skb, &dcb, RTM_DELACTION, ops, extack);
Davide Caratti66dede22018-02-15 15:50:57 +01001332 if (err <= 0) {
1333 nla_nest_cancel(skb, nest);
David S. Miller8b00a532012-06-26 21:39:32 -07001334 goto out_module_put;
Davide Caratti66dede22018-02-15 15:50:57 +01001335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001337 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001339 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 nlh->nlmsg_flags |= NLM_F_ROOT;
WANG Conga85a9702016-07-25 16:09:41 -07001341 module_put(ops->owner);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001342 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001343 n->nlmsg_flags & NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 if (err > 0)
1345 return 0;
Alexander Aring84ae0172018-02-15 10:54:55 -05001346 if (err < 0)
1347 NL_SET_ERR_MSG(extack, "Failed to send TC action flush notification");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 return err;
1350
David S. Miller8b00a532012-06-26 21:39:32 -07001351out_module_put:
WANG Conga85a9702016-07-25 16:09:41 -07001352 module_put(ops->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353err_out:
1354 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return err;
1356}
1357
Cong Wangb144e7e2018-08-19 12:22:07 -07001358static int tcf_action_delete(struct net *net, struct tc_action *actions[])
Vlad Buslov16af6062018-07-05 17:24:29 +03001359{
Cong Wang97a3f84f2018-08-19 12:22:06 -07001360 int i;
Vlad Buslov16af6062018-07-05 17:24:29 +03001361
Vlad Buslov90b73b72018-07-05 17:24:33 +03001362 for (i = 0; i < TCA_ACT_MAX_PRIO && actions[i]; i++) {
1363 struct tc_action *a = actions[i];
Vlad Buslov16af6062018-07-05 17:24:29 +03001364 const struct tc_action_ops *ops = a->ops;
Vlad Buslov16af6062018-07-05 17:24:29 +03001365 /* Actions can be deleted concurrently so we must save their
1366 * type and id to search again after reference is released.
1367 */
Cong Wang97a3f84f2018-08-19 12:22:06 -07001368 struct tcf_idrinfo *idrinfo = a->idrinfo;
1369 u32 act_index = a->tcfa_index;
Vlad Buslov16af6062018-07-05 17:24:29 +03001370
Vlad Buslovc10bbfa2018-09-03 10:04:55 +03001371 actions[i] = NULL;
Vlad Buslov16af6062018-07-05 17:24:29 +03001372 if (tcf_action_put(a)) {
1373 /* last reference, action was deleted concurrently */
1374 module_put(ops->owner);
1375 } else {
Cong Wang97a3f84f2018-08-19 12:22:06 -07001376 int ret;
1377
Vlad Buslov16af6062018-07-05 17:24:29 +03001378 /* now do the delete */
Cong Wang97a3f84f2018-08-19 12:22:06 -07001379 ret = tcf_idr_delete_index(idrinfo, act_index);
Cong Wangedfaf942018-08-19 12:22:05 -07001380 if (ret < 0)
Vlad Buslov16af6062018-07-05 17:24:29 +03001381 return ret;
1382 }
1383 }
1384 return 0;
1385}
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387static int
Vlad Buslov90b73b72018-07-05 17:24:33 +03001388tcf_del_notify(struct net *net, struct nlmsghdr *n, struct tc_action *actions[],
Cong Wangedfaf942018-08-19 12:22:05 -07001389 u32 portid, size_t attr_size, struct netlink_ext_ack *extack)
WANG Conga56e1952014-01-09 16:14:00 -08001390{
1391 int ret;
1392 struct sk_buff *skb;
1393
Roman Mashakd04e6992018-03-08 16:59:17 -05001394 skb = alloc_skb(attr_size <= NLMSG_GOODSIZE ? NLMSG_GOODSIZE : attr_size,
1395 GFP_KERNEL);
WANG Conga56e1952014-01-09 16:14:00 -08001396 if (!skb)
1397 return -ENOBUFS;
1398
1399 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, RTM_DELACTION,
Vlad Buslov3f7c72b2018-07-05 17:24:26 +03001400 0, 2) <= 0) {
Alexander Aring84ae0172018-02-15 10:54:55 -05001401 NL_SET_ERR_MSG(extack, "Failed to fill netlink TC action attributes");
WANG Conga56e1952014-01-09 16:14:00 -08001402 kfree_skb(skb);
1403 return -EINVAL;
1404 }
1405
1406 /* now do the delete */
Cong Wangb144e7e2018-08-19 12:22:07 -07001407 ret = tcf_action_delete(net, actions);
WANG Cong55334a52014-02-11 17:07:34 -08001408 if (ret < 0) {
Alexander Aring84ae0172018-02-15 10:54:55 -05001409 NL_SET_ERR_MSG(extack, "Failed to delete TC action");
WANG Cong55334a52014-02-11 17:07:34 -08001410 kfree_skb(skb);
1411 return ret;
1412 }
WANG Conga56e1952014-01-09 16:14:00 -08001413
1414 ret = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
1415 n->nlmsg_flags & NLM_F_ECHO);
1416 if (ret > 0)
1417 return 0;
1418 return ret;
1419}
1420
1421static int
Tom Goff7316ae82010-03-19 15:40:13 +00001422tca_action_gd(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
Alexander Aring84ae0172018-02-15 10:54:55 -05001423 u32 portid, int event, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
Patrick McHardycee63722008-01-23 20:33:32 -08001425 int i, ret;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001426 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
WANG Cong33be6272013-12-15 20:15:05 -08001427 struct tc_action *act;
Roman Mashakd04e6992018-03-08 16:59:17 -05001428 size_t attr_size = 0;
Cong Wangedfaf942018-08-19 12:22:05 -07001429 struct tc_action *actions[TCA_ACT_MAX_PRIO] = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Johannes Berg8cb08172019-04-26 14:07:28 +02001431 ret = nla_parse_nested_deprecated(tb, TCA_ACT_MAX_PRIO, nla, NULL,
1432 extack);
Patrick McHardycee63722008-01-23 20:33:32 -08001433 if (ret < 0)
1434 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001436 if (event == RTM_DELACTION && n->nlmsg_flags & NLM_F_ROOT) {
Alexander Aring1af8515582018-02-15 10:54:53 -05001437 if (tb[1])
Alexander Aring84ae0172018-02-15 10:54:55 -05001438 return tca_action_flush(net, tb[1], n, portid, extack);
Alexander Aring1af8515582018-02-15 10:54:53 -05001439
Alexander Aring84ae0172018-02-15 10:54:55 -05001440 NL_SET_ERR_MSG(extack, "Invalid netlink attributes while flushing TC action");
Alexander Aring1af8515582018-02-15 10:54:53 -05001441 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
1443
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001444 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
Alexander Aring84ae0172018-02-15 10:54:55 -05001445 act = tcf_action_get_1(net, tb[i], n, portid, extack);
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001446 if (IS_ERR(act)) {
1447 ret = PTR_ERR(act);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 goto err;
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001449 }
Roman Mashak4e76e752018-03-08 16:59:19 -05001450 attr_size += tcf_action_fill_size(act);
Vlad Buslov90b73b72018-07-05 17:24:33 +03001451 actions[i - 1] = act;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 }
1453
Roman Mashak4e76e752018-03-08 16:59:19 -05001454 attr_size = tcf_action_full_attrs_size(attr_size);
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 if (event == RTM_GETACTION)
Vlad Buslov90b73b72018-07-05 17:24:33 +03001457 ret = tcf_get_notify(net, portid, n, actions, event, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 else { /* delete */
Cong Wangedfaf942018-08-19 12:22:05 -07001459 ret = tcf_del_notify(net, n, actions, portid, attr_size, extack);
WANG Conga56e1952014-01-09 16:14:00 -08001460 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 goto err;
Cong Wangedfaf942018-08-19 12:22:05 -07001462 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 }
1464err:
Cong Wangedfaf942018-08-19 12:22:05 -07001465 tcf_action_put_many(actions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return ret;
1467}
1468
WANG Conga56e1952014-01-09 16:14:00 -08001469static int
Vlad Buslov90b73b72018-07-05 17:24:33 +03001470tcf_add_notify(struct net *net, struct nlmsghdr *n, struct tc_action *actions[],
Roman Mashakd04e6992018-03-08 16:59:17 -05001471 u32 portid, size_t attr_size, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 int err = 0;
1475
Roman Mashakd04e6992018-03-08 16:59:17 -05001476 skb = alloc_skb(attr_size <= NLMSG_GOODSIZE ? NLMSG_GOODSIZE : attr_size,
1477 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (!skb)
1479 return -ENOBUFS;
1480
WANG Conga56e1952014-01-09 16:14:00 -08001481 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, n->nlmsg_flags,
1482 RTM_NEWACTION, 0, 0) <= 0) {
Roman Mashakd143b9e2018-03-02 20:52:01 -05001483 NL_SET_ERR_MSG(extack, "Failed to fill netlink attributes while adding TC action");
WANG Conga56e1952014-01-09 16:14:00 -08001484 kfree_skb(skb);
1485 return -EINVAL;
1486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
WANG Conga56e1952014-01-09 16:14:00 -08001488 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
1489 n->nlmsg_flags & NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (err > 0)
1491 err = 0;
1492 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04001495static int tcf_action_add(struct net *net, struct nlattr *nla,
Alexander Aringaea0d722018-02-15 10:54:54 -05001496 struct nlmsghdr *n, u32 portid, int ovr,
1497 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Roman Mashakd04e6992018-03-08 16:59:17 -05001499 size_t attr_size = 0;
Eric Dumazet39f13ea2019-10-14 11:22:30 -07001500 int loop, ret;
Vlad Buslov90b73b72018-07-05 17:24:33 +03001501 struct tc_action *actions[TCA_ACT_MAX_PRIO] = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Eric Dumazet39f13ea2019-10-14 11:22:30 -07001503 for (loop = 0; loop < 10; loop++) {
1504 ret = tcf_action_init(net, NULL, nla, NULL, NULL, ovr, 0,
1505 actions, &attr_size, true, extack);
1506 if (ret != -EAGAIN)
1507 break;
1508 }
1509
Vlad Buslov90b73b72018-07-05 17:24:33 +03001510 if (ret < 0)
WANG Congf07fed82016-08-13 22:34:56 -07001511 return ret;
Vlad Buslov90b73b72018-07-05 17:24:33 +03001512 ret = tcf_add_notify(net, n, actions, portid, attr_size, extack);
Vlad Buslovcae422f2018-07-05 17:24:31 +03001513 if (ovr)
Vlad Buslov90b73b72018-07-05 17:24:33 +03001514 tcf_action_put_many(actions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Vlad Buslovcae422f2018-07-05 17:24:31 +03001516 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
1518
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001519static const struct nla_policy tcaa_policy[TCA_ROOT_MAX + 1] = {
Vlad Buslovf4600192020-11-24 18:40:54 +02001520 [TCA_ROOT_FLAGS] = NLA_POLICY_BITFIELD32(TCA_ACT_FLAG_LARGE_DUMP_ON |
1521 TCA_ACT_FLAG_TERSE_DUMP),
Jamal Hadi Salime62e4842017-07-30 13:24:52 -04001522 [TCA_ROOT_TIME_DELTA] = { .type = NLA_U32 },
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001523};
1524
David Ahernc21ef3e2017-04-16 09:48:24 -07001525static int tc_ctl_action(struct sk_buff *skb, struct nlmsghdr *n,
1526 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001528 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001529 struct nlattr *tca[TCA_ROOT_MAX + 1];
Gaurav Singh8bf15392020-06-19 15:24:13 -04001530 u32 portid = NETLINK_CB(skb).portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 int ret = 0, ovr = 0;
1532
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -04001533 if ((n->nlmsg_type != RTM_GETACTION) &&
1534 !netlink_capable(skb, CAP_NET_ADMIN))
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +00001535 return -EPERM;
1536
Johannes Berg8cb08172019-04-26 14:07:28 +02001537 ret = nlmsg_parse_deprecated(n, sizeof(struct tcamsg), tca,
1538 TCA_ROOT_MAX, NULL, extack);
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001539 if (ret < 0)
1540 return ret;
1541
1542 if (tca[TCA_ACT_TAB] == NULL) {
Alexander Aring84ae0172018-02-15 10:54:55 -05001543 NL_SET_ERR_MSG(extack, "Netlink action attributes missing");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return -EINVAL;
1545 }
1546
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001547 /* n->nlmsg_flags & NLM_F_CREATE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 switch (n->nlmsg_type) {
1549 case RTM_NEWACTION:
1550 /* we are going to assume all other flags
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001551 * imply create only if it doesn't exist
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 * Note that CREATE | EXCL implies that
1553 * but since we want avoid ambiguity (eg when flags
1554 * is zero) then just set this
1555 */
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001556 if (n->nlmsg_flags & NLM_F_REPLACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 ovr = 1;
Alexander Aringaea0d722018-02-15 10:54:54 -05001558 ret = tcf_action_add(net, tca[TCA_ACT_TAB], n, portid, ovr,
1559 extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 break;
1561 case RTM_DELACTION:
Tom Goff7316ae82010-03-19 15:40:13 +00001562 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
Alexander Aring84ae0172018-02-15 10:54:55 -05001563 portid, RTM_DELACTION, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 break;
1565 case RTM_GETACTION:
Tom Goff7316ae82010-03-19 15:40:13 +00001566 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
Alexander Aring84ae0172018-02-15 10:54:55 -05001567 portid, RTM_GETACTION, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 break;
1569 default:
1570 BUG();
1571 }
1572
1573 return ret;
1574}
1575
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001576static struct nlattr *find_dump_kind(struct nlattr **nla)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001578 struct nlattr *tb1, *tb2[TCA_ACT_MAX + 1];
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001579 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001580 struct nlattr *kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001582 tb1 = nla[TCA_ACT_TAB];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (tb1 == NULL)
1584 return NULL;
1585
Johannes Berg8cb08172019-04-26 14:07:28 +02001586 if (nla_parse_deprecated(tb, TCA_ACT_MAX_PRIO, nla_data(tb1), NLMSG_ALIGN(nla_len(tb1)), NULL, NULL) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Patrick McHardy6d834e02008-01-23 20:32:42 -08001589 if (tb[1] == NULL)
1590 return NULL;
Cong Wang199ce852019-09-18 18:44:43 -07001591 if (nla_parse_nested_deprecated(tb2, TCA_ACT_MAX, tb[1], tcf_action_policy, NULL) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 return NULL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001593 kind = tb2[TCA_ACT_KIND];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Thomas Graf26dab892006-07-05 20:45:06 -07001595 return kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596}
1597
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04001598static int tc_dump_action(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
WANG Congddf97cc2016-02-22 15:57:53 -08001600 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001602 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001603 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 struct tc_action_ops *a_o;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 int ret = 0;
David S. Miller8b00a532012-06-26 21:39:32 -07001606 struct tcamsg *t = (struct tcamsg *) nlmsg_data(cb->nlh);
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001607 struct nlattr *tb[TCA_ROOT_MAX + 1];
1608 struct nlattr *count_attr = NULL;
Jamal Hadi Salime62e4842017-07-30 13:24:52 -04001609 unsigned long jiffy_since = 0;
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001610 struct nlattr *kind = NULL;
1611 struct nla_bitfield32 bf;
Jamal Hadi Salime62e4842017-07-30 13:24:52 -04001612 u32 msecs_since = 0;
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001613 u32 act_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Johannes Berg8cb08172019-04-26 14:07:28 +02001615 ret = nlmsg_parse_deprecated(cb->nlh, sizeof(struct tcamsg), tb,
1616 TCA_ROOT_MAX, tcaa_policy, cb->extack);
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001617 if (ret < 0)
1618 return ret;
1619
1620 kind = find_dump_kind(tb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 if (kind == NULL) {
stephen hemminger6ff9c362010-05-12 06:37:05 +00001622 pr_info("tc_dump_action: action bad kind\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 return 0;
1624 }
1625
Thomas Graf26dab892006-07-05 20:45:06 -07001626 a_o = tc_lookup_action(kind);
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001627 if (a_o == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001630 cb->args[2] = 0;
1631 if (tb[TCA_ROOT_FLAGS]) {
1632 bf = nla_get_bitfield32(tb[TCA_ROOT_FLAGS]);
1633 cb->args[2] = bf.value;
1634 }
1635
Jamal Hadi Salime62e4842017-07-30 13:24:52 -04001636 if (tb[TCA_ROOT_TIME_DELTA]) {
1637 msecs_since = nla_get_u32(tb[TCA_ROOT_TIME_DELTA]);
1638 }
1639
Eric W. Biederman15e47302012-09-07 20:12:54 +00001640 nlh = nlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
David S. Miller8b00a532012-06-26 21:39:32 -07001641 cb->nlh->nlmsg_type, sizeof(*t), 0);
1642 if (!nlh)
1643 goto out_module_put;
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001644
Jamal Hadi Salime62e4842017-07-30 13:24:52 -04001645 if (msecs_since)
1646 jiffy_since = jiffies - msecs_to_jiffies(msecs_since);
1647
David S. Miller8b00a532012-06-26 21:39:32 -07001648 t = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001650 t->tca__pad1 = 0;
1651 t->tca__pad2 = 0;
Jamal Hadi Salime62e4842017-07-30 13:24:52 -04001652 cb->args[3] = jiffy_since;
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001653 count_attr = nla_reserve(skb, TCA_ROOT_COUNT, sizeof(u32));
1654 if (!count_attr)
1655 goto out_module_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Michal Kubecekae0be8d2019-04-26 11:13:06 +02001657 nest = nla_nest_start_noflag(skb, TCA_ACT_TAB);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001658 if (nest == NULL)
David S. Miller8b00a532012-06-26 21:39:32 -07001659 goto out_module_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Alexander Aring41780102018-02-15 10:54:58 -05001661 ret = a_o->walk(net, skb, cb, RTM_GETACTION, a_o, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 if (ret < 0)
David S. Miller8b00a532012-06-26 21:39:32 -07001663 goto out_module_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
1665 if (ret > 0) {
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001666 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 ret = skb->len;
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001668 act_count = cb->args[1];
1669 memcpy(nla_data(count_attr), &act_count, sizeof(u32));
1670 cb->args[1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 } else
Jamal Hadi Salimebecaa62016-06-13 18:08:42 -04001672 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001674 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001675 if (NETLINK_CB(cb->skb).portid && ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 nlh->nlmsg_flags |= NLM_F_MULTI;
1677 module_put(a_o->owner);
1678 return skb->len;
1679
David S. Miller8b00a532012-06-26 21:39:32 -07001680out_module_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 module_put(a_o->owner);
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001682 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return skb->len;
1684}
1685
1686static int __init tc_action_init(void)
1687{
Florian Westphalb97bac62017-08-09 20:41:48 +02001688 rtnl_register(PF_UNSPEC, RTM_NEWACTION, tc_ctl_action, NULL, 0);
1689 rtnl_register(PF_UNSPEC, RTM_DELACTION, tc_ctl_action, NULL, 0);
Greg Rosec7ac8672011-06-10 01:27:09 +00001690 rtnl_register(PF_UNSPEC, RTM_GETACTION, tc_ctl_action, tc_dump_action,
Florian Westphalb97bac62017-08-09 20:41:48 +02001691 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return 0;
1694}
1695
1696subsys_initcall(tc_action_init);