blob: 69185e311422bf19ffbbdd83bf1a5a7b13dd30fa [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;
Pablo Neira Ayuso324a8232020-05-29 02:25:36 +0200637 INIT_LIST_HEAD(&bo->cb_list);
638}
639
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200640static void tcf_block_unbind(struct tcf_block *block,
641 struct flow_block_offload *bo);
John Hurley7f76fa32018-11-09 21:21:26 -0800642
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200643static void tc_block_indr_cleanup(struct flow_block_cb *block_cb)
644{
645 struct tcf_block *block = block_cb->indr.data;
646 struct net_device *dev = block_cb->indr.dev;
Petr Machatac40f4e52020-07-11 00:55:03 +0300647 struct Qdisc *sch = block_cb->indr.sch;
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200648 struct netlink_ext_ack extack = {};
Yunjian Wang990b03b2021-04-01 12:52:48 +0800649 struct flow_block_offload bo = {};
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200650
Petr Machatac40f4e52020-07-11 00:55:03 +0300651 tcf_block_offload_init(&bo, dev, sch, FLOW_BLOCK_UNBIND,
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200652 block_cb->indr.binder_type,
653 &block->flow_block, tcf_block_shared(block),
654 &extack);
Leon Romanovskyd6535dc2020-10-26 14:33:27 +0200655 rtnl_lock();
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200656 down_write(&block->cb_lock);
wenxua1db2172020-06-18 20:49:10 +0800657 list_del(&block_cb->driver_list);
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200658 list_move(&block_cb->list, &bo.cb_list);
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200659 tcf_block_unbind(block, &bo);
Leon Romanovskyd6535dc2020-10-26 14:33:27 +0200660 up_write(&block->cb_lock);
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200661 rtnl_unlock();
John Hurley7f76fa32018-11-09 21:21:26 -0800662}
663
Jiri Pirkocaa72602018-01-17 11:46:50 +0100664static bool tcf_block_offload_in_use(struct tcf_block *block)
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200665{
Vlad Buslov97394be2019-08-26 16:44:58 +0300666 return atomic_read(&block->offloadcnt);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100667}
668
669static int tcf_block_offload_cmd(struct tcf_block *block,
Petr Machatac40f4e52020-07-11 00:55:03 +0300670 struct net_device *dev, struct Qdisc *sch,
Jiri Pirkocaa72602018-01-17 11:46:50 +0100671 struct tcf_block_ext_info *ei,
Pablo Neira Ayuso9c0e1892019-07-09 22:55:40 +0200672 enum flow_block_command command,
John Hurley60513bd2018-06-25 14:30:04 -0700673 struct netlink_ext_ack *extack)
Jiri Pirkocaa72602018-01-17 11:46:50 +0100674{
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +0200675 struct flow_block_offload bo = {};
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200676
Petr Machatac40f4e52020-07-11 00:55:03 +0300677 tcf_block_offload_init(&bo, dev, sch, command, ei->binder_type,
Pablo Neira Ayuso324a8232020-05-29 02:25:36 +0200678 &block->flow_block, tcf_block_shared(block),
679 extack);
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +0200680
wenxu3c005112020-06-18 20:49:11 +0800681 if (dev->netdev_ops->ndo_setup_tc) {
682 int err;
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200683
wenxu3c005112020-06-18 20:49:11 +0800684 err = dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_BLOCK, &bo);
685 if (err < 0) {
686 if (err != -EOPNOTSUPP)
687 NL_SET_ERR_MSG(extack, "Driver ndo_setup_tc failed");
688 return err;
689 }
690
691 return tcf_block_setup(block, &bo);
Jesper Dangaard Brouerb70ba692020-04-23 16:57:45 +0200692 }
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +0200693
Petr Machatac40f4e52020-07-11 00:55:03 +0300694 flow_indr_dev_setup_offload(dev, sch, TC_SETUP_BLOCK, block, &bo,
wenxu3c005112020-06-18 20:49:11 +0800695 tc_block_indr_cleanup);
696 tcf_block_setup(block, &bo);
697
698 return -EOPNOTSUPP;
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200699}
700
Jiri Pirkocaa72602018-01-17 11:46:50 +0100701static int tcf_block_offload_bind(struct tcf_block *block, struct Qdisc *q,
John Hurley60513bd2018-06-25 14:30:04 -0700702 struct tcf_block_ext_info *ei,
703 struct netlink_ext_ack *extack)
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200704{
Jiri Pirkocaa72602018-01-17 11:46:50 +0100705 struct net_device *dev = q->dev_queue->dev;
706 int err;
707
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300708 down_write(&block->cb_lock);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100709
710 /* If tc offload feature is disabled and the block we try to bind
711 * to already has some offloaded filters, forbid to bind.
712 */
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200713 if (dev->netdev_ops->ndo_setup_tc &&
714 !tc_can_offload(dev) &&
715 tcf_block_offload_in_use(block)) {
John Hurley60513bd2018-06-25 14:30:04 -0700716 NL_SET_ERR_MSG(extack, "Bind to offloaded block failed as dev has offload disabled");
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300717 err = -EOPNOTSUPP;
718 goto err_unlock;
John Hurley60513bd2018-06-25 14:30:04 -0700719 }
Jiri Pirkocaa72602018-01-17 11:46:50 +0100720
Petr Machatac40f4e52020-07-11 00:55:03 +0300721 err = tcf_block_offload_cmd(block, dev, q, ei, FLOW_BLOCK_BIND, extack);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100722 if (err == -EOPNOTSUPP)
723 goto no_offload_dev_inc;
John Hurley7f76fa32018-11-09 21:21:26 -0800724 if (err)
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300725 goto err_unlock;
John Hurley7f76fa32018-11-09 21:21:26 -0800726
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300727 up_write(&block->cb_lock);
John Hurley7f76fa32018-11-09 21:21:26 -0800728 return 0;
Jiri Pirkocaa72602018-01-17 11:46:50 +0100729
730no_offload_dev_inc:
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200731 if (tcf_block_offload_in_use(block))
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300732 goto err_unlock;
Pablo Neira Ayuso0fdcf782020-05-29 02:25:37 +0200733
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300734 err = 0;
Jiri Pirkocaa72602018-01-17 11:46:50 +0100735 block->nooffloaddevcnt++;
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300736err_unlock:
737 up_write(&block->cb_lock);
738 return err;
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200739}
740
741static void tcf_block_offload_unbind(struct tcf_block *block, struct Qdisc *q,
742 struct tcf_block_ext_info *ei)
743{
Jiri Pirkocaa72602018-01-17 11:46:50 +0100744 struct net_device *dev = q->dev_queue->dev;
745 int err;
746
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300747 down_write(&block->cb_lock);
Petr Machatac40f4e52020-07-11 00:55:03 +0300748 err = tcf_block_offload_cmd(block, dev, q, ei, FLOW_BLOCK_UNBIND, NULL);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100749 if (err == -EOPNOTSUPP)
750 goto no_offload_dev_dec;
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300751 up_write(&block->cb_lock);
Jiri Pirkocaa72602018-01-17 11:46:50 +0100752 return;
753
754no_offload_dev_dec:
755 WARN_ON(block->nooffloaddevcnt-- == 0);
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300756 up_write(&block->cb_lock);
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200757}
758
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100759static int
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200760tcf_chain0_head_change_cb_add(struct tcf_block *block,
761 struct tcf_block_ext_info *ei,
762 struct netlink_ext_ack *extack)
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100763{
764 struct tcf_filter_chain_list_item *item;
Vlad Buslov165f0132019-02-11 10:55:35 +0200765 struct tcf_chain *chain0;
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100766
767 item = kmalloc(sizeof(*item), GFP_KERNEL);
768 if (!item) {
769 NL_SET_ERR_MSG(extack, "Memory allocation for head change callback item failed");
770 return -ENOMEM;
771 }
772 item->chain_head_change = ei->chain_head_change;
773 item->chain_head_change_priv = ei->chain_head_change_priv;
Vlad Buslov165f0132019-02-11 10:55:35 +0200774
775 mutex_lock(&block->lock);
776 chain0 = block->chain0.chain;
Vlad Busloved76f5e2019-02-11 10:55:38 +0200777 if (chain0)
778 tcf_chain_hold(chain0);
779 else
780 list_add(&item->list, &block->chain0.filter_chain_list);
Vlad Buslov165f0132019-02-11 10:55:35 +0200781 mutex_unlock(&block->lock);
782
Vlad Busloved76f5e2019-02-11 10:55:38 +0200783 if (chain0) {
784 struct tcf_proto *tp_head;
785
786 mutex_lock(&chain0->filter_chain_lock);
787
788 tp_head = tcf_chain_dereference(chain0->filter_chain, chain0);
789 if (tp_head)
790 tcf_chain_head_change_item(item, tp_head);
791
792 mutex_lock(&block->lock);
793 list_add(&item->list, &block->chain0.filter_chain_list);
794 mutex_unlock(&block->lock);
795
796 mutex_unlock(&chain0->filter_chain_lock);
797 tcf_chain_put(chain0);
798 }
799
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100800 return 0;
801}
802
803static void
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200804tcf_chain0_head_change_cb_del(struct tcf_block *block,
805 struct tcf_block_ext_info *ei)
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100806{
807 struct tcf_filter_chain_list_item *item;
808
Vlad Buslov165f0132019-02-11 10:55:35 +0200809 mutex_lock(&block->lock);
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200810 list_for_each_entry(item, &block->chain0.filter_chain_list, list) {
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100811 if ((!ei->chain_head_change && !ei->chain_head_change_priv) ||
812 (item->chain_head_change == ei->chain_head_change &&
813 item->chain_head_change_priv == ei->chain_head_change_priv)) {
Vlad Buslov165f0132019-02-11 10:55:35 +0200814 if (block->chain0.chain)
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200815 tcf_chain_head_change_item(item, NULL);
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100816 list_del(&item->list);
Vlad Buslov165f0132019-02-11 10:55:35 +0200817 mutex_unlock(&block->lock);
818
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100819 kfree(item);
820 return;
821 }
822 }
Vlad Buslov165f0132019-02-11 10:55:35 +0200823 mutex_unlock(&block->lock);
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100824 WARN_ON(1);
825}
826
Jiri Pirko48617382018-01-17 11:46:46 +0100827struct tcf_net {
Vlad Buslovab281622018-09-24 19:22:56 +0300828 spinlock_t idr_lock; /* Protects idr */
Jiri Pirko48617382018-01-17 11:46:46 +0100829 struct idr idr;
830};
831
832static unsigned int tcf_net_id;
833
834static int tcf_block_insert(struct tcf_block *block, struct net *net,
Jiri Pirkobb047dd2018-02-13 12:00:16 +0100835 struct netlink_ext_ack *extack)
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100836{
Jiri Pirko48617382018-01-17 11:46:46 +0100837 struct tcf_net *tn = net_generic(net, tcf_net_id);
Vlad Buslovab281622018-09-24 19:22:56 +0300838 int err;
Jiri Pirko48617382018-01-17 11:46:46 +0100839
Vlad Buslovab281622018-09-24 19:22:56 +0300840 idr_preload(GFP_KERNEL);
841 spin_lock(&tn->idr_lock);
842 err = idr_alloc_u32(&tn->idr, block, &block->index, block->index,
843 GFP_NOWAIT);
844 spin_unlock(&tn->idr_lock);
845 idr_preload_end();
846
847 return err;
Jiri Pirkoa9b19442018-01-17 11:46:45 +0100848}
849
Jiri Pirko48617382018-01-17 11:46:46 +0100850static void tcf_block_remove(struct tcf_block *block, struct net *net)
Jiri Pirko6529eab2017-05-17 11:07:55 +0200851{
Jiri Pirko48617382018-01-17 11:46:46 +0100852 struct tcf_net *tn = net_generic(net, tcf_net_id);
853
Vlad Buslovab281622018-09-24 19:22:56 +0300854 spin_lock(&tn->idr_lock);
Matthew Wilcox9c160942017-11-28 09:48:43 -0500855 idr_remove(&tn->idr, block->index);
Vlad Buslovab281622018-09-24 19:22:56 +0300856 spin_unlock(&tn->idr_lock);
Jiri Pirko48617382018-01-17 11:46:46 +0100857}
858
859static struct tcf_block *tcf_block_create(struct net *net, struct Qdisc *q,
Jiri Pirkobb047dd2018-02-13 12:00:16 +0100860 u32 block_index,
Jiri Pirko48617382018-01-17 11:46:46 +0100861 struct netlink_ext_ack *extack)
862{
863 struct tcf_block *block;
Jiri Pirko6529eab2017-05-17 11:07:55 +0200864
Jiri Pirko48617382018-01-17 11:46:46 +0100865 block = kzalloc(sizeof(*block), GFP_KERNEL);
Alexander Aring8d1a77f2017-12-20 12:35:19 -0500866 if (!block) {
867 NL_SET_ERR_MSG(extack, "Memory allocation for block failed");
Jiri Pirko48617382018-01-17 11:46:46 +0100868 return ERR_PTR(-ENOMEM);
Alexander Aring8d1a77f2017-12-20 12:35:19 -0500869 }
Vlad Buslovc266f642019-02-11 10:55:32 +0200870 mutex_init(&block->lock);
John Hurley59eb87c2019-11-02 14:17:47 +0000871 mutex_init(&block->proto_destroy_lock);
Vlad Buslov4f8116c2019-08-26 16:44:57 +0300872 init_rwsem(&block->cb_lock);
Pablo Neira Ayuso14bfb132019-07-19 18:20:16 +0200873 flow_block_init(&block->flow_block);
Jiri Pirko5bc17012017-05-17 11:08:01 +0200874 INIT_LIST_HEAD(&block->chain_list);
Jiri Pirkof36fe1c2018-01-17 11:46:48 +0100875 INIT_LIST_HEAD(&block->owner_list);
Jiri Pirkof71e0ca42018-07-23 09:23:05 +0200876 INIT_LIST_HEAD(&block->chain0.filter_chain_list);
Jiri Pirkoacb67442017-10-19 15:50:31 +0200877
Vlad Buslovcfebd7e2018-09-24 19:22:54 +0300878 refcount_set(&block->refcnt, 1);
Jiri Pirko48617382018-01-17 11:46:46 +0100879 block->net = net;
Jiri Pirkobb047dd2018-02-13 12:00:16 +0100880 block->index = block_index;
881
882 /* Don't store q pointer for blocks which are shared */
883 if (!tcf_block_shared(block))
884 block->q = q;
Jiri Pirko48617382018-01-17 11:46:46 +0100885 return block;
Jiri Pirko48617382018-01-17 11:46:46 +0100886}
887
888static struct tcf_block *tcf_block_lookup(struct net *net, u32 block_index)
889{
890 struct tcf_net *tn = net_generic(net, tcf_net_id);
891
Matthew Wilcox322d8842017-11-28 10:01:24 -0500892 return idr_find(&tn->idr, block_index);
Jiri Pirko48617382018-01-17 11:46:46 +0100893}
894
Vlad Buslov0607e432018-09-24 19:22:57 +0300895static struct tcf_block *tcf_block_refcnt_get(struct net *net, u32 block_index)
896{
897 struct tcf_block *block;
898
899 rcu_read_lock();
900 block = tcf_block_lookup(net, block_index);
901 if (block && !refcount_inc_not_zero(&block->refcnt))
902 block = NULL;
903 rcu_read_unlock();
904
905 return block;
906}
907
Vlad Buslovbbf73832019-02-11 10:55:36 +0200908static struct tcf_chain *
909__tcf_get_next_chain(struct tcf_block *block, struct tcf_chain *chain)
910{
911 mutex_lock(&block->lock);
912 if (chain)
913 chain = list_is_last(&chain->list, &block->chain_list) ?
914 NULL : list_next_entry(chain, list);
915 else
916 chain = list_first_entry_or_null(&block->chain_list,
917 struct tcf_chain, list);
918
919 /* skip all action-only chains */
920 while (chain && tcf_chain_held_by_acts_only(chain))
921 chain = list_is_last(&chain->list, &block->chain_list) ?
922 NULL : list_next_entry(chain, list);
923
924 if (chain)
925 tcf_chain_hold(chain);
926 mutex_unlock(&block->lock);
927
928 return chain;
929}
930
931/* Function to be used by all clients that want to iterate over all chains on
932 * block. It properly obtains block->lock and takes reference to chain before
933 * returning it. Users of this function must be tolerant to concurrent chain
934 * insertion/deletion or ensure that no concurrent chain modification is
935 * possible. Note that all netlink dump callbacks cannot guarantee to provide
936 * consistent dump because rtnl lock is released each time skb is filled with
937 * data and sent to user-space.
938 */
939
940struct tcf_chain *
941tcf_get_next_chain(struct tcf_block *block, struct tcf_chain *chain)
942{
943 struct tcf_chain *chain_next = __tcf_get_next_chain(block, chain);
944
945 if (chain)
946 tcf_chain_put(chain);
947
948 return chain_next;
949}
950EXPORT_SYMBOL(tcf_get_next_chain);
951
Vlad Buslovfe2923a2019-02-11 10:55:40 +0200952static struct tcf_proto *
953__tcf_get_next_proto(struct tcf_chain *chain, struct tcf_proto *tp)
954{
Vlad Buslov8b646782019-02-11 10:55:41 +0200955 u32 prio = 0;
956
Vlad Buslovfe2923a2019-02-11 10:55:40 +0200957 ASSERT_RTNL();
958 mutex_lock(&chain->filter_chain_lock);
959
Vlad Buslov8b646782019-02-11 10:55:41 +0200960 if (!tp) {
Vlad Buslovfe2923a2019-02-11 10:55:40 +0200961 tp = tcf_chain_dereference(chain->filter_chain, chain);
Vlad Buslov8b646782019-02-11 10:55:41 +0200962 } else if (tcf_proto_is_deleting(tp)) {
963 /* 'deleting' flag is set and chain->filter_chain_lock was
964 * unlocked, which means next pointer could be invalid. Restart
965 * search.
966 */
967 prio = tp->prio + 1;
968 tp = tcf_chain_dereference(chain->filter_chain, chain);
969
970 for (; tp; tp = tcf_chain_dereference(tp->next, chain))
971 if (!tp->deleting && tp->prio >= prio)
972 break;
973 } else {
Vlad Buslovfe2923a2019-02-11 10:55:40 +0200974 tp = tcf_chain_dereference(tp->next, chain);
Vlad Buslov8b646782019-02-11 10:55:41 +0200975 }
Vlad Buslovfe2923a2019-02-11 10:55:40 +0200976
977 if (tp)
978 tcf_proto_get(tp);
979
980 mutex_unlock(&chain->filter_chain_lock);
981
982 return tp;
983}
984
985/* Function to be used by all clients that want to iterate over all tp's on
986 * chain. Users of this function must be tolerant to concurrent tp
987 * insertion/deletion or ensure that no concurrent chain modification is
988 * possible. Note that all netlink dump callbacks cannot guarantee to provide
989 * consistent dump because rtnl lock is released each time skb is filled with
990 * data and sent to user-space.
991 */
992
993struct tcf_proto *
Vlad Buslov0fca55e2020-11-27 17:12:05 +0200994tcf_get_next_proto(struct tcf_chain *chain, struct tcf_proto *tp)
Vlad Buslovfe2923a2019-02-11 10:55:40 +0200995{
996 struct tcf_proto *tp_next = __tcf_get_next_proto(chain, tp);
997
998 if (tp)
Vlad Buslov0fca55e2020-11-27 17:12:05 +0200999 tcf_proto_put(tp, true, NULL);
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001000
1001 return tp_next;
1002}
1003EXPORT_SYMBOL(tcf_get_next_proto);
1004
Vlad Buslov12db03b2019-02-11 10:55:45 +02001005static void tcf_block_flush_all_chains(struct tcf_block *block, bool rtnl_held)
Vlad Buslovf0023432018-09-24 19:22:55 +03001006{
1007 struct tcf_chain *chain;
1008
Vlad Buslovbbf73832019-02-11 10:55:36 +02001009 /* Last reference to block. At this point chains cannot be added or
1010 * removed concurrently.
Vlad Buslovf0023432018-09-24 19:22:55 +03001011 */
Vlad Buslovbbf73832019-02-11 10:55:36 +02001012 for (chain = tcf_get_next_chain(block, NULL);
1013 chain;
1014 chain = tcf_get_next_chain(block, chain)) {
Vlad Buslovf0023432018-09-24 19:22:55 +03001015 tcf_chain_put_explicitly_created(chain);
Vlad Buslov12db03b2019-02-11 10:55:45 +02001016 tcf_chain_flush(chain, rtnl_held);
Vlad Buslovf0023432018-09-24 19:22:55 +03001017 }
1018}
1019
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001020/* Lookup Qdisc and increments its reference counter.
1021 * Set parent, if necessary.
1022 */
1023
1024static int __tcf_qdisc_find(struct net *net, struct Qdisc **q,
1025 u32 *parent, int ifindex, bool rtnl_held,
1026 struct netlink_ext_ack *extack)
1027{
1028 const struct Qdisc_class_ops *cops;
1029 struct net_device *dev;
1030 int err = 0;
1031
1032 if (ifindex == TCM_IFINDEX_MAGIC_BLOCK)
1033 return 0;
1034
1035 rcu_read_lock();
1036
1037 /* Find link */
1038 dev = dev_get_by_index_rcu(net, ifindex);
1039 if (!dev) {
1040 rcu_read_unlock();
1041 return -ENODEV;
1042 }
1043
1044 /* Find qdisc */
1045 if (!*parent) {
1046 *q = dev->qdisc;
1047 *parent = (*q)->handle;
1048 } else {
1049 *q = qdisc_lookup_rcu(dev, TC_H_MAJ(*parent));
1050 if (!*q) {
1051 NL_SET_ERR_MSG(extack, "Parent Qdisc doesn't exists");
1052 err = -EINVAL;
1053 goto errout_rcu;
1054 }
1055 }
1056
1057 *q = qdisc_refcount_inc_nz(*q);
1058 if (!*q) {
1059 NL_SET_ERR_MSG(extack, "Parent Qdisc doesn't exists");
1060 err = -EINVAL;
1061 goto errout_rcu;
1062 }
1063
1064 /* Is it classful? */
1065 cops = (*q)->ops->cl_ops;
1066 if (!cops) {
1067 NL_SET_ERR_MSG(extack, "Qdisc not classful");
1068 err = -EINVAL;
1069 goto errout_qdisc;
1070 }
1071
1072 if (!cops->tcf_block) {
1073 NL_SET_ERR_MSG(extack, "Class doesn't support blocks");
1074 err = -EOPNOTSUPP;
1075 goto errout_qdisc;
1076 }
1077
1078errout_rcu:
1079 /* At this point we know that qdisc is not noop_qdisc,
1080 * which means that qdisc holds a reference to net_device
1081 * and we hold a reference to qdisc, so it is safe to release
1082 * rcu read lock.
1083 */
1084 rcu_read_unlock();
1085 return err;
1086
1087errout_qdisc:
1088 rcu_read_unlock();
1089
1090 if (rtnl_held)
1091 qdisc_put(*q);
1092 else
1093 qdisc_put_unlocked(*q);
1094 *q = NULL;
1095
1096 return err;
1097}
1098
1099static int __tcf_qdisc_cl_find(struct Qdisc *q, u32 parent, unsigned long *cl,
1100 int ifindex, struct netlink_ext_ack *extack)
1101{
1102 if (ifindex == TCM_IFINDEX_MAGIC_BLOCK)
1103 return 0;
1104
1105 /* Do we search for filter, attached to class? */
1106 if (TC_H_MIN(parent)) {
1107 const struct Qdisc_class_ops *cops = q->ops->cl_ops;
1108
1109 *cl = cops->find(q, parent);
1110 if (*cl == 0) {
1111 NL_SET_ERR_MSG(extack, "Specified class doesn't exist");
1112 return -ENOENT;
1113 }
1114 }
1115
1116 return 0;
1117}
1118
1119static struct tcf_block *__tcf_block_find(struct net *net, struct Qdisc *q,
1120 unsigned long cl, int ifindex,
1121 u32 block_index,
1122 struct netlink_ext_ack *extack)
1123{
1124 struct tcf_block *block;
1125
1126 if (ifindex == TCM_IFINDEX_MAGIC_BLOCK) {
1127 block = tcf_block_refcnt_get(net, block_index);
1128 if (!block) {
1129 NL_SET_ERR_MSG(extack, "Block of given index was not found");
1130 return ERR_PTR(-EINVAL);
1131 }
1132 } else {
1133 const struct Qdisc_class_ops *cops = q->ops->cl_ops;
1134
1135 block = cops->tcf_block(q, cl, extack);
1136 if (!block)
1137 return ERR_PTR(-EINVAL);
1138
1139 if (tcf_block_shared(block)) {
1140 NL_SET_ERR_MSG(extack, "This filter block is shared. Please use the block index to manipulate the filters");
1141 return ERR_PTR(-EOPNOTSUPP);
1142 }
1143
1144 /* Always take reference to block in order to support execution
1145 * of rules update path of cls API without rtnl lock. Caller
1146 * must release block when it is finished using it. 'if' block
1147 * of this conditional obtain reference to block by calling
1148 * tcf_block_refcnt_get().
1149 */
1150 refcount_inc(&block->refcnt);
1151 }
1152
1153 return block;
1154}
1155
Vlad Buslov0607e432018-09-24 19:22:57 +03001156static void __tcf_block_put(struct tcf_block *block, struct Qdisc *q,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001157 struct tcf_block_ext_info *ei, bool rtnl_held)
Vlad Buslov0607e432018-09-24 19:22:57 +03001158{
Vlad Buslovc266f642019-02-11 10:55:32 +02001159 if (refcount_dec_and_mutex_lock(&block->refcnt, &block->lock)) {
Vlad Buslov0607e432018-09-24 19:22:57 +03001160 /* Flushing/putting all chains will cause the block to be
1161 * deallocated when last chain is freed. However, if chain_list
1162 * is empty, block has to be manually deallocated. After block
1163 * reference counter reached 0, it is no longer possible to
1164 * increment it or add new chains to block.
1165 */
1166 bool free_block = list_empty(&block->chain_list);
1167
Vlad Buslovc266f642019-02-11 10:55:32 +02001168 mutex_unlock(&block->lock);
Vlad Buslov0607e432018-09-24 19:22:57 +03001169 if (tcf_block_shared(block))
1170 tcf_block_remove(block, block->net);
Vlad Buslov0607e432018-09-24 19:22:57 +03001171
1172 if (q)
1173 tcf_block_offload_unbind(block, q, ei);
1174
1175 if (free_block)
Vlad Buslovc266f642019-02-11 10:55:32 +02001176 tcf_block_destroy(block);
Vlad Buslov0607e432018-09-24 19:22:57 +03001177 else
Vlad Buslov12db03b2019-02-11 10:55:45 +02001178 tcf_block_flush_all_chains(block, rtnl_held);
Vlad Buslov0607e432018-09-24 19:22:57 +03001179 } else if (q) {
1180 tcf_block_offload_unbind(block, q, ei);
1181 }
1182}
1183
Vlad Buslov12db03b2019-02-11 10:55:45 +02001184static void tcf_block_refcnt_put(struct tcf_block *block, bool rtnl_held)
Vlad Buslov0607e432018-09-24 19:22:57 +03001185{
Vlad Buslov12db03b2019-02-11 10:55:45 +02001186 __tcf_block_put(block, NULL, NULL, rtnl_held);
Vlad Buslov0607e432018-09-24 19:22:57 +03001187}
1188
Vlad Buslovc431f892018-05-31 09:52:53 +03001189/* Find tcf block.
1190 * Set q, parent, cl when appropriate.
1191 */
1192
1193static struct tcf_block *tcf_block_find(struct net *net, struct Qdisc **q,
1194 u32 *parent, unsigned long *cl,
1195 int ifindex, u32 block_index,
1196 struct netlink_ext_ack *extack)
1197{
1198 struct tcf_block *block;
Vlad Buslove368fdb2018-09-24 19:22:53 +03001199 int err = 0;
Vlad Buslovc431f892018-05-31 09:52:53 +03001200
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001201 ASSERT_RTNL();
Vlad Buslovc431f892018-05-31 09:52:53 +03001202
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001203 err = __tcf_qdisc_find(net, q, parent, ifindex, true, extack);
1204 if (err)
1205 goto errout;
Vlad Buslove368fdb2018-09-24 19:22:53 +03001206
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001207 err = __tcf_qdisc_cl_find(*q, *parent, cl, ifindex, extack);
1208 if (err)
1209 goto errout_qdisc;
Vlad Buslovc431f892018-05-31 09:52:53 +03001210
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001211 block = __tcf_block_find(net, *q, *cl, ifindex, block_index, extack);
Dan Carpenteraf736bf2019-02-18 12:26:32 +03001212 if (IS_ERR(block)) {
1213 err = PTR_ERR(block);
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001214 goto errout_qdisc;
Dan Carpenteraf736bf2019-02-18 12:26:32 +03001215 }
Vlad Buslovc431f892018-05-31 09:52:53 +03001216
1217 return block;
Vlad Buslove368fdb2018-09-24 19:22:53 +03001218
Vlad Buslove368fdb2018-09-24 19:22:53 +03001219errout_qdisc:
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001220 if (*q)
Vlad Buslove368fdb2018-09-24 19:22:53 +03001221 qdisc_put(*q);
Vlad Buslov18d3eef2019-02-11 10:55:47 +02001222errout:
1223 *q = NULL;
Vlad Buslove368fdb2018-09-24 19:22:53 +03001224 return ERR_PTR(err);
1225}
1226
Vlad Buslov12db03b2019-02-11 10:55:45 +02001227static void tcf_block_release(struct Qdisc *q, struct tcf_block *block,
1228 bool rtnl_held)
Vlad Buslove368fdb2018-09-24 19:22:53 +03001229{
Vlad Buslov787ce6d2018-09-24 19:22:58 +03001230 if (!IS_ERR_OR_NULL(block))
Vlad Buslov12db03b2019-02-11 10:55:45 +02001231 tcf_block_refcnt_put(block, rtnl_held);
Vlad Buslov787ce6d2018-09-24 19:22:58 +03001232
Vlad Buslov470502d2019-02-11 10:55:48 +02001233 if (q) {
1234 if (rtnl_held)
1235 qdisc_put(q);
1236 else
1237 qdisc_put_unlocked(q);
1238 }
Vlad Buslovc431f892018-05-31 09:52:53 +03001239}
1240
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001241struct tcf_block_owner_item {
1242 struct list_head list;
1243 struct Qdisc *q;
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001244 enum flow_block_binder_type binder_type;
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001245};
1246
1247static void
1248tcf_block_owner_netif_keep_dst(struct tcf_block *block,
1249 struct Qdisc *q,
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001250 enum flow_block_binder_type binder_type)
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001251{
1252 if (block->keep_dst &&
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001253 binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS &&
1254 binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS)
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001255 netif_keep_dst(qdisc_dev(q));
1256}
1257
1258void tcf_block_netif_keep_dst(struct tcf_block *block)
1259{
1260 struct tcf_block_owner_item *item;
1261
1262 block->keep_dst = true;
1263 list_for_each_entry(item, &block->owner_list, list)
1264 tcf_block_owner_netif_keep_dst(block, item->q,
1265 item->binder_type);
1266}
1267EXPORT_SYMBOL(tcf_block_netif_keep_dst);
1268
1269static int tcf_block_owner_add(struct tcf_block *block,
1270 struct Qdisc *q,
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001271 enum flow_block_binder_type binder_type)
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001272{
1273 struct tcf_block_owner_item *item;
1274
1275 item = kmalloc(sizeof(*item), GFP_KERNEL);
1276 if (!item)
1277 return -ENOMEM;
1278 item->q = q;
1279 item->binder_type = binder_type;
1280 list_add(&item->list, &block->owner_list);
1281 return 0;
1282}
1283
1284static void tcf_block_owner_del(struct tcf_block *block,
1285 struct Qdisc *q,
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +02001286 enum flow_block_binder_type binder_type)
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001287{
1288 struct tcf_block_owner_item *item;
1289
1290 list_for_each_entry(item, &block->owner_list, list) {
1291 if (item->q == q && item->binder_type == binder_type) {
1292 list_del(&item->list);
1293 kfree(item);
1294 return;
1295 }
1296 }
1297 WARN_ON(1);
1298}
1299
Jiri Pirko48617382018-01-17 11:46:46 +01001300int tcf_block_get_ext(struct tcf_block **p_block, struct Qdisc *q,
1301 struct tcf_block_ext_info *ei,
1302 struct netlink_ext_ack *extack)
1303{
1304 struct net *net = qdisc_net(q);
1305 struct tcf_block *block = NULL;
Jiri Pirko48617382018-01-17 11:46:46 +01001306 int err;
1307
Vlad Buslov787ce6d2018-09-24 19:22:58 +03001308 if (ei->block_index)
Jiri Pirko48617382018-01-17 11:46:46 +01001309 /* block_index not 0 means the shared block is requested */
Vlad Buslov787ce6d2018-09-24 19:22:58 +03001310 block = tcf_block_refcnt_get(net, ei->block_index);
Jiri Pirko48617382018-01-17 11:46:46 +01001311
1312 if (!block) {
Jiri Pirkobb047dd2018-02-13 12:00:16 +01001313 block = tcf_block_create(net, q, ei->block_index, extack);
Jiri Pirko48617382018-01-17 11:46:46 +01001314 if (IS_ERR(block))
1315 return PTR_ERR(block);
Jiri Pirkobb047dd2018-02-13 12:00:16 +01001316 if (tcf_block_shared(block)) {
1317 err = tcf_block_insert(block, net, extack);
Jiri Pirko48617382018-01-17 11:46:46 +01001318 if (err)
1319 goto err_block_insert;
1320 }
1321 }
1322
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001323 err = tcf_block_owner_add(block, q, ei->binder_type);
1324 if (err)
1325 goto err_block_owner_add;
1326
1327 tcf_block_owner_netif_keep_dst(block, q, ei->binder_type);
1328
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001329 err = tcf_chain0_head_change_cb_add(block, ei, extack);
Jiri Pirkoa9b19442018-01-17 11:46:45 +01001330 if (err)
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001331 goto err_chain0_head_change_cb_add;
Jiri Pirkocaa72602018-01-17 11:46:50 +01001332
John Hurley60513bd2018-06-25 14:30:04 -07001333 err = tcf_block_offload_bind(block, q, ei, extack);
Jiri Pirkocaa72602018-01-17 11:46:50 +01001334 if (err)
1335 goto err_block_offload_bind;
1336
Jiri Pirko6529eab2017-05-17 11:07:55 +02001337 *p_block = block;
1338 return 0;
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001339
Jiri Pirkocaa72602018-01-17 11:46:50 +01001340err_block_offload_bind:
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001341 tcf_chain0_head_change_cb_del(block, ei);
1342err_chain0_head_change_cb_add:
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001343 tcf_block_owner_del(block, q, ei->binder_type);
1344err_block_owner_add:
Jiri Pirko48617382018-01-17 11:46:46 +01001345err_block_insert:
Vlad Buslov12db03b2019-02-11 10:55:45 +02001346 tcf_block_refcnt_put(block, true);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001347 return err;
Jiri Pirko6529eab2017-05-17 11:07:55 +02001348}
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001349EXPORT_SYMBOL(tcf_block_get_ext);
1350
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001351static void tcf_chain_head_change_dflt(struct tcf_proto *tp_head, void *priv)
1352{
1353 struct tcf_proto __rcu **p_filter_chain = priv;
1354
1355 rcu_assign_pointer(*p_filter_chain, tp_head);
1356}
1357
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001358int tcf_block_get(struct tcf_block **p_block,
Alexander Aring8d1a77f2017-12-20 12:35:19 -05001359 struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
1360 struct netlink_ext_ack *extack)
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001361{
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001362 struct tcf_block_ext_info ei = {
1363 .chain_head_change = tcf_chain_head_change_dflt,
1364 .chain_head_change_priv = p_filter_chain,
1365 };
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001366
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001367 WARN_ON(!p_filter_chain);
Alexander Aring8d1a77f2017-12-20 12:35:19 -05001368 return tcf_block_get_ext(p_block, q, &ei, extack);
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001369}
Jiri Pirko6529eab2017-05-17 11:07:55 +02001370EXPORT_SYMBOL(tcf_block_get);
1371
Cong Wang7aa00452017-10-26 18:24:28 -07001372/* XXX: Standalone actions are not allowed to jump to any chain, and bound
Roman Kapla60b3f52017-11-24 12:27:58 +01001373 * actions should be all removed after flushing.
Cong Wang7aa00452017-10-26 18:24:28 -07001374 */
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001375void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
David S. Millere1ea2f92017-10-30 14:10:01 +09001376 struct tcf_block_ext_info *ei)
Cong Wang7aa00452017-10-26 18:24:28 -07001377{
David S. Millerc30abd52017-12-16 22:11:55 -05001378 if (!block)
1379 return;
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001380 tcf_chain0_head_change_cb_del(block, ei);
Jiri Pirkof36fe1c2018-01-17 11:46:48 +01001381 tcf_block_owner_del(block, q, ei->binder_type);
Roman Kapla60b3f52017-11-24 12:27:58 +01001382
Vlad Buslov12db03b2019-02-11 10:55:45 +02001383 __tcf_block_put(block, q, ei, true);
Jiri Pirko6529eab2017-05-17 11:07:55 +02001384}
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001385EXPORT_SYMBOL(tcf_block_put_ext);
1386
1387void tcf_block_put(struct tcf_block *block)
1388{
1389 struct tcf_block_ext_info ei = {0, };
1390
Jiri Pirko4853f122017-12-21 13:13:59 +01001391 if (!block)
1392 return;
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001393 tcf_block_put_ext(block, block->q, &ei);
Jiri Pirko8c4083b2017-10-19 15:50:29 +02001394}
David S. Millere1ea2f92017-10-30 14:10:01 +09001395
Jiri Pirko6529eab2017-05-17 11:07:55 +02001396EXPORT_SYMBOL(tcf_block_put);
Jiri Pirkocf1facd2017-02-09 14:38:56 +01001397
John Hurley32636742018-06-25 14:30:10 -07001398static int
Pablo Neira Ayusoa7323312019-07-19 18:20:15 +02001399tcf_block_playback_offloads(struct tcf_block *block, flow_setup_cb_t *cb,
John Hurley32636742018-06-25 14:30:10 -07001400 void *cb_priv, bool add, bool offload_in_use,
1401 struct netlink_ext_ack *extack)
1402{
Vlad Buslovbbf73832019-02-11 10:55:36 +02001403 struct tcf_chain *chain, *chain_prev;
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001404 struct tcf_proto *tp, *tp_prev;
John Hurley32636742018-06-25 14:30:10 -07001405 int err;
1406
Vlad Buslov4f8116c2019-08-26 16:44:57 +03001407 lockdep_assert_held(&block->cb_lock);
1408
Vlad Buslovbbf73832019-02-11 10:55:36 +02001409 for (chain = __tcf_get_next_chain(block, NULL);
1410 chain;
1411 chain_prev = chain,
1412 chain = __tcf_get_next_chain(block, chain),
1413 tcf_chain_put(chain_prev)) {
Vlad Buslovfe2923a2019-02-11 10:55:40 +02001414 for (tp = __tcf_get_next_proto(chain, NULL); tp;
1415 tp_prev = tp,
1416 tp = __tcf_get_next_proto(chain, tp),
Vlad Buslov12db03b2019-02-11 10:55:45 +02001417 tcf_proto_put(tp_prev, true, NULL)) {
John Hurley32636742018-06-25 14:30:10 -07001418 if (tp->ops->reoffload) {
1419 err = tp->ops->reoffload(tp, add, cb, cb_priv,
1420 extack);
1421 if (err && add)
1422 goto err_playback_remove;
1423 } else if (add && offload_in_use) {
1424 err = -EOPNOTSUPP;
1425 NL_SET_ERR_MSG(extack, "Filter HW offload failed - classifier without re-offloading support");
1426 goto err_playback_remove;
1427 }
1428 }
1429 }
1430
1431 return 0;
1432
1433err_playback_remove:
Vlad Buslov12db03b2019-02-11 10:55:45 +02001434 tcf_proto_put(tp, true, NULL);
Vlad Buslovbbf73832019-02-11 10:55:36 +02001435 tcf_chain_put(chain);
John Hurley32636742018-06-25 14:30:10 -07001436 tcf_block_playback_offloads(block, cb, cb_priv, false, offload_in_use,
1437 extack);
1438 return err;
1439}
1440
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001441static int tcf_block_bind(struct tcf_block *block,
1442 struct flow_block_offload *bo)
1443{
1444 struct flow_block_cb *block_cb, *next;
1445 int err, i = 0;
1446
Vlad Buslov4f8116c2019-08-26 16:44:57 +03001447 lockdep_assert_held(&block->cb_lock);
1448
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001449 list_for_each_entry(block_cb, &bo->cb_list, list) {
1450 err = tcf_block_playback_offloads(block, block_cb->cb,
1451 block_cb->cb_priv, true,
1452 tcf_block_offload_in_use(block),
1453 bo->extack);
1454 if (err)
1455 goto err_unroll;
Vlad Buslovc9f14472019-08-26 16:45:01 +03001456 if (!bo->unlocked_driver_cb)
1457 block->lockeddevcnt++;
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001458
1459 i++;
1460 }
Pablo Neira Ayuso14bfb132019-07-19 18:20:16 +02001461 list_splice(&bo->cb_list, &block->flow_block.cb_list);
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001462
1463 return 0;
1464
1465err_unroll:
1466 list_for_each_entry_safe(block_cb, next, &bo->cb_list, list) {
1467 if (i-- > 0) {
1468 list_del(&block_cb->list);
1469 tcf_block_playback_offloads(block, block_cb->cb,
1470 block_cb->cb_priv, false,
1471 tcf_block_offload_in_use(block),
1472 NULL);
Vlad Buslovc9f14472019-08-26 16:45:01 +03001473 if (!bo->unlocked_driver_cb)
1474 block->lockeddevcnt--;
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001475 }
1476 flow_block_cb_free(block_cb);
1477 }
1478
1479 return err;
1480}
1481
1482static void tcf_block_unbind(struct tcf_block *block,
1483 struct flow_block_offload *bo)
1484{
1485 struct flow_block_cb *block_cb, *next;
1486
Vlad Buslov4f8116c2019-08-26 16:44:57 +03001487 lockdep_assert_held(&block->cb_lock);
1488
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001489 list_for_each_entry_safe(block_cb, next, &bo->cb_list, list) {
1490 tcf_block_playback_offloads(block, block_cb->cb,
1491 block_cb->cb_priv, false,
1492 tcf_block_offload_in_use(block),
1493 NULL);
1494 list_del(&block_cb->list);
1495 flow_block_cb_free(block_cb);
Vlad Buslovc9f14472019-08-26 16:45:01 +03001496 if (!bo->unlocked_driver_cb)
1497 block->lockeddevcnt--;
Pablo Neira Ayuso59094b12019-07-09 22:55:45 +02001498 }
1499}
1500
1501static int tcf_block_setup(struct tcf_block *block,
1502 struct flow_block_offload *bo)
1503{
1504 int err;
1505
1506 switch (bo->command) {
1507 case FLOW_BLOCK_BIND:
1508 err = tcf_block_bind(block, bo);
1509 break;
1510 case FLOW_BLOCK_UNBIND:
1511 err = 0;
1512 tcf_block_unbind(block, bo);
1513 break;
1514 default:
1515 WARN_ON_ONCE(1);
1516 err = -EOPNOTSUPP;
1517 }
1518
1519 return err;
1520}
1521
Jiri Pirko87d83092017-05-17 11:07:54 +02001522/* Main classifier routine: scans classifier chain attached
1523 * to this qdisc, (optionally) tests for protocol and asks
1524 * specific classifiers.
1525 */
Paul Blakey9410c942020-02-16 12:01:21 +02001526static inline int __tcf_classify(struct sk_buff *skb,
1527 const struct tcf_proto *tp,
Paul Blakeyaf699622020-02-16 12:01:24 +02001528 const struct tcf_proto *orig_tp,
Paul Blakey9410c942020-02-16 12:01:21 +02001529 struct tcf_result *res,
1530 bool compat_mode,
1531 u32 *last_executed_chain)
Jiri Pirko87d83092017-05-17 11:07:54 +02001532{
Jiri Pirko87d83092017-05-17 11:07:54 +02001533#ifdef CONFIG_NET_CLS_ACT
Davide Caratti05ff8432021-05-19 15:17:21 +02001534 const int max_reclassify_loop = 16;
Jiri Pirkoee538dc2017-05-23 09:11:59 +02001535 const struct tcf_proto *first_tp;
Jiri Pirko87d83092017-05-17 11:07:54 +02001536 int limit = 0;
1537
1538reclassify:
1539#endif
1540 for (; tp; tp = rcu_dereference_bh(tp->next)) {
Toke Høiland-Jørgensend7bf2eb2020-07-03 22:26:43 +02001541 __be16 protocol = skb_protocol(skb, false);
Jiri Pirko87d83092017-05-17 11:07:54 +02001542 int err;
1543
1544 if (tp->protocol != protocol &&
1545 tp->protocol != htons(ETH_P_ALL))
1546 continue;
1547
1548 err = tp->classify(skb, tp, res);
1549#ifdef CONFIG_NET_CLS_ACT
Jiri Pirkodb505142017-05-17 11:08:03 +02001550 if (unlikely(err == TC_ACT_RECLASSIFY && !compat_mode)) {
Jiri Pirkoee538dc2017-05-23 09:11:59 +02001551 first_tp = orig_tp;
Paul Blakey9410c942020-02-16 12:01:21 +02001552 *last_executed_chain = first_tp->chain->index;
Jiri Pirko87d83092017-05-17 11:07:54 +02001553 goto reset;
Jiri Pirkodb505142017-05-17 11:08:03 +02001554 } else if (unlikely(TC_ACT_EXT_CMP(err, TC_ACT_GOTO_CHAIN))) {
Jiri Pirkoee538dc2017-05-23 09:11:59 +02001555 first_tp = res->goto_tp;
Paul Blakey9410c942020-02-16 12:01:21 +02001556 *last_executed_chain = err & TC_ACT_EXT_VAL_MASK;
Jiri Pirkodb505142017-05-17 11:08:03 +02001557 goto reset;
1558 }
Jiri Pirko87d83092017-05-17 11:07:54 +02001559#endif
1560 if (err >= 0)
1561 return err;
1562 }
1563
1564 return TC_ACT_UNSPEC; /* signal: continue lookup */
1565#ifdef CONFIG_NET_CLS_ACT
1566reset:
1567 if (unlikely(limit++ >= max_reclassify_loop)) {
Jiri Pirko9d3aaff2018-01-17 11:46:47 +01001568 net_notice_ratelimited("%u: reclassify loop, rule prio %u, protocol %02x\n",
1569 tp->chain->block->index,
1570 tp->prio & 0xffff,
Jiri Pirko87d83092017-05-17 11:07:54 +02001571 ntohs(tp->protocol));
1572 return TC_ACT_SHOT;
1573 }
1574
Jiri Pirkoee538dc2017-05-23 09:11:59 +02001575 tp = first_tp;
Jiri Pirko87d83092017-05-17 11:07:54 +02001576 goto reclassify;
1577#endif
1578}
Paul Blakey9410c942020-02-16 12:01:21 +02001579
Davide Caratti3aa26052021-07-28 20:08:00 +02001580int tcf_classify(struct sk_buff *skb,
1581 const struct tcf_block *block,
1582 const struct tcf_proto *tp,
Paul Blakey9410c942020-02-16 12:01:21 +02001583 struct tcf_result *res, bool compat_mode)
1584{
Paul Blakey9410c942020-02-16 12:01:21 +02001585#if !IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
1586 u32 last_executed_chain = 0;
1587
Paul Blakeyaf699622020-02-16 12:01:24 +02001588 return __tcf_classify(skb, tp, tp, res, compat_mode,
Paul Blakey9410c942020-02-16 12:01:21 +02001589 &last_executed_chain);
1590#else
1591 u32 last_executed_chain = tp ? tp->chain->index : 0;
Paul Blakeyaf699622020-02-16 12:01:24 +02001592 const struct tcf_proto *orig_tp = tp;
Paul Blakey9410c942020-02-16 12:01:21 +02001593 struct tc_skb_ext *ext;
1594 int ret;
1595
Davide Caratti3aa26052021-07-28 20:08:00 +02001596 if (block) {
1597 ext = skb_ext_find(skb, TC_SKB_EXT);
Paul Blakeyaf699622020-02-16 12:01:24 +02001598
Davide Caratti3aa26052021-07-28 20:08:00 +02001599 if (ext && ext->chain) {
1600 struct tcf_chain *fchain;
Paul Blakeyaf699622020-02-16 12:01:24 +02001601
Davide Caratti3aa26052021-07-28 20:08:00 +02001602 fchain = tcf_chain_lookup_rcu(block, ext->chain);
1603 if (!fchain)
1604 return TC_ACT_SHOT;
Paul Blakeyaf699622020-02-16 12:01:24 +02001605
Davide Caratti3aa26052021-07-28 20:08:00 +02001606 /* Consume, so cloned/redirect skbs won't inherit ext */
1607 skb_ext_del(skb, TC_SKB_EXT);
Paul Blakeyaf699622020-02-16 12:01:24 +02001608
Davide Caratti3aa26052021-07-28 20:08:00 +02001609 tp = rcu_dereference_bh(fchain->filter_chain);
1610 last_executed_chain = fchain->index;
1611 }
Paul Blakeyaf699622020-02-16 12:01:24 +02001612 }
1613
1614 ret = __tcf_classify(skb, tp, orig_tp, res, compat_mode,
1615 &last_executed_chain);
Paul Blakey9410c942020-02-16 12:01:21 +02001616
1617 /* If we missed on some chain */
1618 if (ret == TC_ACT_UNSPEC && last_executed_chain) {
Vlad Buslov9453d452021-05-25 16:21:52 +03001619 ext = tc_skb_ext_alloc(skb);
Paul Blakey9410c942020-02-16 12:01:21 +02001620 if (WARN_ON_ONCE(!ext))
1621 return TC_ACT_SHOT;
1622 ext->chain = last_executed_chain;
wenxu038ebb12020-07-31 10:45:01 +08001623 ext->mru = qdisc_skb_cb(skb)->mru;
wenxud29334c2021-03-16 16:33:54 +08001624 ext->post_ct = qdisc_skb_cb(skb)->post_ct;
Paul Blakey9410c942020-02-16 12:01:21 +02001625 }
1626
1627 return ret;
1628#endif
1629}
Davide Caratti3aa26052021-07-28 20:08:00 +02001630EXPORT_SYMBOL(tcf_classify);
Paul Blakey9410c942020-02-16 12:01:21 +02001631
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001632struct tcf_chain_info {
1633 struct tcf_proto __rcu **pprev;
1634 struct tcf_proto __rcu *next;
1635};
1636
Vlad Busloved76f5e2019-02-11 10:55:38 +02001637static struct tcf_proto *tcf_chain_tp_prev(struct tcf_chain *chain,
1638 struct tcf_chain_info *chain_info)
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001639{
Vlad Busloved76f5e2019-02-11 10:55:38 +02001640 return tcf_chain_dereference(*chain_info->pprev, chain);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001641}
1642
Vlad Buslov726d06122019-02-11 10:55:42 +02001643static int tcf_chain_tp_insert(struct tcf_chain *chain,
1644 struct tcf_chain_info *chain_info,
1645 struct tcf_proto *tp)
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001646{
Vlad Buslov726d06122019-02-11 10:55:42 +02001647 if (chain->flushing)
1648 return -EAGAIN;
1649
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001650 if (*chain_info->pprev == chain->filter_chain)
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001651 tcf_chain0_head_change(chain, tp);
Vlad Buslov4dbfa762019-02-11 10:55:39 +02001652 tcf_proto_get(tp);
Vlad Busloved76f5e2019-02-11 10:55:38 +02001653 RCU_INIT_POINTER(tp->next, tcf_chain_tp_prev(chain, chain_info));
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001654 rcu_assign_pointer(*chain_info->pprev, tp);
Vlad Buslov726d06122019-02-11 10:55:42 +02001655
1656 return 0;
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001657}
1658
1659static void tcf_chain_tp_remove(struct tcf_chain *chain,
1660 struct tcf_chain_info *chain_info,
1661 struct tcf_proto *tp)
1662{
Vlad Busloved76f5e2019-02-11 10:55:38 +02001663 struct tcf_proto *next = tcf_chain_dereference(chain_info->next, chain);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001664
Vlad Buslov8b646782019-02-11 10:55:41 +02001665 tcf_proto_mark_delete(tp);
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +01001666 if (tp == chain->filter_chain)
Jiri Pirkof71e0ca42018-07-23 09:23:05 +02001667 tcf_chain0_head_change(chain, next);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001668 RCU_INIT_POINTER(*chain_info->pprev, next);
1669}
1670
1671static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain,
1672 struct tcf_chain_info *chain_info,
1673 u32 protocol, u32 prio,
Vlad Buslov8b646782019-02-11 10:55:41 +02001674 bool prio_allocate);
1675
1676/* Try to insert new proto.
1677 * If proto with specified priority already exists, free new proto
1678 * and return existing one.
1679 */
1680
1681static struct tcf_proto *tcf_chain_tp_insert_unique(struct tcf_chain *chain,
1682 struct tcf_proto *tp_new,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001683 u32 protocol, u32 prio,
1684 bool rtnl_held)
Vlad Buslov8b646782019-02-11 10:55:41 +02001685{
1686 struct tcf_chain_info chain_info;
1687 struct tcf_proto *tp;
Vlad Buslov726d06122019-02-11 10:55:42 +02001688 int err = 0;
Vlad Buslov8b646782019-02-11 10:55:41 +02001689
1690 mutex_lock(&chain->filter_chain_lock);
1691
John Hurley59eb87c2019-11-02 14:17:47 +00001692 if (tcf_proto_exists_destroying(chain, tp_new)) {
1693 mutex_unlock(&chain->filter_chain_lock);
1694 tcf_proto_destroy(tp_new, rtnl_held, false, NULL);
1695 return ERR_PTR(-EAGAIN);
1696 }
1697
Vlad Buslov8b646782019-02-11 10:55:41 +02001698 tp = tcf_chain_tp_find(chain, &chain_info,
1699 protocol, prio, false);
1700 if (!tp)
Vlad Buslov726d06122019-02-11 10:55:42 +02001701 err = tcf_chain_tp_insert(chain, &chain_info, tp_new);
Vlad Buslov8b646782019-02-11 10:55:41 +02001702 mutex_unlock(&chain->filter_chain_lock);
1703
1704 if (tp) {
John Hurley59eb87c2019-11-02 14:17:47 +00001705 tcf_proto_destroy(tp_new, rtnl_held, false, NULL);
Vlad Buslov8b646782019-02-11 10:55:41 +02001706 tp_new = tp;
Vlad Buslov726d06122019-02-11 10:55:42 +02001707 } else if (err) {
John Hurley59eb87c2019-11-02 14:17:47 +00001708 tcf_proto_destroy(tp_new, rtnl_held, false, NULL);
Vlad Buslov726d06122019-02-11 10:55:42 +02001709 tp_new = ERR_PTR(err);
Vlad Buslov8b646782019-02-11 10:55:41 +02001710 }
1711
1712 return tp_new;
1713}
1714
1715static void tcf_chain_tp_delete_empty(struct tcf_chain *chain,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001716 struct tcf_proto *tp, bool rtnl_held,
Vlad Buslov8b646782019-02-11 10:55:41 +02001717 struct netlink_ext_ack *extack)
1718{
1719 struct tcf_chain_info chain_info;
1720 struct tcf_proto *tp_iter;
1721 struct tcf_proto **pprev;
1722 struct tcf_proto *next;
1723
1724 mutex_lock(&chain->filter_chain_lock);
1725
1726 /* Atomically find and remove tp from chain. */
1727 for (pprev = &chain->filter_chain;
1728 (tp_iter = tcf_chain_dereference(*pprev, chain));
1729 pprev = &tp_iter->next) {
1730 if (tp_iter == tp) {
1731 chain_info.pprev = pprev;
1732 chain_info.next = tp_iter->next;
1733 WARN_ON(tp_iter->deleting);
1734 break;
1735 }
1736 }
1737 /* Verify that tp still exists and no new filters were inserted
1738 * concurrently.
1739 * Mark tp for deletion if it is empty.
1740 */
Davide Carattia5b72a02019-12-28 16:36:58 +01001741 if (!tp_iter || !tcf_proto_check_delete(tp)) {
Vlad Buslov8b646782019-02-11 10:55:41 +02001742 mutex_unlock(&chain->filter_chain_lock);
1743 return;
1744 }
1745
John Hurley59eb87c2019-11-02 14:17:47 +00001746 tcf_proto_signal_destroying(chain, tp);
Vlad Buslov8b646782019-02-11 10:55:41 +02001747 next = tcf_chain_dereference(chain_info.next, chain);
1748 if (tp == chain->filter_chain)
1749 tcf_chain0_head_change(chain, next);
1750 RCU_INIT_POINTER(*chain_info.pprev, next);
1751 mutex_unlock(&chain->filter_chain_lock);
1752
Vlad Buslov12db03b2019-02-11 10:55:45 +02001753 tcf_proto_put(tp, rtnl_held, extack);
Vlad Buslov8b646782019-02-11 10:55:41 +02001754}
1755
1756static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain,
1757 struct tcf_chain_info *chain_info,
1758 u32 protocol, u32 prio,
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001759 bool prio_allocate)
1760{
1761 struct tcf_proto **pprev;
1762 struct tcf_proto *tp;
1763
1764 /* Check the chain for existence of proto-tcf with this priority */
1765 for (pprev = &chain->filter_chain;
Vlad Busloved76f5e2019-02-11 10:55:38 +02001766 (tp = tcf_chain_dereference(*pprev, chain));
1767 pprev = &tp->next) {
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001768 if (tp->prio >= prio) {
1769 if (tp->prio == prio) {
1770 if (prio_allocate ||
1771 (tp->protocol != protocol && protocol))
1772 return ERR_PTR(-EINVAL);
1773 } else {
1774 tp = NULL;
1775 }
1776 break;
1777 }
1778 }
1779 chain_info->pprev = pprev;
Vlad Buslov4dbfa762019-02-11 10:55:39 +02001780 if (tp) {
1781 chain_info->next = tp->next;
1782 tcf_proto_get(tp);
1783 } else {
1784 chain_info->next = NULL;
1785 }
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001786 return tp;
1787}
1788
WANG Cong71203712017-08-07 15:26:50 -07001789static int tcf_fill_node(struct net *net, struct sk_buff *skb,
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001790 struct tcf_proto *tp, struct tcf_block *block,
1791 struct Qdisc *q, u32 parent, void *fh,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001792 u32 portid, u32 seq, u16 flags, int event,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03001793 bool terse_dump, bool rtnl_held)
WANG Cong71203712017-08-07 15:26:50 -07001794{
1795 struct tcmsg *tcm;
1796 struct nlmsghdr *nlh;
1797 unsigned char *b = skb_tail_pointer(skb);
1798
1799 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
1800 if (!nlh)
1801 goto out_nlmsg_trim;
1802 tcm = nlmsg_data(nlh);
1803 tcm->tcm_family = AF_UNSPEC;
1804 tcm->tcm__pad1 = 0;
1805 tcm->tcm__pad2 = 0;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001806 if (q) {
1807 tcm->tcm_ifindex = qdisc_dev(q)->ifindex;
1808 tcm->tcm_parent = parent;
1809 } else {
1810 tcm->tcm_ifindex = TCM_IFINDEX_MAGIC_BLOCK;
1811 tcm->tcm_block_index = block->index;
1812 }
WANG Cong71203712017-08-07 15:26:50 -07001813 tcm->tcm_info = TC_H_MAKE(tp->prio, tp->protocol);
1814 if (nla_put_string(skb, TCA_KIND, tp->ops->kind))
1815 goto nla_put_failure;
1816 if (nla_put_u32(skb, TCA_CHAIN, tp->chain->index))
1817 goto nla_put_failure;
1818 if (!fh) {
1819 tcm->tcm_handle = 0;
Vlad Buslovf8ab1802020-05-15 14:40:11 +03001820 } else if (terse_dump) {
1821 if (tp->ops->terse_dump) {
1822 if (tp->ops->terse_dump(net, tp, fh, skb, tcm,
1823 rtnl_held) < 0)
1824 goto nla_put_failure;
1825 } else {
1826 goto cls_op_not_supp;
1827 }
WANG Cong71203712017-08-07 15:26:50 -07001828 } else {
Vlad Buslov12db03b2019-02-11 10:55:45 +02001829 if (tp->ops->dump &&
1830 tp->ops->dump(net, tp, fh, skb, tcm, rtnl_held) < 0)
WANG Cong71203712017-08-07 15:26:50 -07001831 goto nla_put_failure;
1832 }
1833 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1834 return skb->len;
1835
1836out_nlmsg_trim:
1837nla_put_failure:
Vlad Buslovf8ab1802020-05-15 14:40:11 +03001838cls_op_not_supp:
WANG Cong71203712017-08-07 15:26:50 -07001839 nlmsg_trim(skb, b);
1840 return -1;
1841}
1842
1843static int tfilter_notify(struct net *net, struct sk_buff *oskb,
1844 struct nlmsghdr *n, struct tcf_proto *tp,
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001845 struct tcf_block *block, struct Qdisc *q,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001846 u32 parent, void *fh, int event, bool unicast,
1847 bool rtnl_held)
WANG Cong71203712017-08-07 15:26:50 -07001848{
1849 struct sk_buff *skb;
1850 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001851 int err = 0;
WANG Cong71203712017-08-07 15:26:50 -07001852
1853 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1854 if (!skb)
1855 return -ENOBUFS;
1856
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001857 if (tcf_fill_node(net, skb, tp, block, q, parent, fh, portid,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001858 n->nlmsg_seq, n->nlmsg_flags, event,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03001859 false, rtnl_held) <= 0) {
WANG Cong71203712017-08-07 15:26:50 -07001860 kfree_skb(skb);
1861 return -EINVAL;
1862 }
1863
1864 if (unicast)
Yajun Dengf79a3bc2021-07-15 20:24:24 +08001865 err = rtnl_unicast(skb, net, portid);
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001866 else
1867 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
1868 n->nlmsg_flags & NLM_F_ECHO);
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001869 return err;
WANG Cong71203712017-08-07 15:26:50 -07001870}
1871
1872static int tfilter_del_notify(struct net *net, struct sk_buff *oskb,
1873 struct nlmsghdr *n, struct tcf_proto *tp,
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001874 struct tcf_block *block, struct Qdisc *q,
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001875 u32 parent, void *fh, bool unicast, bool *last,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001876 bool rtnl_held, struct netlink_ext_ack *extack)
WANG Cong71203712017-08-07 15:26:50 -07001877{
1878 struct sk_buff *skb;
1879 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
1880 int err;
1881
1882 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1883 if (!skb)
1884 return -ENOBUFS;
1885
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001886 if (tcf_fill_node(net, skb, tp, block, q, parent, fh, portid,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001887 n->nlmsg_seq, n->nlmsg_flags, RTM_DELTFILTER,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03001888 false, rtnl_held) <= 0) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001889 NL_SET_ERR_MSG(extack, "Failed to build del event notification");
WANG Cong71203712017-08-07 15:26:50 -07001890 kfree_skb(skb);
1891 return -EINVAL;
1892 }
1893
Vlad Buslov12db03b2019-02-11 10:55:45 +02001894 err = tp->ops->delete(tp, fh, last, rtnl_held, extack);
WANG Cong71203712017-08-07 15:26:50 -07001895 if (err) {
1896 kfree_skb(skb);
1897 return err;
1898 }
1899
1900 if (unicast)
Yajun Dengf79a3bc2021-07-15 20:24:24 +08001901 err = rtnl_unicast(skb, net, portid);
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001902 else
1903 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
1904 n->nlmsg_flags & NLM_F_ECHO);
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001905 if (err < 0)
1906 NL_SET_ERR_MSG(extack, "Failed to send filter delete notification");
Zhike Wang5b5f99b2019-03-11 03:15:54 -07001907
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001908 return err;
WANG Cong71203712017-08-07 15:26:50 -07001909}
1910
1911static void tfilter_notify_chain(struct net *net, struct sk_buff *oskb,
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001912 struct tcf_block *block, struct Qdisc *q,
1913 u32 parent, struct nlmsghdr *n,
Vlad Buslov0fca55e2020-11-27 17:12:05 +02001914 struct tcf_chain *chain, int event)
WANG Cong71203712017-08-07 15:26:50 -07001915{
1916 struct tcf_proto *tp;
1917
Vlad Buslov0fca55e2020-11-27 17:12:05 +02001918 for (tp = tcf_get_next_proto(chain, NULL);
1919 tp; tp = tcf_get_next_proto(chain, tp))
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001920 tfilter_notify(net, oskb, n, tp, block,
Vlad Buslov0fca55e2020-11-27 17:12:05 +02001921 q, parent, NULL, event, false, true);
WANG Cong71203712017-08-07 15:26:50 -07001922}
1923
Vlad Buslov7d5509f2019-02-11 10:55:44 +02001924static void tfilter_put(struct tcf_proto *tp, void *fh)
1925{
1926 if (tp->ops->put && fh)
1927 tp->ops->put(tp, fh);
1928}
1929
Vlad Buslovc431f892018-05-31 09:52:53 +03001930static int tc_new_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
David Ahernc21ef3e2017-04-16 09:48:24 -07001931 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001933 struct net *net = sock_net(skb->sk);
Patrick McHardyadd93b62008-01-22 22:11:33 -08001934 struct nlattr *tca[TCA_MAX + 1];
Cong Wang6f96c3c2019-10-07 13:26:28 -07001935 char name[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 struct tcmsg *t;
1937 u32 protocol;
1938 u32 prio;
Jiri Pirko9d36d9e2017-05-17 11:07:57 +02001939 bool prio_allocate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 u32 parent;
Jiri Pirko5bc17012017-05-17 11:08:01 +02001941 u32 chain_index;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01001942 struct Qdisc *q = NULL;
Jiri Pirko2190d1d2017-05-17 11:07:59 +02001943 struct tcf_chain_info chain_info;
Jiri Pirko5bc17012017-05-17 11:08:01 +02001944 struct tcf_chain *chain = NULL;
Jiri Pirko6529eab2017-05-17 11:07:55 +02001945 struct tcf_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 struct tcf_proto *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 unsigned long cl;
WANG Cong8113c092017-08-04 21:31:43 -07001948 void *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 int err;
Daniel Borkmann628185c2016-12-21 18:04:11 +01001950 int tp_created;
Vlad Buslov470502d2019-02-11 10:55:48 +02001951 bool rtnl_held = false;
Cong Wang695176b2021-07-29 16:12:14 -07001952 u32 flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Vlad Buslovc431f892018-05-31 09:52:53 +03001954 if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +00001955 return -EPERM;
Hong zhi guode179c82013-03-25 17:36:33 +00001956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957replay:
Daniel Borkmann628185c2016-12-21 18:04:11 +01001958 tp_created = 0;
1959
Johannes Berg8cb08172019-04-26 14:07:28 +02001960 err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
1961 rtm_tca_policy, extack);
Hong zhi guode179c82013-03-25 17:36:33 +00001962 if (err < 0)
1963 return err;
1964
David S. Miller942b8162012-06-26 21:48:50 -07001965 t = nlmsg_data(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 protocol = TC_H_MIN(t->tcm_info);
1967 prio = TC_H_MAJ(t->tcm_info);
Jiri Pirko9d36d9e2017-05-17 11:07:57 +02001968 prio_allocate = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 parent = t->tcm_parent;
Vlad Buslov4dbfa762019-02-11 10:55:39 +02001970 tp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 cl = 0;
Vlad Buslov470502d2019-02-11 10:55:48 +02001972 block = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 if (prio == 0) {
Vlad Buslovc431f892018-05-31 09:52:53 +03001975 /* If no priority is provided by the user,
1976 * we allocate one.
1977 */
1978 if (n->nlmsg_flags & NLM_F_CREATE) {
1979 prio = TC_H_MAKE(0x80000000U, 0U);
1980 prio_allocate = true;
1981 } else {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05001982 NL_SET_ERR_MSG(extack, "Invalid filter command with priority of zero");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 return -ENOENT;
Daniel Borkmannea7f8272016-06-10 23:10:22 +02001984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 }
1986
1987 /* Find head of filter chain. */
1988
Vlad Buslov470502d2019-02-11 10:55:48 +02001989 err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack);
1990 if (err)
1991 return err;
1992
Cong Wang6f96c3c2019-10-07 13:26:28 -07001993 if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
1994 NL_SET_ERR_MSG(extack, "Specified TC filter name too long");
1995 err = -EINVAL;
1996 goto errout;
1997 }
1998
Vlad Buslov470502d2019-02-11 10:55:48 +02001999 /* Take rtnl mutex if rtnl_held was set to true on previous iteration,
2000 * block is shared (no qdisc found), qdisc is not unlocked, classifier
2001 * type is not specified, classifier is not unlocked.
2002 */
2003 if (rtnl_held ||
2004 (q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) ||
Cong Wang6f96c3c2019-10-07 13:26:28 -07002005 !tcf_proto_is_unlocked(name)) {
Vlad Buslov470502d2019-02-11 10:55:48 +02002006 rtnl_held = true;
2007 rtnl_lock();
2008 }
2009
2010 err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack);
2011 if (err)
2012 goto errout;
2013
2014 block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index,
2015 extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002016 if (IS_ERR(block)) {
2017 err = PTR_ERR(block);
2018 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002019 }
Cong Wanga7df4872020-04-30 20:53:49 -07002020 block->classid = parent;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002021
2022 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2023 if (chain_index > TC_ACT_EXT_VAL_MASK) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002024 NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
Jiri Pirko5bc17012017-05-17 11:08:01 +02002025 err = -EINVAL;
2026 goto errout;
2027 }
Vlad Buslovc431f892018-05-31 09:52:53 +03002028 chain = tcf_chain_get(block, chain_index, true);
Jiri Pirko5bc17012017-05-17 11:08:01 +02002029 if (!chain) {
Jiri Pirkod5ed72a2018-08-27 20:58:43 +02002030 NL_SET_ERR_MSG(extack, "Cannot create specified filter chain");
Vlad Buslovc431f892018-05-31 09:52:53 +03002031 err = -ENOMEM;
Daniel Borkmannea7f8272016-06-10 23:10:22 +02002032 goto errout;
2033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Vlad Busloved76f5e2019-02-11 10:55:38 +02002035 mutex_lock(&chain->filter_chain_lock);
Jiri Pirko2190d1d2017-05-17 11:07:59 +02002036 tp = tcf_chain_tp_find(chain, &chain_info, protocol,
2037 prio, prio_allocate);
2038 if (IS_ERR(tp)) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002039 NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found");
Jiri Pirko2190d1d2017-05-17 11:07:59 +02002040 err = PTR_ERR(tp);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002041 goto errout_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 }
2043
2044 if (tp == NULL) {
Vlad Buslov8b646782019-02-11 10:55:41 +02002045 struct tcf_proto *tp_new = NULL;
2046
Vlad Buslov726d06122019-02-11 10:55:42 +02002047 if (chain->flushing) {
2048 err = -EAGAIN;
2049 goto errout_locked;
2050 }
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 /* Proto-tcf does not exist, create new one */
2053
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002054 if (tca[TCA_KIND] == NULL || !protocol) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002055 NL_SET_ERR_MSG(extack, "Filter kind and protocol must be specified");
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002056 err = -EINVAL;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002057 goto errout_locked;
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Vlad Buslovc431f892018-05-31 09:52:53 +03002060 if (!(n->nlmsg_flags & NLM_F_CREATE)) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002061 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 +01002062 err = -ENOENT;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002063 goto errout_locked;
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Jiri Pirko9d36d9e2017-05-17 11:07:57 +02002066 if (prio_allocate)
Vlad Busloved76f5e2019-02-11 10:55:38 +02002067 prio = tcf_auto_prio(tcf_chain_tp_prev(chain,
2068 &chain_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Vlad Busloved76f5e2019-02-11 10:55:38 +02002070 mutex_unlock(&chain->filter_chain_lock);
Eric Dumazet36d79af2020-01-21 11:02:20 -08002071 tp_new = tcf_proto_create(name, protocol, prio, chain,
2072 rtnl_held, extack);
Vlad Buslov8b646782019-02-11 10:55:41 +02002073 if (IS_ERR(tp_new)) {
2074 err = PTR_ERR(tp_new);
Vlad Buslov726d06122019-02-11 10:55:42 +02002075 goto errout_tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 }
Vlad Busloved76f5e2019-02-11 10:55:38 +02002077
Minoru Usui12186be2009-06-02 02:17:34 -07002078 tp_created = 1;
Vlad Buslov12db03b2019-02-11 10:55:45 +02002079 tp = tcf_chain_tp_insert_unique(chain, tp_new, protocol, prio,
2080 rtnl_held);
Vlad Buslov726d06122019-02-11 10:55:42 +02002081 if (IS_ERR(tp)) {
2082 err = PTR_ERR(tp);
2083 goto errout_tp;
2084 }
Vlad Busloved76f5e2019-02-11 10:55:38 +02002085 } else {
2086 mutex_unlock(&chain->filter_chain_lock);
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Vlad Buslov8b646782019-02-11 10:55:41 +02002089 if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
2090 NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one");
2091 err = -EINVAL;
2092 goto errout;
2093 }
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 fh = tp->ops->get(tp, t->tcm_handle);
2096
WANG Cong8113c092017-08-04 21:31:43 -07002097 if (!fh) {
Vlad Buslovc431f892018-05-31 09:52:53 +03002098 if (!(n->nlmsg_flags & NLM_F_CREATE)) {
Alexander Aringc35a4ac2018-01-18 11:20:50 -05002099 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 +01002100 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 goto errout;
Jiri Pirko6bb16e72017-02-09 14:38:58 +01002102 }
Vlad Buslovc431f892018-05-31 09:52:53 +03002103 } else if (n->nlmsg_flags & NLM_F_EXCL) {
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002104 tfilter_put(tp, fh);
Vlad Buslovc431f892018-05-31 09:52:53 +03002105 NL_SET_ERR_MSG(extack, "Filter already exists");
2106 err = -EEXIST;
2107 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 }
2109
Jiri Pirko9f407f12018-07-23 09:23:07 +02002110 if (chain->tmplt_ops && chain->tmplt_ops != tp->ops) {
2111 NL_SET_ERR_MSG(extack, "Chain template is set to a different filter kind");
2112 err = -EINVAL;
2113 goto errout;
2114 }
2115
Cong Wang695176b2021-07-29 16:12:14 -07002116 if (!(n->nlmsg_flags & NLM_F_CREATE))
2117 flags |= TCA_ACT_FLAGS_REPLACE;
2118 if (!rtnl_held)
2119 flags |= TCA_ACT_FLAGS_NO_RTNL;
Cong Wang2f7ef2f2014-04-25 13:54:06 -07002120 err = tp->ops->change(net, skb, tp, cl, t->tcm_handle, tca, &fh,
Cong Wang695176b2021-07-29 16:12:14 -07002121 flags, extack);
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002122 if (err == 0) {
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002123 tfilter_notify(net, skb, n, tp, block, q, parent, fh,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002124 RTM_NEWTFILTER, false, rtnl_held);
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002125 tfilter_put(tp, fh);
Vlad Buslov503d81d2019-07-21 17:44:12 +03002126 /* q pointer is NULL for shared blocks */
2127 if (q)
2128 q->flags &= ~TCQ_F_CAN_BYPASS;
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131errout:
Vlad Buslov8b646782019-02-11 10:55:41 +02002132 if (err && tp_created)
Vlad Buslov12db03b2019-02-11 10:55:45 +02002133 tcf_chain_tp_delete_empty(chain, tp, rtnl_held, NULL);
Vlad Buslov726d06122019-02-11 10:55:42 +02002134errout_tp:
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002135 if (chain) {
2136 if (tp && !IS_ERR(tp))
Vlad Buslov12db03b2019-02-11 10:55:45 +02002137 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002138 if (!tp_created)
2139 tcf_chain_put(chain);
2140 }
Vlad Buslov12db03b2019-02-11 10:55:45 +02002141 tcf_block_release(q, block, rtnl_held);
Vlad Buslov470502d2019-02-11 10:55:48 +02002142
2143 if (rtnl_held)
2144 rtnl_unlock();
2145
2146 if (err == -EAGAIN) {
2147 /* Take rtnl lock in case EAGAIN is caused by concurrent flush
2148 * of target chain.
2149 */
2150 rtnl_held = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 /* Replay the request. */
2152 goto replay;
Vlad Buslov470502d2019-02-11 10:55:48 +02002153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 return err;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002155
2156errout_locked:
2157 mutex_unlock(&chain->filter_chain_lock);
2158 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159}
2160
Vlad Buslovc431f892018-05-31 09:52:53 +03002161static int tc_del_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
2162 struct netlink_ext_ack *extack)
2163{
2164 struct net *net = sock_net(skb->sk);
2165 struct nlattr *tca[TCA_MAX + 1];
Cong Wang6f96c3c2019-10-07 13:26:28 -07002166 char name[IFNAMSIZ];
Vlad Buslovc431f892018-05-31 09:52:53 +03002167 struct tcmsg *t;
2168 u32 protocol;
2169 u32 prio;
2170 u32 parent;
2171 u32 chain_index;
2172 struct Qdisc *q = NULL;
2173 struct tcf_chain_info chain_info;
2174 struct tcf_chain *chain = NULL;
Vlad Buslov470502d2019-02-11 10:55:48 +02002175 struct tcf_block *block = NULL;
Vlad Buslovc431f892018-05-31 09:52:53 +03002176 struct tcf_proto *tp = NULL;
2177 unsigned long cl = 0;
2178 void *fh = NULL;
2179 int err;
Vlad Buslov470502d2019-02-11 10:55:48 +02002180 bool rtnl_held = false;
Vlad Buslovc431f892018-05-31 09:52:53 +03002181
2182 if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
2183 return -EPERM;
2184
Johannes Berg8cb08172019-04-26 14:07:28 +02002185 err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
2186 rtm_tca_policy, extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002187 if (err < 0)
2188 return err;
2189
2190 t = nlmsg_data(n);
2191 protocol = TC_H_MIN(t->tcm_info);
2192 prio = TC_H_MAJ(t->tcm_info);
2193 parent = t->tcm_parent;
2194
2195 if (prio == 0 && (protocol || t->tcm_handle || tca[TCA_KIND])) {
2196 NL_SET_ERR_MSG(extack, "Cannot flush filters with protocol, handle or kind set");
2197 return -ENOENT;
2198 }
2199
2200 /* Find head of filter chain. */
2201
Vlad Buslov470502d2019-02-11 10:55:48 +02002202 err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack);
2203 if (err)
2204 return err;
2205
Cong Wang6f96c3c2019-10-07 13:26:28 -07002206 if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2207 NL_SET_ERR_MSG(extack, "Specified TC filter name too long");
2208 err = -EINVAL;
2209 goto errout;
2210 }
Vlad Buslov470502d2019-02-11 10:55:48 +02002211 /* Take rtnl mutex if flushing whole chain, block is shared (no qdisc
2212 * found), qdisc is not unlocked, classifier type is not specified,
2213 * classifier is not unlocked.
2214 */
2215 if (!prio ||
2216 (q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) ||
Cong Wang6f96c3c2019-10-07 13:26:28 -07002217 !tcf_proto_is_unlocked(name)) {
Vlad Buslov470502d2019-02-11 10:55:48 +02002218 rtnl_held = true;
2219 rtnl_lock();
2220 }
2221
2222 err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack);
2223 if (err)
2224 goto errout;
2225
2226 block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index,
2227 extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002228 if (IS_ERR(block)) {
2229 err = PTR_ERR(block);
2230 goto errout;
2231 }
2232
2233 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2234 if (chain_index > TC_ACT_EXT_VAL_MASK) {
2235 NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
2236 err = -EINVAL;
2237 goto errout;
2238 }
2239 chain = tcf_chain_get(block, chain_index, false);
2240 if (!chain) {
Jiri Pirko5ca8a252018-08-03 11:08:47 +02002241 /* User requested flush on non-existent chain. Nothing to do,
2242 * so just return success.
2243 */
2244 if (prio == 0) {
2245 err = 0;
2246 goto errout;
2247 }
Vlad Buslovc431f892018-05-31 09:52:53 +03002248 NL_SET_ERR_MSG(extack, "Cannot find specified filter chain");
Jiri Pirkob7b42472018-08-27 20:58:44 +02002249 err = -ENOENT;
Vlad Buslovc431f892018-05-31 09:52:53 +03002250 goto errout;
2251 }
2252
2253 if (prio == 0) {
2254 tfilter_notify_chain(net, skb, block, q, parent, n,
Vlad Buslov0fca55e2020-11-27 17:12:05 +02002255 chain, RTM_DELTFILTER);
Vlad Buslov12db03b2019-02-11 10:55:45 +02002256 tcf_chain_flush(chain, rtnl_held);
Vlad Buslovc431f892018-05-31 09:52:53 +03002257 err = 0;
2258 goto errout;
2259 }
2260
Vlad Busloved76f5e2019-02-11 10:55:38 +02002261 mutex_lock(&chain->filter_chain_lock);
Vlad Buslovc431f892018-05-31 09:52:53 +03002262 tp = tcf_chain_tp_find(chain, &chain_info, protocol,
2263 prio, false);
2264 if (!tp || IS_ERR(tp)) {
2265 NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found");
Vlad Buslov0e399032018-06-04 18:32:23 +03002266 err = tp ? PTR_ERR(tp) : -ENOENT;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002267 goto errout_locked;
Vlad Buslovc431f892018-05-31 09:52:53 +03002268 } else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
2269 NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one");
2270 err = -EINVAL;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002271 goto errout_locked;
2272 } else if (t->tcm_handle == 0) {
John Hurley59eb87c2019-11-02 14:17:47 +00002273 tcf_proto_signal_destroying(chain, tp);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002274 tcf_chain_tp_remove(chain, &chain_info, tp);
2275 mutex_unlock(&chain->filter_chain_lock);
2276
Vlad Buslov12db03b2019-02-11 10:55:45 +02002277 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002278 tfilter_notify(net, skb, n, tp, block, q, parent, fh,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002279 RTM_DELTFILTER, false, rtnl_held);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002280 err = 0;
Vlad Buslovc431f892018-05-31 09:52:53 +03002281 goto errout;
2282 }
Vlad Busloved76f5e2019-02-11 10:55:38 +02002283 mutex_unlock(&chain->filter_chain_lock);
Vlad Buslovc431f892018-05-31 09:52:53 +03002284
2285 fh = tp->ops->get(tp, t->tcm_handle);
2286
2287 if (!fh) {
Vlad Busloved76f5e2019-02-11 10:55:38 +02002288 NL_SET_ERR_MSG(extack, "Specified filter handle not found");
2289 err = -ENOENT;
Vlad Buslovc431f892018-05-31 09:52:53 +03002290 } else {
2291 bool last;
2292
2293 err = tfilter_del_notify(net, skb, n, tp, block,
2294 q, parent, fh, false, &last,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002295 rtnl_held, extack);
2296
Vlad Buslovc431f892018-05-31 09:52:53 +03002297 if (err)
2298 goto errout;
Vlad Buslov8b646782019-02-11 10:55:41 +02002299 if (last)
Vlad Buslov12db03b2019-02-11 10:55:45 +02002300 tcf_chain_tp_delete_empty(chain, tp, rtnl_held, extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002301 }
2302
2303errout:
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002304 if (chain) {
2305 if (tp && !IS_ERR(tp))
Vlad Buslov12db03b2019-02-11 10:55:45 +02002306 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Buslovc431f892018-05-31 09:52:53 +03002307 tcf_chain_put(chain);
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002308 }
Vlad Buslov12db03b2019-02-11 10:55:45 +02002309 tcf_block_release(q, block, rtnl_held);
Vlad Buslov470502d2019-02-11 10:55:48 +02002310
2311 if (rtnl_held)
2312 rtnl_unlock();
2313
Vlad Buslovc431f892018-05-31 09:52:53 +03002314 return err;
Vlad Busloved76f5e2019-02-11 10:55:38 +02002315
2316errout_locked:
2317 mutex_unlock(&chain->filter_chain_lock);
2318 goto errout;
Vlad Buslovc431f892018-05-31 09:52:53 +03002319}
2320
2321static int tc_get_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
2322 struct netlink_ext_ack *extack)
2323{
2324 struct net *net = sock_net(skb->sk);
2325 struct nlattr *tca[TCA_MAX + 1];
Cong Wang6f96c3c2019-10-07 13:26:28 -07002326 char name[IFNAMSIZ];
Vlad Buslovc431f892018-05-31 09:52:53 +03002327 struct tcmsg *t;
2328 u32 protocol;
2329 u32 prio;
2330 u32 parent;
2331 u32 chain_index;
2332 struct Qdisc *q = NULL;
2333 struct tcf_chain_info chain_info;
2334 struct tcf_chain *chain = NULL;
Vlad Buslov470502d2019-02-11 10:55:48 +02002335 struct tcf_block *block = NULL;
Vlad Buslovc431f892018-05-31 09:52:53 +03002336 struct tcf_proto *tp = NULL;
2337 unsigned long cl = 0;
2338 void *fh = NULL;
2339 int err;
Vlad Buslov470502d2019-02-11 10:55:48 +02002340 bool rtnl_held = false;
Vlad Buslovc431f892018-05-31 09:52:53 +03002341
Johannes Berg8cb08172019-04-26 14:07:28 +02002342 err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
2343 rtm_tca_policy, extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002344 if (err < 0)
2345 return err;
2346
2347 t = nlmsg_data(n);
2348 protocol = TC_H_MIN(t->tcm_info);
2349 prio = TC_H_MAJ(t->tcm_info);
2350 parent = t->tcm_parent;
2351
2352 if (prio == 0) {
2353 NL_SET_ERR_MSG(extack, "Invalid filter command with priority of zero");
2354 return -ENOENT;
2355 }
2356
2357 /* Find head of filter chain. */
2358
Vlad Buslov470502d2019-02-11 10:55:48 +02002359 err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack);
2360 if (err)
2361 return err;
2362
Cong Wang6f96c3c2019-10-07 13:26:28 -07002363 if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2364 NL_SET_ERR_MSG(extack, "Specified TC filter name too long");
2365 err = -EINVAL;
2366 goto errout;
2367 }
Vlad Buslov470502d2019-02-11 10:55:48 +02002368 /* Take rtnl mutex if block is shared (no qdisc found), qdisc is not
2369 * unlocked, classifier type is not specified, classifier is not
2370 * unlocked.
2371 */
2372 if ((q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) ||
Cong Wang6f96c3c2019-10-07 13:26:28 -07002373 !tcf_proto_is_unlocked(name)) {
Vlad Buslov470502d2019-02-11 10:55:48 +02002374 rtnl_held = true;
2375 rtnl_lock();
2376 }
2377
2378 err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack);
2379 if (err)
2380 goto errout;
2381
2382 block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index,
2383 extack);
Vlad Buslovc431f892018-05-31 09:52:53 +03002384 if (IS_ERR(block)) {
2385 err = PTR_ERR(block);
2386 goto errout;
2387 }
2388
2389 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2390 if (chain_index > TC_ACT_EXT_VAL_MASK) {
2391 NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
2392 err = -EINVAL;
2393 goto errout;
2394 }
2395 chain = tcf_chain_get(block, chain_index, false);
2396 if (!chain) {
2397 NL_SET_ERR_MSG(extack, "Cannot find specified filter chain");
2398 err = -EINVAL;
2399 goto errout;
2400 }
2401
Vlad Busloved76f5e2019-02-11 10:55:38 +02002402 mutex_lock(&chain->filter_chain_lock);
Vlad Buslovc431f892018-05-31 09:52:53 +03002403 tp = tcf_chain_tp_find(chain, &chain_info, protocol,
2404 prio, false);
Vlad Busloved76f5e2019-02-11 10:55:38 +02002405 mutex_unlock(&chain->filter_chain_lock);
Vlad Buslovc431f892018-05-31 09:52:53 +03002406 if (!tp || IS_ERR(tp)) {
2407 NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found");
Vlad Buslov0e399032018-06-04 18:32:23 +03002408 err = tp ? PTR_ERR(tp) : -ENOENT;
Vlad Buslovc431f892018-05-31 09:52:53 +03002409 goto errout;
2410 } else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
2411 NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one");
2412 err = -EINVAL;
2413 goto errout;
2414 }
2415
2416 fh = tp->ops->get(tp, t->tcm_handle);
2417
2418 if (!fh) {
2419 NL_SET_ERR_MSG(extack, "Specified filter handle not found");
2420 err = -ENOENT;
2421 } else {
2422 err = tfilter_notify(net, skb, n, tp, block, q, parent,
Vlad Buslov12db03b2019-02-11 10:55:45 +02002423 fh, RTM_NEWTFILTER, true, rtnl_held);
Vlad Buslovc431f892018-05-31 09:52:53 +03002424 if (err < 0)
2425 NL_SET_ERR_MSG(extack, "Failed to send filter notify message");
2426 }
2427
Vlad Buslov7d5509f2019-02-11 10:55:44 +02002428 tfilter_put(tp, fh);
Vlad Buslovc431f892018-05-31 09:52:53 +03002429errout:
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002430 if (chain) {
2431 if (tp && !IS_ERR(tp))
Vlad Buslov12db03b2019-02-11 10:55:45 +02002432 tcf_proto_put(tp, rtnl_held, NULL);
Vlad Buslovc431f892018-05-31 09:52:53 +03002433 tcf_chain_put(chain);
Vlad Buslov4dbfa762019-02-11 10:55:39 +02002434 }
Vlad Buslov12db03b2019-02-11 10:55:45 +02002435 tcf_block_release(q, block, rtnl_held);
Vlad Buslov470502d2019-02-11 10:55:48 +02002436
2437 if (rtnl_held)
2438 rtnl_unlock();
2439
Vlad Buslovc431f892018-05-31 09:52:53 +03002440 return err;
2441}
2442
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08002443struct tcf_dump_args {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 struct tcf_walker w;
2445 struct sk_buff *skb;
2446 struct netlink_callback *cb;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002447 struct tcf_block *block;
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002448 struct Qdisc *q;
2449 u32 parent;
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002450 bool terse_dump;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451};
2452
WANG Cong8113c092017-08-04 21:31:43 -07002453static int tcf_node_dump(struct tcf_proto *tp, void *n, struct tcf_walker *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454{
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08002455 struct tcf_dump_args *a = (void *)arg;
WANG Cong832d1d52014-01-09 16:14:01 -08002456 struct net *net = sock_net(a->skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002458 return tcf_fill_node(net, a->skb, tp, a->block, a->q, a->parent,
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002459 n, NETLINK_CB(a->cb->skb).portid,
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04002460 a->cb->nlh->nlmsg_seq, NLM_F_MULTI,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002461 RTM_NEWTFILTER, a->terse_dump, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462}
2463
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002464static bool tcf_chain_dump(struct tcf_chain *chain, struct Qdisc *q, u32 parent,
2465 struct sk_buff *skb, struct netlink_callback *cb,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002466 long index_start, long *p_index, bool terse)
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002467{
2468 struct net *net = sock_net(skb->sk);
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002469 struct tcf_block *block = chain->block;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002470 struct tcmsg *tcm = nlmsg_data(cb->nlh);
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002471 struct tcf_proto *tp, *tp_prev;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002472 struct tcf_dump_args arg;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002473
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002474 for (tp = __tcf_get_next_proto(chain, NULL);
2475 tp;
2476 tp_prev = tp,
2477 tp = __tcf_get_next_proto(chain, tp),
Vlad Buslov12db03b2019-02-11 10:55:45 +02002478 tcf_proto_put(tp_prev, true, NULL),
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002479 (*p_index)++) {
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002480 if (*p_index < index_start)
2481 continue;
2482 if (TC_H_MAJ(tcm->tcm_info) &&
2483 TC_H_MAJ(tcm->tcm_info) != tp->prio)
2484 continue;
2485 if (TC_H_MIN(tcm->tcm_info) &&
2486 TC_H_MIN(tcm->tcm_info) != tp->protocol)
2487 continue;
2488 if (*p_index > index_start)
2489 memset(&cb->args[1], 0,
2490 sizeof(cb->args) - sizeof(cb->args[0]));
2491 if (cb->args[1] == 0) {
YueHaibing53189182018-07-17 20:58:14 +08002492 if (tcf_fill_node(net, skb, tp, block, q, parent, NULL,
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002493 NETLINK_CB(cb->skb).portid,
2494 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002495 RTM_NEWTFILTER, false, true) <= 0)
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002496 goto errout;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002497 cb->args[1] = 1;
2498 }
2499 if (!tp->ops->walk)
2500 continue;
2501 arg.w.fn = tcf_node_dump;
2502 arg.skb = skb;
2503 arg.cb = cb;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002504 arg.block = block;
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002505 arg.q = q;
2506 arg.parent = parent;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002507 arg.w.stop = 0;
2508 arg.w.skip = cb->args[1] - 1;
2509 arg.w.count = 0;
Vlad Buslov01683a12018-07-09 13:29:11 +03002510 arg.w.cookie = cb->args[2];
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002511 arg.terse_dump = terse;
Vlad Buslov12db03b2019-02-11 10:55:45 +02002512 tp->ops->walk(tp, &arg.w, true);
Vlad Buslov01683a12018-07-09 13:29:11 +03002513 cb->args[2] = arg.w.cookie;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002514 cb->args[1] = arg.w.count + 1;
2515 if (arg.w.stop)
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002516 goto errout;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002517 }
Jiri Pirko5bc17012017-05-17 11:08:01 +02002518 return true;
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002519
2520errout:
Vlad Buslov12db03b2019-02-11 10:55:45 +02002521 tcf_proto_put(tp, true, NULL);
Vlad Buslovfe2923a2019-02-11 10:55:40 +02002522 return false;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002523}
2524
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002525static const struct nla_policy tcf_tfilter_dump_policy[TCA_MAX + 1] = {
2526 [TCA_DUMP_FLAGS] = NLA_POLICY_BITFIELD32(TCA_DUMP_FLAGS_TERSE),
2527};
2528
Eric Dumazetbd27a872009-11-05 20:57:26 -08002529/* called with RTNL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530static int tc_dump_tfilter(struct sk_buff *skb, struct netlink_callback *cb)
2531{
Vlad Buslovbbf73832019-02-11 10:55:36 +02002532 struct tcf_chain *chain, *chain_prev;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002533 struct net *net = sock_net(skb->sk);
Jiri Pirko5bc17012017-05-17 11:08:01 +02002534 struct nlattr *tca[TCA_MAX + 1];
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002535 struct Qdisc *q = NULL;
Jiri Pirko6529eab2017-05-17 11:07:55 +02002536 struct tcf_block *block;
David S. Miller942b8162012-06-26 21:48:50 -07002537 struct tcmsg *tcm = nlmsg_data(cb->nlh);
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002538 bool terse_dump = false;
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002539 long index_start;
2540 long index;
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002541 u32 parent;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002542 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
Hong zhi guo573ce262013-03-27 06:47:04 +00002544 if (nlmsg_len(cb->nlh) < sizeof(*tcm))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 return skb->len;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002546
Johannes Berg8cb08172019-04-26 14:07:28 +02002547 err = nlmsg_parse_deprecated(cb->nlh, sizeof(*tcm), tca, TCA_MAX,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002548 tcf_tfilter_dump_policy, cb->extack);
Jiri Pirko5bc17012017-05-17 11:08:01 +02002549 if (err)
2550 return err;
2551
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002552 if (tca[TCA_DUMP_FLAGS]) {
2553 struct nla_bitfield32 flags =
2554 nla_get_bitfield32(tca[TCA_DUMP_FLAGS]);
2555
2556 terse_dump = flags.value & TCA_DUMP_FLAGS_TERSE;
2557 }
2558
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002559 if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK) {
Vlad Buslov787ce6d2018-09-24 19:22:58 +03002560 block = tcf_block_refcnt_get(net, tcm->tcm_block_index);
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002561 if (!block)
WANG Cong143976c2017-08-24 16:51:29 -07002562 goto out;
Jiri Pirkod680b352018-01-18 16:14:49 +01002563 /* If we work with block index, q is NULL and parent value
2564 * will never be used in the following code. The check
2565 * in tcf_fill_node prevents it. However, compiler does not
2566 * see that far, so set parent to zero to silence the warning
2567 * about parent being uninitialized.
2568 */
2569 parent = 0;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002570 } else {
2571 const struct Qdisc_class_ops *cops;
2572 struct net_device *dev;
2573 unsigned long cl = 0;
2574
2575 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
2576 if (!dev)
2577 return skb->len;
2578
2579 parent = tcm->tcm_parent;
Cong Wanga7df4872020-04-30 20:53:49 -07002580 if (!parent)
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002581 q = dev->qdisc;
Cong Wanga7df4872020-04-30 20:53:49 -07002582 else
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002583 q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent));
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002584 if (!q)
2585 goto out;
2586 cops = q->ops->cl_ops;
2587 if (!cops)
2588 goto out;
2589 if (!cops->tcf_block)
2590 goto out;
2591 if (TC_H_MIN(tcm->tcm_parent)) {
2592 cl = cops->find(q, tcm->tcm_parent);
2593 if (cl == 0)
2594 goto out;
2595 }
2596 block = cops->tcf_block(q, cl, NULL);
2597 if (!block)
2598 goto out;
Cong Wanga7df4872020-04-30 20:53:49 -07002599 parent = block->classid;
Jiri Pirko7960d1d2018-01-17 11:46:51 +01002600 if (tcf_block_shared(block))
2601 q = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002604 index_start = cb->args[0];
2605 index = 0;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002606
Vlad Buslovbbf73832019-02-11 10:55:36 +02002607 for (chain = __tcf_get_next_chain(block, NULL);
2608 chain;
2609 chain_prev = chain,
2610 chain = __tcf_get_next_chain(block, chain),
2611 tcf_chain_put(chain_prev)) {
Jiri Pirko5bc17012017-05-17 11:08:01 +02002612 if (tca[TCA_CHAIN] &&
2613 nla_get_u32(tca[TCA_CHAIN]) != chain->index)
2614 continue;
Jiri Pirkoa10fa202017-10-13 14:01:05 +02002615 if (!tcf_chain_dump(chain, q, parent, skb, cb,
Vlad Buslovf8ab1802020-05-15 14:40:11 +03002616 index_start, &index, terse_dump)) {
Vlad Buslovbbf73832019-02-11 10:55:36 +02002617 tcf_chain_put(chain);
Roman Kapl5ae437a2018-02-19 21:32:51 +01002618 err = -EMSGSIZE;
Jiri Pirko5bc17012017-05-17 11:08:01 +02002619 break;
Roman Kapl5ae437a2018-02-19 21:32:51 +01002620 }
Jiri Pirko5bc17012017-05-17 11:08:01 +02002621 }
2622
Vlad Buslov787ce6d2018-09-24 19:22:58 +03002623 if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK)
Vlad Buslov12db03b2019-02-11 10:55:45 +02002624 tcf_block_refcnt_put(block, true);
Jiri Pirkoacb31fa2017-05-17 11:08:00 +02002625 cb->args[0] = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627out:
Roman Kapl5ae437a2018-02-19 21:32:51 +01002628 /* If we did no progress, the error (EMSGSIZE) is real */
2629 if (skb->len == 0 && err)
2630 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 return skb->len;
2632}
2633
Vlad Buslova5654822019-02-11 10:55:37 +02002634static int tc_chain_fill_node(const struct tcf_proto_ops *tmplt_ops,
2635 void *tmplt_priv, u32 chain_index,
2636 struct net *net, struct sk_buff *skb,
2637 struct tcf_block *block,
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002638 u32 portid, u32 seq, u16 flags, int event)
2639{
2640 unsigned char *b = skb_tail_pointer(skb);
Jiri Pirko9f407f12018-07-23 09:23:07 +02002641 const struct tcf_proto_ops *ops;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002642 struct nlmsghdr *nlh;
2643 struct tcmsg *tcm;
Jiri Pirko9f407f12018-07-23 09:23:07 +02002644 void *priv;
2645
Vlad Buslova5654822019-02-11 10:55:37 +02002646 ops = tmplt_ops;
2647 priv = tmplt_priv;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002648
2649 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
2650 if (!nlh)
2651 goto out_nlmsg_trim;
2652 tcm = nlmsg_data(nlh);
2653 tcm->tcm_family = AF_UNSPEC;
2654 tcm->tcm__pad1 = 0;
2655 tcm->tcm__pad2 = 0;
2656 tcm->tcm_handle = 0;
2657 if (block->q) {
2658 tcm->tcm_ifindex = qdisc_dev(block->q)->ifindex;
2659 tcm->tcm_parent = block->q->handle;
2660 } else {
2661 tcm->tcm_ifindex = TCM_IFINDEX_MAGIC_BLOCK;
2662 tcm->tcm_block_index = block->index;
2663 }
2664
Vlad Buslova5654822019-02-11 10:55:37 +02002665 if (nla_put_u32(skb, TCA_CHAIN, chain_index))
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002666 goto nla_put_failure;
2667
Jiri Pirko9f407f12018-07-23 09:23:07 +02002668 if (ops) {
2669 if (nla_put_string(skb, TCA_KIND, ops->kind))
2670 goto nla_put_failure;
2671 if (ops->tmplt_dump(skb, net, priv) < 0)
2672 goto nla_put_failure;
2673 }
2674
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002675 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
2676 return skb->len;
2677
2678out_nlmsg_trim:
2679nla_put_failure:
2680 nlmsg_trim(skb, b);
2681 return -EMSGSIZE;
2682}
2683
2684static int tc_chain_notify(struct tcf_chain *chain, struct sk_buff *oskb,
2685 u32 seq, u16 flags, int event, bool unicast)
2686{
2687 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
2688 struct tcf_block *block = chain->block;
2689 struct net *net = block->net;
2690 struct sk_buff *skb;
Zhike Wang5b5f99b2019-03-11 03:15:54 -07002691 int err = 0;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002692
2693 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2694 if (!skb)
2695 return -ENOBUFS;
2696
Vlad Buslova5654822019-02-11 10:55:37 +02002697 if (tc_chain_fill_node(chain->tmplt_ops, chain->tmplt_priv,
2698 chain->index, net, skb, block, portid,
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002699 seq, flags, event) <= 0) {
2700 kfree_skb(skb);
2701 return -EINVAL;
2702 }
2703
2704 if (unicast)
Yajun Dengf79a3bc2021-07-15 20:24:24 +08002705 err = rtnl_unicast(skb, net, portid);
Zhike Wang5b5f99b2019-03-11 03:15:54 -07002706 else
2707 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
2708 flags & NLM_F_ECHO);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002709
Zhike Wang5b5f99b2019-03-11 03:15:54 -07002710 return err;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002711}
2712
Vlad Buslova5654822019-02-11 10:55:37 +02002713static int tc_chain_notify_delete(const struct tcf_proto_ops *tmplt_ops,
2714 void *tmplt_priv, u32 chain_index,
2715 struct tcf_block *block, struct sk_buff *oskb,
2716 u32 seq, u16 flags, bool unicast)
2717{
2718 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
2719 struct net *net = block->net;
2720 struct sk_buff *skb;
2721
2722 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2723 if (!skb)
2724 return -ENOBUFS;
2725
2726 if (tc_chain_fill_node(tmplt_ops, tmplt_priv, chain_index, net, skb,
2727 block, portid, seq, flags, RTM_DELCHAIN) <= 0) {
2728 kfree_skb(skb);
2729 return -EINVAL;
2730 }
2731
2732 if (unicast)
Yajun Dengf79a3bc2021-07-15 20:24:24 +08002733 return rtnl_unicast(skb, net, portid);
Vlad Buslova5654822019-02-11 10:55:37 +02002734
2735 return rtnetlink_send(skb, net, portid, RTNLGRP_TC, flags & NLM_F_ECHO);
2736}
2737
Jiri Pirko9f407f12018-07-23 09:23:07 +02002738static int tc_chain_tmplt_add(struct tcf_chain *chain, struct net *net,
2739 struct nlattr **tca,
2740 struct netlink_ext_ack *extack)
2741{
2742 const struct tcf_proto_ops *ops;
Eric Dumazet2dd56162019-12-07 11:34:45 -08002743 char name[IFNAMSIZ];
Jiri Pirko9f407f12018-07-23 09:23:07 +02002744 void *tmplt_priv;
2745
2746 /* If kind is not set, user did not specify template. */
2747 if (!tca[TCA_KIND])
2748 return 0;
2749
Eric Dumazet2dd56162019-12-07 11:34:45 -08002750 if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2751 NL_SET_ERR_MSG(extack, "Specified TC chain template name too long");
2752 return -EINVAL;
2753 }
2754
2755 ops = tcf_proto_lookup_ops(name, true, extack);
Jiri Pirko9f407f12018-07-23 09:23:07 +02002756 if (IS_ERR(ops))
2757 return PTR_ERR(ops);
2758 if (!ops->tmplt_create || !ops->tmplt_destroy || !ops->tmplt_dump) {
2759 NL_SET_ERR_MSG(extack, "Chain templates are not supported with specified classifier");
2760 return -EOPNOTSUPP;
2761 }
2762
2763 tmplt_priv = ops->tmplt_create(net, chain, tca, extack);
2764 if (IS_ERR(tmplt_priv)) {
2765 module_put(ops->owner);
2766 return PTR_ERR(tmplt_priv);
2767 }
2768 chain->tmplt_ops = ops;
2769 chain->tmplt_priv = tmplt_priv;
2770 return 0;
2771}
2772
Vlad Buslova5654822019-02-11 10:55:37 +02002773static void tc_chain_tmplt_del(const struct tcf_proto_ops *tmplt_ops,
2774 void *tmplt_priv)
Jiri Pirko9f407f12018-07-23 09:23:07 +02002775{
Jiri Pirko9f407f12018-07-23 09:23:07 +02002776 /* If template ops are set, no work to do for us. */
Vlad Buslova5654822019-02-11 10:55:37 +02002777 if (!tmplt_ops)
Jiri Pirko9f407f12018-07-23 09:23:07 +02002778 return;
2779
Vlad Buslova5654822019-02-11 10:55:37 +02002780 tmplt_ops->tmplt_destroy(tmplt_priv);
2781 module_put(tmplt_ops->owner);
Jiri Pirko9f407f12018-07-23 09:23:07 +02002782}
2783
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002784/* Add/delete/get a chain */
2785
2786static int tc_ctl_chain(struct sk_buff *skb, struct nlmsghdr *n,
2787 struct netlink_ext_ack *extack)
2788{
2789 struct net *net = sock_net(skb->sk);
2790 struct nlattr *tca[TCA_MAX + 1];
2791 struct tcmsg *t;
2792 u32 parent;
2793 u32 chain_index;
2794 struct Qdisc *q = NULL;
2795 struct tcf_chain *chain = NULL;
2796 struct tcf_block *block;
2797 unsigned long cl;
2798 int err;
2799
2800 if (n->nlmsg_type != RTM_GETCHAIN &&
2801 !netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
2802 return -EPERM;
2803
2804replay:
Johannes Berg8cb08172019-04-26 14:07:28 +02002805 err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
2806 rtm_tca_policy, extack);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002807 if (err < 0)
2808 return err;
2809
2810 t = nlmsg_data(n);
2811 parent = t->tcm_parent;
2812 cl = 0;
2813
2814 block = tcf_block_find(net, &q, &parent, &cl,
2815 t->tcm_ifindex, t->tcm_block_index, extack);
2816 if (IS_ERR(block))
2817 return PTR_ERR(block);
2818
2819 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2820 if (chain_index > TC_ACT_EXT_VAL_MASK) {
2821 NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
Vlad Buslove368fdb2018-09-24 19:22:53 +03002822 err = -EINVAL;
2823 goto errout_block;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002824 }
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002825
2826 mutex_lock(&block->lock);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002827 chain = tcf_chain_lookup(block, chain_index);
2828 if (n->nlmsg_type == RTM_NEWCHAIN) {
2829 if (chain) {
Jiri Pirko3d32f4c2018-08-01 12:36:55 +02002830 if (tcf_chain_held_by_acts_only(chain)) {
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002831 /* The chain exists only because there is
Jiri Pirko3d32f4c2018-08-01 12:36:55 +02002832 * some action referencing it.
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002833 */
2834 tcf_chain_hold(chain);
2835 } else {
2836 NL_SET_ERR_MSG(extack, "Filter chain already exists");
Vlad Buslove368fdb2018-09-24 19:22:53 +03002837 err = -EEXIST;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002838 goto errout_block_locked;
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002839 }
2840 } else {
2841 if (!(n->nlmsg_flags & NLM_F_CREATE)) {
2842 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 +03002843 err = -ENOENT;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002844 goto errout_block_locked;
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002845 }
2846 chain = tcf_chain_create(block, chain_index);
2847 if (!chain) {
2848 NL_SET_ERR_MSG(extack, "Failed to create filter chain");
Vlad Buslove368fdb2018-09-24 19:22:53 +03002849 err = -ENOMEM;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002850 goto errout_block_locked;
Jiri Pirko1f3ed382018-07-27 09:45:05 +02002851 }
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002852 }
2853 } else {
Jiri Pirko3d32f4c2018-08-01 12:36:55 +02002854 if (!chain || tcf_chain_held_by_acts_only(chain)) {
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002855 NL_SET_ERR_MSG(extack, "Cannot find specified filter chain");
Vlad Buslove368fdb2018-09-24 19:22:53 +03002856 err = -EINVAL;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002857 goto errout_block_locked;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002858 }
2859 tcf_chain_hold(chain);
2860 }
2861
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002862 if (n->nlmsg_type == RTM_NEWCHAIN) {
2863 /* Modifying chain requires holding parent block lock. In case
2864 * the chain was successfully added, take a reference to the
2865 * chain. This ensures that an empty chain does not disappear at
2866 * the end of this function.
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002867 */
2868 tcf_chain_hold(chain);
2869 chain->explicitly_created = true;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002870 }
2871 mutex_unlock(&block->lock);
2872
2873 switch (n->nlmsg_type) {
2874 case RTM_NEWCHAIN:
2875 err = tc_chain_tmplt_add(chain, net, tca, extack);
2876 if (err) {
2877 tcf_chain_put_explicitly_created(chain);
2878 goto errout;
2879 }
2880
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002881 tc_chain_notify(chain, NULL, 0, NLM_F_CREATE | NLM_F_EXCL,
2882 RTM_NEWCHAIN, false);
2883 break;
2884 case RTM_DELCHAIN:
Cong Wangf5b9bac2018-09-11 14:22:23 -07002885 tfilter_notify_chain(net, skb, block, q, parent, n,
Vlad Buslov0fca55e2020-11-27 17:12:05 +02002886 chain, RTM_DELTFILTER);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002887 /* Flush the chain first as the user requested chain removal. */
Vlad Buslov12db03b2019-02-11 10:55:45 +02002888 tcf_chain_flush(chain, true);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002889 /* In case the chain was successfully deleted, put a reference
2890 * to the chain previously taken during addition.
2891 */
2892 tcf_chain_put_explicitly_created(chain);
2893 break;
2894 case RTM_GETCHAIN:
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002895 err = tc_chain_notify(chain, skb, n->nlmsg_seq,
Yajun Deng9d85a6f2021-07-22 11:23:43 +08002896 n->nlmsg_flags, n->nlmsg_type, true);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002897 if (err < 0)
2898 NL_SET_ERR_MSG(extack, "Failed to send chain notify message");
2899 break;
2900 default:
2901 err = -EOPNOTSUPP;
2902 NL_SET_ERR_MSG(extack, "Unsupported message type");
2903 goto errout;
2904 }
2905
2906errout:
2907 tcf_chain_put(chain);
Vlad Buslove368fdb2018-09-24 19:22:53 +03002908errout_block:
Vlad Buslov12db03b2019-02-11 10:55:45 +02002909 tcf_block_release(q, block, true);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002910 if (err == -EAGAIN)
2911 /* Replay the request. */
2912 goto replay;
2913 return err;
Vlad Buslov2cbfab02019-02-11 10:55:34 +02002914
2915errout_block_locked:
2916 mutex_unlock(&block->lock);
2917 goto errout_block;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002918}
2919
2920/* called with RTNL */
2921static int tc_dump_chain(struct sk_buff *skb, struct netlink_callback *cb)
2922{
2923 struct net *net = sock_net(skb->sk);
2924 struct nlattr *tca[TCA_MAX + 1];
2925 struct Qdisc *q = NULL;
2926 struct tcf_block *block;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002927 struct tcmsg *tcm = nlmsg_data(cb->nlh);
Vlad Buslovace4a262019-02-25 17:45:44 +02002928 struct tcf_chain *chain;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002929 long index_start;
2930 long index;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002931 int err;
2932
2933 if (nlmsg_len(cb->nlh) < sizeof(*tcm))
2934 return skb->len;
2935
Johannes Berg8cb08172019-04-26 14:07:28 +02002936 err = nlmsg_parse_deprecated(cb->nlh, sizeof(*tcm), tca, TCA_MAX,
2937 rtm_tca_policy, cb->extack);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002938 if (err)
2939 return err;
2940
2941 if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK) {
Vlad Buslov787ce6d2018-09-24 19:22:58 +03002942 block = tcf_block_refcnt_get(net, tcm->tcm_block_index);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002943 if (!block)
2944 goto out;
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002945 } else {
2946 const struct Qdisc_class_ops *cops;
2947 struct net_device *dev;
2948 unsigned long cl = 0;
2949
2950 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
2951 if (!dev)
2952 return skb->len;
2953
Lukas Bulwahn0ad41b22020-10-28 12:35:33 +01002954 if (!tcm->tcm_parent)
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002955 q = dev->qdisc;
Lukas Bulwahn0ad41b22020-10-28 12:35:33 +01002956 else
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002957 q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent));
Lukas Bulwahn0ad41b22020-10-28 12:35:33 +01002958
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002959 if (!q)
2960 goto out;
2961 cops = q->ops->cl_ops;
2962 if (!cops)
2963 goto out;
2964 if (!cops->tcf_block)
2965 goto out;
2966 if (TC_H_MIN(tcm->tcm_parent)) {
2967 cl = cops->find(q, tcm->tcm_parent);
2968 if (cl == 0)
2969 goto out;
2970 }
2971 block = cops->tcf_block(q, cl, NULL);
2972 if (!block)
2973 goto out;
2974 if (tcf_block_shared(block))
2975 q = NULL;
2976 }
2977
2978 index_start = cb->args[0];
2979 index = 0;
2980
Vlad Buslovace4a262019-02-25 17:45:44 +02002981 mutex_lock(&block->lock);
2982 list_for_each_entry(chain, &block->chain_list, list) {
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002983 if ((tca[TCA_CHAIN] &&
2984 nla_get_u32(tca[TCA_CHAIN]) != chain->index))
2985 continue;
2986 if (index < index_start) {
2987 index++;
2988 continue;
2989 }
Vlad Buslovace4a262019-02-25 17:45:44 +02002990 if (tcf_chain_held_by_acts_only(chain))
2991 continue;
Vlad Buslova5654822019-02-11 10:55:37 +02002992 err = tc_chain_fill_node(chain->tmplt_ops, chain->tmplt_priv,
2993 chain->index, net, skb, block,
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002994 NETLINK_CB(cb->skb).portid,
2995 cb->nlh->nlmsg_seq, NLM_F_MULTI,
2996 RTM_NEWCHAIN);
Vlad Buslovace4a262019-02-25 17:45:44 +02002997 if (err <= 0)
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02002998 break;
2999 index++;
3000 }
Vlad Buslovace4a262019-02-25 17:45:44 +02003001 mutex_unlock(&block->lock);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003002
Vlad Buslov787ce6d2018-09-24 19:22:58 +03003003 if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK)
Vlad Buslov12db03b2019-02-11 10:55:45 +02003004 tcf_block_refcnt_put(block, true);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003005 cb->args[0] = index;
3006
3007out:
3008 /* If we did no progress, the error (EMSGSIZE) is real */
3009 if (skb->len == 0 && err)
3010 return err;
3011 return skb->len;
3012}
3013
WANG Cong18d02642014-09-25 10:26:37 -07003014void tcf_exts_destroy(struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015{
3016#ifdef CONFIG_NET_CLS_ACT
Eric Dumazet3d66b892019-09-18 12:57:04 -07003017 if (exts->actions) {
3018 tcf_action_destroy(exts->actions, TCA_ACT_UNBIND);
3019 kfree(exts->actions);
3020 }
WANG Cong22dc13c2016-08-13 22:35:00 -07003021 exts->nr_actions = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022#endif
3023}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003024EXPORT_SYMBOL(tcf_exts_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
Benjamin LaHaisec1b52732013-01-14 05:15:39 +00003026int tcf_exts_validate(struct net *net, struct tcf_proto *tp, struct nlattr **tb,
Cong Wang695176b2021-07-29 16:12:14 -07003027 struct nlattr *rate_tlv, struct tcf_exts *exts,
3028 u32 flags, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030#ifdef CONFIG_NET_CLS_ACT
3031 {
Vlad Buslov87c750e2021-04-07 18:36:03 +03003032 int init_res[TCA_ACT_MAX_PRIO] = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 struct tc_action *act;
Roman Mashakd04e6992018-03-08 16:59:17 -05003034 size_t attr_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
WANG Cong5da57f42013-12-15 20:15:07 -08003036 if (exts->police && tb[exts->police]) {
Cong Wangd349f992021-01-16 16:56:57 -08003037 struct tc_action_ops *a_o;
3038
Cong Wang695176b2021-07-29 16:12:14 -07003039 a_o = tc_action_load_ops(tb[exts->police], true,
3040 !(flags & TCA_ACT_FLAGS_NO_RTNL),
3041 extack);
Cong Wangd349f992021-01-16 16:56:57 -08003042 if (IS_ERR(a_o))
3043 return PTR_ERR(a_o);
Cong Wang695176b2021-07-29 16:12:14 -07003044 flags |= TCA_ACT_FLAGS_POLICE | TCA_ACT_FLAGS_BIND;
Jiri Pirko9fb9f252017-05-17 11:08:02 +02003045 act = tcf_action_init_1(net, tp, tb[exts->police],
Cong Wang695176b2021-07-29 16:12:14 -07003046 rate_tlv, a_o, init_res, flags,
3047 extack);
Vlad Buslovb3650bf72021-04-07 18:36:04 +03003048 module_put(a_o->owner);
3049 if (IS_ERR(act))
Patrick McHardyab27cfb2008-01-23 20:33:13 -08003050 return PTR_ERR(act);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
WANG Cong33be6272013-12-15 20:15:05 -08003052 act->type = exts->type = TCA_OLD_COMPAT;
WANG Cong22dc13c2016-08-13 22:35:00 -07003053 exts->actions[0] = act;
3054 exts->nr_actions = 1;
Vlad Buslov396d7f22021-02-16 18:22:00 +02003055 tcf_idr_insert_many(exts->actions);
WANG Cong5da57f42013-12-15 20:15:07 -08003056 } else if (exts->action && tb[exts->action]) {
Vlad Buslov90b73b72018-07-05 17:24:33 +03003057 int err;
WANG Cong22dc13c2016-08-13 22:35:00 -07003058
Cong Wang695176b2021-07-29 16:12:14 -07003059 flags |= TCA_ACT_FLAGS_BIND;
Jiri Pirko9fb9f252017-05-17 11:08:02 +02003060 err = tcf_action_init(net, tp, tb[exts->action],
Cong Wang695176b2021-07-29 16:12:14 -07003061 rate_tlv, exts->actions, init_res,
3062 &attr_size, flags, extack);
Vlad Buslov90b73b72018-07-05 17:24:33 +03003063 if (err < 0)
WANG Cong33be6272013-12-15 20:15:05 -08003064 return err;
Vlad Buslov90b73b72018-07-05 17:24:33 +03003065 exts->nr_actions = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 }
3067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068#else
WANG Cong5da57f42013-12-15 20:15:07 -08003069 if ((exts->action && tb[exts->action]) ||
Alexander Aring50a56192018-01-18 11:20:52 -05003070 (exts->police && tb[exts->police])) {
3071 NL_SET_ERR_MSG(extack, "Classifier actions are not supported per compile options (CONFIG_NET_CLS_ACT)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 return -EOPNOTSUPP;
Alexander Aring50a56192018-01-18 11:20:52 -05003073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074#endif
3075
3076 return 0;
3077}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003078EXPORT_SYMBOL(tcf_exts_validate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
Jiri Pirko9b0d4442017-08-04 14:29:15 +02003080void tcf_exts_change(struct tcf_exts *dst, struct tcf_exts *src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081{
3082#ifdef CONFIG_NET_CLS_ACT
WANG Cong22dc13c2016-08-13 22:35:00 -07003083 struct tcf_exts old = *dst;
3084
Jiri Pirko9b0d4442017-08-04 14:29:15 +02003085 *dst = *src;
WANG Cong22dc13c2016-08-13 22:35:00 -07003086 tcf_exts_destroy(&old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087#endif
3088}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003089EXPORT_SYMBOL(tcf_exts_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
WANG Cong22dc13c2016-08-13 22:35:00 -07003091#ifdef CONFIG_NET_CLS_ACT
3092static struct tc_action *tcf_exts_first_act(struct tcf_exts *exts)
3093{
3094 if (exts->nr_actions == 0)
3095 return NULL;
3096 else
3097 return exts->actions[0];
3098}
3099#endif
WANG Cong33be6272013-12-15 20:15:05 -08003100
WANG Cong5da57f42013-12-15 20:15:07 -08003101int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102{
3103#ifdef CONFIG_NET_CLS_ACT
Cong Wang9cc63db2014-07-16 14:25:30 -07003104 struct nlattr *nest;
3105
Jiri Pirko978dfd82017-08-04 14:29:03 +02003106 if (exts->action && tcf_exts_has_actions(exts)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 /*
3108 * again for backward compatible mode - we want
3109 * to work with both old and new modes of entering
3110 * tc data even if iproute2 was newer - jhs
3111 */
WANG Cong33be6272013-12-15 20:15:05 -08003112 if (exts->type != TCA_OLD_COMPAT) {
Michal Kubecekae0be8d2019-04-26 11:13:06 +02003113 nest = nla_nest_start_noflag(skb, exts->action);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08003114 if (nest == NULL)
3115 goto nla_put_failure;
WANG Cong22dc13c2016-08-13 22:35:00 -07003116
Vlad Buslovca44b732020-05-15 14:40:12 +03003117 if (tcf_action_dump(skb, exts->actions, 0, 0, false)
3118 < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -08003119 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08003120 nla_nest_end(skb, nest);
WANG Cong5da57f42013-12-15 20:15:07 -08003121 } else if (exts->police) {
WANG Cong33be6272013-12-15 20:15:05 -08003122 struct tc_action *act = tcf_exts_first_act(exts);
Michal Kubecekae0be8d2019-04-26 11:13:06 +02003123 nest = nla_nest_start_noflag(skb, exts->police);
Jamal Hadi Salim63acd682013-12-23 08:02:12 -05003124 if (nest == NULL || !act)
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08003125 goto nla_put_failure;
WANG Cong33be6272013-12-15 20:15:05 -08003126 if (tcf_action_dump_old(skb, act, 0, 0) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -08003127 goto nla_put_failure;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08003128 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 }
3130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 return 0;
Cong Wang9cc63db2014-07-16 14:25:30 -07003132
3133nla_put_failure:
3134 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 return -1;
Cong Wang9cc63db2014-07-16 14:25:30 -07003136#else
3137 return 0;
3138#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003140EXPORT_SYMBOL(tcf_exts_dump);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
Vlad Buslovca44b732020-05-15 14:40:12 +03003142int tcf_exts_terse_dump(struct sk_buff *skb, struct tcf_exts *exts)
3143{
3144#ifdef CONFIG_NET_CLS_ACT
3145 struct nlattr *nest;
3146
3147 if (!exts->action || !tcf_exts_has_actions(exts))
3148 return 0;
3149
3150 nest = nla_nest_start_noflag(skb, exts->action);
3151 if (!nest)
3152 goto nla_put_failure;
3153
3154 if (tcf_action_dump(skb, exts->actions, 0, 0, true) < 0)
3155 goto nla_put_failure;
3156 nla_nest_end(skb, nest);
3157 return 0;
3158
3159nla_put_failure:
3160 nla_nest_cancel(skb, nest);
3161 return -1;
3162#else
3163 return 0;
3164#endif
3165}
3166EXPORT_SYMBOL(tcf_exts_terse_dump);
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003167
WANG Cong5da57f42013-12-15 20:15:07 -08003168int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169{
3170#ifdef CONFIG_NET_CLS_ACT
WANG Cong33be6272013-12-15 20:15:05 -08003171 struct tc_action *a = tcf_exts_first_act(exts);
Ignacy Gawędzkib057df22015-02-03 19:05:18 +01003172 if (a != NULL && tcf_action_copy_stats(skb, a, 1) < 0)
WANG Cong33be6272013-12-15 20:15:05 -08003173 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174#endif
3175 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176}
Stephen Hemmingeraa767bf2008-01-21 02:26:41 -08003177EXPORT_SYMBOL(tcf_exts_dump_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
Vlad Buslov40119212019-08-26 16:44:59 +03003179static void tcf_block_offload_inc(struct tcf_block *block, u32 *flags)
3180{
3181 if (*flags & TCA_CLS_FLAGS_IN_HW)
3182 return;
3183 *flags |= TCA_CLS_FLAGS_IN_HW;
3184 atomic_inc(&block->offloadcnt);
3185}
3186
3187static void tcf_block_offload_dec(struct tcf_block *block, u32 *flags)
3188{
3189 if (!(*flags & TCA_CLS_FLAGS_IN_HW))
3190 return;
3191 *flags &= ~TCA_CLS_FLAGS_IN_HW;
3192 atomic_dec(&block->offloadcnt);
3193}
3194
3195static void tc_cls_offload_cnt_update(struct tcf_block *block,
3196 struct tcf_proto *tp, u32 *cnt,
3197 u32 *flags, u32 diff, bool add)
3198{
3199 lockdep_assert_held(&block->cb_lock);
3200
3201 spin_lock(&tp->lock);
3202 if (add) {
3203 if (!*cnt)
3204 tcf_block_offload_inc(block, flags);
3205 *cnt += diff;
3206 } else {
3207 *cnt -= diff;
3208 if (!*cnt)
3209 tcf_block_offload_dec(block, flags);
3210 }
3211 spin_unlock(&tp->lock);
3212}
3213
3214static void
3215tc_cls_offload_cnt_reset(struct tcf_block *block, struct tcf_proto *tp,
3216 u32 *cnt, u32 *flags)
3217{
3218 lockdep_assert_held(&block->cb_lock);
3219
3220 spin_lock(&tp->lock);
3221 tcf_block_offload_dec(block, flags);
3222 *cnt = 0;
3223 spin_unlock(&tp->lock);
3224}
3225
3226static int
3227__tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type,
3228 void *type_data, bool err_stop)
Jiri Pirko717503b2017-10-11 09:41:09 +02003229{
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +02003230 struct flow_block_cb *block_cb;
Cong Wangaeb3fec2018-12-11 11:15:46 -08003231 int ok_count = 0;
3232 int err;
3233
Vlad Buslov40119212019-08-26 16:44:59 +03003234 list_for_each_entry(block_cb, &block->flow_block.cb_list, list) {
3235 err = block_cb->cb(type, type_data, block_cb->cb_priv);
3236 if (err) {
3237 if (err_stop)
3238 return err;
3239 } else {
3240 ok_count++;
3241 }
3242 }
3243 return ok_count;
3244}
3245
3246int tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type,
3247 void *type_data, bool err_stop, bool rtnl_held)
3248{
Vlad Buslov11bd6342019-08-26 16:45:02 +03003249 bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
Vlad Buslov40119212019-08-26 16:44:59 +03003250 int ok_count;
3251
Vlad Buslov11bd6342019-08-26 16:45:02 +03003252retry:
3253 if (take_rtnl)
3254 rtnl_lock();
Vlad Buslov40119212019-08-26 16:44:59 +03003255 down_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003256 /* Need to obtain rtnl lock if block is bound to devs that require it.
3257 * In block bind code cb_lock is obtained while holding rtnl, so we must
3258 * obtain the locks in same order here.
3259 */
3260 if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3261 up_read(&block->cb_lock);
3262 take_rtnl = true;
3263 goto retry;
3264 }
3265
Vlad Buslov40119212019-08-26 16:44:59 +03003266 ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003267
Vlad Buslov40119212019-08-26 16:44:59 +03003268 up_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003269 if (take_rtnl)
3270 rtnl_unlock();
Vlad Buslov40119212019-08-26 16:44:59 +03003271 return ok_count;
3272}
3273EXPORT_SYMBOL(tc_setup_cb_call);
3274
3275/* Non-destructive filter add. If filter that wasn't already in hardware is
3276 * successfully offloaded, increment block offloads counter. On failure,
3277 * previously offloaded filter is considered to be intact and offloads counter
3278 * is not decremented.
3279 */
3280
3281int tc_setup_cb_add(struct tcf_block *block, struct tcf_proto *tp,
3282 enum tc_setup_type type, void *type_data, bool err_stop,
3283 u32 *flags, unsigned int *in_hw_count, bool rtnl_held)
3284{
Vlad Buslov11bd6342019-08-26 16:45:02 +03003285 bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
Vlad Buslov40119212019-08-26 16:44:59 +03003286 int ok_count;
3287
Vlad Buslov11bd6342019-08-26 16:45:02 +03003288retry:
3289 if (take_rtnl)
3290 rtnl_lock();
Vlad Buslov4f8116c2019-08-26 16:44:57 +03003291 down_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003292 /* Need to obtain rtnl lock if block is bound to devs that require it.
3293 * In block bind code cb_lock is obtained while holding rtnl, so we must
3294 * obtain the locks in same order here.
3295 */
3296 if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3297 up_read(&block->cb_lock);
3298 take_rtnl = true;
3299 goto retry;
3300 }
3301
Cong Wangaeb3fec2018-12-11 11:15:46 -08003302 /* Make sure all netdevs sharing this block are offload-capable. */
Vlad Buslov4f8116c2019-08-26 16:44:57 +03003303 if (block->nooffloaddevcnt && err_stop) {
3304 ok_count = -EOPNOTSUPP;
3305 goto err_unlock;
3306 }
Cong Wangaeb3fec2018-12-11 11:15:46 -08003307
Vlad Buslov40119212019-08-26 16:44:59 +03003308 ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
Vlad Buslova449a3e2019-08-26 16:45:00 +03003309 if (ok_count < 0)
3310 goto err_unlock;
3311
3312 if (tp->ops->hw_add)
3313 tp->ops->hw_add(tp, type_data);
Vlad Buslov40119212019-08-26 16:44:59 +03003314 if (ok_count > 0)
3315 tc_cls_offload_cnt_update(block, tp, in_hw_count, flags,
3316 ok_count, true);
Vlad Buslov4f8116c2019-08-26 16:44:57 +03003317err_unlock:
3318 up_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003319 if (take_rtnl)
3320 rtnl_unlock();
Vlad Buslov40119212019-08-26 16:44:59 +03003321 return ok_count < 0 ? ok_count : 0;
Jiri Pirko717503b2017-10-11 09:41:09 +02003322}
Vlad Buslov40119212019-08-26 16:44:59 +03003323EXPORT_SYMBOL(tc_setup_cb_add);
3324
3325/* Destructive filter replace. If filter that wasn't already in hardware is
3326 * successfully offloaded, increment block offload counter. On failure,
3327 * previously offloaded filter is considered to be destroyed and offload counter
3328 * is decremented.
3329 */
3330
3331int tc_setup_cb_replace(struct tcf_block *block, struct tcf_proto *tp,
3332 enum tc_setup_type type, void *type_data, bool err_stop,
3333 u32 *old_flags, unsigned int *old_in_hw_count,
3334 u32 *new_flags, unsigned int *new_in_hw_count,
3335 bool rtnl_held)
3336{
Vlad Buslov11bd6342019-08-26 16:45:02 +03003337 bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
Vlad Buslov40119212019-08-26 16:44:59 +03003338 int ok_count;
3339
Vlad Buslov11bd6342019-08-26 16:45:02 +03003340retry:
3341 if (take_rtnl)
3342 rtnl_lock();
Vlad Buslov40119212019-08-26 16:44:59 +03003343 down_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003344 /* Need to obtain rtnl lock if block is bound to devs that require it.
3345 * In block bind code cb_lock is obtained while holding rtnl, so we must
3346 * obtain the locks in same order here.
3347 */
3348 if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3349 up_read(&block->cb_lock);
3350 take_rtnl = true;
3351 goto retry;
3352 }
3353
Vlad Buslov40119212019-08-26 16:44:59 +03003354 /* Make sure all netdevs sharing this block are offload-capable. */
3355 if (block->nooffloaddevcnt && err_stop) {
3356 ok_count = -EOPNOTSUPP;
3357 goto err_unlock;
3358 }
3359
3360 tc_cls_offload_cnt_reset(block, tp, old_in_hw_count, old_flags);
Vlad Buslova449a3e2019-08-26 16:45:00 +03003361 if (tp->ops->hw_del)
3362 tp->ops->hw_del(tp, type_data);
Vlad Buslov40119212019-08-26 16:44:59 +03003363
3364 ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
Vlad Buslova449a3e2019-08-26 16:45:00 +03003365 if (ok_count < 0)
3366 goto err_unlock;
3367
3368 if (tp->ops->hw_add)
3369 tp->ops->hw_add(tp, type_data);
Vlad Buslov40119212019-08-26 16:44:59 +03003370 if (ok_count > 0)
Vlad Buslova449a3e2019-08-26 16:45:00 +03003371 tc_cls_offload_cnt_update(block, tp, new_in_hw_count,
3372 new_flags, ok_count, true);
Vlad Buslov40119212019-08-26 16:44:59 +03003373err_unlock:
3374 up_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003375 if (take_rtnl)
3376 rtnl_unlock();
Vlad Buslov40119212019-08-26 16:44:59 +03003377 return ok_count < 0 ? ok_count : 0;
3378}
3379EXPORT_SYMBOL(tc_setup_cb_replace);
3380
3381/* Destroy filter and decrement block offload counter, if filter was previously
3382 * offloaded.
3383 */
3384
3385int tc_setup_cb_destroy(struct tcf_block *block, struct tcf_proto *tp,
3386 enum tc_setup_type type, void *type_data, bool err_stop,
3387 u32 *flags, unsigned int *in_hw_count, bool rtnl_held)
3388{
Vlad Buslov11bd6342019-08-26 16:45:02 +03003389 bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
Vlad Buslov40119212019-08-26 16:44:59 +03003390 int ok_count;
3391
Vlad Buslov11bd6342019-08-26 16:45:02 +03003392retry:
3393 if (take_rtnl)
3394 rtnl_lock();
Vlad Buslov40119212019-08-26 16:44:59 +03003395 down_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003396 /* Need to obtain rtnl lock if block is bound to devs that require it.
3397 * In block bind code cb_lock is obtained while holding rtnl, so we must
3398 * obtain the locks in same order here.
3399 */
3400 if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3401 up_read(&block->cb_lock);
3402 take_rtnl = true;
3403 goto retry;
3404 }
3405
Vlad Buslov40119212019-08-26 16:44:59 +03003406 ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
3407
3408 tc_cls_offload_cnt_reset(block, tp, in_hw_count, flags);
Vlad Buslova449a3e2019-08-26 16:45:00 +03003409 if (tp->ops->hw_del)
3410 tp->ops->hw_del(tp, type_data);
3411
Vlad Buslov40119212019-08-26 16:44:59 +03003412 up_read(&block->cb_lock);
Vlad Buslov11bd6342019-08-26 16:45:02 +03003413 if (take_rtnl)
3414 rtnl_unlock();
Vlad Buslov40119212019-08-26 16:44:59 +03003415 return ok_count < 0 ? ok_count : 0;
3416}
3417EXPORT_SYMBOL(tc_setup_cb_destroy);
3418
3419int tc_setup_cb_reoffload(struct tcf_block *block, struct tcf_proto *tp,
3420 bool add, flow_setup_cb_t *cb,
3421 enum tc_setup_type type, void *type_data,
3422 void *cb_priv, u32 *flags, unsigned int *in_hw_count)
3423{
3424 int err = cb(type, type_data, cb_priv);
3425
3426 if (err) {
3427 if (add && tc_skip_sw(*flags))
3428 return err;
3429 } else {
3430 tc_cls_offload_cnt_update(block, tp, in_hw_count, flags, 1,
3431 add);
3432 }
3433
3434 return 0;
3435}
3436EXPORT_SYMBOL(tc_setup_cb_reoffload);
Jiri Pirkob3f55bd2017-10-11 09:41:08 +02003437
Jiri Pirko20084952020-02-25 11:45:18 +01003438static int tcf_act_get_cookie(struct flow_action_entry *entry,
3439 const struct tc_action *act)
3440{
3441 struct tc_cookie *cookie;
3442 int err = 0;
3443
3444 rcu_read_lock();
3445 cookie = rcu_dereference(act->act_cookie);
3446 if (cookie) {
3447 entry->cookie = flow_action_cookie_create(cookie->data,
3448 cookie->len,
3449 GFP_ATOMIC);
3450 if (!entry->cookie)
3451 err = -ENOMEM;
3452 }
3453 rcu_read_unlock();
3454 return err;
3455}
3456
3457static void tcf_act_put_cookie(struct flow_action_entry *entry)
3458{
3459 flow_action_cookie_destroy(entry->cookie);
3460}
3461
Vlad Buslov5a6ff4b2019-08-26 16:45:04 +03003462void tc_cleanup_flow_action(struct flow_action *flow_action)
3463{
3464 struct flow_action_entry *entry;
3465 int i;
3466
Jiri Pirko20084952020-02-25 11:45:18 +01003467 flow_action_for_each(i, entry, flow_action) {
3468 tcf_act_put_cookie(entry);
Vlad Buslov11589582019-09-13 18:28:39 +03003469 if (entry->destructor)
3470 entry->destructor(entry->destructor_priv);
Jiri Pirko20084952020-02-25 11:45:18 +01003471 }
Vlad Buslov5a6ff4b2019-08-26 16:45:04 +03003472}
3473EXPORT_SYMBOL(tc_cleanup_flow_action);
3474
Vlad Buslov11589582019-09-13 18:28:39 +03003475static void tcf_mirred_get_dev(struct flow_action_entry *entry,
3476 const struct tc_action *act)
3477{
Vlad Buslov470d5062019-09-13 18:28:41 +03003478#ifdef CONFIG_NET_CLS_ACT
3479 entry->dev = act->ops->get_dev(act, &entry->destructor);
Vlad Buslov11589582019-09-13 18:28:39 +03003480 if (!entry->dev)
3481 return;
Vlad Buslov11589582019-09-13 18:28:39 +03003482 entry->destructor_priv = entry->dev;
Vlad Buslov470d5062019-09-13 18:28:41 +03003483#endif
Vlad Buslov11589582019-09-13 18:28:39 +03003484}
3485
3486static void tcf_tunnel_encap_put_tunnel(void *priv)
3487{
3488 struct ip_tunnel_info *tunnel = priv;
3489
3490 kfree(tunnel);
3491}
3492
3493static int tcf_tunnel_encap_get_tunnel(struct flow_action_entry *entry,
3494 const struct tc_action *act)
3495{
3496 entry->tunnel = tcf_tunnel_info_copy(act);
3497 if (!entry->tunnel)
3498 return -ENOMEM;
3499 entry->destructor = tcf_tunnel_encap_put_tunnel;
3500 entry->destructor_priv = entry->tunnel;
3501 return 0;
3502}
3503
Vlad Buslov4a5da472019-09-13 18:28:40 +03003504static void tcf_sample_get_group(struct flow_action_entry *entry,
3505 const struct tc_action *act)
3506{
3507#ifdef CONFIG_NET_CLS_ACT
3508 entry->sample.psample_group =
3509 act->ops->get_psample_group(act, &entry->destructor);
3510 entry->destructor_priv = entry->sample.psample_group;
3511#endif
3512}
3513
Po Liud29bdd62020-05-01 08:53:16 +08003514static void tcf_gate_entry_destructor(void *priv)
3515{
3516 struct action_gate_entry *oe = priv;
3517
3518 kfree(oe);
3519}
3520
3521static int tcf_gate_get_entries(struct flow_action_entry *entry,
3522 const struct tc_action *act)
3523{
3524 entry->gate.entries = tcf_gate_get_list(act);
3525
3526 if (!entry->gate.entries)
3527 return -EINVAL;
3528
3529 entry->destructor = tcf_gate_entry_destructor;
3530 entry->destructor_priv = entry->gate.entries;
3531
3532 return 0;
3533}
3534
Pablo Neira Ayuso16f80362020-05-06 20:34:50 +02003535static enum flow_action_hw_stats tc_act_hw_stats(u8 hw_stats)
3536{
3537 if (WARN_ON_ONCE(hw_stats > TCA_ACT_HW_STATS_ANY))
3538 return FLOW_ACTION_HW_STATS_DONT_CARE;
3539 else if (!hw_stats)
3540 return FLOW_ACTION_HW_STATS_DISABLED;
3541
3542 return hw_stats;
3543}
3544
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003545int tc_setup_flow_action(struct flow_action *flow_action,
Vlad Buslovb15e7a62020-02-17 12:12:12 +02003546 const struct tcf_exts *exts)
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003547{
Vlad Buslov7a472812020-02-17 12:12:09 +02003548 struct tc_action *act;
Vlad Buslov9838b202019-08-26 16:45:03 +03003549 int i, j, k, err = 0;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003550
Jakub Kicinski0dfb2d82020-03-19 16:26:23 -07003551 BUILD_BUG_ON(TCA_ACT_HW_STATS_ANY != FLOW_ACTION_HW_STATS_ANY);
3552 BUILD_BUG_ON(TCA_ACT_HW_STATS_IMMEDIATE != FLOW_ACTION_HW_STATS_IMMEDIATE);
3553 BUILD_BUG_ON(TCA_ACT_HW_STATS_DELAYED != FLOW_ACTION_HW_STATS_DELAYED);
Jiri Pirko44f86582020-03-07 12:40:20 +01003554
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003555 if (!exts)
3556 return 0;
3557
3558 j = 0;
3559 tcf_exts_for_each_action(i, act, exts) {
3560 struct flow_action_entry *entry;
3561
3562 entry = &flow_action->entries[j];
Vlad Buslov7a472812020-02-17 12:12:09 +02003563 spin_lock_bh(&act->tcfa_lock);
Jiri Pirko20084952020-02-25 11:45:18 +01003564 err = tcf_act_get_cookie(entry, act);
3565 if (err)
3566 goto err_out_locked;
Jiri Pirko44f86582020-03-07 12:40:20 +01003567
Pablo Neira Ayuso16f80362020-05-06 20:34:50 +02003568 entry->hw_stats = tc_act_hw_stats(act->hw_stats);
Jiri Pirko44f86582020-03-07 12:40:20 +01003569
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003570 if (is_tcf_gact_ok(act)) {
3571 entry->id = FLOW_ACTION_ACCEPT;
3572 } else if (is_tcf_gact_shot(act)) {
3573 entry->id = FLOW_ACTION_DROP;
3574 } else if (is_tcf_gact_trap(act)) {
3575 entry->id = FLOW_ACTION_TRAP;
3576 } else if (is_tcf_gact_goto_chain(act)) {
3577 entry->id = FLOW_ACTION_GOTO;
3578 entry->chain_index = tcf_gact_goto_chain_index(act);
3579 } else if (is_tcf_mirred_egress_redirect(act)) {
3580 entry->id = FLOW_ACTION_REDIRECT;
Vlad Buslov11589582019-09-13 18:28:39 +03003581 tcf_mirred_get_dev(entry, act);
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003582 } else if (is_tcf_mirred_egress_mirror(act)) {
3583 entry->id = FLOW_ACTION_MIRRED;
Vlad Buslov11589582019-09-13 18:28:39 +03003584 tcf_mirred_get_dev(entry, act);
John Hurley48e584a2019-08-04 16:09:06 +01003585 } else if (is_tcf_mirred_ingress_redirect(act)) {
3586 entry->id = FLOW_ACTION_REDIRECT_INGRESS;
Vlad Buslov11589582019-09-13 18:28:39 +03003587 tcf_mirred_get_dev(entry, act);
John Hurley48e584a2019-08-04 16:09:06 +01003588 } else if (is_tcf_mirred_ingress_mirror(act)) {
3589 entry->id = FLOW_ACTION_MIRRED_INGRESS;
Vlad Buslov11589582019-09-13 18:28:39 +03003590 tcf_mirred_get_dev(entry, act);
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003591 } else if (is_tcf_vlan(act)) {
3592 switch (tcf_vlan_action(act)) {
3593 case TCA_VLAN_ACT_PUSH:
3594 entry->id = FLOW_ACTION_VLAN_PUSH;
3595 entry->vlan.vid = tcf_vlan_push_vid(act);
3596 entry->vlan.proto = tcf_vlan_push_proto(act);
3597 entry->vlan.prio = tcf_vlan_push_prio(act);
3598 break;
3599 case TCA_VLAN_ACT_POP:
3600 entry->id = FLOW_ACTION_VLAN_POP;
3601 break;
3602 case TCA_VLAN_ACT_MODIFY:
3603 entry->id = FLOW_ACTION_VLAN_MANGLE;
3604 entry->vlan.vid = tcf_vlan_push_vid(act);
3605 entry->vlan.proto = tcf_vlan_push_proto(act);
3606 entry->vlan.prio = tcf_vlan_push_prio(act);
3607 break;
3608 default:
Vlad Buslov9838b202019-08-26 16:45:03 +03003609 err = -EOPNOTSUPP;
Vlad Buslov7a472812020-02-17 12:12:09 +02003610 goto err_out_locked;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003611 }
3612 } else if (is_tcf_tunnel_set(act)) {
3613 entry->id = FLOW_ACTION_TUNNEL_ENCAP;
Vlad Buslov11589582019-09-13 18:28:39 +03003614 err = tcf_tunnel_encap_get_tunnel(entry, act);
3615 if (err)
Vlad Buslov7a472812020-02-17 12:12:09 +02003616 goto err_out_locked;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003617 } else if (is_tcf_tunnel_release(act)) {
3618 entry->id = FLOW_ACTION_TUNNEL_DECAP;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003619 } else if (is_tcf_pedit(act)) {
3620 for (k = 0; k < tcf_pedit_nkeys(act); k++) {
3621 switch (tcf_pedit_cmd(act, k)) {
3622 case TCA_PEDIT_KEY_EX_CMD_SET:
3623 entry->id = FLOW_ACTION_MANGLE;
3624 break;
3625 case TCA_PEDIT_KEY_EX_CMD_ADD:
3626 entry->id = FLOW_ACTION_ADD;
3627 break;
3628 default:
Vlad Buslov9838b202019-08-26 16:45:03 +03003629 err = -EOPNOTSUPP;
Vlad Buslov7a472812020-02-17 12:12:09 +02003630 goto err_out_locked;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003631 }
3632 entry->mangle.htype = tcf_pedit_htype(act, k);
3633 entry->mangle.mask = tcf_pedit_mask(act, k);
3634 entry->mangle.val = tcf_pedit_val(act, k);
3635 entry->mangle.offset = tcf_pedit_offset(act, k);
Pablo Neira Ayuso16f80362020-05-06 20:34:50 +02003636 entry->hw_stats = tc_act_hw_stats(act->hw_stats);
Petr Machata2c4b58d2020-03-18 19:42:29 +02003637 entry = &flow_action->entries[++j];
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003638 }
3639 } else if (is_tcf_csum(act)) {
3640 entry->id = FLOW_ACTION_CSUM;
3641 entry->csum_flags = tcf_csum_update_flags(act);
3642 } else if (is_tcf_skbedit_mark(act)) {
3643 entry->id = FLOW_ACTION_MARK;
3644 entry->mark = tcf_skbedit_mark(act);
Pieter Jansen van Vuurena7a7be62019-05-04 04:46:16 -07003645 } else if (is_tcf_sample(act)) {
3646 entry->id = FLOW_ACTION_SAMPLE;
Pieter Jansen van Vuurena7a7be62019-05-04 04:46:16 -07003647 entry->sample.trunc_size = tcf_sample_trunc_size(act);
3648 entry->sample.truncate = tcf_sample_truncate(act);
3649 entry->sample.rate = tcf_sample_rate(act);
Vlad Buslov4a5da472019-09-13 18:28:40 +03003650 tcf_sample_get_group(entry, act);
Pieter Jansen van Vuuren8c8cfc62019-05-04 04:46:22 -07003651 } else if (is_tcf_police(act)) {
3652 entry->id = FLOW_ACTION_POLICE;
Po Liu5f035af2020-06-29 14:54:16 +08003653 entry->police.burst = tcf_police_burst(act);
Pieter Jansen van Vuuren8c8cfc62019-05-04 04:46:22 -07003654 entry->police.rate_bytes_ps =
3655 tcf_police_rate_bytes_ps(act);
Xingfeng Hu25660152021-03-12 15:08:29 +01003656 entry->police.burst_pkt = tcf_police_burst_pkt(act);
3657 entry->police.rate_pkt_ps =
3658 tcf_police_rate_pkt_ps(act);
Po Liu19e528d2020-06-24 17:36:28 +08003659 entry->police.mtu = tcf_police_tcfp_mtu(act);
Po Liu627e39b2020-06-24 17:36:30 +08003660 entry->police.index = act->tcfa_index;
Paul Blakeyb57dc7c2019-07-09 10:30:48 +03003661 } else if (is_tcf_ct(act)) {
3662 entry->id = FLOW_ACTION_CT;
3663 entry->ct.action = tcf_ct_action(act);
3664 entry->ct.zone = tcf_ct_zone(act);
Paul Blakeyedd58612020-03-12 12:23:09 +02003665 entry->ct.flow_table = tcf_ct_ft(act);
John Hurley6749d5902019-07-23 15:33:59 +01003666 } else if (is_tcf_mpls(act)) {
3667 switch (tcf_mpls_action(act)) {
3668 case TCA_MPLS_ACT_PUSH:
3669 entry->id = FLOW_ACTION_MPLS_PUSH;
3670 entry->mpls_push.proto = tcf_mpls_proto(act);
3671 entry->mpls_push.label = tcf_mpls_label(act);
3672 entry->mpls_push.tc = tcf_mpls_tc(act);
3673 entry->mpls_push.bos = tcf_mpls_bos(act);
3674 entry->mpls_push.ttl = tcf_mpls_ttl(act);
3675 break;
3676 case TCA_MPLS_ACT_POP:
3677 entry->id = FLOW_ACTION_MPLS_POP;
3678 entry->mpls_pop.proto = tcf_mpls_proto(act);
3679 break;
3680 case TCA_MPLS_ACT_MODIFY:
3681 entry->id = FLOW_ACTION_MPLS_MANGLE;
3682 entry->mpls_mangle.label = tcf_mpls_label(act);
3683 entry->mpls_mangle.tc = tcf_mpls_tc(act);
3684 entry->mpls_mangle.bos = tcf_mpls_bos(act);
3685 entry->mpls_mangle.ttl = tcf_mpls_ttl(act);
3686 break;
3687 default:
Vlad Buslov7a472812020-02-17 12:12:09 +02003688 goto err_out_locked;
John Hurley6749d5902019-07-23 15:33:59 +01003689 }
John Hurleyfb1b7752019-08-04 16:09:04 +01003690 } else if (is_tcf_skbedit_ptype(act)) {
3691 entry->id = FLOW_ACTION_PTYPE;
3692 entry->ptype = tcf_skbedit_ptype(act);
Petr Machata2ce12412020-03-19 15:47:21 +02003693 } else if (is_tcf_skbedit_priority(act)) {
3694 entry->id = FLOW_ACTION_PRIORITY;
3695 entry->priority = tcf_skbedit_priority(act);
Po Liud29bdd62020-05-01 08:53:16 +08003696 } else if (is_tcf_gate(act)) {
3697 entry->id = FLOW_ACTION_GATE;
3698 entry->gate.index = tcf_gate_index(act);
3699 entry->gate.prio = tcf_gate_prio(act);
3700 entry->gate.basetime = tcf_gate_basetime(act);
3701 entry->gate.cycletime = tcf_gate_cycletime(act);
3702 entry->gate.cycletimeext = tcf_gate_cycletimeext(act);
3703 entry->gate.num_entries = tcf_gate_num_entries(act);
3704 err = tcf_gate_get_entries(entry, act);
3705 if (err)
Guillaume Naultb1307622020-10-20 17:34:31 +02003706 goto err_out_locked;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003707 } else {
Vlad Buslov9838b202019-08-26 16:45:03 +03003708 err = -EOPNOTSUPP;
Vlad Buslov7a472812020-02-17 12:12:09 +02003709 goto err_out_locked;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003710 }
Vlad Buslov7a472812020-02-17 12:12:09 +02003711 spin_unlock_bh(&act->tcfa_lock);
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003712
3713 if (!is_tcf_pedit(act))
3714 j++;
3715 }
Vlad Buslov9838b202019-08-26 16:45:03 +03003716
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003717err_out:
Vlad Buslov5a6ff4b2019-08-26 16:45:04 +03003718 if (err)
3719 tc_cleanup_flow_action(flow_action);
3720
Vlad Buslov9838b202019-08-26 16:45:03 +03003721 return err;
Vlad Buslov7a472812020-02-17 12:12:09 +02003722err_out_locked:
3723 spin_unlock_bh(&act->tcfa_lock);
3724 goto err_out;
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +01003725}
3726EXPORT_SYMBOL(tc_setup_flow_action);
3727
Pablo Neira Ayusoe3ab7862019-02-02 12:50:45 +01003728unsigned int tcf_exts_num_actions(struct tcf_exts *exts)
3729{
3730 unsigned int num_acts = 0;
3731 struct tc_action *act;
3732 int i;
3733
3734 tcf_exts_for_each_action(i, act, exts) {
3735 if (is_tcf_pedit(act))
3736 num_acts += tcf_pedit_nkeys(act);
3737 else
3738 num_acts++;
3739 }
3740 return num_acts;
3741}
3742EXPORT_SYMBOL(tcf_exts_num_actions);
3743
Petr Machata36257502020-06-27 01:45:26 +03003744#ifdef CONFIG_NET_CLS_ACT
3745static int tcf_qevent_parse_block_index(struct nlattr *block_index_attr,
3746 u32 *p_block_index,
3747 struct netlink_ext_ack *extack)
3748{
3749 *p_block_index = nla_get_u32(block_index_attr);
3750 if (!*p_block_index) {
3751 NL_SET_ERR_MSG(extack, "Block number may not be zero");
3752 return -EINVAL;
3753 }
3754
3755 return 0;
3756}
3757
3758int tcf_qevent_init(struct tcf_qevent *qe, struct Qdisc *sch,
3759 enum flow_block_binder_type binder_type,
3760 struct nlattr *block_index_attr,
3761 struct netlink_ext_ack *extack)
3762{
3763 u32 block_index;
3764 int err;
3765
3766 if (!block_index_attr)
3767 return 0;
3768
3769 err = tcf_qevent_parse_block_index(block_index_attr, &block_index, extack);
3770 if (err)
3771 return err;
3772
3773 if (!block_index)
3774 return 0;
3775
3776 qe->info.binder_type = binder_type;
3777 qe->info.chain_head_change = tcf_chain_head_change_dflt;
3778 qe->info.chain_head_change_priv = &qe->filter_chain;
3779 qe->info.block_index = block_index;
3780
3781 return tcf_block_get_ext(&qe->block, sch, &qe->info, extack);
3782}
3783EXPORT_SYMBOL(tcf_qevent_init);
3784
3785void tcf_qevent_destroy(struct tcf_qevent *qe, struct Qdisc *sch)
3786{
3787 if (qe->info.block_index)
3788 tcf_block_put_ext(qe->block, sch, &qe->info);
3789}
3790EXPORT_SYMBOL(tcf_qevent_destroy);
3791
3792int tcf_qevent_validate_change(struct tcf_qevent *qe, struct nlattr *block_index_attr,
3793 struct netlink_ext_ack *extack)
3794{
3795 u32 block_index;
3796 int err;
3797
3798 if (!block_index_attr)
3799 return 0;
3800
3801 err = tcf_qevent_parse_block_index(block_index_attr, &block_index, extack);
3802 if (err)
3803 return err;
3804
3805 /* Bounce newly-configured block or change in block. */
3806 if (block_index != qe->info.block_index) {
3807 NL_SET_ERR_MSG(extack, "Change of blocks is not supported");
3808 return -EINVAL;
3809 }
3810
3811 return 0;
3812}
3813EXPORT_SYMBOL(tcf_qevent_validate_change);
3814
3815struct sk_buff *tcf_qevent_handle(struct tcf_qevent *qe, struct Qdisc *sch, struct sk_buff *skb,
Petr Machata55f656c2020-07-14 20:03:07 +03003816 struct sk_buff **to_free, int *ret)
Petr Machata36257502020-06-27 01:45:26 +03003817{
3818 struct tcf_result cl_res;
3819 struct tcf_proto *fl;
3820
3821 if (!qe->info.block_index)
3822 return skb;
3823
3824 fl = rcu_dereference_bh(qe->filter_chain);
3825
Davide Caratti3aa26052021-07-28 20:08:00 +02003826 switch (tcf_classify(skb, NULL, fl, &cl_res, false)) {
Petr Machata36257502020-06-27 01:45:26 +03003827 case TC_ACT_SHOT:
3828 qdisc_qstats_drop(sch);
3829 __qdisc_drop(skb, to_free);
3830 *ret = __NET_XMIT_BYPASS;
3831 return NULL;
3832 case TC_ACT_STOLEN:
3833 case TC_ACT_QUEUED:
3834 case TC_ACT_TRAP:
3835 __qdisc_drop(skb, to_free);
3836 *ret = __NET_XMIT_STOLEN;
3837 return NULL;
3838 case TC_ACT_REDIRECT:
3839 skb_do_redirect(skb);
3840 *ret = __NET_XMIT_STOLEN;
3841 return NULL;
3842 }
3843
Petr Machata36257502020-06-27 01:45:26 +03003844 return skb;
3845}
3846EXPORT_SYMBOL(tcf_qevent_handle);
3847
3848int tcf_qevent_dump(struct sk_buff *skb, int attr_name, struct tcf_qevent *qe)
3849{
3850 if (!qe->info.block_index)
3851 return 0;
3852 return nla_put_u32(skb, attr_name, qe->info.block_index);
3853}
3854EXPORT_SYMBOL(tcf_qevent_dump);
3855#endif
3856
Jiri Pirko48617382018-01-17 11:46:46 +01003857static __net_init int tcf_net_init(struct net *net)
3858{
3859 struct tcf_net *tn = net_generic(net, tcf_net_id);
3860
Vlad Buslovab281622018-09-24 19:22:56 +03003861 spin_lock_init(&tn->idr_lock);
Jiri Pirko48617382018-01-17 11:46:46 +01003862 idr_init(&tn->idr);
3863 return 0;
3864}
3865
3866static void __net_exit tcf_net_exit(struct net *net)
3867{
3868 struct tcf_net *tn = net_generic(net, tcf_net_id);
3869
3870 idr_destroy(&tn->idr);
3871}
3872
3873static struct pernet_operations tcf_net_ops = {
3874 .init = tcf_net_init,
3875 .exit = tcf_net_exit,
3876 .id = &tcf_net_id,
3877 .size = sizeof(struct tcf_net),
3878};
3879
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880static int __init tc_filter_init(void)
3881{
Jiri Pirko48617382018-01-17 11:46:46 +01003882 int err;
3883
Cong Wang7aa00452017-10-26 18:24:28 -07003884 tc_filter_wq = alloc_ordered_workqueue("tc_filter_workqueue", 0);
3885 if (!tc_filter_wq)
3886 return -ENOMEM;
3887
Jiri Pirko48617382018-01-17 11:46:46 +01003888 err = register_pernet_subsys(&tcf_net_ops);
3889 if (err)
3890 goto err_register_pernet_subsys;
3891
Vlad Buslov470502d2019-02-11 10:55:48 +02003892 rtnl_register(PF_UNSPEC, RTM_NEWTFILTER, tc_new_tfilter, NULL,
3893 RTNL_FLAG_DOIT_UNLOCKED);
3894 rtnl_register(PF_UNSPEC, RTM_DELTFILTER, tc_del_tfilter, NULL,
3895 RTNL_FLAG_DOIT_UNLOCKED);
Vlad Buslovc431f892018-05-31 09:52:53 +03003896 rtnl_register(PF_UNSPEC, RTM_GETTFILTER, tc_get_tfilter,
Vlad Buslov470502d2019-02-11 10:55:48 +02003897 tc_dump_tfilter, RTNL_FLAG_DOIT_UNLOCKED);
Jiri Pirko32a4f5e2018-07-23 09:23:06 +02003898 rtnl_register(PF_UNSPEC, RTM_NEWCHAIN, tc_ctl_chain, NULL, 0);
3899 rtnl_register(PF_UNSPEC, RTM_DELCHAIN, tc_ctl_chain, NULL, 0);
3900 rtnl_register(PF_UNSPEC, RTM_GETCHAIN, tc_ctl_chain,
3901 tc_dump_chain, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 return 0;
Jiri Pirko48617382018-01-17 11:46:46 +01003904
3905err_register_pernet_subsys:
3906 destroy_workqueue(tc_filter_wq);
3907 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908}
3909
3910subsys_initcall(tc_filter_init);