blob: c0e5b64b3caf287d0ff73b6d26ef284e44123d4f [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/cls_api.c Packet classifier API.
4 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
6 *
7 * Changes:
8 *
9 * Eduardo J. Blanco <ejbs@netlabs.com.uy> :990222: kmod support
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/types.h>
14#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/errno.h>
Jiri Pirko33a48922017-02-09 14:38:57 +010017#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/init.h>
20#include <linux/kmod.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Jiri Pirko48617382018-01-17 11:46:46 +010022#include <linux/idr.h>
John Hurley7f76fa32018-11-09 21:21:26 -080023#include <linux/rhashtable.h>
John Hurley59eb87c2019-11-02 14:17:47 +000024#include <linux/jhash.h>
Paul Blakey43719292020-02-16 12:01:23 +020025#include <linux/rculist.h>
Denis V. Lunevb8542722007-12-01 00:21:31 +110026#include <net/net_namespace.h>
27#include <net/sock.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070028#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <net/pkt_sched.h>
30#include <net/pkt_cls.h>
Pablo Neira Ayusoe3ab7862019-02-02 12:50:45 +010031#include <net/tc_act/tc_pedit.h>
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +010032#include <net/tc_act/tc_mirred.h>
33#include <net/tc_act/tc_vlan.h>
34#include <net/tc_act/tc_tunnel_key.h>
35#include <net/tc_act/tc_csum.h>
36#include <net/tc_act/tc_gact.h>
Pieter Jansen van Vuuren8c8cfc62019-05-04 04:46:22 -070037#include <net/tc_act/tc_police.h>
Pieter Jansen van Vuurena7a7be62019-05-04 04:46:16 -070038#include <net/tc_act/tc_sample.h>
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +010039#include <net/tc_act/tc_skbedit.h>
Paul Blakeyb57dc7c2019-07-09 10:30:48 +030040#include <net/tc_act/tc_ct.h>
John Hurley6749d5902019-07-23 15:33:59 +010041#include <net/tc_act/tc_mpls.h>
wenxu4e481902019-08-07 09:13:52 +080042#include <net/flow_offload.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Davide Carattie3314732018-10-10 22:00:58 +020044extern const struct nla_policy rtm_tca_policy[TCA_MAX + 1];
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046/* The list of all installed classifier types */
WANG Cong36272872013-12-15 20:15:11 -080047static LIST_HEAD(tcf_proto_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/* Protects list of registered TC modules. It is pure SMP lock. */
50static DEFINE_RWLOCK(cls_mod_lock);
51
John Hurley59eb87c2019-11-02 14:17:47 +000052static u32 destroy_obj_hashfn(const struct tcf_proto *tp)
53{
54 return jhash_3words(tp->chain->index, tp->prio,
55 (__force __u32)tp->protocol, 0);
56}
57
58static void tcf_proto_signal_destroying(struct tcf_chain *chain,
59 struct tcf_proto *tp)
60{
61 struct tcf_block *block = chain->block;
62
63 mutex_lock(&block->proto_destroy_lock);
64 hash_add_rcu(block->proto_destroy_ht, &tp->destroy_ht_node,
65 destroy_obj_hashfn(tp));
66 mutex_unlock(&block->proto_destroy_lock);
67}
68
69static bool tcf_proto_cmp(const struct tcf_proto *tp1,
70 const struct tcf_proto *tp2)
71{
72 return tp1->chain->index == tp2->chain->index &&
73 tp1->prio == tp2->prio &&
74 tp1->protocol == tp2->protocol;
75}
76
77static bool tcf_proto_exists_destroying(struct tcf_chain *chain,
78 struct tcf_proto *tp)
79{
80 u32 hash = destroy_obj_hashfn(tp);
81 struct tcf_proto *iter;
82 bool found = false;
83
84 rcu_read_lock();
85 hash_for_each_possible_rcu(chain->block->proto_destroy_ht, iter,
86 destroy_ht_node, hash) {
87 if (tcf_proto_cmp(tp, iter)) {
88 found = true;
89 break;
90 }
91 }
92 rcu_read_unlock();
93
94 return found;
95}
96
97static void
98tcf_proto_signal_destroyed(struct tcf_chain *chain, struct tcf_proto *tp)
99{
100 struct tcf_block *block = chain->block;
101
102 mutex_lock(&block->proto_destroy_lock);
103 if (hash_hashed(&tp->destroy_ht_node))
104 hash_del_rcu(&tp->destroy_ht_node);
105 mutex_unlock(&block->proto_destroy_lock);
106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/* Find classifier type by string name */
109
Jiri Pirkof34e8bf2018-07-23 09:23:04 +0200110static const struct tcf_proto_ops *__tcf_proto_lookup_ops(const char *kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Eric Dumazetdcd76082013-12-20 10:04:18 -0800112 const struct tcf_proto_ops *t, *res = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 if (kind) {
115 read_lock(&cls_mod_lock);
WANG Cong36272872013-12-15 20:15:11 -0800116 list_for_each_entry(t, &tcf_proto_base, head) {
Jiri Pirko33a48922017-02-09 14:38:57 +0100117 if (strcmp(kind, t->kind) == 0) {
Eric Dumazetdcd76082013-12-20 10:04:18 -0800118 if (try_module_get(t->owner))
119 res = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 break;
121 }
122 }
123 read_unlock(&cls_mod_lock);
124 }
Eric Dumazetdcd76082013-12-20 10:04:18 -0800125 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Jiri Pirkof34e8bf2018-07-23 09:23:04 +0200128static const struct tcf_proto_ops *
Vlad Buslov12db03b2019-02-11 10:55:45 +0200129tcf_proto_lookup_ops(const char *kind, bool rtnl_held,
130 struct netlink_ext_ack *extack)
Jiri Pirkof34e8bf2018-07-23 09:23:04 +0200131{
132 const struct tcf_proto_ops *ops;
133
134 ops = __tcf_proto_lookup_ops(kind);
135 if (ops)
136 return ops;
137#ifdef CONFIG_MODULES
Vlad Buslov12db03b2019-02-11 10:55:45 +0200138 if (rtnl_held)
139 rtnl_unlock();
Jiri Pirkof34e8bf2018-07-23 09:23:04 +0200140 request_module("cls_%s", kind);
Vlad Buslov12db03b2019-02-11 10:55:45 +0200141 if (rtnl_held)
142 rtnl_lock();
Jiri Pirkof34e8bf2018-07-23 09:23:04 +0200143 ops = __tcf_proto_lookup_ops(kind);
144 /* We dropped the RTNL semaphore in order to perform
145 * the module load. So, even if we succeeded in loading
146 * the module we have to replay the request. We indicate
147 * this using -EAGAIN.
148 */
149 if (ops) {
150 module_put(ops->owner);
151 return ERR_PTR(-EAGAIN);
152 }
153#endif
154 NL_SET_ERR_MSG(extack, "TC classifier not found");
155 return ERR_PTR(-ENOENT);
156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/* Register(unregister) new classifier type */
159
160int register_tcf_proto_ops(struct tcf_proto_ops *ops)
161{
WANG Cong36272872013-12-15 20:15:11 -0800162 struct tcf_proto_ops *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 int rc = -EEXIST;
164
165 write_lock(&cls_mod_lock);
WANG Cong36272872013-12-15 20:15:11 -0800166 list_for_each_entry(t, &tcf_proto_base, head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (!strcmp(ops->kind, t->kind))
168 goto out;
169
WANG Cong36272872013-12-15 20:15:11 -0800170 list_add_tail(&ops->head, &tcf_proto_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 rc = 0;
172out:
173 write_unlock(&cls_mod_lock);
174 return rc;
175}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800176EXPORT_SYMBOL(register_tcf_proto_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Cong Wang7aa00452017-10-26 18:24:28 -0700178static struct workqueue_struct *tc_filter_wq;
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180int unregister_tcf_proto_ops(struct tcf_proto_ops *ops)
181{
WANG Cong36272872013-12-15 20:15:11 -0800182 struct tcf_proto_ops *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 int rc = -ENOENT;
184
Daniel Borkmannc78e1742015-05-20 17:13:33 +0200185 /* Wait for outstanding call_rcu()s, if any, from a
186 * tcf_proto_ops's destroy() handler.
187 */
188 rcu_barrier();
Cong Wang7aa00452017-10-26 18:24:28 -0700189 flush_workqueue(tc_filter_wq);
Daniel Borkmannc78e1742015-05-20 17:13:33 +0200190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 write_lock(&cls_mod_lock);
Eric Dumazetdcd76082013-12-20 10:04:18 -0800192 list_for_each_entry(t, &tcf_proto_base, head) {
193 if (t == ops) {
194 list_del(&t->head);
195 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 break;
Eric Dumazetdcd76082013-12-20 10:04:18 -0800197 }
198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 write_unlock(&cls_mod_lock);
200 return rc;
201}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800202EXPORT_SYMBOL(unregister_tcf_proto_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Cong Wangaaa908f2018-05-23 15:26:53 -0700204bool tcf_queue_work(struct rcu_work *rwork, work_func_t func)
Cong Wang7aa00452017-10-26 18:24:28 -0700205{
Cong Wangaaa908f2018-05-23 15:26:53 -0700206 INIT_RCU_WORK(rwork, func);
207 return queue_rcu_work(tc_filter_wq, rwork);
Cong Wang7aa00452017-10-26 18:24:28 -0700208}
209EXPORT_SYMBOL(tcf_queue_work);
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/* Select new prio value from the range, managed by kernel. */
212
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800213static inline u32 tcf_auto_prio(struct tcf_proto *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -0800215 u32 first = TC_H_MAKE(0xC0000000U, 0U);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 if (tp)
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000218 first = tp->prio - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Jiri Pirko79619732017-05-17 11:07:58 +0200220 return TC_H_MAJ(first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Cong Wang6f96c3c2019-10-07 13:26:28 -0700223static bool tcf_proto_check_kind(struct nlattr *kind, char *name)
224{
225 if (kind)
226 return nla_strlcpy(name, kind, IFNAMSIZ) >= IFNAMSIZ;
227 memset(name, 0, IFNAMSIZ);
228 return false;
229}
230
Vlad Buslov470502d2019-02-11 10:55:48 +0200231static bool tcf_proto_is_unlocked(const char *kind)
232{
233 const struct tcf_proto_ops *ops;
234 bool ret;
235
Cong Wang6f96c3c2019-10-07 13:26:28 -0700236 if (strlen(kind) == 0)
237 return false;
238
Vlad Buslov470502d2019-02-11 10:55:48 +0200239 ops = tcf_proto_lookup_ops(kind, false, NULL);
240 /* On error return false to take rtnl lock. Proto lookup/create
241 * functions will perform lookup again and properly handle errors.
242 */
243 if (IS_ERR(ops))
244 return false;
245
246 ret = !!(ops->flags & TCF_PROTO_OPS_DOIT_UNLOCKED);
247 module_put(ops->owner);
248 return ret;
249}
250
Jiri Pirko33a48922017-02-09 14:38:57 +0100251static struct tcf_proto *tcf_proto_create(const char *kind, u32 protocol,
Alexander Aringc35a4ac2018-01-18 11:20:50 -0500252 u32 prio, struct tcf_chain *chain,
Vlad Buslov12db03b2019-02-11 10:55:45 +0200253 bool rtnl_held,
Alexander Aringc35a4ac2018-01-18 11:20:50 -0500254 struct netlink_ext_ack *extack)
Jiri Pirko33a48922017-02-09 14:38:57 +0100255{
256 struct tcf_proto *tp;
257 int err;
258
259 tp = kzalloc(sizeof(*tp), GFP_KERNEL);
260 if (!tp)
261 return ERR_PTR(-ENOBUFS);
262
Vlad Buslov12db03b2019-02-11 10:55:45 +0200263 tp->ops = tcf_proto_lookup_ops(kind, rtnl_held, extack);
Jiri Pirkof34e8bf2018-07-23 09:23:04 +0200264 if (IS_ERR(tp->ops)) {
265 err = PTR_ERR(tp->ops);
Jiri Pirkod68d75f2018-05-11 17:45:32 +0200266 goto errout;
Jiri Pirko33a48922017-02-09 14:38:57 +0100267 }
268 tp->classify = tp->ops->classify;
269 tp->protocol = protocol;
270 tp->prio = prio;
Jiri Pirko5bc17012017-05-17 11:08:01 +0200271 tp->chain = chain;
Vlad Buslov8b646782019-02-11 10:55:41 +0200272 spin_lock_init(&tp->lock);
Vlad Buslov4dbfa762019-02-11 10:55:39 +0200273 refcount_set(&tp->refcnt, 1);
Jiri Pirko33a48922017-02-09 14:38:57 +0100274
275 err = tp->ops->init(tp);
276 if (err) {
277 module_put(tp->ops->owner);
278 goto errout;
279 }
280 return tp;
281
282errout:
283 kfree(tp);
284 return ERR_PTR(err);
285}
286
Vlad Buslov4dbfa762019-02-11 10:55:39 +0200287static void tcf_proto_get(struct tcf_proto *tp)
288{
289 refcount_inc(&tp->refcnt);
290}
291
292static void tcf_chain_put(struct tcf_chain *chain);
293
Vlad Buslov12db03b2019-02-11 10:55:45 +0200294static void tcf_proto_destroy(struct tcf_proto *tp, bool rtnl_held,
John Hurley59eb87c2019-11-02 14:17:47 +0000295 bool sig_destroy, struct netlink_ext_ack *extack)
Jiri Pirkocf1facd2017-02-09 14:38:56 +0100296{
Vlad Buslov12db03b2019-02-11 10:55:45 +0200297 tp->ops->destroy(tp, rtnl_held, extack);
John Hurley59eb87c2019-11-02 14:17:47 +0000298 if (sig_destroy)
299 tcf_proto_signal_destroyed(tp->chain, tp);
Vlad Buslov4dbfa762019-02-11 10:55:39 +0200300 tcf_chain_put(tp->chain);
WANG Cong763dbf62017-04-19 14:21:21 -0700301 module_put(tp->ops->owner);
302 kfree_rcu(tp, rcu);
Jiri Pirkocf1facd2017-02-09 14:38:56 +0100303}
304
Vlad Buslov12db03b2019-02-11 10:55:45 +0200305static void tcf_proto_put(struct tcf_proto *tp, bool rtnl_held,
Vlad Buslov4dbfa762019-02-11 10:55:39 +0200306 struct netlink_ext_ack *extack)
307{
308 if (refcount_dec_and_test(&tp->refcnt))
John Hurley59eb87c2019-11-02 14:17:47 +0000309 tcf_proto_destroy(tp, rtnl_held, true, extack);
Vlad Buslov4dbfa762019-02-11 10:55:39 +0200310}
311
Davide Carattia5b72a02019-12-28 16:36:58 +0100312static bool tcf_proto_check_delete(struct tcf_proto *tp)
Vlad Buslov8b646782019-02-11 10:55:41 +0200313{
Davide Carattia5b72a02019-12-28 16:36:58 +0100314 if (tp->ops->delete_empty)
315 return tp->ops->delete_empty(tp);
Vlad Buslov8b646782019-02-11 10:55:41 +0200316
Davide Carattia5b72a02019-12-28 16:36:58 +0100317 tp->deleting = true;
Vlad Buslov8b646782019-02-11 10:55:41 +0200318 return tp->deleting;
319}
320
321static void tcf_proto_mark_delete(struct tcf_proto *tp)
322{
323 spin_lock(&tp->lock);
324 tp->deleting = true;
325 spin_unlock(&tp->lock);
326}
327
328static bool tcf_proto_is_deleting(struct tcf_proto *tp)
329{
330 bool deleting;
331
332 spin_lock(&tp->lock);
333 deleting = tp->deleting;
334 spin_unlock(&tp->lock);
335
336 return deleting;
337}
338
Vlad Buslovc266f642019-02-11 10:55:32 +0200339#define ASSERT_BLOCK_LOCKED(block) \
340 lockdep_assert_held(&(block)->lock)
341
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100342struct tcf_filter_chain_list_item {
343 struct list_head list;
344 tcf_chain_head_change_t *chain_head_change;
345 void *chain_head_change_priv;
346};
347
Jiri Pirko5bc17012017-05-17 11:08:01 +0200348static struct tcf_chain *tcf_chain_create(struct tcf_block *block,
349 u32 chain_index)
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200350{
Jiri Pirko5bc17012017-05-17 11:08:01 +0200351 struct tcf_chain *chain;
352
Vlad Buslovc266f642019-02-11 10:55:32 +0200353 ASSERT_BLOCK_LOCKED(block);
354
Jiri Pirko5bc17012017-05-17 11:08:01 +0200355 chain = kzalloc(sizeof(*chain), GFP_KERNEL);
356 if (!chain)
357 return NULL;
Paul Blakey43719292020-02-16 12:01:23 +0200358 list_add_tail_rcu(&chain->list, &block->chain_list);
Vlad Busloved76f5e2019-02-11 10:55:38 +0200359 mutex_init(&chain->filter_chain_lock);
Jiri Pirko5bc17012017-05-17 11:08:01 +0200360 chain->block = block;
361 chain->index = chain_index;
Cong Wange2ef7542017-09-11 16:33:31 -0700362 chain->refcnt = 1;
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200363 if (!chain->index)
364 block->chain0.chain = chain;
Jiri Pirko5bc17012017-05-17 11:08:01 +0200365 return chain;
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200366}
367
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100368static void tcf_chain_head_change_item(struct tcf_filter_chain_list_item *item,
369 struct tcf_proto *tp_head)
370{
371 if (item->chain_head_change)
372 item->chain_head_change(tp_head, item->chain_head_change_priv);
373}
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200374
375static void tcf_chain0_head_change(struct tcf_chain *chain,
376 struct tcf_proto *tp_head)
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +0100377{
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100378 struct tcf_filter_chain_list_item *item;
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200379 struct tcf_block *block = chain->block;
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100380
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200381 if (chain->index)
382 return;
Vlad Buslov165f0132019-02-11 10:55:35 +0200383
384 mutex_lock(&block->lock);
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200385 list_for_each_entry(item, &block->chain0.filter_chain_list, list)
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100386 tcf_chain_head_change_item(item, tp_head);
Vlad Buslov165f0132019-02-11 10:55:35 +0200387 mutex_unlock(&block->lock);
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +0100388}
389
Vlad Buslovc266f642019-02-11 10:55:32 +0200390/* Returns true if block can be safely freed. */
391
392static bool tcf_chain_detach(struct tcf_chain *chain)
Jiri Pirkof93e1cd2017-05-20 15:01:32 +0200393{
Cong Wangefbf7892017-12-04 10:48:18 -0800394 struct tcf_block *block = chain->block;
395
Vlad Buslovc266f642019-02-11 10:55:32 +0200396 ASSERT_BLOCK_LOCKED(block);
397
Paul Blakey43719292020-02-16 12:01:23 +0200398 list_del_rcu(&chain->list);
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200399 if (!chain->index)
400 block->chain0.chain = NULL;
Vlad Buslovc266f642019-02-11 10:55:32 +0200401
402 if (list_empty(&block->chain_list) &&
403 refcount_read(&block->refcnt) == 0)
404 return true;
405
406 return false;
407}
408
409static void tcf_block_destroy(struct tcf_block *block)
410{
411 mutex_destroy(&block->lock);
John Hurley59eb87c2019-11-02 14:17:47 +0000412 mutex_destroy(&block->proto_destroy_lock);
Vlad Buslovc266f642019-02-11 10:55:32 +0200413 kfree_rcu(block, rcu);
414}
415
416static void tcf_chain_destroy(struct tcf_chain *chain, bool free_block)
417{
418 struct tcf_block *block = chain->block;
419
Vlad Busloved76f5e2019-02-11 10:55:38 +0200420 mutex_destroy(&chain->filter_chain_lock);
Davide Carattiee3bbfe2019-03-20 15:00:16 +0100421 kfree_rcu(chain, rcu);
Vlad Buslovc266f642019-02-11 10:55:32 +0200422 if (free_block)
423 tcf_block_destroy(block);
Cong Wange2ef7542017-09-11 16:33:31 -0700424}
Jiri Pirko744a4cf2017-08-22 22:46:49 +0200425
Cong Wange2ef7542017-09-11 16:33:31 -0700426static void tcf_chain_hold(struct tcf_chain *chain)
427{
Vlad Buslovc266f642019-02-11 10:55:32 +0200428 ASSERT_BLOCK_LOCKED(chain->block);
429
Cong Wange2ef7542017-09-11 16:33:31 -0700430 ++chain->refcnt;
Jiri Pirko2190d1d2017-05-17 11:07:59 +0200431}
432
Jiri Pirko3d32f4c2018-08-01 12:36:55 +0200433static bool tcf_chain_held_by_acts_only(struct tcf_chain *chain)
Jiri Pirko1f3ed382018-07-27 09:45:05 +0200434{
Vlad Buslovc266f642019-02-11 10:55:32 +0200435 ASSERT_BLOCK_LOCKED(chain->block);
436
Jiri Pirko1f3ed382018-07-27 09:45:05 +0200437 /* In case all the references are action references, this
Jiri Pirko3d32f4c2018-08-01 12:36:55 +0200438 * chain should not be shown to the user.
Jiri Pirko1f3ed382018-07-27 09:45:05 +0200439 */
440 return chain->refcnt == chain->action_refcnt;
441}
442
Jiri Pirko32a4f5e2018-07-23 09:23:06 +0200443static struct tcf_chain *tcf_chain_lookup(struct tcf_block *block,
444 u32 chain_index)
Jiri Pirko5bc17012017-05-17 11:08:01 +0200445{
446 struct tcf_chain *chain;
447
Vlad Buslovc266f642019-02-11 10:55:32 +0200448 ASSERT_BLOCK_LOCKED(block);
449
Jiri Pirko5bc17012017-05-17 11:08:01 +0200450 list_for_each_entry(chain, &block->chain_list, list) {
Jiri Pirko32a4f5e2018-07-23 09:23:06 +0200451 if (chain->index == chain_index)
Cong Wange2ef7542017-09-11 16:33:31 -0700452 return chain;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +0200453 }
454 return NULL;
455}
456
Paul Blakeyaf699622020-02-16 12:01:24 +0200457#if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
458static struct tcf_chain *tcf_chain_lookup_rcu(const struct tcf_block *block,
459 u32 chain_index)
460{
461 struct tcf_chain *chain;
462
463 list_for_each_entry_rcu(chain, &block->chain_list, list) {
464 if (chain->index == chain_index)
465 return chain;
466 }
467 return NULL;
468}
469#endif
470
Jiri Pirko32a4f5e2018-07-23 09:23:06 +0200471static int tc_chain_notify(struct tcf_chain *chain, struct sk_buff *oskb,
472 u32 seq, u16 flags, int event, bool unicast);
473
Jiri Pirko53681402018-08-01 12:36:56 +0200474static struct tcf_chain *__tcf_chain_get(struct tcf_block *block,
475 u32 chain_index, bool create,
476 bool by_act)
Jiri Pirko32a4f5e2018-07-23 09:23:06 +0200477{
Vlad Buslovc266f642019-02-11 10:55:32 +0200478 struct tcf_chain *chain = NULL;
479 bool is_first_reference;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +0200480
Vlad Buslovc266f642019-02-11 10:55:32 +0200481 mutex_lock(&block->lock);
482 chain = tcf_chain_lookup(block, chain_index);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +0200483 if (chain) {
484 tcf_chain_hold(chain);
Jiri Pirko53681402018-08-01 12:36:56 +0200485 } else {
486 if (!create)
Vlad Buslovc266f642019-02-11 10:55:32 +0200487 goto errout;
Jiri Pirko53681402018-08-01 12:36:56 +0200488 chain = tcf_chain_create(block, chain_index);
489 if (!chain)
Vlad Buslovc266f642019-02-11 10:55:32 +0200490 goto errout;
Jiri Pirko5bc17012017-05-17 11:08:01 +0200491 }
Jiri Pirko80532382017-09-06 13:14:19 +0200492
Jiri Pirko53681402018-08-01 12:36:56 +0200493 if (by_act)
494 ++chain->action_refcnt;
Vlad Buslovc266f642019-02-11 10:55:32 +0200495 is_first_reference = chain->refcnt - chain->action_refcnt == 1;
496 mutex_unlock(&block->lock);
Jiri Pirko53681402018-08-01 12:36:56 +0200497
498 /* Send notification only in case we got the first
499 * non-action reference. Until then, the chain acts only as
500 * a placeholder for actions pointing to it and user ought
501 * not know about them.
502 */
Vlad Buslovc266f642019-02-11 10:55:32 +0200503 if (is_first_reference && !by_act)
Jiri Pirko53681402018-08-01 12:36:56 +0200504 tc_chain_notify(chain, NULL, 0, NLM_F_CREATE | NLM_F_EXCL,
505 RTM_NEWCHAIN, false);
506
Jiri Pirko32a4f5e2018-07-23 09:23:06 +0200507 return chain;
Vlad Buslovc266f642019-02-11 10:55:32 +0200508
509errout:
510 mutex_unlock(&block->lock);
511 return chain;
Jiri Pirko5bc17012017-05-17 11:08:01 +0200512}
Jiri Pirko53681402018-08-01 12:36:56 +0200513
Jiri Pirko290b1c82018-08-01 12:36:57 +0200514static struct tcf_chain *tcf_chain_get(struct tcf_block *block, u32 chain_index,
515 bool create)
Jiri Pirko53681402018-08-01 12:36:56 +0200516{
517 return __tcf_chain_get(block, chain_index, create, false);
518}
Jiri Pirko5bc17012017-05-17 11:08:01 +0200519
Jiri Pirko1f3ed382018-07-27 09:45:05 +0200520struct tcf_chain *tcf_chain_get_by_act(struct tcf_block *block, u32 chain_index)
521{
Jiri Pirko53681402018-08-01 12:36:56 +0200522 return __tcf_chain_get(block, chain_index, true, true);
Jiri Pirko1f3ed382018-07-27 09:45:05 +0200523}
524EXPORT_SYMBOL(tcf_chain_get_by_act);
525
Vlad Buslova5654822019-02-11 10:55:37 +0200526static void tc_chain_tmplt_del(const struct tcf_proto_ops *tmplt_ops,
527 void *tmplt_priv);
528static int tc_chain_notify_delete(const struct tcf_proto_ops *tmplt_ops,
529 void *tmplt_priv, u32 chain_index,
530 struct tcf_block *block, struct sk_buff *oskb,
531 u32 seq, u16 flags, bool unicast);
Jiri Pirko9f407f12018-07-23 09:23:07 +0200532
Vlad Buslov91052fa2019-02-11 10:55:33 +0200533static void __tcf_chain_put(struct tcf_chain *chain, bool by_act,
534 bool explicitly_created)
Jiri Pirko5bc17012017-05-17 11:08:01 +0200535{
Vlad Buslovc266f642019-02-11 10:55:32 +0200536 struct tcf_block *block = chain->block;
Vlad Buslova5654822019-02-11 10:55:37 +0200537 const struct tcf_proto_ops *tmplt_ops;
Vlad Buslovb62989f2019-03-06 17:50:43 +0200538 bool free_block = false;
Vlad Buslovc266f642019-02-11 10:55:32 +0200539 unsigned int refcnt;
Vlad Buslova5654822019-02-11 10:55:37 +0200540 void *tmplt_priv;
Vlad Buslovc266f642019-02-11 10:55:32 +0200541
542 mutex_lock(&block->lock);
Vlad Buslov91052fa2019-02-11 10:55:33 +0200543 if (explicitly_created) {
544 if (!chain->explicitly_created) {
545 mutex_unlock(&block->lock);
546 return;
547 }
548 chain->explicitly_created = false;
549 }
550
Jiri Pirko53681402018-08-01 12:36:56 +0200551 if (by_act)
552 chain->action_refcnt--;
Vlad Buslovc266f642019-02-11 10:55:32 +0200553
554 /* tc_chain_notify_delete can't be called while holding block lock.
555 * However, when block is unlocked chain can be changed concurrently, so
556 * save these to temporary variables.
557 */
558 refcnt = --chain->refcnt;
Vlad Buslova5654822019-02-11 10:55:37 +0200559 tmplt_ops = chain->tmplt_ops;
560 tmplt_priv = chain->tmplt_priv;
Jiri Pirko53681402018-08-01 12:36:56 +0200561
562 /* The last dropped non-action reference will trigger notification. */
Vlad Buslovb62989f2019-03-06 17:50:43 +0200563 if (refcnt - chain->action_refcnt == 0 && !by_act) {
564 tc_chain_notify_delete(tmplt_ops, tmplt_priv, chain->index,
Vlad Buslova5654822019-02-11 10:55:37 +0200565 block, NULL, 0, 0, false);
Vlad Buslov726d06122019-02-11 10:55:42 +0200566 /* Last reference to chain, no need to lock. */
567 chain->flushing = false;
568 }
Jiri Pirko53681402018-08-01 12:36:56 +0200569
Vlad Buslovb62989f2019-03-06 17:50:43 +0200570 if (refcnt == 0)
571 free_block = tcf_chain_detach(chain);
572 mutex_unlock(&block->lock);
573
Vlad Buslovc266f642019-02-11 10:55:32 +0200574 if (refcnt == 0) {
Vlad Buslova5654822019-02-11 10:55:37 +0200575 tc_chain_tmplt_del(tmplt_ops, tmplt_priv);
Vlad Buslovc266f642019-02-11 10:55:32 +0200576 tcf_chain_destroy(chain, free_block);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +0200577 }
Jiri Pirko5bc17012017-05-17 11:08:01 +0200578}
Jiri Pirko53681402018-08-01 12:36:56 +0200579
Jiri Pirko290b1c82018-08-01 12:36:57 +0200580static void tcf_chain_put(struct tcf_chain *chain)
Jiri Pirko53681402018-08-01 12:36:56 +0200581{
Vlad Buslov91052fa2019-02-11 10:55:33 +0200582 __tcf_chain_put(chain, false, false);
Jiri Pirko53681402018-08-01 12:36:56 +0200583}
Jiri Pirko5bc17012017-05-17 11:08:01 +0200584
Jiri Pirko1f3ed382018-07-27 09:45:05 +0200585void tcf_chain_put_by_act(struct tcf_chain *chain)
586{
Vlad Buslov91052fa2019-02-11 10:55:33 +0200587 __tcf_chain_put(chain, true, false);
Jiri Pirko1f3ed382018-07-27 09:45:05 +0200588}
589EXPORT_SYMBOL(tcf_chain_put_by_act);
590
Jiri Pirko32a4f5e2018-07-23 09:23:06 +0200591static void tcf_chain_put_explicitly_created(struct tcf_chain *chain)
592{
Vlad Buslov91052fa2019-02-11 10:55:33 +0200593 __tcf_chain_put(chain, false, true);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +0200594}
595
Vlad Buslov12db03b2019-02-11 10:55:45 +0200596static void tcf_chain_flush(struct tcf_chain *chain, bool rtnl_held)
Jiri Pirko290b1c82018-08-01 12:36:57 +0200597{
Vlad Buslov4dbfa762019-02-11 10:55:39 +0200598 struct tcf_proto *tp, *tp_next;
Jiri Pirko290b1c82018-08-01 12:36:57 +0200599
Vlad Busloved76f5e2019-02-11 10:55:38 +0200600 mutex_lock(&chain->filter_chain_lock);
601 tp = tcf_chain_dereference(chain->filter_chain, chain);
John Hurley59eb87c2019-11-02 14:17:47 +0000602 while (tp) {
603 tp_next = rcu_dereference_protected(tp->next, 1);
604 tcf_proto_signal_destroying(chain, tp);
605 tp = tp_next;
606 }
607 tp = tcf_chain_dereference(chain->filter_chain, chain);
Vlad Buslov4dbfa762019-02-11 10:55:39 +0200608 RCU_INIT_POINTER(chain->filter_chain, NULL);
Jiri Pirko290b1c82018-08-01 12:36:57 +0200609 tcf_chain0_head_change(chain, NULL);
Vlad Buslov726d06122019-02-11 10:55:42 +0200610 chain->flushing = true;
Vlad Busloved76f5e2019-02-11 10:55:38 +0200611 mutex_unlock(&chain->filter_chain_lock);
612
Jiri Pirko290b1c82018-08-01 12:36:57 +0200613 while (tp) {
Vlad Buslov4dbfa762019-02-11 10:55:39 +0200614 tp_next = rcu_dereference_protected(tp->next, 1);
Vlad Buslov12db03b2019-02-11 10:55:45 +0200615 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Buslov4dbfa762019-02-11 10:55:39 +0200616 tp = tp_next;
Jiri Pirko290b1c82018-08-01 12:36:57 +0200617 }
618}
619
wenxu4e481902019-08-07 09:13:52 +0800620static int tcf_block_setup(struct tcf_block *block,
621 struct flow_block_offload *bo);
622
John Hurley25a443f2019-12-05 17:03:35 +0000623static void tc_indr_block_cmd(struct net_device *dev, struct tcf_block *block,
624 flow_indr_block_bind_cb_t *cb, void *cb_priv,
625 enum flow_block_command command, bool ingress)
wenxu4e481902019-08-07 09:13:52 +0800626{
627 struct flow_block_offload bo = {
628 .command = command,
John Hurley25a443f2019-12-05 17:03:35 +0000629 .binder_type = ingress ?
630 FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS :
631 FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS,
wenxu4e481902019-08-07 09:13:52 +0800632 .net = dev_net(dev),
633 .block_shared = tcf_block_non_null_shared(block),
634 };
635 INIT_LIST_HEAD(&bo.cb_list);
636
637 if (!block)
638 return;
639
640 bo.block = &block->flow_block;
641
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300642 down_write(&block->cb_lock);
wenxu4e481902019-08-07 09:13:52 +0800643 cb(dev, cb_priv, TC_SETUP_BLOCK, &bo);
644
645 tcf_block_setup(block, &bo);
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300646 up_write(&block->cb_lock);
wenxu4e481902019-08-07 09:13:52 +0800647}
648
John Hurley25a443f2019-12-05 17:03:35 +0000649static struct tcf_block *tc_dev_block(struct net_device *dev, bool ingress)
John Hurley7f76fa32018-11-09 21:21:26 -0800650{
651 const struct Qdisc_class_ops *cops;
John Hurley25a443f2019-12-05 17:03:35 +0000652 const struct Qdisc_ops *ops;
John Hurley7f76fa32018-11-09 21:21:26 -0800653 struct Qdisc *qdisc;
654
655 if (!dev_ingress_queue(dev))
656 return NULL;
657
658 qdisc = dev_ingress_queue(dev)->qdisc_sleeping;
659 if (!qdisc)
660 return NULL;
661
John Hurley25a443f2019-12-05 17:03:35 +0000662 ops = qdisc->ops;
663 if (!ops)
664 return NULL;
665
666 if (!ingress && !strcmp("ingress", ops->id))
667 return NULL;
668
669 cops = ops->cl_ops;
John Hurley7f76fa32018-11-09 21:21:26 -0800670 if (!cops)
671 return NULL;
672
673 if (!cops->tcf_block)
674 return NULL;
675
John Hurley25a443f2019-12-05 17:03:35 +0000676 return cops->tcf_block(qdisc,
677 ingress ? TC_H_MIN_INGRESS : TC_H_MIN_EGRESS,
678 NULL);
John Hurley7f76fa32018-11-09 21:21:26 -0800679}
680
John Hurley25a443f2019-12-05 17:03:35 +0000681static void tc_indr_block_get_and_cmd(struct net_device *dev,
682 flow_indr_block_bind_cb_t *cb,
683 void *cb_priv,
684 enum flow_block_command command)
John Hurley7f76fa32018-11-09 21:21:26 -0800685{
John Hurley25a443f2019-12-05 17:03:35 +0000686 struct tcf_block *block;
wenxu4e481902019-08-07 09:13:52 +0800687
John Hurley25a443f2019-12-05 17:03:35 +0000688 block = tc_dev_block(dev, true);
689 tc_indr_block_cmd(dev, block, cb, cb_priv, command, true);
690
691 block = tc_dev_block(dev, false);
692 tc_indr_block_cmd(dev, block, cb, cb_priv, command, false);
John Hurley7f76fa32018-11-09 21:21:26 -0800693}
694
wenxu4e481902019-08-07 09:13:52 +0800695static void tc_indr_block_call(struct tcf_block *block,
696 struct net_device *dev,
John Hurley7f76fa32018-11-09 21:21:26 -0800697 struct tcf_block_ext_info *ei,
Pablo Neira Ayuso9c0e1892019-07-09 22:55:40 +0200698 enum flow_block_command command,
John Hurley7f76fa32018-11-09 21:21:26 -0800699 struct netlink_ext_ack *extack)
700{
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +0200701 struct flow_block_offload bo = {
John Hurley7f76fa32018-11-09 21:21:26 -0800702 .command = command,
703 .binder_type = ei->binder_type,
Pablo Neira Ayusoda3eeb92019-07-09 22:55:43 +0200704 .net = dev_net(dev),
Pablo Neira Ayuso14bfb132019-07-19 18:20:16 +0200705 .block = &block->flow_block,
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +0200706 .block_shared = tcf_block_shared(block),
John Hurley7f76fa32018-11-09 21:21:26 -0800707 .extack = extack,
708 };
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +0200709 INIT_LIST_HEAD(&bo.cb_list);
John Hurley7f76fa32018-11-09 21:21:26 -0800710
wenxu133a2fe52020-03-24 07:34:25 +0800711 flow_indr_block_call(dev, &bo, command, TC_SETUP_BLOCK);
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +0200712 tcf_block_setup(block, &bo);
John Hurley7f76fa32018-11-09 21:21:26 -0800713}
714
Jiri Pirkocaa72602018-01-17 11:46:50 +0100715static bool tcf_block_offload_in_use(struct tcf_block *block)
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200716{
Vlad Buslov97394be2019-08-26 16:44:58 +0300717 return atomic_read(&block->offloadcnt);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100718}
719
720static int tcf_block_offload_cmd(struct tcf_block *block,
721 struct net_device *dev,
722 struct tcf_block_ext_info *ei,
Pablo Neira Ayuso9c0e1892019-07-09 22:55:40 +0200723 enum flow_block_command command,
John Hurley60513bd2018-06-25 14:30:04 -0700724 struct netlink_ext_ack *extack)
Jiri Pirkocaa72602018-01-17 11:46:50 +0100725{
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +0200726 struct flow_block_offload bo = {};
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +0200727 int err;
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200728
Pablo Neira Ayusoda3eeb92019-07-09 22:55:43 +0200729 bo.net = dev_net(dev);
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200730 bo.command = command;
731 bo.binder_type = ei->binder_type;
Pablo Neira Ayuso14bfb132019-07-19 18:20:16 +0200732 bo.block = &block->flow_block;
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +0200733 bo.block_shared = tcf_block_shared(block);
John Hurley60513bd2018-06-25 14:30:04 -0700734 bo.extack = extack;
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +0200735 INIT_LIST_HEAD(&bo.cb_list);
736
737 err = dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_BLOCK, &bo);
738 if (err < 0)
739 return err;
740
741 return tcf_block_setup(block, &bo);
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200742}
743
Jiri Pirkocaa72602018-01-17 11:46:50 +0100744static int tcf_block_offload_bind(struct tcf_block *block, struct Qdisc *q,
John Hurley60513bd2018-06-25 14:30:04 -0700745 struct tcf_block_ext_info *ei,
746 struct netlink_ext_ack *extack)
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200747{
Jiri Pirkocaa72602018-01-17 11:46:50 +0100748 struct net_device *dev = q->dev_queue->dev;
749 int err;
750
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300751 down_write(&block->cb_lock);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100752 if (!dev->netdev_ops->ndo_setup_tc)
753 goto no_offload_dev_inc;
754
755 /* If tc offload feature is disabled and the block we try to bind
756 * to already has some offloaded filters, forbid to bind.
757 */
John Hurley60513bd2018-06-25 14:30:04 -0700758 if (!tc_can_offload(dev) && tcf_block_offload_in_use(block)) {
759 NL_SET_ERR_MSG(extack, "Bind to offloaded block failed as dev has offload disabled");
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300760 err = -EOPNOTSUPP;
761 goto err_unlock;
John Hurley60513bd2018-06-25 14:30:04 -0700762 }
Jiri Pirkocaa72602018-01-17 11:46:50 +0100763
Pablo Neira Ayuso9c0e1892019-07-09 22:55:40 +0200764 err = tcf_block_offload_cmd(block, dev, ei, FLOW_BLOCK_BIND, extack);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100765 if (err == -EOPNOTSUPP)
766 goto no_offload_dev_inc;
John Hurley7f76fa32018-11-09 21:21:26 -0800767 if (err)
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300768 goto err_unlock;
John Hurley7f76fa32018-11-09 21:21:26 -0800769
Pablo Neira Ayuso9c0e1892019-07-09 22:55:40 +0200770 tc_indr_block_call(block, dev, ei, FLOW_BLOCK_BIND, extack);
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300771 up_write(&block->cb_lock);
John Hurley7f76fa32018-11-09 21:21:26 -0800772 return 0;
Jiri Pirkocaa72602018-01-17 11:46:50 +0100773
774no_offload_dev_inc:
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300775 if (tcf_block_offload_in_use(block)) {
776 err = -EOPNOTSUPP;
777 goto err_unlock;
778 }
779 err = 0;
Jiri Pirkocaa72602018-01-17 11:46:50 +0100780 block->nooffloaddevcnt++;
Pablo Neira Ayuso9c0e1892019-07-09 22:55:40 +0200781 tc_indr_block_call(block, dev, ei, FLOW_BLOCK_BIND, extack);
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300782err_unlock:
783 up_write(&block->cb_lock);
784 return err;
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200785}
786
787static void tcf_block_offload_unbind(struct tcf_block *block, struct Qdisc *q,
788 struct tcf_block_ext_info *ei)
789{
Jiri Pirkocaa72602018-01-17 11:46:50 +0100790 struct net_device *dev = q->dev_queue->dev;
791 int err;
792
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300793 down_write(&block->cb_lock);
Pablo Neira Ayuso9c0e1892019-07-09 22:55:40 +0200794 tc_indr_block_call(block, dev, ei, FLOW_BLOCK_UNBIND, NULL);
John Hurley7f76fa32018-11-09 21:21:26 -0800795
Jiri Pirkocaa72602018-01-17 11:46:50 +0100796 if (!dev->netdev_ops->ndo_setup_tc)
797 goto no_offload_dev_dec;
Pablo Neira Ayuso9c0e1892019-07-09 22:55:40 +0200798 err = tcf_block_offload_cmd(block, dev, ei, FLOW_BLOCK_UNBIND, NULL);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100799 if (err == -EOPNOTSUPP)
800 goto no_offload_dev_dec;
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300801 up_write(&block->cb_lock);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100802 return;
803
804no_offload_dev_dec:
805 WARN_ON(block->nooffloaddevcnt-- == 0);
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300806 up_write(&block->cb_lock);
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200807}
808
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100809static int
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200810tcf_chain0_head_change_cb_add(struct tcf_block *block,
811 struct tcf_block_ext_info *ei,
812 struct netlink_ext_ack *extack)
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100813{
814 struct tcf_filter_chain_list_item *item;
Vlad Buslov165f0132019-02-11 10:55:35 +0200815 struct tcf_chain *chain0;
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100816
817 item = kmalloc(sizeof(*item), GFP_KERNEL);
818 if (!item) {
819 NL_SET_ERR_MSG(extack, "Memory allocation for head change callback item failed");
820 return -ENOMEM;
821 }
822 item->chain_head_change = ei->chain_head_change;
823 item->chain_head_change_priv = ei->chain_head_change_priv;
Vlad Buslov165f0132019-02-11 10:55:35 +0200824
825 mutex_lock(&block->lock);
826 chain0 = block->chain0.chain;
Vlad Busloved76f5e2019-02-11 10:55:38 +0200827 if (chain0)
828 tcf_chain_hold(chain0);
829 else
830 list_add(&item->list, &block->chain0.filter_chain_list);
Vlad Buslov165f0132019-02-11 10:55:35 +0200831 mutex_unlock(&block->lock);
832
Vlad Busloved76f5e2019-02-11 10:55:38 +0200833 if (chain0) {
834 struct tcf_proto *tp_head;
835
836 mutex_lock(&chain0->filter_chain_lock);
837
838 tp_head = tcf_chain_dereference(chain0->filter_chain, chain0);
839 if (tp_head)
840 tcf_chain_head_change_item(item, tp_head);
841
842 mutex_lock(&block->lock);
843 list_add(&item->list, &block->chain0.filter_chain_list);
844 mutex_unlock(&block->lock);
845
846 mutex_unlock(&chain0->filter_chain_lock);
847 tcf_chain_put(chain0);
848 }
849
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100850 return 0;
851}
852
853static void
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200854tcf_chain0_head_change_cb_del(struct tcf_block *block,
855 struct tcf_block_ext_info *ei)
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100856{
857 struct tcf_filter_chain_list_item *item;
858
Vlad Buslov165f0132019-02-11 10:55:35 +0200859 mutex_lock(&block->lock);
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200860 list_for_each_entry(item, &block->chain0.filter_chain_list, list) {
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100861 if ((!ei->chain_head_change && !ei->chain_head_change_priv) ||
862 (item->chain_head_change == ei->chain_head_change &&
863 item->chain_head_change_priv == ei->chain_head_change_priv)) {
Vlad Buslov165f0132019-02-11 10:55:35 +0200864 if (block->chain0.chain)
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200865 tcf_chain_head_change_item(item, NULL);
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100866 list_del(&item->list);
Vlad Buslov165f0132019-02-11 10:55:35 +0200867 mutex_unlock(&block->lock);
868
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100869 kfree(item);
870 return;
871 }
872 }
Vlad Buslov165f0132019-02-11 10:55:35 +0200873 mutex_unlock(&block->lock);
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100874 WARN_ON(1);
875}
876
Jiri Pirko48617382018-01-17 11:46:46 +0100877struct tcf_net {
Vlad Buslovab281622018-09-24 19:22:56 +0300878 spinlock_t idr_lock; /* Protects idr */
Jiri Pirko48617382018-01-17 11:46:46 +0100879 struct idr idr;
880};
881
882static unsigned int tcf_net_id;
883
884static int tcf_block_insert(struct tcf_block *block, struct net *net,
Jiri Pirkobb047dd2018-02-13 12:00:16 +0100885 struct netlink_ext_ack *extack)
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100886{
Jiri Pirko48617382018-01-17 11:46:46 +0100887 struct tcf_net *tn = net_generic(net, tcf_net_id);
Vlad Buslovab281622018-09-24 19:22:56 +0300888 int err;
Jiri Pirko48617382018-01-17 11:46:46 +0100889
Vlad Buslovab281622018-09-24 19:22:56 +0300890 idr_preload(GFP_KERNEL);
891 spin_lock(&tn->idr_lock);
892 err = idr_alloc_u32(&tn->idr, block, &block->index, block->index,
893 GFP_NOWAIT);
894 spin_unlock(&tn->idr_lock);
895 idr_preload_end();
896
897 return err;
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100898}
899
Jiri Pirko48617382018-01-17 11:46:46 +0100900static void tcf_block_remove(struct tcf_block *block, struct net *net)
Jiri Pirko6529eab2017-05-17 11:07:55 +0200901{
Jiri Pirko48617382018-01-17 11:46:46 +0100902 struct tcf_net *tn = net_generic(net, tcf_net_id);
903
Vlad Buslovab281622018-09-24 19:22:56 +0300904 spin_lock(&tn->idr_lock);
Matthew Wilcox9c160942017-11-28 09:48:43 -0500905 idr_remove(&tn->idr, block->index);
Vlad Buslovab281622018-09-24 19:22:56 +0300906 spin_unlock(&tn->idr_lock);
Jiri Pirko48617382018-01-17 11:46:46 +0100907}
908
909static struct tcf_block *tcf_block_create(struct net *net, struct Qdisc *q,
Jiri Pirkobb047dd2018-02-13 12:00:16 +0100910 u32 block_index,
Jiri Pirko48617382018-01-17 11:46:46 +0100911 struct netlink_ext_ack *extack)
912{
913 struct tcf_block *block;
Jiri Pirko6529eab2017-05-17 11:07:55 +0200914
Jiri Pirko48617382018-01-17 11:46:46 +0100915 block = kzalloc(sizeof(*block), GFP_KERNEL);
Alexander Aring8d1a77f2017-12-20 12:35:19 -0500916 if (!block) {
917 NL_SET_ERR_MSG(extack, "Memory allocation for block failed");
Jiri Pirko48617382018-01-17 11:46:46 +0100918 return ERR_PTR(-ENOMEM);
Alexander Aring8d1a77f2017-12-20 12:35:19 -0500919 }
Vlad Buslovc266f642019-02-11 10:55:32 +0200920 mutex_init(&block->lock);
John Hurley59eb87c2019-11-02 14:17:47 +0000921 mutex_init(&block->proto_destroy_lock);
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300922 init_rwsem(&block->cb_lock);
Pablo Neira Ayuso14bfb132019-07-19 18:20:16 +0200923 flow_block_init(&block->flow_block);
Jiri Pirko5bc17012017-05-17 11:08:01 +0200924 INIT_LIST_HEAD(&block->chain_list);
Jiri Pirkof36fe1c2018-01-17 11:46:48 +0100925 INIT_LIST_HEAD(&block->owner_list);
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200926 INIT_LIST_HEAD(&block->chain0.filter_chain_list);
Jiri Pirkoacb67442017-10-19 15:50:31 +0200927
Vlad Buslovcfebd7e2018-09-24 19:22:54 +0300928 refcount_set(&block->refcnt, 1);
Jiri Pirko48617382018-01-17 11:46:46 +0100929 block->net = net;
Jiri Pirkobb047dd2018-02-13 12:00:16 +0100930 block->index = block_index;
931
932 /* Don't store q pointer for blocks which are shared */
933 if (!tcf_block_shared(block))
934 block->q = q;
Jiri Pirko48617382018-01-17 11:46:46 +0100935 return block;
Jiri Pirko48617382018-01-17 11:46:46 +0100936}
937
938static struct tcf_block *tcf_block_lookup(struct net *net, u32 block_index)
939{
940 struct tcf_net *tn = net_generic(net, tcf_net_id);
941
Matthew Wilcox322d8842017-11-28 10:01:24 -0500942 return idr_find(&tn->idr, block_index);
Jiri Pirko48617382018-01-17 11:46:46 +0100943}
944
Vlad Buslov0607e432018-09-24 19:22:57 +0300945static struct tcf_block *tcf_block_refcnt_get(struct net *net, u32 block_index)
946{
947 struct tcf_block *block;
948
949 rcu_read_lock();
950 block = tcf_block_lookup(net, block_index);
951 if (block && !refcount_inc_not_zero(&block->refcnt))
952 block = NULL;
953 rcu_read_unlock();
954
955 return block;
956}
957
Vlad Buslovbbf73832019-02-11 10:55:36 +0200958static struct tcf_chain *
959__tcf_get_next_chain(struct tcf_block *block, struct tcf_chain *chain)
960{
961 mutex_lock(&block->lock);
962 if (chain)
963 chain = list_is_last(&chain->list, &block->chain_list) ?
964 NULL : list_next_entry(chain, list);
965 else
966 chain = list_first_entry_or_null(&block->chain_list,
967 struct tcf_chain, list);
968
969 /* skip all action-only chains */
970 while (chain && tcf_chain_held_by_acts_only(chain))
971 chain = list_is_last(&chain->list, &block->chain_list) ?
972 NULL : list_next_entry(chain, list);
973
974 if (chain)
975 tcf_chain_hold(chain);
976 mutex_unlock(&block->lock);
977
978 return chain;
979}
980
981/* Function to be used by all clients that want to iterate over all chains on
982 * block. It properly obtains block->lock and takes reference to chain before
983 * returning it. Users of this function must be tolerant to concurrent chain
984 * insertion/deletion or ensure that no concurrent chain modification is
985 * possible. Note that all netlink dump callbacks cannot guarantee to provide
986 * consistent dump because rtnl lock is released each time skb is filled with
987 * data and sent to user-space.
988 */
989
990struct tcf_chain *
991tcf_get_next_chain(struct tcf_block *block, struct tcf_chain *chain)
992{
993 struct tcf_chain *chain_next = __tcf_get_next_chain(block, chain);
994
995 if (chain)
996 tcf_chain_put(chain);
997
998 return chain_next;
999}
1000EXPORT_SYMBOL(tcf_get_next_chain);
1001
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001002static struct tcf_proto *
1003__tcf_get_next_proto(struct tcf_chain *chain, struct tcf_proto *tp)
1004{
Vlad Buslov8b646782019-02-11 10:55:41 +02001005 u32 prio = 0;
1006
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001007 ASSERT_RTNL();
1008 mutex_lock(&chain->filter_chain_lock);
1009
Vlad Buslov8b646782019-02-11 10:55:41 +02001010 if (!tp) {
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001011 tp = tcf_chain_dereference(chain->filter_chain, chain);
Vlad Buslov8b646782019-02-11 10:55:41 +02001012 } else if (tcf_proto_is_deleting(tp)) {
1013 /* 'deleting' flag is set and chain->filter_chain_lock was
1014 * unlocked, which means next pointer could be invalid. Restart
1015 * search.
1016 */
1017 prio = tp->prio + 1;
1018 tp = tcf_chain_dereference(chain->filter_chain, chain);
1019
1020 for (; tp; tp = tcf_chain_dereference(tp->next, chain))
1021 if (!tp->deleting && tp->prio >= prio)
1022 break;
1023 } else {
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001024 tp = tcf_chain_dereference(tp->next, chain);
Vlad Buslov8b646782019-02-11 10:55:41 +02001025 }
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001026
1027 if (tp)
1028 tcf_proto_get(tp);
1029
1030 mutex_unlock(&chain->filter_chain_lock);
1031
1032 return tp;
1033}
1034
1035/* Function to be used by all clients that want to iterate over all tp's on
1036 * chain. Users of this function must be tolerant to concurrent tp
1037 * insertion/deletion or ensure that no concurrent chain modification is
1038 * possible. Note that all netlink dump callbacks cannot guarantee to provide
1039 * consistent dump because rtnl lock is released each time skb is filled with
1040 * data and sent to user-space.
1041 */
1042
1043struct tcf_proto *
Vlad Buslov12db03b2019-02-11 10:55:45 +02001044tcf_get_next_proto(struct tcf_chain *chain, struct tcf_proto *tp,
1045 bool rtnl_held)
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001046{
1047 struct tcf_proto *tp_next = __tcf_get_next_proto(chain, tp);
1048
1049 if (tp)
Vlad Buslov12db03b2019-02-11 10:55:45 +02001050 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001051
1052 return tp_next;
1053}
1054EXPORT_SYMBOL(tcf_get_next_proto);
1055
Vlad Buslov12db03b2019-02-11 10:55:45 +02001056static void tcf_block_flush_all_chains(struct tcf_block *block, bool rtnl_held)
Vlad Buslovf0023432018-09-24 19:22:55 +03001057{
1058 struct tcf_chain *chain;
1059
Vlad Buslovbbf73832019-02-11 10:55:36 +02001060 /* Last reference to block. At this point chains cannot be added or
1061 * removed concurrently.
Vlad Buslovf0023432018-09-24 19:22:55 +03001062 */
Vlad Buslovbbf73832019-02-11 10:55:36 +02001063 for (chain = tcf_get_next_chain(block, NULL);
1064 chain;
1065 chain = tcf_get_next_chain(block, chain)) {
Vlad Buslovf0023432018-09-24 19:22:55 +03001066 tcf_chain_put_explicitly_created(chain);
Vlad Buslov12db03b2019-02-11 10:55:45 +02001067 tcf_chain_flush(chain, rtnl_held);
Vlad Buslovf0023432018-09-24 19:22:55 +03001068 }
1069}
1070
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001071/* Lookup Qdisc and increments its reference counter.
1072 * Set parent, if necessary.
1073 */
1074
1075static int __tcf_qdisc_find(struct net *net, struct Qdisc **q,
1076 u32 *parent, int ifindex, bool rtnl_held,
1077 struct netlink_ext_ack *extack)
1078{
1079 const struct Qdisc_class_ops *cops;
1080 struct net_device *dev;
1081 int err = 0;
1082
1083 if (ifindex == TCM_IFINDEX_MAGIC_BLOCK)
1084 return 0;
1085
1086 rcu_read_lock();
1087
1088 /* Find link */
1089 dev = dev_get_by_index_rcu(net, ifindex);
1090 if (!dev) {
1091 rcu_read_unlock();
1092 return -ENODEV;
1093 }
1094
1095 /* Find qdisc */
1096 if (!*parent) {
1097 *q = dev->qdisc;
1098 *parent = (*q)->handle;
1099 } else {
1100 *q = qdisc_lookup_rcu(dev, TC_H_MAJ(*parent));
1101 if (!*q) {
1102 NL_SET_ERR_MSG(extack, "Parent Qdisc doesn't exists");
1103 err = -EINVAL;
1104 goto errout_rcu;
1105 }
1106 }
1107
1108 *q = qdisc_refcount_inc_nz(*q);
1109 if (!*q) {
1110 NL_SET_ERR_MSG(extack, "Parent Qdisc doesn't exists");
1111 err = -EINVAL;
1112 goto errout_rcu;
1113 }
1114
1115 /* Is it classful? */
1116 cops = (*q)->ops->cl_ops;
1117 if (!cops) {
1118 NL_SET_ERR_MSG(extack, "Qdisc not classful");
1119 err = -EINVAL;
1120 goto errout_qdisc;
1121 }
1122
1123 if (!cops->tcf_block) {
1124 NL_SET_ERR_MSG(extack, "Class doesn't support blocks");
1125 err = -EOPNOTSUPP;
1126 goto errout_qdisc;
1127 }
1128
1129errout_rcu:
1130 /* At this point we know that qdisc is not noop_qdisc,
1131 * which means that qdisc holds a reference to net_device
1132 * and we hold a reference to qdisc, so it is safe to release
1133 * rcu read lock.
1134 */
1135 rcu_read_unlock();
1136 return err;
1137
1138errout_qdisc:
1139 rcu_read_unlock();
1140
1141 if (rtnl_held)
1142 qdisc_put(*q);
1143 else
1144 qdisc_put_unlocked(*q);
1145 *q = NULL;
1146
1147 return err;
1148}
1149
1150static int __tcf_qdisc_cl_find(struct Qdisc *q, u32 parent, unsigned long *cl,
1151 int ifindex, struct netlink_ext_ack *extack)
1152{
1153 if (ifindex == TCM_IFINDEX_MAGIC_BLOCK)
1154 return 0;
1155
1156 /* Do we search for filter, attached to class? */
1157 if (TC_H_MIN(parent)) {
1158 const struct Qdisc_class_ops *cops = q->ops->cl_ops;
1159
1160 *cl = cops->find(q, parent);
1161 if (*cl == 0) {
1162 NL_SET_ERR_MSG(extack, "Specified class doesn't exist");
1163 return -ENOENT;
1164 }
1165 }
1166
1167 return 0;
1168}
1169
1170static struct tcf_block *__tcf_block_find(struct net *net, struct Qdisc *q,
1171 unsigned long cl, int ifindex,
1172 u32 block_index,
1173 struct netlink_ext_ack *extack)
1174{
1175 struct tcf_block *block;
1176
1177 if (ifindex == TCM_IFINDEX_MAGIC_BLOCK) {
1178 block = tcf_block_refcnt_get(net, block_index);
1179 if (!block) {
1180 NL_SET_ERR_MSG(extack, "Block of given index was not found");
1181 return ERR_PTR(-EINVAL);
1182 }
1183 } else {
1184 const struct Qdisc_class_ops *cops = q->ops->cl_ops;
1185
1186 block = cops->tcf_block(q, cl, extack);
1187 if (!block)
1188 return ERR_PTR(-EINVAL);
1189
1190 if (tcf_block_shared(block)) {
1191 NL_SET_ERR_MSG(extack, "This filter block is shared. Please use the block index to manipulate the filters");
1192 return ERR_PTR(-EOPNOTSUPP);
1193 }
1194
1195 /* Always take reference to block in order to support execution
1196 * of rules update path of cls API without rtnl lock. Caller
1197 * must release block when it is finished using it. 'if' block
1198 * of this conditional obtain reference to block by calling
1199 * tcf_block_refcnt_get().
1200 */
1201 refcount_inc(&block->refcnt);
1202 }
1203
1204 return block;
1205}
1206
Vlad Buslov0607e432018-09-24 19:22:57 +03001207static void __tcf_block_put(struct tcf_block *block, struct Qdisc *q,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001208 struct tcf_block_ext_info *ei, bool rtnl_held)
Vlad Buslov0607e432018-09-24 19:22:57 +03001209{
Vlad Buslovc266f642019-02-11 10:55:32 +02001210 if (refcount_dec_and_mutex_lock(&block->refcnt, &block->lock)) {
Vlad Buslov0607e432018-09-24 19:22:57 +03001211 /* Flushing/putting all chains will cause the block to be
1212 * deallocated when last chain is freed. However, if chain_list
1213 * is empty, block has to be manually deallocated. After block
1214 * reference counter reached 0, it is no longer possible to
1215 * increment it or add new chains to block.
1216 */
1217 bool free_block = list_empty(&block->chain_list);
1218
Vlad Buslovc266f642019-02-11 10:55:32 +02001219 mutex_unlock(&block->lock);
Vlad Buslov0607e432018-09-24 19:22:57 +03001220 if (tcf_block_shared(block))
1221 tcf_block_remove(block, block->net);
Vlad Buslov0607e432018-09-24 19:22:57 +03001222
1223 if (q)
1224 tcf_block_offload_unbind(block, q, ei);
1225
1226 if (free_block)
Vlad Buslovc266f642019-02-11 10:55:32 +02001227 tcf_block_destroy(block);
Vlad Buslov0607e432018-09-24 19:22:57 +03001228 else
Vlad Buslov12db03b2019-02-11 10:55:45 +02001229 tcf_block_flush_all_chains(block, rtnl_held);
Vlad Buslov0607e432018-09-24 19:22:57 +03001230 } else if (q) {
1231 tcf_block_offload_unbind(block, q, ei);
1232 }
1233}
1234
Vlad Buslov12db03b2019-02-11 10:55:45 +02001235static void tcf_block_refcnt_put(struct tcf_block *block, bool rtnl_held)
Vlad Buslov0607e432018-09-24 19:22:57 +03001236{
Vlad Buslov12db03b2019-02-11 10:55:45 +02001237 __tcf_block_put(block, NULL, NULL, rtnl_held);
Vlad Buslov0607e432018-09-24 19:22:57 +03001238}
1239
Vlad Buslovc431f892018-05-31 09:52:53 +03001240/* Find tcf block.
1241 * Set q, parent, cl when appropriate.
1242 */
1243
1244static struct tcf_block *tcf_block_find(struct net *net, struct Qdisc **q,
1245 u32 *parent, unsigned long *cl,
1246 int ifindex, u32 block_index,
1247 struct netlink_ext_ack *extack)
1248{
1249 struct tcf_block *block;
Vlad Buslove368fdb2018-09-24 19:22:53 +03001250 int err = 0;
Vlad Buslovc431f892018-05-31 09:52:53 +03001251
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001252 ASSERT_RTNL();
Vlad Buslovc431f892018-05-31 09:52:53 +03001253
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001254 err = __tcf_qdisc_find(net, q, parent, ifindex, true, extack);
1255 if (err)
1256 goto errout;
Vlad Buslove368fdb2018-09-24 19:22:53 +03001257
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001258 err = __tcf_qdisc_cl_find(*q, *parent, cl, ifindex, extack);
1259 if (err)
1260 goto errout_qdisc;
Vlad Buslovc431f892018-05-31 09:52:53 +03001261
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001262 block = __tcf_block_find(net, *q, *cl, ifindex, block_index, extack);
Dan Carpenteraf736bf2019-02-18 12:26:32 +03001263 if (IS_ERR(block)) {
1264 err = PTR_ERR(block);
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001265 goto errout_qdisc;
Dan Carpenteraf736bf2019-02-18 12:26:32 +03001266 }
Vlad Buslovc431f892018-05-31 09:52:53 +03001267
1268 return block;
Vlad Buslove368fdb2018-09-24 19:22:53 +03001269
Vlad Buslove368fdb2018-09-24 19:22:53 +03001270errout_qdisc:
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001271 if (*q)
Vlad Buslove368fdb2018-09-24 19:22:53 +03001272 qdisc_put(*q);
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001273errout:
1274 *q = NULL;
Vlad Buslove368fdb2018-09-24 19:22:53 +03001275 return ERR_PTR(err);
1276}
1277
Vlad Buslov12db03b2019-02-11 10:55:45 +02001278static void tcf_block_release(struct Qdisc *q, struct tcf_block *block,
1279 bool rtnl_held)
Vlad Buslove368fdb2018-09-24 19:22:53 +03001280{
Vlad Buslov787ce6d2018-09-24 19:22:58 +03001281 if (!IS_ERR_OR_NULL(block))
Vlad Buslov12db03b2019-02-11 10:55:45 +02001282 tcf_block_refcnt_put(block, rtnl_held);
Vlad Buslov787ce6d2018-09-24 19:22:58 +03001283
Vlad Buslov470502d2019-02-11 10:55:48 +02001284 if (q) {
1285 if (rtnl_held)
1286 qdisc_put(q);
1287 else
1288 qdisc_put_unlocked(q);
1289 }
Vlad Buslovc431f892018-05-31 09:52:53 +03001290}
1291
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001292struct tcf_block_owner_item {
1293 struct list_head list;
1294 struct Qdisc *q;
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001295 enum flow_block_binder_type binder_type;
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001296};
1297
1298static void
1299tcf_block_owner_netif_keep_dst(struct tcf_block *block,
1300 struct Qdisc *q,
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001301 enum flow_block_binder_type binder_type)
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001302{
1303 if (block->keep_dst &&
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001304 binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS &&
1305 binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS)
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001306 netif_keep_dst(qdisc_dev(q));
1307}
1308
1309void tcf_block_netif_keep_dst(struct tcf_block *block)
1310{
1311 struct tcf_block_owner_item *item;
1312
1313 block->keep_dst = true;
1314 list_for_each_entry(item, &block->owner_list, list)
1315 tcf_block_owner_netif_keep_dst(block, item->q,
1316 item->binder_type);
1317}
1318EXPORT_SYMBOL(tcf_block_netif_keep_dst);
1319
1320static int tcf_block_owner_add(struct tcf_block *block,
1321 struct Qdisc *q,
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001322 enum flow_block_binder_type binder_type)
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001323{
1324 struct tcf_block_owner_item *item;
1325
1326 item = kmalloc(sizeof(*item), GFP_KERNEL);
1327 if (!item)
1328 return -ENOMEM;
1329 item->q = q;
1330 item->binder_type = binder_type;
1331 list_add(&item->list, &block->owner_list);
1332 return 0;
1333}
1334
1335static void tcf_block_owner_del(struct tcf_block *block,
1336 struct Qdisc *q,
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001337 enum flow_block_binder_type binder_type)
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001338{
1339 struct tcf_block_owner_item *item;
1340
1341 list_for_each_entry(item, &block->owner_list, list) {
1342 if (item->q == q && item->binder_type == binder_type) {
1343 list_del(&item->list);
1344 kfree(item);
1345 return;
1346 }
1347 }
1348 WARN_ON(1);
1349}
1350
Jiri Pirko48617382018-01-17 11:46:46 +01001351int tcf_block_get_ext(struct tcf_block **p_block, struct Qdisc *q,
1352 struct tcf_block_ext_info *ei,
1353 struct netlink_ext_ack *extack)
1354{
1355 struct net *net = qdisc_net(q);
1356 struct tcf_block *block = NULL;
Jiri Pirko48617382018-01-17 11:46:46 +01001357 int err;
1358
Vlad Buslov787ce6d2018-09-24 19:22:58 +03001359 if (ei->block_index)
Jiri Pirko48617382018-01-17 11:46:46 +01001360 /* block_index not 0 means the shared block is requested */
Vlad Buslov787ce6d2018-09-24 19:22:58 +03001361 block = tcf_block_refcnt_get(net, ei->block_index);
Jiri Pirko48617382018-01-17 11:46:46 +01001362
1363 if (!block) {
Jiri Pirkobb047dd2018-02-13 12:00:16 +01001364 block = tcf_block_create(net, q, ei->block_index, extack);
Jiri Pirko48617382018-01-17 11:46:46 +01001365 if (IS_ERR(block))
1366 return PTR_ERR(block);
Jiri Pirkobb047dd2018-02-13 12:00:16 +01001367 if (tcf_block_shared(block)) {
1368 err = tcf_block_insert(block, net, extack);
Jiri Pirko48617382018-01-17 11:46:46 +01001369 if (err)
1370 goto err_block_insert;
1371 }
1372 }
1373
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001374 err = tcf_block_owner_add(block, q, ei->binder_type);
1375 if (err)
1376 goto err_block_owner_add;
1377
1378 tcf_block_owner_netif_keep_dst(block, q, ei->binder_type);
1379
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001380 err = tcf_chain0_head_change_cb_add(block, ei, extack);
Jiri Pirkoa9b19442018-01-17 11:46:45 +01001381 if (err)
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001382 goto err_chain0_head_change_cb_add;
Jiri Pirkocaa72602018-01-17 11:46:50 +01001383
John Hurley60513bd2018-06-25 14:30:04 -07001384 err = tcf_block_offload_bind(block, q, ei, extack);
Jiri Pirkocaa72602018-01-17 11:46:50 +01001385 if (err)
1386 goto err_block_offload_bind;
1387
Jiri Pirko6529eab2017-05-17 11:07:55 +02001388 *p_block = block;
1389 return 0;
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001390
Jiri Pirkocaa72602018-01-17 11:46:50 +01001391err_block_offload_bind:
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001392 tcf_chain0_head_change_cb_del(block, ei);
1393err_chain0_head_change_cb_add:
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001394 tcf_block_owner_del(block, q, ei->binder_type);
1395err_block_owner_add:
Jiri Pirko48617382018-01-17 11:46:46 +01001396err_block_insert:
Vlad Buslov12db03b2019-02-11 10:55:45 +02001397 tcf_block_refcnt_put(block, true);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001398 return err;
Jiri Pirko6529eab2017-05-17 11:07:55 +02001399}
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001400EXPORT_SYMBOL(tcf_block_get_ext);
1401
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001402static void tcf_chain_head_change_dflt(struct tcf_proto *tp_head, void *priv)
1403{
1404 struct tcf_proto __rcu **p_filter_chain = priv;
1405
1406 rcu_assign_pointer(*p_filter_chain, tp_head);
1407}
1408
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001409int tcf_block_get(struct tcf_block **p_block,
Alexander Aring8d1a77f2017-12-20 12:35:19 -05001410 struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
1411 struct netlink_ext_ack *extack)
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001412{
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001413 struct tcf_block_ext_info ei = {
1414 .chain_head_change = tcf_chain_head_change_dflt,
1415 .chain_head_change_priv = p_filter_chain,
1416 };
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001417
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001418 WARN_ON(!p_filter_chain);
Alexander Aring8d1a77f2017-12-20 12:35:19 -05001419 return tcf_block_get_ext(p_block, q, &ei, extack);
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001420}
Jiri Pirko6529eab2017-05-17 11:07:55 +02001421EXPORT_SYMBOL(tcf_block_get);
1422
Cong Wang7aa00452017-10-26 18:24:28 -07001423/* XXX: Standalone actions are not allowed to jump to any chain, and bound
Roman Kapla60b3f52017-11-24 12:27:58 +01001424 * actions should be all removed after flushing.
Cong Wang7aa00452017-10-26 18:24:28 -07001425 */
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001426void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
David S. Millere1ea2f92017-10-30 14:10:01 +09001427 struct tcf_block_ext_info *ei)
Cong Wang7aa00452017-10-26 18:24:28 -07001428{
David S. Millerc30abd52017-12-16 22:11:55 -05001429 if (!block)
1430 return;
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001431 tcf_chain0_head_change_cb_del(block, ei);
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001432 tcf_block_owner_del(block, q, ei->binder_type);
Roman Kapla60b3f52017-11-24 12:27:58 +01001433
Vlad Buslov12db03b2019-02-11 10:55:45 +02001434 __tcf_block_put(block, q, ei, true);
Jiri Pirko6529eab2017-05-17 11:07:55 +02001435}
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001436EXPORT_SYMBOL(tcf_block_put_ext);
1437
1438void tcf_block_put(struct tcf_block *block)
1439{
1440 struct tcf_block_ext_info ei = {0, };
1441
Jiri Pirko4853f122017-12-21 13:13:59 +01001442 if (!block)
1443 return;
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001444 tcf_block_put_ext(block, block->q, &ei);
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001445}
David S. Millere1ea2f92017-10-30 14:10:01 +09001446
Jiri Pirko6529eab2017-05-17 11:07:55 +02001447EXPORT_SYMBOL(tcf_block_put);
Jiri Pirkocf1facd2017-02-09 14:38:56 +01001448
John Hurley32636742018-06-25 14:30:10 -07001449static int
Pablo Neira Ayusoa7323312019-07-19 18:20:15 +02001450tcf_block_playback_offloads(struct tcf_block *block, flow_setup_cb_t *cb,
John Hurley32636742018-06-25 14:30:10 -07001451 void *cb_priv, bool add, bool offload_in_use,
1452 struct netlink_ext_ack *extack)
1453{
Vlad Buslovbbf73832019-02-11 10:55:36 +02001454 struct tcf_chain *chain, *chain_prev;
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001455 struct tcf_proto *tp, *tp_prev;
John Hurley32636742018-06-25 14:30:10 -07001456 int err;
1457
Vlad Buslov4f8116c2019-08-26 16:44:57 +03001458 lockdep_assert_held(&block->cb_lock);
1459
Vlad Buslovbbf73832019-02-11 10:55:36 +02001460 for (chain = __tcf_get_next_chain(block, NULL);
1461 chain;
1462 chain_prev = chain,
1463 chain = __tcf_get_next_chain(block, chain),
1464 tcf_chain_put(chain_prev)) {
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001465 for (tp = __tcf_get_next_proto(chain, NULL); tp;
1466 tp_prev = tp,
1467 tp = __tcf_get_next_proto(chain, tp),
Vlad Buslov12db03b2019-02-11 10:55:45 +02001468 tcf_proto_put(tp_prev, true, NULL)) {
John Hurley32636742018-06-25 14:30:10 -07001469 if (tp->ops->reoffload) {
1470 err = tp->ops->reoffload(tp, add, cb, cb_priv,
1471 extack);
1472 if (err && add)
1473 goto err_playback_remove;
1474 } else if (add && offload_in_use) {
1475 err = -EOPNOTSUPP;
1476 NL_SET_ERR_MSG(extack, "Filter HW offload failed - classifier without re-offloading support");
1477 goto err_playback_remove;
1478 }
1479 }
1480 }
1481
1482 return 0;
1483
1484err_playback_remove:
Vlad Buslov12db03b2019-02-11 10:55:45 +02001485 tcf_proto_put(tp, true, NULL);
Vlad Buslovbbf73832019-02-11 10:55:36 +02001486 tcf_chain_put(chain);
John Hurley32636742018-06-25 14:30:10 -07001487 tcf_block_playback_offloads(block, cb, cb_priv, false, offload_in_use,
1488 extack);
1489 return err;
1490}
1491
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001492static int tcf_block_bind(struct tcf_block *block,
1493 struct flow_block_offload *bo)
1494{
1495 struct flow_block_cb *block_cb, *next;
1496 int err, i = 0;
1497
Vlad Buslov4f8116c2019-08-26 16:44:57 +03001498 lockdep_assert_held(&block->cb_lock);
1499
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001500 list_for_each_entry(block_cb, &bo->cb_list, list) {
1501 err = tcf_block_playback_offloads(block, block_cb->cb,
1502 block_cb->cb_priv, true,
1503 tcf_block_offload_in_use(block),
1504 bo->extack);
1505 if (err)
1506 goto err_unroll;
Vlad Buslovc9f14472019-08-26 16:45:01 +03001507 if (!bo->unlocked_driver_cb)
1508 block->lockeddevcnt++;
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001509
1510 i++;
1511 }
Pablo Neira Ayuso14bfb132019-07-19 18:20:16 +02001512 list_splice(&bo->cb_list, &block->flow_block.cb_list);
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001513
1514 return 0;
1515
1516err_unroll:
1517 list_for_each_entry_safe(block_cb, next, &bo->cb_list, list) {
1518 if (i-- > 0) {
1519 list_del(&block_cb->list);
1520 tcf_block_playback_offloads(block, block_cb->cb,
1521 block_cb->cb_priv, false,
1522 tcf_block_offload_in_use(block),
1523 NULL);
Vlad Buslovc9f14472019-08-26 16:45:01 +03001524 if (!bo->unlocked_driver_cb)
1525 block->lockeddevcnt--;
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001526 }
1527 flow_block_cb_free(block_cb);
1528 }
1529
1530 return err;
1531}
1532
1533static void tcf_block_unbind(struct tcf_block *block,
1534 struct flow_block_offload *bo)
1535{
1536 struct flow_block_cb *block_cb, *next;
1537
Vlad Buslov4f8116c2019-08-26 16:44:57 +03001538 lockdep_assert_held(&block->cb_lock);
1539
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001540 list_for_each_entry_safe(block_cb, next, &bo->cb_list, list) {
1541 tcf_block_playback_offloads(block, block_cb->cb,
1542 block_cb->cb_priv, false,
1543 tcf_block_offload_in_use(block),
1544 NULL);
1545 list_del(&block_cb->list);
1546 flow_block_cb_free(block_cb);
Vlad Buslovc9f14472019-08-26 16:45:01 +03001547 if (!bo->unlocked_driver_cb)
1548 block->lockeddevcnt--;
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001549 }
1550}
1551
1552static int tcf_block_setup(struct tcf_block *block,
1553 struct flow_block_offload *bo)
1554{
1555 int err;
1556
1557 switch (bo->command) {
1558 case FLOW_BLOCK_BIND:
1559 err = tcf_block_bind(block, bo);
1560 break;
1561 case FLOW_BLOCK_UNBIND:
1562 err = 0;
1563 tcf_block_unbind(block, bo);
1564 break;
1565 default:
1566 WARN_ON_ONCE(1);
1567 err = -EOPNOTSUPP;
1568 }
1569
1570 return err;
1571}
1572
Jiri Pirko87d83092017-05-17 11:07:54 +02001573/* Main classifier routine: scans classifier chain attached
1574 * to this qdisc, (optionally) tests for protocol and asks
1575 * specific classifiers.
1576 */
Paul Blakey9410c942020-02-16 12:01:21 +02001577static inline int __tcf_classify(struct sk_buff *skb,
1578 const struct tcf_proto *tp,
Paul Blakeyaf699622020-02-16 12:01:24 +02001579 const struct tcf_proto *orig_tp,
Paul Blakey9410c942020-02-16 12:01:21 +02001580 struct tcf_result *res,
1581 bool compat_mode,
1582 u32 *last_executed_chain)
Jiri Pirko87d83092017-05-17 11:07:54 +02001583{
Jiri Pirko87d83092017-05-17 11:07:54 +02001584#ifdef CONFIG_NET_CLS_ACT
1585 const int max_reclassify_loop = 4;
Jiri Pirkoee538dc2017-05-23 09:11:59 +02001586 const struct tcf_proto *first_tp;
Jiri Pirko87d83092017-05-17 11:07:54 +02001587 int limit = 0;
1588
1589reclassify:
1590#endif
1591 for (; tp; tp = rcu_dereference_bh(tp->next)) {
Cong Wangcd0c4e72019-01-11 18:55:42 -08001592 __be16 protocol = tc_skb_protocol(skb);
Jiri Pirko87d83092017-05-17 11:07:54 +02001593 int err;
1594
1595 if (tp->protocol != protocol &&
1596 tp->protocol != htons(ETH_P_ALL))
1597 continue;
1598
1599 err = tp->classify(skb, tp, res);
1600#ifdef CONFIG_NET_CLS_ACT
Jiri Pirkodb505142017-05-17 11:08:03 +02001601 if (unlikely(err == TC_ACT_RECLASSIFY && !compat_mode)) {
Jiri Pirkoee538dc2017-05-23 09:11:59 +02001602 first_tp = orig_tp;
Paul Blakey9410c942020-02-16 12:01:21 +02001603 *last_executed_chain = first_tp->chain->index;
Jiri Pirko87d83092017-05-17 11:07:54 +02001604 goto reset;
Jiri Pirkodb505142017-05-17 11:08:03 +02001605 } else if (unlikely(TC_ACT_EXT_CMP(err, TC_ACT_GOTO_CHAIN))) {
Jiri Pirkoee538dc2017-05-23 09:11:59 +02001606 first_tp = res->goto_tp;
Paul Blakey9410c942020-02-16 12:01:21 +02001607 *last_executed_chain = err & TC_ACT_EXT_VAL_MASK;
Jiri Pirkodb505142017-05-17 11:08:03 +02001608 goto reset;
1609 }
Jiri Pirko87d83092017-05-17 11:07:54 +02001610#endif
1611 if (err >= 0)
1612 return err;
1613 }
1614
1615 return TC_ACT_UNSPEC; /* signal: continue lookup */
1616#ifdef CONFIG_NET_CLS_ACT
1617reset:
1618 if (unlikely(limit++ >= max_reclassify_loop)) {
Jiri Pirko9d3aaff2018-01-17 11:46:47 +01001619 net_notice_ratelimited("%u: reclassify loop, rule prio %u, protocol %02x\n",
1620 tp->chain->block->index,
1621 tp->prio & 0xffff,
Jiri Pirko87d83092017-05-17 11:07:54 +02001622 ntohs(tp->protocol));
1623 return TC_ACT_SHOT;
1624 }
1625
Jiri Pirkoee538dc2017-05-23 09:11:59 +02001626 tp = first_tp;
Jiri Pirko87d83092017-05-17 11:07:54 +02001627 goto reclassify;
1628#endif
1629}
Paul Blakey9410c942020-02-16 12:01:21 +02001630
1631int tcf_classify(struct sk_buff *skb, const struct tcf_proto *tp,
1632 struct tcf_result *res, bool compat_mode)
1633{
1634 u32 last_executed_chain = 0;
1635
Paul Blakeyaf699622020-02-16 12:01:24 +02001636 return __tcf_classify(skb, tp, tp, res, compat_mode,
Paul Blakey9410c942020-02-16 12:01:21 +02001637 &last_executed_chain);
1638}
Jiri Pirko87d83092017-05-17 11:07:54 +02001639EXPORT_SYMBOL(tcf_classify);
1640
Paul Blakey7d17c542020-02-16 12:01:22 +02001641int tcf_classify_ingress(struct sk_buff *skb,
1642 const struct tcf_block *ingress_block,
1643 const struct tcf_proto *tp,
Paul Blakey9410c942020-02-16 12:01:21 +02001644 struct tcf_result *res, bool compat_mode)
1645{
1646#if !IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
1647 u32 last_executed_chain = 0;
1648
Paul Blakeyaf699622020-02-16 12:01:24 +02001649 return __tcf_classify(skb, tp, tp, res, compat_mode,
Paul Blakey9410c942020-02-16 12:01:21 +02001650 &last_executed_chain);
1651#else
1652 u32 last_executed_chain = tp ? tp->chain->index : 0;
Paul Blakeyaf699622020-02-16 12:01:24 +02001653 const struct tcf_proto *orig_tp = tp;
Paul Blakey9410c942020-02-16 12:01:21 +02001654 struct tc_skb_ext *ext;
1655 int ret;
1656
Paul Blakeyaf699622020-02-16 12:01:24 +02001657 ext = skb_ext_find(skb, TC_SKB_EXT);
1658
1659 if (ext && ext->chain) {
1660 struct tcf_chain *fchain;
1661
1662 fchain = tcf_chain_lookup_rcu(ingress_block, ext->chain);
1663 if (!fchain)
1664 return TC_ACT_SHOT;
1665
1666 /* Consume, so cloned/redirect skbs won't inherit ext */
1667 skb_ext_del(skb, TC_SKB_EXT);
1668
1669 tp = rcu_dereference_bh(fchain->filter_chain);
Paul Blakeya080da62020-04-06 18:36:56 +03001670 last_executed_chain = fchain->index;
Paul Blakeyaf699622020-02-16 12:01:24 +02001671 }
1672
1673 ret = __tcf_classify(skb, tp, orig_tp, res, compat_mode,
1674 &last_executed_chain);
Paul Blakey9410c942020-02-16 12:01:21 +02001675
1676 /* If we missed on some chain */
1677 if (ret == TC_ACT_UNSPEC && last_executed_chain) {
1678 ext = skb_ext_add(skb, TC_SKB_EXT);
1679 if (WARN_ON_ONCE(!ext))
1680 return TC_ACT_SHOT;
1681 ext->chain = last_executed_chain;
1682 }
1683
1684 return ret;
1685#endif
1686}
1687EXPORT_SYMBOL(tcf_classify_ingress);
1688
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001689struct tcf_chain_info {
1690 struct tcf_proto __rcu **pprev;
1691 struct tcf_proto __rcu *next;
1692};
1693
Vlad Busloved76f5e2019-02-11 10:55:38 +02001694static struct tcf_proto *tcf_chain_tp_prev(struct tcf_chain *chain,
1695 struct tcf_chain_info *chain_info)
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001696{
Vlad Busloved76f5e2019-02-11 10:55:38 +02001697 return tcf_chain_dereference(*chain_info->pprev, chain);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001698}
1699
Vlad Buslov726d06122019-02-11 10:55:42 +02001700static int tcf_chain_tp_insert(struct tcf_chain *chain,
1701 struct tcf_chain_info *chain_info,
1702 struct tcf_proto *tp)
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001703{
Vlad Buslov726d06122019-02-11 10:55:42 +02001704 if (chain->flushing)
1705 return -EAGAIN;
1706
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001707 if (*chain_info->pprev == chain->filter_chain)
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001708 tcf_chain0_head_change(chain, tp);
Vlad Buslov4dbfa762019-02-11 10:55:39 +02001709 tcf_proto_get(tp);
Vlad Busloved76f5e2019-02-11 10:55:38 +02001710 RCU_INIT_POINTER(tp->next, tcf_chain_tp_prev(chain, chain_info));
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001711 rcu_assign_pointer(*chain_info->pprev, tp);
Vlad Buslov726d06122019-02-11 10:55:42 +02001712
1713 return 0;
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001714}
1715
1716static void tcf_chain_tp_remove(struct tcf_chain *chain,
1717 struct tcf_chain_info *chain_info,
1718 struct tcf_proto *tp)
1719{
Vlad Busloved76f5e2019-02-11 10:55:38 +02001720 struct tcf_proto *next = tcf_chain_dereference(chain_info->next, chain);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001721
Vlad Buslov8b646782019-02-11 10:55:41 +02001722 tcf_proto_mark_delete(tp);
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001723 if (tp == chain->filter_chain)
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001724 tcf_chain0_head_change(chain, next);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001725 RCU_INIT_POINTER(*chain_info->pprev, next);
1726}
1727
1728static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain,
1729 struct tcf_chain_info *chain_info,
1730 u32 protocol, u32 prio,
Vlad Buslov8b646782019-02-11 10:55:41 +02001731 bool prio_allocate);
1732
1733/* Try to insert new proto.
1734 * If proto with specified priority already exists, free new proto
1735 * and return existing one.
1736 */
1737
1738static struct tcf_proto *tcf_chain_tp_insert_unique(struct tcf_chain *chain,
1739 struct tcf_proto *tp_new,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001740 u32 protocol, u32 prio,
1741 bool rtnl_held)
Vlad Buslov8b646782019-02-11 10:55:41 +02001742{
1743 struct tcf_chain_info chain_info;
1744 struct tcf_proto *tp;
Vlad Buslov726d06122019-02-11 10:55:42 +02001745 int err = 0;
Vlad Buslov8b646782019-02-11 10:55:41 +02001746
1747 mutex_lock(&chain->filter_chain_lock);
1748
John Hurley59eb87c2019-11-02 14:17:47 +00001749 if (tcf_proto_exists_destroying(chain, tp_new)) {
1750 mutex_unlock(&chain->filter_chain_lock);
1751 tcf_proto_destroy(tp_new, rtnl_held, false, NULL);
1752 return ERR_PTR(-EAGAIN);
1753 }
1754
Vlad Buslov8b646782019-02-11 10:55:41 +02001755 tp = tcf_chain_tp_find(chain, &chain_info,
1756 protocol, prio, false);
1757 if (!tp)
Vlad Buslov726d06122019-02-11 10:55:42 +02001758 err = tcf_chain_tp_insert(chain, &chain_info, tp_new);
Vlad Buslov8b646782019-02-11 10:55:41 +02001759 mutex_unlock(&chain->filter_chain_lock);
1760
1761 if (tp) {
John Hurley59eb87c2019-11-02 14:17:47 +00001762 tcf_proto_destroy(tp_new, rtnl_held, false, NULL);
Vlad Buslov8b646782019-02-11 10:55:41 +02001763 tp_new = tp;
Vlad Buslov726d06122019-02-11 10:55:42 +02001764 } else if (err) {
John Hurley59eb87c2019-11-02 14:17:47 +00001765 tcf_proto_destroy(tp_new, rtnl_held, false, NULL);
Vlad Buslov726d06122019-02-11 10:55:42 +02001766 tp_new = ERR_PTR(err);
Vlad Buslov8b646782019-02-11 10:55:41 +02001767 }
1768
1769 return tp_new;
1770}
1771
1772static void tcf_chain_tp_delete_empty(struct tcf_chain *chain,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001773 struct tcf_proto *tp, bool rtnl_held,
Vlad Buslov8b646782019-02-11 10:55:41 +02001774 struct netlink_ext_ack *extack)
1775{
1776 struct tcf_chain_info chain_info;
1777 struct tcf_proto *tp_iter;
1778 struct tcf_proto **pprev;
1779 struct tcf_proto *next;
1780
1781 mutex_lock(&chain->filter_chain_lock);
1782
1783 /* Atomically find and remove tp from chain. */
1784 for (pprev = &chain->filter_chain;
1785 (tp_iter = tcf_chain_dereference(*pprev, chain));
1786 pprev = &tp_iter->next) {
1787 if (tp_iter == tp) {
1788 chain_info.pprev = pprev;
1789 chain_info.next = tp_iter->next;
1790 WARN_ON(tp_iter->deleting);
1791 break;
1792 }
1793 }
1794 /* Verify that tp still exists and no new filters were inserted
1795 * concurrently.
1796 * Mark tp for deletion if it is empty.
1797 */
Davide Carattia5b72a02019-12-28 16:36:58 +01001798 if (!tp_iter || !tcf_proto_check_delete(tp)) {
Vlad Buslov8b646782019-02-11 10:55:41 +02001799 mutex_unlock(&chain->filter_chain_lock);
1800 return;
1801 }
1802
John Hurley59eb87c2019-11-02 14:17:47 +00001803 tcf_proto_signal_destroying(chain, tp);
Vlad Buslov8b646782019-02-11 10:55:41 +02001804 next = tcf_chain_dereference(chain_info.next, chain);
1805 if (tp == chain->filter_chain)
1806 tcf_chain0_head_change(chain, next);
1807 RCU_INIT_POINTER(*chain_info.pprev, next);
1808 mutex_unlock(&chain->filter_chain_lock);
1809
Vlad Buslov12db03b2019-02-11 10:55:45 +02001810 tcf_proto_put(tp, rtnl_held, extack);
Vlad Buslov8b646782019-02-11 10:55:41 +02001811}
1812
1813static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain,
1814 struct tcf_chain_info *chain_info,
1815 u32 protocol, u32 prio,
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001816 bool prio_allocate)
1817{
1818 struct tcf_proto **pprev;
1819 struct tcf_proto *tp;
1820
1821 /* Check the chain for existence of proto-tcf with this priority */
1822 for (pprev = &chain->filter_chain;
Vlad Busloved76f5e2019-02-11 10:55:38 +02001823 (tp = tcf_chain_dereference(*pprev, chain));
1824 pprev = &tp->next) {
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001825 if (tp->prio >= prio) {
1826 if (tp->prio == prio) {
1827 if (prio_allocate ||
1828 (tp->protocol != protocol && protocol))
1829 return ERR_PTR(-EINVAL);
1830 } else {
1831 tp = NULL;
1832 }
1833 break;
1834 }
1835 }
1836 chain_info->pprev = pprev;
Vlad Buslov4dbfa762019-02-11 10:55:39 +02001837 if (tp) {
1838 chain_info->next = tp->next;
1839 tcf_proto_get(tp);
1840 } else {
1841 chain_info->next = NULL;
1842 }
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001843 return tp;
1844}
1845
WANG Cong71203712017-08-07 15:26:50 -07001846static int tcf_fill_node(struct net *net, struct sk_buff *skb,
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001847 struct tcf_proto *tp, struct tcf_block *block,
1848 struct Qdisc *q, u32 parent, void *fh,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001849 u32 portid, u32 seq, u16 flags, int event,
1850 bool rtnl_held)
WANG Cong71203712017-08-07 15:26:50 -07001851{
1852 struct tcmsg *tcm;
1853 struct nlmsghdr *nlh;
1854 unsigned char *b = skb_tail_pointer(skb);
1855
1856 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
1857 if (!nlh)
1858 goto out_nlmsg_trim;
1859 tcm = nlmsg_data(nlh);
1860 tcm->tcm_family = AF_UNSPEC;
1861 tcm->tcm__pad1 = 0;
1862 tcm->tcm__pad2 = 0;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001863 if (q) {
1864 tcm->tcm_ifindex = qdisc_dev(q)->ifindex;
1865 tcm->tcm_parent = parent;
1866 } else {
1867 tcm->tcm_ifindex = TCM_IFINDEX_MAGIC_BLOCK;
1868 tcm->tcm_block_index = block->index;
1869 }
WANG Cong71203712017-08-07 15:26:50 -07001870 tcm->tcm_info = TC_H_MAKE(tp->prio, tp->protocol);
1871 if (nla_put_string(skb, TCA_KIND, tp->ops->kind))
1872 goto nla_put_failure;
1873 if (nla_put_u32(skb, TCA_CHAIN, tp->chain->index))
1874 goto nla_put_failure;
1875 if (!fh) {
1876 tcm->tcm_handle = 0;
1877 } else {
Vlad Buslov12db03b2019-02-11 10:55:45 +02001878 if (tp->ops->dump &&
1879 tp->ops->dump(net, tp, fh, skb, tcm, rtnl_held) < 0)
WANG Cong71203712017-08-07 15:26:50 -07001880 goto nla_put_failure;
1881 }
1882 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1883 return skb->len;
1884
1885out_nlmsg_trim:
1886nla_put_failure:
1887 nlmsg_trim(skb, b);
1888 return -1;
1889}
1890
1891static int tfilter_notify(struct net *net, struct sk_buff *oskb,
1892 struct nlmsghdr *n, struct tcf_proto *tp,
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001893 struct tcf_block *block, struct Qdisc *q,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001894 u32 parent, void *fh, int event, bool unicast,
1895 bool rtnl_held)
WANG Cong71203712017-08-07 15:26:50 -07001896{
1897 struct sk_buff *skb;
1898 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001899 int err = 0;
WANG Cong71203712017-08-07 15:26:50 -07001900
1901 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1902 if (!skb)
1903 return -ENOBUFS;
1904
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001905 if (tcf_fill_node(net, skb, tp, block, q, parent, fh, portid,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001906 n->nlmsg_seq, n->nlmsg_flags, event,
1907 rtnl_held) <= 0) {
WANG Cong71203712017-08-07 15:26:50 -07001908 kfree_skb(skb);
1909 return -EINVAL;
1910 }
1911
1912 if (unicast)
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001913 err = netlink_unicast(net->rtnl, skb, portid, MSG_DONTWAIT);
1914 else
1915 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
1916 n->nlmsg_flags & NLM_F_ECHO);
WANG Cong71203712017-08-07 15:26:50 -07001917
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001918 if (err > 0)
1919 err = 0;
1920 return err;
WANG Cong71203712017-08-07 15:26:50 -07001921}
1922
1923static int tfilter_del_notify(struct net *net, struct sk_buff *oskb,
1924 struct nlmsghdr *n, struct tcf_proto *tp,
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001925 struct tcf_block *block, struct Qdisc *q,
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001926 u32 parent, void *fh, bool unicast, bool *last,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001927 bool rtnl_held, struct netlink_ext_ack *extack)
WANG Cong71203712017-08-07 15:26:50 -07001928{
1929 struct sk_buff *skb;
1930 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
1931 int err;
1932
1933 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1934 if (!skb)
1935 return -ENOBUFS;
1936
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001937 if (tcf_fill_node(net, skb, tp, block, q, parent, fh, portid,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001938 n->nlmsg_seq, n->nlmsg_flags, RTM_DELTFILTER,
1939 rtnl_held) <= 0) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001940 NL_SET_ERR_MSG(extack, "Failed to build del event notification");
WANG Cong71203712017-08-07 15:26:50 -07001941 kfree_skb(skb);
1942 return -EINVAL;
1943 }
1944
Vlad Buslov12db03b2019-02-11 10:55:45 +02001945 err = tp->ops->delete(tp, fh, last, rtnl_held, extack);
WANG Cong71203712017-08-07 15:26:50 -07001946 if (err) {
1947 kfree_skb(skb);
1948 return err;
1949 }
1950
1951 if (unicast)
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001952 err = netlink_unicast(net->rtnl, skb, portid, MSG_DONTWAIT);
1953 else
1954 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
1955 n->nlmsg_flags & NLM_F_ECHO);
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001956 if (err < 0)
1957 NL_SET_ERR_MSG(extack, "Failed to send filter delete notification");
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001958
1959 if (err > 0)
1960 err = 0;
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001961 return err;
WANG Cong71203712017-08-07 15:26:50 -07001962}
1963
1964static void tfilter_notify_chain(struct net *net, struct sk_buff *oskb,
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001965 struct tcf_block *block, struct Qdisc *q,
1966 u32 parent, struct nlmsghdr *n,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001967 struct tcf_chain *chain, int event,
1968 bool rtnl_held)
WANG Cong71203712017-08-07 15:26:50 -07001969{
1970 struct tcf_proto *tp;
1971
Vlad Buslov12db03b2019-02-11 10:55:45 +02001972 for (tp = tcf_get_next_proto(chain, NULL, rtnl_held);
1973 tp; tp = tcf_get_next_proto(chain, tp, rtnl_held))
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001974 tfilter_notify(net, oskb, n, tp, block,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001975 q, parent, NULL, event, false, rtnl_held);
WANG Cong71203712017-08-07 15:26:50 -07001976}
1977
Vlad Buslov7d5509f2019-02-11 10:55:44 +02001978static void tfilter_put(struct tcf_proto *tp, void *fh)
1979{
1980 if (tp->ops->put && fh)
1981 tp->ops->put(tp, fh);
1982}
1983
Vlad Buslovc431f892018-05-31 09:52:53 +03001984static int tc_new_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
David Ahernc21ef3e2017-04-16 09:48:24 -07001985 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001987 struct net *net = sock_net(skb->sk);
Patrick McHardyadd93b62008-01-22 22:11:33 -08001988 struct nlattr *tca[TCA_MAX + 1];
Cong Wang6f96c3c2019-10-07 13:26:28 -07001989 char name[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 struct tcmsg *t;
1991 u32 protocol;
1992 u32 prio;
Jiri Pirko9d36d9e2017-05-17 11:07:57 +02001993 bool prio_allocate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 u32 parent;
Jiri Pirko5bc17012017-05-17 11:08:01 +02001995 u32 chain_index;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001996 struct Qdisc *q = NULL;
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001997 struct tcf_chain_info chain_info;
Jiri Pirko5bc17012017-05-17 11:08:01 +02001998 struct tcf_chain *chain = NULL;
Jiri Pirko6529eab2017-05-17 11:07:55 +02001999 struct tcf_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 struct tcf_proto *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 unsigned long cl;
WANG Cong8113c092017-08-04 21:31:43 -07002002 void *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 int err;
Daniel Borkmann628185c2016-12-21 18:04:11 +01002004 int tp_created;
Vlad Buslov470502d2019-02-11 10:55:48 +02002005 bool rtnl_held = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Vlad Buslovc431f892018-05-31 09:52:53 +03002007 if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +00002008 return -EPERM;
Hong zhi guode179c82013-03-25 17:36:33 +00002009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010replay:
Daniel Borkmann628185c2016-12-21 18:04:11 +01002011 tp_created = 0;
2012
Johannes Berg8cb08172019-04-26 14:07:28 +02002013 err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
2014 rtm_tca_policy, extack);
Hong zhi guode179c82013-03-25 17:36:33 +00002015 if (err < 0)
2016 return err;
2017
David S. Miller942b8162012-06-26 21:48:50 -07002018 t = nlmsg_data(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 protocol = TC_H_MIN(t->tcm_info);
2020 prio = TC_H_MAJ(t->tcm_info);
Jiri Pirko9d36d9e2017-05-17 11:07:57 +02002021 prio_allocate = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 parent = t->tcm_parent;
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002023 tp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 cl = 0;
Vlad Buslov470502d2019-02-11 10:55:48 +02002025 block = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027 if (prio == 0) {
Vlad Buslovc431f892018-05-31 09:52:53 +03002028 /* If no priority is provided by the user,
2029 * we allocate one.
2030 */
2031 if (n->nlmsg_flags & NLM_F_CREATE) {
2032 prio = TC_H_MAKE(0x80000000U, 0U);
2033 prio_allocate = true;
2034 } else {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002035 NL_SET_ERR_MSG(extack, "Invalid filter command with priority of zero");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 return -ENOENT;
Daniel Borkmannea7f8272016-06-10 23:10:22 +02002037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 }
2039
2040 /* Find head of filter chain. */
2041
Vlad Buslov470502d2019-02-11 10:55:48 +02002042 err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack);
2043 if (err)
2044 return err;
2045
Cong Wang6f96c3c2019-10-07 13:26:28 -07002046 if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2047 NL_SET_ERR_MSG(extack, "Specified TC filter name too long");
2048 err = -EINVAL;
2049 goto errout;
2050 }
2051
Vlad Buslov470502d2019-02-11 10:55:48 +02002052 /* Take rtnl mutex if rtnl_held was set to true on previous iteration,
2053 * block is shared (no qdisc found), qdisc is not unlocked, classifier
2054 * type is not specified, classifier is not unlocked.
2055 */
2056 if (rtnl_held ||
2057 (q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) ||
Cong Wang6f96c3c2019-10-07 13:26:28 -07002058 !tcf_proto_is_unlocked(name)) {
Vlad Buslov470502d2019-02-11 10:55:48 +02002059 rtnl_held = true;
2060 rtnl_lock();
2061 }
2062
2063 err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack);
2064 if (err)
2065 goto errout;
2066
2067 block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index,
2068 extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002069 if (IS_ERR(block)) {
2070 err = PTR_ERR(block);
2071 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002072 }
Cong Wanga7df4872020-04-30 20:53:49 -07002073 block->classid = parent;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002074
2075 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2076 if (chain_index > TC_ACT_EXT_VAL_MASK) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002077 NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
Jiri Pirko5bc17012017-05-17 11:08:01 +02002078 err = -EINVAL;
2079 goto errout;
2080 }
Vlad Buslovc431f892018-05-31 09:52:53 +03002081 chain = tcf_chain_get(block, chain_index, true);
Jiri Pirko5bc17012017-05-17 11:08:01 +02002082 if (!chain) {
Jiri Pirkod5ed72a2018-08-27 20:58:43 +02002083 NL_SET_ERR_MSG(extack, "Cannot create specified filter chain");
Vlad Buslovc431f892018-05-31 09:52:53 +03002084 err = -ENOMEM;
Daniel Borkmannea7f8272016-06-10 23:10:22 +02002085 goto errout;
2086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Vlad Busloved76f5e2019-02-11 10:55:38 +02002088 mutex_lock(&chain->filter_chain_lock);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02002089 tp = tcf_chain_tp_find(chain, &chain_info, protocol,
2090 prio, prio_allocate);
2091 if (IS_ERR(tp)) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002092 NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found");
Jiri Pirko2190d1d2017-05-17 11:07:59 +02002093 err = PTR_ERR(tp);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002094 goto errout_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 }
2096
2097 if (tp == NULL) {
Vlad Buslov8b646782019-02-11 10:55:41 +02002098 struct tcf_proto *tp_new = NULL;
2099
Vlad Buslov726d06122019-02-11 10:55:42 +02002100 if (chain->flushing) {
2101 err = -EAGAIN;
2102 goto errout_locked;
2103 }
2104
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 /* Proto-tcf does not exist, create new one */
2106
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002107 if (tca[TCA_KIND] == NULL || !protocol) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002108 NL_SET_ERR_MSG(extack, "Filter kind and protocol must be specified");
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002109 err = -EINVAL;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002110 goto errout_locked;
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
Vlad Buslovc431f892018-05-31 09:52:53 +03002113 if (!(n->nlmsg_flags & NLM_F_CREATE)) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002114 NL_SET_ERR_MSG(extack, "Need both RTM_NEWTFILTER and NLM_F_CREATE to create a new filter");
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002115 err = -ENOENT;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002116 goto errout_locked;
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Jiri Pirko9d36d9e2017-05-17 11:07:57 +02002119 if (prio_allocate)
Vlad Busloved76f5e2019-02-11 10:55:38 +02002120 prio = tcf_auto_prio(tcf_chain_tp_prev(chain,
2121 &chain_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Vlad Busloved76f5e2019-02-11 10:55:38 +02002123 mutex_unlock(&chain->filter_chain_lock);
Eric Dumazet36d79af2020-01-21 11:02:20 -08002124 tp_new = tcf_proto_create(name, protocol, prio, chain,
2125 rtnl_held, extack);
Vlad Buslov8b646782019-02-11 10:55:41 +02002126 if (IS_ERR(tp_new)) {
2127 err = PTR_ERR(tp_new);
Vlad Buslov726d06122019-02-11 10:55:42 +02002128 goto errout_tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 }
Vlad Busloved76f5e2019-02-11 10:55:38 +02002130
Minoru Usui12186be2009-06-02 02:17:34 -07002131 tp_created = 1;
Vlad Buslov12db03b2019-02-11 10:55:45 +02002132 tp = tcf_chain_tp_insert_unique(chain, tp_new, protocol, prio,
2133 rtnl_held);
Vlad Buslov726d06122019-02-11 10:55:42 +02002134 if (IS_ERR(tp)) {
2135 err = PTR_ERR(tp);
2136 goto errout_tp;
2137 }
Vlad Busloved76f5e2019-02-11 10:55:38 +02002138 } else {
2139 mutex_unlock(&chain->filter_chain_lock);
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Vlad Buslov8b646782019-02-11 10:55:41 +02002142 if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
2143 NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one");
2144 err = -EINVAL;
2145 goto errout;
2146 }
2147
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 fh = tp->ops->get(tp, t->tcm_handle);
2149
WANG Cong8113c092017-08-04 21:31:43 -07002150 if (!fh) {
Vlad Buslovc431f892018-05-31 09:52:53 +03002151 if (!(n->nlmsg_flags & NLM_F_CREATE)) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002152 NL_SET_ERR_MSG(extack, "Need both RTM_NEWTFILTER and NLM_F_CREATE to create a new filter");
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002153 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002155 }
Vlad Buslovc431f892018-05-31 09:52:53 +03002156 } else if (n->nlmsg_flags & NLM_F_EXCL) {
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002157 tfilter_put(tp, fh);
Vlad Buslovc431f892018-05-31 09:52:53 +03002158 NL_SET_ERR_MSG(extack, "Filter already exists");
2159 err = -EEXIST;
2160 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 }
2162
Jiri Pirko9f407f12018-07-23 09:23:07 +02002163 if (chain->tmplt_ops && chain->tmplt_ops != tp->ops) {
2164 NL_SET_ERR_MSG(extack, "Chain template is set to a different filter kind");
2165 err = -EINVAL;
2166 goto errout;
2167 }
2168
Cong Wang2f7ef2f2014-04-25 13:54:06 -07002169 err = tp->ops->change(net, skb, tp, cl, t->tcm_handle, tca, &fh,
Alexander Aring7306db32018-01-18 11:20:51 -05002170 n->nlmsg_flags & NLM_F_CREATE ? TCA_ACT_NOREPLACE : TCA_ACT_REPLACE,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002171 rtnl_held, extack);
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002172 if (err == 0) {
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002173 tfilter_notify(net, skb, n, tp, block, q, parent, fh,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002174 RTM_NEWTFILTER, false, rtnl_held);
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002175 tfilter_put(tp, fh);
Vlad Buslov503d81d2019-07-21 17:44:12 +03002176 /* q pointer is NULL for shared blocks */
2177 if (q)
2178 q->flags &= ~TCQ_F_CAN_BYPASS;
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181errout:
Vlad Buslov8b646782019-02-11 10:55:41 +02002182 if (err && tp_created)
Vlad Buslov12db03b2019-02-11 10:55:45 +02002183 tcf_chain_tp_delete_empty(chain, tp, rtnl_held, NULL);
Vlad Buslov726d06122019-02-11 10:55:42 +02002184errout_tp:
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002185 if (chain) {
2186 if (tp && !IS_ERR(tp))
Vlad Buslov12db03b2019-02-11 10:55:45 +02002187 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002188 if (!tp_created)
2189 tcf_chain_put(chain);
2190 }
Vlad Buslov12db03b2019-02-11 10:55:45 +02002191 tcf_block_release(q, block, rtnl_held);
Vlad Buslov470502d2019-02-11 10:55:48 +02002192
2193 if (rtnl_held)
2194 rtnl_unlock();
2195
2196 if (err == -EAGAIN) {
2197 /* Take rtnl lock in case EAGAIN is caused by concurrent flush
2198 * of target chain.
2199 */
2200 rtnl_held = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 /* Replay the request. */
2202 goto replay;
Vlad Buslov470502d2019-02-11 10:55:48 +02002203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 return err;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002205
2206errout_locked:
2207 mutex_unlock(&chain->filter_chain_lock);
2208 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209}
2210
Vlad Buslovc431f892018-05-31 09:52:53 +03002211static int tc_del_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
2212 struct netlink_ext_ack *extack)
2213{
2214 struct net *net = sock_net(skb->sk);
2215 struct nlattr *tca[TCA_MAX + 1];
Cong Wang6f96c3c2019-10-07 13:26:28 -07002216 char name[IFNAMSIZ];
Vlad Buslovc431f892018-05-31 09:52:53 +03002217 struct tcmsg *t;
2218 u32 protocol;
2219 u32 prio;
2220 u32 parent;
2221 u32 chain_index;
2222 struct Qdisc *q = NULL;
2223 struct tcf_chain_info chain_info;
2224 struct tcf_chain *chain = NULL;
Vlad Buslov470502d2019-02-11 10:55:48 +02002225 struct tcf_block *block = NULL;
Vlad Buslovc431f892018-05-31 09:52:53 +03002226 struct tcf_proto *tp = NULL;
2227 unsigned long cl = 0;
2228 void *fh = NULL;
2229 int err;
Vlad Buslov470502d2019-02-11 10:55:48 +02002230 bool rtnl_held = false;
Vlad Buslovc431f892018-05-31 09:52:53 +03002231
2232 if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
2233 return -EPERM;
2234
Johannes Berg8cb08172019-04-26 14:07:28 +02002235 err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
2236 rtm_tca_policy, extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002237 if (err < 0)
2238 return err;
2239
2240 t = nlmsg_data(n);
2241 protocol = TC_H_MIN(t->tcm_info);
2242 prio = TC_H_MAJ(t->tcm_info);
2243 parent = t->tcm_parent;
2244
2245 if (prio == 0 && (protocol || t->tcm_handle || tca[TCA_KIND])) {
2246 NL_SET_ERR_MSG(extack, "Cannot flush filters with protocol, handle or kind set");
2247 return -ENOENT;
2248 }
2249
2250 /* Find head of filter chain. */
2251
Vlad Buslov470502d2019-02-11 10:55:48 +02002252 err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack);
2253 if (err)
2254 return err;
2255
Cong Wang6f96c3c2019-10-07 13:26:28 -07002256 if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2257 NL_SET_ERR_MSG(extack, "Specified TC filter name too long");
2258 err = -EINVAL;
2259 goto errout;
2260 }
Vlad Buslov470502d2019-02-11 10:55:48 +02002261 /* Take rtnl mutex if flushing whole chain, block is shared (no qdisc
2262 * found), qdisc is not unlocked, classifier type is not specified,
2263 * classifier is not unlocked.
2264 */
2265 if (!prio ||
2266 (q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) ||
Cong Wang6f96c3c2019-10-07 13:26:28 -07002267 !tcf_proto_is_unlocked(name)) {
Vlad Buslov470502d2019-02-11 10:55:48 +02002268 rtnl_held = true;
2269 rtnl_lock();
2270 }
2271
2272 err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack);
2273 if (err)
2274 goto errout;
2275
2276 block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index,
2277 extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002278 if (IS_ERR(block)) {
2279 err = PTR_ERR(block);
2280 goto errout;
2281 }
2282
2283 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2284 if (chain_index > TC_ACT_EXT_VAL_MASK) {
2285 NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
2286 err = -EINVAL;
2287 goto errout;
2288 }
2289 chain = tcf_chain_get(block, chain_index, false);
2290 if (!chain) {
Jiri Pirko5ca8a252018-08-03 11:08:47 +02002291 /* User requested flush on non-existent chain. Nothing to do,
2292 * so just return success.
2293 */
2294 if (prio == 0) {
2295 err = 0;
2296 goto errout;
2297 }
Vlad Buslovc431f892018-05-31 09:52:53 +03002298 NL_SET_ERR_MSG(extack, "Cannot find specified filter chain");
Jiri Pirkob7b42472018-08-27 20:58:44 +02002299 err = -ENOENT;
Vlad Buslovc431f892018-05-31 09:52:53 +03002300 goto errout;
2301 }
2302
2303 if (prio == 0) {
2304 tfilter_notify_chain(net, skb, block, q, parent, n,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002305 chain, RTM_DELTFILTER, rtnl_held);
2306 tcf_chain_flush(chain, rtnl_held);
Vlad Buslovc431f892018-05-31 09:52:53 +03002307 err = 0;
2308 goto errout;
2309 }
2310
Vlad Busloved76f5e2019-02-11 10:55:38 +02002311 mutex_lock(&chain->filter_chain_lock);
Vlad Buslovc431f892018-05-31 09:52:53 +03002312 tp = tcf_chain_tp_find(chain, &chain_info, protocol,
2313 prio, false);
2314 if (!tp || IS_ERR(tp)) {
2315 NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found");
Vlad Buslov0e399032018-06-04 18:32:23 +03002316 err = tp ? PTR_ERR(tp) : -ENOENT;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002317 goto errout_locked;
Vlad Buslovc431f892018-05-31 09:52:53 +03002318 } else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
2319 NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one");
2320 err = -EINVAL;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002321 goto errout_locked;
2322 } else if (t->tcm_handle == 0) {
John Hurley59eb87c2019-11-02 14:17:47 +00002323 tcf_proto_signal_destroying(chain, tp);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002324 tcf_chain_tp_remove(chain, &chain_info, tp);
2325 mutex_unlock(&chain->filter_chain_lock);
2326
Vlad Buslov12db03b2019-02-11 10:55:45 +02002327 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002328 tfilter_notify(net, skb, n, tp, block, q, parent, fh,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002329 RTM_DELTFILTER, false, rtnl_held);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002330 err = 0;
Vlad Buslovc431f892018-05-31 09:52:53 +03002331 goto errout;
2332 }
Vlad Busloved76f5e2019-02-11 10:55:38 +02002333 mutex_unlock(&chain->filter_chain_lock);
Vlad Buslovc431f892018-05-31 09:52:53 +03002334
2335 fh = tp->ops->get(tp, t->tcm_handle);
2336
2337 if (!fh) {
Vlad Busloved76f5e2019-02-11 10:55:38 +02002338 NL_SET_ERR_MSG(extack, "Specified filter handle not found");
2339 err = -ENOENT;
Vlad Buslovc431f892018-05-31 09:52:53 +03002340 } else {
2341 bool last;
2342
2343 err = tfilter_del_notify(net, skb, n, tp, block,
2344 q, parent, fh, false, &last,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002345 rtnl_held, extack);
2346
Vlad Buslovc431f892018-05-31 09:52:53 +03002347 if (err)
2348 goto errout;
Vlad Buslov8b646782019-02-11 10:55:41 +02002349 if (last)
Vlad Buslov12db03b2019-02-11 10:55:45 +02002350 tcf_chain_tp_delete_empty(chain, tp, rtnl_held, extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002351 }
2352
2353errout:
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002354 if (chain) {
2355 if (tp && !IS_ERR(tp))
Vlad Buslov12db03b2019-02-11 10:55:45 +02002356 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Buslovc431f892018-05-31 09:52:53 +03002357 tcf_chain_put(chain);
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002358 }
Vlad Buslov12db03b2019-02-11 10:55:45 +02002359 tcf_block_release(q, block, rtnl_held);
Vlad Buslov470502d2019-02-11 10:55:48 +02002360
2361 if (rtnl_held)
2362 rtnl_unlock();
2363
Vlad Buslovc431f892018-05-31 09:52:53 +03002364 return err;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002365
2366errout_locked:
2367 mutex_unlock(&chain->filter_chain_lock);
2368 goto errout;
Vlad Buslovc431f892018-05-31 09:52:53 +03002369}
2370
2371static int tc_get_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
2372 struct netlink_ext_ack *extack)
2373{
2374 struct net *net = sock_net(skb->sk);
2375 struct nlattr *tca[TCA_MAX + 1];
Cong Wang6f96c3c2019-10-07 13:26:28 -07002376 char name[IFNAMSIZ];
Vlad Buslovc431f892018-05-31 09:52:53 +03002377 struct tcmsg *t;
2378 u32 protocol;
2379 u32 prio;
2380 u32 parent;
2381 u32 chain_index;
2382 struct Qdisc *q = NULL;
2383 struct tcf_chain_info chain_info;
2384 struct tcf_chain *chain = NULL;
Vlad Buslov470502d2019-02-11 10:55:48 +02002385 struct tcf_block *block = NULL;
Vlad Buslovc431f892018-05-31 09:52:53 +03002386 struct tcf_proto *tp = NULL;
2387 unsigned long cl = 0;
2388 void *fh = NULL;
2389 int err;
Vlad Buslov470502d2019-02-11 10:55:48 +02002390 bool rtnl_held = false;
Vlad Buslovc431f892018-05-31 09:52:53 +03002391
Johannes Berg8cb08172019-04-26 14:07:28 +02002392 err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
2393 rtm_tca_policy, extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002394 if (err < 0)
2395 return err;
2396
2397 t = nlmsg_data(n);
2398 protocol = TC_H_MIN(t->tcm_info);
2399 prio = TC_H_MAJ(t->tcm_info);
2400 parent = t->tcm_parent;
2401
2402 if (prio == 0) {
2403 NL_SET_ERR_MSG(extack, "Invalid filter command with priority of zero");
2404 return -ENOENT;
2405 }
2406
2407 /* Find head of filter chain. */
2408
Vlad Buslov470502d2019-02-11 10:55:48 +02002409 err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack);
2410 if (err)
2411 return err;
2412
Cong Wang6f96c3c2019-10-07 13:26:28 -07002413 if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2414 NL_SET_ERR_MSG(extack, "Specified TC filter name too long");
2415 err = -EINVAL;
2416 goto errout;
2417 }
Vlad Buslov470502d2019-02-11 10:55:48 +02002418 /* Take rtnl mutex if block is shared (no qdisc found), qdisc is not
2419 * unlocked, classifier type is not specified, classifier is not
2420 * unlocked.
2421 */
2422 if ((q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) ||
Cong Wang6f96c3c2019-10-07 13:26:28 -07002423 !tcf_proto_is_unlocked(name)) {
Vlad Buslov470502d2019-02-11 10:55:48 +02002424 rtnl_held = true;
2425 rtnl_lock();
2426 }
2427
2428 err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack);
2429 if (err)
2430 goto errout;
2431
2432 block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index,
2433 extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002434 if (IS_ERR(block)) {
2435 err = PTR_ERR(block);
2436 goto errout;
2437 }
2438
2439 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2440 if (chain_index > TC_ACT_EXT_VAL_MASK) {
2441 NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
2442 err = -EINVAL;
2443 goto errout;
2444 }
2445 chain = tcf_chain_get(block, chain_index, false);
2446 if (!chain) {
2447 NL_SET_ERR_MSG(extack, "Cannot find specified filter chain");
2448 err = -EINVAL;
2449 goto errout;
2450 }
2451
Vlad Busloved76f5e2019-02-11 10:55:38 +02002452 mutex_lock(&chain->filter_chain_lock);
Vlad Buslovc431f892018-05-31 09:52:53 +03002453 tp = tcf_chain_tp_find(chain, &chain_info, protocol,
2454 prio, false);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002455 mutex_unlock(&chain->filter_chain_lock);
Vlad Buslovc431f892018-05-31 09:52:53 +03002456 if (!tp || IS_ERR(tp)) {
2457 NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found");
Vlad Buslov0e399032018-06-04 18:32:23 +03002458 err = tp ? PTR_ERR(tp) : -ENOENT;
Vlad Buslovc431f892018-05-31 09:52:53 +03002459 goto errout;
2460 } else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
2461 NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one");
2462 err = -EINVAL;
2463 goto errout;
2464 }
2465
2466 fh = tp->ops->get(tp, t->tcm_handle);
2467
2468 if (!fh) {
2469 NL_SET_ERR_MSG(extack, "Specified filter handle not found");
2470 err = -ENOENT;
2471 } else {
2472 err = tfilter_notify(net, skb, n, tp, block, q, parent,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002473 fh, RTM_NEWTFILTER, true, rtnl_held);
Vlad Buslovc431f892018-05-31 09:52:53 +03002474 if (err < 0)
2475 NL_SET_ERR_MSG(extack, "Failed to send filter notify message");
2476 }
2477
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002478 tfilter_put(tp, fh);
Vlad Buslovc431f892018-05-31 09:52:53 +03002479errout:
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002480 if (chain) {
2481 if (tp && !IS_ERR(tp))
Vlad Buslov12db03b2019-02-11 10:55:45 +02002482 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Buslovc431f892018-05-31 09:52:53 +03002483 tcf_chain_put(chain);
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002484 }
Vlad Buslov12db03b2019-02-11 10:55:45 +02002485 tcf_block_release(q, block, rtnl_held);
Vlad Buslov470502d2019-02-11 10:55:48 +02002486
2487 if (rtnl_held)
2488 rtnl_unlock();
2489
Vlad Buslovc431f892018-05-31 09:52:53 +03002490 return err;
2491}
2492
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08002493struct tcf_dump_args {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 struct tcf_walker w;
2495 struct sk_buff *skb;
2496 struct netlink_callback *cb;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002497 struct tcf_block *block;
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002498 struct Qdisc *q;
2499 u32 parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500};
2501
WANG Cong8113c092017-08-04 21:31:43 -07002502static int tcf_node_dump(struct tcf_proto *tp, void *n, struct tcf_walker *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503{
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08002504 struct tcf_dump_args *a = (void *)arg;
WANG Cong832d1d52014-01-09 16:14:01 -08002505 struct net *net = sock_net(a->skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002507 return tcf_fill_node(net, a->skb, tp, a->block, a->q, a->parent,
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002508 n, NETLINK_CB(a->cb->skb).portid,
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04002509 a->cb->nlh->nlmsg_seq, NLM_F_MULTI,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002510 RTM_NEWTFILTER, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511}
2512
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002513static bool tcf_chain_dump(struct tcf_chain *chain, struct Qdisc *q, u32 parent,
2514 struct sk_buff *skb, struct netlink_callback *cb,
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002515 long index_start, long *p_index)
2516{
2517 struct net *net = sock_net(skb->sk);
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002518 struct tcf_block *block = chain->block;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002519 struct tcmsg *tcm = nlmsg_data(cb->nlh);
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002520 struct tcf_proto *tp, *tp_prev;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002521 struct tcf_dump_args arg;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002522
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002523 for (tp = __tcf_get_next_proto(chain, NULL);
2524 tp;
2525 tp_prev = tp,
2526 tp = __tcf_get_next_proto(chain, tp),
Vlad Buslov12db03b2019-02-11 10:55:45 +02002527 tcf_proto_put(tp_prev, true, NULL),
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002528 (*p_index)++) {
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002529 if (*p_index < index_start)
2530 continue;
2531 if (TC_H_MAJ(tcm->tcm_info) &&
2532 TC_H_MAJ(tcm->tcm_info) != tp->prio)
2533 continue;
2534 if (TC_H_MIN(tcm->tcm_info) &&
2535 TC_H_MIN(tcm->tcm_info) != tp->protocol)
2536 continue;
2537 if (*p_index > index_start)
2538 memset(&cb->args[1], 0,
2539 sizeof(cb->args) - sizeof(cb->args[0]));
2540 if (cb->args[1] == 0) {
YueHaibing53189182018-07-17 20:58:14 +08002541 if (tcf_fill_node(net, skb, tp, block, q, parent, NULL,
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002542 NETLINK_CB(cb->skb).portid,
2543 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002544 RTM_NEWTFILTER, true) <= 0)
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002545 goto errout;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002546 cb->args[1] = 1;
2547 }
2548 if (!tp->ops->walk)
2549 continue;
2550 arg.w.fn = tcf_node_dump;
2551 arg.skb = skb;
2552 arg.cb = cb;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002553 arg.block = block;
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002554 arg.q = q;
2555 arg.parent = parent;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002556 arg.w.stop = 0;
2557 arg.w.skip = cb->args[1] - 1;
2558 arg.w.count = 0;
Vlad Buslov01683a12018-07-09 13:29:11 +03002559 arg.w.cookie = cb->args[2];
Vlad Buslov12db03b2019-02-11 10:55:45 +02002560 tp->ops->walk(tp, &arg.w, true);
Vlad Buslov01683a12018-07-09 13:29:11 +03002561 cb->args[2] = arg.w.cookie;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002562 cb->args[1] = arg.w.count + 1;
2563 if (arg.w.stop)
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002564 goto errout;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002565 }
Jiri Pirko5bc17012017-05-17 11:08:01 +02002566 return true;
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002567
2568errout:
Vlad Buslov12db03b2019-02-11 10:55:45 +02002569 tcf_proto_put(tp, true, NULL);
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002570 return false;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002571}
2572
Eric Dumazetbd27a872009-11-05 20:57:26 -08002573/* called with RTNL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574static int tc_dump_tfilter(struct sk_buff *skb, struct netlink_callback *cb)
2575{
Vlad Buslovbbf73832019-02-11 10:55:36 +02002576 struct tcf_chain *chain, *chain_prev;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002577 struct net *net = sock_net(skb->sk);
Jiri Pirko5bc17012017-05-17 11:08:01 +02002578 struct nlattr *tca[TCA_MAX + 1];
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002579 struct Qdisc *q = NULL;
Jiri Pirko6529eab2017-05-17 11:07:55 +02002580 struct tcf_block *block;
David S. Miller942b8162012-06-26 21:48:50 -07002581 struct tcmsg *tcm = nlmsg_data(cb->nlh);
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002582 long index_start;
2583 long index;
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002584 u32 parent;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002585 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
Hong zhi guo573ce262013-03-27 06:47:04 +00002587 if (nlmsg_len(cb->nlh) < sizeof(*tcm))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 return skb->len;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002589
Johannes Berg8cb08172019-04-26 14:07:28 +02002590 err = nlmsg_parse_deprecated(cb->nlh, sizeof(*tcm), tca, TCA_MAX,
2591 NULL, cb->extack);
Jiri Pirko5bc17012017-05-17 11:08:01 +02002592 if (err)
2593 return err;
2594
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002595 if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK) {
Vlad Buslov787ce6d2018-09-24 19:22:58 +03002596 block = tcf_block_refcnt_get(net, tcm->tcm_block_index);
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002597 if (!block)
WANG Cong143976c2017-08-24 16:51:29 -07002598 goto out;
Jiri Pirkod680b352018-01-18 16:14:49 +01002599 /* If we work with block index, q is NULL and parent value
2600 * will never be used in the following code. The check
2601 * in tcf_fill_node prevents it. However, compiler does not
2602 * see that far, so set parent to zero to silence the warning
2603 * about parent being uninitialized.
2604 */
2605 parent = 0;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002606 } else {
2607 const struct Qdisc_class_ops *cops;
2608 struct net_device *dev;
2609 unsigned long cl = 0;
2610
2611 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
2612 if (!dev)
2613 return skb->len;
2614
2615 parent = tcm->tcm_parent;
Cong Wanga7df4872020-04-30 20:53:49 -07002616 if (!parent)
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002617 q = dev->qdisc;
Cong Wanga7df4872020-04-30 20:53:49 -07002618 else
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002619 q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent));
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002620 if (!q)
2621 goto out;
2622 cops = q->ops->cl_ops;
2623 if (!cops)
2624 goto out;
2625 if (!cops->tcf_block)
2626 goto out;
2627 if (TC_H_MIN(tcm->tcm_parent)) {
2628 cl = cops->find(q, tcm->tcm_parent);
2629 if (cl == 0)
2630 goto out;
2631 }
2632 block = cops->tcf_block(q, cl, NULL);
2633 if (!block)
2634 goto out;
Cong Wanga7df4872020-04-30 20:53:49 -07002635 parent = block->classid;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002636 if (tcf_block_shared(block))
2637 q = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002640 index_start = cb->args[0];
2641 index = 0;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002642
Vlad Buslovbbf73832019-02-11 10:55:36 +02002643 for (chain = __tcf_get_next_chain(block, NULL);
2644 chain;
2645 chain_prev = chain,
2646 chain = __tcf_get_next_chain(block, chain),
2647 tcf_chain_put(chain_prev)) {
Jiri Pirko5bc17012017-05-17 11:08:01 +02002648 if (tca[TCA_CHAIN] &&
2649 nla_get_u32(tca[TCA_CHAIN]) != chain->index)
2650 continue;
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002651 if (!tcf_chain_dump(chain, q, parent, skb, cb,
Roman Kapl5ae437a2018-02-19 21:32:51 +01002652 index_start, &index)) {
Vlad Buslovbbf73832019-02-11 10:55:36 +02002653 tcf_chain_put(chain);
Roman Kapl5ae437a2018-02-19 21:32:51 +01002654 err = -EMSGSIZE;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002655 break;
Roman Kapl5ae437a2018-02-19 21:32:51 +01002656 }
Jiri Pirko5bc17012017-05-17 11:08:01 +02002657 }
2658
Vlad Buslov787ce6d2018-09-24 19:22:58 +03002659 if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK)
Vlad Buslov12db03b2019-02-11 10:55:45 +02002660 tcf_block_refcnt_put(block, true);
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002661 cb->args[0] = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663out:
Roman Kapl5ae437a2018-02-19 21:32:51 +01002664 /* If we did no progress, the error (EMSGSIZE) is real */
2665 if (skb->len == 0 && err)
2666 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 return skb->len;
2668}
2669
Vlad Buslova5654822019-02-11 10:55:37 +02002670static int tc_chain_fill_node(const struct tcf_proto_ops *tmplt_ops,
2671 void *tmplt_priv, u32 chain_index,
2672 struct net *net, struct sk_buff *skb,
2673 struct tcf_block *block,
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002674 u32 portid, u32 seq, u16 flags, int event)
2675{
2676 unsigned char *b = skb_tail_pointer(skb);
Jiri Pirko9f407f12018-07-23 09:23:07 +02002677 const struct tcf_proto_ops *ops;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002678 struct nlmsghdr *nlh;
2679 struct tcmsg *tcm;
Jiri Pirko9f407f12018-07-23 09:23:07 +02002680 void *priv;
2681
Vlad Buslova5654822019-02-11 10:55:37 +02002682 ops = tmplt_ops;
2683 priv = tmplt_priv;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002684
2685 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
2686 if (!nlh)
2687 goto out_nlmsg_trim;
2688 tcm = nlmsg_data(nlh);
2689 tcm->tcm_family = AF_UNSPEC;
2690 tcm->tcm__pad1 = 0;
2691 tcm->tcm__pad2 = 0;
2692 tcm->tcm_handle = 0;
2693 if (block->q) {
2694 tcm->tcm_ifindex = qdisc_dev(block->q)->ifindex;
2695 tcm->tcm_parent = block->q->handle;
2696 } else {
2697 tcm->tcm_ifindex = TCM_IFINDEX_MAGIC_BLOCK;
2698 tcm->tcm_block_index = block->index;
2699 }
2700
Vlad Buslova5654822019-02-11 10:55:37 +02002701 if (nla_put_u32(skb, TCA_CHAIN, chain_index))
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002702 goto nla_put_failure;
2703
Jiri Pirko9f407f12018-07-23 09:23:07 +02002704 if (ops) {
2705 if (nla_put_string(skb, TCA_KIND, ops->kind))
2706 goto nla_put_failure;
2707 if (ops->tmplt_dump(skb, net, priv) < 0)
2708 goto nla_put_failure;
2709 }
2710
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002711 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
2712 return skb->len;
2713
2714out_nlmsg_trim:
2715nla_put_failure:
2716 nlmsg_trim(skb, b);
2717 return -EMSGSIZE;
2718}
2719
2720static int tc_chain_notify(struct tcf_chain *chain, struct sk_buff *oskb,
2721 u32 seq, u16 flags, int event, bool unicast)
2722{
2723 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
2724 struct tcf_block *block = chain->block;
2725 struct net *net = block->net;
2726 struct sk_buff *skb;
Zhike Wang5b5f99b2019-03-11 03:15:54 -07002727 int err = 0;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002728
2729 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2730 if (!skb)
2731 return -ENOBUFS;
2732
Vlad Buslova5654822019-02-11 10:55:37 +02002733 if (tc_chain_fill_node(chain->tmplt_ops, chain->tmplt_priv,
2734 chain->index, net, skb, block, portid,
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002735 seq, flags, event) <= 0) {
2736 kfree_skb(skb);
2737 return -EINVAL;
2738 }
2739
2740 if (unicast)
Zhike Wang5b5f99b2019-03-11 03:15:54 -07002741 err = netlink_unicast(net->rtnl, skb, portid, MSG_DONTWAIT);
2742 else
2743 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
2744 flags & NLM_F_ECHO);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002745
Zhike Wang5b5f99b2019-03-11 03:15:54 -07002746 if (err > 0)
2747 err = 0;
2748 return err;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002749}
2750
Vlad Buslova5654822019-02-11 10:55:37 +02002751static int tc_chain_notify_delete(const struct tcf_proto_ops *tmplt_ops,
2752 void *tmplt_priv, u32 chain_index,
2753 struct tcf_block *block, struct sk_buff *oskb,
2754 u32 seq, u16 flags, bool unicast)
2755{
2756 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
2757 struct net *net = block->net;
2758 struct sk_buff *skb;
2759
2760 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2761 if (!skb)
2762 return -ENOBUFS;
2763
2764 if (tc_chain_fill_node(tmplt_ops, tmplt_priv, chain_index, net, skb,
2765 block, portid, seq, flags, RTM_DELCHAIN) <= 0) {
2766 kfree_skb(skb);
2767 return -EINVAL;
2768 }
2769
2770 if (unicast)
2771 return netlink_unicast(net->rtnl, skb, portid, MSG_DONTWAIT);
2772
2773 return rtnetlink_send(skb, net, portid, RTNLGRP_TC, flags & NLM_F_ECHO);
2774}
2775
Jiri Pirko9f407f12018-07-23 09:23:07 +02002776static int tc_chain_tmplt_add(struct tcf_chain *chain, struct net *net,
2777 struct nlattr **tca,
2778 struct netlink_ext_ack *extack)
2779{
2780 const struct tcf_proto_ops *ops;
Eric Dumazet2dd56162019-12-07 11:34:45 -08002781 char name[IFNAMSIZ];
Jiri Pirko9f407f12018-07-23 09:23:07 +02002782 void *tmplt_priv;
2783
2784 /* If kind is not set, user did not specify template. */
2785 if (!tca[TCA_KIND])
2786 return 0;
2787
Eric Dumazet2dd56162019-12-07 11:34:45 -08002788 if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2789 NL_SET_ERR_MSG(extack, "Specified TC chain template name too long");
2790 return -EINVAL;
2791 }
2792
2793 ops = tcf_proto_lookup_ops(name, true, extack);
Jiri Pirko9f407f12018-07-23 09:23:07 +02002794 if (IS_ERR(ops))
2795 return PTR_ERR(ops);
2796 if (!ops->tmplt_create || !ops->tmplt_destroy || !ops->tmplt_dump) {
2797 NL_SET_ERR_MSG(extack, "Chain templates are not supported with specified classifier");
2798 return -EOPNOTSUPP;
2799 }
2800
2801 tmplt_priv = ops->tmplt_create(net, chain, tca, extack);
2802 if (IS_ERR(tmplt_priv)) {
2803 module_put(ops->owner);
2804 return PTR_ERR(tmplt_priv);
2805 }
2806 chain->tmplt_ops = ops;
2807 chain->tmplt_priv = tmplt_priv;
2808 return 0;
2809}
2810
Vlad Buslova5654822019-02-11 10:55:37 +02002811static void tc_chain_tmplt_del(const struct tcf_proto_ops *tmplt_ops,
2812 void *tmplt_priv)
Jiri Pirko9f407f12018-07-23 09:23:07 +02002813{
Jiri Pirko9f407f12018-07-23 09:23:07 +02002814 /* If template ops are set, no work to do for us. */
Vlad Buslova5654822019-02-11 10:55:37 +02002815 if (!tmplt_ops)
Jiri Pirko9f407f12018-07-23 09:23:07 +02002816 return;
2817
Vlad Buslova5654822019-02-11 10:55:37 +02002818 tmplt_ops->tmplt_destroy(tmplt_priv);
2819 module_put(tmplt_ops->owner);
Jiri Pirko9f407f12018-07-23 09:23:07 +02002820}
2821
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002822/* Add/delete/get a chain */
2823
2824static int tc_ctl_chain(struct sk_buff *skb, struct nlmsghdr *n,
2825 struct netlink_ext_ack *extack)
2826{
2827 struct net *net = sock_net(skb->sk);
2828 struct nlattr *tca[TCA_MAX + 1];
2829 struct tcmsg *t;
2830 u32 parent;
2831 u32 chain_index;
2832 struct Qdisc *q = NULL;
2833 struct tcf_chain *chain = NULL;
2834 struct tcf_block *block;
2835 unsigned long cl;
2836 int err;
2837
2838 if (n->nlmsg_type != RTM_GETCHAIN &&
2839 !netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
2840 return -EPERM;
2841
2842replay:
Johannes Berg8cb08172019-04-26 14:07:28 +02002843 err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
2844 rtm_tca_policy, extack);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002845 if (err < 0)
2846 return err;
2847
2848 t = nlmsg_data(n);
2849 parent = t->tcm_parent;
2850 cl = 0;
2851
2852 block = tcf_block_find(net, &q, &parent, &cl,
2853 t->tcm_ifindex, t->tcm_block_index, extack);
2854 if (IS_ERR(block))
2855 return PTR_ERR(block);
2856
2857 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2858 if (chain_index > TC_ACT_EXT_VAL_MASK) {
2859 NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
Vlad Buslove368fdb2018-09-24 19:22:53 +03002860 err = -EINVAL;
2861 goto errout_block;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002862 }
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002863
2864 mutex_lock(&block->lock);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002865 chain = tcf_chain_lookup(block, chain_index);
2866 if (n->nlmsg_type == RTM_NEWCHAIN) {
2867 if (chain) {
Jiri Pirko3d32f4c2018-08-01 12:36:55 +02002868 if (tcf_chain_held_by_acts_only(chain)) {
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002869 /* The chain exists only because there is
Jiri Pirko3d32f4c2018-08-01 12:36:55 +02002870 * some action referencing it.
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002871 */
2872 tcf_chain_hold(chain);
2873 } else {
2874 NL_SET_ERR_MSG(extack, "Filter chain already exists");
Vlad Buslove368fdb2018-09-24 19:22:53 +03002875 err = -EEXIST;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002876 goto errout_block_locked;
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002877 }
2878 } else {
2879 if (!(n->nlmsg_flags & NLM_F_CREATE)) {
2880 NL_SET_ERR_MSG(extack, "Need both RTM_NEWCHAIN and NLM_F_CREATE to create a new chain");
Vlad Buslove368fdb2018-09-24 19:22:53 +03002881 err = -ENOENT;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002882 goto errout_block_locked;
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002883 }
2884 chain = tcf_chain_create(block, chain_index);
2885 if (!chain) {
2886 NL_SET_ERR_MSG(extack, "Failed to create filter chain");
Vlad Buslove368fdb2018-09-24 19:22:53 +03002887 err = -ENOMEM;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002888 goto errout_block_locked;
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002889 }
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002890 }
2891 } else {
Jiri Pirko3d32f4c2018-08-01 12:36:55 +02002892 if (!chain || tcf_chain_held_by_acts_only(chain)) {
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002893 NL_SET_ERR_MSG(extack, "Cannot find specified filter chain");
Vlad Buslove368fdb2018-09-24 19:22:53 +03002894 err = -EINVAL;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002895 goto errout_block_locked;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002896 }
2897 tcf_chain_hold(chain);
2898 }
2899
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002900 if (n->nlmsg_type == RTM_NEWCHAIN) {
2901 /* Modifying chain requires holding parent block lock. In case
2902 * the chain was successfully added, take a reference to the
2903 * chain. This ensures that an empty chain does not disappear at
2904 * the end of this function.
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002905 */
2906 tcf_chain_hold(chain);
2907 chain->explicitly_created = true;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002908 }
2909 mutex_unlock(&block->lock);
2910
2911 switch (n->nlmsg_type) {
2912 case RTM_NEWCHAIN:
2913 err = tc_chain_tmplt_add(chain, net, tca, extack);
2914 if (err) {
2915 tcf_chain_put_explicitly_created(chain);
2916 goto errout;
2917 }
2918
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002919 tc_chain_notify(chain, NULL, 0, NLM_F_CREATE | NLM_F_EXCL,
2920 RTM_NEWCHAIN, false);
2921 break;
2922 case RTM_DELCHAIN:
Cong Wangf5b9bac2018-09-11 14:22:23 -07002923 tfilter_notify_chain(net, skb, block, q, parent, n,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002924 chain, RTM_DELTFILTER, true);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002925 /* Flush the chain first as the user requested chain removal. */
Vlad Buslov12db03b2019-02-11 10:55:45 +02002926 tcf_chain_flush(chain, true);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002927 /* In case the chain was successfully deleted, put a reference
2928 * to the chain previously taken during addition.
2929 */
2930 tcf_chain_put_explicitly_created(chain);
2931 break;
2932 case RTM_GETCHAIN:
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002933 err = tc_chain_notify(chain, skb, n->nlmsg_seq,
2934 n->nlmsg_seq, n->nlmsg_type, true);
2935 if (err < 0)
2936 NL_SET_ERR_MSG(extack, "Failed to send chain notify message");
2937 break;
2938 default:
2939 err = -EOPNOTSUPP;
2940 NL_SET_ERR_MSG(extack, "Unsupported message type");
2941 goto errout;
2942 }
2943
2944errout:
2945 tcf_chain_put(chain);
Vlad Buslove368fdb2018-09-24 19:22:53 +03002946errout_block:
Vlad Buslov12db03b2019-02-11 10:55:45 +02002947 tcf_block_release(q, block, true);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002948 if (err == -EAGAIN)
2949 /* Replay the request. */
2950 goto replay;
2951 return err;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002952
2953errout_block_locked:
2954 mutex_unlock(&block->lock);
2955 goto errout_block;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002956}
2957
2958/* called with RTNL */
2959static int tc_dump_chain(struct sk_buff *skb, struct netlink_callback *cb)
2960{
2961 struct net *net = sock_net(skb->sk);
2962 struct nlattr *tca[TCA_MAX + 1];
2963 struct Qdisc *q = NULL;
2964 struct tcf_block *block;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002965 struct tcmsg *tcm = nlmsg_data(cb->nlh);
Vlad Buslovace4a262019-02-25 17:45:44 +02002966 struct tcf_chain *chain;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002967 long index_start;
2968 long index;
2969 u32 parent;
2970 int err;
2971
2972 if (nlmsg_len(cb->nlh) < sizeof(*tcm))
2973 return skb->len;
2974
Johannes Berg8cb08172019-04-26 14:07:28 +02002975 err = nlmsg_parse_deprecated(cb->nlh, sizeof(*tcm), tca, TCA_MAX,
2976 rtm_tca_policy, cb->extack);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002977 if (err)
2978 return err;
2979
2980 if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK) {
Vlad Buslov787ce6d2018-09-24 19:22:58 +03002981 block = tcf_block_refcnt_get(net, tcm->tcm_block_index);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002982 if (!block)
2983 goto out;
2984 /* If we work with block index, q is NULL and parent value
2985 * will never be used in the following code. The check
2986 * in tcf_fill_node prevents it. However, compiler does not
2987 * see that far, so set parent to zero to silence the warning
2988 * about parent being uninitialized.
2989 */
2990 parent = 0;
2991 } else {
2992 const struct Qdisc_class_ops *cops;
2993 struct net_device *dev;
2994 unsigned long cl = 0;
2995
2996 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
2997 if (!dev)
2998 return skb->len;
2999
3000 parent = tcm->tcm_parent;
3001 if (!parent) {
3002 q = dev->qdisc;
3003 parent = q->handle;
3004 } else {
3005 q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent));
3006 }
3007 if (!q)
3008 goto out;
3009 cops = q->ops->cl_ops;
3010 if (!cops)
3011 goto out;
3012 if (!cops->tcf_block)
3013 goto out;
3014 if (TC_H_MIN(tcm->tcm_parent)) {
3015 cl = cops->find(q, tcm->tcm_parent);
3016 if (cl == 0)
3017 goto out;
3018 }
3019 block = cops->tcf_block(q, cl, NULL);
3020 if (!block)
3021 goto out;
3022 if (tcf_block_shared(block))
3023 q = NULL;
3024 }
3025
3026 index_start = cb->args[0];
3027 index = 0;
3028
Vlad Buslovace4a262019-02-25 17:45:44 +02003029 mutex_lock(&block->lock);
3030 list_for_each_entry(chain, &block->chain_list, list) {
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003031 if ((tca[TCA_CHAIN] &&
3032 nla_get_u32(tca[TCA_CHAIN]) != chain->index))
3033 continue;
3034 if (index < index_start) {
3035 index++;
3036 continue;
3037 }
Vlad Buslovace4a262019-02-25 17:45:44 +02003038 if (tcf_chain_held_by_acts_only(chain))
3039 continue;
Vlad Buslova5654822019-02-11 10:55:37 +02003040 err = tc_chain_fill_node(chain->tmplt_ops, chain->tmplt_priv,
3041 chain->index, net, skb, block,
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003042 NETLINK_CB(cb->skb).portid,
3043 cb->nlh->nlmsg_seq, NLM_F_MULTI,
3044 RTM_NEWCHAIN);
Vlad Buslovace4a262019-02-25 17:45:44 +02003045 if (err <= 0)
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003046 break;
3047 index++;
3048 }
Vlad Buslovace4a262019-02-25 17:45:44 +02003049 mutex_unlock(&block->lock);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003050
Vlad Buslov787ce6d2018-09-24 19:22:58 +03003051 if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK)
Vlad Buslov12db03b2019-02-11 10:55:45 +02003052 tcf_block_refcnt_put(block, true);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003053 cb->args[0] = index;
3054
3055out:
3056 /* If we did no progress, the error (EMSGSIZE) is real */
3057 if (skb->len == 0 && err)
3058 return err;
3059 return skb->len;
3060}
3061
WANG Cong18d02642014-09-25 10:26:37 -07003062void tcf_exts_destroy(struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063{
3064#ifdef CONFIG_NET_CLS_ACT
Eric Dumazet3d66b892019-09-18 12:57:04 -07003065 if (exts->actions) {
3066 tcf_action_destroy(exts->actions, TCA_ACT_UNBIND);
3067 kfree(exts->actions);
3068 }
WANG Cong22dc13c2016-08-13 22:35:00 -07003069 exts->nr_actions = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070#endif
3071}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003072EXPORT_SYMBOL(tcf_exts_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073
Benjamin LaHaisec1b52732013-01-14 05:15:39 +00003074int tcf_exts_validate(struct net *net, struct tcf_proto *tp, struct nlattr **tb,
Alexander Aring50a56192018-01-18 11:20:52 -05003075 struct nlattr *rate_tlv, struct tcf_exts *exts, bool ovr,
Vlad Buslovec6743a2019-02-11 10:55:43 +02003076 bool rtnl_held, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078#ifdef CONFIG_NET_CLS_ACT
3079 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 struct tc_action *act;
Roman Mashakd04e6992018-03-08 16:59:17 -05003081 size_t attr_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
WANG Cong5da57f42013-12-15 20:15:07 -08003083 if (exts->police && tb[exts->police]) {
Jiri Pirko9fb9f252017-05-17 11:08:02 +02003084 act = tcf_action_init_1(net, tp, tb[exts->police],
3085 rate_tlv, "police", ovr,
Vlad Buslovec6743a2019-02-11 10:55:43 +02003086 TCA_ACT_BIND, rtnl_held,
3087 extack);
Patrick McHardyab27cfb2008-01-23 20:33:13 -08003088 if (IS_ERR(act))
3089 return PTR_ERR(act);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
WANG Cong33be6272013-12-15 20:15:05 -08003091 act->type = exts->type = TCA_OLD_COMPAT;
WANG Cong22dc13c2016-08-13 22:35:00 -07003092 exts->actions[0] = act;
3093 exts->nr_actions = 1;
WANG Cong5da57f42013-12-15 20:15:07 -08003094 } else if (exts->action && tb[exts->action]) {
Vlad Buslov90b73b72018-07-05 17:24:33 +03003095 int err;
WANG Cong22dc13c2016-08-13 22:35:00 -07003096
Jiri Pirko9fb9f252017-05-17 11:08:02 +02003097 err = tcf_action_init(net, tp, tb[exts->action],
3098 rate_tlv, NULL, ovr, TCA_ACT_BIND,
Vlad Buslovec6743a2019-02-11 10:55:43 +02003099 exts->actions, &attr_size,
3100 rtnl_held, extack);
Vlad Buslov90b73b72018-07-05 17:24:33 +03003101 if (err < 0)
WANG Cong33be6272013-12-15 20:15:05 -08003102 return err;
Vlad Buslov90b73b72018-07-05 17:24:33 +03003103 exts->nr_actions = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 }
3105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106#else
WANG Cong5da57f42013-12-15 20:15:07 -08003107 if ((exts->action && tb[exts->action]) ||
Alexander Aring50a56192018-01-18 11:20:52 -05003108 (exts->police && tb[exts->police])) {
3109 NL_SET_ERR_MSG(extack, "Classifier actions are not supported per compile options (CONFIG_NET_CLS_ACT)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 return -EOPNOTSUPP;
Alexander Aring50a56192018-01-18 11:20:52 -05003111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112#endif
3113
3114 return 0;
3115}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003116EXPORT_SYMBOL(tcf_exts_validate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
Jiri Pirko9b0d4442017-08-04 14:29:15 +02003118void tcf_exts_change(struct tcf_exts *dst, struct tcf_exts *src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119{
3120#ifdef CONFIG_NET_CLS_ACT
WANG Cong22dc13c2016-08-13 22:35:00 -07003121 struct tcf_exts old = *dst;
3122
Jiri Pirko9b0d4442017-08-04 14:29:15 +02003123 *dst = *src;
WANG Cong22dc13c2016-08-13 22:35:00 -07003124 tcf_exts_destroy(&old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125#endif
3126}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003127EXPORT_SYMBOL(tcf_exts_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128
WANG Cong22dc13c2016-08-13 22:35:00 -07003129#ifdef CONFIG_NET_CLS_ACT
3130static struct tc_action *tcf_exts_first_act(struct tcf_exts *exts)
3131{
3132 if (exts->nr_actions == 0)
3133 return NULL;
3134 else
3135 return exts->actions[0];
3136}
3137#endif
WANG Cong33be6272013-12-15 20:15:05 -08003138
WANG Cong5da57f42013-12-15 20:15:07 -08003139int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140{
3141#ifdef CONFIG_NET_CLS_ACT
Cong Wang9cc63db2014-07-16 14:25:30 -07003142 struct nlattr *nest;
3143
Jiri Pirko978dfd82017-08-04 14:29:03 +02003144 if (exts->action && tcf_exts_has_actions(exts)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 /*
3146 * again for backward compatible mode - we want
3147 * to work with both old and new modes of entering
3148 * tc data even if iproute2 was newer - jhs
3149 */
WANG Cong33be6272013-12-15 20:15:05 -08003150 if (exts->type != TCA_OLD_COMPAT) {
Michal Kubecekae0be8d2019-04-26 11:13:06 +02003151 nest = nla_nest_start_noflag(skb, exts->action);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08003152 if (nest == NULL)
3153 goto nla_put_failure;
WANG Cong22dc13c2016-08-13 22:35:00 -07003154
Vlad Buslov90b73b72018-07-05 17:24:33 +03003155 if (tcf_action_dump(skb, exts->actions, 0, 0) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -08003156 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08003157 nla_nest_end(skb, nest);
WANG Cong5da57f42013-12-15 20:15:07 -08003158 } else if (exts->police) {
WANG Cong33be6272013-12-15 20:15:05 -08003159 struct tc_action *act = tcf_exts_first_act(exts);
Michal Kubecekae0be8d2019-04-26 11:13:06 +02003160 nest = nla_nest_start_noflag(skb, exts->police);
Jamal Hadi Salim63acd682013-12-23 08:02:12 -05003161 if (nest == NULL || !act)
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08003162 goto nla_put_failure;
WANG Cong33be6272013-12-15 20:15:05 -08003163 if (tcf_action_dump_old(skb, act, 0, 0) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -08003164 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08003165 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 }
3167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 return 0;
Cong Wang9cc63db2014-07-16 14:25:30 -07003169
3170nla_put_failure:
3171 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 return -1;
Cong Wang9cc63db2014-07-16 14:25:30 -07003173#else
3174 return 0;
3175#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003177EXPORT_SYMBOL(tcf_exts_dump);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003179
WANG Cong5da57f42013-12-15 20:15:07 -08003180int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181{
3182#ifdef CONFIG_NET_CLS_ACT
WANG Cong33be6272013-12-15 20:15:05 -08003183 struct tc_action *a = tcf_exts_first_act(exts);
Ignacy Gawędzkib057df22015-02-03 19:05:18 +01003184 if (a != NULL && tcf_action_copy_stats(skb, a, 1) < 0)
WANG Cong33be6272013-12-15 20:15:05 -08003185 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186#endif
3187 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003189EXPORT_SYMBOL(tcf_exts_dump_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
Vlad Buslov40119212019-08-26 16:44:59 +03003191static void tcf_block_offload_inc(struct tcf_block *block, u32 *flags)
3192{
3193 if (*flags & TCA_CLS_FLAGS_IN_HW)
3194 return;
3195 *flags |= TCA_CLS_FLAGS_IN_HW;
3196 atomic_inc(&block->offloadcnt);
3197}
3198
3199static void tcf_block_offload_dec(struct tcf_block *block, u32 *flags)
3200{
3201 if (!(*flags & TCA_CLS_FLAGS_IN_HW))
3202 return;
3203 *flags &= ~TCA_CLS_FLAGS_IN_HW;
3204 atomic_dec(&block->offloadcnt);
3205}
3206
3207static void tc_cls_offload_cnt_update(struct tcf_block *block,
3208 struct tcf_proto *tp, u32 *cnt,
3209 u32 *flags, u32 diff, bool add)
3210{
3211 lockdep_assert_held(&block->cb_lock);
3212
3213 spin_lock(&tp->lock);
3214 if (add) {
3215 if (!*cnt)
3216 tcf_block_offload_inc(block, flags);
3217 *cnt += diff;
3218 } else {
3219 *cnt -= diff;
3220 if (!*cnt)
3221 tcf_block_offload_dec(block, flags);
3222 }
3223 spin_unlock(&tp->lock);
3224}
3225
3226static void
3227tc_cls_offload_cnt_reset(struct tcf_block *block, struct tcf_proto *tp,
3228 u32 *cnt, u32 *flags)
3229{
3230 lockdep_assert_held(&block->cb_lock);
3231
3232 spin_lock(&tp->lock);
3233 tcf_block_offload_dec(block, flags);
3234 *cnt = 0;
3235 spin_unlock(&tp->lock);
3236}
3237
3238static int
3239__tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type,
3240 void *type_data, bool err_stop)
Jiri Pirko717503b2017-10-11 09:41:09 +02003241{
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +02003242 struct flow_block_cb *block_cb;
Cong Wangaeb3fec2018-12-11 11:15:46 -08003243 int ok_count = 0;
3244 int err;
3245
Vlad Buslov40119212019-08-26 16:44:59 +03003246 list_for_each_entry(block_cb, &block->flow_block.cb_list, list) {
3247 err = block_cb->cb(type, type_data, block_cb->cb_priv);
3248 if (err) {
3249 if (err_stop)
3250 return err;
3251 } else {
3252 ok_count++;
3253 }
3254 }
3255 return ok_count;
3256}
3257
3258int tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type,
3259 void *type_data, bool err_stop, bool rtnl_held)
3260{
Vlad Buslov11bd6342019-08-26 16:45:02 +03003261 bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
Vlad Buslov40119212019-08-26 16:44:59 +03003262 int ok_count;
3263
Vlad Buslov11bd6342019-08-26 16:45:02 +03003264retry:
3265 if (take_rtnl)
3266 rtnl_lock();
Vlad Buslov40119212019-08-26 16:44:59 +03003267 down_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003268 /* Need to obtain rtnl lock if block is bound to devs that require it.
3269 * In block bind code cb_lock is obtained while holding rtnl, so we must
3270 * obtain the locks in same order here.
3271 */
3272 if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3273 up_read(&block->cb_lock);
3274 take_rtnl = true;
3275 goto retry;
3276 }
3277
Vlad Buslov40119212019-08-26 16:44:59 +03003278 ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003279
Vlad Buslov40119212019-08-26 16:44:59 +03003280 up_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003281 if (take_rtnl)
3282 rtnl_unlock();
Vlad Buslov40119212019-08-26 16:44:59 +03003283 return ok_count;
3284}
3285EXPORT_SYMBOL(tc_setup_cb_call);
3286
3287/* Non-destructive filter add. If filter that wasn't already in hardware is
3288 * successfully offloaded, increment block offloads counter. On failure,
3289 * previously offloaded filter is considered to be intact and offloads counter
3290 * is not decremented.
3291 */
3292
3293int tc_setup_cb_add(struct tcf_block *block, struct tcf_proto *tp,
3294 enum tc_setup_type type, void *type_data, bool err_stop,
3295 u32 *flags, unsigned int *in_hw_count, bool rtnl_held)
3296{
Vlad Buslov11bd6342019-08-26 16:45:02 +03003297 bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
Vlad Buslov40119212019-08-26 16:44:59 +03003298 int ok_count;
3299
Vlad Buslov11bd6342019-08-26 16:45:02 +03003300retry:
3301 if (take_rtnl)
3302 rtnl_lock();
Vlad Buslov4f8116c2019-08-26 16:44:57 +03003303 down_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003304 /* Need to obtain rtnl lock if block is bound to devs that require it.
3305 * In block bind code cb_lock is obtained while holding rtnl, so we must
3306 * obtain the locks in same order here.
3307 */
3308 if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3309 up_read(&block->cb_lock);
3310 take_rtnl = true;
3311 goto retry;
3312 }
3313
Cong Wangaeb3fec2018-12-11 11:15:46 -08003314 /* Make sure all netdevs sharing this block are offload-capable. */
Vlad Buslov4f8116c2019-08-26 16:44:57 +03003315 if (block->nooffloaddevcnt && err_stop) {
3316 ok_count = -EOPNOTSUPP;
3317 goto err_unlock;
3318 }
Cong Wangaeb3fec2018-12-11 11:15:46 -08003319
Vlad Buslov40119212019-08-26 16:44:59 +03003320 ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
Vlad Buslova449a3e2019-08-26 16:45:00 +03003321 if (ok_count < 0)
3322 goto err_unlock;
3323
3324 if (tp->ops->hw_add)
3325 tp->ops->hw_add(tp, type_data);
Vlad Buslov40119212019-08-26 16:44:59 +03003326 if (ok_count > 0)
3327 tc_cls_offload_cnt_update(block, tp, in_hw_count, flags,
3328 ok_count, true);
Vlad Buslov4f8116c2019-08-26 16:44:57 +03003329err_unlock:
3330 up_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003331 if (take_rtnl)
3332 rtnl_unlock();
Vlad Buslov40119212019-08-26 16:44:59 +03003333 return ok_count < 0 ? ok_count : 0;
Jiri Pirko717503b2017-10-11 09:41:09 +02003334}
Vlad Buslov40119212019-08-26 16:44:59 +03003335EXPORT_SYMBOL(tc_setup_cb_add);
3336
3337/* Destructive filter replace. If filter that wasn't already in hardware is
3338 * successfully offloaded, increment block offload counter. On failure,
3339 * previously offloaded filter is considered to be destroyed and offload counter
3340 * is decremented.
3341 */
3342
3343int tc_setup_cb_replace(struct tcf_block *block, struct tcf_proto *tp,
3344 enum tc_setup_type type, void *type_data, bool err_stop,
3345 u32 *old_flags, unsigned int *old_in_hw_count,
3346 u32 *new_flags, unsigned int *new_in_hw_count,
3347 bool rtnl_held)
3348{
Vlad Buslov11bd6342019-08-26 16:45:02 +03003349 bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
Vlad Buslov40119212019-08-26 16:44:59 +03003350 int ok_count;
3351
Vlad Buslov11bd6342019-08-26 16:45:02 +03003352retry:
3353 if (take_rtnl)
3354 rtnl_lock();
Vlad Buslov40119212019-08-26 16:44:59 +03003355 down_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003356 /* Need to obtain rtnl lock if block is bound to devs that require it.
3357 * In block bind code cb_lock is obtained while holding rtnl, so we must
3358 * obtain the locks in same order here.
3359 */
3360 if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3361 up_read(&block->cb_lock);
3362 take_rtnl = true;
3363 goto retry;
3364 }
3365
Vlad Buslov40119212019-08-26 16:44:59 +03003366 /* Make sure all netdevs sharing this block are offload-capable. */
3367 if (block->nooffloaddevcnt && err_stop) {
3368 ok_count = -EOPNOTSUPP;
3369 goto err_unlock;
3370 }
3371
3372 tc_cls_offload_cnt_reset(block, tp, old_in_hw_count, old_flags);
Vlad Buslova449a3e2019-08-26 16:45:00 +03003373 if (tp->ops->hw_del)
3374 tp->ops->hw_del(tp, type_data);
Vlad Buslov40119212019-08-26 16:44:59 +03003375
3376 ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
Vlad Buslova449a3e2019-08-26 16:45:00 +03003377 if (ok_count < 0)
3378 goto err_unlock;
3379
3380 if (tp->ops->hw_add)
3381 tp->ops->hw_add(tp, type_data);
Vlad Buslov40119212019-08-26 16:44:59 +03003382 if (ok_count > 0)
Vlad Buslova449a3e2019-08-26 16:45:00 +03003383 tc_cls_offload_cnt_update(block, tp, new_in_hw_count,
3384 new_flags, ok_count, true);
Vlad Buslov40119212019-08-26 16:44:59 +03003385err_unlock:
3386 up_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003387 if (take_rtnl)
3388 rtnl_unlock();
Vlad Buslov40119212019-08-26 16:44:59 +03003389 return ok_count < 0 ? ok_count : 0;
3390}
3391EXPORT_SYMBOL(tc_setup_cb_replace);
3392
3393/* Destroy filter and decrement block offload counter, if filter was previously
3394 * offloaded.
3395 */
3396
3397int tc_setup_cb_destroy(struct tcf_block *block, struct tcf_proto *tp,
3398 enum tc_setup_type type, void *type_data, bool err_stop,
3399 u32 *flags, unsigned int *in_hw_count, bool rtnl_held)
3400{
Vlad Buslov11bd6342019-08-26 16:45:02 +03003401 bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
Vlad Buslov40119212019-08-26 16:44:59 +03003402 int ok_count;
3403
Vlad Buslov11bd6342019-08-26 16:45:02 +03003404retry:
3405 if (take_rtnl)
3406 rtnl_lock();
Vlad Buslov40119212019-08-26 16:44:59 +03003407 down_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003408 /* Need to obtain rtnl lock if block is bound to devs that require it.
3409 * In block bind code cb_lock is obtained while holding rtnl, so we must
3410 * obtain the locks in same order here.
3411 */
3412 if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3413 up_read(&block->cb_lock);
3414 take_rtnl = true;
3415 goto retry;
3416 }
3417
Vlad Buslov40119212019-08-26 16:44:59 +03003418 ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
3419
3420 tc_cls_offload_cnt_reset(block, tp, in_hw_count, flags);
Vlad Buslova449a3e2019-08-26 16:45:00 +03003421 if (tp->ops->hw_del)
3422 tp->ops->hw_del(tp, type_data);
3423
Vlad Buslov40119212019-08-26 16:44:59 +03003424 up_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003425 if (take_rtnl)
3426 rtnl_unlock();
Vlad Buslov40119212019-08-26 16:44:59 +03003427 return ok_count < 0 ? ok_count : 0;
3428}
3429EXPORT_SYMBOL(tc_setup_cb_destroy);
3430
3431int tc_setup_cb_reoffload(struct tcf_block *block, struct tcf_proto *tp,
3432 bool add, flow_setup_cb_t *cb,
3433 enum tc_setup_type type, void *type_data,
3434 void *cb_priv, u32 *flags, unsigned int *in_hw_count)
3435{
3436 int err = cb(type, type_data, cb_priv);
3437
3438 if (err) {
3439 if (add && tc_skip_sw(*flags))
3440 return err;
3441 } else {
3442 tc_cls_offload_cnt_update(block, tp, in_hw_count, flags, 1,
3443 add);
3444 }
3445
3446 return 0;
3447}
3448EXPORT_SYMBOL(tc_setup_cb_reoffload);
Jiri Pirkob3f55bd2017-10-11 09:41:08 +02003449
Jiri Pirko20084952020-02-25 11:45:18 +01003450static int tcf_act_get_cookie(struct flow_action_entry *entry,
3451 const struct tc_action *act)
3452{
3453 struct tc_cookie *cookie;
3454 int err = 0;
3455
3456 rcu_read_lock();
3457 cookie = rcu_dereference(act->act_cookie);
3458 if (cookie) {
3459 entry->cookie = flow_action_cookie_create(cookie->data,
3460 cookie->len,
3461 GFP_ATOMIC);
3462 if (!entry->cookie)
3463 err = -ENOMEM;
3464 }
3465 rcu_read_unlock();
3466 return err;
3467}
3468
3469static void tcf_act_put_cookie(struct flow_action_entry *entry)
3470{
3471 flow_action_cookie_destroy(entry->cookie);
3472}
3473
Vlad Buslov5a6ff4b2019-08-26 16:45:04 +03003474void tc_cleanup_flow_action(struct flow_action *flow_action)
3475{
3476 struct flow_action_entry *entry;
3477 int i;
3478
Jiri Pirko20084952020-02-25 11:45:18 +01003479 flow_action_for_each(i, entry, flow_action) {
3480 tcf_act_put_cookie(entry);
Vlad Buslov11589582019-09-13 18:28:39 +03003481 if (entry->destructor)
3482 entry->destructor(entry->destructor_priv);
Jiri Pirko20084952020-02-25 11:45:18 +01003483 }
Vlad Buslov5a6ff4b2019-08-26 16:45:04 +03003484}
3485EXPORT_SYMBOL(tc_cleanup_flow_action);
3486
Vlad Buslov11589582019-09-13 18:28:39 +03003487static void tcf_mirred_get_dev(struct flow_action_entry *entry,
3488 const struct tc_action *act)
3489{
Vlad Buslov470d5062019-09-13 18:28:41 +03003490#ifdef CONFIG_NET_CLS_ACT
3491 entry->dev = act->ops->get_dev(act, &entry->destructor);
Vlad Buslov11589582019-09-13 18:28:39 +03003492 if (!entry->dev)
3493 return;
Vlad Buslov11589582019-09-13 18:28:39 +03003494 entry->destructor_priv = entry->dev;
Vlad Buslov470d5062019-09-13 18:28:41 +03003495#endif
Vlad Buslov11589582019-09-13 18:28:39 +03003496}
3497
3498static void tcf_tunnel_encap_put_tunnel(void *priv)
3499{
3500 struct ip_tunnel_info *tunnel = priv;
3501
3502 kfree(tunnel);
3503}
3504
3505static int tcf_tunnel_encap_get_tunnel(struct flow_action_entry *entry,
3506 const struct tc_action *act)
3507{
3508 entry->tunnel = tcf_tunnel_info_copy(act);
3509 if (!entry->tunnel)
3510 return -ENOMEM;
3511 entry->destructor = tcf_tunnel_encap_put_tunnel;
3512 entry->destructor_priv = entry->tunnel;
3513 return 0;
3514}
3515
Vlad Buslov4a5da472019-09-13 18:28:40 +03003516static void tcf_sample_get_group(struct flow_action_entry *entry,
3517 const struct tc_action *act)
3518{
3519#ifdef CONFIG_NET_CLS_ACT
3520 entry->sample.psample_group =
3521 act->ops->get_psample_group(act, &entry->destructor);
3522 entry->destructor_priv = entry->sample.psample_group;
3523#endif
3524}
3525
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003526int tc_setup_flow_action(struct flow_action *flow_action,
Vlad Buslovb15e7a62020-02-17 12:12:12 +02003527 const struct tcf_exts *exts)
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003528{
Vlad Buslov7a472812020-02-17 12:12:09 +02003529 struct tc_action *act;
Vlad Buslov9838b202019-08-26 16:45:03 +03003530 int i, j, k, err = 0;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003531
Jakub Kicinski0dfb2d82020-03-19 16:26:23 -07003532 BUILD_BUG_ON(TCA_ACT_HW_STATS_ANY != FLOW_ACTION_HW_STATS_ANY);
3533 BUILD_BUG_ON(TCA_ACT_HW_STATS_IMMEDIATE != FLOW_ACTION_HW_STATS_IMMEDIATE);
3534 BUILD_BUG_ON(TCA_ACT_HW_STATS_DELAYED != FLOW_ACTION_HW_STATS_DELAYED);
Jiri Pirko44f86582020-03-07 12:40:20 +01003535
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003536 if (!exts)
3537 return 0;
3538
3539 j = 0;
3540 tcf_exts_for_each_action(i, act, exts) {
3541 struct flow_action_entry *entry;
3542
3543 entry = &flow_action->entries[j];
Vlad Buslov7a472812020-02-17 12:12:09 +02003544 spin_lock_bh(&act->tcfa_lock);
Jiri Pirko20084952020-02-25 11:45:18 +01003545 err = tcf_act_get_cookie(entry, act);
3546 if (err)
3547 goto err_out_locked;
Jiri Pirko44f86582020-03-07 12:40:20 +01003548
Jakub Kicinski0dfb2d82020-03-19 16:26:23 -07003549 entry->hw_stats = act->hw_stats;
Jiri Pirko44f86582020-03-07 12:40:20 +01003550
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003551 if (is_tcf_gact_ok(act)) {
3552 entry->id = FLOW_ACTION_ACCEPT;
3553 } else if (is_tcf_gact_shot(act)) {
3554 entry->id = FLOW_ACTION_DROP;
3555 } else if (is_tcf_gact_trap(act)) {
3556 entry->id = FLOW_ACTION_TRAP;
3557 } else if (is_tcf_gact_goto_chain(act)) {
3558 entry->id = FLOW_ACTION_GOTO;
3559 entry->chain_index = tcf_gact_goto_chain_index(act);
3560 } else if (is_tcf_mirred_egress_redirect(act)) {
3561 entry->id = FLOW_ACTION_REDIRECT;
Vlad Buslov11589582019-09-13 18:28:39 +03003562 tcf_mirred_get_dev(entry, act);
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003563 } else if (is_tcf_mirred_egress_mirror(act)) {
3564 entry->id = FLOW_ACTION_MIRRED;
Vlad Buslov11589582019-09-13 18:28:39 +03003565 tcf_mirred_get_dev(entry, act);
John Hurley48e584a2019-08-04 16:09:06 +01003566 } else if (is_tcf_mirred_ingress_redirect(act)) {
3567 entry->id = FLOW_ACTION_REDIRECT_INGRESS;
Vlad Buslov11589582019-09-13 18:28:39 +03003568 tcf_mirred_get_dev(entry, act);
John Hurley48e584a2019-08-04 16:09:06 +01003569 } else if (is_tcf_mirred_ingress_mirror(act)) {
3570 entry->id = FLOW_ACTION_MIRRED_INGRESS;
Vlad Buslov11589582019-09-13 18:28:39 +03003571 tcf_mirred_get_dev(entry, act);
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003572 } else if (is_tcf_vlan(act)) {
3573 switch (tcf_vlan_action(act)) {
3574 case TCA_VLAN_ACT_PUSH:
3575 entry->id = FLOW_ACTION_VLAN_PUSH;
3576 entry->vlan.vid = tcf_vlan_push_vid(act);
3577 entry->vlan.proto = tcf_vlan_push_proto(act);
3578 entry->vlan.prio = tcf_vlan_push_prio(act);
3579 break;
3580 case TCA_VLAN_ACT_POP:
3581 entry->id = FLOW_ACTION_VLAN_POP;
3582 break;
3583 case TCA_VLAN_ACT_MODIFY:
3584 entry->id = FLOW_ACTION_VLAN_MANGLE;
3585 entry->vlan.vid = tcf_vlan_push_vid(act);
3586 entry->vlan.proto = tcf_vlan_push_proto(act);
3587 entry->vlan.prio = tcf_vlan_push_prio(act);
3588 break;
3589 default:
Vlad Buslov9838b202019-08-26 16:45:03 +03003590 err = -EOPNOTSUPP;
Vlad Buslov7a472812020-02-17 12:12:09 +02003591 goto err_out_locked;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003592 }
3593 } else if (is_tcf_tunnel_set(act)) {
3594 entry->id = FLOW_ACTION_TUNNEL_ENCAP;
Vlad Buslov11589582019-09-13 18:28:39 +03003595 err = tcf_tunnel_encap_get_tunnel(entry, act);
3596 if (err)
Vlad Buslov7a472812020-02-17 12:12:09 +02003597 goto err_out_locked;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003598 } else if (is_tcf_tunnel_release(act)) {
3599 entry->id = FLOW_ACTION_TUNNEL_DECAP;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003600 } else if (is_tcf_pedit(act)) {
3601 for (k = 0; k < tcf_pedit_nkeys(act); k++) {
3602 switch (tcf_pedit_cmd(act, k)) {
3603 case TCA_PEDIT_KEY_EX_CMD_SET:
3604 entry->id = FLOW_ACTION_MANGLE;
3605 break;
3606 case TCA_PEDIT_KEY_EX_CMD_ADD:
3607 entry->id = FLOW_ACTION_ADD;
3608 break;
3609 default:
Vlad Buslov9838b202019-08-26 16:45:03 +03003610 err = -EOPNOTSUPP;
Vlad Buslov7a472812020-02-17 12:12:09 +02003611 goto err_out_locked;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003612 }
3613 entry->mangle.htype = tcf_pedit_htype(act, k);
3614 entry->mangle.mask = tcf_pedit_mask(act, k);
3615 entry->mangle.val = tcf_pedit_val(act, k);
3616 entry->mangle.offset = tcf_pedit_offset(act, k);
Jakub Kicinski0dfb2d82020-03-19 16:26:23 -07003617 entry->hw_stats = act->hw_stats;
Petr Machata2c4b58d2020-03-18 19:42:29 +02003618 entry = &flow_action->entries[++j];
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003619 }
3620 } else if (is_tcf_csum(act)) {
3621 entry->id = FLOW_ACTION_CSUM;
3622 entry->csum_flags = tcf_csum_update_flags(act);
3623 } else if (is_tcf_skbedit_mark(act)) {
3624 entry->id = FLOW_ACTION_MARK;
3625 entry->mark = tcf_skbedit_mark(act);
Pieter Jansen van Vuurena7a7be62019-05-04 04:46:16 -07003626 } else if (is_tcf_sample(act)) {
3627 entry->id = FLOW_ACTION_SAMPLE;
Pieter Jansen van Vuurena7a7be62019-05-04 04:46:16 -07003628 entry->sample.trunc_size = tcf_sample_trunc_size(act);
3629 entry->sample.truncate = tcf_sample_truncate(act);
3630 entry->sample.rate = tcf_sample_rate(act);
Vlad Buslov4a5da472019-09-13 18:28:40 +03003631 tcf_sample_get_group(entry, act);
Pieter Jansen van Vuuren8c8cfc62019-05-04 04:46:22 -07003632 } else if (is_tcf_police(act)) {
3633 entry->id = FLOW_ACTION_POLICE;
3634 entry->police.burst = tcf_police_tcfp_burst(act);
3635 entry->police.rate_bytes_ps =
3636 tcf_police_rate_bytes_ps(act);
Paul Blakeyb57dc7c2019-07-09 10:30:48 +03003637 } else if (is_tcf_ct(act)) {
3638 entry->id = FLOW_ACTION_CT;
3639 entry->ct.action = tcf_ct_action(act);
3640 entry->ct.zone = tcf_ct_zone(act);
Paul Blakeyedd58612020-03-12 12:23:09 +02003641 entry->ct.flow_table = tcf_ct_ft(act);
John Hurley6749d5902019-07-23 15:33:59 +01003642 } else if (is_tcf_mpls(act)) {
3643 switch (tcf_mpls_action(act)) {
3644 case TCA_MPLS_ACT_PUSH:
3645 entry->id = FLOW_ACTION_MPLS_PUSH;
3646 entry->mpls_push.proto = tcf_mpls_proto(act);
3647 entry->mpls_push.label = tcf_mpls_label(act);
3648 entry->mpls_push.tc = tcf_mpls_tc(act);
3649 entry->mpls_push.bos = tcf_mpls_bos(act);
3650 entry->mpls_push.ttl = tcf_mpls_ttl(act);
3651 break;
3652 case TCA_MPLS_ACT_POP:
3653 entry->id = FLOW_ACTION_MPLS_POP;
3654 entry->mpls_pop.proto = tcf_mpls_proto(act);
3655 break;
3656 case TCA_MPLS_ACT_MODIFY:
3657 entry->id = FLOW_ACTION_MPLS_MANGLE;
3658 entry->mpls_mangle.label = tcf_mpls_label(act);
3659 entry->mpls_mangle.tc = tcf_mpls_tc(act);
3660 entry->mpls_mangle.bos = tcf_mpls_bos(act);
3661 entry->mpls_mangle.ttl = tcf_mpls_ttl(act);
3662 break;
3663 default:
Vlad Buslov7a472812020-02-17 12:12:09 +02003664 goto err_out_locked;
John Hurley6749d5902019-07-23 15:33:59 +01003665 }
John Hurleyfb1b7752019-08-04 16:09:04 +01003666 } else if (is_tcf_skbedit_ptype(act)) {
3667 entry->id = FLOW_ACTION_PTYPE;
3668 entry->ptype = tcf_skbedit_ptype(act);
Petr Machata2ce12412020-03-19 15:47:21 +02003669 } else if (is_tcf_skbedit_priority(act)) {
3670 entry->id = FLOW_ACTION_PRIORITY;
3671 entry->priority = tcf_skbedit_priority(act);
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003672 } else {
Vlad Buslov9838b202019-08-26 16:45:03 +03003673 err = -EOPNOTSUPP;
Vlad Buslov7a472812020-02-17 12:12:09 +02003674 goto err_out_locked;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003675 }
Vlad Buslov7a472812020-02-17 12:12:09 +02003676 spin_unlock_bh(&act->tcfa_lock);
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003677
3678 if (!is_tcf_pedit(act))
3679 j++;
3680 }
Vlad Buslov9838b202019-08-26 16:45:03 +03003681
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003682err_out:
Vlad Buslov5a6ff4b2019-08-26 16:45:04 +03003683 if (err)
3684 tc_cleanup_flow_action(flow_action);
3685
Vlad Buslov9838b202019-08-26 16:45:03 +03003686 return err;
Vlad Buslov7a472812020-02-17 12:12:09 +02003687err_out_locked:
3688 spin_unlock_bh(&act->tcfa_lock);
3689 goto err_out;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003690}
3691EXPORT_SYMBOL(tc_setup_flow_action);
3692
Pablo Neira Ayusoe3ab7862019-02-02 12:50:45 +01003693unsigned int tcf_exts_num_actions(struct tcf_exts *exts)
3694{
3695 unsigned int num_acts = 0;
3696 struct tc_action *act;
3697 int i;
3698
3699 tcf_exts_for_each_action(i, act, exts) {
3700 if (is_tcf_pedit(act))
3701 num_acts += tcf_pedit_nkeys(act);
3702 else
3703 num_acts++;
3704 }
3705 return num_acts;
3706}
3707EXPORT_SYMBOL(tcf_exts_num_actions);
3708
Jiri Pirko48617382018-01-17 11:46:46 +01003709static __net_init int tcf_net_init(struct net *net)
3710{
3711 struct tcf_net *tn = net_generic(net, tcf_net_id);
3712
Vlad Buslovab281622018-09-24 19:22:56 +03003713 spin_lock_init(&tn->idr_lock);
Jiri Pirko48617382018-01-17 11:46:46 +01003714 idr_init(&tn->idr);
3715 return 0;
3716}
3717
3718static void __net_exit tcf_net_exit(struct net *net)
3719{
3720 struct tcf_net *tn = net_generic(net, tcf_net_id);
3721
3722 idr_destroy(&tn->idr);
3723}
3724
3725static struct pernet_operations tcf_net_ops = {
3726 .init = tcf_net_init,
3727 .exit = tcf_net_exit,
3728 .id = &tcf_net_id,
3729 .size = sizeof(struct tcf_net),
3730};
3731
John Hurley25a443f2019-12-05 17:03:35 +00003732static struct flow_indr_block_entry block_entry = {
3733 .cb = tc_indr_block_get_and_cmd,
3734 .list = LIST_HEAD_INIT(block_entry.list),
wenxu1150ab02019-08-07 09:13:53 +08003735};
3736
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737static int __init tc_filter_init(void)
3738{
Jiri Pirko48617382018-01-17 11:46:46 +01003739 int err;
3740
Cong Wang7aa00452017-10-26 18:24:28 -07003741 tc_filter_wq = alloc_ordered_workqueue("tc_filter_workqueue", 0);
3742 if (!tc_filter_wq)
3743 return -ENOMEM;
3744
Jiri Pirko48617382018-01-17 11:46:46 +01003745 err = register_pernet_subsys(&tcf_net_ops);
3746 if (err)
3747 goto err_register_pernet_subsys;
3748
John Hurley25a443f2019-12-05 17:03:35 +00003749 flow_indr_add_block_cb(&block_entry);
wenxu1150ab02019-08-07 09:13:53 +08003750
Vlad Buslov470502d2019-02-11 10:55:48 +02003751 rtnl_register(PF_UNSPEC, RTM_NEWTFILTER, tc_new_tfilter, NULL,
3752 RTNL_FLAG_DOIT_UNLOCKED);
3753 rtnl_register(PF_UNSPEC, RTM_DELTFILTER, tc_del_tfilter, NULL,
3754 RTNL_FLAG_DOIT_UNLOCKED);
Vlad Buslovc431f892018-05-31 09:52:53 +03003755 rtnl_register(PF_UNSPEC, RTM_GETTFILTER, tc_get_tfilter,
Vlad Buslov470502d2019-02-11 10:55:48 +02003756 tc_dump_tfilter, RTNL_FLAG_DOIT_UNLOCKED);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003757 rtnl_register(PF_UNSPEC, RTM_NEWCHAIN, tc_ctl_chain, NULL, 0);
3758 rtnl_register(PF_UNSPEC, RTM_DELCHAIN, tc_ctl_chain, NULL, 0);
3759 rtnl_register(PF_UNSPEC, RTM_GETCHAIN, tc_ctl_chain,
3760 tc_dump_chain, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 return 0;
Jiri Pirko48617382018-01-17 11:46:46 +01003763
3764err_register_pernet_subsys:
3765 destroy_workqueue(tc_filter_wq);
3766 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767}
3768
3769subsys_initcall(tc_filter_init);