blob: d4e27c679123f0f62d033c3ad0eeda838e83cb49 [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 Hurley59eb87c2019-11-02 14:17:47 +000023#include <linux/jhash.h>
Paul Blakey43719292020-02-16 12:01:23 +020024#include <linux/rculist.h>
Denis V. Lunevb8542722007-12-01 00:21:31 +110025#include <net/net_namespace.h>
26#include <net/sock.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070027#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <net/pkt_sched.h>
29#include <net/pkt_cls.h>
Pablo Neira Ayusoe3ab7862019-02-02 12:50:45 +010030#include <net/tc_act/tc_pedit.h>
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +010031#include <net/tc_act/tc_mirred.h>
32#include <net/tc_act/tc_vlan.h>
33#include <net/tc_act/tc_tunnel_key.h>
34#include <net/tc_act/tc_csum.h>
35#include <net/tc_act/tc_gact.h>
Pieter Jansen van Vuuren8c8cfc62019-05-04 04:46:22 -070036#include <net/tc_act/tc_police.h>
Pieter Jansen van Vuurena7a7be62019-05-04 04:46:16 -070037#include <net/tc_act/tc_sample.h>
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +010038#include <net/tc_act/tc_skbedit.h>
Paul Blakeyb57dc7c2019-07-09 10:30:48 +030039#include <net/tc_act/tc_ct.h>
John Hurley6749d5902019-07-23 15:33:59 +010040#include <net/tc_act/tc_mpls.h>
Po Liud29bdd62020-05-01 08:53:16 +080041#include <net/tc_act/tc_gate.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)
Francis Laniel872f6902020-11-15 18:08:06 +0100226 return nla_strscpy(name, kind, IFNAMSIZ) < 0;
Cong Wang6f96c3c2019-10-07 13:26:28 -0700227 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
Pablo Neira Ayuso324a8232020-05-29 02:25:36 +0200623static void tcf_block_offload_init(struct flow_block_offload *bo,
Petr Machatac40f4e52020-07-11 00:55:03 +0300624 struct net_device *dev, struct Qdisc *sch,
Pablo Neira Ayuso324a8232020-05-29 02:25:36 +0200625 enum flow_block_command command,
626 enum flow_block_binder_type binder_type,
627 struct flow_block *flow_block,
628 bool shared, struct netlink_ext_ack *extack)
629{
630 bo->net = dev_net(dev);
631 bo->command = command;
632 bo->binder_type = binder_type;
633 bo->block = flow_block;
634 bo->block_shared = shared;
635 bo->extack = extack;
Petr Machatac40f4e52020-07-11 00:55:03 +0300636 bo->sch = sch;
Eli Cohen74fc4f82021-08-17 20:05:18 +0300637 bo->cb_list_head = &flow_block->cb_list;
Pablo Neira Ayuso324a8232020-05-29 02:25:36 +0200638 INIT_LIST_HEAD(&bo->cb_list);
639}
640
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200641static void tcf_block_unbind(struct tcf_block *block,
642 struct flow_block_offload *bo);
John Hurley7f76fa32018-11-09 21:21:26 -0800643
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200644static void tc_block_indr_cleanup(struct flow_block_cb *block_cb)
645{
646 struct tcf_block *block = block_cb->indr.data;
647 struct net_device *dev = block_cb->indr.dev;
Petr Machatac40f4e52020-07-11 00:55:03 +0300648 struct Qdisc *sch = block_cb->indr.sch;
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200649 struct netlink_ext_ack extack = {};
Yunjian Wang990b03b2021-04-01 12:52:48 +0800650 struct flow_block_offload bo = {};
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200651
Petr Machatac40f4e52020-07-11 00:55:03 +0300652 tcf_block_offload_init(&bo, dev, sch, FLOW_BLOCK_UNBIND,
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200653 block_cb->indr.binder_type,
654 &block->flow_block, tcf_block_shared(block),
655 &extack);
Leon Romanovskyd6535dc2020-10-26 14:33:27 +0200656 rtnl_lock();
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200657 down_write(&block->cb_lock);
wenxua1db2172020-06-18 20:49:10 +0800658 list_del(&block_cb->driver_list);
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200659 list_move(&block_cb->list, &bo.cb_list);
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200660 tcf_block_unbind(block, &bo);
Leon Romanovskyd6535dc2020-10-26 14:33:27 +0200661 up_write(&block->cb_lock);
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200662 rtnl_unlock();
John Hurley7f76fa32018-11-09 21:21:26 -0800663}
664
Jiri Pirkocaa72602018-01-17 11:46:50 +0100665static bool tcf_block_offload_in_use(struct tcf_block *block)
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200666{
Vlad Buslov97394be2019-08-26 16:44:58 +0300667 return atomic_read(&block->offloadcnt);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100668}
669
670static int tcf_block_offload_cmd(struct tcf_block *block,
Petr Machatac40f4e52020-07-11 00:55:03 +0300671 struct net_device *dev, struct Qdisc *sch,
Jiri Pirkocaa72602018-01-17 11:46:50 +0100672 struct tcf_block_ext_info *ei,
Pablo Neira Ayuso9c0e1892019-07-09 22:55:40 +0200673 enum flow_block_command command,
John Hurley60513bd2018-06-25 14:30:04 -0700674 struct netlink_ext_ack *extack)
Jiri Pirkocaa72602018-01-17 11:46:50 +0100675{
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +0200676 struct flow_block_offload bo = {};
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200677
Petr Machatac40f4e52020-07-11 00:55:03 +0300678 tcf_block_offload_init(&bo, dev, sch, command, ei->binder_type,
Pablo Neira Ayuso324a8232020-05-29 02:25:36 +0200679 &block->flow_block, tcf_block_shared(block),
680 extack);
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +0200681
wenxu3c005112020-06-18 20:49:11 +0800682 if (dev->netdev_ops->ndo_setup_tc) {
683 int err;
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200684
wenxu3c005112020-06-18 20:49:11 +0800685 err = dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_BLOCK, &bo);
686 if (err < 0) {
687 if (err != -EOPNOTSUPP)
688 NL_SET_ERR_MSG(extack, "Driver ndo_setup_tc failed");
689 return err;
690 }
691
692 return tcf_block_setup(block, &bo);
Jesper Dangaard Brouerb70ba692020-04-23 16:57:45 +0200693 }
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +0200694
Petr Machatac40f4e52020-07-11 00:55:03 +0300695 flow_indr_dev_setup_offload(dev, sch, TC_SETUP_BLOCK, block, &bo,
wenxu3c005112020-06-18 20:49:11 +0800696 tc_block_indr_cleanup);
697 tcf_block_setup(block, &bo);
698
699 return -EOPNOTSUPP;
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200700}
701
Jiri Pirkocaa72602018-01-17 11:46:50 +0100702static int tcf_block_offload_bind(struct tcf_block *block, struct Qdisc *q,
John Hurley60513bd2018-06-25 14:30:04 -0700703 struct tcf_block_ext_info *ei,
704 struct netlink_ext_ack *extack)
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200705{
Jiri Pirkocaa72602018-01-17 11:46:50 +0100706 struct net_device *dev = q->dev_queue->dev;
707 int err;
708
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300709 down_write(&block->cb_lock);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100710
711 /* If tc offload feature is disabled and the block we try to bind
712 * to already has some offloaded filters, forbid to bind.
713 */
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200714 if (dev->netdev_ops->ndo_setup_tc &&
715 !tc_can_offload(dev) &&
716 tcf_block_offload_in_use(block)) {
John Hurley60513bd2018-06-25 14:30:04 -0700717 NL_SET_ERR_MSG(extack, "Bind to offloaded block failed as dev has offload disabled");
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300718 err = -EOPNOTSUPP;
719 goto err_unlock;
John Hurley60513bd2018-06-25 14:30:04 -0700720 }
Jiri Pirkocaa72602018-01-17 11:46:50 +0100721
Petr Machatac40f4e52020-07-11 00:55:03 +0300722 err = tcf_block_offload_cmd(block, dev, q, ei, FLOW_BLOCK_BIND, extack);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100723 if (err == -EOPNOTSUPP)
724 goto no_offload_dev_inc;
John Hurley7f76fa32018-11-09 21:21:26 -0800725 if (err)
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300726 goto err_unlock;
John Hurley7f76fa32018-11-09 21:21:26 -0800727
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300728 up_write(&block->cb_lock);
John Hurley7f76fa32018-11-09 21:21:26 -0800729 return 0;
Jiri Pirkocaa72602018-01-17 11:46:50 +0100730
731no_offload_dev_inc:
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200732 if (tcf_block_offload_in_use(block))
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300733 goto err_unlock;
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200734
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300735 err = 0;
Jiri Pirkocaa72602018-01-17 11:46:50 +0100736 block->nooffloaddevcnt++;
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300737err_unlock:
738 up_write(&block->cb_lock);
739 return err;
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200740}
741
742static void tcf_block_offload_unbind(struct tcf_block *block, struct Qdisc *q,
743 struct tcf_block_ext_info *ei)
744{
Jiri Pirkocaa72602018-01-17 11:46:50 +0100745 struct net_device *dev = q->dev_queue->dev;
746 int err;
747
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300748 down_write(&block->cb_lock);
Petr Machatac40f4e52020-07-11 00:55:03 +0300749 err = tcf_block_offload_cmd(block, dev, q, ei, FLOW_BLOCK_UNBIND, NULL);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100750 if (err == -EOPNOTSUPP)
751 goto no_offload_dev_dec;
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300752 up_write(&block->cb_lock);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100753 return;
754
755no_offload_dev_dec:
756 WARN_ON(block->nooffloaddevcnt-- == 0);
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300757 up_write(&block->cb_lock);
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200758}
759
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100760static int
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200761tcf_chain0_head_change_cb_add(struct tcf_block *block,
762 struct tcf_block_ext_info *ei,
763 struct netlink_ext_ack *extack)
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100764{
765 struct tcf_filter_chain_list_item *item;
Vlad Buslov165f0132019-02-11 10:55:35 +0200766 struct tcf_chain *chain0;
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100767
768 item = kmalloc(sizeof(*item), GFP_KERNEL);
769 if (!item) {
770 NL_SET_ERR_MSG(extack, "Memory allocation for head change callback item failed");
771 return -ENOMEM;
772 }
773 item->chain_head_change = ei->chain_head_change;
774 item->chain_head_change_priv = ei->chain_head_change_priv;
Vlad Buslov165f0132019-02-11 10:55:35 +0200775
776 mutex_lock(&block->lock);
777 chain0 = block->chain0.chain;
Vlad Busloved76f5e2019-02-11 10:55:38 +0200778 if (chain0)
779 tcf_chain_hold(chain0);
780 else
781 list_add(&item->list, &block->chain0.filter_chain_list);
Vlad Buslov165f0132019-02-11 10:55:35 +0200782 mutex_unlock(&block->lock);
783
Vlad Busloved76f5e2019-02-11 10:55:38 +0200784 if (chain0) {
785 struct tcf_proto *tp_head;
786
787 mutex_lock(&chain0->filter_chain_lock);
788
789 tp_head = tcf_chain_dereference(chain0->filter_chain, chain0);
790 if (tp_head)
791 tcf_chain_head_change_item(item, tp_head);
792
793 mutex_lock(&block->lock);
794 list_add(&item->list, &block->chain0.filter_chain_list);
795 mutex_unlock(&block->lock);
796
797 mutex_unlock(&chain0->filter_chain_lock);
798 tcf_chain_put(chain0);
799 }
800
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100801 return 0;
802}
803
804static void
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200805tcf_chain0_head_change_cb_del(struct tcf_block *block,
806 struct tcf_block_ext_info *ei)
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100807{
808 struct tcf_filter_chain_list_item *item;
809
Vlad Buslov165f0132019-02-11 10:55:35 +0200810 mutex_lock(&block->lock);
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200811 list_for_each_entry(item, &block->chain0.filter_chain_list, list) {
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100812 if ((!ei->chain_head_change && !ei->chain_head_change_priv) ||
813 (item->chain_head_change == ei->chain_head_change &&
814 item->chain_head_change_priv == ei->chain_head_change_priv)) {
Vlad Buslov165f0132019-02-11 10:55:35 +0200815 if (block->chain0.chain)
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200816 tcf_chain_head_change_item(item, NULL);
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100817 list_del(&item->list);
Vlad Buslov165f0132019-02-11 10:55:35 +0200818 mutex_unlock(&block->lock);
819
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100820 kfree(item);
821 return;
822 }
823 }
Vlad Buslov165f0132019-02-11 10:55:35 +0200824 mutex_unlock(&block->lock);
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100825 WARN_ON(1);
826}
827
Jiri Pirko48617382018-01-17 11:46:46 +0100828struct tcf_net {
Vlad Buslovab281622018-09-24 19:22:56 +0300829 spinlock_t idr_lock; /* Protects idr */
Jiri Pirko48617382018-01-17 11:46:46 +0100830 struct idr idr;
831};
832
833static unsigned int tcf_net_id;
834
835static int tcf_block_insert(struct tcf_block *block, struct net *net,
Jiri Pirkobb047dd2018-02-13 12:00:16 +0100836 struct netlink_ext_ack *extack)
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100837{
Jiri Pirko48617382018-01-17 11:46:46 +0100838 struct tcf_net *tn = net_generic(net, tcf_net_id);
Vlad Buslovab281622018-09-24 19:22:56 +0300839 int err;
Jiri Pirko48617382018-01-17 11:46:46 +0100840
Vlad Buslovab281622018-09-24 19:22:56 +0300841 idr_preload(GFP_KERNEL);
842 spin_lock(&tn->idr_lock);
843 err = idr_alloc_u32(&tn->idr, block, &block->index, block->index,
844 GFP_NOWAIT);
845 spin_unlock(&tn->idr_lock);
846 idr_preload_end();
847
848 return err;
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100849}
850
Jiri Pirko48617382018-01-17 11:46:46 +0100851static void tcf_block_remove(struct tcf_block *block, struct net *net)
Jiri Pirko6529eab2017-05-17 11:07:55 +0200852{
Jiri Pirko48617382018-01-17 11:46:46 +0100853 struct tcf_net *tn = net_generic(net, tcf_net_id);
854
Vlad Buslovab281622018-09-24 19:22:56 +0300855 spin_lock(&tn->idr_lock);
Matthew Wilcox9c160942017-11-28 09:48:43 -0500856 idr_remove(&tn->idr, block->index);
Vlad Buslovab281622018-09-24 19:22:56 +0300857 spin_unlock(&tn->idr_lock);
Jiri Pirko48617382018-01-17 11:46:46 +0100858}
859
860static struct tcf_block *tcf_block_create(struct net *net, struct Qdisc *q,
Jiri Pirkobb047dd2018-02-13 12:00:16 +0100861 u32 block_index,
Jiri Pirko48617382018-01-17 11:46:46 +0100862 struct netlink_ext_ack *extack)
863{
864 struct tcf_block *block;
Jiri Pirko6529eab2017-05-17 11:07:55 +0200865
Jiri Pirko48617382018-01-17 11:46:46 +0100866 block = kzalloc(sizeof(*block), GFP_KERNEL);
Alexander Aring8d1a77f2017-12-20 12:35:19 -0500867 if (!block) {
868 NL_SET_ERR_MSG(extack, "Memory allocation for block failed");
Jiri Pirko48617382018-01-17 11:46:46 +0100869 return ERR_PTR(-ENOMEM);
Alexander Aring8d1a77f2017-12-20 12:35:19 -0500870 }
Vlad Buslovc266f642019-02-11 10:55:32 +0200871 mutex_init(&block->lock);
John Hurley59eb87c2019-11-02 14:17:47 +0000872 mutex_init(&block->proto_destroy_lock);
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300873 init_rwsem(&block->cb_lock);
Pablo Neira Ayuso14bfb132019-07-19 18:20:16 +0200874 flow_block_init(&block->flow_block);
Jiri Pirko5bc17012017-05-17 11:08:01 +0200875 INIT_LIST_HEAD(&block->chain_list);
Jiri Pirkof36fe1c2018-01-17 11:46:48 +0100876 INIT_LIST_HEAD(&block->owner_list);
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200877 INIT_LIST_HEAD(&block->chain0.filter_chain_list);
Jiri Pirkoacb67442017-10-19 15:50:31 +0200878
Vlad Buslovcfebd7e2018-09-24 19:22:54 +0300879 refcount_set(&block->refcnt, 1);
Jiri Pirko48617382018-01-17 11:46:46 +0100880 block->net = net;
Jiri Pirkobb047dd2018-02-13 12:00:16 +0100881 block->index = block_index;
882
883 /* Don't store q pointer for blocks which are shared */
884 if (!tcf_block_shared(block))
885 block->q = q;
Jiri Pirko48617382018-01-17 11:46:46 +0100886 return block;
Jiri Pirko48617382018-01-17 11:46:46 +0100887}
888
889static struct tcf_block *tcf_block_lookup(struct net *net, u32 block_index)
890{
891 struct tcf_net *tn = net_generic(net, tcf_net_id);
892
Matthew Wilcox322d8842017-11-28 10:01:24 -0500893 return idr_find(&tn->idr, block_index);
Jiri Pirko48617382018-01-17 11:46:46 +0100894}
895
Vlad Buslov0607e432018-09-24 19:22:57 +0300896static struct tcf_block *tcf_block_refcnt_get(struct net *net, u32 block_index)
897{
898 struct tcf_block *block;
899
900 rcu_read_lock();
901 block = tcf_block_lookup(net, block_index);
902 if (block && !refcount_inc_not_zero(&block->refcnt))
903 block = NULL;
904 rcu_read_unlock();
905
906 return block;
907}
908
Vlad Buslovbbf73832019-02-11 10:55:36 +0200909static struct tcf_chain *
910__tcf_get_next_chain(struct tcf_block *block, struct tcf_chain *chain)
911{
912 mutex_lock(&block->lock);
913 if (chain)
914 chain = list_is_last(&chain->list, &block->chain_list) ?
915 NULL : list_next_entry(chain, list);
916 else
917 chain = list_first_entry_or_null(&block->chain_list,
918 struct tcf_chain, list);
919
920 /* skip all action-only chains */
921 while (chain && tcf_chain_held_by_acts_only(chain))
922 chain = list_is_last(&chain->list, &block->chain_list) ?
923 NULL : list_next_entry(chain, list);
924
925 if (chain)
926 tcf_chain_hold(chain);
927 mutex_unlock(&block->lock);
928
929 return chain;
930}
931
932/* Function to be used by all clients that want to iterate over all chains on
933 * block. It properly obtains block->lock and takes reference to chain before
934 * returning it. Users of this function must be tolerant to concurrent chain
935 * insertion/deletion or ensure that no concurrent chain modification is
936 * possible. Note that all netlink dump callbacks cannot guarantee to provide
937 * consistent dump because rtnl lock is released each time skb is filled with
938 * data and sent to user-space.
939 */
940
941struct tcf_chain *
942tcf_get_next_chain(struct tcf_block *block, struct tcf_chain *chain)
943{
944 struct tcf_chain *chain_next = __tcf_get_next_chain(block, chain);
945
946 if (chain)
947 tcf_chain_put(chain);
948
949 return chain_next;
950}
951EXPORT_SYMBOL(tcf_get_next_chain);
952
Vlad Buslovfe2923a2019-02-11 10:55:40 +0200953static struct tcf_proto *
954__tcf_get_next_proto(struct tcf_chain *chain, struct tcf_proto *tp)
955{
Vlad Buslov8b646782019-02-11 10:55:41 +0200956 u32 prio = 0;
957
Vlad Buslovfe2923a2019-02-11 10:55:40 +0200958 ASSERT_RTNL();
959 mutex_lock(&chain->filter_chain_lock);
960
Vlad Buslov8b646782019-02-11 10:55:41 +0200961 if (!tp) {
Vlad Buslovfe2923a2019-02-11 10:55:40 +0200962 tp = tcf_chain_dereference(chain->filter_chain, chain);
Vlad Buslov8b646782019-02-11 10:55:41 +0200963 } else if (tcf_proto_is_deleting(tp)) {
964 /* 'deleting' flag is set and chain->filter_chain_lock was
965 * unlocked, which means next pointer could be invalid. Restart
966 * search.
967 */
968 prio = tp->prio + 1;
969 tp = tcf_chain_dereference(chain->filter_chain, chain);
970
971 for (; tp; tp = tcf_chain_dereference(tp->next, chain))
972 if (!tp->deleting && tp->prio >= prio)
973 break;
974 } else {
Vlad Buslovfe2923a2019-02-11 10:55:40 +0200975 tp = tcf_chain_dereference(tp->next, chain);
Vlad Buslov8b646782019-02-11 10:55:41 +0200976 }
Vlad Buslovfe2923a2019-02-11 10:55:40 +0200977
978 if (tp)
979 tcf_proto_get(tp);
980
981 mutex_unlock(&chain->filter_chain_lock);
982
983 return tp;
984}
985
986/* Function to be used by all clients that want to iterate over all tp's on
987 * chain. Users of this function must be tolerant to concurrent tp
988 * insertion/deletion or ensure that no concurrent chain modification is
989 * possible. Note that all netlink dump callbacks cannot guarantee to provide
990 * consistent dump because rtnl lock is released each time skb is filled with
991 * data and sent to user-space.
992 */
993
994struct tcf_proto *
Vlad Buslov0fca55e2020-11-27 17:12:05 +0200995tcf_get_next_proto(struct tcf_chain *chain, struct tcf_proto *tp)
Vlad Buslovfe2923a2019-02-11 10:55:40 +0200996{
997 struct tcf_proto *tp_next = __tcf_get_next_proto(chain, tp);
998
999 if (tp)
Vlad Buslov0fca55e2020-11-27 17:12:05 +02001000 tcf_proto_put(tp, true, NULL);
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001001
1002 return tp_next;
1003}
1004EXPORT_SYMBOL(tcf_get_next_proto);
1005
Vlad Buslov12db03b2019-02-11 10:55:45 +02001006static void tcf_block_flush_all_chains(struct tcf_block *block, bool rtnl_held)
Vlad Buslovf0023432018-09-24 19:22:55 +03001007{
1008 struct tcf_chain *chain;
1009
Vlad Buslovbbf73832019-02-11 10:55:36 +02001010 /* Last reference to block. At this point chains cannot be added or
1011 * removed concurrently.
Vlad Buslovf0023432018-09-24 19:22:55 +03001012 */
Vlad Buslovbbf73832019-02-11 10:55:36 +02001013 for (chain = tcf_get_next_chain(block, NULL);
1014 chain;
1015 chain = tcf_get_next_chain(block, chain)) {
Vlad Buslovf0023432018-09-24 19:22:55 +03001016 tcf_chain_put_explicitly_created(chain);
Vlad Buslov12db03b2019-02-11 10:55:45 +02001017 tcf_chain_flush(chain, rtnl_held);
Vlad Buslovf0023432018-09-24 19:22:55 +03001018 }
1019}
1020
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001021/* Lookup Qdisc and increments its reference counter.
1022 * Set parent, if necessary.
1023 */
1024
1025static int __tcf_qdisc_find(struct net *net, struct Qdisc **q,
1026 u32 *parent, int ifindex, bool rtnl_held,
1027 struct netlink_ext_ack *extack)
1028{
1029 const struct Qdisc_class_ops *cops;
1030 struct net_device *dev;
1031 int err = 0;
1032
1033 if (ifindex == TCM_IFINDEX_MAGIC_BLOCK)
1034 return 0;
1035
1036 rcu_read_lock();
1037
1038 /* Find link */
1039 dev = dev_get_by_index_rcu(net, ifindex);
1040 if (!dev) {
1041 rcu_read_unlock();
1042 return -ENODEV;
1043 }
1044
1045 /* Find qdisc */
1046 if (!*parent) {
1047 *q = dev->qdisc;
1048 *parent = (*q)->handle;
1049 } else {
1050 *q = qdisc_lookup_rcu(dev, TC_H_MAJ(*parent));
1051 if (!*q) {
1052 NL_SET_ERR_MSG(extack, "Parent Qdisc doesn't exists");
1053 err = -EINVAL;
1054 goto errout_rcu;
1055 }
1056 }
1057
1058 *q = qdisc_refcount_inc_nz(*q);
1059 if (!*q) {
1060 NL_SET_ERR_MSG(extack, "Parent Qdisc doesn't exists");
1061 err = -EINVAL;
1062 goto errout_rcu;
1063 }
1064
1065 /* Is it classful? */
1066 cops = (*q)->ops->cl_ops;
1067 if (!cops) {
1068 NL_SET_ERR_MSG(extack, "Qdisc not classful");
1069 err = -EINVAL;
1070 goto errout_qdisc;
1071 }
1072
1073 if (!cops->tcf_block) {
1074 NL_SET_ERR_MSG(extack, "Class doesn't support blocks");
1075 err = -EOPNOTSUPP;
1076 goto errout_qdisc;
1077 }
1078
1079errout_rcu:
1080 /* At this point we know that qdisc is not noop_qdisc,
1081 * which means that qdisc holds a reference to net_device
1082 * and we hold a reference to qdisc, so it is safe to release
1083 * rcu read lock.
1084 */
1085 rcu_read_unlock();
1086 return err;
1087
1088errout_qdisc:
1089 rcu_read_unlock();
1090
1091 if (rtnl_held)
1092 qdisc_put(*q);
1093 else
1094 qdisc_put_unlocked(*q);
1095 *q = NULL;
1096
1097 return err;
1098}
1099
1100static int __tcf_qdisc_cl_find(struct Qdisc *q, u32 parent, unsigned long *cl,
1101 int ifindex, struct netlink_ext_ack *extack)
1102{
1103 if (ifindex == TCM_IFINDEX_MAGIC_BLOCK)
1104 return 0;
1105
1106 /* Do we search for filter, attached to class? */
1107 if (TC_H_MIN(parent)) {
1108 const struct Qdisc_class_ops *cops = q->ops->cl_ops;
1109
1110 *cl = cops->find(q, parent);
1111 if (*cl == 0) {
1112 NL_SET_ERR_MSG(extack, "Specified class doesn't exist");
1113 return -ENOENT;
1114 }
1115 }
1116
1117 return 0;
1118}
1119
1120static struct tcf_block *__tcf_block_find(struct net *net, struct Qdisc *q,
1121 unsigned long cl, int ifindex,
1122 u32 block_index,
1123 struct netlink_ext_ack *extack)
1124{
1125 struct tcf_block *block;
1126
1127 if (ifindex == TCM_IFINDEX_MAGIC_BLOCK) {
1128 block = tcf_block_refcnt_get(net, block_index);
1129 if (!block) {
1130 NL_SET_ERR_MSG(extack, "Block of given index was not found");
1131 return ERR_PTR(-EINVAL);
1132 }
1133 } else {
1134 const struct Qdisc_class_ops *cops = q->ops->cl_ops;
1135
1136 block = cops->tcf_block(q, cl, extack);
1137 if (!block)
1138 return ERR_PTR(-EINVAL);
1139
1140 if (tcf_block_shared(block)) {
1141 NL_SET_ERR_MSG(extack, "This filter block is shared. Please use the block index to manipulate the filters");
1142 return ERR_PTR(-EOPNOTSUPP);
1143 }
1144
1145 /* Always take reference to block in order to support execution
1146 * of rules update path of cls API without rtnl lock. Caller
1147 * must release block when it is finished using it. 'if' block
1148 * of this conditional obtain reference to block by calling
1149 * tcf_block_refcnt_get().
1150 */
1151 refcount_inc(&block->refcnt);
1152 }
1153
1154 return block;
1155}
1156
Vlad Buslov0607e432018-09-24 19:22:57 +03001157static void __tcf_block_put(struct tcf_block *block, struct Qdisc *q,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001158 struct tcf_block_ext_info *ei, bool rtnl_held)
Vlad Buslov0607e432018-09-24 19:22:57 +03001159{
Vlad Buslovc266f642019-02-11 10:55:32 +02001160 if (refcount_dec_and_mutex_lock(&block->refcnt, &block->lock)) {
Vlad Buslov0607e432018-09-24 19:22:57 +03001161 /* Flushing/putting all chains will cause the block to be
1162 * deallocated when last chain is freed. However, if chain_list
1163 * is empty, block has to be manually deallocated. After block
1164 * reference counter reached 0, it is no longer possible to
1165 * increment it or add new chains to block.
1166 */
1167 bool free_block = list_empty(&block->chain_list);
1168
Vlad Buslovc266f642019-02-11 10:55:32 +02001169 mutex_unlock(&block->lock);
Vlad Buslov0607e432018-09-24 19:22:57 +03001170 if (tcf_block_shared(block))
1171 tcf_block_remove(block, block->net);
Vlad Buslov0607e432018-09-24 19:22:57 +03001172
1173 if (q)
1174 tcf_block_offload_unbind(block, q, ei);
1175
1176 if (free_block)
Vlad Buslovc266f642019-02-11 10:55:32 +02001177 tcf_block_destroy(block);
Vlad Buslov0607e432018-09-24 19:22:57 +03001178 else
Vlad Buslov12db03b2019-02-11 10:55:45 +02001179 tcf_block_flush_all_chains(block, rtnl_held);
Vlad Buslov0607e432018-09-24 19:22:57 +03001180 } else if (q) {
1181 tcf_block_offload_unbind(block, q, ei);
1182 }
1183}
1184
Vlad Buslov12db03b2019-02-11 10:55:45 +02001185static void tcf_block_refcnt_put(struct tcf_block *block, bool rtnl_held)
Vlad Buslov0607e432018-09-24 19:22:57 +03001186{
Vlad Buslov12db03b2019-02-11 10:55:45 +02001187 __tcf_block_put(block, NULL, NULL, rtnl_held);
Vlad Buslov0607e432018-09-24 19:22:57 +03001188}
1189
Vlad Buslovc431f892018-05-31 09:52:53 +03001190/* Find tcf block.
1191 * Set q, parent, cl when appropriate.
1192 */
1193
1194static struct tcf_block *tcf_block_find(struct net *net, struct Qdisc **q,
1195 u32 *parent, unsigned long *cl,
1196 int ifindex, u32 block_index,
1197 struct netlink_ext_ack *extack)
1198{
1199 struct tcf_block *block;
Vlad Buslove368fdb2018-09-24 19:22:53 +03001200 int err = 0;
Vlad Buslovc431f892018-05-31 09:52:53 +03001201
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001202 ASSERT_RTNL();
Vlad Buslovc431f892018-05-31 09:52:53 +03001203
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001204 err = __tcf_qdisc_find(net, q, parent, ifindex, true, extack);
1205 if (err)
1206 goto errout;
Vlad Buslove368fdb2018-09-24 19:22:53 +03001207
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001208 err = __tcf_qdisc_cl_find(*q, *parent, cl, ifindex, extack);
1209 if (err)
1210 goto errout_qdisc;
Vlad Buslovc431f892018-05-31 09:52:53 +03001211
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001212 block = __tcf_block_find(net, *q, *cl, ifindex, block_index, extack);
Dan Carpenteraf736bf2019-02-18 12:26:32 +03001213 if (IS_ERR(block)) {
1214 err = PTR_ERR(block);
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001215 goto errout_qdisc;
Dan Carpenteraf736bf2019-02-18 12:26:32 +03001216 }
Vlad Buslovc431f892018-05-31 09:52:53 +03001217
1218 return block;
Vlad Buslove368fdb2018-09-24 19:22:53 +03001219
Vlad Buslove368fdb2018-09-24 19:22:53 +03001220errout_qdisc:
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001221 if (*q)
Vlad Buslove368fdb2018-09-24 19:22:53 +03001222 qdisc_put(*q);
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001223errout:
1224 *q = NULL;
Vlad Buslove368fdb2018-09-24 19:22:53 +03001225 return ERR_PTR(err);
1226}
1227
Vlad Buslov12db03b2019-02-11 10:55:45 +02001228static void tcf_block_release(struct Qdisc *q, struct tcf_block *block,
1229 bool rtnl_held)
Vlad Buslove368fdb2018-09-24 19:22:53 +03001230{
Vlad Buslov787ce6d2018-09-24 19:22:58 +03001231 if (!IS_ERR_OR_NULL(block))
Vlad Buslov12db03b2019-02-11 10:55:45 +02001232 tcf_block_refcnt_put(block, rtnl_held);
Vlad Buslov787ce6d2018-09-24 19:22:58 +03001233
Vlad Buslov470502d2019-02-11 10:55:48 +02001234 if (q) {
1235 if (rtnl_held)
1236 qdisc_put(q);
1237 else
1238 qdisc_put_unlocked(q);
1239 }
Vlad Buslovc431f892018-05-31 09:52:53 +03001240}
1241
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001242struct tcf_block_owner_item {
1243 struct list_head list;
1244 struct Qdisc *q;
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001245 enum flow_block_binder_type binder_type;
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001246};
1247
1248static void
1249tcf_block_owner_netif_keep_dst(struct tcf_block *block,
1250 struct Qdisc *q,
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001251 enum flow_block_binder_type binder_type)
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001252{
1253 if (block->keep_dst &&
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001254 binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS &&
1255 binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS)
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001256 netif_keep_dst(qdisc_dev(q));
1257}
1258
1259void tcf_block_netif_keep_dst(struct tcf_block *block)
1260{
1261 struct tcf_block_owner_item *item;
1262
1263 block->keep_dst = true;
1264 list_for_each_entry(item, &block->owner_list, list)
1265 tcf_block_owner_netif_keep_dst(block, item->q,
1266 item->binder_type);
1267}
1268EXPORT_SYMBOL(tcf_block_netif_keep_dst);
1269
1270static int tcf_block_owner_add(struct tcf_block *block,
1271 struct Qdisc *q,
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001272 enum flow_block_binder_type binder_type)
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001273{
1274 struct tcf_block_owner_item *item;
1275
1276 item = kmalloc(sizeof(*item), GFP_KERNEL);
1277 if (!item)
1278 return -ENOMEM;
1279 item->q = q;
1280 item->binder_type = binder_type;
1281 list_add(&item->list, &block->owner_list);
1282 return 0;
1283}
1284
1285static void tcf_block_owner_del(struct tcf_block *block,
1286 struct Qdisc *q,
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001287 enum flow_block_binder_type binder_type)
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001288{
1289 struct tcf_block_owner_item *item;
1290
1291 list_for_each_entry(item, &block->owner_list, list) {
1292 if (item->q == q && item->binder_type == binder_type) {
1293 list_del(&item->list);
1294 kfree(item);
1295 return;
1296 }
1297 }
1298 WARN_ON(1);
1299}
1300
Jiri Pirko48617382018-01-17 11:46:46 +01001301int tcf_block_get_ext(struct tcf_block **p_block, struct Qdisc *q,
1302 struct tcf_block_ext_info *ei,
1303 struct netlink_ext_ack *extack)
1304{
1305 struct net *net = qdisc_net(q);
1306 struct tcf_block *block = NULL;
Jiri Pirko48617382018-01-17 11:46:46 +01001307 int err;
1308
Vlad Buslov787ce6d2018-09-24 19:22:58 +03001309 if (ei->block_index)
Jiri Pirko48617382018-01-17 11:46:46 +01001310 /* block_index not 0 means the shared block is requested */
Vlad Buslov787ce6d2018-09-24 19:22:58 +03001311 block = tcf_block_refcnt_get(net, ei->block_index);
Jiri Pirko48617382018-01-17 11:46:46 +01001312
1313 if (!block) {
Jiri Pirkobb047dd2018-02-13 12:00:16 +01001314 block = tcf_block_create(net, q, ei->block_index, extack);
Jiri Pirko48617382018-01-17 11:46:46 +01001315 if (IS_ERR(block))
1316 return PTR_ERR(block);
Jiri Pirkobb047dd2018-02-13 12:00:16 +01001317 if (tcf_block_shared(block)) {
1318 err = tcf_block_insert(block, net, extack);
Jiri Pirko48617382018-01-17 11:46:46 +01001319 if (err)
1320 goto err_block_insert;
1321 }
1322 }
1323
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001324 err = tcf_block_owner_add(block, q, ei->binder_type);
1325 if (err)
1326 goto err_block_owner_add;
1327
1328 tcf_block_owner_netif_keep_dst(block, q, ei->binder_type);
1329
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001330 err = tcf_chain0_head_change_cb_add(block, ei, extack);
Jiri Pirkoa9b19442018-01-17 11:46:45 +01001331 if (err)
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001332 goto err_chain0_head_change_cb_add;
Jiri Pirkocaa72602018-01-17 11:46:50 +01001333
John Hurley60513bd2018-06-25 14:30:04 -07001334 err = tcf_block_offload_bind(block, q, ei, extack);
Jiri Pirkocaa72602018-01-17 11:46:50 +01001335 if (err)
1336 goto err_block_offload_bind;
1337
Jiri Pirko6529eab2017-05-17 11:07:55 +02001338 *p_block = block;
1339 return 0;
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001340
Jiri Pirkocaa72602018-01-17 11:46:50 +01001341err_block_offload_bind:
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001342 tcf_chain0_head_change_cb_del(block, ei);
1343err_chain0_head_change_cb_add:
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001344 tcf_block_owner_del(block, q, ei->binder_type);
1345err_block_owner_add:
Jiri Pirko48617382018-01-17 11:46:46 +01001346err_block_insert:
Vlad Buslov12db03b2019-02-11 10:55:45 +02001347 tcf_block_refcnt_put(block, true);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001348 return err;
Jiri Pirko6529eab2017-05-17 11:07:55 +02001349}
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001350EXPORT_SYMBOL(tcf_block_get_ext);
1351
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001352static void tcf_chain_head_change_dflt(struct tcf_proto *tp_head, void *priv)
1353{
1354 struct tcf_proto __rcu **p_filter_chain = priv;
1355
1356 rcu_assign_pointer(*p_filter_chain, tp_head);
1357}
1358
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001359int tcf_block_get(struct tcf_block **p_block,
Alexander Aring8d1a77f2017-12-20 12:35:19 -05001360 struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
1361 struct netlink_ext_ack *extack)
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001362{
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001363 struct tcf_block_ext_info ei = {
1364 .chain_head_change = tcf_chain_head_change_dflt,
1365 .chain_head_change_priv = p_filter_chain,
1366 };
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001367
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001368 WARN_ON(!p_filter_chain);
Alexander Aring8d1a77f2017-12-20 12:35:19 -05001369 return tcf_block_get_ext(p_block, q, &ei, extack);
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001370}
Jiri Pirko6529eab2017-05-17 11:07:55 +02001371EXPORT_SYMBOL(tcf_block_get);
1372
Cong Wang7aa00452017-10-26 18:24:28 -07001373/* XXX: Standalone actions are not allowed to jump to any chain, and bound
Roman Kapla60b3f52017-11-24 12:27:58 +01001374 * actions should be all removed after flushing.
Cong Wang7aa00452017-10-26 18:24:28 -07001375 */
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001376void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
David S. Millere1ea2f92017-10-30 14:10:01 +09001377 struct tcf_block_ext_info *ei)
Cong Wang7aa00452017-10-26 18:24:28 -07001378{
David S. Millerc30abd52017-12-16 22:11:55 -05001379 if (!block)
1380 return;
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001381 tcf_chain0_head_change_cb_del(block, ei);
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001382 tcf_block_owner_del(block, q, ei->binder_type);
Roman Kapla60b3f52017-11-24 12:27:58 +01001383
Vlad Buslov12db03b2019-02-11 10:55:45 +02001384 __tcf_block_put(block, q, ei, true);
Jiri Pirko6529eab2017-05-17 11:07:55 +02001385}
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001386EXPORT_SYMBOL(tcf_block_put_ext);
1387
1388void tcf_block_put(struct tcf_block *block)
1389{
1390 struct tcf_block_ext_info ei = {0, };
1391
Jiri Pirko4853f122017-12-21 13:13:59 +01001392 if (!block)
1393 return;
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001394 tcf_block_put_ext(block, block->q, &ei);
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001395}
David S. Millere1ea2f92017-10-30 14:10:01 +09001396
Jiri Pirko6529eab2017-05-17 11:07:55 +02001397EXPORT_SYMBOL(tcf_block_put);
Jiri Pirkocf1facd2017-02-09 14:38:56 +01001398
John Hurley32636742018-06-25 14:30:10 -07001399static int
Pablo Neira Ayusoa7323312019-07-19 18:20:15 +02001400tcf_block_playback_offloads(struct tcf_block *block, flow_setup_cb_t *cb,
John Hurley32636742018-06-25 14:30:10 -07001401 void *cb_priv, bool add, bool offload_in_use,
1402 struct netlink_ext_ack *extack)
1403{
Vlad Buslovbbf73832019-02-11 10:55:36 +02001404 struct tcf_chain *chain, *chain_prev;
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001405 struct tcf_proto *tp, *tp_prev;
John Hurley32636742018-06-25 14:30:10 -07001406 int err;
1407
Vlad Buslov4f8116c2019-08-26 16:44:57 +03001408 lockdep_assert_held(&block->cb_lock);
1409
Vlad Buslovbbf73832019-02-11 10:55:36 +02001410 for (chain = __tcf_get_next_chain(block, NULL);
1411 chain;
1412 chain_prev = chain,
1413 chain = __tcf_get_next_chain(block, chain),
1414 tcf_chain_put(chain_prev)) {
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001415 for (tp = __tcf_get_next_proto(chain, NULL); tp;
1416 tp_prev = tp,
1417 tp = __tcf_get_next_proto(chain, tp),
Vlad Buslov12db03b2019-02-11 10:55:45 +02001418 tcf_proto_put(tp_prev, true, NULL)) {
John Hurley32636742018-06-25 14:30:10 -07001419 if (tp->ops->reoffload) {
1420 err = tp->ops->reoffload(tp, add, cb, cb_priv,
1421 extack);
1422 if (err && add)
1423 goto err_playback_remove;
1424 } else if (add && offload_in_use) {
1425 err = -EOPNOTSUPP;
1426 NL_SET_ERR_MSG(extack, "Filter HW offload failed - classifier without re-offloading support");
1427 goto err_playback_remove;
1428 }
1429 }
1430 }
1431
1432 return 0;
1433
1434err_playback_remove:
Vlad Buslov12db03b2019-02-11 10:55:45 +02001435 tcf_proto_put(tp, true, NULL);
Vlad Buslovbbf73832019-02-11 10:55:36 +02001436 tcf_chain_put(chain);
John Hurley32636742018-06-25 14:30:10 -07001437 tcf_block_playback_offloads(block, cb, cb_priv, false, offload_in_use,
1438 extack);
1439 return err;
1440}
1441
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001442static int tcf_block_bind(struct tcf_block *block,
1443 struct flow_block_offload *bo)
1444{
1445 struct flow_block_cb *block_cb, *next;
1446 int err, i = 0;
1447
Vlad Buslov4f8116c2019-08-26 16:44:57 +03001448 lockdep_assert_held(&block->cb_lock);
1449
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001450 list_for_each_entry(block_cb, &bo->cb_list, list) {
1451 err = tcf_block_playback_offloads(block, block_cb->cb,
1452 block_cb->cb_priv, true,
1453 tcf_block_offload_in_use(block),
1454 bo->extack);
1455 if (err)
1456 goto err_unroll;
Vlad Buslovc9f14472019-08-26 16:45:01 +03001457 if (!bo->unlocked_driver_cb)
1458 block->lockeddevcnt++;
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001459
1460 i++;
1461 }
Pablo Neira Ayuso14bfb132019-07-19 18:20:16 +02001462 list_splice(&bo->cb_list, &block->flow_block.cb_list);
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001463
1464 return 0;
1465
1466err_unroll:
1467 list_for_each_entry_safe(block_cb, next, &bo->cb_list, list) {
1468 if (i-- > 0) {
1469 list_del(&block_cb->list);
1470 tcf_block_playback_offloads(block, block_cb->cb,
1471 block_cb->cb_priv, false,
1472 tcf_block_offload_in_use(block),
1473 NULL);
Vlad Buslovc9f14472019-08-26 16:45:01 +03001474 if (!bo->unlocked_driver_cb)
1475 block->lockeddevcnt--;
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001476 }
1477 flow_block_cb_free(block_cb);
1478 }
1479
1480 return err;
1481}
1482
1483static void tcf_block_unbind(struct tcf_block *block,
1484 struct flow_block_offload *bo)
1485{
1486 struct flow_block_cb *block_cb, *next;
1487
Vlad Buslov4f8116c2019-08-26 16:44:57 +03001488 lockdep_assert_held(&block->cb_lock);
1489
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001490 list_for_each_entry_safe(block_cb, next, &bo->cb_list, list) {
1491 tcf_block_playback_offloads(block, block_cb->cb,
1492 block_cb->cb_priv, false,
1493 tcf_block_offload_in_use(block),
1494 NULL);
1495 list_del(&block_cb->list);
1496 flow_block_cb_free(block_cb);
Vlad Buslovc9f14472019-08-26 16:45:01 +03001497 if (!bo->unlocked_driver_cb)
1498 block->lockeddevcnt--;
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001499 }
1500}
1501
1502static int tcf_block_setup(struct tcf_block *block,
1503 struct flow_block_offload *bo)
1504{
1505 int err;
1506
1507 switch (bo->command) {
1508 case FLOW_BLOCK_BIND:
1509 err = tcf_block_bind(block, bo);
1510 break;
1511 case FLOW_BLOCK_UNBIND:
1512 err = 0;
1513 tcf_block_unbind(block, bo);
1514 break;
1515 default:
1516 WARN_ON_ONCE(1);
1517 err = -EOPNOTSUPP;
1518 }
1519
1520 return err;
1521}
1522
Jiri Pirko87d83092017-05-17 11:07:54 +02001523/* Main classifier routine: scans classifier chain attached
1524 * to this qdisc, (optionally) tests for protocol and asks
1525 * specific classifiers.
1526 */
Paul Blakey9410c942020-02-16 12:01:21 +02001527static inline int __tcf_classify(struct sk_buff *skb,
1528 const struct tcf_proto *tp,
Paul Blakeyaf699622020-02-16 12:01:24 +02001529 const struct tcf_proto *orig_tp,
Paul Blakey9410c942020-02-16 12:01:21 +02001530 struct tcf_result *res,
1531 bool compat_mode,
1532 u32 *last_executed_chain)
Jiri Pirko87d83092017-05-17 11:07:54 +02001533{
Jiri Pirko87d83092017-05-17 11:07:54 +02001534#ifdef CONFIG_NET_CLS_ACT
Davide Caratti05ff8432021-05-19 15:17:21 +02001535 const int max_reclassify_loop = 16;
Jiri Pirkoee538dc2017-05-23 09:11:59 +02001536 const struct tcf_proto *first_tp;
Jiri Pirko87d83092017-05-17 11:07:54 +02001537 int limit = 0;
1538
1539reclassify:
1540#endif
1541 for (; tp; tp = rcu_dereference_bh(tp->next)) {
Toke Høiland-Jørgensend7bf2eb2020-07-03 22:26:43 +02001542 __be16 protocol = skb_protocol(skb, false);
Jiri Pirko87d83092017-05-17 11:07:54 +02001543 int err;
1544
1545 if (tp->protocol != protocol &&
1546 tp->protocol != htons(ETH_P_ALL))
1547 continue;
1548
1549 err = tp->classify(skb, tp, res);
1550#ifdef CONFIG_NET_CLS_ACT
Jiri Pirkodb505142017-05-17 11:08:03 +02001551 if (unlikely(err == TC_ACT_RECLASSIFY && !compat_mode)) {
Jiri Pirkoee538dc2017-05-23 09:11:59 +02001552 first_tp = orig_tp;
Paul Blakey9410c942020-02-16 12:01:21 +02001553 *last_executed_chain = first_tp->chain->index;
Jiri Pirko87d83092017-05-17 11:07:54 +02001554 goto reset;
Jiri Pirkodb505142017-05-17 11:08:03 +02001555 } else if (unlikely(TC_ACT_EXT_CMP(err, TC_ACT_GOTO_CHAIN))) {
Jiri Pirkoee538dc2017-05-23 09:11:59 +02001556 first_tp = res->goto_tp;
Paul Blakey9410c942020-02-16 12:01:21 +02001557 *last_executed_chain = err & TC_ACT_EXT_VAL_MASK;
Jiri Pirkodb505142017-05-17 11:08:03 +02001558 goto reset;
1559 }
Jiri Pirko87d83092017-05-17 11:07:54 +02001560#endif
1561 if (err >= 0)
1562 return err;
1563 }
1564
1565 return TC_ACT_UNSPEC; /* signal: continue lookup */
1566#ifdef CONFIG_NET_CLS_ACT
1567reset:
1568 if (unlikely(limit++ >= max_reclassify_loop)) {
Jiri Pirko9d3aaff2018-01-17 11:46:47 +01001569 net_notice_ratelimited("%u: reclassify loop, rule prio %u, protocol %02x\n",
1570 tp->chain->block->index,
1571 tp->prio & 0xffff,
Jiri Pirko87d83092017-05-17 11:07:54 +02001572 ntohs(tp->protocol));
1573 return TC_ACT_SHOT;
1574 }
1575
Jiri Pirkoee538dc2017-05-23 09:11:59 +02001576 tp = first_tp;
Jiri Pirko87d83092017-05-17 11:07:54 +02001577 goto reclassify;
1578#endif
1579}
Paul Blakey9410c942020-02-16 12:01:21 +02001580
Davide Caratti3aa26052021-07-28 20:08:00 +02001581int tcf_classify(struct sk_buff *skb,
1582 const struct tcf_block *block,
1583 const struct tcf_proto *tp,
Paul Blakey9410c942020-02-16 12:01:21 +02001584 struct tcf_result *res, bool compat_mode)
1585{
Paul Blakey9410c942020-02-16 12:01:21 +02001586#if !IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
1587 u32 last_executed_chain = 0;
1588
Paul Blakeyaf699622020-02-16 12:01:24 +02001589 return __tcf_classify(skb, tp, tp, res, compat_mode,
Paul Blakey9410c942020-02-16 12:01:21 +02001590 &last_executed_chain);
1591#else
1592 u32 last_executed_chain = tp ? tp->chain->index : 0;
Paul Blakeyaf699622020-02-16 12:01:24 +02001593 const struct tcf_proto *orig_tp = tp;
Paul Blakey9410c942020-02-16 12:01:21 +02001594 struct tc_skb_ext *ext;
1595 int ret;
1596
Davide Caratti3aa26052021-07-28 20:08:00 +02001597 if (block) {
1598 ext = skb_ext_find(skb, TC_SKB_EXT);
Paul Blakeyaf699622020-02-16 12:01:24 +02001599
Davide Caratti3aa26052021-07-28 20:08:00 +02001600 if (ext && ext->chain) {
1601 struct tcf_chain *fchain;
Paul Blakeyaf699622020-02-16 12:01:24 +02001602
Davide Caratti3aa26052021-07-28 20:08:00 +02001603 fchain = tcf_chain_lookup_rcu(block, ext->chain);
1604 if (!fchain)
1605 return TC_ACT_SHOT;
Paul Blakeyaf699622020-02-16 12:01:24 +02001606
Davide Caratti3aa26052021-07-28 20:08:00 +02001607 /* Consume, so cloned/redirect skbs won't inherit ext */
1608 skb_ext_del(skb, TC_SKB_EXT);
Paul Blakeyaf699622020-02-16 12:01:24 +02001609
Davide Caratti3aa26052021-07-28 20:08:00 +02001610 tp = rcu_dereference_bh(fchain->filter_chain);
1611 last_executed_chain = fchain->index;
1612 }
Paul Blakeyaf699622020-02-16 12:01:24 +02001613 }
1614
1615 ret = __tcf_classify(skb, tp, orig_tp, res, compat_mode,
1616 &last_executed_chain);
Paul Blakey9410c942020-02-16 12:01:21 +02001617
1618 /* If we missed on some chain */
1619 if (ret == TC_ACT_UNSPEC && last_executed_chain) {
Paul Blakeyec624fe2021-12-14 19:24:33 +02001620 struct tc_skb_cb *cb = tc_skb_cb(skb);
1621
Vlad Buslov9453d452021-05-25 16:21:52 +03001622 ext = tc_skb_ext_alloc(skb);
Paul Blakey9410c942020-02-16 12:01:21 +02001623 if (WARN_ON_ONCE(!ext))
1624 return TC_ACT_SHOT;
1625 ext->chain = last_executed_chain;
Paul Blakeyec624fe2021-12-14 19:24:33 +02001626 ext->mru = cb->mru;
1627 ext->post_ct = cb->post_ct;
Paul Blakey6f022c22022-01-06 17:38:04 +02001628 ext->post_ct_snat = cb->post_ct_snat;
1629 ext->post_ct_dnat = cb->post_ct_dnat;
Paul Blakey635d4482021-12-14 19:24:35 +02001630 ext->zone = cb->zone;
Paul Blakey9410c942020-02-16 12:01:21 +02001631 }
1632
1633 return ret;
1634#endif
1635}
Davide Caratti3aa26052021-07-28 20:08:00 +02001636EXPORT_SYMBOL(tcf_classify);
Paul Blakey9410c942020-02-16 12:01:21 +02001637
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001638struct tcf_chain_info {
1639 struct tcf_proto __rcu **pprev;
1640 struct tcf_proto __rcu *next;
1641};
1642
Vlad Busloved76f5e2019-02-11 10:55:38 +02001643static struct tcf_proto *tcf_chain_tp_prev(struct tcf_chain *chain,
1644 struct tcf_chain_info *chain_info)
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001645{
Vlad Busloved76f5e2019-02-11 10:55:38 +02001646 return tcf_chain_dereference(*chain_info->pprev, chain);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001647}
1648
Vlad Buslov726d06122019-02-11 10:55:42 +02001649static int tcf_chain_tp_insert(struct tcf_chain *chain,
1650 struct tcf_chain_info *chain_info,
1651 struct tcf_proto *tp)
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001652{
Vlad Buslov726d06122019-02-11 10:55:42 +02001653 if (chain->flushing)
1654 return -EAGAIN;
1655
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001656 if (*chain_info->pprev == chain->filter_chain)
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001657 tcf_chain0_head_change(chain, tp);
Vlad Buslov4dbfa762019-02-11 10:55:39 +02001658 tcf_proto_get(tp);
Vlad Busloved76f5e2019-02-11 10:55:38 +02001659 RCU_INIT_POINTER(tp->next, tcf_chain_tp_prev(chain, chain_info));
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001660 rcu_assign_pointer(*chain_info->pprev, tp);
Vlad Buslov726d06122019-02-11 10:55:42 +02001661
1662 return 0;
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001663}
1664
1665static void tcf_chain_tp_remove(struct tcf_chain *chain,
1666 struct tcf_chain_info *chain_info,
1667 struct tcf_proto *tp)
1668{
Vlad Busloved76f5e2019-02-11 10:55:38 +02001669 struct tcf_proto *next = tcf_chain_dereference(chain_info->next, chain);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001670
Vlad Buslov8b646782019-02-11 10:55:41 +02001671 tcf_proto_mark_delete(tp);
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001672 if (tp == chain->filter_chain)
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001673 tcf_chain0_head_change(chain, next);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001674 RCU_INIT_POINTER(*chain_info->pprev, next);
1675}
1676
1677static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain,
1678 struct tcf_chain_info *chain_info,
1679 u32 protocol, u32 prio,
Vlad Buslov8b646782019-02-11 10:55:41 +02001680 bool prio_allocate);
1681
1682/* Try to insert new proto.
1683 * If proto with specified priority already exists, free new proto
1684 * and return existing one.
1685 */
1686
1687static struct tcf_proto *tcf_chain_tp_insert_unique(struct tcf_chain *chain,
1688 struct tcf_proto *tp_new,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001689 u32 protocol, u32 prio,
1690 bool rtnl_held)
Vlad Buslov8b646782019-02-11 10:55:41 +02001691{
1692 struct tcf_chain_info chain_info;
1693 struct tcf_proto *tp;
Vlad Buslov726d06122019-02-11 10:55:42 +02001694 int err = 0;
Vlad Buslov8b646782019-02-11 10:55:41 +02001695
1696 mutex_lock(&chain->filter_chain_lock);
1697
John Hurley59eb87c2019-11-02 14:17:47 +00001698 if (tcf_proto_exists_destroying(chain, tp_new)) {
1699 mutex_unlock(&chain->filter_chain_lock);
1700 tcf_proto_destroy(tp_new, rtnl_held, false, NULL);
1701 return ERR_PTR(-EAGAIN);
1702 }
1703
Vlad Buslov8b646782019-02-11 10:55:41 +02001704 tp = tcf_chain_tp_find(chain, &chain_info,
1705 protocol, prio, false);
1706 if (!tp)
Vlad Buslov726d06122019-02-11 10:55:42 +02001707 err = tcf_chain_tp_insert(chain, &chain_info, tp_new);
Vlad Buslov8b646782019-02-11 10:55:41 +02001708 mutex_unlock(&chain->filter_chain_lock);
1709
1710 if (tp) {
John Hurley59eb87c2019-11-02 14:17:47 +00001711 tcf_proto_destroy(tp_new, rtnl_held, false, NULL);
Vlad Buslov8b646782019-02-11 10:55:41 +02001712 tp_new = tp;
Vlad Buslov726d06122019-02-11 10:55:42 +02001713 } else if (err) {
John Hurley59eb87c2019-11-02 14:17:47 +00001714 tcf_proto_destroy(tp_new, rtnl_held, false, NULL);
Vlad Buslov726d06122019-02-11 10:55:42 +02001715 tp_new = ERR_PTR(err);
Vlad Buslov8b646782019-02-11 10:55:41 +02001716 }
1717
1718 return tp_new;
1719}
1720
1721static void tcf_chain_tp_delete_empty(struct tcf_chain *chain,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001722 struct tcf_proto *tp, bool rtnl_held,
Vlad Buslov8b646782019-02-11 10:55:41 +02001723 struct netlink_ext_ack *extack)
1724{
1725 struct tcf_chain_info chain_info;
1726 struct tcf_proto *tp_iter;
1727 struct tcf_proto **pprev;
1728 struct tcf_proto *next;
1729
1730 mutex_lock(&chain->filter_chain_lock);
1731
1732 /* Atomically find and remove tp from chain. */
1733 for (pprev = &chain->filter_chain;
1734 (tp_iter = tcf_chain_dereference(*pprev, chain));
1735 pprev = &tp_iter->next) {
1736 if (tp_iter == tp) {
1737 chain_info.pprev = pprev;
1738 chain_info.next = tp_iter->next;
1739 WARN_ON(tp_iter->deleting);
1740 break;
1741 }
1742 }
1743 /* Verify that tp still exists and no new filters were inserted
1744 * concurrently.
1745 * Mark tp for deletion if it is empty.
1746 */
Davide Carattia5b72a02019-12-28 16:36:58 +01001747 if (!tp_iter || !tcf_proto_check_delete(tp)) {
Vlad Buslov8b646782019-02-11 10:55:41 +02001748 mutex_unlock(&chain->filter_chain_lock);
1749 return;
1750 }
1751
John Hurley59eb87c2019-11-02 14:17:47 +00001752 tcf_proto_signal_destroying(chain, tp);
Vlad Buslov8b646782019-02-11 10:55:41 +02001753 next = tcf_chain_dereference(chain_info.next, chain);
1754 if (tp == chain->filter_chain)
1755 tcf_chain0_head_change(chain, next);
1756 RCU_INIT_POINTER(*chain_info.pprev, next);
1757 mutex_unlock(&chain->filter_chain_lock);
1758
Vlad Buslov12db03b2019-02-11 10:55:45 +02001759 tcf_proto_put(tp, rtnl_held, extack);
Vlad Buslov8b646782019-02-11 10:55:41 +02001760}
1761
1762static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain,
1763 struct tcf_chain_info *chain_info,
1764 u32 protocol, u32 prio,
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001765 bool prio_allocate)
1766{
1767 struct tcf_proto **pprev;
1768 struct tcf_proto *tp;
1769
1770 /* Check the chain for existence of proto-tcf with this priority */
1771 for (pprev = &chain->filter_chain;
Vlad Busloved76f5e2019-02-11 10:55:38 +02001772 (tp = tcf_chain_dereference(*pprev, chain));
1773 pprev = &tp->next) {
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001774 if (tp->prio >= prio) {
1775 if (tp->prio == prio) {
1776 if (prio_allocate ||
1777 (tp->protocol != protocol && protocol))
1778 return ERR_PTR(-EINVAL);
1779 } else {
1780 tp = NULL;
1781 }
1782 break;
1783 }
1784 }
1785 chain_info->pprev = pprev;
Vlad Buslov4dbfa762019-02-11 10:55:39 +02001786 if (tp) {
1787 chain_info->next = tp->next;
1788 tcf_proto_get(tp);
1789 } else {
1790 chain_info->next = NULL;
1791 }
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001792 return tp;
1793}
1794
WANG Cong71203712017-08-07 15:26:50 -07001795static int tcf_fill_node(struct net *net, struct sk_buff *skb,
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001796 struct tcf_proto *tp, struct tcf_block *block,
1797 struct Qdisc *q, u32 parent, void *fh,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001798 u32 portid, u32 seq, u16 flags, int event,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03001799 bool terse_dump, bool rtnl_held)
WANG Cong71203712017-08-07 15:26:50 -07001800{
1801 struct tcmsg *tcm;
1802 struct nlmsghdr *nlh;
1803 unsigned char *b = skb_tail_pointer(skb);
1804
1805 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
1806 if (!nlh)
1807 goto out_nlmsg_trim;
1808 tcm = nlmsg_data(nlh);
1809 tcm->tcm_family = AF_UNSPEC;
1810 tcm->tcm__pad1 = 0;
1811 tcm->tcm__pad2 = 0;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001812 if (q) {
1813 tcm->tcm_ifindex = qdisc_dev(q)->ifindex;
1814 tcm->tcm_parent = parent;
1815 } else {
1816 tcm->tcm_ifindex = TCM_IFINDEX_MAGIC_BLOCK;
1817 tcm->tcm_block_index = block->index;
1818 }
WANG Cong71203712017-08-07 15:26:50 -07001819 tcm->tcm_info = TC_H_MAKE(tp->prio, tp->protocol);
1820 if (nla_put_string(skb, TCA_KIND, tp->ops->kind))
1821 goto nla_put_failure;
1822 if (nla_put_u32(skb, TCA_CHAIN, tp->chain->index))
1823 goto nla_put_failure;
1824 if (!fh) {
1825 tcm->tcm_handle = 0;
Vlad Buslovf8ab1802020-05-15 14:40:11 +03001826 } else if (terse_dump) {
1827 if (tp->ops->terse_dump) {
1828 if (tp->ops->terse_dump(net, tp, fh, skb, tcm,
1829 rtnl_held) < 0)
1830 goto nla_put_failure;
1831 } else {
1832 goto cls_op_not_supp;
1833 }
WANG Cong71203712017-08-07 15:26:50 -07001834 } else {
Vlad Buslov12db03b2019-02-11 10:55:45 +02001835 if (tp->ops->dump &&
1836 tp->ops->dump(net, tp, fh, skb, tcm, rtnl_held) < 0)
WANG Cong71203712017-08-07 15:26:50 -07001837 goto nla_put_failure;
1838 }
1839 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1840 return skb->len;
1841
1842out_nlmsg_trim:
1843nla_put_failure:
Vlad Buslovf8ab1802020-05-15 14:40:11 +03001844cls_op_not_supp:
WANG Cong71203712017-08-07 15:26:50 -07001845 nlmsg_trim(skb, b);
1846 return -1;
1847}
1848
1849static int tfilter_notify(struct net *net, struct sk_buff *oskb,
1850 struct nlmsghdr *n, struct tcf_proto *tp,
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001851 struct tcf_block *block, struct Qdisc *q,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001852 u32 parent, void *fh, int event, bool unicast,
1853 bool rtnl_held)
WANG Cong71203712017-08-07 15:26:50 -07001854{
1855 struct sk_buff *skb;
1856 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001857 int err = 0;
WANG Cong71203712017-08-07 15:26:50 -07001858
1859 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1860 if (!skb)
1861 return -ENOBUFS;
1862
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001863 if (tcf_fill_node(net, skb, tp, block, q, parent, fh, portid,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001864 n->nlmsg_seq, n->nlmsg_flags, event,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03001865 false, rtnl_held) <= 0) {
WANG Cong71203712017-08-07 15:26:50 -07001866 kfree_skb(skb);
1867 return -EINVAL;
1868 }
1869
1870 if (unicast)
Yajun Dengf79a3bc2021-07-15 20:24:24 +08001871 err = rtnl_unicast(skb, net, portid);
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001872 else
1873 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
1874 n->nlmsg_flags & NLM_F_ECHO);
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001875 return err;
WANG Cong71203712017-08-07 15:26:50 -07001876}
1877
1878static int tfilter_del_notify(struct net *net, struct sk_buff *oskb,
1879 struct nlmsghdr *n, struct tcf_proto *tp,
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001880 struct tcf_block *block, struct Qdisc *q,
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001881 u32 parent, void *fh, bool unicast, bool *last,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001882 bool rtnl_held, struct netlink_ext_ack *extack)
WANG Cong71203712017-08-07 15:26:50 -07001883{
1884 struct sk_buff *skb;
1885 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
1886 int err;
1887
1888 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1889 if (!skb)
1890 return -ENOBUFS;
1891
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001892 if (tcf_fill_node(net, skb, tp, block, q, parent, fh, portid,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001893 n->nlmsg_seq, n->nlmsg_flags, RTM_DELTFILTER,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03001894 false, rtnl_held) <= 0) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001895 NL_SET_ERR_MSG(extack, "Failed to build del event notification");
WANG Cong71203712017-08-07 15:26:50 -07001896 kfree_skb(skb);
1897 return -EINVAL;
1898 }
1899
Vlad Buslov12db03b2019-02-11 10:55:45 +02001900 err = tp->ops->delete(tp, fh, last, rtnl_held, extack);
WANG Cong71203712017-08-07 15:26:50 -07001901 if (err) {
1902 kfree_skb(skb);
1903 return err;
1904 }
1905
1906 if (unicast)
Yajun Dengf79a3bc2021-07-15 20:24:24 +08001907 err = rtnl_unicast(skb, net, portid);
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001908 else
1909 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
1910 n->nlmsg_flags & NLM_F_ECHO);
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001911 if (err < 0)
1912 NL_SET_ERR_MSG(extack, "Failed to send filter delete notification");
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001913
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001914 return err;
WANG Cong71203712017-08-07 15:26:50 -07001915}
1916
1917static void tfilter_notify_chain(struct net *net, struct sk_buff *oskb,
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001918 struct tcf_block *block, struct Qdisc *q,
1919 u32 parent, struct nlmsghdr *n,
Vlad Buslov0fca55e2020-11-27 17:12:05 +02001920 struct tcf_chain *chain, int event)
WANG Cong71203712017-08-07 15:26:50 -07001921{
1922 struct tcf_proto *tp;
1923
Vlad Buslov0fca55e2020-11-27 17:12:05 +02001924 for (tp = tcf_get_next_proto(chain, NULL);
1925 tp; tp = tcf_get_next_proto(chain, tp))
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001926 tfilter_notify(net, oskb, n, tp, block,
Vlad Buslov0fca55e2020-11-27 17:12:05 +02001927 q, parent, NULL, event, false, true);
WANG Cong71203712017-08-07 15:26:50 -07001928}
1929
Vlad Buslov7d5509f2019-02-11 10:55:44 +02001930static void tfilter_put(struct tcf_proto *tp, void *fh)
1931{
1932 if (tp->ops->put && fh)
1933 tp->ops->put(tp, fh);
1934}
1935
Vlad Buslovc431f892018-05-31 09:52:53 +03001936static int tc_new_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
David Ahernc21ef3e2017-04-16 09:48:24 -07001937 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001939 struct net *net = sock_net(skb->sk);
Patrick McHardyadd93b62008-01-22 22:11:33 -08001940 struct nlattr *tca[TCA_MAX + 1];
Cong Wang6f96c3c2019-10-07 13:26:28 -07001941 char name[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 struct tcmsg *t;
1943 u32 protocol;
1944 u32 prio;
Jiri Pirko9d36d9e2017-05-17 11:07:57 +02001945 bool prio_allocate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 u32 parent;
Jiri Pirko5bc17012017-05-17 11:08:01 +02001947 u32 chain_index;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001948 struct Qdisc *q = NULL;
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001949 struct tcf_chain_info chain_info;
Jiri Pirko5bc17012017-05-17 11:08:01 +02001950 struct tcf_chain *chain = NULL;
Jiri Pirko6529eab2017-05-17 11:07:55 +02001951 struct tcf_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 struct tcf_proto *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 unsigned long cl;
WANG Cong8113c092017-08-04 21:31:43 -07001954 void *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 int err;
Daniel Borkmann628185c2016-12-21 18:04:11 +01001956 int tp_created;
Vlad Buslov470502d2019-02-11 10:55:48 +02001957 bool rtnl_held = false;
Mark Blocha5397d62021-08-10 03:43:05 +00001958 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Vlad Buslovc431f892018-05-31 09:52:53 +03001960 if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +00001961 return -EPERM;
Hong zhi guode179c82013-03-25 17:36:33 +00001962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963replay:
Daniel Borkmann628185c2016-12-21 18:04:11 +01001964 tp_created = 0;
1965
Johannes Berg8cb08172019-04-26 14:07:28 +02001966 err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
1967 rtm_tca_policy, extack);
Hong zhi guode179c82013-03-25 17:36:33 +00001968 if (err < 0)
1969 return err;
1970
David S. Miller942b8162012-06-26 21:48:50 -07001971 t = nlmsg_data(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 protocol = TC_H_MIN(t->tcm_info);
1973 prio = TC_H_MAJ(t->tcm_info);
Jiri Pirko9d36d9e2017-05-17 11:07:57 +02001974 prio_allocate = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 parent = t->tcm_parent;
Vlad Buslov4dbfa762019-02-11 10:55:39 +02001976 tp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 cl = 0;
Vlad Buslov470502d2019-02-11 10:55:48 +02001978 block = NULL;
Mark Blocha5397d62021-08-10 03:43:05 +00001979 flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
1981 if (prio == 0) {
Vlad Buslovc431f892018-05-31 09:52:53 +03001982 /* If no priority is provided by the user,
1983 * we allocate one.
1984 */
1985 if (n->nlmsg_flags & NLM_F_CREATE) {
1986 prio = TC_H_MAKE(0x80000000U, 0U);
1987 prio_allocate = true;
1988 } else {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001989 NL_SET_ERR_MSG(extack, "Invalid filter command with priority of zero");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 return -ENOENT;
Daniel Borkmannea7f8272016-06-10 23:10:22 +02001991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 }
1993
1994 /* Find head of filter chain. */
1995
Vlad Buslov470502d2019-02-11 10:55:48 +02001996 err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack);
1997 if (err)
1998 return err;
1999
Cong Wang6f96c3c2019-10-07 13:26:28 -07002000 if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2001 NL_SET_ERR_MSG(extack, "Specified TC filter name too long");
2002 err = -EINVAL;
2003 goto errout;
2004 }
2005
Vlad Buslov470502d2019-02-11 10:55:48 +02002006 /* Take rtnl mutex if rtnl_held was set to true on previous iteration,
2007 * block is shared (no qdisc found), qdisc is not unlocked, classifier
2008 * type is not specified, classifier is not unlocked.
2009 */
2010 if (rtnl_held ||
2011 (q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) ||
Cong Wang6f96c3c2019-10-07 13:26:28 -07002012 !tcf_proto_is_unlocked(name)) {
Vlad Buslov470502d2019-02-11 10:55:48 +02002013 rtnl_held = true;
2014 rtnl_lock();
2015 }
2016
2017 err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack);
2018 if (err)
2019 goto errout;
2020
2021 block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index,
2022 extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002023 if (IS_ERR(block)) {
2024 err = PTR_ERR(block);
2025 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002026 }
Cong Wanga7df4872020-04-30 20:53:49 -07002027 block->classid = parent;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002028
2029 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2030 if (chain_index > TC_ACT_EXT_VAL_MASK) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002031 NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
Jiri Pirko5bc17012017-05-17 11:08:01 +02002032 err = -EINVAL;
2033 goto errout;
2034 }
Vlad Buslovc431f892018-05-31 09:52:53 +03002035 chain = tcf_chain_get(block, chain_index, true);
Jiri Pirko5bc17012017-05-17 11:08:01 +02002036 if (!chain) {
Jiri Pirkod5ed72a2018-08-27 20:58:43 +02002037 NL_SET_ERR_MSG(extack, "Cannot create specified filter chain");
Vlad Buslovc431f892018-05-31 09:52:53 +03002038 err = -ENOMEM;
Daniel Borkmannea7f8272016-06-10 23:10:22 +02002039 goto errout;
2040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Vlad Busloved76f5e2019-02-11 10:55:38 +02002042 mutex_lock(&chain->filter_chain_lock);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02002043 tp = tcf_chain_tp_find(chain, &chain_info, protocol,
2044 prio, prio_allocate);
2045 if (IS_ERR(tp)) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002046 NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found");
Jiri Pirko2190d1d2017-05-17 11:07:59 +02002047 err = PTR_ERR(tp);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002048 goto errout_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 }
2050
2051 if (tp == NULL) {
Vlad Buslov8b646782019-02-11 10:55:41 +02002052 struct tcf_proto *tp_new = NULL;
2053
Vlad Buslov726d06122019-02-11 10:55:42 +02002054 if (chain->flushing) {
2055 err = -EAGAIN;
2056 goto errout_locked;
2057 }
2058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 /* Proto-tcf does not exist, create new one */
2060
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002061 if (tca[TCA_KIND] == NULL || !protocol) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002062 NL_SET_ERR_MSG(extack, "Filter kind and protocol must be specified");
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002063 err = -EINVAL;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002064 goto errout_locked;
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Vlad Buslovc431f892018-05-31 09:52:53 +03002067 if (!(n->nlmsg_flags & NLM_F_CREATE)) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002068 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 +01002069 err = -ENOENT;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002070 goto errout_locked;
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Jiri Pirko9d36d9e2017-05-17 11:07:57 +02002073 if (prio_allocate)
Vlad Busloved76f5e2019-02-11 10:55:38 +02002074 prio = tcf_auto_prio(tcf_chain_tp_prev(chain,
2075 &chain_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Vlad Busloved76f5e2019-02-11 10:55:38 +02002077 mutex_unlock(&chain->filter_chain_lock);
Eric Dumazet36d79af2020-01-21 11:02:20 -08002078 tp_new = tcf_proto_create(name, protocol, prio, chain,
2079 rtnl_held, extack);
Vlad Buslov8b646782019-02-11 10:55:41 +02002080 if (IS_ERR(tp_new)) {
2081 err = PTR_ERR(tp_new);
Vlad Buslov726d06122019-02-11 10:55:42 +02002082 goto errout_tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
Vlad Busloved76f5e2019-02-11 10:55:38 +02002084
Minoru Usui12186be2009-06-02 02:17:34 -07002085 tp_created = 1;
Vlad Buslov12db03b2019-02-11 10:55:45 +02002086 tp = tcf_chain_tp_insert_unique(chain, tp_new, protocol, prio,
2087 rtnl_held);
Vlad Buslov726d06122019-02-11 10:55:42 +02002088 if (IS_ERR(tp)) {
2089 err = PTR_ERR(tp);
2090 goto errout_tp;
2091 }
Vlad Busloved76f5e2019-02-11 10:55:38 +02002092 } else {
2093 mutex_unlock(&chain->filter_chain_lock);
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Vlad Buslov8b646782019-02-11 10:55:41 +02002096 if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
2097 NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one");
2098 err = -EINVAL;
2099 goto errout;
2100 }
2101
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 fh = tp->ops->get(tp, t->tcm_handle);
2103
WANG Cong8113c092017-08-04 21:31:43 -07002104 if (!fh) {
Vlad Buslovc431f892018-05-31 09:52:53 +03002105 if (!(n->nlmsg_flags & NLM_F_CREATE)) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002106 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 +01002107 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002109 }
Vlad Buslovc431f892018-05-31 09:52:53 +03002110 } else if (n->nlmsg_flags & NLM_F_EXCL) {
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002111 tfilter_put(tp, fh);
Vlad Buslovc431f892018-05-31 09:52:53 +03002112 NL_SET_ERR_MSG(extack, "Filter already exists");
2113 err = -EEXIST;
2114 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 }
2116
Jiri Pirko9f407f12018-07-23 09:23:07 +02002117 if (chain->tmplt_ops && chain->tmplt_ops != tp->ops) {
2118 NL_SET_ERR_MSG(extack, "Chain template is set to a different filter kind");
2119 err = -EINVAL;
2120 goto errout;
2121 }
2122
Cong Wang695176b2021-07-29 16:12:14 -07002123 if (!(n->nlmsg_flags & NLM_F_CREATE))
2124 flags |= TCA_ACT_FLAGS_REPLACE;
2125 if (!rtnl_held)
2126 flags |= TCA_ACT_FLAGS_NO_RTNL;
Cong Wang2f7ef2f2014-04-25 13:54:06 -07002127 err = tp->ops->change(net, skb, tp, cl, t->tcm_handle, tca, &fh,
Cong Wang695176b2021-07-29 16:12:14 -07002128 flags, extack);
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002129 if (err == 0) {
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002130 tfilter_notify(net, skb, n, tp, block, q, parent, fh,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002131 RTM_NEWTFILTER, false, rtnl_held);
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002132 tfilter_put(tp, fh);
Vlad Buslov503d81d2019-07-21 17:44:12 +03002133 /* q pointer is NULL for shared blocks */
2134 if (q)
2135 q->flags &= ~TCQ_F_CAN_BYPASS;
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138errout:
Vlad Buslov8b646782019-02-11 10:55:41 +02002139 if (err && tp_created)
Vlad Buslov12db03b2019-02-11 10:55:45 +02002140 tcf_chain_tp_delete_empty(chain, tp, rtnl_held, NULL);
Vlad Buslov726d06122019-02-11 10:55:42 +02002141errout_tp:
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002142 if (chain) {
2143 if (tp && !IS_ERR(tp))
Vlad Buslov12db03b2019-02-11 10:55:45 +02002144 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002145 if (!tp_created)
2146 tcf_chain_put(chain);
2147 }
Vlad Buslov12db03b2019-02-11 10:55:45 +02002148 tcf_block_release(q, block, rtnl_held);
Vlad Buslov470502d2019-02-11 10:55:48 +02002149
2150 if (rtnl_held)
2151 rtnl_unlock();
2152
2153 if (err == -EAGAIN) {
2154 /* Take rtnl lock in case EAGAIN is caused by concurrent flush
2155 * of target chain.
2156 */
2157 rtnl_held = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 /* Replay the request. */
2159 goto replay;
Vlad Buslov470502d2019-02-11 10:55:48 +02002160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 return err;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002162
2163errout_locked:
2164 mutex_unlock(&chain->filter_chain_lock);
2165 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166}
2167
Vlad Buslovc431f892018-05-31 09:52:53 +03002168static int tc_del_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
2169 struct netlink_ext_ack *extack)
2170{
2171 struct net *net = sock_net(skb->sk);
2172 struct nlattr *tca[TCA_MAX + 1];
Cong Wang6f96c3c2019-10-07 13:26:28 -07002173 char name[IFNAMSIZ];
Vlad Buslovc431f892018-05-31 09:52:53 +03002174 struct tcmsg *t;
2175 u32 protocol;
2176 u32 prio;
2177 u32 parent;
2178 u32 chain_index;
2179 struct Qdisc *q = NULL;
2180 struct tcf_chain_info chain_info;
2181 struct tcf_chain *chain = NULL;
Vlad Buslov470502d2019-02-11 10:55:48 +02002182 struct tcf_block *block = NULL;
Vlad Buslovc431f892018-05-31 09:52:53 +03002183 struct tcf_proto *tp = NULL;
2184 unsigned long cl = 0;
2185 void *fh = NULL;
2186 int err;
Vlad Buslov470502d2019-02-11 10:55:48 +02002187 bool rtnl_held = false;
Vlad Buslovc431f892018-05-31 09:52:53 +03002188
2189 if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
2190 return -EPERM;
2191
Johannes Berg8cb08172019-04-26 14:07:28 +02002192 err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
2193 rtm_tca_policy, extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002194 if (err < 0)
2195 return err;
2196
2197 t = nlmsg_data(n);
2198 protocol = TC_H_MIN(t->tcm_info);
2199 prio = TC_H_MAJ(t->tcm_info);
2200 parent = t->tcm_parent;
2201
2202 if (prio == 0 && (protocol || t->tcm_handle || tca[TCA_KIND])) {
2203 NL_SET_ERR_MSG(extack, "Cannot flush filters with protocol, handle or kind set");
2204 return -ENOENT;
2205 }
2206
2207 /* Find head of filter chain. */
2208
Vlad Buslov470502d2019-02-11 10:55:48 +02002209 err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack);
2210 if (err)
2211 return err;
2212
Cong Wang6f96c3c2019-10-07 13:26:28 -07002213 if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2214 NL_SET_ERR_MSG(extack, "Specified TC filter name too long");
2215 err = -EINVAL;
2216 goto errout;
2217 }
Vlad Buslov470502d2019-02-11 10:55:48 +02002218 /* Take rtnl mutex if flushing whole chain, block is shared (no qdisc
2219 * found), qdisc is not unlocked, classifier type is not specified,
2220 * classifier is not unlocked.
2221 */
2222 if (!prio ||
2223 (q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) ||
Cong Wang6f96c3c2019-10-07 13:26:28 -07002224 !tcf_proto_is_unlocked(name)) {
Vlad Buslov470502d2019-02-11 10:55:48 +02002225 rtnl_held = true;
2226 rtnl_lock();
2227 }
2228
2229 err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack);
2230 if (err)
2231 goto errout;
2232
2233 block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index,
2234 extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002235 if (IS_ERR(block)) {
2236 err = PTR_ERR(block);
2237 goto errout;
2238 }
2239
2240 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2241 if (chain_index > TC_ACT_EXT_VAL_MASK) {
2242 NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
2243 err = -EINVAL;
2244 goto errout;
2245 }
2246 chain = tcf_chain_get(block, chain_index, false);
2247 if (!chain) {
Jiri Pirko5ca8a252018-08-03 11:08:47 +02002248 /* User requested flush on non-existent chain. Nothing to do,
2249 * so just return success.
2250 */
2251 if (prio == 0) {
2252 err = 0;
2253 goto errout;
2254 }
Vlad Buslovc431f892018-05-31 09:52:53 +03002255 NL_SET_ERR_MSG(extack, "Cannot find specified filter chain");
Jiri Pirkob7b42472018-08-27 20:58:44 +02002256 err = -ENOENT;
Vlad Buslovc431f892018-05-31 09:52:53 +03002257 goto errout;
2258 }
2259
2260 if (prio == 0) {
2261 tfilter_notify_chain(net, skb, block, q, parent, n,
Vlad Buslov0fca55e2020-11-27 17:12:05 +02002262 chain, RTM_DELTFILTER);
Vlad Buslov12db03b2019-02-11 10:55:45 +02002263 tcf_chain_flush(chain, rtnl_held);
Vlad Buslovc431f892018-05-31 09:52:53 +03002264 err = 0;
2265 goto errout;
2266 }
2267
Vlad Busloved76f5e2019-02-11 10:55:38 +02002268 mutex_lock(&chain->filter_chain_lock);
Vlad Buslovc431f892018-05-31 09:52:53 +03002269 tp = tcf_chain_tp_find(chain, &chain_info, protocol,
2270 prio, false);
2271 if (!tp || IS_ERR(tp)) {
2272 NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found");
Vlad Buslov0e399032018-06-04 18:32:23 +03002273 err = tp ? PTR_ERR(tp) : -ENOENT;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002274 goto errout_locked;
Vlad Buslovc431f892018-05-31 09:52:53 +03002275 } else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
2276 NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one");
2277 err = -EINVAL;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002278 goto errout_locked;
2279 } else if (t->tcm_handle == 0) {
John Hurley59eb87c2019-11-02 14:17:47 +00002280 tcf_proto_signal_destroying(chain, tp);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002281 tcf_chain_tp_remove(chain, &chain_info, tp);
2282 mutex_unlock(&chain->filter_chain_lock);
2283
Vlad Buslov12db03b2019-02-11 10:55:45 +02002284 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002285 tfilter_notify(net, skb, n, tp, block, q, parent, fh,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002286 RTM_DELTFILTER, false, rtnl_held);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002287 err = 0;
Vlad Buslovc431f892018-05-31 09:52:53 +03002288 goto errout;
2289 }
Vlad Busloved76f5e2019-02-11 10:55:38 +02002290 mutex_unlock(&chain->filter_chain_lock);
Vlad Buslovc431f892018-05-31 09:52:53 +03002291
2292 fh = tp->ops->get(tp, t->tcm_handle);
2293
2294 if (!fh) {
Vlad Busloved76f5e2019-02-11 10:55:38 +02002295 NL_SET_ERR_MSG(extack, "Specified filter handle not found");
2296 err = -ENOENT;
Vlad Buslovc431f892018-05-31 09:52:53 +03002297 } else {
2298 bool last;
2299
2300 err = tfilter_del_notify(net, skb, n, tp, block,
2301 q, parent, fh, false, &last,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002302 rtnl_held, extack);
2303
Vlad Buslovc431f892018-05-31 09:52:53 +03002304 if (err)
2305 goto errout;
Vlad Buslov8b646782019-02-11 10:55:41 +02002306 if (last)
Vlad Buslov12db03b2019-02-11 10:55:45 +02002307 tcf_chain_tp_delete_empty(chain, tp, rtnl_held, extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002308 }
2309
2310errout:
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002311 if (chain) {
2312 if (tp && !IS_ERR(tp))
Vlad Buslov12db03b2019-02-11 10:55:45 +02002313 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Buslovc431f892018-05-31 09:52:53 +03002314 tcf_chain_put(chain);
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002315 }
Vlad Buslov12db03b2019-02-11 10:55:45 +02002316 tcf_block_release(q, block, rtnl_held);
Vlad Buslov470502d2019-02-11 10:55:48 +02002317
2318 if (rtnl_held)
2319 rtnl_unlock();
2320
Vlad Buslovc431f892018-05-31 09:52:53 +03002321 return err;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002322
2323errout_locked:
2324 mutex_unlock(&chain->filter_chain_lock);
2325 goto errout;
Vlad Buslovc431f892018-05-31 09:52:53 +03002326}
2327
2328static int tc_get_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
2329 struct netlink_ext_ack *extack)
2330{
2331 struct net *net = sock_net(skb->sk);
2332 struct nlattr *tca[TCA_MAX + 1];
Cong Wang6f96c3c2019-10-07 13:26:28 -07002333 char name[IFNAMSIZ];
Vlad Buslovc431f892018-05-31 09:52:53 +03002334 struct tcmsg *t;
2335 u32 protocol;
2336 u32 prio;
2337 u32 parent;
2338 u32 chain_index;
2339 struct Qdisc *q = NULL;
2340 struct tcf_chain_info chain_info;
2341 struct tcf_chain *chain = NULL;
Vlad Buslov470502d2019-02-11 10:55:48 +02002342 struct tcf_block *block = NULL;
Vlad Buslovc431f892018-05-31 09:52:53 +03002343 struct tcf_proto *tp = NULL;
2344 unsigned long cl = 0;
2345 void *fh = NULL;
2346 int err;
Vlad Buslov470502d2019-02-11 10:55:48 +02002347 bool rtnl_held = false;
Vlad Buslovc431f892018-05-31 09:52:53 +03002348
Johannes Berg8cb08172019-04-26 14:07:28 +02002349 err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
2350 rtm_tca_policy, extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002351 if (err < 0)
2352 return err;
2353
2354 t = nlmsg_data(n);
2355 protocol = TC_H_MIN(t->tcm_info);
2356 prio = TC_H_MAJ(t->tcm_info);
2357 parent = t->tcm_parent;
2358
2359 if (prio == 0) {
2360 NL_SET_ERR_MSG(extack, "Invalid filter command with priority of zero");
2361 return -ENOENT;
2362 }
2363
2364 /* Find head of filter chain. */
2365
Vlad Buslov470502d2019-02-11 10:55:48 +02002366 err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack);
2367 if (err)
2368 return err;
2369
Cong Wang6f96c3c2019-10-07 13:26:28 -07002370 if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2371 NL_SET_ERR_MSG(extack, "Specified TC filter name too long");
2372 err = -EINVAL;
2373 goto errout;
2374 }
Vlad Buslov470502d2019-02-11 10:55:48 +02002375 /* Take rtnl mutex if block is shared (no qdisc found), qdisc is not
2376 * unlocked, classifier type is not specified, classifier is not
2377 * unlocked.
2378 */
2379 if ((q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) ||
Cong Wang6f96c3c2019-10-07 13:26:28 -07002380 !tcf_proto_is_unlocked(name)) {
Vlad Buslov470502d2019-02-11 10:55:48 +02002381 rtnl_held = true;
2382 rtnl_lock();
2383 }
2384
2385 err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack);
2386 if (err)
2387 goto errout;
2388
2389 block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index,
2390 extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002391 if (IS_ERR(block)) {
2392 err = PTR_ERR(block);
2393 goto errout;
2394 }
2395
2396 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2397 if (chain_index > TC_ACT_EXT_VAL_MASK) {
2398 NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
2399 err = -EINVAL;
2400 goto errout;
2401 }
2402 chain = tcf_chain_get(block, chain_index, false);
2403 if (!chain) {
2404 NL_SET_ERR_MSG(extack, "Cannot find specified filter chain");
2405 err = -EINVAL;
2406 goto errout;
2407 }
2408
Vlad Busloved76f5e2019-02-11 10:55:38 +02002409 mutex_lock(&chain->filter_chain_lock);
Vlad Buslovc431f892018-05-31 09:52:53 +03002410 tp = tcf_chain_tp_find(chain, &chain_info, protocol,
2411 prio, false);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002412 mutex_unlock(&chain->filter_chain_lock);
Vlad Buslovc431f892018-05-31 09:52:53 +03002413 if (!tp || IS_ERR(tp)) {
2414 NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found");
Vlad Buslov0e399032018-06-04 18:32:23 +03002415 err = tp ? PTR_ERR(tp) : -ENOENT;
Vlad Buslovc431f892018-05-31 09:52:53 +03002416 goto errout;
2417 } else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
2418 NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one");
2419 err = -EINVAL;
2420 goto errout;
2421 }
2422
2423 fh = tp->ops->get(tp, t->tcm_handle);
2424
2425 if (!fh) {
2426 NL_SET_ERR_MSG(extack, "Specified filter handle not found");
2427 err = -ENOENT;
2428 } else {
2429 err = tfilter_notify(net, skb, n, tp, block, q, parent,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002430 fh, RTM_NEWTFILTER, true, rtnl_held);
Vlad Buslovc431f892018-05-31 09:52:53 +03002431 if (err < 0)
2432 NL_SET_ERR_MSG(extack, "Failed to send filter notify message");
2433 }
2434
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002435 tfilter_put(tp, fh);
Vlad Buslovc431f892018-05-31 09:52:53 +03002436errout:
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002437 if (chain) {
2438 if (tp && !IS_ERR(tp))
Vlad Buslov12db03b2019-02-11 10:55:45 +02002439 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Buslovc431f892018-05-31 09:52:53 +03002440 tcf_chain_put(chain);
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002441 }
Vlad Buslov12db03b2019-02-11 10:55:45 +02002442 tcf_block_release(q, block, rtnl_held);
Vlad Buslov470502d2019-02-11 10:55:48 +02002443
2444 if (rtnl_held)
2445 rtnl_unlock();
2446
Vlad Buslovc431f892018-05-31 09:52:53 +03002447 return err;
2448}
2449
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08002450struct tcf_dump_args {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 struct tcf_walker w;
2452 struct sk_buff *skb;
2453 struct netlink_callback *cb;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002454 struct tcf_block *block;
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002455 struct Qdisc *q;
2456 u32 parent;
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002457 bool terse_dump;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458};
2459
WANG Cong8113c092017-08-04 21:31:43 -07002460static int tcf_node_dump(struct tcf_proto *tp, void *n, struct tcf_walker *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08002462 struct tcf_dump_args *a = (void *)arg;
WANG Cong832d1d52014-01-09 16:14:01 -08002463 struct net *net = sock_net(a->skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002465 return tcf_fill_node(net, a->skb, tp, a->block, a->q, a->parent,
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002466 n, NETLINK_CB(a->cb->skb).portid,
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04002467 a->cb->nlh->nlmsg_seq, NLM_F_MULTI,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002468 RTM_NEWTFILTER, a->terse_dump, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469}
2470
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002471static bool tcf_chain_dump(struct tcf_chain *chain, struct Qdisc *q, u32 parent,
2472 struct sk_buff *skb, struct netlink_callback *cb,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002473 long index_start, long *p_index, bool terse)
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002474{
2475 struct net *net = sock_net(skb->sk);
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002476 struct tcf_block *block = chain->block;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002477 struct tcmsg *tcm = nlmsg_data(cb->nlh);
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002478 struct tcf_proto *tp, *tp_prev;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002479 struct tcf_dump_args arg;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002480
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002481 for (tp = __tcf_get_next_proto(chain, NULL);
2482 tp;
2483 tp_prev = tp,
2484 tp = __tcf_get_next_proto(chain, tp),
Vlad Buslov12db03b2019-02-11 10:55:45 +02002485 tcf_proto_put(tp_prev, true, NULL),
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002486 (*p_index)++) {
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002487 if (*p_index < index_start)
2488 continue;
2489 if (TC_H_MAJ(tcm->tcm_info) &&
2490 TC_H_MAJ(tcm->tcm_info) != tp->prio)
2491 continue;
2492 if (TC_H_MIN(tcm->tcm_info) &&
2493 TC_H_MIN(tcm->tcm_info) != tp->protocol)
2494 continue;
2495 if (*p_index > index_start)
2496 memset(&cb->args[1], 0,
2497 sizeof(cb->args) - sizeof(cb->args[0]));
2498 if (cb->args[1] == 0) {
YueHaibing53189182018-07-17 20:58:14 +08002499 if (tcf_fill_node(net, skb, tp, block, q, parent, NULL,
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002500 NETLINK_CB(cb->skb).portid,
2501 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002502 RTM_NEWTFILTER, false, true) <= 0)
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002503 goto errout;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002504 cb->args[1] = 1;
2505 }
2506 if (!tp->ops->walk)
2507 continue;
2508 arg.w.fn = tcf_node_dump;
2509 arg.skb = skb;
2510 arg.cb = cb;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002511 arg.block = block;
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002512 arg.q = q;
2513 arg.parent = parent;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002514 arg.w.stop = 0;
2515 arg.w.skip = cb->args[1] - 1;
2516 arg.w.count = 0;
Vlad Buslov01683a12018-07-09 13:29:11 +03002517 arg.w.cookie = cb->args[2];
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002518 arg.terse_dump = terse;
Vlad Buslov12db03b2019-02-11 10:55:45 +02002519 tp->ops->walk(tp, &arg.w, true);
Vlad Buslov01683a12018-07-09 13:29:11 +03002520 cb->args[2] = arg.w.cookie;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002521 cb->args[1] = arg.w.count + 1;
2522 if (arg.w.stop)
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002523 goto errout;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002524 }
Jiri Pirko5bc17012017-05-17 11:08:01 +02002525 return true;
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002526
2527errout:
Vlad Buslov12db03b2019-02-11 10:55:45 +02002528 tcf_proto_put(tp, true, NULL);
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002529 return false;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002530}
2531
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002532static const struct nla_policy tcf_tfilter_dump_policy[TCA_MAX + 1] = {
2533 [TCA_DUMP_FLAGS] = NLA_POLICY_BITFIELD32(TCA_DUMP_FLAGS_TERSE),
2534};
2535
Eric Dumazetbd27a872009-11-05 20:57:26 -08002536/* called with RTNL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537static int tc_dump_tfilter(struct sk_buff *skb, struct netlink_callback *cb)
2538{
Vlad Buslovbbf73832019-02-11 10:55:36 +02002539 struct tcf_chain *chain, *chain_prev;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002540 struct net *net = sock_net(skb->sk);
Jiri Pirko5bc17012017-05-17 11:08:01 +02002541 struct nlattr *tca[TCA_MAX + 1];
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002542 struct Qdisc *q = NULL;
Jiri Pirko6529eab2017-05-17 11:07:55 +02002543 struct tcf_block *block;
David S. Miller942b8162012-06-26 21:48:50 -07002544 struct tcmsg *tcm = nlmsg_data(cb->nlh);
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002545 bool terse_dump = false;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002546 long index_start;
2547 long index;
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002548 u32 parent;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002549 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550
Hong zhi guo573ce262013-03-27 06:47:04 +00002551 if (nlmsg_len(cb->nlh) < sizeof(*tcm))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 return skb->len;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002553
Johannes Berg8cb08172019-04-26 14:07:28 +02002554 err = nlmsg_parse_deprecated(cb->nlh, sizeof(*tcm), tca, TCA_MAX,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002555 tcf_tfilter_dump_policy, cb->extack);
Jiri Pirko5bc17012017-05-17 11:08:01 +02002556 if (err)
2557 return err;
2558
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002559 if (tca[TCA_DUMP_FLAGS]) {
2560 struct nla_bitfield32 flags =
2561 nla_get_bitfield32(tca[TCA_DUMP_FLAGS]);
2562
2563 terse_dump = flags.value & TCA_DUMP_FLAGS_TERSE;
2564 }
2565
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002566 if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK) {
Vlad Buslov787ce6d2018-09-24 19:22:58 +03002567 block = tcf_block_refcnt_get(net, tcm->tcm_block_index);
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002568 if (!block)
WANG Cong143976c2017-08-24 16:51:29 -07002569 goto out;
Jiri Pirkod680b352018-01-18 16:14:49 +01002570 /* If we work with block index, q is NULL and parent value
2571 * will never be used in the following code. The check
2572 * in tcf_fill_node prevents it. However, compiler does not
2573 * see that far, so set parent to zero to silence the warning
2574 * about parent being uninitialized.
2575 */
2576 parent = 0;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002577 } else {
2578 const struct Qdisc_class_ops *cops;
2579 struct net_device *dev;
2580 unsigned long cl = 0;
2581
2582 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
2583 if (!dev)
2584 return skb->len;
2585
2586 parent = tcm->tcm_parent;
Cong Wanga7df4872020-04-30 20:53:49 -07002587 if (!parent)
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002588 q = dev->qdisc;
Cong Wanga7df4872020-04-30 20:53:49 -07002589 else
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002590 q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent));
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002591 if (!q)
2592 goto out;
2593 cops = q->ops->cl_ops;
2594 if (!cops)
2595 goto out;
2596 if (!cops->tcf_block)
2597 goto out;
2598 if (TC_H_MIN(tcm->tcm_parent)) {
2599 cl = cops->find(q, tcm->tcm_parent);
2600 if (cl == 0)
2601 goto out;
2602 }
2603 block = cops->tcf_block(q, cl, NULL);
2604 if (!block)
2605 goto out;
Cong Wanga7df4872020-04-30 20:53:49 -07002606 parent = block->classid;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002607 if (tcf_block_shared(block))
2608 q = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002611 index_start = cb->args[0];
2612 index = 0;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002613
Vlad Buslovbbf73832019-02-11 10:55:36 +02002614 for (chain = __tcf_get_next_chain(block, NULL);
2615 chain;
2616 chain_prev = chain,
2617 chain = __tcf_get_next_chain(block, chain),
2618 tcf_chain_put(chain_prev)) {
Jiri Pirko5bc17012017-05-17 11:08:01 +02002619 if (tca[TCA_CHAIN] &&
2620 nla_get_u32(tca[TCA_CHAIN]) != chain->index)
2621 continue;
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002622 if (!tcf_chain_dump(chain, q, parent, skb, cb,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002623 index_start, &index, terse_dump)) {
Vlad Buslovbbf73832019-02-11 10:55:36 +02002624 tcf_chain_put(chain);
Roman Kapl5ae437a2018-02-19 21:32:51 +01002625 err = -EMSGSIZE;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002626 break;
Roman Kapl5ae437a2018-02-19 21:32:51 +01002627 }
Jiri Pirko5bc17012017-05-17 11:08:01 +02002628 }
2629
Vlad Buslov787ce6d2018-09-24 19:22:58 +03002630 if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK)
Vlad Buslov12db03b2019-02-11 10:55:45 +02002631 tcf_block_refcnt_put(block, true);
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002632 cb->args[0] = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634out:
Roman Kapl5ae437a2018-02-19 21:32:51 +01002635 /* If we did no progress, the error (EMSGSIZE) is real */
2636 if (skb->len == 0 && err)
2637 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 return skb->len;
2639}
2640
Vlad Buslova5654822019-02-11 10:55:37 +02002641static int tc_chain_fill_node(const struct tcf_proto_ops *tmplt_ops,
2642 void *tmplt_priv, u32 chain_index,
2643 struct net *net, struct sk_buff *skb,
2644 struct tcf_block *block,
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002645 u32 portid, u32 seq, u16 flags, int event)
2646{
2647 unsigned char *b = skb_tail_pointer(skb);
Jiri Pirko9f407f12018-07-23 09:23:07 +02002648 const struct tcf_proto_ops *ops;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002649 struct nlmsghdr *nlh;
2650 struct tcmsg *tcm;
Jiri Pirko9f407f12018-07-23 09:23:07 +02002651 void *priv;
2652
Vlad Buslova5654822019-02-11 10:55:37 +02002653 ops = tmplt_ops;
2654 priv = tmplt_priv;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002655
2656 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
2657 if (!nlh)
2658 goto out_nlmsg_trim;
2659 tcm = nlmsg_data(nlh);
2660 tcm->tcm_family = AF_UNSPEC;
2661 tcm->tcm__pad1 = 0;
2662 tcm->tcm__pad2 = 0;
2663 tcm->tcm_handle = 0;
2664 if (block->q) {
2665 tcm->tcm_ifindex = qdisc_dev(block->q)->ifindex;
2666 tcm->tcm_parent = block->q->handle;
2667 } else {
2668 tcm->tcm_ifindex = TCM_IFINDEX_MAGIC_BLOCK;
2669 tcm->tcm_block_index = block->index;
2670 }
2671
Vlad Buslova5654822019-02-11 10:55:37 +02002672 if (nla_put_u32(skb, TCA_CHAIN, chain_index))
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002673 goto nla_put_failure;
2674
Jiri Pirko9f407f12018-07-23 09:23:07 +02002675 if (ops) {
2676 if (nla_put_string(skb, TCA_KIND, ops->kind))
2677 goto nla_put_failure;
2678 if (ops->tmplt_dump(skb, net, priv) < 0)
2679 goto nla_put_failure;
2680 }
2681
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002682 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
2683 return skb->len;
2684
2685out_nlmsg_trim:
2686nla_put_failure:
2687 nlmsg_trim(skb, b);
2688 return -EMSGSIZE;
2689}
2690
2691static int tc_chain_notify(struct tcf_chain *chain, struct sk_buff *oskb,
2692 u32 seq, u16 flags, int event, bool unicast)
2693{
2694 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
2695 struct tcf_block *block = chain->block;
2696 struct net *net = block->net;
2697 struct sk_buff *skb;
Zhike Wang5b5f99b2019-03-11 03:15:54 -07002698 int err = 0;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002699
2700 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2701 if (!skb)
2702 return -ENOBUFS;
2703
Vlad Buslova5654822019-02-11 10:55:37 +02002704 if (tc_chain_fill_node(chain->tmplt_ops, chain->tmplt_priv,
2705 chain->index, net, skb, block, portid,
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002706 seq, flags, event) <= 0) {
2707 kfree_skb(skb);
2708 return -EINVAL;
2709 }
2710
2711 if (unicast)
Yajun Dengf79a3bc2021-07-15 20:24:24 +08002712 err = rtnl_unicast(skb, net, portid);
Zhike Wang5b5f99b2019-03-11 03:15:54 -07002713 else
2714 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
2715 flags & NLM_F_ECHO);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002716
Zhike Wang5b5f99b2019-03-11 03:15:54 -07002717 return err;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002718}
2719
Vlad Buslova5654822019-02-11 10:55:37 +02002720static int tc_chain_notify_delete(const struct tcf_proto_ops *tmplt_ops,
2721 void *tmplt_priv, u32 chain_index,
2722 struct tcf_block *block, struct sk_buff *oskb,
2723 u32 seq, u16 flags, bool unicast)
2724{
2725 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
2726 struct net *net = block->net;
2727 struct sk_buff *skb;
2728
2729 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2730 if (!skb)
2731 return -ENOBUFS;
2732
2733 if (tc_chain_fill_node(tmplt_ops, tmplt_priv, chain_index, net, skb,
2734 block, portid, seq, flags, RTM_DELCHAIN) <= 0) {
2735 kfree_skb(skb);
2736 return -EINVAL;
2737 }
2738
2739 if (unicast)
Yajun Dengf79a3bc2021-07-15 20:24:24 +08002740 return rtnl_unicast(skb, net, portid);
Vlad Buslova5654822019-02-11 10:55:37 +02002741
2742 return rtnetlink_send(skb, net, portid, RTNLGRP_TC, flags & NLM_F_ECHO);
2743}
2744
Jiri Pirko9f407f12018-07-23 09:23:07 +02002745static int tc_chain_tmplt_add(struct tcf_chain *chain, struct net *net,
2746 struct nlattr **tca,
2747 struct netlink_ext_ack *extack)
2748{
2749 const struct tcf_proto_ops *ops;
Eric Dumazet2dd56162019-12-07 11:34:45 -08002750 char name[IFNAMSIZ];
Jiri Pirko9f407f12018-07-23 09:23:07 +02002751 void *tmplt_priv;
2752
2753 /* If kind is not set, user did not specify template. */
2754 if (!tca[TCA_KIND])
2755 return 0;
2756
Eric Dumazet2dd56162019-12-07 11:34:45 -08002757 if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2758 NL_SET_ERR_MSG(extack, "Specified TC chain template name too long");
2759 return -EINVAL;
2760 }
2761
2762 ops = tcf_proto_lookup_ops(name, true, extack);
Jiri Pirko9f407f12018-07-23 09:23:07 +02002763 if (IS_ERR(ops))
2764 return PTR_ERR(ops);
2765 if (!ops->tmplt_create || !ops->tmplt_destroy || !ops->tmplt_dump) {
2766 NL_SET_ERR_MSG(extack, "Chain templates are not supported with specified classifier");
2767 return -EOPNOTSUPP;
2768 }
2769
2770 tmplt_priv = ops->tmplt_create(net, chain, tca, extack);
2771 if (IS_ERR(tmplt_priv)) {
2772 module_put(ops->owner);
2773 return PTR_ERR(tmplt_priv);
2774 }
2775 chain->tmplt_ops = ops;
2776 chain->tmplt_priv = tmplt_priv;
2777 return 0;
2778}
2779
Vlad Buslova5654822019-02-11 10:55:37 +02002780static void tc_chain_tmplt_del(const struct tcf_proto_ops *tmplt_ops,
2781 void *tmplt_priv)
Jiri Pirko9f407f12018-07-23 09:23:07 +02002782{
Jiri Pirko9f407f12018-07-23 09:23:07 +02002783 /* If template ops are set, no work to do for us. */
Vlad Buslova5654822019-02-11 10:55:37 +02002784 if (!tmplt_ops)
Jiri Pirko9f407f12018-07-23 09:23:07 +02002785 return;
2786
Vlad Buslova5654822019-02-11 10:55:37 +02002787 tmplt_ops->tmplt_destroy(tmplt_priv);
2788 module_put(tmplt_ops->owner);
Jiri Pirko9f407f12018-07-23 09:23:07 +02002789}
2790
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002791/* Add/delete/get a chain */
2792
2793static int tc_ctl_chain(struct sk_buff *skb, struct nlmsghdr *n,
2794 struct netlink_ext_ack *extack)
2795{
2796 struct net *net = sock_net(skb->sk);
2797 struct nlattr *tca[TCA_MAX + 1];
2798 struct tcmsg *t;
2799 u32 parent;
2800 u32 chain_index;
2801 struct Qdisc *q = NULL;
2802 struct tcf_chain *chain = NULL;
2803 struct tcf_block *block;
2804 unsigned long cl;
2805 int err;
2806
2807 if (n->nlmsg_type != RTM_GETCHAIN &&
2808 !netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
2809 return -EPERM;
2810
2811replay:
Johannes Berg8cb08172019-04-26 14:07:28 +02002812 err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
2813 rtm_tca_policy, extack);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002814 if (err < 0)
2815 return err;
2816
2817 t = nlmsg_data(n);
2818 parent = t->tcm_parent;
2819 cl = 0;
2820
2821 block = tcf_block_find(net, &q, &parent, &cl,
2822 t->tcm_ifindex, t->tcm_block_index, extack);
2823 if (IS_ERR(block))
2824 return PTR_ERR(block);
2825
2826 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2827 if (chain_index > TC_ACT_EXT_VAL_MASK) {
2828 NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
Vlad Buslove368fdb2018-09-24 19:22:53 +03002829 err = -EINVAL;
2830 goto errout_block;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002831 }
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002832
2833 mutex_lock(&block->lock);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002834 chain = tcf_chain_lookup(block, chain_index);
2835 if (n->nlmsg_type == RTM_NEWCHAIN) {
2836 if (chain) {
Jiri Pirko3d32f4c2018-08-01 12:36:55 +02002837 if (tcf_chain_held_by_acts_only(chain)) {
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002838 /* The chain exists only because there is
Jiri Pirko3d32f4c2018-08-01 12:36:55 +02002839 * some action referencing it.
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002840 */
2841 tcf_chain_hold(chain);
2842 } else {
2843 NL_SET_ERR_MSG(extack, "Filter chain already exists");
Vlad Buslove368fdb2018-09-24 19:22:53 +03002844 err = -EEXIST;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002845 goto errout_block_locked;
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002846 }
2847 } else {
2848 if (!(n->nlmsg_flags & NLM_F_CREATE)) {
2849 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 +03002850 err = -ENOENT;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002851 goto errout_block_locked;
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002852 }
2853 chain = tcf_chain_create(block, chain_index);
2854 if (!chain) {
2855 NL_SET_ERR_MSG(extack, "Failed to create filter chain");
Vlad Buslove368fdb2018-09-24 19:22:53 +03002856 err = -ENOMEM;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002857 goto errout_block_locked;
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002858 }
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002859 }
2860 } else {
Jiri Pirko3d32f4c2018-08-01 12:36:55 +02002861 if (!chain || tcf_chain_held_by_acts_only(chain)) {
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002862 NL_SET_ERR_MSG(extack, "Cannot find specified filter chain");
Vlad Buslove368fdb2018-09-24 19:22:53 +03002863 err = -EINVAL;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002864 goto errout_block_locked;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002865 }
2866 tcf_chain_hold(chain);
2867 }
2868
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002869 if (n->nlmsg_type == RTM_NEWCHAIN) {
2870 /* Modifying chain requires holding parent block lock. In case
2871 * the chain was successfully added, take a reference to the
2872 * chain. This ensures that an empty chain does not disappear at
2873 * the end of this function.
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002874 */
2875 tcf_chain_hold(chain);
2876 chain->explicitly_created = true;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002877 }
2878 mutex_unlock(&block->lock);
2879
2880 switch (n->nlmsg_type) {
2881 case RTM_NEWCHAIN:
2882 err = tc_chain_tmplt_add(chain, net, tca, extack);
2883 if (err) {
2884 tcf_chain_put_explicitly_created(chain);
2885 goto errout;
2886 }
2887
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002888 tc_chain_notify(chain, NULL, 0, NLM_F_CREATE | NLM_F_EXCL,
2889 RTM_NEWCHAIN, false);
2890 break;
2891 case RTM_DELCHAIN:
Cong Wangf5b9bac2018-09-11 14:22:23 -07002892 tfilter_notify_chain(net, skb, block, q, parent, n,
Vlad Buslov0fca55e2020-11-27 17:12:05 +02002893 chain, RTM_DELTFILTER);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002894 /* Flush the chain first as the user requested chain removal. */
Vlad Buslov12db03b2019-02-11 10:55:45 +02002895 tcf_chain_flush(chain, true);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002896 /* In case the chain was successfully deleted, put a reference
2897 * to the chain previously taken during addition.
2898 */
2899 tcf_chain_put_explicitly_created(chain);
2900 break;
2901 case RTM_GETCHAIN:
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002902 err = tc_chain_notify(chain, skb, n->nlmsg_seq,
Yajun Deng9d85a6f2021-07-22 11:23:43 +08002903 n->nlmsg_flags, n->nlmsg_type, true);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002904 if (err < 0)
2905 NL_SET_ERR_MSG(extack, "Failed to send chain notify message");
2906 break;
2907 default:
2908 err = -EOPNOTSUPP;
2909 NL_SET_ERR_MSG(extack, "Unsupported message type");
2910 goto errout;
2911 }
2912
2913errout:
2914 tcf_chain_put(chain);
Vlad Buslove368fdb2018-09-24 19:22:53 +03002915errout_block:
Vlad Buslov12db03b2019-02-11 10:55:45 +02002916 tcf_block_release(q, block, true);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002917 if (err == -EAGAIN)
2918 /* Replay the request. */
2919 goto replay;
2920 return err;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002921
2922errout_block_locked:
2923 mutex_unlock(&block->lock);
2924 goto errout_block;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002925}
2926
2927/* called with RTNL */
2928static int tc_dump_chain(struct sk_buff *skb, struct netlink_callback *cb)
2929{
2930 struct net *net = sock_net(skb->sk);
2931 struct nlattr *tca[TCA_MAX + 1];
2932 struct Qdisc *q = NULL;
2933 struct tcf_block *block;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002934 struct tcmsg *tcm = nlmsg_data(cb->nlh);
Vlad Buslovace4a262019-02-25 17:45:44 +02002935 struct tcf_chain *chain;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002936 long index_start;
2937 long index;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002938 int err;
2939
2940 if (nlmsg_len(cb->nlh) < sizeof(*tcm))
2941 return skb->len;
2942
Johannes Berg8cb08172019-04-26 14:07:28 +02002943 err = nlmsg_parse_deprecated(cb->nlh, sizeof(*tcm), tca, TCA_MAX,
2944 rtm_tca_policy, cb->extack);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002945 if (err)
2946 return err;
2947
2948 if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK) {
Vlad Buslov787ce6d2018-09-24 19:22:58 +03002949 block = tcf_block_refcnt_get(net, tcm->tcm_block_index);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002950 if (!block)
2951 goto out;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002952 } else {
2953 const struct Qdisc_class_ops *cops;
2954 struct net_device *dev;
2955 unsigned long cl = 0;
2956
2957 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
2958 if (!dev)
2959 return skb->len;
2960
Lukas Bulwahn0ad41b22020-10-28 12:35:33 +01002961 if (!tcm->tcm_parent)
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002962 q = dev->qdisc;
Lukas Bulwahn0ad41b22020-10-28 12:35:33 +01002963 else
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002964 q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent));
Lukas Bulwahn0ad41b22020-10-28 12:35:33 +01002965
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002966 if (!q)
2967 goto out;
2968 cops = q->ops->cl_ops;
2969 if (!cops)
2970 goto out;
2971 if (!cops->tcf_block)
2972 goto out;
2973 if (TC_H_MIN(tcm->tcm_parent)) {
2974 cl = cops->find(q, tcm->tcm_parent);
2975 if (cl == 0)
2976 goto out;
2977 }
2978 block = cops->tcf_block(q, cl, NULL);
2979 if (!block)
2980 goto out;
2981 if (tcf_block_shared(block))
2982 q = NULL;
2983 }
2984
2985 index_start = cb->args[0];
2986 index = 0;
2987
Vlad Buslovace4a262019-02-25 17:45:44 +02002988 mutex_lock(&block->lock);
2989 list_for_each_entry(chain, &block->chain_list, list) {
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002990 if ((tca[TCA_CHAIN] &&
2991 nla_get_u32(tca[TCA_CHAIN]) != chain->index))
2992 continue;
2993 if (index < index_start) {
2994 index++;
2995 continue;
2996 }
Vlad Buslovace4a262019-02-25 17:45:44 +02002997 if (tcf_chain_held_by_acts_only(chain))
2998 continue;
Vlad Buslova5654822019-02-11 10:55:37 +02002999 err = tc_chain_fill_node(chain->tmplt_ops, chain->tmplt_priv,
3000 chain->index, net, skb, block,
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003001 NETLINK_CB(cb->skb).portid,
3002 cb->nlh->nlmsg_seq, NLM_F_MULTI,
3003 RTM_NEWCHAIN);
Vlad Buslovace4a262019-02-25 17:45:44 +02003004 if (err <= 0)
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003005 break;
3006 index++;
3007 }
Vlad Buslovace4a262019-02-25 17:45:44 +02003008 mutex_unlock(&block->lock);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003009
Vlad Buslov787ce6d2018-09-24 19:22:58 +03003010 if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK)
Vlad Buslov12db03b2019-02-11 10:55:45 +02003011 tcf_block_refcnt_put(block, true);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003012 cb->args[0] = index;
3013
3014out:
3015 /* If we did no progress, the error (EMSGSIZE) is real */
3016 if (skb->len == 0 && err)
3017 return err;
3018 return skb->len;
3019}
3020
WANG Cong18d02642014-09-25 10:26:37 -07003021void tcf_exts_destroy(struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022{
3023#ifdef CONFIG_NET_CLS_ACT
Eric Dumazet3d66b892019-09-18 12:57:04 -07003024 if (exts->actions) {
3025 tcf_action_destroy(exts->actions, TCA_ACT_UNBIND);
3026 kfree(exts->actions);
3027 }
WANG Cong22dc13c2016-08-13 22:35:00 -07003028 exts->nr_actions = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029#endif
3030}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003031EXPORT_SYMBOL(tcf_exts_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
Baowen Zhengc86e0202021-12-17 19:16:28 +01003033int tcf_exts_validate_ex(struct net *net, struct tcf_proto *tp, struct nlattr **tb,
3034 struct nlattr *rate_tlv, struct tcf_exts *exts,
3035 u32 flags, u32 fl_flags, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037#ifdef CONFIG_NET_CLS_ACT
3038 {
Vlad Buslov87c750e2021-04-07 18:36:03 +03003039 int init_res[TCA_ACT_MAX_PRIO] = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 struct tc_action *act;
Roman Mashakd04e6992018-03-08 16:59:17 -05003041 size_t attr_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
WANG Cong5da57f42013-12-15 20:15:07 -08003043 if (exts->police && tb[exts->police]) {
Cong Wangd349f992021-01-16 16:56:57 -08003044 struct tc_action_ops *a_o;
3045
Cong Wang695176b2021-07-29 16:12:14 -07003046 a_o = tc_action_load_ops(tb[exts->police], true,
3047 !(flags & TCA_ACT_FLAGS_NO_RTNL),
3048 extack);
Cong Wangd349f992021-01-16 16:56:57 -08003049 if (IS_ERR(a_o))
3050 return PTR_ERR(a_o);
Cong Wang695176b2021-07-29 16:12:14 -07003051 flags |= TCA_ACT_FLAGS_POLICE | TCA_ACT_FLAGS_BIND;
Jiri Pirko9fb9f252017-05-17 11:08:02 +02003052 act = tcf_action_init_1(net, tp, tb[exts->police],
Cong Wang695176b2021-07-29 16:12:14 -07003053 rate_tlv, a_o, init_res, flags,
3054 extack);
Vlad Buslovb3650bf72021-04-07 18:36:04 +03003055 module_put(a_o->owner);
3056 if (IS_ERR(act))
Patrick McHardyab27cfb2008-01-23 20:33:13 -08003057 return PTR_ERR(act);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
WANG Cong33be6272013-12-15 20:15:05 -08003059 act->type = exts->type = TCA_OLD_COMPAT;
WANG Cong22dc13c2016-08-13 22:35:00 -07003060 exts->actions[0] = act;
3061 exts->nr_actions = 1;
Vlad Buslov396d7f22021-02-16 18:22:00 +02003062 tcf_idr_insert_many(exts->actions);
WANG Cong5da57f42013-12-15 20:15:07 -08003063 } else if (exts->action && tb[exts->action]) {
Vlad Buslov90b73b72018-07-05 17:24:33 +03003064 int err;
WANG Cong22dc13c2016-08-13 22:35:00 -07003065
Cong Wang695176b2021-07-29 16:12:14 -07003066 flags |= TCA_ACT_FLAGS_BIND;
Jiri Pirko9fb9f252017-05-17 11:08:02 +02003067 err = tcf_action_init(net, tp, tb[exts->action],
Cong Wang695176b2021-07-29 16:12:14 -07003068 rate_tlv, exts->actions, init_res,
Baowen Zhengc86e0202021-12-17 19:16:28 +01003069 &attr_size, flags, fl_flags,
3070 extack);
Vlad Buslov90b73b72018-07-05 17:24:33 +03003071 if (err < 0)
WANG Cong33be6272013-12-15 20:15:05 -08003072 return err;
Vlad Buslov90b73b72018-07-05 17:24:33 +03003073 exts->nr_actions = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 }
3075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076#else
WANG Cong5da57f42013-12-15 20:15:07 -08003077 if ((exts->action && tb[exts->action]) ||
Alexander Aring50a56192018-01-18 11:20:52 -05003078 (exts->police && tb[exts->police])) {
3079 NL_SET_ERR_MSG(extack, "Classifier actions are not supported per compile options (CONFIG_NET_CLS_ACT)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 return -EOPNOTSUPP;
Alexander Aring50a56192018-01-18 11:20:52 -05003081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082#endif
3083
3084 return 0;
3085}
Baowen Zhengc86e0202021-12-17 19:16:28 +01003086EXPORT_SYMBOL(tcf_exts_validate_ex);
3087
3088int tcf_exts_validate(struct net *net, struct tcf_proto *tp, struct nlattr **tb,
3089 struct nlattr *rate_tlv, struct tcf_exts *exts,
3090 u32 flags, struct netlink_ext_ack *extack)
3091{
3092 return tcf_exts_validate_ex(net, tp, tb, rate_tlv, exts,
3093 flags, 0, extack);
3094}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003095EXPORT_SYMBOL(tcf_exts_validate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
Jiri Pirko9b0d4442017-08-04 14:29:15 +02003097void tcf_exts_change(struct tcf_exts *dst, struct tcf_exts *src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098{
3099#ifdef CONFIG_NET_CLS_ACT
WANG Cong22dc13c2016-08-13 22:35:00 -07003100 struct tcf_exts old = *dst;
3101
Jiri Pirko9b0d4442017-08-04 14:29:15 +02003102 *dst = *src;
WANG Cong22dc13c2016-08-13 22:35:00 -07003103 tcf_exts_destroy(&old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104#endif
3105}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003106EXPORT_SYMBOL(tcf_exts_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
WANG Cong22dc13c2016-08-13 22:35:00 -07003108#ifdef CONFIG_NET_CLS_ACT
3109static struct tc_action *tcf_exts_first_act(struct tcf_exts *exts)
3110{
3111 if (exts->nr_actions == 0)
3112 return NULL;
3113 else
3114 return exts->actions[0];
3115}
3116#endif
WANG Cong33be6272013-12-15 20:15:05 -08003117
WANG Cong5da57f42013-12-15 20:15:07 -08003118int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119{
3120#ifdef CONFIG_NET_CLS_ACT
Cong Wang9cc63db2014-07-16 14:25:30 -07003121 struct nlattr *nest;
3122
Jiri Pirko978dfd82017-08-04 14:29:03 +02003123 if (exts->action && tcf_exts_has_actions(exts)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 /*
3125 * again for backward compatible mode - we want
3126 * to work with both old and new modes of entering
3127 * tc data even if iproute2 was newer - jhs
3128 */
WANG Cong33be6272013-12-15 20:15:05 -08003129 if (exts->type != TCA_OLD_COMPAT) {
Michal Kubecekae0be8d2019-04-26 11:13:06 +02003130 nest = nla_nest_start_noflag(skb, exts->action);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08003131 if (nest == NULL)
3132 goto nla_put_failure;
WANG Cong22dc13c2016-08-13 22:35:00 -07003133
Vlad Buslovca44b732020-05-15 14:40:12 +03003134 if (tcf_action_dump(skb, exts->actions, 0, 0, false)
3135 < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -08003136 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08003137 nla_nest_end(skb, nest);
WANG Cong5da57f42013-12-15 20:15:07 -08003138 } else if (exts->police) {
WANG Cong33be6272013-12-15 20:15:05 -08003139 struct tc_action *act = tcf_exts_first_act(exts);
Michal Kubecekae0be8d2019-04-26 11:13:06 +02003140 nest = nla_nest_start_noflag(skb, exts->police);
Jamal Hadi Salim63acd682013-12-23 08:02:12 -05003141 if (nest == NULL || !act)
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08003142 goto nla_put_failure;
WANG Cong33be6272013-12-15 20:15:05 -08003143 if (tcf_action_dump_old(skb, act, 0, 0) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -08003144 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08003145 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 }
3147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 return 0;
Cong Wang9cc63db2014-07-16 14:25:30 -07003149
3150nla_put_failure:
3151 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 return -1;
Cong Wang9cc63db2014-07-16 14:25:30 -07003153#else
3154 return 0;
3155#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003157EXPORT_SYMBOL(tcf_exts_dump);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
Vlad Buslovca44b732020-05-15 14:40:12 +03003159int tcf_exts_terse_dump(struct sk_buff *skb, struct tcf_exts *exts)
3160{
3161#ifdef CONFIG_NET_CLS_ACT
3162 struct nlattr *nest;
3163
3164 if (!exts->action || !tcf_exts_has_actions(exts))
3165 return 0;
3166
3167 nest = nla_nest_start_noflag(skb, exts->action);
3168 if (!nest)
3169 goto nla_put_failure;
3170
3171 if (tcf_action_dump(skb, exts->actions, 0, 0, true) < 0)
3172 goto nla_put_failure;
3173 nla_nest_end(skb, nest);
3174 return 0;
3175
3176nla_put_failure:
3177 nla_nest_cancel(skb, nest);
3178 return -1;
3179#else
3180 return 0;
3181#endif
3182}
3183EXPORT_SYMBOL(tcf_exts_terse_dump);
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003184
WANG Cong5da57f42013-12-15 20:15:07 -08003185int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186{
3187#ifdef CONFIG_NET_CLS_ACT
WANG Cong33be6272013-12-15 20:15:05 -08003188 struct tc_action *a = tcf_exts_first_act(exts);
Ignacy Gawędzkib057df22015-02-03 19:05:18 +01003189 if (a != NULL && tcf_action_copy_stats(skb, a, 1) < 0)
WANG Cong33be6272013-12-15 20:15:05 -08003190 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191#endif
3192 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003194EXPORT_SYMBOL(tcf_exts_dump_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Vlad Buslov40119212019-08-26 16:44:59 +03003196static void tcf_block_offload_inc(struct tcf_block *block, u32 *flags)
3197{
3198 if (*flags & TCA_CLS_FLAGS_IN_HW)
3199 return;
3200 *flags |= TCA_CLS_FLAGS_IN_HW;
3201 atomic_inc(&block->offloadcnt);
3202}
3203
3204static void tcf_block_offload_dec(struct tcf_block *block, u32 *flags)
3205{
3206 if (!(*flags & TCA_CLS_FLAGS_IN_HW))
3207 return;
3208 *flags &= ~TCA_CLS_FLAGS_IN_HW;
3209 atomic_dec(&block->offloadcnt);
3210}
3211
3212static void tc_cls_offload_cnt_update(struct tcf_block *block,
3213 struct tcf_proto *tp, u32 *cnt,
3214 u32 *flags, u32 diff, bool add)
3215{
3216 lockdep_assert_held(&block->cb_lock);
3217
3218 spin_lock(&tp->lock);
3219 if (add) {
3220 if (!*cnt)
3221 tcf_block_offload_inc(block, flags);
3222 *cnt += diff;
3223 } else {
3224 *cnt -= diff;
3225 if (!*cnt)
3226 tcf_block_offload_dec(block, flags);
3227 }
3228 spin_unlock(&tp->lock);
3229}
3230
3231static void
3232tc_cls_offload_cnt_reset(struct tcf_block *block, struct tcf_proto *tp,
3233 u32 *cnt, u32 *flags)
3234{
3235 lockdep_assert_held(&block->cb_lock);
3236
3237 spin_lock(&tp->lock);
3238 tcf_block_offload_dec(block, flags);
3239 *cnt = 0;
3240 spin_unlock(&tp->lock);
3241}
3242
3243static int
3244__tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type,
3245 void *type_data, bool err_stop)
Jiri Pirko717503b2017-10-11 09:41:09 +02003246{
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +02003247 struct flow_block_cb *block_cb;
Cong Wangaeb3fec2018-12-11 11:15:46 -08003248 int ok_count = 0;
3249 int err;
3250
Vlad Buslov40119212019-08-26 16:44:59 +03003251 list_for_each_entry(block_cb, &block->flow_block.cb_list, list) {
3252 err = block_cb->cb(type, type_data, block_cb->cb_priv);
3253 if (err) {
3254 if (err_stop)
3255 return err;
3256 } else {
3257 ok_count++;
3258 }
3259 }
3260 return ok_count;
3261}
3262
3263int tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type,
3264 void *type_data, bool err_stop, bool rtnl_held)
3265{
Vlad Buslov11bd6342019-08-26 16:45:02 +03003266 bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
Vlad Buslov40119212019-08-26 16:44:59 +03003267 int ok_count;
3268
Vlad Buslov11bd6342019-08-26 16:45:02 +03003269retry:
3270 if (take_rtnl)
3271 rtnl_lock();
Vlad Buslov40119212019-08-26 16:44:59 +03003272 down_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003273 /* Need to obtain rtnl lock if block is bound to devs that require it.
3274 * In block bind code cb_lock is obtained while holding rtnl, so we must
3275 * obtain the locks in same order here.
3276 */
3277 if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3278 up_read(&block->cb_lock);
3279 take_rtnl = true;
3280 goto retry;
3281 }
3282
Vlad Buslov40119212019-08-26 16:44:59 +03003283 ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003284
Vlad Buslov40119212019-08-26 16:44:59 +03003285 up_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003286 if (take_rtnl)
3287 rtnl_unlock();
Vlad Buslov40119212019-08-26 16:44:59 +03003288 return ok_count;
3289}
3290EXPORT_SYMBOL(tc_setup_cb_call);
3291
3292/* Non-destructive filter add. If filter that wasn't already in hardware is
3293 * successfully offloaded, increment block offloads counter. On failure,
3294 * previously offloaded filter is considered to be intact and offloads counter
3295 * is not decremented.
3296 */
3297
3298int tc_setup_cb_add(struct tcf_block *block, struct tcf_proto *tp,
3299 enum tc_setup_type type, void *type_data, bool err_stop,
3300 u32 *flags, unsigned int *in_hw_count, bool rtnl_held)
3301{
Vlad Buslov11bd6342019-08-26 16:45:02 +03003302 bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
Vlad Buslov40119212019-08-26 16:44:59 +03003303 int ok_count;
3304
Vlad Buslov11bd6342019-08-26 16:45:02 +03003305retry:
3306 if (take_rtnl)
3307 rtnl_lock();
Vlad Buslov4f8116c2019-08-26 16:44:57 +03003308 down_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003309 /* Need to obtain rtnl lock if block is bound to devs that require it.
3310 * In block bind code cb_lock is obtained while holding rtnl, so we must
3311 * obtain the locks in same order here.
3312 */
3313 if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3314 up_read(&block->cb_lock);
3315 take_rtnl = true;
3316 goto retry;
3317 }
3318
Cong Wangaeb3fec2018-12-11 11:15:46 -08003319 /* Make sure all netdevs sharing this block are offload-capable. */
Vlad Buslov4f8116c2019-08-26 16:44:57 +03003320 if (block->nooffloaddevcnt && err_stop) {
3321 ok_count = -EOPNOTSUPP;
3322 goto err_unlock;
3323 }
Cong Wangaeb3fec2018-12-11 11:15:46 -08003324
Vlad Buslov40119212019-08-26 16:44:59 +03003325 ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
Vlad Buslova449a3e2019-08-26 16:45:00 +03003326 if (ok_count < 0)
3327 goto err_unlock;
3328
3329 if (tp->ops->hw_add)
3330 tp->ops->hw_add(tp, type_data);
Vlad Buslov40119212019-08-26 16:44:59 +03003331 if (ok_count > 0)
3332 tc_cls_offload_cnt_update(block, tp, in_hw_count, flags,
3333 ok_count, true);
Vlad Buslov4f8116c2019-08-26 16:44:57 +03003334err_unlock:
3335 up_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003336 if (take_rtnl)
3337 rtnl_unlock();
Yang Lic48c94b2021-12-21 09:14:55 +08003338 return min(ok_count, 0);
Jiri Pirko717503b2017-10-11 09:41:09 +02003339}
Vlad Buslov40119212019-08-26 16:44:59 +03003340EXPORT_SYMBOL(tc_setup_cb_add);
3341
3342/* Destructive filter replace. If filter that wasn't already in hardware is
3343 * successfully offloaded, increment block offload counter. On failure,
3344 * previously offloaded filter is considered to be destroyed and offload counter
3345 * is decremented.
3346 */
3347
3348int tc_setup_cb_replace(struct tcf_block *block, struct tcf_proto *tp,
3349 enum tc_setup_type type, void *type_data, bool err_stop,
3350 u32 *old_flags, unsigned int *old_in_hw_count,
3351 u32 *new_flags, unsigned int *new_in_hw_count,
3352 bool rtnl_held)
3353{
Vlad Buslov11bd6342019-08-26 16:45:02 +03003354 bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
Vlad Buslov40119212019-08-26 16:44:59 +03003355 int ok_count;
3356
Vlad Buslov11bd6342019-08-26 16:45:02 +03003357retry:
3358 if (take_rtnl)
3359 rtnl_lock();
Vlad Buslov40119212019-08-26 16:44:59 +03003360 down_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003361 /* Need to obtain rtnl lock if block is bound to devs that require it.
3362 * In block bind code cb_lock is obtained while holding rtnl, so we must
3363 * obtain the locks in same order here.
3364 */
3365 if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3366 up_read(&block->cb_lock);
3367 take_rtnl = true;
3368 goto retry;
3369 }
3370
Vlad Buslov40119212019-08-26 16:44:59 +03003371 /* Make sure all netdevs sharing this block are offload-capable. */
3372 if (block->nooffloaddevcnt && err_stop) {
3373 ok_count = -EOPNOTSUPP;
3374 goto err_unlock;
3375 }
3376
3377 tc_cls_offload_cnt_reset(block, tp, old_in_hw_count, old_flags);
Vlad Buslova449a3e2019-08-26 16:45:00 +03003378 if (tp->ops->hw_del)
3379 tp->ops->hw_del(tp, type_data);
Vlad Buslov40119212019-08-26 16:44:59 +03003380
3381 ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
Vlad Buslova449a3e2019-08-26 16:45:00 +03003382 if (ok_count < 0)
3383 goto err_unlock;
3384
3385 if (tp->ops->hw_add)
3386 tp->ops->hw_add(tp, type_data);
Vlad Buslov40119212019-08-26 16:44:59 +03003387 if (ok_count > 0)
Vlad Buslova449a3e2019-08-26 16:45:00 +03003388 tc_cls_offload_cnt_update(block, tp, new_in_hw_count,
3389 new_flags, ok_count, true);
Vlad Buslov40119212019-08-26 16:44:59 +03003390err_unlock:
3391 up_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003392 if (take_rtnl)
3393 rtnl_unlock();
Yang Lic48c94b2021-12-21 09:14:55 +08003394 return min(ok_count, 0);
Vlad Buslov40119212019-08-26 16:44:59 +03003395}
3396EXPORT_SYMBOL(tc_setup_cb_replace);
3397
3398/* Destroy filter and decrement block offload counter, if filter was previously
3399 * offloaded.
3400 */
3401
3402int tc_setup_cb_destroy(struct tcf_block *block, struct tcf_proto *tp,
3403 enum tc_setup_type type, void *type_data, bool err_stop,
3404 u32 *flags, unsigned int *in_hw_count, bool rtnl_held)
3405{
Vlad Buslov11bd6342019-08-26 16:45:02 +03003406 bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
Vlad Buslov40119212019-08-26 16:44:59 +03003407 int ok_count;
3408
Vlad Buslov11bd6342019-08-26 16:45:02 +03003409retry:
3410 if (take_rtnl)
3411 rtnl_lock();
Vlad Buslov40119212019-08-26 16:44:59 +03003412 down_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003413 /* Need to obtain rtnl lock if block is bound to devs that require it.
3414 * In block bind code cb_lock is obtained while holding rtnl, so we must
3415 * obtain the locks in same order here.
3416 */
3417 if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3418 up_read(&block->cb_lock);
3419 take_rtnl = true;
3420 goto retry;
3421 }
3422
Vlad Buslov40119212019-08-26 16:44:59 +03003423 ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
3424
3425 tc_cls_offload_cnt_reset(block, tp, in_hw_count, flags);
Vlad Buslova449a3e2019-08-26 16:45:00 +03003426 if (tp->ops->hw_del)
3427 tp->ops->hw_del(tp, type_data);
3428
Vlad Buslov40119212019-08-26 16:44:59 +03003429 up_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003430 if (take_rtnl)
3431 rtnl_unlock();
Yang Lic48c94b2021-12-21 09:14:55 +08003432 return min(ok_count, 0);
Vlad Buslov40119212019-08-26 16:44:59 +03003433}
3434EXPORT_SYMBOL(tc_setup_cb_destroy);
3435
3436int tc_setup_cb_reoffload(struct tcf_block *block, struct tcf_proto *tp,
3437 bool add, flow_setup_cb_t *cb,
3438 enum tc_setup_type type, void *type_data,
3439 void *cb_priv, u32 *flags, unsigned int *in_hw_count)
3440{
3441 int err = cb(type, type_data, cb_priv);
3442
3443 if (err) {
3444 if (add && tc_skip_sw(*flags))
3445 return err;
3446 } else {
3447 tc_cls_offload_cnt_update(block, tp, in_hw_count, flags, 1,
3448 add);
3449 }
3450
3451 return 0;
3452}
3453EXPORT_SYMBOL(tc_setup_cb_reoffload);
Jiri Pirkob3f55bd2017-10-11 09:41:08 +02003454
Jiri Pirko20084952020-02-25 11:45:18 +01003455static int tcf_act_get_cookie(struct flow_action_entry *entry,
3456 const struct tc_action *act)
3457{
3458 struct tc_cookie *cookie;
3459 int err = 0;
3460
3461 rcu_read_lock();
3462 cookie = rcu_dereference(act->act_cookie);
3463 if (cookie) {
3464 entry->cookie = flow_action_cookie_create(cookie->data,
3465 cookie->len,
3466 GFP_ATOMIC);
3467 if (!entry->cookie)
3468 err = -ENOMEM;
3469 }
3470 rcu_read_unlock();
3471 return err;
3472}
3473
3474static void tcf_act_put_cookie(struct flow_action_entry *entry)
3475{
3476 flow_action_cookie_destroy(entry->cookie);
3477}
3478
Baowen Zheng9c1c0e12021-12-17 19:16:20 +01003479void tc_cleanup_offload_action(struct flow_action *flow_action)
Vlad Buslov5a6ff4b2019-08-26 16:45:04 +03003480{
3481 struct flow_action_entry *entry;
3482 int i;
3483
Jiri Pirko20084952020-02-25 11:45:18 +01003484 flow_action_for_each(i, entry, flow_action) {
3485 tcf_act_put_cookie(entry);
Vlad Buslov11589582019-09-13 18:28:39 +03003486 if (entry->destructor)
3487 entry->destructor(entry->destructor_priv);
Jiri Pirko20084952020-02-25 11:45:18 +01003488 }
Vlad Buslov5a6ff4b2019-08-26 16:45:04 +03003489}
Baowen Zheng9c1c0e12021-12-17 19:16:20 +01003490EXPORT_SYMBOL(tc_cleanup_offload_action);
Vlad Buslov5a6ff4b2019-08-26 16:45:04 +03003491
Baowen Zhengc54e1d92021-12-17 19:16:21 +01003492static int tc_setup_offload_act(struct tc_action *act,
3493 struct flow_action_entry *entry,
3494 u32 *index_inc)
Vlad Buslov11589582019-09-13 18:28:39 +03003495{
Vlad Buslov470d5062019-09-13 18:28:41 +03003496#ifdef CONFIG_NET_CLS_ACT
Baowen Zhengc54e1d92021-12-17 19:16:21 +01003497 if (act->ops->offload_act_setup)
3498 return act->ops->offload_act_setup(act, entry, index_inc, true);
3499 else
3500 return -EOPNOTSUPP;
3501#else
Vlad Buslov11589582019-09-13 18:28:39 +03003502 return 0;
Vlad Buslov4a5da472019-09-13 18:28:40 +03003503#endif
3504}
3505
Baowen Zheng8cbfe932021-12-17 19:16:22 +01003506int tc_setup_action(struct flow_action *flow_action,
3507 struct tc_action *actions[])
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003508{
Baowen Zhengc54e1d92021-12-17 19:16:21 +01003509 int i, j, index, err = 0;
Vlad Buslov7a472812020-02-17 12:12:09 +02003510 struct tc_action *act;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003511
Jakub Kicinski0dfb2d82020-03-19 16:26:23 -07003512 BUILD_BUG_ON(TCA_ACT_HW_STATS_ANY != FLOW_ACTION_HW_STATS_ANY);
3513 BUILD_BUG_ON(TCA_ACT_HW_STATS_IMMEDIATE != FLOW_ACTION_HW_STATS_IMMEDIATE);
3514 BUILD_BUG_ON(TCA_ACT_HW_STATS_DELAYED != FLOW_ACTION_HW_STATS_DELAYED);
Jiri Pirko44f86582020-03-07 12:40:20 +01003515
Baowen Zheng8cbfe932021-12-17 19:16:22 +01003516 if (!actions)
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003517 return 0;
3518
3519 j = 0;
Baowen Zheng8cbfe932021-12-17 19:16:22 +01003520 tcf_act_for_each_action(i, act, actions) {
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003521 struct flow_action_entry *entry;
3522
3523 entry = &flow_action->entries[j];
Vlad Buslov7a472812020-02-17 12:12:09 +02003524 spin_lock_bh(&act->tcfa_lock);
Jiri Pirko20084952020-02-25 11:45:18 +01003525 err = tcf_act_get_cookie(entry, act);
3526 if (err)
3527 goto err_out_locked;
Jiri Pirko44f86582020-03-07 12:40:20 +01003528
Pablo Neira Ayuso16f80362020-05-06 20:34:50 +02003529 entry->hw_stats = tc_act_hw_stats(act->hw_stats);
Baowen Zheng5a995902021-12-17 19:16:19 +01003530 entry->hw_index = act->tcfa_index;
Baowen Zhengc54e1d92021-12-17 19:16:21 +01003531 index = 0;
3532 err = tc_setup_offload_act(act, entry, &index);
3533 if (!err)
3534 j += index;
3535 else
Vlad Buslov7a472812020-02-17 12:12:09 +02003536 goto err_out_locked;
Vlad Buslov7a472812020-02-17 12:12:09 +02003537 spin_unlock_bh(&act->tcfa_lock);
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003538 }
Vlad Buslov9838b202019-08-26 16:45:03 +03003539
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003540err_out:
Vlad Buslov5a6ff4b2019-08-26 16:45:04 +03003541 if (err)
Baowen Zheng9c1c0e12021-12-17 19:16:20 +01003542 tc_cleanup_offload_action(flow_action);
Vlad Buslov5a6ff4b2019-08-26 16:45:04 +03003543
Vlad Buslov9838b202019-08-26 16:45:03 +03003544 return err;
Vlad Buslov7a472812020-02-17 12:12:09 +02003545err_out_locked:
3546 spin_unlock_bh(&act->tcfa_lock);
3547 goto err_out;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003548}
Baowen Zheng8cbfe932021-12-17 19:16:22 +01003549
3550int tc_setup_offload_action(struct flow_action *flow_action,
3551 const struct tcf_exts *exts)
3552{
3553#ifdef CONFIG_NET_CLS_ACT
3554 if (!exts)
3555 return 0;
3556
3557 return tc_setup_action(flow_action, exts->actions);
3558#else
3559 return 0;
3560#endif
3561}
Baowen Zheng9c1c0e12021-12-17 19:16:20 +01003562EXPORT_SYMBOL(tc_setup_offload_action);
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003563
Pablo Neira Ayusoe3ab7862019-02-02 12:50:45 +01003564unsigned int tcf_exts_num_actions(struct tcf_exts *exts)
3565{
3566 unsigned int num_acts = 0;
3567 struct tc_action *act;
3568 int i;
3569
3570 tcf_exts_for_each_action(i, act, exts) {
3571 if (is_tcf_pedit(act))
3572 num_acts += tcf_pedit_nkeys(act);
3573 else
3574 num_acts++;
3575 }
3576 return num_acts;
3577}
3578EXPORT_SYMBOL(tcf_exts_num_actions);
3579
Petr Machata36257502020-06-27 01:45:26 +03003580#ifdef CONFIG_NET_CLS_ACT
3581static int tcf_qevent_parse_block_index(struct nlattr *block_index_attr,
3582 u32 *p_block_index,
3583 struct netlink_ext_ack *extack)
3584{
3585 *p_block_index = nla_get_u32(block_index_attr);
3586 if (!*p_block_index) {
3587 NL_SET_ERR_MSG(extack, "Block number may not be zero");
3588 return -EINVAL;
3589 }
3590
3591 return 0;
3592}
3593
3594int tcf_qevent_init(struct tcf_qevent *qe, struct Qdisc *sch,
3595 enum flow_block_binder_type binder_type,
3596 struct nlattr *block_index_attr,
3597 struct netlink_ext_ack *extack)
3598{
3599 u32 block_index;
3600 int err;
3601
3602 if (!block_index_attr)
3603 return 0;
3604
3605 err = tcf_qevent_parse_block_index(block_index_attr, &block_index, extack);
3606 if (err)
3607 return err;
3608
3609 if (!block_index)
3610 return 0;
3611
3612 qe->info.binder_type = binder_type;
3613 qe->info.chain_head_change = tcf_chain_head_change_dflt;
3614 qe->info.chain_head_change_priv = &qe->filter_chain;
3615 qe->info.block_index = block_index;
3616
3617 return tcf_block_get_ext(&qe->block, sch, &qe->info, extack);
3618}
3619EXPORT_SYMBOL(tcf_qevent_init);
3620
3621void tcf_qevent_destroy(struct tcf_qevent *qe, struct Qdisc *sch)
3622{
3623 if (qe->info.block_index)
3624 tcf_block_put_ext(qe->block, sch, &qe->info);
3625}
3626EXPORT_SYMBOL(tcf_qevent_destroy);
3627
3628int tcf_qevent_validate_change(struct tcf_qevent *qe, struct nlattr *block_index_attr,
3629 struct netlink_ext_ack *extack)
3630{
3631 u32 block_index;
3632 int err;
3633
3634 if (!block_index_attr)
3635 return 0;
3636
3637 err = tcf_qevent_parse_block_index(block_index_attr, &block_index, extack);
3638 if (err)
3639 return err;
3640
3641 /* Bounce newly-configured block or change in block. */
3642 if (block_index != qe->info.block_index) {
3643 NL_SET_ERR_MSG(extack, "Change of blocks is not supported");
3644 return -EINVAL;
3645 }
3646
3647 return 0;
3648}
3649EXPORT_SYMBOL(tcf_qevent_validate_change);
3650
3651struct sk_buff *tcf_qevent_handle(struct tcf_qevent *qe, struct Qdisc *sch, struct sk_buff *skb,
Petr Machata55f656c2020-07-14 20:03:07 +03003652 struct sk_buff **to_free, int *ret)
Petr Machata36257502020-06-27 01:45:26 +03003653{
3654 struct tcf_result cl_res;
3655 struct tcf_proto *fl;
3656
3657 if (!qe->info.block_index)
3658 return skb;
3659
3660 fl = rcu_dereference_bh(qe->filter_chain);
3661
Davide Caratti3aa26052021-07-28 20:08:00 +02003662 switch (tcf_classify(skb, NULL, fl, &cl_res, false)) {
Petr Machata36257502020-06-27 01:45:26 +03003663 case TC_ACT_SHOT:
3664 qdisc_qstats_drop(sch);
3665 __qdisc_drop(skb, to_free);
3666 *ret = __NET_XMIT_BYPASS;
3667 return NULL;
3668 case TC_ACT_STOLEN:
3669 case TC_ACT_QUEUED:
3670 case TC_ACT_TRAP:
3671 __qdisc_drop(skb, to_free);
3672 *ret = __NET_XMIT_STOLEN;
3673 return NULL;
3674 case TC_ACT_REDIRECT:
3675 skb_do_redirect(skb);
3676 *ret = __NET_XMIT_STOLEN;
3677 return NULL;
3678 }
3679
Petr Machata36257502020-06-27 01:45:26 +03003680 return skb;
3681}
3682EXPORT_SYMBOL(tcf_qevent_handle);
3683
3684int tcf_qevent_dump(struct sk_buff *skb, int attr_name, struct tcf_qevent *qe)
3685{
3686 if (!qe->info.block_index)
3687 return 0;
3688 return nla_put_u32(skb, attr_name, qe->info.block_index);
3689}
3690EXPORT_SYMBOL(tcf_qevent_dump);
3691#endif
3692
Jiri Pirko48617382018-01-17 11:46:46 +01003693static __net_init int tcf_net_init(struct net *net)
3694{
3695 struct tcf_net *tn = net_generic(net, tcf_net_id);
3696
Vlad Buslovab281622018-09-24 19:22:56 +03003697 spin_lock_init(&tn->idr_lock);
Jiri Pirko48617382018-01-17 11:46:46 +01003698 idr_init(&tn->idr);
3699 return 0;
3700}
3701
3702static void __net_exit tcf_net_exit(struct net *net)
3703{
3704 struct tcf_net *tn = net_generic(net, tcf_net_id);
3705
3706 idr_destroy(&tn->idr);
3707}
3708
3709static struct pernet_operations tcf_net_ops = {
3710 .init = tcf_net_init,
3711 .exit = tcf_net_exit,
3712 .id = &tcf_net_id,
3713 .size = sizeof(struct tcf_net),
3714};
3715
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716static int __init tc_filter_init(void)
3717{
Jiri Pirko48617382018-01-17 11:46:46 +01003718 int err;
3719
Cong Wang7aa00452017-10-26 18:24:28 -07003720 tc_filter_wq = alloc_ordered_workqueue("tc_filter_workqueue", 0);
3721 if (!tc_filter_wq)
3722 return -ENOMEM;
3723
Jiri Pirko48617382018-01-17 11:46:46 +01003724 err = register_pernet_subsys(&tcf_net_ops);
3725 if (err)
3726 goto err_register_pernet_subsys;
3727
Vlad Buslov470502d2019-02-11 10:55:48 +02003728 rtnl_register(PF_UNSPEC, RTM_NEWTFILTER, tc_new_tfilter, NULL,
3729 RTNL_FLAG_DOIT_UNLOCKED);
3730 rtnl_register(PF_UNSPEC, RTM_DELTFILTER, tc_del_tfilter, NULL,
3731 RTNL_FLAG_DOIT_UNLOCKED);
Vlad Buslovc431f892018-05-31 09:52:53 +03003732 rtnl_register(PF_UNSPEC, RTM_GETTFILTER, tc_get_tfilter,
Vlad Buslov470502d2019-02-11 10:55:48 +02003733 tc_dump_tfilter, RTNL_FLAG_DOIT_UNLOCKED);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003734 rtnl_register(PF_UNSPEC, RTM_NEWCHAIN, tc_ctl_chain, NULL, 0);
3735 rtnl_register(PF_UNSPEC, RTM_DELCHAIN, tc_ctl_chain, NULL, 0);
3736 rtnl_register(PF_UNSPEC, RTM_GETCHAIN, tc_ctl_chain,
3737 tc_dump_chain, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 return 0;
Jiri Pirko48617382018-01-17 11:46:46 +01003740
3741err_register_pernet_subsys:
3742 destroy_workqueue(tc_filter_wq);
3743 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744}
3745
3746subsys_initcall(tc_filter_init);