blob: f2c4bfc7966331bfca17c1656d08d70e7b22b397 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/act_api.c Packet action API.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Author: Jamal Hadi Salim
10 *
11 *
12 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/types.h>
15#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/errno.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/init.h>
21#include <linux/kmod.h>
Patrick McHardyab27cfb2008-01-23 20:33:13 -080022#include <linux/err.h>
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040023#include <linux/module.h>
Jiri Pirkob3f55bd2017-10-11 09:41:08 +020024#include <linux/rhashtable.h>
25#include <linux/list.h>
Denis V. Lunevb8542722007-12-01 00:21:31 +110026#include <net/net_namespace.h>
27#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <net/sch_generic.h>
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -050029#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <net/act_api.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070031#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Jiri Pirkodb505142017-05-17 11:08:03 +020033static int tcf_action_goto_chain_init(struct tc_action *a, struct tcf_proto *tp)
34{
35 u32 chain_index = a->tcfa_action & TC_ACT_EXT_VAL_MASK;
36
37 if (!tp)
38 return -EINVAL;
Jiri Pirko1f3ed382018-07-27 09:45:05 +020039 a->goto_chain = tcf_chain_get_by_act(tp->chain->block, chain_index);
Jiri Pirkodb505142017-05-17 11:08:03 +020040 if (!a->goto_chain)
41 return -ENOMEM;
42 return 0;
43}
44
45static void tcf_action_goto_chain_fini(struct tc_action *a)
46{
Jiri Pirko1f3ed382018-07-27 09:45:05 +020047 tcf_chain_put_by_act(a->goto_chain);
Jiri Pirkodb505142017-05-17 11:08:03 +020048}
49
50static void tcf_action_goto_chain_exec(const struct tc_action *a,
51 struct tcf_result *res)
52{
53 const struct tcf_chain *chain = a->goto_chain;
54
55 res->goto_tp = rcu_dereference_bh(chain->filter_chain);
56}
57
Vlad Busloveec94fd2018-07-05 17:24:23 +030058static void tcf_free_cookie_rcu(struct rcu_head *p)
59{
60 struct tc_cookie *cookie = container_of(p, struct tc_cookie, rcu);
61
62 kfree(cookie->data);
63 kfree(cookie);
64}
65
66static void tcf_set_action_cookie(struct tc_cookie __rcu **old_cookie,
67 struct tc_cookie *new_cookie)
68{
69 struct tc_cookie *old;
70
David S. Miller0dbc81e2018-07-08 17:02:59 +090071 old = xchg((__force struct tc_cookie **)old_cookie, new_cookie);
Vlad Busloveec94fd2018-07-05 17:24:23 +030072 if (old)
73 call_rcu(&old->rcu, tcf_free_cookie_rcu);
74}
75
Cong Wangd7fb60b2017-09-11 16:33:30 -070076/* XXX: For standalone actions, we don't need a RCU grace period either, because
77 * actions are always connected to filters and filters are already destroyed in
78 * RCU callbacks, so after a RCU grace period actions are already disconnected
79 * from filters. Readers later can not find us.
80 */
81static void free_tcf(struct tc_action *p)
Eric Dumazet519c8182015-07-06 05:18:04 -070082{
Eric Dumazet519c8182015-07-06 05:18:04 -070083 free_percpu(p->cpu_bstats);
84 free_percpu(p->cpu_qstats);
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -050085
Vlad Busloveec94fd2018-07-05 17:24:23 +030086 tcf_set_action_cookie(&p->act_cookie, NULL);
Jiri Pirkodb505142017-05-17 11:08:03 +020087 if (p->goto_chain)
88 tcf_action_goto_chain_fini(p);
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -050089
Eric Dumazet519c8182015-07-06 05:18:04 -070090 kfree(p);
91}
92
Vlad Buslov16af6062018-07-05 17:24:29 +030093static void tcf_action_cleanup(struct tc_action *p)
David S. Millere9ce1cd2006-08-21 23:54:55 -070094{
Vlad Buslov16af6062018-07-05 17:24:29 +030095 if (p->ops->cleanup)
96 p->ops->cleanup(p);
97
Eric Dumazet1c0d32f2016-12-04 09:48:16 -080098 gen_kill_estimator(&p->tcfa_rate_est);
Cong Wangd7fb60b2017-09-11 16:33:30 -070099 free_tcf(p);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700100}
David S. Millere9ce1cd2006-08-21 23:54:55 -0700101
Vlad Buslov16af6062018-07-05 17:24:29 +0300102static int __tcf_action_put(struct tc_action *p, bool bind)
103{
104 struct tcf_idrinfo *idrinfo = p->idrinfo;
105
106 if (refcount_dec_and_lock(&p->tcfa_refcnt, &idrinfo->lock)) {
107 if (bind)
108 atomic_dec(&p->tcfa_bindcnt);
109 idr_remove(&idrinfo->action_idr, p->tcfa_index);
110 spin_unlock(&idrinfo->lock);
111
112 tcf_action_cleanup(p);
113 return 1;
114 }
115
116 if (bind)
117 atomic_dec(&p->tcfa_bindcnt);
118
119 return 0;
120}
121
Chris Mi65a206c2017-08-30 02:31:59 -0400122int __tcf_idr_release(struct tc_action *p, bool bind, bool strict)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700123{
124 int ret = 0;
125
Vlad Buslov036bb442018-07-05 17:24:24 +0300126 /* Release with strict==1 and bind==0 is only called through act API
127 * interface (classifiers always bind). Only case when action with
128 * positive reference count and zero bind count can exist is when it was
129 * also created with act API (unbinding last classifier will destroy the
130 * action if it was created by classifier). So only case when bind count
131 * can be changed after initial check is when unbound action is
132 * destroyed by act API while classifier binds to action with same id
133 * concurrently. This result either creation of new action(same behavior
134 * as before), or reusing existing action if concurrent process
135 * increments reference count before action is deleted. Both scenarios
136 * are acceptable.
137 */
David S. Millere9ce1cd2006-08-21 23:54:55 -0700138 if (p) {
Vlad Buslov16af6062018-07-05 17:24:29 +0300139 if (!bind && strict && atomic_read(&p->tcfa_bindcnt) > 0)
WANG Cong55334a52014-02-11 17:07:34 -0800140 return -EPERM;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700141
Vlad Buslov16af6062018-07-05 17:24:29 +0300142 if (__tcf_action_put(p, bind))
WANG Cong1d4150c2016-02-22 15:57:52 -0800143 ret = ACT_P_DELETED;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700144 }
Daniel Borkmann28e6b672015-07-29 23:35:25 +0200145
David S. Millere9ce1cd2006-08-21 23:54:55 -0700146 return ret;
147}
Chris Mi65a206c2017-08-30 02:31:59 -0400148EXPORT_SYMBOL(__tcf_idr_release);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700149
Roman Mashak4e76e752018-03-08 16:59:19 -0500150static size_t tcf_action_shared_attrs_size(const struct tc_action *act)
151{
Vlad Buslove0479b62018-07-09 20:26:47 +0300152 struct tc_cookie *act_cookie;
Roman Mashak4e76e752018-03-08 16:59:19 -0500153 u32 cookie_len = 0;
154
Vlad Buslove0479b62018-07-09 20:26:47 +0300155 rcu_read_lock();
156 act_cookie = rcu_dereference(act->act_cookie);
157
158 if (act_cookie)
159 cookie_len = nla_total_size(act_cookie->len);
160 rcu_read_unlock();
Roman Mashak4e76e752018-03-08 16:59:19 -0500161
162 return nla_total_size(0) /* action number nested */
163 + nla_total_size(IFNAMSIZ) /* TCA_ACT_KIND */
164 + cookie_len /* TCA_ACT_COOKIE */
165 + nla_total_size(0) /* TCA_ACT_STATS nested */
166 /* TCA_STATS_BASIC */
167 + nla_total_size_64bit(sizeof(struct gnet_stats_basic))
168 /* TCA_STATS_QUEUE */
169 + nla_total_size_64bit(sizeof(struct gnet_stats_queue))
170 + nla_total_size(0) /* TCA_OPTIONS nested */
171 + nla_total_size(sizeof(struct tcf_t)); /* TCA_GACT_TM */
172}
173
174static size_t tcf_action_full_attrs_size(size_t sz)
175{
176 return NLMSG_HDRLEN /* struct nlmsghdr */
177 + sizeof(struct tcamsg)
178 + nla_total_size(0) /* TCA_ACT_TAB nested */
179 + sz;
180}
181
182static size_t tcf_action_fill_size(const struct tc_action *act)
183{
184 size_t sz = tcf_action_shared_attrs_size(act);
185
186 if (act->ops->get_fill_size)
187 return act->ops->get_fill_size(act) + sz;
188 return sz;
189}
190
Chris Mi65a206c2017-08-30 02:31:59 -0400191static int tcf_dump_walker(struct tcf_idrinfo *idrinfo, struct sk_buff *skb,
WANG Conga85a9702016-07-25 16:09:41 -0700192 struct netlink_callback *cb)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700193{
Chris Mi65a206c2017-08-30 02:31:59 -0400194 int err = 0, index = -1, s_i = 0, n_i = 0;
Jamal Hadi Salim90825b22017-07-30 13:24:51 -0400195 u32 act_flags = cb->args[2];
Jamal Hadi Salime62e4842017-07-30 13:24:52 -0400196 unsigned long jiffy_since = cb->args[3];
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800197 struct nlattr *nest;
Chris Mi65a206c2017-08-30 02:31:59 -0400198 struct idr *idr = &idrinfo->action_idr;
199 struct tc_action *p;
200 unsigned long id = 1;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700201
Vlad Buslov290aa0a2018-05-21 23:03:04 +0300202 spin_lock(&idrinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700203
204 s_i = cb->args[0];
205
Matthew Wilcox7a457572017-11-28 15:39:51 -0500206 idr_for_each_entry_ul(idr, p, id) {
Chris Mi65a206c2017-08-30 02:31:59 -0400207 index++;
208 if (index < s_i)
209 continue;
WANG Conga85a9702016-07-25 16:09:41 -0700210
Chris Mi65a206c2017-08-30 02:31:59 -0400211 if (jiffy_since &&
212 time_after(jiffy_since,
213 (unsigned long)p->tcfa_tm.lastuse))
214 continue;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700215
Chris Mi65a206c2017-08-30 02:31:59 -0400216 nest = nla_nest_start(skb, n_i);
Craig Dillabaugh734549e2018-03-26 14:58:32 -0400217 if (!nest) {
218 index--;
Chris Mi65a206c2017-08-30 02:31:59 -0400219 goto nla_put_failure;
Craig Dillabaugh734549e2018-03-26 14:58:32 -0400220 }
Chris Mi65a206c2017-08-30 02:31:59 -0400221 err = tcf_action_dump_1(skb, p, 0, 0);
222 if (err < 0) {
223 index--;
224 nlmsg_trim(skb, nest);
225 goto done;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700226 }
Chris Mi65a206c2017-08-30 02:31:59 -0400227 nla_nest_end(skb, nest);
228 n_i++;
229 if (!(act_flags & TCA_FLAG_LARGE_DUMP_ON) &&
230 n_i >= TCA_ACT_MAX_PRIO)
231 goto done;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700232 }
233done:
Jamal Hadi Salime62e4842017-07-30 13:24:52 -0400234 if (index >= 0)
235 cb->args[0] = index + 1;
236
Vlad Buslov290aa0a2018-05-21 23:03:04 +0300237 spin_unlock(&idrinfo->lock);
Jamal Hadi Salim90825b22017-07-30 13:24:51 -0400238 if (n_i) {
Jamal Hadi Salim90825b22017-07-30 13:24:51 -0400239 if (act_flags & TCA_FLAG_LARGE_DUMP_ON)
240 cb->args[1] = n_i;
241 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700242 return n_i;
243
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800244nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800245 nla_nest_cancel(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700246 goto done;
247}
248
Chris Mi65a206c2017-08-30 02:31:59 -0400249static int tcf_del_walker(struct tcf_idrinfo *idrinfo, struct sk_buff *skb,
WANG Conga85a9702016-07-25 16:09:41 -0700250 const struct tc_action_ops *ops)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700251{
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800252 struct nlattr *nest;
Chris Mi65a206c2017-08-30 02:31:59 -0400253 int n_i = 0;
WANG Cong55334a52014-02-11 17:07:34 -0800254 int ret = -EINVAL;
Chris Mi65a206c2017-08-30 02:31:59 -0400255 struct idr *idr = &idrinfo->action_idr;
256 struct tc_action *p;
257 unsigned long id = 1;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700258
WANG Conga85a9702016-07-25 16:09:41 -0700259 nest = nla_nest_start(skb, 0);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800260 if (nest == NULL)
261 goto nla_put_failure;
WANG Conga85a9702016-07-25 16:09:41 -0700262 if (nla_put_string(skb, TCA_KIND, ops->kind))
David S. Miller1b34ec42012-03-29 05:11:39 -0400263 goto nla_put_failure;
WANG Conga85a9702016-07-25 16:09:41 -0700264
Matthew Wilcox7a457572017-11-28 15:39:51 -0500265 idr_for_each_entry_ul(idr, p, id) {
Chris Mi65a206c2017-08-30 02:31:59 -0400266 ret = __tcf_idr_release(p, false, true);
267 if (ret == ACT_P_DELETED) {
Jiri Pirko255cd502017-09-13 17:32:37 +0200268 module_put(ops->owner);
Chris Mi65a206c2017-08-30 02:31:59 -0400269 n_i++;
270 } else if (ret < 0) {
271 goto nla_put_failure;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700272 }
273 }
David S. Miller1b34ec42012-03-29 05:11:39 -0400274 if (nla_put_u32(skb, TCA_FCNT, n_i))
275 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800276 nla_nest_end(skb, nest);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700277
278 return n_i;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800279nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800280 nla_nest_cancel(skb, nest);
WANG Cong55334a52014-02-11 17:07:34 -0800281 return ret;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700282}
283
WANG Congddf97cc2016-02-22 15:57:53 -0800284int tcf_generic_walker(struct tc_action_net *tn, struct sk_buff *skb,
285 struct netlink_callback *cb, int type,
Alexander Aringb3620142018-02-15 10:54:59 -0500286 const struct tc_action_ops *ops,
287 struct netlink_ext_ack *extack)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700288{
Chris Mi65a206c2017-08-30 02:31:59 -0400289 struct tcf_idrinfo *idrinfo = tn->idrinfo;
WANG Congddf97cc2016-02-22 15:57:53 -0800290
David S. Millere9ce1cd2006-08-21 23:54:55 -0700291 if (type == RTM_DELACTION) {
Chris Mi65a206c2017-08-30 02:31:59 -0400292 return tcf_del_walker(idrinfo, skb, ops);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700293 } else if (type == RTM_GETACTION) {
Chris Mi65a206c2017-08-30 02:31:59 -0400294 return tcf_dump_walker(idrinfo, skb, cb);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700295 } else {
Alexander Aringb3620142018-02-15 10:54:59 -0500296 WARN(1, "tcf_generic_walker: unknown command %d\n", type);
297 NL_SET_ERR_MSG(extack, "tcf_generic_walker: unknown command");
David S. Millere9ce1cd2006-08-21 23:54:55 -0700298 return -EINVAL;
299 }
300}
WANG Congddf97cc2016-02-22 15:57:53 -0800301EXPORT_SYMBOL(tcf_generic_walker);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700302
Cong Wang7d485c42018-08-19 12:22:08 -0700303int tcf_idr_search(struct tc_action_net *tn, struct tc_action **a, u32 index)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700304{
Vlad Buslov3f7c72b2018-07-05 17:24:26 +0300305 struct tcf_idrinfo *idrinfo = tn->idrinfo;
306 struct tc_action *p;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700307
Vlad Buslov290aa0a2018-05-21 23:03:04 +0300308 spin_lock(&idrinfo->lock);
Matthew Wilcox322d8842017-11-28 10:01:24 -0500309 p = idr_find(&idrinfo->action_idr, index);
Cong Wang7d485c42018-08-19 12:22:08 -0700310 if (IS_ERR(p))
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300311 p = NULL;
Cong Wang7d485c42018-08-19 12:22:08 -0700312 else if (p)
Vlad Buslov3f7c72b2018-07-05 17:24:26 +0300313 refcount_inc(&p->tcfa_refcnt);
Vlad Buslov290aa0a2018-05-21 23:03:04 +0300314 spin_unlock(&idrinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700315
Vlad Buslov3f7c72b2018-07-05 17:24:26 +0300316 if (p) {
317 *a = p;
318 return true;
319 }
320 return false;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700321}
Chris Mi65a206c2017-08-30 02:31:59 -0400322EXPORT_SYMBOL(tcf_idr_search);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700323
Cong Wang97a3f84f2018-08-19 12:22:06 -0700324static int tcf_idr_delete_index(struct tcf_idrinfo *idrinfo, u32 index)
Vlad Buslov2a2ea342018-07-05 17:24:27 +0300325{
Vlad Buslov2a2ea342018-07-05 17:24:27 +0300326 struct tc_action *p;
327 int ret = 0;
328
329 spin_lock(&idrinfo->lock);
330 p = idr_find(&idrinfo->action_idr, index);
331 if (!p) {
332 spin_unlock(&idrinfo->lock);
333 return -ENOENT;
334 }
335
336 if (!atomic_read(&p->tcfa_bindcnt)) {
337 if (refcount_dec_and_test(&p->tcfa_refcnt)) {
338 struct module *owner = p->ops->owner;
339
340 WARN_ON(p != idr_remove(&idrinfo->action_idr,
341 p->tcfa_index));
342 spin_unlock(&idrinfo->lock);
343
Vlad Buslov16af6062018-07-05 17:24:29 +0300344 tcf_action_cleanup(p);
Vlad Buslov2a2ea342018-07-05 17:24:27 +0300345 module_put(owner);
346 return 0;
347 }
348 ret = 0;
349 } else {
350 ret = -EPERM;
351 }
352
353 spin_unlock(&idrinfo->lock);
354 return ret;
355}
Vlad Buslov2a2ea342018-07-05 17:24:27 +0300356
Chris Mi65a206c2017-08-30 02:31:59 -0400357int tcf_idr_create(struct tc_action_net *tn, u32 index, struct nlattr *est,
358 struct tc_action **a, const struct tc_action_ops *ops,
359 int bind, bool cpustats)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700360{
WANG Congec0595c2016-07-25 16:09:42 -0700361 struct tc_action *p = kzalloc(ops->size, GFP_KERNEL);
Chris Mi65a206c2017-08-30 02:31:59 -0400362 struct tcf_idrinfo *idrinfo = tn->idrinfo;
Eric Dumazet519c8182015-07-06 05:18:04 -0700363 int err = -ENOMEM;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700364
365 if (unlikely(!p))
WANG Cong86062032014-02-11 17:07:31 -0800366 return -ENOMEM;
Vlad Buslov036bb442018-07-05 17:24:24 +0300367 refcount_set(&p->tcfa_refcnt, 1);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700368 if (bind)
Vlad Buslov036bb442018-07-05 17:24:24 +0300369 atomic_set(&p->tcfa_bindcnt, 1);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700370
Eric Dumazet519c8182015-07-06 05:18:04 -0700371 if (cpustats) {
372 p->cpu_bstats = netdev_alloc_pcpu_stats(struct gnet_stats_basic_cpu);
Matthew Wilcox339913a2017-11-28 10:28:15 -0500373 if (!p->cpu_bstats)
Eric Dumazet519c8182015-07-06 05:18:04 -0700374 goto err1;
Matthew Wilcox339913a2017-11-28 10:28:15 -0500375 p->cpu_qstats = alloc_percpu(struct gnet_stats_queue);
376 if (!p->cpu_qstats)
377 goto err2;
Eric Dumazet519c8182015-07-06 05:18:04 -0700378 }
WANG Congec0595c2016-07-25 16:09:42 -0700379 spin_lock_init(&p->tcfa_lock);
Matthew Wilcox339913a2017-11-28 10:28:15 -0500380 p->tcfa_index = index;
WANG Congec0595c2016-07-25 16:09:42 -0700381 p->tcfa_tm.install = jiffies;
382 p->tcfa_tm.lastuse = jiffies;
383 p->tcfa_tm.firstuse = 0;
Stephen Hemminger0e991ec2008-11-25 21:12:32 -0800384 if (est) {
WANG Congec0595c2016-07-25 16:09:42 -0700385 err = gen_new_estimator(&p->tcfa_bstats, p->cpu_bstats,
386 &p->tcfa_rate_est,
387 &p->tcfa_lock, NULL, est);
Matthew Wilcox339913a2017-11-28 10:28:15 -0500388 if (err)
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300389 goto err3;
Stephen Hemminger0e991ec2008-11-25 21:12:32 -0800390 }
391
Chris Mi65a206c2017-08-30 02:31:59 -0400392 p->idrinfo = idrinfo;
WANG Congec0595c2016-07-25 16:09:42 -0700393 p->ops = ops;
WANG Congec0595c2016-07-25 16:09:42 -0700394 *a = p;
WANG Cong86062032014-02-11 17:07:31 -0800395 return 0;
Matthew Wilcox339913a2017-11-28 10:28:15 -0500396err3:
397 free_percpu(p->cpu_qstats);
398err2:
399 free_percpu(p->cpu_bstats);
400err1:
401 kfree(p);
402 return err;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700403}
Chris Mi65a206c2017-08-30 02:31:59 -0400404EXPORT_SYMBOL(tcf_idr_create);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700405
Chris Mi65a206c2017-08-30 02:31:59 -0400406void tcf_idr_insert(struct tc_action_net *tn, struct tc_action *a)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700407{
Chris Mi65a206c2017-08-30 02:31:59 -0400408 struct tcf_idrinfo *idrinfo = tn->idrinfo;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700409
Vlad Buslov290aa0a2018-05-21 23:03:04 +0300410 spin_lock(&idrinfo->lock);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300411 /* Replace ERR_PTR(-EBUSY) allocated by tcf_idr_check_alloc */
412 WARN_ON(!IS_ERR(idr_replace(&idrinfo->action_idr, a, a->tcfa_index)));
Vlad Buslov290aa0a2018-05-21 23:03:04 +0300413 spin_unlock(&idrinfo->lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700414}
Chris Mi65a206c2017-08-30 02:31:59 -0400415EXPORT_SYMBOL(tcf_idr_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300417/* Cleanup idr index that was allocated but not initialized. */
418
419void tcf_idr_cleanup(struct tc_action_net *tn, u32 index)
420{
421 struct tcf_idrinfo *idrinfo = tn->idrinfo;
422
423 spin_lock(&idrinfo->lock);
424 /* Remove ERR_PTR(-EBUSY) allocated by tcf_idr_check_alloc */
425 WARN_ON(!IS_ERR(idr_remove(&idrinfo->action_idr, index)));
426 spin_unlock(&idrinfo->lock);
427}
428EXPORT_SYMBOL(tcf_idr_cleanup);
429
430/* Check if action with specified index exists. If actions is found, increments
431 * its reference and bind counters, and return 1. Otherwise insert temporary
432 * error pointer (to prevent concurrent users from inserting actions with same
433 * index) and return 0.
434 */
435
436int tcf_idr_check_alloc(struct tc_action_net *tn, u32 *index,
437 struct tc_action **a, int bind)
438{
439 struct tcf_idrinfo *idrinfo = tn->idrinfo;
440 struct tc_action *p;
441 int ret;
442
443again:
444 spin_lock(&idrinfo->lock);
445 if (*index) {
446 p = idr_find(&idrinfo->action_idr, *index);
447 if (IS_ERR(p)) {
448 /* This means that another process allocated
449 * index but did not assign the pointer yet.
450 */
451 spin_unlock(&idrinfo->lock);
452 goto again;
453 }
454
455 if (p) {
456 refcount_inc(&p->tcfa_refcnt);
457 if (bind)
458 atomic_inc(&p->tcfa_bindcnt);
459 *a = p;
460 ret = 1;
461 } else {
462 *a = NULL;
463 ret = idr_alloc_u32(&idrinfo->action_idr, NULL, index,
464 *index, GFP_ATOMIC);
465 if (!ret)
466 idr_replace(&idrinfo->action_idr,
467 ERR_PTR(-EBUSY), *index);
468 }
469 } else {
470 *index = 1;
471 *a = NULL;
472 ret = idr_alloc_u32(&idrinfo->action_idr, NULL, index,
473 UINT_MAX, GFP_ATOMIC);
474 if (!ret)
475 idr_replace(&idrinfo->action_idr, ERR_PTR(-EBUSY),
476 *index);
477 }
478 spin_unlock(&idrinfo->lock);
479 return ret;
480}
481EXPORT_SYMBOL(tcf_idr_check_alloc);
482
Chris Mi65a206c2017-08-30 02:31:59 -0400483void tcf_idrinfo_destroy(const struct tc_action_ops *ops,
484 struct tcf_idrinfo *idrinfo)
WANG Cong1d4150c2016-02-22 15:57:52 -0800485{
Chris Mi65a206c2017-08-30 02:31:59 -0400486 struct idr *idr = &idrinfo->action_idr;
487 struct tc_action *p;
488 int ret;
489 unsigned long id = 1;
WANG Cong1d4150c2016-02-22 15:57:52 -0800490
Matthew Wilcox7a457572017-11-28 15:39:51 -0500491 idr_for_each_entry_ul(idr, p, id) {
Chris Mi65a206c2017-08-30 02:31:59 -0400492 ret = __tcf_idr_release(p, false, true);
493 if (ret == ACT_P_DELETED)
494 module_put(ops->owner);
495 else if (ret < 0)
496 return;
WANG Cong1d4150c2016-02-22 15:57:52 -0800497 }
Chris Mi65a206c2017-08-30 02:31:59 -0400498 idr_destroy(&idrinfo->action_idr);
WANG Cong1d4150c2016-02-22 15:57:52 -0800499}
Chris Mi65a206c2017-08-30 02:31:59 -0400500EXPORT_SYMBOL(tcf_idrinfo_destroy);
WANG Cong1d4150c2016-02-22 15:57:52 -0800501
WANG Cong1f747c22013-12-15 20:15:10 -0800502static LIST_HEAD(act_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503static DEFINE_RWLOCK(act_mod_lock);
504
WANG Congddf97cc2016-02-22 15:57:53 -0800505int tcf_register_action(struct tc_action_ops *act,
506 struct pernet_operations *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
WANG Cong1f747c22013-12-15 20:15:10 -0800508 struct tc_action_ops *a;
WANG Congddf97cc2016-02-22 15:57:53 -0800509 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
WANG Congddf97cc2016-02-22 15:57:53 -0800511 if (!act->act || !act->dump || !act->init || !act->walk || !act->lookup)
Jamal Hadi Salim76c82d72013-12-04 09:26:52 -0500512 return -EINVAL;
513
WANG Congab102b82016-10-11 10:56:45 -0700514 /* We have to register pernet ops before making the action ops visible,
515 * otherwise tcf_action_init_1() could get a partially initialized
516 * netns.
517 */
518 ret = register_pernet_subsys(ops);
519 if (ret)
520 return ret;
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 write_lock(&act_mod_lock);
WANG Cong1f747c22013-12-15 20:15:10 -0800523 list_for_each_entry(a, &act_base, head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (act->type == a->type || (strcmp(act->kind, a->kind) == 0)) {
525 write_unlock(&act_mod_lock);
WANG Congab102b82016-10-11 10:56:45 -0700526 unregister_pernet_subsys(ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return -EEXIST;
528 }
529 }
WANG Cong1f747c22013-12-15 20:15:10 -0800530 list_add_tail(&act->head, &act_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 write_unlock(&act_mod_lock);
WANG Congddf97cc2016-02-22 15:57:53 -0800532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return 0;
534}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800535EXPORT_SYMBOL(tcf_register_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
WANG Congddf97cc2016-02-22 15:57:53 -0800537int tcf_unregister_action(struct tc_action_ops *act,
538 struct pernet_operations *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
WANG Cong1f747c22013-12-15 20:15:10 -0800540 struct tc_action_ops *a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int err = -ENOENT;
542
543 write_lock(&act_mod_lock);
Eric Dumazeta7928662013-12-20 12:32:32 -0800544 list_for_each_entry(a, &act_base, head) {
545 if (a == act) {
546 list_del(&act->head);
547 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 break;
Eric Dumazeta7928662013-12-20 12:32:32 -0800549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551 write_unlock(&act_mod_lock);
WANG Congab102b82016-10-11 10:56:45 -0700552 if (!err)
553 unregister_pernet_subsys(ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return err;
555}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800556EXPORT_SYMBOL(tcf_unregister_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558/* lookup by name */
559static struct tc_action_ops *tc_lookup_action_n(char *kind)
560{
Eric Dumazeta7928662013-12-20 12:32:32 -0800561 struct tc_action_ops *a, *res = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 if (kind) {
564 read_lock(&act_mod_lock);
WANG Cong1f747c22013-12-15 20:15:10 -0800565 list_for_each_entry(a, &act_base, head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (strcmp(kind, a->kind) == 0) {
Eric Dumazeta7928662013-12-20 12:32:32 -0800567 if (try_module_get(a->owner))
568 res = a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 break;
570 }
571 }
572 read_unlock(&act_mod_lock);
573 }
Eric Dumazeta7928662013-12-20 12:32:32 -0800574 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800577/* lookup by nlattr */
578static struct tc_action_ops *tc_lookup_action(struct nlattr *kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Eric Dumazeta7928662013-12-20 12:32:32 -0800580 struct tc_action_ops *a, *res = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 if (kind) {
583 read_lock(&act_mod_lock);
WANG Cong1f747c22013-12-15 20:15:10 -0800584 list_for_each_entry(a, &act_base, head) {
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800585 if (nla_strcmp(kind, a->kind) == 0) {
Eric Dumazeta7928662013-12-20 12:32:32 -0800586 if (try_module_get(a->owner))
587 res = a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 break;
589 }
590 }
591 read_unlock(&act_mod_lock);
592 }
Eric Dumazeta7928662013-12-20 12:32:32 -0800593 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400596/*TCA_ACT_MAX_PRIO is 32, there count upto 32 */
597#define TCA_ACT_MAX_PRIO_MASK 0x1FF
WANG Cong22dc13c2016-08-13 22:35:00 -0700598int tcf_action_exec(struct sk_buff *skb, struct tc_action **actions,
599 int nr_actions, struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400601 u32 jmp_prgcnt = 0;
602 u32 jmp_ttl = TCA_ACT_MAX_PRIO; /*matches actions per filter */
Jiri Pirkoec1a9cc2017-08-04 14:29:02 +0200603 int i;
604 int ret = TC_ACT_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Willem de Bruijne7246e12017-01-07 17:06:35 -0500606 if (skb_skip_tc_classify(skb))
607 return TC_ACT_OK;
608
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400609restart_act_graph:
WANG Cong22dc13c2016-08-13 22:35:00 -0700610 for (i = 0; i < nr_actions; i++) {
611 const struct tc_action *a = actions[i];
612
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400613 if (jmp_prgcnt > 0) {
614 jmp_prgcnt -= 1;
615 continue;
616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617repeat:
Jamal Hadi Salim63acd682013-12-23 08:02:12 -0500618 ret = a->ops->act(skb, a, res);
Jamal Hadi Salim63acd682013-12-23 08:02:12 -0500619 if (ret == TC_ACT_REPEAT)
620 goto repeat; /* we need a ttl - JHS */
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400621
Jiri Pirko9da32422017-05-02 10:12:00 +0200622 if (TC_ACT_EXT_CMP(ret, TC_ACT_JUMP)) {
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400623 jmp_prgcnt = ret & TCA_ACT_MAX_PRIO_MASK;
624 if (!jmp_prgcnt || (jmp_prgcnt > nr_actions)) {
625 /* faulty opcode, stop pipeline */
626 return TC_ACT_OK;
627 } else {
628 jmp_ttl -= 1;
629 if (jmp_ttl > 0)
630 goto restart_act_graph;
631 else /* faulty graph, stop pipeline */
632 return TC_ACT_OK;
633 }
Jiri Pirkodb505142017-05-17 11:08:03 +0200634 } else if (TC_ACT_EXT_CMP(ret, TC_ACT_GOTO_CHAIN)) {
635 tcf_action_goto_chain_exec(a, res);
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400636 }
637
Jamal Hadi Salim63acd682013-12-23 08:02:12 -0500638 if (ret != TC_ACT_PIPE)
Willem de Bruijne7246e12017-01-07 17:06:35 -0500639 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
Jamal Hadi Salime0ee84d2017-04-23 13:17:28 -0400641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return ret;
643}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800644EXPORT_SYMBOL(tcf_action_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Vlad Buslov90b73b72018-07-05 17:24:33 +0300646int tcf_action_destroy(struct tc_action *actions[], int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Jiri Pirko255cd502017-09-13 17:32:37 +0200648 const struct tc_action_ops *ops;
Vlad Buslov90b73b72018-07-05 17:24:33 +0300649 struct tc_action *a;
650 int ret = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Vlad Buslov90b73b72018-07-05 17:24:33 +0300652 for (i = 0; i < TCA_ACT_MAX_PRIO && actions[i]; i++) {
653 a = actions[i];
654 actions[i] = NULL;
Jiri Pirko255cd502017-09-13 17:32:37 +0200655 ops = a->ops;
Chris Mi65a206c2017-08-30 02:31:59 -0400656 ret = __tcf_idr_release(a, bind, true);
WANG Cong55334a52014-02-11 17:07:34 -0800657 if (ret == ACT_P_DELETED)
Jiri Pirko255cd502017-09-13 17:32:37 +0200658 module_put(ops->owner);
WANG Cong55334a52014-02-11 17:07:34 -0800659 else if (ret < 0)
660 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
WANG Cong55334a52014-02-11 17:07:34 -0800662 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
Paolo Abeni97763dc2018-08-29 10:22:33 +0200665static int tcf_action_destroy_1(struct tc_action *a, int bind)
666{
667 struct tc_action *actions[] = { a, NULL };
668
669 return tcf_action_destroy(actions, bind);
670}
671
Vlad Buslov16af6062018-07-05 17:24:29 +0300672static int tcf_action_put(struct tc_action *p)
673{
674 return __tcf_action_put(p, false);
675}
676
Cong Wangedfaf942018-08-19 12:22:05 -0700677/* Put all actions in this array, skip those NULL's. */
Vlad Buslov90b73b72018-07-05 17:24:33 +0300678static void tcf_action_put_many(struct tc_action *actions[])
Vlad Buslovcae422f2018-07-05 17:24:31 +0300679{
Vlad Buslov90b73b72018-07-05 17:24:33 +0300680 int i;
Vlad Buslovcae422f2018-07-05 17:24:31 +0300681
Cong Wangedfaf942018-08-19 12:22:05 -0700682 for (i = 0; i < TCA_ACT_MAX_PRIO; i++) {
Vlad Buslov90b73b72018-07-05 17:24:33 +0300683 struct tc_action *a = actions[i];
Cong Wangedfaf942018-08-19 12:22:05 -0700684 const struct tc_action_ops *ops;
Vlad Buslovcae422f2018-07-05 17:24:31 +0300685
Cong Wangedfaf942018-08-19 12:22:05 -0700686 if (!a)
687 continue;
688 ops = a->ops;
Vlad Buslovcae422f2018-07-05 17:24:31 +0300689 if (tcf_action_put(a))
690 module_put(ops->owner);
691 }
692}
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694int
695tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
696{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return a->ops->dump(skb, a, bind, ref);
698}
699
700int
701tcf_action_dump_1(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
702{
703 int err = -EINVAL;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700704 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800705 struct nlattr *nest;
Vlad Busloveec94fd2018-07-05 17:24:23 +0300706 struct tc_cookie *cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
David S. Miller1b34ec42012-03-29 05:11:39 -0400708 if (nla_put_string(skb, TCA_KIND, a->ops->kind))
709 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (tcf_action_copy_stats(skb, a, 0))
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800711 goto nla_put_failure;
Vlad Busloveec94fd2018-07-05 17:24:23 +0300712
713 rcu_read_lock();
714 cookie = rcu_dereference(a->act_cookie);
715 if (cookie) {
716 if (nla_put(skb, TCA_ACT_COOKIE, cookie->len, cookie->data)) {
717 rcu_read_unlock();
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500718 goto nla_put_failure;
Vlad Busloveec94fd2018-07-05 17:24:23 +0300719 }
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500720 }
Vlad Busloveec94fd2018-07-05 17:24:23 +0300721 rcu_read_unlock();
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500722
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800723 nest = nla_nest_start(skb, TCA_OPTIONS);
724 if (nest == NULL)
725 goto nla_put_failure;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000726 err = tcf_action_dump_old(skb, a, bind, ref);
727 if (err > 0) {
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800728 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return err;
730 }
731
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800732nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700733 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return -1;
735}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800736EXPORT_SYMBOL(tcf_action_dump_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Vlad Buslov90b73b72018-07-05 17:24:33 +0300738int tcf_action_dump(struct sk_buff *skb, struct tc_action *actions[],
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -0400739 int bind, int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
741 struct tc_action *a;
Vlad Buslov90b73b72018-07-05 17:24:33 +0300742 int err = -EINVAL, i;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800743 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Vlad Buslov90b73b72018-07-05 17:24:33 +0300745 for (i = 0; i < TCA_ACT_MAX_PRIO && actions[i]; i++) {
746 a = actions[i];
Vlad Buslov6ab96842019-05-23 09:32:31 +0300747 nest = nla_nest_start(skb, i + 1);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800748 if (nest == NULL)
749 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 err = tcf_action_dump_1(skb, a, bind, ref);
751 if (err < 0)
Thomas Graf4fe683f2006-07-05 20:47:28 -0700752 goto errout;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800753 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755
756 return 0;
757
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800758nla_put_failure:
Thomas Graf4fe683f2006-07-05 20:47:28 -0700759 err = -EINVAL;
760errout:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800761 nla_nest_cancel(skb, nest);
Thomas Graf4fe683f2006-07-05 20:47:28 -0700762 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200765static struct tc_cookie *nla_memdup_cookie(struct nlattr **tb)
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500766{
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200767 struct tc_cookie *c = kzalloc(sizeof(*c), GFP_KERNEL);
768 if (!c)
769 return NULL;
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500770
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200771 c->data = nla_memdup(tb[TCA_ACT_COOKIE], GFP_KERNEL);
772 if (!c->data) {
773 kfree(c);
774 return NULL;
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500775 }
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200776 c->len = nla_len(tb[TCA_ACT_COOKIE]);
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500777
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200778 return c;
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500779}
780
Paolo Abeni802bfb12018-07-30 14:30:42 +0200781static bool tcf_action_valid(int action)
782{
783 int opcode = TC_ACT_EXT_OPCODE(action);
784
785 if (!opcode)
786 return action <= TC_ACT_VALUE_MAX;
787 return opcode <= TC_ACT_EXT_OPCODE_MAX || action == TC_ACT_UNSPEC;
788}
789
Jiri Pirko9fb9f252017-05-17 11:08:02 +0200790struct tc_action *tcf_action_init_1(struct net *net, struct tcf_proto *tp,
791 struct nlattr *nla, struct nlattr *est,
Alexander Aringaea0d722018-02-15 10:54:54 -0500792 char *name, int ovr, int bind,
Vlad Buslov789871b2018-07-05 17:24:25 +0300793 bool rtnl_held,
Alexander Aringaea0d722018-02-15 10:54:54 -0500794 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 struct tc_action *a;
797 struct tc_action_ops *a_o;
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200798 struct tc_cookie *cookie = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 char act_name[IFNAMSIZ];
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000800 struct nlattr *tb[TCA_ACT_MAX + 1];
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800801 struct nlattr *kind;
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800802 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (name == NULL) {
Alexander Aring84ae0172018-02-15 10:54:55 -0500805 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL, extack);
Patrick McHardycee63722008-01-23 20:33:32 -0800806 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 goto err_out;
Patrick McHardycee63722008-01-23 20:33:32 -0800808 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800809 kind = tb[TCA_ACT_KIND];
Alexander Aring84ae0172018-02-15 10:54:55 -0500810 if (!kind) {
811 NL_SET_ERR_MSG(extack, "TC action kind must be specified");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 goto err_out;
Alexander Aring84ae0172018-02-15 10:54:55 -0500813 }
814 if (nla_strlcpy(act_name, kind, IFNAMSIZ) >= IFNAMSIZ) {
815 NL_SET_ERR_MSG(extack, "TC action name too long");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 goto err_out;
Alexander Aring84ae0172018-02-15 10:54:55 -0500817 }
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200818 if (tb[TCA_ACT_COOKIE]) {
819 int cklen = nla_len(tb[TCA_ACT_COOKIE]);
820
Alexander Aring84ae0172018-02-15 10:54:55 -0500821 if (cklen > TC_COOKIE_MAX_SIZE) {
822 NL_SET_ERR_MSG(extack, "TC cookie size above the maximum");
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200823 goto err_out;
Alexander Aring84ae0172018-02-15 10:54:55 -0500824 }
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200825
826 cookie = nla_memdup_cookie(tb);
827 if (!cookie) {
Alexander Aring84ae0172018-02-15 10:54:55 -0500828 NL_SET_ERR_MSG(extack, "No memory to generate TC cookie");
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200829 err = -ENOMEM;
830 goto err_out;
831 }
832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 } else {
Alexander Aring84ae0172018-02-15 10:54:55 -0500834 if (strlcpy(act_name, name, IFNAMSIZ) >= IFNAMSIZ) {
835 NL_SET_ERR_MSG(extack, "TC action name too long");
836 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 goto err_out;
Alexander Aring84ae0172018-02-15 10:54:55 -0500838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840
841 a_o = tc_lookup_action_n(act_name);
842 if (a_o == NULL) {
Johannes Berg95a5afc2008-10-16 15:24:51 -0700843#ifdef CONFIG_MODULES
Vlad Buslov789871b2018-07-05 17:24:25 +0300844 if (rtnl_held)
845 rtnl_unlock();
Patrick McHardy4bba3922006-01-08 22:22:14 -0800846 request_module("act_%s", act_name);
Vlad Buslov789871b2018-07-05 17:24:25 +0300847 if (rtnl_held)
848 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 a_o = tc_lookup_action_n(act_name);
851
852 /* We dropped the RTNL semaphore in order to
853 * perform the module load. So, even if we
854 * succeeded in loading the module we have to
855 * tell the caller to replay the request. We
856 * indicate this using -EAGAIN.
857 */
858 if (a_o != NULL) {
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800859 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 goto err_mod;
861 }
862#endif
Alexander Aring84ae0172018-02-15 10:54:55 -0500863 NL_SET_ERR_MSG(extack, "Failed to load TC action module");
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800864 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 goto err_out;
866 }
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 /* backward compatibility for policer */
869 if (name == NULL)
Alexander Aring589dad62018-02-15 10:54:56 -0500870 err = a_o->init(net, tb[TCA_ACT_OPTIONS], est, &a, ovr, bind,
Vlad Buslov789871b2018-07-05 17:24:25 +0300871 rtnl_held, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 else
Vlad Buslov789871b2018-07-05 17:24:25 +0300873 err = a_o->init(net, nla, est, &a, ovr, bind, rtnl_held,
874 extack);
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800875 if (err < 0)
WANG Conga85a9702016-07-25 16:09:41 -0700876 goto err_mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Vlad Busloveec94fd2018-07-05 17:24:23 +0300878 if (!name && tb[TCA_ACT_COOKIE])
879 tcf_set_action_cookie(&a->act_cookie, cookie);
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 /* module count goes up only when brand new policy is created
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000882 * if it exists and is only bound to in a_o->init() then
883 * ACT_P_CREATED is not returned (a zero is).
884 */
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800885 if (err != ACT_P_CREATED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 module_put(a_o->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Jiri Pirkodb505142017-05-17 11:08:03 +0200888 if (TC_ACT_EXT_CMP(a->tcfa_action, TC_ACT_GOTO_CHAIN)) {
889 err = tcf_action_goto_chain_init(a, tp);
890 if (err) {
Paolo Abeni97763dc2018-08-29 10:22:33 +0200891 tcf_action_destroy_1(a, bind);
Alexander Aring84ae0172018-02-15 10:54:55 -0500892 NL_SET_ERR_MSG(extack, "Failed to init TC action chain");
Jiri Pirkodb505142017-05-17 11:08:03 +0200893 return ERR_PTR(err);
894 }
895 }
896
Paolo Abeni802bfb12018-07-30 14:30:42 +0200897 if (!tcf_action_valid(a->tcfa_action)) {
Paolo Abeni97763dc2018-08-29 10:22:33 +0200898 tcf_action_destroy_1(a, bind);
899 NL_SET_ERR_MSG(extack, "Invalid control action value");
900 return ERR_PTR(-EINVAL);
Paolo Abeni802bfb12018-07-30 14:30:42 +0200901 }
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return a;
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905err_mod:
906 module_put(a_o->owner);
907err_out:
Wolfgang Bumillere0535ce2017-04-20 14:08:26 +0200908 if (cookie) {
909 kfree(cookie->data);
910 kfree(cookie);
911 }
Patrick McHardyab27cfb2008-01-23 20:33:13 -0800912 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
Vlad Buslov90b73b72018-07-05 17:24:33 +0300915/* Returns numbers of initialized actions or negative error. */
916
Jiri Pirko9fb9f252017-05-17 11:08:02 +0200917int tcf_action_init(struct net *net, struct tcf_proto *tp, struct nlattr *nla,
918 struct nlattr *est, char *name, int ovr, int bind,
Vlad Buslov90b73b72018-07-05 17:24:33 +0300919 struct tc_action *actions[], size_t *attr_size,
Vlad Buslov789871b2018-07-05 17:24:25 +0300920 bool rtnl_held, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000922 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
WANG Cong33be6272013-12-15 20:15:05 -0800923 struct tc_action *act;
Roman Mashak4e76e752018-03-08 16:59:19 -0500924 size_t sz = 0;
Patrick McHardycee63722008-01-23 20:33:32 -0800925 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 int i;
927
Alexander Aring84ae0172018-02-15 10:54:55 -0500928 err = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL, extack);
Patrick McHardycee63722008-01-23 20:33:32 -0800929 if (err < 0)
WANG Cong33be6272013-12-15 20:15:05 -0800930 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800932 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
Alexander Aringaea0d722018-02-15 10:54:54 -0500933 act = tcf_action_init_1(net, tp, tb[i], est, name, ovr, bind,
Vlad Buslov789871b2018-07-05 17:24:25 +0300934 rtnl_held, extack);
WANG Cong33be6272013-12-15 20:15:05 -0800935 if (IS_ERR(act)) {
936 err = PTR_ERR(act);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 goto err;
WANG Cong33be6272013-12-15 20:15:05 -0800938 }
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800939 act->order = i;
Roman Mashak4e76e752018-03-08 16:59:19 -0500940 sz += tcf_action_fill_size(act);
Vlad Buslov90b73b72018-07-05 17:24:33 +0300941 /* Start from index 0 */
942 actions[i - 1] = act;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
Jamal Hadi Salimaecc5ce2016-09-19 19:02:51 -0400944
Roman Mashak4e76e752018-03-08 16:59:19 -0500945 *attr_size = tcf_action_full_attrs_size(sz);
Vlad Buslov90b73b72018-07-05 17:24:33 +0300946 return i - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948err:
WANG Cong33be6272013-12-15 20:15:05 -0800949 tcf_action_destroy(actions, bind);
950 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
WANG Congec0595c2016-07-25 16:09:42 -0700953int tcf_action_copy_stats(struct sk_buff *skb, struct tc_action *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 int compat_mode)
955{
956 int err = 0;
957 struct gnet_dump d;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900958
WANG Cong7eb88962014-01-09 16:14:05 -0800959 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 goto errout;
961
962 /* compat_mode being true specifies a call that is supposed
Dirk Hohndel06fe9fb2009-09-28 21:43:57 -0400963 * to add additional backward compatibility statistic TLVs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 */
965 if (compat_mode) {
WANG Congec0595c2016-07-25 16:09:42 -0700966 if (p->type == TCA_OLD_COMPAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 err = gnet_stats_start_copy_compat(skb, 0,
Nicolas Dichtel98545182016-04-26 10:06:18 +0200968 TCA_STATS,
969 TCA_XSTATS,
WANG Congec0595c2016-07-25 16:09:42 -0700970 &p->tcfa_lock, &d,
Nicolas Dichtel98545182016-04-26 10:06:18 +0200971 TCA_PAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 else
973 return 0;
974 } else
975 err = gnet_stats_start_copy(skb, TCA_ACT_STATS,
WANG Congec0595c2016-07-25 16:09:42 -0700976 &p->tcfa_lock, &d, TCA_ACT_PAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 if (err < 0)
979 goto errout;
980
WANG Congec0595c2016-07-25 16:09:42 -0700981 if (gnet_stats_copy_basic(NULL, &d, p->cpu_bstats, &p->tcfa_bstats) < 0 ||
Eric Dumazet1c0d32f2016-12-04 09:48:16 -0800982 gnet_stats_copy_rate_est(&d, &p->tcfa_rate_est) < 0 ||
Eric Dumazet519c8182015-07-06 05:18:04 -0700983 gnet_stats_copy_queue(&d, p->cpu_qstats,
WANG Congec0595c2016-07-25 16:09:42 -0700984 &p->tcfa_qstats,
985 p->tcfa_qstats.qlen) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 goto errout;
987
988 if (gnet_stats_finish_copy(&d) < 0)
989 goto errout;
990
991 return 0;
992
993errout:
994 return -1;
995}
996
Vlad Buslov90b73b72018-07-05 17:24:33 +0300997static int tca_get_fill(struct sk_buff *skb, struct tc_action *actions[],
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -0400998 u32 portid, u32 seq, u16 flags, int event, int bind,
999 int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
1001 struct tcamsg *t;
1002 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001003 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001004 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Eric W. Biederman15e47302012-09-07 20:12:54 +00001006 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*t), flags);
David S. Miller8b00a532012-06-26 21:39:32 -07001007 if (!nlh)
1008 goto out_nlmsg_trim;
1009 t = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001011 t->tca__pad1 = 0;
1012 t->tca__pad2 = 0;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001013
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001014 nest = nla_nest_start(skb, TCA_ACT_TAB);
Alexander Aring1af85152018-02-15 10:54:53 -05001015 if (!nest)
David S. Miller8b00a532012-06-26 21:39:32 -07001016 goto out_nlmsg_trim;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
WANG Cong33be6272013-12-15 20:15:05 -08001018 if (tcf_action_dump(skb, actions, bind, ref) < 0)
David S. Miller8b00a532012-06-26 21:39:32 -07001019 goto out_nlmsg_trim;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001021 nla_nest_end(skb, nest);
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001022
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001023 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return skb->len;
1025
David S. Miller8b00a532012-06-26 21:39:32 -07001026out_nlmsg_trim:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001027 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return -1;
1029}
1030
1031static int
Roman Mashakc4c42902017-07-13 13:12:18 -04001032tcf_get_notify(struct net *net, u32 portid, struct nlmsghdr *n,
Vlad Buslov90b73b72018-07-05 17:24:33 +03001033 struct tc_action *actions[], int event,
Alexander Aring84ae0172018-02-15 10:54:55 -05001034 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
1036 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1039 if (!skb)
1040 return -ENOBUFS;
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -04001041 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, event,
Vlad Buslov3f7c72b2018-07-05 17:24:26 +03001042 0, 1) <= 0) {
Alexander Aring84ae0172018-02-15 10:54:55 -05001043 NL_SET_ERR_MSG(extack, "Failed to fill netlink attributes while adding TC action");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 kfree_skb(skb);
1045 return -EINVAL;
1046 }
Thomas Graf2942e902006-08-15 00:30:25 -07001047
Eric W. Biederman15e47302012-09-07 20:12:54 +00001048 return rtnl_unicast(skb, net, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049}
1050
WANG Congddf97cc2016-02-22 15:57:53 -08001051static struct tc_action *tcf_action_get_1(struct net *net, struct nlattr *nla,
Alexander Aring84ae0172018-02-15 10:54:55 -05001052 struct nlmsghdr *n, u32 portid,
1053 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001055 struct nlattr *tb[TCA_ACT_MAX + 1];
WANG Conga85a9702016-07-25 16:09:41 -07001056 const struct tc_action_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 struct tc_action *a;
1058 int index;
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001059 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Alexander Aring84ae0172018-02-15 10:54:55 -05001061 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL, extack);
Patrick McHardycee63722008-01-23 20:33:32 -08001062 if (err < 0)
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001063 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Patrick McHardycee63722008-01-23 20:33:32 -08001065 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001066 if (tb[TCA_ACT_INDEX] == NULL ||
Alexander Aring84ae0172018-02-15 10:54:55 -05001067 nla_len(tb[TCA_ACT_INDEX]) < sizeof(index)) {
1068 NL_SET_ERR_MSG(extack, "Invalid TC action index value");
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001069 goto err_out;
Alexander Aring84ae0172018-02-15 10:54:55 -05001070 }
Patrick McHardy1587bac2008-01-23 20:35:03 -08001071 index = nla_get_u32(tb[TCA_ACT_INDEX]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001073 err = -EINVAL;
WANG Conga85a9702016-07-25 16:09:41 -07001074 ops = tc_lookup_action(tb[TCA_ACT_KIND]);
Alexander Aring84ae0172018-02-15 10:54:55 -05001075 if (!ops) { /* could happen in batch of actions */
1076 NL_SET_ERR_MSG(extack, "Specified TC action not found");
WANG Conga85a9702016-07-25 16:09:41 -07001077 goto err_out;
Alexander Aring84ae0172018-02-15 10:54:55 -05001078 }
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001079 err = -ENOENT;
Alexander Aring331a9292018-02-15 10:54:57 -05001080 if (ops->lookup(net, &a, index, extack) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 goto err_mod;
1082
WANG Conga85a9702016-07-25 16:09:41 -07001083 module_put(ops->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 return a;
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086err_mod:
WANG Conga85a9702016-07-25 16:09:41 -07001087 module_put(ops->owner);
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001088err_out:
1089 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
Tom Goff7316ae82010-03-19 15:40:13 +00001092static int tca_action_flush(struct net *net, struct nlattr *nla,
Alexander Aring84ae0172018-02-15 10:54:55 -05001093 struct nlmsghdr *n, u32 portid,
1094 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
1096 struct sk_buff *skb;
1097 unsigned char *b;
1098 struct nlmsghdr *nlh;
1099 struct tcamsg *t;
1100 struct netlink_callback dcb;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001101 struct nlattr *nest;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001102 struct nlattr *tb[TCA_ACT_MAX + 1];
WANG Conga85a9702016-07-25 16:09:41 -07001103 const struct tc_action_ops *ops;
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001104 struct nlattr *kind;
Jamal Hadi Salim36723872008-08-13 02:41:45 -07001105 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
Alexander Aring84ae0172018-02-15 10:54:55 -05001108 if (!skb)
Jamal Hadi Salim36723872008-08-13 02:41:45 -07001109 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001111 b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Alexander Aring84ae0172018-02-15 10:54:55 -05001113 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL, extack);
Patrick McHardycee63722008-01-23 20:33:32 -08001114 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 goto err_out;
1116
Patrick McHardycee63722008-01-23 20:33:32 -08001117 err = -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001118 kind = tb[TCA_ACT_KIND];
WANG Conga85a9702016-07-25 16:09:41 -07001119 ops = tc_lookup_action(kind);
Alexander Aring84ae0172018-02-15 10:54:55 -05001120 if (!ops) { /*some idjot trying to flush unknown action */
1121 NL_SET_ERR_MSG(extack, "Cannot flush unknown TC action");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 goto err_out;
Alexander Aring84ae0172018-02-15 10:54:55 -05001123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -04001125 nlh = nlmsg_put(skb, portid, n->nlmsg_seq, RTM_DELACTION,
1126 sizeof(*t), 0);
Alexander Aring84ae0172018-02-15 10:54:55 -05001127 if (!nlh) {
1128 NL_SET_ERR_MSG(extack, "Failed to create TC action flush notification");
David S. Miller8b00a532012-06-26 21:39:32 -07001129 goto out_module_put;
Alexander Aring84ae0172018-02-15 10:54:55 -05001130 }
David S. Miller8b00a532012-06-26 21:39:32 -07001131 t = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001133 t->tca__pad1 = 0;
1134 t->tca__pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001136 nest = nla_nest_start(skb, TCA_ACT_TAB);
Alexander Aring84ae0172018-02-15 10:54:55 -05001137 if (!nest) {
1138 NL_SET_ERR_MSG(extack, "Failed to add new netlink message");
David S. Miller8b00a532012-06-26 21:39:32 -07001139 goto out_module_put;
Alexander Aring84ae0172018-02-15 10:54:55 -05001140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Alexander Aring41780102018-02-15 10:54:58 -05001142 err = ops->walk(net, skb, &dcb, RTM_DELACTION, ops, extack);
Davide Caratti66dede22018-02-15 15:50:57 +01001143 if (err <= 0) {
1144 nla_nest_cancel(skb, nest);
David S. Miller8b00a532012-06-26 21:39:32 -07001145 goto out_module_put;
Davide Caratti66dede22018-02-15 15:50:57 +01001146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001148 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001150 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 nlh->nlmsg_flags |= NLM_F_ROOT;
WANG Conga85a9702016-07-25 16:09:41 -07001152 module_put(ops->owner);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001153 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001154 n->nlmsg_flags & NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (err > 0)
1156 return 0;
Alexander Aring84ae0172018-02-15 10:54:55 -05001157 if (err < 0)
1158 NL_SET_ERR_MSG(extack, "Failed to send TC action flush notification");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 return err;
1161
David S. Miller8b00a532012-06-26 21:39:32 -07001162out_module_put:
WANG Conga85a9702016-07-25 16:09:41 -07001163 module_put(ops->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164err_out:
1165 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 return err;
1167}
1168
Cong Wangb144e7e2018-08-19 12:22:07 -07001169static int tcf_action_delete(struct net *net, struct tc_action *actions[])
Vlad Buslov16af6062018-07-05 17:24:29 +03001170{
Cong Wang97a3f84f2018-08-19 12:22:06 -07001171 int i;
Vlad Buslov16af6062018-07-05 17:24:29 +03001172
Vlad Buslov90b73b72018-07-05 17:24:33 +03001173 for (i = 0; i < TCA_ACT_MAX_PRIO && actions[i]; i++) {
1174 struct tc_action *a = actions[i];
Vlad Buslov16af6062018-07-05 17:24:29 +03001175 const struct tc_action_ops *ops = a->ops;
Vlad Buslov16af6062018-07-05 17:24:29 +03001176 /* Actions can be deleted concurrently so we must save their
1177 * type and id to search again after reference is released.
1178 */
Cong Wang97a3f84f2018-08-19 12:22:06 -07001179 struct tcf_idrinfo *idrinfo = a->idrinfo;
1180 u32 act_index = a->tcfa_index;
Vlad Buslov16af6062018-07-05 17:24:29 +03001181
Vlad Buslovc10bbfa2018-09-03 10:04:55 +03001182 actions[i] = NULL;
Vlad Buslov16af6062018-07-05 17:24:29 +03001183 if (tcf_action_put(a)) {
1184 /* last reference, action was deleted concurrently */
1185 module_put(ops->owner);
1186 } else {
Cong Wang97a3f84f2018-08-19 12:22:06 -07001187 int ret;
1188
Vlad Buslov16af6062018-07-05 17:24:29 +03001189 /* now do the delete */
Cong Wang97a3f84f2018-08-19 12:22:06 -07001190 ret = tcf_idr_delete_index(idrinfo, act_index);
Cong Wangedfaf942018-08-19 12:22:05 -07001191 if (ret < 0)
Vlad Buslov16af6062018-07-05 17:24:29 +03001192 return ret;
1193 }
1194 }
1195 return 0;
1196}
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198static int
Vlad Buslov90b73b72018-07-05 17:24:33 +03001199tcf_del_notify(struct net *net, struct nlmsghdr *n, struct tc_action *actions[],
Cong Wangedfaf942018-08-19 12:22:05 -07001200 u32 portid, size_t attr_size, struct netlink_ext_ack *extack)
WANG Conga56e1952014-01-09 16:14:00 -08001201{
1202 int ret;
1203 struct sk_buff *skb;
1204
Roman Mashakd04e6992018-03-08 16:59:17 -05001205 skb = alloc_skb(attr_size <= NLMSG_GOODSIZE ? NLMSG_GOODSIZE : attr_size,
1206 GFP_KERNEL);
WANG Conga56e1952014-01-09 16:14:00 -08001207 if (!skb)
1208 return -ENOBUFS;
1209
1210 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, RTM_DELACTION,
Vlad Buslov3f7c72b2018-07-05 17:24:26 +03001211 0, 2) <= 0) {
Alexander Aring84ae0172018-02-15 10:54:55 -05001212 NL_SET_ERR_MSG(extack, "Failed to fill netlink TC action attributes");
WANG Conga56e1952014-01-09 16:14:00 -08001213 kfree_skb(skb);
1214 return -EINVAL;
1215 }
1216
1217 /* now do the delete */
Cong Wangb144e7e2018-08-19 12:22:07 -07001218 ret = tcf_action_delete(net, actions);
WANG Cong55334a52014-02-11 17:07:34 -08001219 if (ret < 0) {
Alexander Aring84ae0172018-02-15 10:54:55 -05001220 NL_SET_ERR_MSG(extack, "Failed to delete TC action");
WANG Cong55334a52014-02-11 17:07:34 -08001221 kfree_skb(skb);
1222 return ret;
1223 }
WANG Conga56e1952014-01-09 16:14:00 -08001224
1225 ret = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
1226 n->nlmsg_flags & NLM_F_ECHO);
1227 if (ret > 0)
1228 return 0;
1229 return ret;
1230}
1231
1232static int
Tom Goff7316ae82010-03-19 15:40:13 +00001233tca_action_gd(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
Alexander Aring84ae0172018-02-15 10:54:55 -05001234 u32 portid, int event, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
Patrick McHardycee63722008-01-23 20:33:32 -08001236 int i, ret;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001237 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
WANG Cong33be6272013-12-15 20:15:05 -08001238 struct tc_action *act;
Roman Mashakd04e6992018-03-08 16:59:17 -05001239 size_t attr_size = 0;
Cong Wangedfaf942018-08-19 12:22:05 -07001240 struct tc_action *actions[TCA_ACT_MAX_PRIO] = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Alexander Aring84ae0172018-02-15 10:54:55 -05001242 ret = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL, extack);
Patrick McHardycee63722008-01-23 20:33:32 -08001243 if (ret < 0)
1244 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001246 if (event == RTM_DELACTION && n->nlmsg_flags & NLM_F_ROOT) {
Alexander Aring1af85152018-02-15 10:54:53 -05001247 if (tb[1])
Alexander Aring84ae0172018-02-15 10:54:55 -05001248 return tca_action_flush(net, tb[1], n, portid, extack);
Alexander Aring1af85152018-02-15 10:54:53 -05001249
Alexander Aring84ae0172018-02-15 10:54:55 -05001250 NL_SET_ERR_MSG(extack, "Invalid netlink attributes while flushing TC action");
Alexander Aring1af85152018-02-15 10:54:53 -05001251 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
1253
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001254 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
Alexander Aring84ae0172018-02-15 10:54:55 -05001255 act = tcf_action_get_1(net, tb[i], n, portid, extack);
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001256 if (IS_ERR(act)) {
1257 ret = PTR_ERR(act);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 goto err;
Patrick McHardyab27cfb2008-01-23 20:33:13 -08001259 }
Roman Mashak4e76e752018-03-08 16:59:19 -05001260 attr_size += tcf_action_fill_size(act);
Vlad Buslov90b73b72018-07-05 17:24:33 +03001261 actions[i - 1] = act;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
1263
Roman Mashak4e76e752018-03-08 16:59:19 -05001264 attr_size = tcf_action_full_attrs_size(attr_size);
1265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (event == RTM_GETACTION)
Vlad Buslov90b73b72018-07-05 17:24:33 +03001267 ret = tcf_get_notify(net, portid, n, actions, event, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 else { /* delete */
Cong Wangedfaf942018-08-19 12:22:05 -07001269 ret = tcf_del_notify(net, n, actions, portid, attr_size, extack);
WANG Conga56e1952014-01-09 16:14:00 -08001270 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 goto err;
Cong Wangedfaf942018-08-19 12:22:05 -07001272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274err:
Cong Wangedfaf942018-08-19 12:22:05 -07001275 tcf_action_put_many(actions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 return ret;
1277}
1278
WANG Conga56e1952014-01-09 16:14:00 -08001279static int
Vlad Buslov90b73b72018-07-05 17:24:33 +03001280tcf_add_notify(struct net *net, struct nlmsghdr *n, struct tc_action *actions[],
Roman Mashakd04e6992018-03-08 16:59:17 -05001281 u32 portid, size_t attr_size, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 int err = 0;
1285
Roman Mashakd04e6992018-03-08 16:59:17 -05001286 skb = alloc_skb(attr_size <= NLMSG_GOODSIZE ? NLMSG_GOODSIZE : attr_size,
1287 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (!skb)
1289 return -ENOBUFS;
1290
WANG Conga56e1952014-01-09 16:14:00 -08001291 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, n->nlmsg_flags,
1292 RTM_NEWACTION, 0, 0) <= 0) {
Roman Mashakd143b9e2018-03-02 20:52:01 -05001293 NL_SET_ERR_MSG(extack, "Failed to fill netlink attributes while adding TC action");
WANG Conga56e1952014-01-09 16:14:00 -08001294 kfree_skb(skb);
1295 return -EINVAL;
1296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
WANG Conga56e1952014-01-09 16:14:00 -08001298 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
1299 n->nlmsg_flags & NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (err > 0)
1301 err = 0;
1302 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303}
1304
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04001305static int tcf_action_add(struct net *net, struct nlattr *nla,
Alexander Aringaea0d722018-02-15 10:54:54 -05001306 struct nlmsghdr *n, u32 portid, int ovr,
1307 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
Roman Mashakd04e6992018-03-08 16:59:17 -05001309 size_t attr_size = 0;
Eric Dumazet16d67ac2019-10-14 11:22:30 -07001310 int loop, ret;
Vlad Buslov90b73b72018-07-05 17:24:33 +03001311 struct tc_action *actions[TCA_ACT_MAX_PRIO] = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Eric Dumazet16d67ac2019-10-14 11:22:30 -07001313 for (loop = 0; loop < 10; loop++) {
1314 ret = tcf_action_init(net, NULL, nla, NULL, NULL, ovr, 0,
1315 actions, &attr_size, true, extack);
1316 if (ret != -EAGAIN)
1317 break;
1318 }
1319
Vlad Buslov90b73b72018-07-05 17:24:33 +03001320 if (ret < 0)
WANG Congf07fed82016-08-13 22:34:56 -07001321 return ret;
Vlad Buslov90b73b72018-07-05 17:24:33 +03001322 ret = tcf_add_notify(net, n, actions, portid, attr_size, extack);
Vlad Buslovcae422f2018-07-05 17:24:31 +03001323 if (ovr)
Vlad Buslov90b73b72018-07-05 17:24:33 +03001324 tcf_action_put_many(actions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Vlad Buslovcae422f2018-07-05 17:24:31 +03001326 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327}
1328
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001329static u32 tcaa_root_flags_allowed = TCA_FLAG_LARGE_DUMP_ON;
1330static const struct nla_policy tcaa_policy[TCA_ROOT_MAX + 1] = {
1331 [TCA_ROOT_FLAGS] = { .type = NLA_BITFIELD32,
1332 .validation_data = &tcaa_root_flags_allowed },
Jamal Hadi Salime62e4842017-07-30 13:24:52 -04001333 [TCA_ROOT_TIME_DELTA] = { .type = NLA_U32 },
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001334};
1335
David Ahernc21ef3e2017-04-16 09:48:24 -07001336static int tc_ctl_action(struct sk_buff *skb, struct nlmsghdr *n,
1337 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001339 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001340 struct nlattr *tca[TCA_ROOT_MAX + 1];
Eric W. Biederman15e47302012-09-07 20:12:54 +00001341 u32 portid = skb ? NETLINK_CB(skb).portid : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 int ret = 0, ovr = 0;
1343
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -04001344 if ((n->nlmsg_type != RTM_GETACTION) &&
1345 !netlink_capable(skb, CAP_NET_ADMIN))
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +00001346 return -EPERM;
1347
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001348 ret = nlmsg_parse(n, sizeof(struct tcamsg), tca, TCA_ROOT_MAX, NULL,
David Ahernc21ef3e2017-04-16 09:48:24 -07001349 extack);
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001350 if (ret < 0)
1351 return ret;
1352
1353 if (tca[TCA_ACT_TAB] == NULL) {
Alexander Aring84ae0172018-02-15 10:54:55 -05001354 NL_SET_ERR_MSG(extack, "Netlink action attributes missing");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return -EINVAL;
1356 }
1357
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001358 /* n->nlmsg_flags & NLM_F_CREATE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 switch (n->nlmsg_type) {
1360 case RTM_NEWACTION:
1361 /* we are going to assume all other flags
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001362 * imply create only if it doesn't exist
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 * Note that CREATE | EXCL implies that
1364 * but since we want avoid ambiguity (eg when flags
1365 * is zero) then just set this
1366 */
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001367 if (n->nlmsg_flags & NLM_F_REPLACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 ovr = 1;
Alexander Aringaea0d722018-02-15 10:54:54 -05001369 ret = tcf_action_add(net, tca[TCA_ACT_TAB], n, portid, ovr,
1370 extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 break;
1372 case RTM_DELACTION:
Tom Goff7316ae82010-03-19 15:40:13 +00001373 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
Alexander Aring84ae0172018-02-15 10:54:55 -05001374 portid, RTM_DELACTION, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 break;
1376 case RTM_GETACTION:
Tom Goff7316ae82010-03-19 15:40:13 +00001377 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
Alexander Aring84ae0172018-02-15 10:54:55 -05001378 portid, RTM_GETACTION, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 break;
1380 default:
1381 BUG();
1382 }
1383
1384 return ret;
1385}
1386
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001387static struct nlattr *find_dump_kind(struct nlattr **nla)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001389 struct nlattr *tb1, *tb2[TCA_ACT_MAX + 1];
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001390 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001391 struct nlattr *kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001393 tb1 = nla[TCA_ACT_TAB];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 if (tb1 == NULL)
1395 return NULL;
1396
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001397 if (nla_parse(tb, TCA_ACT_MAX_PRIO, nla_data(tb1),
Johannes Bergfceb6432017-04-12 14:34:07 +02001398 NLMSG_ALIGN(nla_len(tb1)), NULL, NULL) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Patrick McHardy6d834e02008-01-23 20:32:42 -08001401 if (tb[1] == NULL)
1402 return NULL;
Johannes Bergfceb6432017-04-12 14:34:07 +02001403 if (nla_parse_nested(tb2, TCA_ACT_MAX, tb[1], NULL, NULL) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 return NULL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -08001405 kind = tb2[TCA_ACT_KIND];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Thomas Graf26dab892006-07-05 20:45:06 -07001407 return kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04001410static int tc_dump_action(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
WANG Congddf97cc2016-02-22 15:57:53 -08001412 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001414 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001415 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 struct tc_action_ops *a_o;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 int ret = 0;
David S. Miller8b00a532012-06-26 21:39:32 -07001418 struct tcamsg *t = (struct tcamsg *) nlmsg_data(cb->nlh);
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001419 struct nlattr *tb[TCA_ROOT_MAX + 1];
1420 struct nlattr *count_attr = NULL;
Jamal Hadi Salime62e4842017-07-30 13:24:52 -04001421 unsigned long jiffy_since = 0;
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001422 struct nlattr *kind = NULL;
1423 struct nla_bitfield32 bf;
Jamal Hadi Salime62e4842017-07-30 13:24:52 -04001424 u32 msecs_since = 0;
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001425 u32 act_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001427 ret = nlmsg_parse(cb->nlh, sizeof(struct tcamsg), tb, TCA_ROOT_MAX,
1428 tcaa_policy, NULL);
1429 if (ret < 0)
1430 return ret;
1431
1432 kind = find_dump_kind(tb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 if (kind == NULL) {
stephen hemminger6ff9c362010-05-12 06:37:05 +00001434 pr_info("tc_dump_action: action bad kind\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return 0;
1436 }
1437
Thomas Graf26dab892006-07-05 20:45:06 -07001438 a_o = tc_lookup_action(kind);
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001439 if (a_o == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001442 cb->args[2] = 0;
1443 if (tb[TCA_ROOT_FLAGS]) {
1444 bf = nla_get_bitfield32(tb[TCA_ROOT_FLAGS]);
1445 cb->args[2] = bf.value;
1446 }
1447
Jamal Hadi Salime62e4842017-07-30 13:24:52 -04001448 if (tb[TCA_ROOT_TIME_DELTA]) {
1449 msecs_since = nla_get_u32(tb[TCA_ROOT_TIME_DELTA]);
1450 }
1451
Eric W. Biederman15e47302012-09-07 20:12:54 +00001452 nlh = nlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
David S. Miller8b00a532012-06-26 21:39:32 -07001453 cb->nlh->nlmsg_type, sizeof(*t), 0);
1454 if (!nlh)
1455 goto out_module_put;
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001456
Jamal Hadi Salime62e4842017-07-30 13:24:52 -04001457 if (msecs_since)
1458 jiffy_since = jiffies - msecs_to_jiffies(msecs_since);
1459
David S. Miller8b00a532012-06-26 21:39:32 -07001460 t = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 t->tca_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001462 t->tca__pad1 = 0;
1463 t->tca__pad2 = 0;
Jamal Hadi Salime62e4842017-07-30 13:24:52 -04001464 cb->args[3] = jiffy_since;
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001465 count_attr = nla_reserve(skb, TCA_ROOT_COUNT, sizeof(u32));
1466 if (!count_attr)
1467 goto out_module_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001469 nest = nla_nest_start(skb, TCA_ACT_TAB);
1470 if (nest == NULL)
David S. Miller8b00a532012-06-26 21:39:32 -07001471 goto out_module_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Alexander Aring41780102018-02-15 10:54:58 -05001473 ret = a_o->walk(net, skb, cb, RTM_GETACTION, a_o, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 if (ret < 0)
David S. Miller8b00a532012-06-26 21:39:32 -07001475 goto out_module_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 if (ret > 0) {
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001478 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 ret = skb->len;
Jamal Hadi Salim90825b22017-07-30 13:24:51 -04001480 act_count = cb->args[1];
1481 memcpy(nla_data(count_attr), &act_count, sizeof(u32));
1482 cb->args[1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 } else
Jamal Hadi Salimebecaa62016-06-13 18:08:42 -04001484 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001486 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001487 if (NETLINK_CB(cb->skb).portid && ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 nlh->nlmsg_flags |= NLM_F_MULTI;
1489 module_put(a_o->owner);
1490 return skb->len;
1491
David S. Miller8b00a532012-06-26 21:39:32 -07001492out_module_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 module_put(a_o->owner);
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001494 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 return skb->len;
1496}
1497
Jiri Pirkob3f55bd2017-10-11 09:41:08 +02001498struct tcf_action_net {
1499 struct rhashtable egdev_ht;
1500};
1501
1502static unsigned int tcf_action_net_id;
1503
1504struct tcf_action_egdev_cb {
1505 struct list_head list;
1506 tc_setup_cb_t *cb;
1507 void *cb_priv;
1508};
1509
1510struct tcf_action_egdev {
1511 struct rhash_head ht_node;
1512 const struct net_device *dev;
1513 unsigned int refcnt;
1514 struct list_head cb_list;
1515};
1516
1517static const struct rhashtable_params tcf_action_egdev_ht_params = {
1518 .key_offset = offsetof(struct tcf_action_egdev, dev),
1519 .head_offset = offsetof(struct tcf_action_egdev, ht_node),
1520 .key_len = sizeof(const struct net_device *),
1521};
1522
1523static struct tcf_action_egdev *
1524tcf_action_egdev_lookup(const struct net_device *dev)
1525{
1526 struct net *net = dev_net(dev);
1527 struct tcf_action_net *tan = net_generic(net, tcf_action_net_id);
1528
1529 return rhashtable_lookup_fast(&tan->egdev_ht, &dev,
1530 tcf_action_egdev_ht_params);
1531}
1532
1533static struct tcf_action_egdev *
1534tcf_action_egdev_get(const struct net_device *dev)
1535{
1536 struct tcf_action_egdev *egdev;
1537 struct tcf_action_net *tan;
1538
1539 egdev = tcf_action_egdev_lookup(dev);
1540 if (egdev)
1541 goto inc_ref;
1542
1543 egdev = kzalloc(sizeof(*egdev), GFP_KERNEL);
1544 if (!egdev)
1545 return NULL;
1546 INIT_LIST_HEAD(&egdev->cb_list);
Or Gerlitz0843c092017-10-18 18:38:08 +03001547 egdev->dev = dev;
Jiri Pirkob3f55bd2017-10-11 09:41:08 +02001548 tan = net_generic(dev_net(dev), tcf_action_net_id);
1549 rhashtable_insert_fast(&tan->egdev_ht, &egdev->ht_node,
1550 tcf_action_egdev_ht_params);
1551
1552inc_ref:
1553 egdev->refcnt++;
1554 return egdev;
1555}
1556
1557static void tcf_action_egdev_put(struct tcf_action_egdev *egdev)
1558{
1559 struct tcf_action_net *tan;
1560
1561 if (--egdev->refcnt)
1562 return;
1563 tan = net_generic(dev_net(egdev->dev), tcf_action_net_id);
1564 rhashtable_remove_fast(&tan->egdev_ht, &egdev->ht_node,
1565 tcf_action_egdev_ht_params);
1566 kfree(egdev);
1567}
1568
1569static struct tcf_action_egdev_cb *
1570tcf_action_egdev_cb_lookup(struct tcf_action_egdev *egdev,
1571 tc_setup_cb_t *cb, void *cb_priv)
1572{
1573 struct tcf_action_egdev_cb *egdev_cb;
1574
1575 list_for_each_entry(egdev_cb, &egdev->cb_list, list)
1576 if (egdev_cb->cb == cb && egdev_cb->cb_priv == cb_priv)
1577 return egdev_cb;
1578 return NULL;
1579}
1580
1581static int tcf_action_egdev_cb_call(struct tcf_action_egdev *egdev,
1582 enum tc_setup_type type,
1583 void *type_data, bool err_stop)
1584{
1585 struct tcf_action_egdev_cb *egdev_cb;
1586 int ok_count = 0;
1587 int err;
1588
1589 list_for_each_entry(egdev_cb, &egdev->cb_list, list) {
1590 err = egdev_cb->cb(type, type_data, egdev_cb->cb_priv);
1591 if (err) {
1592 if (err_stop)
1593 return err;
1594 } else {
1595 ok_count++;
1596 }
1597 }
1598 return ok_count;
1599}
1600
1601static int tcf_action_egdev_cb_add(struct tcf_action_egdev *egdev,
1602 tc_setup_cb_t *cb, void *cb_priv)
1603{
1604 struct tcf_action_egdev_cb *egdev_cb;
1605
1606 egdev_cb = tcf_action_egdev_cb_lookup(egdev, cb, cb_priv);
1607 if (WARN_ON(egdev_cb))
1608 return -EEXIST;
1609 egdev_cb = kzalloc(sizeof(*egdev_cb), GFP_KERNEL);
1610 if (!egdev_cb)
1611 return -ENOMEM;
1612 egdev_cb->cb = cb;
1613 egdev_cb->cb_priv = cb_priv;
1614 list_add(&egdev_cb->list, &egdev->cb_list);
1615 return 0;
1616}
1617
1618static void tcf_action_egdev_cb_del(struct tcf_action_egdev *egdev,
1619 tc_setup_cb_t *cb, void *cb_priv)
1620{
1621 struct tcf_action_egdev_cb *egdev_cb;
1622
1623 egdev_cb = tcf_action_egdev_cb_lookup(egdev, cb, cb_priv);
1624 if (WARN_ON(!egdev_cb))
1625 return;
1626 list_del(&egdev_cb->list);
1627 kfree(egdev_cb);
1628}
1629
1630static int __tc_setup_cb_egdev_register(const struct net_device *dev,
1631 tc_setup_cb_t *cb, void *cb_priv)
1632{
1633 struct tcf_action_egdev *egdev = tcf_action_egdev_get(dev);
1634 int err;
1635
1636 if (!egdev)
1637 return -ENOMEM;
1638 err = tcf_action_egdev_cb_add(egdev, cb, cb_priv);
1639 if (err)
1640 goto err_cb_add;
1641 return 0;
1642
1643err_cb_add:
1644 tcf_action_egdev_put(egdev);
1645 return err;
1646}
1647int tc_setup_cb_egdev_register(const struct net_device *dev,
1648 tc_setup_cb_t *cb, void *cb_priv)
1649{
1650 int err;
1651
1652 rtnl_lock();
1653 err = __tc_setup_cb_egdev_register(dev, cb, cb_priv);
1654 rtnl_unlock();
1655 return err;
1656}
1657EXPORT_SYMBOL_GPL(tc_setup_cb_egdev_register);
1658
1659static void __tc_setup_cb_egdev_unregister(const struct net_device *dev,
1660 tc_setup_cb_t *cb, void *cb_priv)
1661{
1662 struct tcf_action_egdev *egdev = tcf_action_egdev_lookup(dev);
1663
1664 if (WARN_ON(!egdev))
1665 return;
1666 tcf_action_egdev_cb_del(egdev, cb, cb_priv);
1667 tcf_action_egdev_put(egdev);
1668}
1669void tc_setup_cb_egdev_unregister(const struct net_device *dev,
1670 tc_setup_cb_t *cb, void *cb_priv)
1671{
1672 rtnl_lock();
1673 __tc_setup_cb_egdev_unregister(dev, cb, cb_priv);
1674 rtnl_unlock();
1675}
1676EXPORT_SYMBOL_GPL(tc_setup_cb_egdev_unregister);
1677
1678int tc_setup_cb_egdev_call(const struct net_device *dev,
1679 enum tc_setup_type type, void *type_data,
1680 bool err_stop)
1681{
1682 struct tcf_action_egdev *egdev = tcf_action_egdev_lookup(dev);
1683
1684 if (!egdev)
1685 return 0;
1686 return tcf_action_egdev_cb_call(egdev, type, type_data, err_stop);
1687}
1688EXPORT_SYMBOL_GPL(tc_setup_cb_egdev_call);
1689
1690static __net_init int tcf_action_net_init(struct net *net)
1691{
1692 struct tcf_action_net *tan = net_generic(net, tcf_action_net_id);
1693
1694 return rhashtable_init(&tan->egdev_ht, &tcf_action_egdev_ht_params);
1695}
1696
1697static void __net_exit tcf_action_net_exit(struct net *net)
1698{
1699 struct tcf_action_net *tan = net_generic(net, tcf_action_net_id);
1700
1701 rhashtable_destroy(&tan->egdev_ht);
1702}
1703
1704static struct pernet_operations tcf_action_net_ops = {
1705 .init = tcf_action_net_init,
1706 .exit = tcf_action_net_exit,
1707 .id = &tcf_action_net_id,
1708 .size = sizeof(struct tcf_action_net),
1709};
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711static int __init tc_action_init(void)
1712{
Jiri Pirkob3f55bd2017-10-11 09:41:08 +02001713 int err;
1714
1715 err = register_pernet_subsys(&tcf_action_net_ops);
1716 if (err)
1717 return err;
1718
Florian Westphalb97bac62017-08-09 20:41:48 +02001719 rtnl_register(PF_UNSPEC, RTM_NEWACTION, tc_ctl_action, NULL, 0);
1720 rtnl_register(PF_UNSPEC, RTM_DELACTION, tc_ctl_action, NULL, 0);
Greg Rosec7ac8672011-06-10 01:27:09 +00001721 rtnl_register(PF_UNSPEC, RTM_GETACTION, tc_ctl_action, tc_dump_action,
Florian Westphalb97bac62017-08-09 20:41:48 +02001722 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 return 0;
1725}
1726
1727subsys_initcall(tc_action_init);