xref: /linux/net/sched/cls_api.c (revision cff9c565e65f3622e8dc1dcc21c1520a083dff35)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * net/sched/cls_api.c	Packet classifier API.
4  *
5  * Authors:	Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
6  *
7  * Changes:
8  *
9  * Eduardo J. Blanco <ejbs@netlabs.com.uy> :990222: kmod support
10  */
11 
12 #include <linux/module.h>
13 #include <linux/types.h>
14 #include <linux/kernel.h>
15 #include <linux/string.h>
16 #include <linux/errno.h>
17 #include <linux/err.h>
18 #include <linux/skbuff.h>
19 #include <linux/init.h>
20 #include <linux/kmod.h>
21 #include <linux/slab.h>
22 #include <linux/idr.h>
23 #include <linux/jhash.h>
24 #include <linux/rculist.h>
25 #include <linux/rhashtable.h>
26 #include <net/net_namespace.h>
27 #include <net/sock.h>
28 #include <net/netlink.h>
29 #include <net/pkt_sched.h>
30 #include <net/pkt_cls.h>
31 #include <net/tc_act/tc_pedit.h>
32 #include <net/tc_act/tc_mirred.h>
33 #include <net/tc_act/tc_vlan.h>
34 #include <net/tc_act/tc_tunnel_key.h>
35 #include <net/tc_act/tc_csum.h>
36 #include <net/tc_act/tc_gact.h>
37 #include <net/tc_act/tc_police.h>
38 #include <net/tc_act/tc_sample.h>
39 #include <net/tc_act/tc_skbedit.h>
40 #include <net/tc_act/tc_ct.h>
41 #include <net/tc_act/tc_mpls.h>
42 #include <net/tc_act/tc_gate.h>
43 #include <net/flow_offload.h>
44 #include <net/tc_wrapper.h>
45 
46 /* The list of all installed classifier types */
47 static LIST_HEAD(tcf_proto_base);
48 
49 /* Protects list of registered TC modules. It is pure SMP lock. */
50 static DEFINE_RWLOCK(cls_mod_lock);
51 
52 static struct xarray tcf_exts_miss_cookies_xa;
53 struct tcf_exts_miss_cookie_node {
54 	const struct tcf_chain *chain;
55 	const struct tcf_proto *tp;
56 	const struct tcf_exts *exts;
57 	u32 chain_index;
58 	u32 tp_prio;
59 	u32 handle;
60 	u32 miss_cookie_base;
61 	struct rcu_head rcu;
62 };
63 
64 /* Each tc action entry cookie will be comprised of 32bit miss_cookie_base +
65  * action index in the exts tc actions array.
66  */
67 union tcf_exts_miss_cookie {
68 	struct {
69 		u32 miss_cookie_base;
70 		u32 act_index;
71 	};
72 	u64 miss_cookie;
73 };
74 
75 #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
76 static int
77 tcf_exts_miss_cookie_base_alloc(struct tcf_exts *exts, struct tcf_proto *tp,
78 				u32 handle)
79 {
80 	struct tcf_exts_miss_cookie_node *n;
81 	static u32 next;
82 	int err;
83 
84 	if (WARN_ON(!handle || !tp->ops->get_exts))
85 		return -EINVAL;
86 
87 	n = kzalloc(sizeof(*n), GFP_KERNEL);
88 	if (!n)
89 		return -ENOMEM;
90 
91 	n->chain_index = tp->chain->index;
92 	n->chain = tp->chain;
93 	n->tp_prio = tp->prio;
94 	n->tp = tp;
95 	n->exts = exts;
96 	n->handle = handle;
97 
98 	err = xa_alloc_cyclic(&tcf_exts_miss_cookies_xa, &n->miss_cookie_base,
99 			      n, xa_limit_32b, &next, GFP_KERNEL);
100 	if (err)
101 		goto err_xa_alloc;
102 
103 	exts->miss_cookie_node = n;
104 	return 0;
105 
106 err_xa_alloc:
107 	kfree(n);
108 	return err;
109 }
110 
111 static void tcf_exts_miss_cookie_base_destroy(struct tcf_exts *exts)
112 {
113 	struct tcf_exts_miss_cookie_node *n;
114 
115 	if (!exts->miss_cookie_node)
116 		return;
117 
118 	n = exts->miss_cookie_node;
119 	xa_erase(&tcf_exts_miss_cookies_xa, n->miss_cookie_base);
120 	kfree_rcu(n, rcu);
121 }
122 
123 static struct tcf_exts_miss_cookie_node *
124 tcf_exts_miss_cookie_lookup(u64 miss_cookie, int *act_index)
125 {
126 	union tcf_exts_miss_cookie mc = { .miss_cookie = miss_cookie, };
127 
128 	*act_index = mc.act_index;
129 	return xa_load(&tcf_exts_miss_cookies_xa, mc.miss_cookie_base);
130 }
131 #else /* IS_ENABLED(CONFIG_NET_TC_SKB_EXT) */
132 static int
133 tcf_exts_miss_cookie_base_alloc(struct tcf_exts *exts, struct tcf_proto *tp,
134 				u32 handle)
135 {
136 	return 0;
137 }
138 
139 static void tcf_exts_miss_cookie_base_destroy(struct tcf_exts *exts)
140 {
141 }
142 #endif /* IS_ENABLED(CONFIG_NET_TC_SKB_EXT) */
143 
144 static u64 tcf_exts_miss_cookie_get(u32 miss_cookie_base, int act_index)
145 {
146 	union tcf_exts_miss_cookie mc = { .act_index = act_index, };
147 
148 	if (!miss_cookie_base)
149 		return 0;
150 
151 	mc.miss_cookie_base = miss_cookie_base;
152 	return mc.miss_cookie;
153 }
154 
155 #ifdef CONFIG_NET_CLS_ACT
156 DEFINE_STATIC_KEY_FALSE(tc_skb_ext_tc);
157 EXPORT_SYMBOL(tc_skb_ext_tc);
158 
159 void tc_skb_ext_tc_enable(void)
160 {
161 	static_branch_inc(&tc_skb_ext_tc);
162 }
163 EXPORT_SYMBOL(tc_skb_ext_tc_enable);
164 
165 void tc_skb_ext_tc_disable(void)
166 {
167 	static_branch_dec(&tc_skb_ext_tc);
168 }
169 EXPORT_SYMBOL(tc_skb_ext_tc_disable);
170 #endif
171 
172 static u32 destroy_obj_hashfn(const struct tcf_proto *tp)
173 {
174 	return jhash_3words(tp->chain->index, tp->prio,
175 			    (__force __u32)tp->protocol, 0);
176 }
177 
178 static void tcf_proto_signal_destroying(struct tcf_chain *chain,
179 					struct tcf_proto *tp)
180 {
181 	struct tcf_block *block = chain->block;
182 
183 	mutex_lock(&block->proto_destroy_lock);
184 	hash_add_rcu(block->proto_destroy_ht, &tp->destroy_ht_node,
185 		     destroy_obj_hashfn(tp));
186 	mutex_unlock(&block->proto_destroy_lock);
187 }
188 
189 static bool tcf_proto_cmp(const struct tcf_proto *tp1,
190 			  const struct tcf_proto *tp2)
191 {
192 	return tp1->chain->index == tp2->chain->index &&
193 	       tp1->prio == tp2->prio &&
194 	       tp1->protocol == tp2->protocol;
195 }
196 
197 static bool tcf_proto_exists_destroying(struct tcf_chain *chain,
198 					struct tcf_proto *tp)
199 {
200 	u32 hash = destroy_obj_hashfn(tp);
201 	struct tcf_proto *iter;
202 	bool found = false;
203 
204 	rcu_read_lock();
205 	hash_for_each_possible_rcu(chain->block->proto_destroy_ht, iter,
206 				   destroy_ht_node, hash) {
207 		if (tcf_proto_cmp(tp, iter)) {
208 			found = true;
209 			break;
210 		}
211 	}
212 	rcu_read_unlock();
213 
214 	return found;
215 }
216 
217 static void
218 tcf_proto_signal_destroyed(struct tcf_chain *chain, struct tcf_proto *tp)
219 {
220 	struct tcf_block *block = chain->block;
221 
222 	mutex_lock(&block->proto_destroy_lock);
223 	if (hash_hashed(&tp->destroy_ht_node))
224 		hash_del_rcu(&tp->destroy_ht_node);
225 	mutex_unlock(&block->proto_destroy_lock);
226 }
227 
228 /* Find classifier type by string name */
229 
230 static const struct tcf_proto_ops *__tcf_proto_lookup_ops(const char *kind)
231 {
232 	const struct tcf_proto_ops *t, *res = NULL;
233 
234 	if (kind) {
235 		read_lock(&cls_mod_lock);
236 		list_for_each_entry(t, &tcf_proto_base, head) {
237 			if (strcmp(kind, t->kind) == 0) {
238 				if (try_module_get(t->owner))
239 					res = t;
240 				break;
241 			}
242 		}
243 		read_unlock(&cls_mod_lock);
244 	}
245 	return res;
246 }
247 
248 static const struct tcf_proto_ops *
249 tcf_proto_lookup_ops(const char *kind, bool rtnl_held,
250 		     struct netlink_ext_ack *extack)
251 {
252 	const struct tcf_proto_ops *ops;
253 
254 	ops = __tcf_proto_lookup_ops(kind);
255 	if (ops)
256 		return ops;
257 #ifdef CONFIG_MODULES
258 	if (rtnl_held)
259 		rtnl_unlock();
260 	request_module("cls_%s", kind);
261 	if (rtnl_held)
262 		rtnl_lock();
263 	ops = __tcf_proto_lookup_ops(kind);
264 	/* We dropped the RTNL semaphore in order to perform
265 	 * the module load. So, even if we succeeded in loading
266 	 * the module we have to replay the request. We indicate
267 	 * this using -EAGAIN.
268 	 */
269 	if (ops) {
270 		module_put(ops->owner);
271 		return ERR_PTR(-EAGAIN);
272 	}
273 #endif
274 	NL_SET_ERR_MSG(extack, "TC classifier not found");
275 	return ERR_PTR(-ENOENT);
276 }
277 
278 /* Register(unregister) new classifier type */
279 
280 int register_tcf_proto_ops(struct tcf_proto_ops *ops)
281 {
282 	struct tcf_proto_ops *t;
283 	int rc = -EEXIST;
284 
285 	write_lock(&cls_mod_lock);
286 	list_for_each_entry(t, &tcf_proto_base, head)
287 		if (!strcmp(ops->kind, t->kind))
288 			goto out;
289 
290 	list_add_tail(&ops->head, &tcf_proto_base);
291 	rc = 0;
292 out:
293 	write_unlock(&cls_mod_lock);
294 	return rc;
295 }
296 EXPORT_SYMBOL(register_tcf_proto_ops);
297 
298 static struct workqueue_struct *tc_filter_wq;
299 
300 void unregister_tcf_proto_ops(struct tcf_proto_ops *ops)
301 {
302 	struct tcf_proto_ops *t;
303 	int rc = -ENOENT;
304 
305 	/* Wait for outstanding call_rcu()s, if any, from a
306 	 * tcf_proto_ops's destroy() handler.
307 	 */
308 	rcu_barrier();
309 	flush_workqueue(tc_filter_wq);
310 
311 	write_lock(&cls_mod_lock);
312 	list_for_each_entry(t, &tcf_proto_base, head) {
313 		if (t == ops) {
314 			list_del(&t->head);
315 			rc = 0;
316 			break;
317 		}
318 	}
319 	write_unlock(&cls_mod_lock);
320 
321 	WARN(rc, "unregister tc filter kind(%s) failed %d\n", ops->kind, rc);
322 }
323 EXPORT_SYMBOL(unregister_tcf_proto_ops);
324 
325 bool tcf_queue_work(struct rcu_work *rwork, work_func_t func)
326 {
327 	INIT_RCU_WORK(rwork, func);
328 	return queue_rcu_work(tc_filter_wq, rwork);
329 }
330 EXPORT_SYMBOL(tcf_queue_work);
331 
332 /* Select new prio value from the range, managed by kernel. */
333 
334 static inline u32 tcf_auto_prio(struct tcf_proto *tp)
335 {
336 	u32 first = TC_H_MAKE(0xC0000000U, 0U);
337 
338 	if (tp)
339 		first = tp->prio - 1;
340 
341 	return TC_H_MAJ(first);
342 }
343 
344 static bool tcf_proto_check_kind(struct nlattr *kind, char *name)
345 {
346 	if (kind)
347 		return nla_strscpy(name, kind, IFNAMSIZ) < 0;
348 	memset(name, 0, IFNAMSIZ);
349 	return false;
350 }
351 
352 static bool tcf_proto_is_unlocked(const char *kind)
353 {
354 	const struct tcf_proto_ops *ops;
355 	bool ret;
356 
357 	if (strlen(kind) == 0)
358 		return false;
359 
360 	ops = tcf_proto_lookup_ops(kind, false, NULL);
361 	/* On error return false to take rtnl lock. Proto lookup/create
362 	 * functions will perform lookup again and properly handle errors.
363 	 */
364 	if (IS_ERR(ops))
365 		return false;
366 
367 	ret = !!(ops->flags & TCF_PROTO_OPS_DOIT_UNLOCKED);
368 	module_put(ops->owner);
369 	return ret;
370 }
371 
372 static struct tcf_proto *tcf_proto_create(const char *kind, u32 protocol,
373 					  u32 prio, struct tcf_chain *chain,
374 					  bool rtnl_held,
375 					  struct netlink_ext_ack *extack)
376 {
377 	struct tcf_proto *tp;
378 	int err;
379 
380 	tp = kzalloc(sizeof(*tp), GFP_KERNEL);
381 	if (!tp)
382 		return ERR_PTR(-ENOBUFS);
383 
384 	tp->ops = tcf_proto_lookup_ops(kind, rtnl_held, extack);
385 	if (IS_ERR(tp->ops)) {
386 		err = PTR_ERR(tp->ops);
387 		goto errout;
388 	}
389 	tp->classify = tp->ops->classify;
390 	tp->protocol = protocol;
391 	tp->prio = prio;
392 	tp->chain = chain;
393 	spin_lock_init(&tp->lock);
394 	refcount_set(&tp->refcnt, 1);
395 
396 	err = tp->ops->init(tp);
397 	if (err) {
398 		module_put(tp->ops->owner);
399 		goto errout;
400 	}
401 	return tp;
402 
403 errout:
404 	kfree(tp);
405 	return ERR_PTR(err);
406 }
407 
408 static void tcf_proto_get(struct tcf_proto *tp)
409 {
410 	refcount_inc(&tp->refcnt);
411 }
412 
413 static void tcf_chain_put(struct tcf_chain *chain);
414 
415 static void tcf_proto_destroy(struct tcf_proto *tp, bool rtnl_held,
416 			      bool sig_destroy, struct netlink_ext_ack *extack)
417 {
418 	tp->ops->destroy(tp, rtnl_held, extack);
419 	if (sig_destroy)
420 		tcf_proto_signal_destroyed(tp->chain, tp);
421 	tcf_chain_put(tp->chain);
422 	module_put(tp->ops->owner);
423 	kfree_rcu(tp, rcu);
424 }
425 
426 static void tcf_proto_put(struct tcf_proto *tp, bool rtnl_held,
427 			  struct netlink_ext_ack *extack)
428 {
429 	if (refcount_dec_and_test(&tp->refcnt))
430 		tcf_proto_destroy(tp, rtnl_held, true, extack);
431 }
432 
433 static bool tcf_proto_check_delete(struct tcf_proto *tp)
434 {
435 	if (tp->ops->delete_empty)
436 		return tp->ops->delete_empty(tp);
437 
438 	tp->deleting = true;
439 	return tp->deleting;
440 }
441 
442 static void tcf_proto_mark_delete(struct tcf_proto *tp)
443 {
444 	spin_lock(&tp->lock);
445 	tp->deleting = true;
446 	spin_unlock(&tp->lock);
447 }
448 
449 static bool tcf_proto_is_deleting(struct tcf_proto *tp)
450 {
451 	bool deleting;
452 
453 	spin_lock(&tp->lock);
454 	deleting = tp->deleting;
455 	spin_unlock(&tp->lock);
456 
457 	return deleting;
458 }
459 
460 #define ASSERT_BLOCK_LOCKED(block)					\
461 	lockdep_assert_held(&(block)->lock)
462 
463 struct tcf_filter_chain_list_item {
464 	struct list_head list;
465 	tcf_chain_head_change_t *chain_head_change;
466 	void *chain_head_change_priv;
467 };
468 
469 static struct tcf_chain *tcf_chain_create(struct tcf_block *block,
470 					  u32 chain_index)
471 {
472 	struct tcf_chain *chain;
473 
474 	ASSERT_BLOCK_LOCKED(block);
475 
476 	chain = kzalloc(sizeof(*chain), GFP_KERNEL);
477 	if (!chain)
478 		return NULL;
479 	list_add_tail_rcu(&chain->list, &block->chain_list);
480 	mutex_init(&chain->filter_chain_lock);
481 	chain->block = block;
482 	chain->index = chain_index;
483 	chain->refcnt = 1;
484 	if (!chain->index)
485 		block->chain0.chain = chain;
486 	return chain;
487 }
488 
489 static void tcf_chain_head_change_item(struct tcf_filter_chain_list_item *item,
490 				       struct tcf_proto *tp_head)
491 {
492 	if (item->chain_head_change)
493 		item->chain_head_change(tp_head, item->chain_head_change_priv);
494 }
495 
496 static void tcf_chain0_head_change(struct tcf_chain *chain,
497 				   struct tcf_proto *tp_head)
498 {
499 	struct tcf_filter_chain_list_item *item;
500 	struct tcf_block *block = chain->block;
501 
502 	if (chain->index)
503 		return;
504 
505 	mutex_lock(&block->lock);
506 	list_for_each_entry(item, &block->chain0.filter_chain_list, list)
507 		tcf_chain_head_change_item(item, tp_head);
508 	mutex_unlock(&block->lock);
509 }
510 
511 /* Returns true if block can be safely freed. */
512 
513 static bool tcf_chain_detach(struct tcf_chain *chain)
514 {
515 	struct tcf_block *block = chain->block;
516 
517 	ASSERT_BLOCK_LOCKED(block);
518 
519 	list_del_rcu(&chain->list);
520 	if (!chain->index)
521 		block->chain0.chain = NULL;
522 
523 	if (list_empty(&block->chain_list) &&
524 	    refcount_read(&block->refcnt) == 0)
525 		return true;
526 
527 	return false;
528 }
529 
530 static void tcf_block_destroy(struct tcf_block *block)
531 {
532 	mutex_destroy(&block->lock);
533 	mutex_destroy(&block->proto_destroy_lock);
534 	xa_destroy(&block->ports);
535 	kfree_rcu(block, rcu);
536 }
537 
538 static void tcf_chain_destroy(struct tcf_chain *chain, bool free_block)
539 {
540 	struct tcf_block *block = chain->block;
541 
542 	mutex_destroy(&chain->filter_chain_lock);
543 	kfree_rcu(chain, rcu);
544 	if (free_block)
545 		tcf_block_destroy(block);
546 }
547 
548 static void tcf_chain_hold(struct tcf_chain *chain)
549 {
550 	ASSERT_BLOCK_LOCKED(chain->block);
551 
552 	++chain->refcnt;
553 }
554 
555 static bool tcf_chain_held_by_acts_only(struct tcf_chain *chain)
556 {
557 	ASSERT_BLOCK_LOCKED(chain->block);
558 
559 	/* In case all the references are action references, this
560 	 * chain should not be shown to the user.
561 	 */
562 	return chain->refcnt == chain->action_refcnt;
563 }
564 
565 static struct tcf_chain *tcf_chain_lookup(struct tcf_block *block,
566 					  u32 chain_index)
567 {
568 	struct tcf_chain *chain;
569 
570 	ASSERT_BLOCK_LOCKED(block);
571 
572 	list_for_each_entry(chain, &block->chain_list, list) {
573 		if (chain->index == chain_index)
574 			return chain;
575 	}
576 	return NULL;
577 }
578 
579 #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
580 static struct tcf_chain *tcf_chain_lookup_rcu(const struct tcf_block *block,
581 					      u32 chain_index)
582 {
583 	struct tcf_chain *chain;
584 
585 	list_for_each_entry_rcu(chain, &block->chain_list, list) {
586 		if (chain->index == chain_index)
587 			return chain;
588 	}
589 	return NULL;
590 }
591 #endif
592 
593 static int tc_chain_notify(struct tcf_chain *chain, struct sk_buff *oskb,
594 			   u32 seq, u16 flags, int event, bool unicast,
595 			   struct netlink_ext_ack *extack);
596 
597 static struct tcf_chain *__tcf_chain_get(struct tcf_block *block,
598 					 u32 chain_index, bool create,
599 					 bool by_act)
600 {
601 	struct tcf_chain *chain = NULL;
602 	bool is_first_reference;
603 
604 	mutex_lock(&block->lock);
605 	chain = tcf_chain_lookup(block, chain_index);
606 	if (chain) {
607 		tcf_chain_hold(chain);
608 	} else {
609 		if (!create)
610 			goto errout;
611 		chain = tcf_chain_create(block, chain_index);
612 		if (!chain)
613 			goto errout;
614 	}
615 
616 	if (by_act)
617 		++chain->action_refcnt;
618 	is_first_reference = chain->refcnt - chain->action_refcnt == 1;
619 	mutex_unlock(&block->lock);
620 
621 	/* Send notification only in case we got the first
622 	 * non-action reference. Until then, the chain acts only as
623 	 * a placeholder for actions pointing to it and user ought
624 	 * not know about them.
625 	 */
626 	if (is_first_reference && !by_act)
627 		tc_chain_notify(chain, NULL, 0, NLM_F_CREATE | NLM_F_EXCL,
628 				RTM_NEWCHAIN, false, NULL);
629 
630 	return chain;
631 
632 errout:
633 	mutex_unlock(&block->lock);
634 	return chain;
635 }
636 
637 static struct tcf_chain *tcf_chain_get(struct tcf_block *block, u32 chain_index,
638 				       bool create)
639 {
640 	return __tcf_chain_get(block, chain_index, create, false);
641 }
642 
643 struct tcf_chain *tcf_chain_get_by_act(struct tcf_block *block, u32 chain_index)
644 {
645 	return __tcf_chain_get(block, chain_index, true, true);
646 }
647 EXPORT_SYMBOL(tcf_chain_get_by_act);
648 
649 static void tc_chain_tmplt_del(const struct tcf_proto_ops *tmplt_ops,
650 			       void *tmplt_priv);
651 static int tc_chain_notify_delete(const struct tcf_proto_ops *tmplt_ops,
652 				  void *tmplt_priv, u32 chain_index,
653 				  struct tcf_block *block, struct sk_buff *oskb,
654 				  u32 seq, u16 flags);
655 
656 static void __tcf_chain_put(struct tcf_chain *chain, bool by_act,
657 			    bool explicitly_created)
658 {
659 	struct tcf_block *block = chain->block;
660 	const struct tcf_proto_ops *tmplt_ops;
661 	unsigned int refcnt, non_act_refcnt;
662 	bool free_block = false;
663 	void *tmplt_priv;
664 
665 	mutex_lock(&block->lock);
666 	if (explicitly_created) {
667 		if (!chain->explicitly_created) {
668 			mutex_unlock(&block->lock);
669 			return;
670 		}
671 		chain->explicitly_created = false;
672 	}
673 
674 	if (by_act)
675 		chain->action_refcnt--;
676 
677 	/* tc_chain_notify_delete can't be called while holding block lock.
678 	 * However, when block is unlocked chain can be changed concurrently, so
679 	 * save these to temporary variables.
680 	 */
681 	refcnt = --chain->refcnt;
682 	non_act_refcnt = refcnt - chain->action_refcnt;
683 	tmplt_ops = chain->tmplt_ops;
684 	tmplt_priv = chain->tmplt_priv;
685 
686 	if (non_act_refcnt == chain->explicitly_created && !by_act) {
687 		if (non_act_refcnt == 0)
688 			tc_chain_notify_delete(tmplt_ops, tmplt_priv,
689 					       chain->index, block, NULL, 0, 0);
690 		/* Last reference to chain, no need to lock. */
691 		chain->flushing = false;
692 	}
693 
694 	if (refcnt == 0)
695 		free_block = tcf_chain_detach(chain);
696 	mutex_unlock(&block->lock);
697 
698 	if (refcnt == 0) {
699 		tc_chain_tmplt_del(tmplt_ops, tmplt_priv);
700 		tcf_chain_destroy(chain, free_block);
701 	}
702 }
703 
704 static void tcf_chain_put(struct tcf_chain *chain)
705 {
706 	__tcf_chain_put(chain, false, false);
707 }
708 
709 void tcf_chain_put_by_act(struct tcf_chain *chain)
710 {
711 	__tcf_chain_put(chain, true, false);
712 }
713 EXPORT_SYMBOL(tcf_chain_put_by_act);
714 
715 static void tcf_chain_put_explicitly_created(struct tcf_chain *chain)
716 {
717 	__tcf_chain_put(chain, false, true);
718 }
719 
720 static void tcf_chain_flush(struct tcf_chain *chain, bool rtnl_held)
721 {
722 	struct tcf_proto *tp, *tp_next;
723 
724 	mutex_lock(&chain->filter_chain_lock);
725 	tp = tcf_chain_dereference(chain->filter_chain, chain);
726 	while (tp) {
727 		tp_next = rcu_dereference_protected(tp->next, 1);
728 		tcf_proto_signal_destroying(chain, tp);
729 		tp = tp_next;
730 	}
731 	tp = tcf_chain_dereference(chain->filter_chain, chain);
732 	RCU_INIT_POINTER(chain->filter_chain, NULL);
733 	tcf_chain0_head_change(chain, NULL);
734 	chain->flushing = true;
735 	mutex_unlock(&chain->filter_chain_lock);
736 
737 	while (tp) {
738 		tp_next = rcu_dereference_protected(tp->next, 1);
739 		tcf_proto_put(tp, rtnl_held, NULL);
740 		tp = tp_next;
741 	}
742 }
743 
744 static int tcf_block_setup(struct tcf_block *block,
745 			   struct flow_block_offload *bo);
746 
747 static void tcf_block_offload_init(struct flow_block_offload *bo,
748 				   struct net_device *dev, struct Qdisc *sch,
749 				   enum flow_block_command command,
750 				   enum flow_block_binder_type binder_type,
751 				   struct flow_block *flow_block,
752 				   bool shared, struct netlink_ext_ack *extack)
753 {
754 	bo->net = dev_net(dev);
755 	bo->command = command;
756 	bo->binder_type = binder_type;
757 	bo->block = flow_block;
758 	bo->block_shared = shared;
759 	bo->extack = extack;
760 	bo->sch = sch;
761 	bo->cb_list_head = &flow_block->cb_list;
762 	INIT_LIST_HEAD(&bo->cb_list);
763 }
764 
765 static void tcf_block_unbind(struct tcf_block *block,
766 			     struct flow_block_offload *bo);
767 
768 static void tc_block_indr_cleanup(struct flow_block_cb *block_cb)
769 {
770 	struct tcf_block *block = block_cb->indr.data;
771 	struct net_device *dev = block_cb->indr.dev;
772 	struct Qdisc *sch = block_cb->indr.sch;
773 	struct netlink_ext_ack extack = {};
774 	struct flow_block_offload bo = {};
775 
776 	tcf_block_offload_init(&bo, dev, sch, FLOW_BLOCK_UNBIND,
777 			       block_cb->indr.binder_type,
778 			       &block->flow_block, tcf_block_shared(block),
779 			       &extack);
780 	rtnl_lock();
781 	down_write(&block->cb_lock);
782 	list_del(&block_cb->driver_list);
783 	list_move(&block_cb->list, &bo.cb_list);
784 	tcf_block_unbind(block, &bo);
785 	up_write(&block->cb_lock);
786 	rtnl_unlock();
787 }
788 
789 static bool tcf_block_offload_in_use(struct tcf_block *block)
790 {
791 	return atomic_read(&block->offloadcnt);
792 }
793 
794 static int tcf_block_offload_cmd(struct tcf_block *block,
795 				 struct net_device *dev, struct Qdisc *sch,
796 				 struct tcf_block_ext_info *ei,
797 				 enum flow_block_command command,
798 				 struct netlink_ext_ack *extack)
799 {
800 	struct flow_block_offload bo = {};
801 
802 	tcf_block_offload_init(&bo, dev, sch, command, ei->binder_type,
803 			       &block->flow_block, tcf_block_shared(block),
804 			       extack);
805 
806 	if (dev->netdev_ops->ndo_setup_tc) {
807 		int err;
808 
809 		err = dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_BLOCK, &bo);
810 		if (err < 0) {
811 			if (err != -EOPNOTSUPP)
812 				NL_SET_ERR_MSG(extack, "Driver ndo_setup_tc failed");
813 			return err;
814 		}
815 
816 		return tcf_block_setup(block, &bo);
817 	}
818 
819 	flow_indr_dev_setup_offload(dev, sch, TC_SETUP_BLOCK, block, &bo,
820 				    tc_block_indr_cleanup);
821 	tcf_block_setup(block, &bo);
822 
823 	return -EOPNOTSUPP;
824 }
825 
826 static int tcf_block_offload_bind(struct tcf_block *block, struct Qdisc *q,
827 				  struct tcf_block_ext_info *ei,
828 				  struct netlink_ext_ack *extack)
829 {
830 	struct net_device *dev = q->dev_queue->dev;
831 	int err;
832 
833 	down_write(&block->cb_lock);
834 
835 	/* If tc offload feature is disabled and the block we try to bind
836 	 * to already has some offloaded filters, forbid to bind.
837 	 */
838 	if (dev->netdev_ops->ndo_setup_tc &&
839 	    !tc_can_offload(dev) &&
840 	    tcf_block_offload_in_use(block)) {
841 		NL_SET_ERR_MSG(extack, "Bind to offloaded block failed as dev has offload disabled");
842 		err = -EOPNOTSUPP;
843 		goto err_unlock;
844 	}
845 
846 	err = tcf_block_offload_cmd(block, dev, q, ei, FLOW_BLOCK_BIND, extack);
847 	if (err == -EOPNOTSUPP)
848 		goto no_offload_dev_inc;
849 	if (err)
850 		goto err_unlock;
851 
852 	up_write(&block->cb_lock);
853 	return 0;
854 
855 no_offload_dev_inc:
856 	if (tcf_block_offload_in_use(block))
857 		goto err_unlock;
858 
859 	err = 0;
860 	block->nooffloaddevcnt++;
861 err_unlock:
862 	up_write(&block->cb_lock);
863 	return err;
864 }
865 
866 static void tcf_block_offload_unbind(struct tcf_block *block, struct Qdisc *q,
867 				     struct tcf_block_ext_info *ei)
868 {
869 	struct net_device *dev = q->dev_queue->dev;
870 	int err;
871 
872 	down_write(&block->cb_lock);
873 	err = tcf_block_offload_cmd(block, dev, q, ei, FLOW_BLOCK_UNBIND, NULL);
874 	if (err == -EOPNOTSUPP)
875 		goto no_offload_dev_dec;
876 	up_write(&block->cb_lock);
877 	return;
878 
879 no_offload_dev_dec:
880 	WARN_ON(block->nooffloaddevcnt-- == 0);
881 	up_write(&block->cb_lock);
882 }
883 
884 static int
885 tcf_chain0_head_change_cb_add(struct tcf_block *block,
886 			      struct tcf_block_ext_info *ei,
887 			      struct netlink_ext_ack *extack)
888 {
889 	struct tcf_filter_chain_list_item *item;
890 	struct tcf_chain *chain0;
891 
892 	item = kmalloc(sizeof(*item), GFP_KERNEL);
893 	if (!item) {
894 		NL_SET_ERR_MSG(extack, "Memory allocation for head change callback item failed");
895 		return -ENOMEM;
896 	}
897 	item->chain_head_change = ei->chain_head_change;
898 	item->chain_head_change_priv = ei->chain_head_change_priv;
899 
900 	mutex_lock(&block->lock);
901 	chain0 = block->chain0.chain;
902 	if (chain0)
903 		tcf_chain_hold(chain0);
904 	else
905 		list_add(&item->list, &block->chain0.filter_chain_list);
906 	mutex_unlock(&block->lock);
907 
908 	if (chain0) {
909 		struct tcf_proto *tp_head;
910 
911 		mutex_lock(&chain0->filter_chain_lock);
912 
913 		tp_head = tcf_chain_dereference(chain0->filter_chain, chain0);
914 		if (tp_head)
915 			tcf_chain_head_change_item(item, tp_head);
916 
917 		mutex_lock(&block->lock);
918 		list_add(&item->list, &block->chain0.filter_chain_list);
919 		mutex_unlock(&block->lock);
920 
921 		mutex_unlock(&chain0->filter_chain_lock);
922 		tcf_chain_put(chain0);
923 	}
924 
925 	return 0;
926 }
927 
928 static void
929 tcf_chain0_head_change_cb_del(struct tcf_block *block,
930 			      struct tcf_block_ext_info *ei)
931 {
932 	struct tcf_filter_chain_list_item *item;
933 
934 	mutex_lock(&block->lock);
935 	list_for_each_entry(item, &block->chain0.filter_chain_list, list) {
936 		if ((!ei->chain_head_change && !ei->chain_head_change_priv) ||
937 		    (item->chain_head_change == ei->chain_head_change &&
938 		     item->chain_head_change_priv == ei->chain_head_change_priv)) {
939 			if (block->chain0.chain)
940 				tcf_chain_head_change_item(item, NULL);
941 			list_del(&item->list);
942 			mutex_unlock(&block->lock);
943 
944 			kfree(item);
945 			return;
946 		}
947 	}
948 	mutex_unlock(&block->lock);
949 	WARN_ON(1);
950 }
951 
952 struct tcf_net {
953 	spinlock_t idr_lock; /* Protects idr */
954 	struct idr idr;
955 };
956 
957 static unsigned int tcf_net_id;
958 
959 static int tcf_block_insert(struct tcf_block *block, struct net *net,
960 			    struct netlink_ext_ack *extack)
961 {
962 	struct tcf_net *tn = net_generic(net, tcf_net_id);
963 	int err;
964 
965 	idr_preload(GFP_KERNEL);
966 	spin_lock(&tn->idr_lock);
967 	err = idr_alloc_u32(&tn->idr, block, &block->index, block->index,
968 			    GFP_NOWAIT);
969 	spin_unlock(&tn->idr_lock);
970 	idr_preload_end();
971 
972 	return err;
973 }
974 
975 static void tcf_block_remove(struct tcf_block *block, struct net *net)
976 {
977 	struct tcf_net *tn = net_generic(net, tcf_net_id);
978 
979 	spin_lock(&tn->idr_lock);
980 	idr_remove(&tn->idr, block->index);
981 	spin_unlock(&tn->idr_lock);
982 }
983 
984 static struct tcf_block *tcf_block_create(struct net *net, struct Qdisc *q,
985 					  u32 block_index,
986 					  struct netlink_ext_ack *extack)
987 {
988 	struct tcf_block *block;
989 
990 	block = kzalloc(sizeof(*block), GFP_KERNEL);
991 	if (!block) {
992 		NL_SET_ERR_MSG(extack, "Memory allocation for block failed");
993 		return ERR_PTR(-ENOMEM);
994 	}
995 	mutex_init(&block->lock);
996 	mutex_init(&block->proto_destroy_lock);
997 	init_rwsem(&block->cb_lock);
998 	flow_block_init(&block->flow_block);
999 	INIT_LIST_HEAD(&block->chain_list);
1000 	INIT_LIST_HEAD(&block->owner_list);
1001 	INIT_LIST_HEAD(&block->chain0.filter_chain_list);
1002 
1003 	refcount_set(&block->refcnt, 1);
1004 	block->net = net;
1005 	block->index = block_index;
1006 	xa_init(&block->ports);
1007 
1008 	/* Don't store q pointer for blocks which are shared */
1009 	if (!tcf_block_shared(block))
1010 		block->q = q;
1011 	return block;
1012 }
1013 
1014 struct tcf_block *tcf_block_lookup(struct net *net, u32 block_index)
1015 {
1016 	struct tcf_net *tn = net_generic(net, tcf_net_id);
1017 
1018 	return idr_find(&tn->idr, block_index);
1019 }
1020 EXPORT_SYMBOL(tcf_block_lookup);
1021 
1022 static struct tcf_block *tcf_block_refcnt_get(struct net *net, u32 block_index)
1023 {
1024 	struct tcf_block *block;
1025 
1026 	rcu_read_lock();
1027 	block = tcf_block_lookup(net, block_index);
1028 	if (block && !refcount_inc_not_zero(&block->refcnt))
1029 		block = NULL;
1030 	rcu_read_unlock();
1031 
1032 	return block;
1033 }
1034 
1035 static struct tcf_chain *
1036 __tcf_get_next_chain(struct tcf_block *block, struct tcf_chain *chain)
1037 {
1038 	mutex_lock(&block->lock);
1039 	if (chain)
1040 		chain = list_is_last(&chain->list, &block->chain_list) ?
1041 			NULL : list_next_entry(chain, list);
1042 	else
1043 		chain = list_first_entry_or_null(&block->chain_list,
1044 						 struct tcf_chain, list);
1045 
1046 	/* skip all action-only chains */
1047 	while (chain && tcf_chain_held_by_acts_only(chain))
1048 		chain = list_is_last(&chain->list, &block->chain_list) ?
1049 			NULL : list_next_entry(chain, list);
1050 
1051 	if (chain)
1052 		tcf_chain_hold(chain);
1053 	mutex_unlock(&block->lock);
1054 
1055 	return chain;
1056 }
1057 
1058 /* Function to be used by all clients that want to iterate over all chains on
1059  * block. It properly obtains block->lock and takes reference to chain before
1060  * returning it. Users of this function must be tolerant to concurrent chain
1061  * insertion/deletion or ensure that no concurrent chain modification is
1062  * possible. Note that all netlink dump callbacks cannot guarantee to provide
1063  * consistent dump because rtnl lock is released each time skb is filled with
1064  * data and sent to user-space.
1065  */
1066 
1067 struct tcf_chain *
1068 tcf_get_next_chain(struct tcf_block *block, struct tcf_chain *chain)
1069 {
1070 	struct tcf_chain *chain_next = __tcf_get_next_chain(block, chain);
1071 
1072 	if (chain)
1073 		tcf_chain_put(chain);
1074 
1075 	return chain_next;
1076 }
1077 EXPORT_SYMBOL(tcf_get_next_chain);
1078 
1079 static struct tcf_proto *
1080 __tcf_get_next_proto(struct tcf_chain *chain, struct tcf_proto *tp)
1081 {
1082 	u32 prio = 0;
1083 
1084 	ASSERT_RTNL();
1085 	mutex_lock(&chain->filter_chain_lock);
1086 
1087 	if (!tp) {
1088 		tp = tcf_chain_dereference(chain->filter_chain, chain);
1089 	} else if (tcf_proto_is_deleting(tp)) {
1090 		/* 'deleting' flag is set and chain->filter_chain_lock was
1091 		 * unlocked, which means next pointer could be invalid. Restart
1092 		 * search.
1093 		 */
1094 		prio = tp->prio + 1;
1095 		tp = tcf_chain_dereference(chain->filter_chain, chain);
1096 
1097 		for (; tp; tp = tcf_chain_dereference(tp->next, chain))
1098 			if (!tp->deleting && tp->prio >= prio)
1099 				break;
1100 	} else {
1101 		tp = tcf_chain_dereference(tp->next, chain);
1102 	}
1103 
1104 	if (tp)
1105 		tcf_proto_get(tp);
1106 
1107 	mutex_unlock(&chain->filter_chain_lock);
1108 
1109 	return tp;
1110 }
1111 
1112 /* Function to be used by all clients that want to iterate over all tp's on
1113  * chain. Users of this function must be tolerant to concurrent tp
1114  * insertion/deletion or ensure that no concurrent chain modification is
1115  * possible. Note that all netlink dump callbacks cannot guarantee to provide
1116  * consistent dump because rtnl lock is released each time skb is filled with
1117  * data and sent to user-space.
1118  */
1119 
1120 struct tcf_proto *
1121 tcf_get_next_proto(struct tcf_chain *chain, struct tcf_proto *tp)
1122 {
1123 	struct tcf_proto *tp_next = __tcf_get_next_proto(chain, tp);
1124 
1125 	if (tp)
1126 		tcf_proto_put(tp, true, NULL);
1127 
1128 	return tp_next;
1129 }
1130 EXPORT_SYMBOL(tcf_get_next_proto);
1131 
1132 static void tcf_block_flush_all_chains(struct tcf_block *block, bool rtnl_held)
1133 {
1134 	struct tcf_chain *chain;
1135 
1136 	/* Last reference to block. At this point chains cannot be added or
1137 	 * removed concurrently.
1138 	 */
1139 	for (chain = tcf_get_next_chain(block, NULL);
1140 	     chain;
1141 	     chain = tcf_get_next_chain(block, chain)) {
1142 		tcf_chain_put_explicitly_created(chain);
1143 		tcf_chain_flush(chain, rtnl_held);
1144 	}
1145 }
1146 
1147 /* Lookup Qdisc and increments its reference counter.
1148  * Set parent, if necessary.
1149  */
1150 
1151 static int __tcf_qdisc_find(struct net *net, struct Qdisc **q,
1152 			    u32 *parent, int ifindex, bool rtnl_held,
1153 			    struct netlink_ext_ack *extack)
1154 {
1155 	const struct Qdisc_class_ops *cops;
1156 	struct net_device *dev;
1157 	int err = 0;
1158 
1159 	if (ifindex == TCM_IFINDEX_MAGIC_BLOCK)
1160 		return 0;
1161 
1162 	rcu_read_lock();
1163 
1164 	/* Find link */
1165 	dev = dev_get_by_index_rcu(net, ifindex);
1166 	if (!dev) {
1167 		rcu_read_unlock();
1168 		return -ENODEV;
1169 	}
1170 
1171 	/* Find qdisc */
1172 	if (!*parent) {
1173 		*q = rcu_dereference(dev->qdisc);
1174 		*parent = (*q)->handle;
1175 	} else {
1176 		*q = qdisc_lookup_rcu(dev, TC_H_MAJ(*parent));
1177 		if (!*q) {
1178 			NL_SET_ERR_MSG(extack, "Parent Qdisc doesn't exists");
1179 			err = -EINVAL;
1180 			goto errout_rcu;
1181 		}
1182 	}
1183 
1184 	*q = qdisc_refcount_inc_nz(*q);
1185 	if (!*q) {
1186 		NL_SET_ERR_MSG(extack, "Parent Qdisc doesn't exists");
1187 		err = -EINVAL;
1188 		goto errout_rcu;
1189 	}
1190 
1191 	/* Is it classful? */
1192 	cops = (*q)->ops->cl_ops;
1193 	if (!cops) {
1194 		NL_SET_ERR_MSG(extack, "Qdisc not classful");
1195 		err = -EINVAL;
1196 		goto errout_qdisc;
1197 	}
1198 
1199 	if (!cops->tcf_block) {
1200 		NL_SET_ERR_MSG(extack, "Class doesn't support blocks");
1201 		err = -EOPNOTSUPP;
1202 		goto errout_qdisc;
1203 	}
1204 
1205 errout_rcu:
1206 	/* At this point we know that qdisc is not noop_qdisc,
1207 	 * which means that qdisc holds a reference to net_device
1208 	 * and we hold a reference to qdisc, so it is safe to release
1209 	 * rcu read lock.
1210 	 */
1211 	rcu_read_unlock();
1212 	return err;
1213 
1214 errout_qdisc:
1215 	rcu_read_unlock();
1216 
1217 	if (rtnl_held)
1218 		qdisc_put(*q);
1219 	else
1220 		qdisc_put_unlocked(*q);
1221 	*q = NULL;
1222 
1223 	return err;
1224 }
1225 
1226 static int __tcf_qdisc_cl_find(struct Qdisc *q, u32 parent, unsigned long *cl,
1227 			       int ifindex, struct netlink_ext_ack *extack)
1228 {
1229 	if (ifindex == TCM_IFINDEX_MAGIC_BLOCK)
1230 		return 0;
1231 
1232 	/* Do we search for filter, attached to class? */
1233 	if (TC_H_MIN(parent)) {
1234 		const struct Qdisc_class_ops *cops = q->ops->cl_ops;
1235 
1236 		*cl = cops->find(q, parent);
1237 		if (*cl == 0) {
1238 			NL_SET_ERR_MSG(extack, "Specified class doesn't exist");
1239 			return -ENOENT;
1240 		}
1241 	}
1242 
1243 	return 0;
1244 }
1245 
1246 static struct tcf_block *__tcf_block_find(struct net *net, struct Qdisc *q,
1247 					  unsigned long cl, int ifindex,
1248 					  u32 block_index,
1249 					  struct netlink_ext_ack *extack)
1250 {
1251 	struct tcf_block *block;
1252 
1253 	if (ifindex == TCM_IFINDEX_MAGIC_BLOCK) {
1254 		block = tcf_block_refcnt_get(net, block_index);
1255 		if (!block) {
1256 			NL_SET_ERR_MSG(extack, "Block of given index was not found");
1257 			return ERR_PTR(-EINVAL);
1258 		}
1259 	} else {
1260 		const struct Qdisc_class_ops *cops = q->ops->cl_ops;
1261 
1262 		block = cops->tcf_block(q, cl, extack);
1263 		if (!block)
1264 			return ERR_PTR(-EINVAL);
1265 
1266 		if (tcf_block_shared(block)) {
1267 			NL_SET_ERR_MSG(extack, "This filter block is shared. Please use the block index to manipulate the filters");
1268 			return ERR_PTR(-EOPNOTSUPP);
1269 		}
1270 
1271 		/* Always take reference to block in order to support execution
1272 		 * of rules update path of cls API without rtnl lock. Caller
1273 		 * must release block when it is finished using it. 'if' block
1274 		 * of this conditional obtain reference to block by calling
1275 		 * tcf_block_refcnt_get().
1276 		 */
1277 		refcount_inc(&block->refcnt);
1278 	}
1279 
1280 	return block;
1281 }
1282 
1283 static void __tcf_block_put(struct tcf_block *block, struct Qdisc *q,
1284 			    struct tcf_block_ext_info *ei, bool rtnl_held)
1285 {
1286 	if (refcount_dec_and_mutex_lock(&block->refcnt, &block->lock)) {
1287 		/* Flushing/putting all chains will cause the block to be
1288 		 * deallocated when last chain is freed. However, if chain_list
1289 		 * is empty, block has to be manually deallocated. After block
1290 		 * reference counter reached 0, it is no longer possible to
1291 		 * increment it or add new chains to block.
1292 		 */
1293 		bool free_block = list_empty(&block->chain_list);
1294 
1295 		mutex_unlock(&block->lock);
1296 		if (tcf_block_shared(block))
1297 			tcf_block_remove(block, block->net);
1298 
1299 		if (q)
1300 			tcf_block_offload_unbind(block, q, ei);
1301 
1302 		if (free_block)
1303 			tcf_block_destroy(block);
1304 		else
1305 			tcf_block_flush_all_chains(block, rtnl_held);
1306 	} else if (q) {
1307 		tcf_block_offload_unbind(block, q, ei);
1308 	}
1309 }
1310 
1311 static void tcf_block_refcnt_put(struct tcf_block *block, bool rtnl_held)
1312 {
1313 	__tcf_block_put(block, NULL, NULL, rtnl_held);
1314 }
1315 
1316 /* Find tcf block.
1317  * Set q, parent, cl when appropriate.
1318  */
1319 
1320 static struct tcf_block *tcf_block_find(struct net *net, struct Qdisc **q,
1321 					u32 *parent, unsigned long *cl,
1322 					int ifindex, u32 block_index,
1323 					struct netlink_ext_ack *extack)
1324 {
1325 	struct tcf_block *block;
1326 	int err = 0;
1327 
1328 	ASSERT_RTNL();
1329 
1330 	err = __tcf_qdisc_find(net, q, parent, ifindex, true, extack);
1331 	if (err)
1332 		goto errout;
1333 
1334 	err = __tcf_qdisc_cl_find(*q, *parent, cl, ifindex, extack);
1335 	if (err)
1336 		goto errout_qdisc;
1337 
1338 	block = __tcf_block_find(net, *q, *cl, ifindex, block_index, extack);
1339 	if (IS_ERR(block)) {
1340 		err = PTR_ERR(block);
1341 		goto errout_qdisc;
1342 	}
1343 
1344 	return block;
1345 
1346 errout_qdisc:
1347 	if (*q)
1348 		qdisc_put(*q);
1349 errout:
1350 	*q = NULL;
1351 	return ERR_PTR(err);
1352 }
1353 
1354 static void tcf_block_release(struct Qdisc *q, struct tcf_block *block,
1355 			      bool rtnl_held)
1356 {
1357 	if (!IS_ERR_OR_NULL(block))
1358 		tcf_block_refcnt_put(block, rtnl_held);
1359 
1360 	if (q) {
1361 		if (rtnl_held)
1362 			qdisc_put(q);
1363 		else
1364 			qdisc_put_unlocked(q);
1365 	}
1366 }
1367 
1368 struct tcf_block_owner_item {
1369 	struct list_head list;
1370 	struct Qdisc *q;
1371 	enum flow_block_binder_type binder_type;
1372 };
1373 
1374 static void
1375 tcf_block_owner_netif_keep_dst(struct tcf_block *block,
1376 			       struct Qdisc *q,
1377 			       enum flow_block_binder_type binder_type)
1378 {
1379 	if (block->keep_dst &&
1380 	    binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS &&
1381 	    binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS)
1382 		netif_keep_dst(qdisc_dev(q));
1383 }
1384 
1385 void tcf_block_netif_keep_dst(struct tcf_block *block)
1386 {
1387 	struct tcf_block_owner_item *item;
1388 
1389 	block->keep_dst = true;
1390 	list_for_each_entry(item, &block->owner_list, list)
1391 		tcf_block_owner_netif_keep_dst(block, item->q,
1392 					       item->binder_type);
1393 }
1394 EXPORT_SYMBOL(tcf_block_netif_keep_dst);
1395 
1396 static int tcf_block_owner_add(struct tcf_block *block,
1397 			       struct Qdisc *q,
1398 			       enum flow_block_binder_type binder_type)
1399 {
1400 	struct tcf_block_owner_item *item;
1401 
1402 	item = kmalloc(sizeof(*item), GFP_KERNEL);
1403 	if (!item)
1404 		return -ENOMEM;
1405 	item->q = q;
1406 	item->binder_type = binder_type;
1407 	list_add(&item->list, &block->owner_list);
1408 	return 0;
1409 }
1410 
1411 static void tcf_block_owner_del(struct tcf_block *block,
1412 				struct Qdisc *q,
1413 				enum flow_block_binder_type binder_type)
1414 {
1415 	struct tcf_block_owner_item *item;
1416 
1417 	list_for_each_entry(item, &block->owner_list, list) {
1418 		if (item->q == q && item->binder_type == binder_type) {
1419 			list_del(&item->list);
1420 			kfree(item);
1421 			return;
1422 		}
1423 	}
1424 	WARN_ON(1);
1425 }
1426 
1427 int tcf_block_get_ext(struct tcf_block **p_block, struct Qdisc *q,
1428 		      struct tcf_block_ext_info *ei,
1429 		      struct netlink_ext_ack *extack)
1430 {
1431 	struct net *net = qdisc_net(q);
1432 	struct tcf_block *block = NULL;
1433 	int err;
1434 
1435 	if (ei->block_index)
1436 		/* block_index not 0 means the shared block is requested */
1437 		block = tcf_block_refcnt_get(net, ei->block_index);
1438 
1439 	if (!block) {
1440 		block = tcf_block_create(net, q, ei->block_index, extack);
1441 		if (IS_ERR(block))
1442 			return PTR_ERR(block);
1443 		if (tcf_block_shared(block)) {
1444 			err = tcf_block_insert(block, net, extack);
1445 			if (err)
1446 				goto err_block_insert;
1447 		}
1448 	}
1449 
1450 	err = tcf_block_owner_add(block, q, ei->binder_type);
1451 	if (err)
1452 		goto err_block_owner_add;
1453 
1454 	tcf_block_owner_netif_keep_dst(block, q, ei->binder_type);
1455 
1456 	err = tcf_chain0_head_change_cb_add(block, ei, extack);
1457 	if (err)
1458 		goto err_chain0_head_change_cb_add;
1459 
1460 	err = tcf_block_offload_bind(block, q, ei, extack);
1461 	if (err)
1462 		goto err_block_offload_bind;
1463 
1464 	*p_block = block;
1465 	return 0;
1466 
1467 err_block_offload_bind:
1468 	tcf_chain0_head_change_cb_del(block, ei);
1469 err_chain0_head_change_cb_add:
1470 	tcf_block_owner_del(block, q, ei->binder_type);
1471 err_block_owner_add:
1472 err_block_insert:
1473 	tcf_block_refcnt_put(block, true);
1474 	return err;
1475 }
1476 EXPORT_SYMBOL(tcf_block_get_ext);
1477 
1478 static void tcf_chain_head_change_dflt(struct tcf_proto *tp_head, void *priv)
1479 {
1480 	struct tcf_proto __rcu **p_filter_chain = priv;
1481 
1482 	rcu_assign_pointer(*p_filter_chain, tp_head);
1483 }
1484 
1485 int tcf_block_get(struct tcf_block **p_block,
1486 		  struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
1487 		  struct netlink_ext_ack *extack)
1488 {
1489 	struct tcf_block_ext_info ei = {
1490 		.chain_head_change = tcf_chain_head_change_dflt,
1491 		.chain_head_change_priv = p_filter_chain,
1492 	};
1493 
1494 	WARN_ON(!p_filter_chain);
1495 	return tcf_block_get_ext(p_block, q, &ei, extack);
1496 }
1497 EXPORT_SYMBOL(tcf_block_get);
1498 
1499 /* XXX: Standalone actions are not allowed to jump to any chain, and bound
1500  * actions should be all removed after flushing.
1501  */
1502 void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
1503 		       struct tcf_block_ext_info *ei)
1504 {
1505 	if (!block)
1506 		return;
1507 	tcf_chain0_head_change_cb_del(block, ei);
1508 	tcf_block_owner_del(block, q, ei->binder_type);
1509 
1510 	__tcf_block_put(block, q, ei, true);
1511 }
1512 EXPORT_SYMBOL(tcf_block_put_ext);
1513 
1514 void tcf_block_put(struct tcf_block *block)
1515 {
1516 	struct tcf_block_ext_info ei = {0, };
1517 
1518 	if (!block)
1519 		return;
1520 	tcf_block_put_ext(block, block->q, &ei);
1521 }
1522 
1523 EXPORT_SYMBOL(tcf_block_put);
1524 
1525 static int
1526 tcf_block_playback_offloads(struct tcf_block *block, flow_setup_cb_t *cb,
1527 			    void *cb_priv, bool add, bool offload_in_use,
1528 			    struct netlink_ext_ack *extack)
1529 {
1530 	struct tcf_chain *chain, *chain_prev;
1531 	struct tcf_proto *tp, *tp_prev;
1532 	int err;
1533 
1534 	lockdep_assert_held(&block->cb_lock);
1535 
1536 	for (chain = __tcf_get_next_chain(block, NULL);
1537 	     chain;
1538 	     chain_prev = chain,
1539 		     chain = __tcf_get_next_chain(block, chain),
1540 		     tcf_chain_put(chain_prev)) {
1541 		for (tp = __tcf_get_next_proto(chain, NULL); tp;
1542 		     tp_prev = tp,
1543 			     tp = __tcf_get_next_proto(chain, tp),
1544 			     tcf_proto_put(tp_prev, true, NULL)) {
1545 			if (tp->ops->reoffload) {
1546 				err = tp->ops->reoffload(tp, add, cb, cb_priv,
1547 							 extack);
1548 				if (err && add)
1549 					goto err_playback_remove;
1550 			} else if (add && offload_in_use) {
1551 				err = -EOPNOTSUPP;
1552 				NL_SET_ERR_MSG(extack, "Filter HW offload failed - classifier without re-offloading support");
1553 				goto err_playback_remove;
1554 			}
1555 		}
1556 	}
1557 
1558 	return 0;
1559 
1560 err_playback_remove:
1561 	tcf_proto_put(tp, true, NULL);
1562 	tcf_chain_put(chain);
1563 	tcf_block_playback_offloads(block, cb, cb_priv, false, offload_in_use,
1564 				    extack);
1565 	return err;
1566 }
1567 
1568 static int tcf_block_bind(struct tcf_block *block,
1569 			  struct flow_block_offload *bo)
1570 {
1571 	struct flow_block_cb *block_cb, *next;
1572 	int err, i = 0;
1573 
1574 	lockdep_assert_held(&block->cb_lock);
1575 
1576 	list_for_each_entry(block_cb, &bo->cb_list, list) {
1577 		err = tcf_block_playback_offloads(block, block_cb->cb,
1578 						  block_cb->cb_priv, true,
1579 						  tcf_block_offload_in_use(block),
1580 						  bo->extack);
1581 		if (err)
1582 			goto err_unroll;
1583 		if (!bo->unlocked_driver_cb)
1584 			block->lockeddevcnt++;
1585 
1586 		i++;
1587 	}
1588 	list_splice(&bo->cb_list, &block->flow_block.cb_list);
1589 
1590 	return 0;
1591 
1592 err_unroll:
1593 	list_for_each_entry_safe(block_cb, next, &bo->cb_list, list) {
1594 		list_del(&block_cb->driver_list);
1595 		if (i-- > 0) {
1596 			list_del(&block_cb->list);
1597 			tcf_block_playback_offloads(block, block_cb->cb,
1598 						    block_cb->cb_priv, false,
1599 						    tcf_block_offload_in_use(block),
1600 						    NULL);
1601 			if (!bo->unlocked_driver_cb)
1602 				block->lockeddevcnt--;
1603 		}
1604 		flow_block_cb_free(block_cb);
1605 	}
1606 
1607 	return err;
1608 }
1609 
1610 static void tcf_block_unbind(struct tcf_block *block,
1611 			     struct flow_block_offload *bo)
1612 {
1613 	struct flow_block_cb *block_cb, *next;
1614 
1615 	lockdep_assert_held(&block->cb_lock);
1616 
1617 	list_for_each_entry_safe(block_cb, next, &bo->cb_list, list) {
1618 		tcf_block_playback_offloads(block, block_cb->cb,
1619 					    block_cb->cb_priv, false,
1620 					    tcf_block_offload_in_use(block),
1621 					    NULL);
1622 		list_del(&block_cb->list);
1623 		flow_block_cb_free(block_cb);
1624 		if (!bo->unlocked_driver_cb)
1625 			block->lockeddevcnt--;
1626 	}
1627 }
1628 
1629 static int tcf_block_setup(struct tcf_block *block,
1630 			   struct flow_block_offload *bo)
1631 {
1632 	int err;
1633 
1634 	switch (bo->command) {
1635 	case FLOW_BLOCK_BIND:
1636 		err = tcf_block_bind(block, bo);
1637 		break;
1638 	case FLOW_BLOCK_UNBIND:
1639 		err = 0;
1640 		tcf_block_unbind(block, bo);
1641 		break;
1642 	default:
1643 		WARN_ON_ONCE(1);
1644 		err = -EOPNOTSUPP;
1645 	}
1646 
1647 	return err;
1648 }
1649 
1650 /* Main classifier routine: scans classifier chain attached
1651  * to this qdisc, (optionally) tests for protocol and asks
1652  * specific classifiers.
1653  */
1654 static inline int __tcf_classify(struct sk_buff *skb,
1655 				 const struct tcf_proto *tp,
1656 				 const struct tcf_proto *orig_tp,
1657 				 struct tcf_result *res,
1658 				 bool compat_mode,
1659 				 struct tcf_exts_miss_cookie_node *n,
1660 				 int act_index,
1661 				 u32 *last_executed_chain)
1662 {
1663 #ifdef CONFIG_NET_CLS_ACT
1664 	const int max_reclassify_loop = 16;
1665 	const struct tcf_proto *first_tp;
1666 	int limit = 0;
1667 
1668 reclassify:
1669 #endif
1670 	for (; tp; tp = rcu_dereference_bh(tp->next)) {
1671 		__be16 protocol = skb_protocol(skb, false);
1672 		int err = 0;
1673 
1674 		if (n) {
1675 			struct tcf_exts *exts;
1676 
1677 			if (n->tp_prio != tp->prio)
1678 				continue;
1679 
1680 			/* We re-lookup the tp and chain based on index instead
1681 			 * of having hard refs and locks to them, so do a sanity
1682 			 * check if any of tp,chain,exts was replaced by the
1683 			 * time we got here with a cookie from hardware.
1684 			 */
1685 			if (unlikely(n->tp != tp || n->tp->chain != n->chain ||
1686 				     !tp->ops->get_exts)) {
1687 				tcf_set_drop_reason(skb,
1688 						    SKB_DROP_REASON_TC_COOKIE_ERROR);
1689 				return TC_ACT_SHOT;
1690 			}
1691 
1692 			exts = tp->ops->get_exts(tp, n->handle);
1693 			if (unlikely(!exts || n->exts != exts)) {
1694 				tcf_set_drop_reason(skb,
1695 						    SKB_DROP_REASON_TC_COOKIE_ERROR);
1696 				return TC_ACT_SHOT;
1697 			}
1698 
1699 			n = NULL;
1700 			err = tcf_exts_exec_ex(skb, exts, act_index, res);
1701 		} else {
1702 			if (tp->protocol != protocol &&
1703 			    tp->protocol != htons(ETH_P_ALL))
1704 				continue;
1705 
1706 			err = tc_classify(skb, tp, res);
1707 		}
1708 #ifdef CONFIG_NET_CLS_ACT
1709 		if (unlikely(err == TC_ACT_RECLASSIFY && !compat_mode)) {
1710 			first_tp = orig_tp;
1711 			*last_executed_chain = first_tp->chain->index;
1712 			goto reset;
1713 		} else if (unlikely(TC_ACT_EXT_CMP(err, TC_ACT_GOTO_CHAIN))) {
1714 			first_tp = res->goto_tp;
1715 			*last_executed_chain = err & TC_ACT_EXT_VAL_MASK;
1716 			goto reset;
1717 		}
1718 #endif
1719 		if (err >= 0)
1720 			return err;
1721 	}
1722 
1723 	if (unlikely(n)) {
1724 		tcf_set_drop_reason(skb,
1725 				    SKB_DROP_REASON_TC_COOKIE_ERROR);
1726 		return TC_ACT_SHOT;
1727 	}
1728 
1729 	return TC_ACT_UNSPEC; /* signal: continue lookup */
1730 #ifdef CONFIG_NET_CLS_ACT
1731 reset:
1732 	if (unlikely(limit++ >= max_reclassify_loop)) {
1733 		net_notice_ratelimited("%u: reclassify loop, rule prio %u, protocol %02x\n",
1734 				       tp->chain->block->index,
1735 				       tp->prio & 0xffff,
1736 				       ntohs(tp->protocol));
1737 		tcf_set_drop_reason(skb,
1738 				    SKB_DROP_REASON_TC_RECLASSIFY_LOOP);
1739 		return TC_ACT_SHOT;
1740 	}
1741 
1742 	tp = first_tp;
1743 	goto reclassify;
1744 #endif
1745 }
1746 
1747 int tcf_classify(struct sk_buff *skb,
1748 		 const struct tcf_block *block,
1749 		 const struct tcf_proto *tp,
1750 		 struct tcf_result *res, bool compat_mode)
1751 {
1752 #if !IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
1753 	u32 last_executed_chain = 0;
1754 
1755 	return __tcf_classify(skb, tp, tp, res, compat_mode, NULL, 0,
1756 			      &last_executed_chain);
1757 #else
1758 	u32 last_executed_chain = tp ? tp->chain->index : 0;
1759 	struct tcf_exts_miss_cookie_node *n = NULL;
1760 	const struct tcf_proto *orig_tp = tp;
1761 	struct tc_skb_ext *ext;
1762 	int act_index = 0;
1763 	int ret;
1764 
1765 	if (block) {
1766 		ext = skb_ext_find(skb, TC_SKB_EXT);
1767 
1768 		if (ext && (ext->chain || ext->act_miss)) {
1769 			struct tcf_chain *fchain;
1770 			u32 chain;
1771 
1772 			if (ext->act_miss) {
1773 				n = tcf_exts_miss_cookie_lookup(ext->act_miss_cookie,
1774 								&act_index);
1775 				if (!n) {
1776 					tcf_set_drop_reason(skb,
1777 							    SKB_DROP_REASON_TC_COOKIE_ERROR);
1778 					return TC_ACT_SHOT;
1779 				}
1780 
1781 				chain = n->chain_index;
1782 			} else {
1783 				chain = ext->chain;
1784 			}
1785 
1786 			fchain = tcf_chain_lookup_rcu(block, chain);
1787 			if (!fchain) {
1788 				tcf_set_drop_reason(skb,
1789 						    SKB_DROP_REASON_TC_CHAIN_NOTFOUND);
1790 
1791 				return TC_ACT_SHOT;
1792 			}
1793 
1794 			/* Consume, so cloned/redirect skbs won't inherit ext */
1795 			skb_ext_del(skb, TC_SKB_EXT);
1796 
1797 			tp = rcu_dereference_bh(fchain->filter_chain);
1798 			last_executed_chain = fchain->index;
1799 		}
1800 	}
1801 
1802 	ret = __tcf_classify(skb, tp, orig_tp, res, compat_mode, n, act_index,
1803 			     &last_executed_chain);
1804 
1805 	if (tc_skb_ext_tc_enabled()) {
1806 		/* If we missed on some chain */
1807 		if (ret == TC_ACT_UNSPEC && last_executed_chain) {
1808 			struct tc_skb_cb *cb = tc_skb_cb(skb);
1809 
1810 			ext = tc_skb_ext_alloc(skb);
1811 			if (WARN_ON_ONCE(!ext)) {
1812 				tcf_set_drop_reason(skb, SKB_DROP_REASON_NOMEM);
1813 				return TC_ACT_SHOT;
1814 			}
1815 			ext->chain = last_executed_chain;
1816 			ext->mru = cb->mru;
1817 			ext->post_ct = cb->post_ct;
1818 			ext->post_ct_snat = cb->post_ct_snat;
1819 			ext->post_ct_dnat = cb->post_ct_dnat;
1820 			ext->zone = cb->zone;
1821 		}
1822 	}
1823 
1824 	return ret;
1825 #endif
1826 }
1827 EXPORT_SYMBOL(tcf_classify);
1828 
1829 struct tcf_chain_info {
1830 	struct tcf_proto __rcu **pprev;
1831 	struct tcf_proto __rcu *next;
1832 };
1833 
1834 static struct tcf_proto *tcf_chain_tp_prev(struct tcf_chain *chain,
1835 					   struct tcf_chain_info *chain_info)
1836 {
1837 	return tcf_chain_dereference(*chain_info->pprev, chain);
1838 }
1839 
1840 static int tcf_chain_tp_insert(struct tcf_chain *chain,
1841 			       struct tcf_chain_info *chain_info,
1842 			       struct tcf_proto *tp)
1843 {
1844 	if (chain->flushing)
1845 		return -EAGAIN;
1846 
1847 	RCU_INIT_POINTER(tp->next, tcf_chain_tp_prev(chain, chain_info));
1848 	if (*chain_info->pprev == chain->filter_chain)
1849 		tcf_chain0_head_change(chain, tp);
1850 	tcf_proto_get(tp);
1851 	rcu_assign_pointer(*chain_info->pprev, tp);
1852 
1853 	return 0;
1854 }
1855 
1856 static void tcf_chain_tp_remove(struct tcf_chain *chain,
1857 				struct tcf_chain_info *chain_info,
1858 				struct tcf_proto *tp)
1859 {
1860 	struct tcf_proto *next = tcf_chain_dereference(chain_info->next, chain);
1861 
1862 	tcf_proto_mark_delete(tp);
1863 	if (tp == chain->filter_chain)
1864 		tcf_chain0_head_change(chain, next);
1865 	RCU_INIT_POINTER(*chain_info->pprev, next);
1866 }
1867 
1868 static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain,
1869 					   struct tcf_chain_info *chain_info,
1870 					   u32 protocol, u32 prio,
1871 					   bool prio_allocate);
1872 
1873 /* Try to insert new proto.
1874  * If proto with specified priority already exists, free new proto
1875  * and return existing one.
1876  */
1877 
1878 static struct tcf_proto *tcf_chain_tp_insert_unique(struct tcf_chain *chain,
1879 						    struct tcf_proto *tp_new,
1880 						    u32 protocol, u32 prio,
1881 						    bool rtnl_held)
1882 {
1883 	struct tcf_chain_info chain_info;
1884 	struct tcf_proto *tp;
1885 	int err = 0;
1886 
1887 	mutex_lock(&chain->filter_chain_lock);
1888 
1889 	if (tcf_proto_exists_destroying(chain, tp_new)) {
1890 		mutex_unlock(&chain->filter_chain_lock);
1891 		tcf_proto_destroy(tp_new, rtnl_held, false, NULL);
1892 		return ERR_PTR(-EAGAIN);
1893 	}
1894 
1895 	tp = tcf_chain_tp_find(chain, &chain_info,
1896 			       protocol, prio, false);
1897 	if (!tp)
1898 		err = tcf_chain_tp_insert(chain, &chain_info, tp_new);
1899 	mutex_unlock(&chain->filter_chain_lock);
1900 
1901 	if (tp) {
1902 		tcf_proto_destroy(tp_new, rtnl_held, false, NULL);
1903 		tp_new = tp;
1904 	} else if (err) {
1905 		tcf_proto_destroy(tp_new, rtnl_held, false, NULL);
1906 		tp_new = ERR_PTR(err);
1907 	}
1908 
1909 	return tp_new;
1910 }
1911 
1912 static void tcf_chain_tp_delete_empty(struct tcf_chain *chain,
1913 				      struct tcf_proto *tp, bool rtnl_held,
1914 				      struct netlink_ext_ack *extack)
1915 {
1916 	struct tcf_chain_info chain_info;
1917 	struct tcf_proto *tp_iter;
1918 	struct tcf_proto **pprev;
1919 	struct tcf_proto *next;
1920 
1921 	mutex_lock(&chain->filter_chain_lock);
1922 
1923 	/* Atomically find and remove tp from chain. */
1924 	for (pprev = &chain->filter_chain;
1925 	     (tp_iter = tcf_chain_dereference(*pprev, chain));
1926 	     pprev = &tp_iter->next) {
1927 		if (tp_iter == tp) {
1928 			chain_info.pprev = pprev;
1929 			chain_info.next = tp_iter->next;
1930 			WARN_ON(tp_iter->deleting);
1931 			break;
1932 		}
1933 	}
1934 	/* Verify that tp still exists and no new filters were inserted
1935 	 * concurrently.
1936 	 * Mark tp for deletion if it is empty.
1937 	 */
1938 	if (!tp_iter || !tcf_proto_check_delete(tp)) {
1939 		mutex_unlock(&chain->filter_chain_lock);
1940 		return;
1941 	}
1942 
1943 	tcf_proto_signal_destroying(chain, tp);
1944 	next = tcf_chain_dereference(chain_info.next, chain);
1945 	if (tp == chain->filter_chain)
1946 		tcf_chain0_head_change(chain, next);
1947 	RCU_INIT_POINTER(*chain_info.pprev, next);
1948 	mutex_unlock(&chain->filter_chain_lock);
1949 
1950 	tcf_proto_put(tp, rtnl_held, extack);
1951 }
1952 
1953 static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain,
1954 					   struct tcf_chain_info *chain_info,
1955 					   u32 protocol, u32 prio,
1956 					   bool prio_allocate)
1957 {
1958 	struct tcf_proto **pprev;
1959 	struct tcf_proto *tp;
1960 
1961 	/* Check the chain for existence of proto-tcf with this priority */
1962 	for (pprev = &chain->filter_chain;
1963 	     (tp = tcf_chain_dereference(*pprev, chain));
1964 	     pprev = &tp->next) {
1965 		if (tp->prio >= prio) {
1966 			if (tp->prio == prio) {
1967 				if (prio_allocate ||
1968 				    (tp->protocol != protocol && protocol))
1969 					return ERR_PTR(-EINVAL);
1970 			} else {
1971 				tp = NULL;
1972 			}
1973 			break;
1974 		}
1975 	}
1976 	chain_info->pprev = pprev;
1977 	if (tp) {
1978 		chain_info->next = tp->next;
1979 		tcf_proto_get(tp);
1980 	} else {
1981 		chain_info->next = NULL;
1982 	}
1983 	return tp;
1984 }
1985 
1986 static int tcf_fill_node(struct net *net, struct sk_buff *skb,
1987 			 struct tcf_proto *tp, struct tcf_block *block,
1988 			 struct Qdisc *q, u32 parent, void *fh,
1989 			 u32 portid, u32 seq, u16 flags, int event,
1990 			 bool terse_dump, bool rtnl_held,
1991 			 struct netlink_ext_ack *extack)
1992 {
1993 	struct tcmsg *tcm;
1994 	struct nlmsghdr  *nlh;
1995 	unsigned char *b = skb_tail_pointer(skb);
1996 
1997 	nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
1998 	if (!nlh)
1999 		goto out_nlmsg_trim;
2000 	tcm = nlmsg_data(nlh);
2001 	tcm->tcm_family = AF_UNSPEC;
2002 	tcm->tcm__pad1 = 0;
2003 	tcm->tcm__pad2 = 0;
2004 	if (q) {
2005 		tcm->tcm_ifindex = qdisc_dev(q)->ifindex;
2006 		tcm->tcm_parent = parent;
2007 	} else {
2008 		tcm->tcm_ifindex = TCM_IFINDEX_MAGIC_BLOCK;
2009 		tcm->tcm_block_index = block->index;
2010 	}
2011 	tcm->tcm_info = TC_H_MAKE(tp->prio, tp->protocol);
2012 	if (nla_put_string(skb, TCA_KIND, tp->ops->kind))
2013 		goto nla_put_failure;
2014 	if (nla_put_u32(skb, TCA_CHAIN, tp->chain->index))
2015 		goto nla_put_failure;
2016 	if (!fh) {
2017 		tcm->tcm_handle = 0;
2018 	} else if (terse_dump) {
2019 		if (tp->ops->terse_dump) {
2020 			if (tp->ops->terse_dump(net, tp, fh, skb, tcm,
2021 						rtnl_held) < 0)
2022 				goto nla_put_failure;
2023 		} else {
2024 			goto cls_op_not_supp;
2025 		}
2026 	} else {
2027 		if (tp->ops->dump &&
2028 		    tp->ops->dump(net, tp, fh, skb, tcm, rtnl_held) < 0)
2029 			goto nla_put_failure;
2030 	}
2031 
2032 	if (extack && extack->_msg &&
2033 	    nla_put_string(skb, TCA_EXT_WARN_MSG, extack->_msg))
2034 		goto nla_put_failure;
2035 
2036 	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
2037 
2038 	return skb->len;
2039 
2040 out_nlmsg_trim:
2041 nla_put_failure:
2042 cls_op_not_supp:
2043 	nlmsg_trim(skb, b);
2044 	return -1;
2045 }
2046 
2047 static int tfilter_notify(struct net *net, struct sk_buff *oskb,
2048 			  struct nlmsghdr *n, struct tcf_proto *tp,
2049 			  struct tcf_block *block, struct Qdisc *q,
2050 			  u32 parent, void *fh, int event, bool unicast,
2051 			  bool rtnl_held, struct netlink_ext_ack *extack)
2052 {
2053 	struct sk_buff *skb;
2054 	u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
2055 	int err = 0;
2056 
2057 	if (!unicast && !rtnl_notify_needed(net, n->nlmsg_flags, RTNLGRP_TC))
2058 		return 0;
2059 
2060 	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2061 	if (!skb)
2062 		return -ENOBUFS;
2063 
2064 	if (tcf_fill_node(net, skb, tp, block, q, parent, fh, portid,
2065 			  n->nlmsg_seq, n->nlmsg_flags, event,
2066 			  false, rtnl_held, extack) <= 0) {
2067 		kfree_skb(skb);
2068 		return -EINVAL;
2069 	}
2070 
2071 	if (unicast)
2072 		err = rtnl_unicast(skb, net, portid);
2073 	else
2074 		err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
2075 				     n->nlmsg_flags & NLM_F_ECHO);
2076 	return err;
2077 }
2078 
2079 static int tfilter_del_notify(struct net *net, struct sk_buff *oskb,
2080 			      struct nlmsghdr *n, struct tcf_proto *tp,
2081 			      struct tcf_block *block, struct Qdisc *q,
2082 			      u32 parent, void *fh, bool *last, bool rtnl_held,
2083 			      struct netlink_ext_ack *extack)
2084 {
2085 	struct sk_buff *skb;
2086 	u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
2087 	int err;
2088 
2089 	if (!rtnl_notify_needed(net, n->nlmsg_flags, RTNLGRP_TC))
2090 		return tp->ops->delete(tp, fh, last, rtnl_held, extack);
2091 
2092 	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2093 	if (!skb)
2094 		return -ENOBUFS;
2095 
2096 	if (tcf_fill_node(net, skb, tp, block, q, parent, fh, portid,
2097 			  n->nlmsg_seq, n->nlmsg_flags, RTM_DELTFILTER,
2098 			  false, rtnl_held, extack) <= 0) {
2099 		NL_SET_ERR_MSG(extack, "Failed to build del event notification");
2100 		kfree_skb(skb);
2101 		return -EINVAL;
2102 	}
2103 
2104 	err = tp->ops->delete(tp, fh, last, rtnl_held, extack);
2105 	if (err) {
2106 		kfree_skb(skb);
2107 		return err;
2108 	}
2109 
2110 	err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
2111 			     n->nlmsg_flags & NLM_F_ECHO);
2112 	if (err < 0)
2113 		NL_SET_ERR_MSG(extack, "Failed to send filter delete notification");
2114 
2115 	return err;
2116 }
2117 
2118 static void tfilter_notify_chain(struct net *net, struct sk_buff *oskb,
2119 				 struct tcf_block *block, struct Qdisc *q,
2120 				 u32 parent, struct nlmsghdr *n,
2121 				 struct tcf_chain *chain, int event,
2122 				 struct netlink_ext_ack *extack)
2123 {
2124 	struct tcf_proto *tp;
2125 
2126 	for (tp = tcf_get_next_proto(chain, NULL);
2127 	     tp; tp = tcf_get_next_proto(chain, tp))
2128 		tfilter_notify(net, oskb, n, tp, block, q, parent, NULL,
2129 			       event, false, true, extack);
2130 }
2131 
2132 static void tfilter_put(struct tcf_proto *tp, void *fh)
2133 {
2134 	if (tp->ops->put && fh)
2135 		tp->ops->put(tp, fh);
2136 }
2137 
2138 static bool is_qdisc_ingress(__u32 classid)
2139 {
2140 	return (TC_H_MIN(classid) == TC_H_MIN(TC_H_MIN_INGRESS));
2141 }
2142 
2143 static int tc_new_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
2144 			  struct netlink_ext_ack *extack)
2145 {
2146 	struct net *net = sock_net(skb->sk);
2147 	struct nlattr *tca[TCA_MAX + 1];
2148 	char name[IFNAMSIZ];
2149 	struct tcmsg *t;
2150 	u32 protocol;
2151 	u32 prio;
2152 	bool prio_allocate;
2153 	u32 parent;
2154 	u32 chain_index;
2155 	struct Qdisc *q;
2156 	struct tcf_chain_info chain_info;
2157 	struct tcf_chain *chain;
2158 	struct tcf_block *block;
2159 	struct tcf_proto *tp;
2160 	unsigned long cl;
2161 	void *fh;
2162 	int err;
2163 	int tp_created;
2164 	bool rtnl_held = false;
2165 	u32 flags;
2166 
2167 replay:
2168 	tp_created = 0;
2169 
2170 	err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
2171 				     rtm_tca_policy, extack);
2172 	if (err < 0)
2173 		return err;
2174 
2175 	t = nlmsg_data(n);
2176 	protocol = TC_H_MIN(t->tcm_info);
2177 	prio = TC_H_MAJ(t->tcm_info);
2178 	prio_allocate = false;
2179 	parent = t->tcm_parent;
2180 	tp = NULL;
2181 	cl = 0;
2182 	block = NULL;
2183 	q = NULL;
2184 	chain = NULL;
2185 	flags = 0;
2186 
2187 	if (prio == 0) {
2188 		/* If no priority is provided by the user,
2189 		 * we allocate one.
2190 		 */
2191 		if (n->nlmsg_flags & NLM_F_CREATE) {
2192 			prio = TC_H_MAKE(0x80000000U, 0U);
2193 			prio_allocate = true;
2194 		} else {
2195 			NL_SET_ERR_MSG(extack, "Invalid filter command with priority of zero");
2196 			return -ENOENT;
2197 		}
2198 	}
2199 
2200 	/* Find head of filter chain. */
2201 
2202 	err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack);
2203 	if (err)
2204 		return err;
2205 
2206 	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 	}
2211 
2212 	/* Take rtnl mutex if rtnl_held was set to true on previous iteration,
2213 	 * block is shared (no qdisc found), qdisc is not unlocked, classifier
2214 	 * type is not specified, classifier is not unlocked.
2215 	 */
2216 	if (rtnl_held ||
2217 	    (q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) ||
2218 	    !tcf_proto_is_unlocked(name)) {
2219 		rtnl_held = true;
2220 		rtnl_lock();
2221 	}
2222 
2223 	err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack);
2224 	if (err)
2225 		goto errout;
2226 
2227 	block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index,
2228 				 extack);
2229 	if (IS_ERR(block)) {
2230 		err = PTR_ERR(block);
2231 		goto errout;
2232 	}
2233 	block->classid = parent;
2234 
2235 	chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2236 	if (chain_index > TC_ACT_EXT_VAL_MASK) {
2237 		NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
2238 		err = -EINVAL;
2239 		goto errout;
2240 	}
2241 	chain = tcf_chain_get(block, chain_index, true);
2242 	if (!chain) {
2243 		NL_SET_ERR_MSG(extack, "Cannot create specified filter chain");
2244 		err = -ENOMEM;
2245 		goto errout;
2246 	}
2247 
2248 	mutex_lock(&chain->filter_chain_lock);
2249 	tp = tcf_chain_tp_find(chain, &chain_info, protocol,
2250 			       prio, prio_allocate);
2251 	if (IS_ERR(tp)) {
2252 		NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found");
2253 		err = PTR_ERR(tp);
2254 		goto errout_locked;
2255 	}
2256 
2257 	if (tp == NULL) {
2258 		struct tcf_proto *tp_new = NULL;
2259 
2260 		if (chain->flushing) {
2261 			err = -EAGAIN;
2262 			goto errout_locked;
2263 		}
2264 
2265 		/* Proto-tcf does not exist, create new one */
2266 
2267 		if (tca[TCA_KIND] == NULL || !protocol) {
2268 			NL_SET_ERR_MSG(extack, "Filter kind and protocol must be specified");
2269 			err = -EINVAL;
2270 			goto errout_locked;
2271 		}
2272 
2273 		if (!(n->nlmsg_flags & NLM_F_CREATE)) {
2274 			NL_SET_ERR_MSG(extack, "Need both RTM_NEWTFILTER and NLM_F_CREATE to create a new filter");
2275 			err = -ENOENT;
2276 			goto errout_locked;
2277 		}
2278 
2279 		if (prio_allocate)
2280 			prio = tcf_auto_prio(tcf_chain_tp_prev(chain,
2281 							       &chain_info));
2282 
2283 		mutex_unlock(&chain->filter_chain_lock);
2284 		tp_new = tcf_proto_create(name, protocol, prio, chain,
2285 					  rtnl_held, extack);
2286 		if (IS_ERR(tp_new)) {
2287 			err = PTR_ERR(tp_new);
2288 			goto errout_tp;
2289 		}
2290 
2291 		tp_created = 1;
2292 		tp = tcf_chain_tp_insert_unique(chain, tp_new, protocol, prio,
2293 						rtnl_held);
2294 		if (IS_ERR(tp)) {
2295 			err = PTR_ERR(tp);
2296 			goto errout_tp;
2297 		}
2298 	} else {
2299 		mutex_unlock(&chain->filter_chain_lock);
2300 	}
2301 
2302 	if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
2303 		NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one");
2304 		err = -EINVAL;
2305 		goto errout;
2306 	}
2307 
2308 	fh = tp->ops->get(tp, t->tcm_handle);
2309 
2310 	if (!fh) {
2311 		if (!(n->nlmsg_flags & NLM_F_CREATE)) {
2312 			NL_SET_ERR_MSG(extack, "Need both RTM_NEWTFILTER and NLM_F_CREATE to create a new filter");
2313 			err = -ENOENT;
2314 			goto errout;
2315 		}
2316 	} else if (n->nlmsg_flags & NLM_F_EXCL) {
2317 		tfilter_put(tp, fh);
2318 		NL_SET_ERR_MSG(extack, "Filter already exists");
2319 		err = -EEXIST;
2320 		goto errout;
2321 	}
2322 
2323 	if (chain->tmplt_ops && chain->tmplt_ops != tp->ops) {
2324 		tfilter_put(tp, fh);
2325 		NL_SET_ERR_MSG(extack, "Chain template is set to a different filter kind");
2326 		err = -EINVAL;
2327 		goto errout;
2328 	}
2329 
2330 	if (!(n->nlmsg_flags & NLM_F_CREATE))
2331 		flags |= TCA_ACT_FLAGS_REPLACE;
2332 	if (!rtnl_held)
2333 		flags |= TCA_ACT_FLAGS_NO_RTNL;
2334 	if (is_qdisc_ingress(parent))
2335 		flags |= TCA_ACT_FLAGS_AT_INGRESS;
2336 	err = tp->ops->change(net, skb, tp, cl, t->tcm_handle, tca, &fh,
2337 			      flags, extack);
2338 	if (err == 0) {
2339 		tfilter_notify(net, skb, n, tp, block, q, parent, fh,
2340 			       RTM_NEWTFILTER, false, rtnl_held, extack);
2341 		tfilter_put(tp, fh);
2342 		/* q pointer is NULL for shared blocks */
2343 		if (q)
2344 			q->flags &= ~TCQ_F_CAN_BYPASS;
2345 	}
2346 
2347 errout:
2348 	if (err && tp_created)
2349 		tcf_chain_tp_delete_empty(chain, tp, rtnl_held, NULL);
2350 errout_tp:
2351 	if (chain) {
2352 		if (tp && !IS_ERR(tp))
2353 			tcf_proto_put(tp, rtnl_held, NULL);
2354 		if (!tp_created)
2355 			tcf_chain_put(chain);
2356 	}
2357 	tcf_block_release(q, block, rtnl_held);
2358 
2359 	if (rtnl_held)
2360 		rtnl_unlock();
2361 
2362 	if (err == -EAGAIN) {
2363 		/* Take rtnl lock in case EAGAIN is caused by concurrent flush
2364 		 * of target chain.
2365 		 */
2366 		rtnl_held = true;
2367 		/* Replay the request. */
2368 		goto replay;
2369 	}
2370 	return err;
2371 
2372 errout_locked:
2373 	mutex_unlock(&chain->filter_chain_lock);
2374 	goto errout;
2375 }
2376 
2377 static int tc_del_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
2378 			  struct netlink_ext_ack *extack)
2379 {
2380 	struct net *net = sock_net(skb->sk);
2381 	struct nlattr *tca[TCA_MAX + 1];
2382 	char name[IFNAMSIZ];
2383 	struct tcmsg *t;
2384 	u32 protocol;
2385 	u32 prio;
2386 	u32 parent;
2387 	u32 chain_index;
2388 	struct Qdisc *q = NULL;
2389 	struct tcf_chain_info chain_info;
2390 	struct tcf_chain *chain = NULL;
2391 	struct tcf_block *block = NULL;
2392 	struct tcf_proto *tp = NULL;
2393 	unsigned long cl = 0;
2394 	void *fh = NULL;
2395 	int err;
2396 	bool rtnl_held = false;
2397 
2398 	err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
2399 				     rtm_tca_policy, extack);
2400 	if (err < 0)
2401 		return err;
2402 
2403 	t = nlmsg_data(n);
2404 	protocol = TC_H_MIN(t->tcm_info);
2405 	prio = TC_H_MAJ(t->tcm_info);
2406 	parent = t->tcm_parent;
2407 
2408 	if (prio == 0 && (protocol || t->tcm_handle || tca[TCA_KIND])) {
2409 		NL_SET_ERR_MSG(extack, "Cannot flush filters with protocol, handle or kind set");
2410 		return -ENOENT;
2411 	}
2412 
2413 	/* Find head of filter chain. */
2414 
2415 	err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack);
2416 	if (err)
2417 		return err;
2418 
2419 	if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2420 		NL_SET_ERR_MSG(extack, "Specified TC filter name too long");
2421 		err = -EINVAL;
2422 		goto errout;
2423 	}
2424 	/* Take rtnl mutex if flushing whole chain, block is shared (no qdisc
2425 	 * found), qdisc is not unlocked, classifier type is not specified,
2426 	 * classifier is not unlocked.
2427 	 */
2428 	if (!prio ||
2429 	    (q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) ||
2430 	    !tcf_proto_is_unlocked(name)) {
2431 		rtnl_held = true;
2432 		rtnl_lock();
2433 	}
2434 
2435 	err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack);
2436 	if (err)
2437 		goto errout;
2438 
2439 	block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index,
2440 				 extack);
2441 	if (IS_ERR(block)) {
2442 		err = PTR_ERR(block);
2443 		goto errout;
2444 	}
2445 
2446 	chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2447 	if (chain_index > TC_ACT_EXT_VAL_MASK) {
2448 		NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
2449 		err = -EINVAL;
2450 		goto errout;
2451 	}
2452 	chain = tcf_chain_get(block, chain_index, false);
2453 	if (!chain) {
2454 		/* User requested flush on non-existent chain. Nothing to do,
2455 		 * so just return success.
2456 		 */
2457 		if (prio == 0) {
2458 			err = 0;
2459 			goto errout;
2460 		}
2461 		NL_SET_ERR_MSG(extack, "Cannot find specified filter chain");
2462 		err = -ENOENT;
2463 		goto errout;
2464 	}
2465 
2466 	if (prio == 0) {
2467 		tfilter_notify_chain(net, skb, block, q, parent, n,
2468 				     chain, RTM_DELTFILTER, extack);
2469 		tcf_chain_flush(chain, rtnl_held);
2470 		err = 0;
2471 		goto errout;
2472 	}
2473 
2474 	mutex_lock(&chain->filter_chain_lock);
2475 	tp = tcf_chain_tp_find(chain, &chain_info, protocol,
2476 			       prio, false);
2477 	if (!tp || IS_ERR(tp)) {
2478 		NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found");
2479 		err = tp ? PTR_ERR(tp) : -ENOENT;
2480 		goto errout_locked;
2481 	} else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
2482 		NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one");
2483 		err = -EINVAL;
2484 		goto errout_locked;
2485 	} else if (t->tcm_handle == 0) {
2486 		tcf_proto_signal_destroying(chain, tp);
2487 		tcf_chain_tp_remove(chain, &chain_info, tp);
2488 		mutex_unlock(&chain->filter_chain_lock);
2489 
2490 		tcf_proto_put(tp, rtnl_held, NULL);
2491 		tfilter_notify(net, skb, n, tp, block, q, parent, fh,
2492 			       RTM_DELTFILTER, false, rtnl_held, extack);
2493 		err = 0;
2494 		goto errout;
2495 	}
2496 	mutex_unlock(&chain->filter_chain_lock);
2497 
2498 	fh = tp->ops->get(tp, t->tcm_handle);
2499 
2500 	if (!fh) {
2501 		NL_SET_ERR_MSG(extack, "Specified filter handle not found");
2502 		err = -ENOENT;
2503 	} else {
2504 		bool last;
2505 
2506 		err = tfilter_del_notify(net, skb, n, tp, block, q, parent, fh,
2507 					 &last, rtnl_held, extack);
2508 
2509 		if (err)
2510 			goto errout;
2511 		if (last)
2512 			tcf_chain_tp_delete_empty(chain, tp, rtnl_held, extack);
2513 	}
2514 
2515 errout:
2516 	if (chain) {
2517 		if (tp && !IS_ERR(tp))
2518 			tcf_proto_put(tp, rtnl_held, NULL);
2519 		tcf_chain_put(chain);
2520 	}
2521 	tcf_block_release(q, block, rtnl_held);
2522 
2523 	if (rtnl_held)
2524 		rtnl_unlock();
2525 
2526 	return err;
2527 
2528 errout_locked:
2529 	mutex_unlock(&chain->filter_chain_lock);
2530 	goto errout;
2531 }
2532 
2533 static int tc_get_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
2534 			  struct netlink_ext_ack *extack)
2535 {
2536 	struct net *net = sock_net(skb->sk);
2537 	struct nlattr *tca[TCA_MAX + 1];
2538 	char name[IFNAMSIZ];
2539 	struct tcmsg *t;
2540 	u32 protocol;
2541 	u32 prio;
2542 	u32 parent;
2543 	u32 chain_index;
2544 	struct Qdisc *q = NULL;
2545 	struct tcf_chain_info chain_info;
2546 	struct tcf_chain *chain = NULL;
2547 	struct tcf_block *block = NULL;
2548 	struct tcf_proto *tp = NULL;
2549 	unsigned long cl = 0;
2550 	void *fh = NULL;
2551 	int err;
2552 	bool rtnl_held = false;
2553 
2554 	err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
2555 				     rtm_tca_policy, extack);
2556 	if (err < 0)
2557 		return err;
2558 
2559 	t = nlmsg_data(n);
2560 	protocol = TC_H_MIN(t->tcm_info);
2561 	prio = TC_H_MAJ(t->tcm_info);
2562 	parent = t->tcm_parent;
2563 
2564 	if (prio == 0) {
2565 		NL_SET_ERR_MSG(extack, "Invalid filter command with priority of zero");
2566 		return -ENOENT;
2567 	}
2568 
2569 	/* Find head of filter chain. */
2570 
2571 	err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack);
2572 	if (err)
2573 		return err;
2574 
2575 	if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2576 		NL_SET_ERR_MSG(extack, "Specified TC filter name too long");
2577 		err = -EINVAL;
2578 		goto errout;
2579 	}
2580 	/* Take rtnl mutex if block is shared (no qdisc found), qdisc is not
2581 	 * unlocked, classifier type is not specified, classifier is not
2582 	 * unlocked.
2583 	 */
2584 	if ((q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) ||
2585 	    !tcf_proto_is_unlocked(name)) {
2586 		rtnl_held = true;
2587 		rtnl_lock();
2588 	}
2589 
2590 	err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack);
2591 	if (err)
2592 		goto errout;
2593 
2594 	block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index,
2595 				 extack);
2596 	if (IS_ERR(block)) {
2597 		err = PTR_ERR(block);
2598 		goto errout;
2599 	}
2600 
2601 	chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
2602 	if (chain_index > TC_ACT_EXT_VAL_MASK) {
2603 		NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
2604 		err = -EINVAL;
2605 		goto errout;
2606 	}
2607 	chain = tcf_chain_get(block, chain_index, false);
2608 	if (!chain) {
2609 		NL_SET_ERR_MSG(extack, "Cannot find specified filter chain");
2610 		err = -EINVAL;
2611 		goto errout;
2612 	}
2613 
2614 	mutex_lock(&chain->filter_chain_lock);
2615 	tp = tcf_chain_tp_find(chain, &chain_info, protocol,
2616 			       prio, false);
2617 	mutex_unlock(&chain->filter_chain_lock);
2618 	if (!tp || IS_ERR(tp)) {
2619 		NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found");
2620 		err = tp ? PTR_ERR(tp) : -ENOENT;
2621 		goto errout;
2622 	} else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
2623 		NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one");
2624 		err = -EINVAL;
2625 		goto errout;
2626 	}
2627 
2628 	fh = tp->ops->get(tp, t->tcm_handle);
2629 
2630 	if (!fh) {
2631 		NL_SET_ERR_MSG(extack, "Specified filter handle not found");
2632 		err = -ENOENT;
2633 	} else {
2634 		err = tfilter_notify(net, skb, n, tp, block, q, parent,
2635 				     fh, RTM_NEWTFILTER, true, rtnl_held, NULL);
2636 		if (err < 0)
2637 			NL_SET_ERR_MSG(extack, "Failed to send filter notify message");
2638 	}
2639 
2640 	tfilter_put(tp, fh);
2641 errout:
2642 	if (chain) {
2643 		if (tp && !IS_ERR(tp))
2644 			tcf_proto_put(tp, rtnl_held, NULL);
2645 		tcf_chain_put(chain);
2646 	}
2647 	tcf_block_release(q, block, rtnl_held);
2648 
2649 	if (rtnl_held)
2650 		rtnl_unlock();
2651 
2652 	return err;
2653 }
2654 
2655 struct tcf_dump_args {
2656 	struct tcf_walker w;
2657 	struct sk_buff *skb;
2658 	struct netlink_callback *cb;
2659 	struct tcf_block *block;
2660 	struct Qdisc *q;
2661 	u32 parent;
2662 	bool terse_dump;
2663 };
2664 
2665 static int tcf_node_dump(struct tcf_proto *tp, void *n, struct tcf_walker *arg)
2666 {
2667 	struct tcf_dump_args *a = (void *)arg;
2668 	struct net *net = sock_net(a->skb->sk);
2669 
2670 	return tcf_fill_node(net, a->skb, tp, a->block, a->q, a->parent,
2671 			     n, NETLINK_CB(a->cb->skb).portid,
2672 			     a->cb->nlh->nlmsg_seq, NLM_F_MULTI,
2673 			     RTM_NEWTFILTER, a->terse_dump, true, NULL);
2674 }
2675 
2676 static bool tcf_chain_dump(struct tcf_chain *chain, struct Qdisc *q, u32 parent,
2677 			   struct sk_buff *skb, struct netlink_callback *cb,
2678 			   long index_start, long *p_index, bool terse)
2679 {
2680 	struct net *net = sock_net(skb->sk);
2681 	struct tcf_block *block = chain->block;
2682 	struct tcmsg *tcm = nlmsg_data(cb->nlh);
2683 	struct tcf_proto *tp, *tp_prev;
2684 	struct tcf_dump_args arg;
2685 
2686 	for (tp = __tcf_get_next_proto(chain, NULL);
2687 	     tp;
2688 	     tp_prev = tp,
2689 		     tp = __tcf_get_next_proto(chain, tp),
2690 		     tcf_proto_put(tp_prev, true, NULL),
2691 		     (*p_index)++) {
2692 		if (*p_index < index_start)
2693 			continue;
2694 		if (TC_H_MAJ(tcm->tcm_info) &&
2695 		    TC_H_MAJ(tcm->tcm_info) != tp->prio)
2696 			continue;
2697 		if (TC_H_MIN(tcm->tcm_info) &&
2698 		    TC_H_MIN(tcm->tcm_info) != tp->protocol)
2699 			continue;
2700 		if (*p_index > index_start)
2701 			memset(&cb->args[1], 0,
2702 			       sizeof(cb->args) - sizeof(cb->args[0]));
2703 		if (cb->args[1] == 0) {
2704 			if (tcf_fill_node(net, skb, tp, block, q, parent, NULL,
2705 					  NETLINK_CB(cb->skb).portid,
2706 					  cb->nlh->nlmsg_seq, NLM_F_MULTI,
2707 					  RTM_NEWTFILTER, false, true, NULL) <= 0)
2708 				goto errout;
2709 			cb->args[1] = 1;
2710 		}
2711 		if (!tp->ops->walk)
2712 			continue;
2713 		arg.w.fn = tcf_node_dump;
2714 		arg.skb = skb;
2715 		arg.cb = cb;
2716 		arg.block = block;
2717 		arg.q = q;
2718 		arg.parent = parent;
2719 		arg.w.stop = 0;
2720 		arg.w.skip = cb->args[1] - 1;
2721 		arg.w.count = 0;
2722 		arg.w.cookie = cb->args[2];
2723 		arg.terse_dump = terse;
2724 		tp->ops->walk(tp, &arg.w, true);
2725 		cb->args[2] = arg.w.cookie;
2726 		cb->args[1] = arg.w.count + 1;
2727 		if (arg.w.stop)
2728 			goto errout;
2729 	}
2730 	return true;
2731 
2732 errout:
2733 	tcf_proto_put(tp, true, NULL);
2734 	return false;
2735 }
2736 
2737 static const struct nla_policy tcf_tfilter_dump_policy[TCA_MAX + 1] = {
2738 	[TCA_DUMP_FLAGS] = NLA_POLICY_BITFIELD32(TCA_DUMP_FLAGS_TERSE),
2739 };
2740 
2741 /* called with RTNL */
2742 static int tc_dump_tfilter(struct sk_buff *skb, struct netlink_callback *cb)
2743 {
2744 	struct tcf_chain *chain, *chain_prev;
2745 	struct net *net = sock_net(skb->sk);
2746 	struct nlattr *tca[TCA_MAX + 1];
2747 	struct Qdisc *q = NULL;
2748 	struct tcf_block *block;
2749 	struct tcmsg *tcm = nlmsg_data(cb->nlh);
2750 	bool terse_dump = false;
2751 	long index_start;
2752 	long index;
2753 	u32 parent;
2754 	int err;
2755 
2756 	if (nlmsg_len(cb->nlh) < sizeof(*tcm))
2757 		return skb->len;
2758 
2759 	err = nlmsg_parse_deprecated(cb->nlh, sizeof(*tcm), tca, TCA_MAX,
2760 				     tcf_tfilter_dump_policy, cb->extack);
2761 	if (err)
2762 		return err;
2763 
2764 	if (tca[TCA_DUMP_FLAGS]) {
2765 		struct nla_bitfield32 flags =
2766 			nla_get_bitfield32(tca[TCA_DUMP_FLAGS]);
2767 
2768 		terse_dump = flags.value & TCA_DUMP_FLAGS_TERSE;
2769 	}
2770 
2771 	if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK) {
2772 		block = tcf_block_refcnt_get(net, tcm->tcm_block_index);
2773 		if (!block)
2774 			goto out;
2775 		/* If we work with block index, q is NULL and parent value
2776 		 * will never be used in the following code. The check
2777 		 * in tcf_fill_node prevents it. However, compiler does not
2778 		 * see that far, so set parent to zero to silence the warning
2779 		 * about parent being uninitialized.
2780 		 */
2781 		parent = 0;
2782 	} else {
2783 		const struct Qdisc_class_ops *cops;
2784 		struct net_device *dev;
2785 		unsigned long cl = 0;
2786 
2787 		dev = __dev_get_by_index(net, tcm->tcm_ifindex);
2788 		if (!dev)
2789 			return skb->len;
2790 
2791 		parent = tcm->tcm_parent;
2792 		if (!parent)
2793 			q = rtnl_dereference(dev->qdisc);
2794 		else
2795 			q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent));
2796 		if (!q)
2797 			goto out;
2798 		cops = q->ops->cl_ops;
2799 		if (!cops)
2800 			goto out;
2801 		if (!cops->tcf_block)
2802 			goto out;
2803 		if (TC_H_MIN(tcm->tcm_parent)) {
2804 			cl = cops->find(q, tcm->tcm_parent);
2805 			if (cl == 0)
2806 				goto out;
2807 		}
2808 		block = cops->tcf_block(q, cl, NULL);
2809 		if (!block)
2810 			goto out;
2811 		parent = block->classid;
2812 		if (tcf_block_shared(block))
2813 			q = NULL;
2814 	}
2815 
2816 	index_start = cb->args[0];
2817 	index = 0;
2818 
2819 	for (chain = __tcf_get_next_chain(block, NULL);
2820 	     chain;
2821 	     chain_prev = chain,
2822 		     chain = __tcf_get_next_chain(block, chain),
2823 		     tcf_chain_put(chain_prev)) {
2824 		if (tca[TCA_CHAIN] &&
2825 		    nla_get_u32(tca[TCA_CHAIN]) != chain->index)
2826 			continue;
2827 		if (!tcf_chain_dump(chain, q, parent, skb, cb,
2828 				    index_start, &index, terse_dump)) {
2829 			tcf_chain_put(chain);
2830 			err = -EMSGSIZE;
2831 			break;
2832 		}
2833 	}
2834 
2835 	if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK)
2836 		tcf_block_refcnt_put(block, true);
2837 	cb->args[0] = index;
2838 
2839 out:
2840 	/* If we did no progress, the error (EMSGSIZE) is real */
2841 	if (skb->len == 0 && err)
2842 		return err;
2843 	return skb->len;
2844 }
2845 
2846 static int tc_chain_fill_node(const struct tcf_proto_ops *tmplt_ops,
2847 			      void *tmplt_priv, u32 chain_index,
2848 			      struct net *net, struct sk_buff *skb,
2849 			      struct tcf_block *block,
2850 			      u32 portid, u32 seq, u16 flags, int event,
2851 			      struct netlink_ext_ack *extack)
2852 {
2853 	unsigned char *b = skb_tail_pointer(skb);
2854 	const struct tcf_proto_ops *ops;
2855 	struct nlmsghdr *nlh;
2856 	struct tcmsg *tcm;
2857 	void *priv;
2858 
2859 	ops = tmplt_ops;
2860 	priv = tmplt_priv;
2861 
2862 	nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
2863 	if (!nlh)
2864 		goto out_nlmsg_trim;
2865 	tcm = nlmsg_data(nlh);
2866 	tcm->tcm_family = AF_UNSPEC;
2867 	tcm->tcm__pad1 = 0;
2868 	tcm->tcm__pad2 = 0;
2869 	tcm->tcm_handle = 0;
2870 	if (block->q) {
2871 		tcm->tcm_ifindex = qdisc_dev(block->q)->ifindex;
2872 		tcm->tcm_parent = block->q->handle;
2873 	} else {
2874 		tcm->tcm_ifindex = TCM_IFINDEX_MAGIC_BLOCK;
2875 		tcm->tcm_block_index = block->index;
2876 	}
2877 
2878 	if (nla_put_u32(skb, TCA_CHAIN, chain_index))
2879 		goto nla_put_failure;
2880 
2881 	if (ops) {
2882 		if (nla_put_string(skb, TCA_KIND, ops->kind))
2883 			goto nla_put_failure;
2884 		if (ops->tmplt_dump(skb, net, priv) < 0)
2885 			goto nla_put_failure;
2886 	}
2887 
2888 	if (extack && extack->_msg &&
2889 	    nla_put_string(skb, TCA_EXT_WARN_MSG, extack->_msg))
2890 		goto out_nlmsg_trim;
2891 
2892 	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
2893 
2894 	return skb->len;
2895 
2896 out_nlmsg_trim:
2897 nla_put_failure:
2898 	nlmsg_trim(skb, b);
2899 	return -EMSGSIZE;
2900 }
2901 
2902 static int tc_chain_notify(struct tcf_chain *chain, struct sk_buff *oskb,
2903 			   u32 seq, u16 flags, int event, bool unicast,
2904 			   struct netlink_ext_ack *extack)
2905 {
2906 	u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
2907 	struct tcf_block *block = chain->block;
2908 	struct net *net = block->net;
2909 	struct sk_buff *skb;
2910 	int err = 0;
2911 
2912 	if (!unicast && !rtnl_notify_needed(net, flags, RTNLGRP_TC))
2913 		return 0;
2914 
2915 	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2916 	if (!skb)
2917 		return -ENOBUFS;
2918 
2919 	if (tc_chain_fill_node(chain->tmplt_ops, chain->tmplt_priv,
2920 			       chain->index, net, skb, block, portid,
2921 			       seq, flags, event, extack) <= 0) {
2922 		kfree_skb(skb);
2923 		return -EINVAL;
2924 	}
2925 
2926 	if (unicast)
2927 		err = rtnl_unicast(skb, net, portid);
2928 	else
2929 		err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
2930 				     flags & NLM_F_ECHO);
2931 
2932 	return err;
2933 }
2934 
2935 static int tc_chain_notify_delete(const struct tcf_proto_ops *tmplt_ops,
2936 				  void *tmplt_priv, u32 chain_index,
2937 				  struct tcf_block *block, struct sk_buff *oskb,
2938 				  u32 seq, u16 flags)
2939 {
2940 	u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
2941 	struct net *net = block->net;
2942 	struct sk_buff *skb;
2943 
2944 	if (!rtnl_notify_needed(net, flags, RTNLGRP_TC))
2945 		return 0;
2946 
2947 	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2948 	if (!skb)
2949 		return -ENOBUFS;
2950 
2951 	if (tc_chain_fill_node(tmplt_ops, tmplt_priv, chain_index, net, skb,
2952 			       block, portid, seq, flags, RTM_DELCHAIN, NULL) <= 0) {
2953 		kfree_skb(skb);
2954 		return -EINVAL;
2955 	}
2956 
2957 	return rtnetlink_send(skb, net, portid, RTNLGRP_TC, flags & NLM_F_ECHO);
2958 }
2959 
2960 static int tc_chain_tmplt_add(struct tcf_chain *chain, struct net *net,
2961 			      struct nlattr **tca,
2962 			      struct netlink_ext_ack *extack)
2963 {
2964 	const struct tcf_proto_ops *ops;
2965 	char name[IFNAMSIZ];
2966 	void *tmplt_priv;
2967 
2968 	/* If kind is not set, user did not specify template. */
2969 	if (!tca[TCA_KIND])
2970 		return 0;
2971 
2972 	if (tcf_proto_check_kind(tca[TCA_KIND], name)) {
2973 		NL_SET_ERR_MSG(extack, "Specified TC chain template name too long");
2974 		return -EINVAL;
2975 	}
2976 
2977 	ops = tcf_proto_lookup_ops(name, true, extack);
2978 	if (IS_ERR(ops))
2979 		return PTR_ERR(ops);
2980 	if (!ops->tmplt_create || !ops->tmplt_destroy || !ops->tmplt_dump) {
2981 		NL_SET_ERR_MSG(extack, "Chain templates are not supported with specified classifier");
2982 		module_put(ops->owner);
2983 		return -EOPNOTSUPP;
2984 	}
2985 
2986 	tmplt_priv = ops->tmplt_create(net, chain, tca, extack);
2987 	if (IS_ERR(tmplt_priv)) {
2988 		module_put(ops->owner);
2989 		return PTR_ERR(tmplt_priv);
2990 	}
2991 	chain->tmplt_ops = ops;
2992 	chain->tmplt_priv = tmplt_priv;
2993 	return 0;
2994 }
2995 
2996 static void tc_chain_tmplt_del(const struct tcf_proto_ops *tmplt_ops,
2997 			       void *tmplt_priv)
2998 {
2999 	/* If template ops are set, no work to do for us. */
3000 	if (!tmplt_ops)
3001 		return;
3002 
3003 	tmplt_ops->tmplt_destroy(tmplt_priv);
3004 	module_put(tmplt_ops->owner);
3005 }
3006 
3007 /* Add/delete/get a chain */
3008 
3009 static int tc_ctl_chain(struct sk_buff *skb, struct nlmsghdr *n,
3010 			struct netlink_ext_ack *extack)
3011 {
3012 	struct net *net = sock_net(skb->sk);
3013 	struct nlattr *tca[TCA_MAX + 1];
3014 	struct tcmsg *t;
3015 	u32 parent;
3016 	u32 chain_index;
3017 	struct Qdisc *q;
3018 	struct tcf_chain *chain;
3019 	struct tcf_block *block;
3020 	unsigned long cl;
3021 	int err;
3022 
3023 replay:
3024 	q = NULL;
3025 	err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX,
3026 				     rtm_tca_policy, extack);
3027 	if (err < 0)
3028 		return err;
3029 
3030 	t = nlmsg_data(n);
3031 	parent = t->tcm_parent;
3032 	cl = 0;
3033 
3034 	block = tcf_block_find(net, &q, &parent, &cl,
3035 			       t->tcm_ifindex, t->tcm_block_index, extack);
3036 	if (IS_ERR(block))
3037 		return PTR_ERR(block);
3038 
3039 	chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
3040 	if (chain_index > TC_ACT_EXT_VAL_MASK) {
3041 		NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit");
3042 		err = -EINVAL;
3043 		goto errout_block;
3044 	}
3045 
3046 	mutex_lock(&block->lock);
3047 	chain = tcf_chain_lookup(block, chain_index);
3048 	if (n->nlmsg_type == RTM_NEWCHAIN) {
3049 		if (chain) {
3050 			if (tcf_chain_held_by_acts_only(chain)) {
3051 				/* The chain exists only because there is
3052 				 * some action referencing it.
3053 				 */
3054 				tcf_chain_hold(chain);
3055 			} else {
3056 				NL_SET_ERR_MSG(extack, "Filter chain already exists");
3057 				err = -EEXIST;
3058 				goto errout_block_locked;
3059 			}
3060 		} else {
3061 			if (!(n->nlmsg_flags & NLM_F_CREATE)) {
3062 				NL_SET_ERR_MSG(extack, "Need both RTM_NEWCHAIN and NLM_F_CREATE to create a new chain");
3063 				err = -ENOENT;
3064 				goto errout_block_locked;
3065 			}
3066 			chain = tcf_chain_create(block, chain_index);
3067 			if (!chain) {
3068 				NL_SET_ERR_MSG(extack, "Failed to create filter chain");
3069 				err = -ENOMEM;
3070 				goto errout_block_locked;
3071 			}
3072 		}
3073 	} else {
3074 		if (!chain || tcf_chain_held_by_acts_only(chain)) {
3075 			NL_SET_ERR_MSG(extack, "Cannot find specified filter chain");
3076 			err = -EINVAL;
3077 			goto errout_block_locked;
3078 		}
3079 		tcf_chain_hold(chain);
3080 	}
3081 
3082 	if (n->nlmsg_type == RTM_NEWCHAIN) {
3083 		/* Modifying chain requires holding parent block lock. In case
3084 		 * the chain was successfully added, take a reference to the
3085 		 * chain. This ensures that an empty chain does not disappear at
3086 		 * the end of this function.
3087 		 */
3088 		tcf_chain_hold(chain);
3089 		chain->explicitly_created = true;
3090 	}
3091 	mutex_unlock(&block->lock);
3092 
3093 	switch (n->nlmsg_type) {
3094 	case RTM_NEWCHAIN:
3095 		err = tc_chain_tmplt_add(chain, net, tca, extack);
3096 		if (err) {
3097 			tcf_chain_put_explicitly_created(chain);
3098 			goto errout;
3099 		}
3100 
3101 		tc_chain_notify(chain, NULL, 0, NLM_F_CREATE | NLM_F_EXCL,
3102 				RTM_NEWCHAIN, false, extack);
3103 		break;
3104 	case RTM_DELCHAIN:
3105 		tfilter_notify_chain(net, skb, block, q, parent, n,
3106 				     chain, RTM_DELTFILTER, extack);
3107 		/* Flush the chain first as the user requested chain removal. */
3108 		tcf_chain_flush(chain, true);
3109 		/* In case the chain was successfully deleted, put a reference
3110 		 * to the chain previously taken during addition.
3111 		 */
3112 		tcf_chain_put_explicitly_created(chain);
3113 		break;
3114 	case RTM_GETCHAIN:
3115 		err = tc_chain_notify(chain, skb, n->nlmsg_seq,
3116 				      n->nlmsg_flags, n->nlmsg_type, true, extack);
3117 		if (err < 0)
3118 			NL_SET_ERR_MSG(extack, "Failed to send chain notify message");
3119 		break;
3120 	default:
3121 		err = -EOPNOTSUPP;
3122 		NL_SET_ERR_MSG(extack, "Unsupported message type");
3123 		goto errout;
3124 	}
3125 
3126 errout:
3127 	tcf_chain_put(chain);
3128 errout_block:
3129 	tcf_block_release(q, block, true);
3130 	if (err == -EAGAIN)
3131 		/* Replay the request. */
3132 		goto replay;
3133 	return err;
3134 
3135 errout_block_locked:
3136 	mutex_unlock(&block->lock);
3137 	goto errout_block;
3138 }
3139 
3140 /* called with RTNL */
3141 static int tc_dump_chain(struct sk_buff *skb, struct netlink_callback *cb)
3142 {
3143 	struct net *net = sock_net(skb->sk);
3144 	struct nlattr *tca[TCA_MAX + 1];
3145 	struct Qdisc *q = NULL;
3146 	struct tcf_block *block;
3147 	struct tcmsg *tcm = nlmsg_data(cb->nlh);
3148 	struct tcf_chain *chain;
3149 	long index_start;
3150 	long index;
3151 	int err;
3152 
3153 	if (nlmsg_len(cb->nlh) < sizeof(*tcm))
3154 		return skb->len;
3155 
3156 	err = nlmsg_parse_deprecated(cb->nlh, sizeof(*tcm), tca, TCA_MAX,
3157 				     rtm_tca_policy, cb->extack);
3158 	if (err)
3159 		return err;
3160 
3161 	if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK) {
3162 		block = tcf_block_refcnt_get(net, tcm->tcm_block_index);
3163 		if (!block)
3164 			goto out;
3165 	} else {
3166 		const struct Qdisc_class_ops *cops;
3167 		struct net_device *dev;
3168 		unsigned long cl = 0;
3169 
3170 		dev = __dev_get_by_index(net, tcm->tcm_ifindex);
3171 		if (!dev)
3172 			return skb->len;
3173 
3174 		if (!tcm->tcm_parent)
3175 			q = rtnl_dereference(dev->qdisc);
3176 		else
3177 			q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent));
3178 
3179 		if (!q)
3180 			goto out;
3181 		cops = q->ops->cl_ops;
3182 		if (!cops)
3183 			goto out;
3184 		if (!cops->tcf_block)
3185 			goto out;
3186 		if (TC_H_MIN(tcm->tcm_parent)) {
3187 			cl = cops->find(q, tcm->tcm_parent);
3188 			if (cl == 0)
3189 				goto out;
3190 		}
3191 		block = cops->tcf_block(q, cl, NULL);
3192 		if (!block)
3193 			goto out;
3194 		if (tcf_block_shared(block))
3195 			q = NULL;
3196 	}
3197 
3198 	index_start = cb->args[0];
3199 	index = 0;
3200 
3201 	mutex_lock(&block->lock);
3202 	list_for_each_entry(chain, &block->chain_list, list) {
3203 		if ((tca[TCA_CHAIN] &&
3204 		     nla_get_u32(tca[TCA_CHAIN]) != chain->index))
3205 			continue;
3206 		if (index < index_start) {
3207 			index++;
3208 			continue;
3209 		}
3210 		if (tcf_chain_held_by_acts_only(chain))
3211 			continue;
3212 		err = tc_chain_fill_node(chain->tmplt_ops, chain->tmplt_priv,
3213 					 chain->index, net, skb, block,
3214 					 NETLINK_CB(cb->skb).portid,
3215 					 cb->nlh->nlmsg_seq, NLM_F_MULTI,
3216 					 RTM_NEWCHAIN, NULL);
3217 		if (err <= 0)
3218 			break;
3219 		index++;
3220 	}
3221 	mutex_unlock(&block->lock);
3222 
3223 	if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK)
3224 		tcf_block_refcnt_put(block, true);
3225 	cb->args[0] = index;
3226 
3227 out:
3228 	/* If we did no progress, the error (EMSGSIZE) is real */
3229 	if (skb->len == 0 && err)
3230 		return err;
3231 	return skb->len;
3232 }
3233 
3234 int tcf_exts_init_ex(struct tcf_exts *exts, struct net *net, int action,
3235 		     int police, struct tcf_proto *tp, u32 handle,
3236 		     bool use_action_miss)
3237 {
3238 	int err = 0;
3239 
3240 #ifdef CONFIG_NET_CLS_ACT
3241 	exts->type = 0;
3242 	exts->nr_actions = 0;
3243 	exts->miss_cookie_node = NULL;
3244 	/* Note: we do not own yet a reference on net.
3245 	 * This reference might be taken later from tcf_exts_get_net().
3246 	 */
3247 	exts->net = net;
3248 	exts->actions = kcalloc(TCA_ACT_MAX_PRIO, sizeof(struct tc_action *),
3249 				GFP_KERNEL);
3250 	if (!exts->actions)
3251 		return -ENOMEM;
3252 #endif
3253 
3254 	exts->action = action;
3255 	exts->police = police;
3256 
3257 	if (!use_action_miss)
3258 		return 0;
3259 
3260 	err = tcf_exts_miss_cookie_base_alloc(exts, tp, handle);
3261 	if (err)
3262 		goto err_miss_alloc;
3263 
3264 	return 0;
3265 
3266 err_miss_alloc:
3267 	tcf_exts_destroy(exts);
3268 #ifdef CONFIG_NET_CLS_ACT
3269 	exts->actions = NULL;
3270 #endif
3271 	return err;
3272 }
3273 EXPORT_SYMBOL(tcf_exts_init_ex);
3274 
3275 void tcf_exts_destroy(struct tcf_exts *exts)
3276 {
3277 	tcf_exts_miss_cookie_base_destroy(exts);
3278 
3279 #ifdef CONFIG_NET_CLS_ACT
3280 	if (exts->actions) {
3281 		tcf_action_destroy(exts->actions, TCA_ACT_UNBIND);
3282 		kfree(exts->actions);
3283 	}
3284 	exts->nr_actions = 0;
3285 #endif
3286 }
3287 EXPORT_SYMBOL(tcf_exts_destroy);
3288 
3289 int tcf_exts_validate_ex(struct net *net, struct tcf_proto *tp, struct nlattr **tb,
3290 			 struct nlattr *rate_tlv, struct tcf_exts *exts,
3291 			 u32 flags, u32 fl_flags, struct netlink_ext_ack *extack)
3292 {
3293 #ifdef CONFIG_NET_CLS_ACT
3294 	{
3295 		int init_res[TCA_ACT_MAX_PRIO] = {};
3296 		struct tc_action *act;
3297 		size_t attr_size = 0;
3298 
3299 		if (exts->police && tb[exts->police]) {
3300 			struct tc_action_ops *a_o;
3301 
3302 			a_o = tc_action_load_ops(tb[exts->police], true,
3303 						 !(flags & TCA_ACT_FLAGS_NO_RTNL),
3304 						 extack);
3305 			if (IS_ERR(a_o))
3306 				return PTR_ERR(a_o);
3307 			flags |= TCA_ACT_FLAGS_POLICE | TCA_ACT_FLAGS_BIND;
3308 			act = tcf_action_init_1(net, tp, tb[exts->police],
3309 						rate_tlv, a_o, init_res, flags,
3310 						extack);
3311 			module_put(a_o->owner);
3312 			if (IS_ERR(act))
3313 				return PTR_ERR(act);
3314 
3315 			act->type = exts->type = TCA_OLD_COMPAT;
3316 			exts->actions[0] = act;
3317 			exts->nr_actions = 1;
3318 			tcf_idr_insert_many(exts->actions, init_res);
3319 		} else if (exts->action && tb[exts->action]) {
3320 			int err;
3321 
3322 			flags |= TCA_ACT_FLAGS_BIND;
3323 			err = tcf_action_init(net, tp, tb[exts->action],
3324 					      rate_tlv, exts->actions, init_res,
3325 					      &attr_size, flags, fl_flags,
3326 					      extack);
3327 			if (err < 0)
3328 				return err;
3329 			exts->nr_actions = err;
3330 		}
3331 	}
3332 #else
3333 	if ((exts->action && tb[exts->action]) ||
3334 	    (exts->police && tb[exts->police])) {
3335 		NL_SET_ERR_MSG(extack, "Classifier actions are not supported per compile options (CONFIG_NET_CLS_ACT)");
3336 		return -EOPNOTSUPP;
3337 	}
3338 #endif
3339 
3340 	return 0;
3341 }
3342 EXPORT_SYMBOL(tcf_exts_validate_ex);
3343 
3344 int tcf_exts_validate(struct net *net, struct tcf_proto *tp, struct nlattr **tb,
3345 		      struct nlattr *rate_tlv, struct tcf_exts *exts,
3346 		      u32 flags, struct netlink_ext_ack *extack)
3347 {
3348 	return tcf_exts_validate_ex(net, tp, tb, rate_tlv, exts,
3349 				    flags, 0, extack);
3350 }
3351 EXPORT_SYMBOL(tcf_exts_validate);
3352 
3353 void tcf_exts_change(struct tcf_exts *dst, struct tcf_exts *src)
3354 {
3355 #ifdef CONFIG_NET_CLS_ACT
3356 	struct tcf_exts old = *dst;
3357 
3358 	*dst = *src;
3359 	tcf_exts_destroy(&old);
3360 #endif
3361 }
3362 EXPORT_SYMBOL(tcf_exts_change);
3363 
3364 #ifdef CONFIG_NET_CLS_ACT
3365 static struct tc_action *tcf_exts_first_act(struct tcf_exts *exts)
3366 {
3367 	if (exts->nr_actions == 0)
3368 		return NULL;
3369 	else
3370 		return exts->actions[0];
3371 }
3372 #endif
3373 
3374 int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts)
3375 {
3376 #ifdef CONFIG_NET_CLS_ACT
3377 	struct nlattr *nest;
3378 
3379 	if (exts->action && tcf_exts_has_actions(exts)) {
3380 		/*
3381 		 * again for backward compatible mode - we want
3382 		 * to work with both old and new modes of entering
3383 		 * tc data even if iproute2  was newer - jhs
3384 		 */
3385 		if (exts->type != TCA_OLD_COMPAT) {
3386 			nest = nla_nest_start_noflag(skb, exts->action);
3387 			if (nest == NULL)
3388 				goto nla_put_failure;
3389 
3390 			if (tcf_action_dump(skb, exts->actions, 0, 0, false)
3391 			    < 0)
3392 				goto nla_put_failure;
3393 			nla_nest_end(skb, nest);
3394 		} else if (exts->police) {
3395 			struct tc_action *act = tcf_exts_first_act(exts);
3396 			nest = nla_nest_start_noflag(skb, exts->police);
3397 			if (nest == NULL || !act)
3398 				goto nla_put_failure;
3399 			if (tcf_action_dump_old(skb, act, 0, 0) < 0)
3400 				goto nla_put_failure;
3401 			nla_nest_end(skb, nest);
3402 		}
3403 	}
3404 	return 0;
3405 
3406 nla_put_failure:
3407 	nla_nest_cancel(skb, nest);
3408 	return -1;
3409 #else
3410 	return 0;
3411 #endif
3412 }
3413 EXPORT_SYMBOL(tcf_exts_dump);
3414 
3415 int tcf_exts_terse_dump(struct sk_buff *skb, struct tcf_exts *exts)
3416 {
3417 #ifdef CONFIG_NET_CLS_ACT
3418 	struct nlattr *nest;
3419 
3420 	if (!exts->action || !tcf_exts_has_actions(exts))
3421 		return 0;
3422 
3423 	nest = nla_nest_start_noflag(skb, exts->action);
3424 	if (!nest)
3425 		goto nla_put_failure;
3426 
3427 	if (tcf_action_dump(skb, exts->actions, 0, 0, true) < 0)
3428 		goto nla_put_failure;
3429 	nla_nest_end(skb, nest);
3430 	return 0;
3431 
3432 nla_put_failure:
3433 	nla_nest_cancel(skb, nest);
3434 	return -1;
3435 #else
3436 	return 0;
3437 #endif
3438 }
3439 EXPORT_SYMBOL(tcf_exts_terse_dump);
3440 
3441 int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts)
3442 {
3443 #ifdef CONFIG_NET_CLS_ACT
3444 	struct tc_action *a = tcf_exts_first_act(exts);
3445 	if (a != NULL && tcf_action_copy_stats(skb, a, 1) < 0)
3446 		return -1;
3447 #endif
3448 	return 0;
3449 }
3450 EXPORT_SYMBOL(tcf_exts_dump_stats);
3451 
3452 static void tcf_block_offload_inc(struct tcf_block *block, u32 *flags)
3453 {
3454 	if (*flags & TCA_CLS_FLAGS_IN_HW)
3455 		return;
3456 	*flags |= TCA_CLS_FLAGS_IN_HW;
3457 	atomic_inc(&block->offloadcnt);
3458 }
3459 
3460 static void tcf_block_offload_dec(struct tcf_block *block, u32 *flags)
3461 {
3462 	if (!(*flags & TCA_CLS_FLAGS_IN_HW))
3463 		return;
3464 	*flags &= ~TCA_CLS_FLAGS_IN_HW;
3465 	atomic_dec(&block->offloadcnt);
3466 }
3467 
3468 static void tc_cls_offload_cnt_update(struct tcf_block *block,
3469 				      struct tcf_proto *tp, u32 *cnt,
3470 				      u32 *flags, u32 diff, bool add)
3471 {
3472 	lockdep_assert_held(&block->cb_lock);
3473 
3474 	spin_lock(&tp->lock);
3475 	if (add) {
3476 		if (!*cnt)
3477 			tcf_block_offload_inc(block, flags);
3478 		*cnt += diff;
3479 	} else {
3480 		*cnt -= diff;
3481 		if (!*cnt)
3482 			tcf_block_offload_dec(block, flags);
3483 	}
3484 	spin_unlock(&tp->lock);
3485 }
3486 
3487 static void
3488 tc_cls_offload_cnt_reset(struct tcf_block *block, struct tcf_proto *tp,
3489 			 u32 *cnt, u32 *flags)
3490 {
3491 	lockdep_assert_held(&block->cb_lock);
3492 
3493 	spin_lock(&tp->lock);
3494 	tcf_block_offload_dec(block, flags);
3495 	*cnt = 0;
3496 	spin_unlock(&tp->lock);
3497 }
3498 
3499 static int
3500 __tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type,
3501 		   void *type_data, bool err_stop)
3502 {
3503 	struct flow_block_cb *block_cb;
3504 	int ok_count = 0;
3505 	int err;
3506 
3507 	list_for_each_entry(block_cb, &block->flow_block.cb_list, list) {
3508 		err = block_cb->cb(type, type_data, block_cb->cb_priv);
3509 		if (err) {
3510 			if (err_stop)
3511 				return err;
3512 		} else {
3513 			ok_count++;
3514 		}
3515 	}
3516 	return ok_count;
3517 }
3518 
3519 int tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type,
3520 		     void *type_data, bool err_stop, bool rtnl_held)
3521 {
3522 	bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
3523 	int ok_count;
3524 
3525 retry:
3526 	if (take_rtnl)
3527 		rtnl_lock();
3528 	down_read(&block->cb_lock);
3529 	/* Need to obtain rtnl lock if block is bound to devs that require it.
3530 	 * In block bind code cb_lock is obtained while holding rtnl, so we must
3531 	 * obtain the locks in same order here.
3532 	 */
3533 	if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3534 		up_read(&block->cb_lock);
3535 		take_rtnl = true;
3536 		goto retry;
3537 	}
3538 
3539 	ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
3540 
3541 	up_read(&block->cb_lock);
3542 	if (take_rtnl)
3543 		rtnl_unlock();
3544 	return ok_count;
3545 }
3546 EXPORT_SYMBOL(tc_setup_cb_call);
3547 
3548 /* Non-destructive filter add. If filter that wasn't already in hardware is
3549  * successfully offloaded, increment block offloads counter. On failure,
3550  * previously offloaded filter is considered to be intact and offloads counter
3551  * is not decremented.
3552  */
3553 
3554 int tc_setup_cb_add(struct tcf_block *block, struct tcf_proto *tp,
3555 		    enum tc_setup_type type, void *type_data, bool err_stop,
3556 		    u32 *flags, unsigned int *in_hw_count, bool rtnl_held)
3557 {
3558 	bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
3559 	int ok_count;
3560 
3561 retry:
3562 	if (take_rtnl)
3563 		rtnl_lock();
3564 	down_read(&block->cb_lock);
3565 	/* Need to obtain rtnl lock if block is bound to devs that require it.
3566 	 * In block bind code cb_lock is obtained while holding rtnl, so we must
3567 	 * obtain the locks in same order here.
3568 	 */
3569 	if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3570 		up_read(&block->cb_lock);
3571 		take_rtnl = true;
3572 		goto retry;
3573 	}
3574 
3575 	/* Make sure all netdevs sharing this block are offload-capable. */
3576 	if (block->nooffloaddevcnt && err_stop) {
3577 		ok_count = -EOPNOTSUPP;
3578 		goto err_unlock;
3579 	}
3580 
3581 	ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
3582 	if (ok_count < 0)
3583 		goto err_unlock;
3584 
3585 	if (tp->ops->hw_add)
3586 		tp->ops->hw_add(tp, type_data);
3587 	if (ok_count > 0)
3588 		tc_cls_offload_cnt_update(block, tp, in_hw_count, flags,
3589 					  ok_count, true);
3590 err_unlock:
3591 	up_read(&block->cb_lock);
3592 	if (take_rtnl)
3593 		rtnl_unlock();
3594 	return min(ok_count, 0);
3595 }
3596 EXPORT_SYMBOL(tc_setup_cb_add);
3597 
3598 /* Destructive filter replace. If filter that wasn't already in hardware is
3599  * successfully offloaded, increment block offload counter. On failure,
3600  * previously offloaded filter is considered to be destroyed and offload counter
3601  * is decremented.
3602  */
3603 
3604 int tc_setup_cb_replace(struct tcf_block *block, struct tcf_proto *tp,
3605 			enum tc_setup_type type, void *type_data, bool err_stop,
3606 			u32 *old_flags, unsigned int *old_in_hw_count,
3607 			u32 *new_flags, unsigned int *new_in_hw_count,
3608 			bool rtnl_held)
3609 {
3610 	bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
3611 	int ok_count;
3612 
3613 retry:
3614 	if (take_rtnl)
3615 		rtnl_lock();
3616 	down_read(&block->cb_lock);
3617 	/* Need to obtain rtnl lock if block is bound to devs that require it.
3618 	 * In block bind code cb_lock is obtained while holding rtnl, so we must
3619 	 * obtain the locks in same order here.
3620 	 */
3621 	if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3622 		up_read(&block->cb_lock);
3623 		take_rtnl = true;
3624 		goto retry;
3625 	}
3626 
3627 	/* Make sure all netdevs sharing this block are offload-capable. */
3628 	if (block->nooffloaddevcnt && err_stop) {
3629 		ok_count = -EOPNOTSUPP;
3630 		goto err_unlock;
3631 	}
3632 
3633 	tc_cls_offload_cnt_reset(block, tp, old_in_hw_count, old_flags);
3634 	if (tp->ops->hw_del)
3635 		tp->ops->hw_del(tp, type_data);
3636 
3637 	ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
3638 	if (ok_count < 0)
3639 		goto err_unlock;
3640 
3641 	if (tp->ops->hw_add)
3642 		tp->ops->hw_add(tp, type_data);
3643 	if (ok_count > 0)
3644 		tc_cls_offload_cnt_update(block, tp, new_in_hw_count,
3645 					  new_flags, ok_count, true);
3646 err_unlock:
3647 	up_read(&block->cb_lock);
3648 	if (take_rtnl)
3649 		rtnl_unlock();
3650 	return min(ok_count, 0);
3651 }
3652 EXPORT_SYMBOL(tc_setup_cb_replace);
3653 
3654 /* Destroy filter and decrement block offload counter, if filter was previously
3655  * offloaded.
3656  */
3657 
3658 int tc_setup_cb_destroy(struct tcf_block *block, struct tcf_proto *tp,
3659 			enum tc_setup_type type, void *type_data, bool err_stop,
3660 			u32 *flags, unsigned int *in_hw_count, bool rtnl_held)
3661 {
3662 	bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held;
3663 	int ok_count;
3664 
3665 retry:
3666 	if (take_rtnl)
3667 		rtnl_lock();
3668 	down_read(&block->cb_lock);
3669 	/* Need to obtain rtnl lock if block is bound to devs that require it.
3670 	 * In block bind code cb_lock is obtained while holding rtnl, so we must
3671 	 * obtain the locks in same order here.
3672 	 */
3673 	if (!rtnl_held && !take_rtnl && block->lockeddevcnt) {
3674 		up_read(&block->cb_lock);
3675 		take_rtnl = true;
3676 		goto retry;
3677 	}
3678 
3679 	ok_count = __tc_setup_cb_call(block, type, type_data, err_stop);
3680 
3681 	tc_cls_offload_cnt_reset(block, tp, in_hw_count, flags);
3682 	if (tp->ops->hw_del)
3683 		tp->ops->hw_del(tp, type_data);
3684 
3685 	up_read(&block->cb_lock);
3686 	if (take_rtnl)
3687 		rtnl_unlock();
3688 	return min(ok_count, 0);
3689 }
3690 EXPORT_SYMBOL(tc_setup_cb_destroy);
3691 
3692 int tc_setup_cb_reoffload(struct tcf_block *block, struct tcf_proto *tp,
3693 			  bool add, flow_setup_cb_t *cb,
3694 			  enum tc_setup_type type, void *type_data,
3695 			  void *cb_priv, u32 *flags, unsigned int *in_hw_count)
3696 {
3697 	int err = cb(type, type_data, cb_priv);
3698 
3699 	if (err) {
3700 		if (add && tc_skip_sw(*flags))
3701 			return err;
3702 	} else {
3703 		tc_cls_offload_cnt_update(block, tp, in_hw_count, flags, 1,
3704 					  add);
3705 	}
3706 
3707 	return 0;
3708 }
3709 EXPORT_SYMBOL(tc_setup_cb_reoffload);
3710 
3711 static int tcf_act_get_user_cookie(struct flow_action_entry *entry,
3712 				   const struct tc_action *act)
3713 {
3714 	struct tc_cookie *user_cookie;
3715 	int err = 0;
3716 
3717 	rcu_read_lock();
3718 	user_cookie = rcu_dereference(act->user_cookie);
3719 	if (user_cookie) {
3720 		entry->user_cookie = flow_action_cookie_create(user_cookie->data,
3721 							       user_cookie->len,
3722 							       GFP_ATOMIC);
3723 		if (!entry->user_cookie)
3724 			err = -ENOMEM;
3725 	}
3726 	rcu_read_unlock();
3727 	return err;
3728 }
3729 
3730 static void tcf_act_put_user_cookie(struct flow_action_entry *entry)
3731 {
3732 	flow_action_cookie_destroy(entry->user_cookie);
3733 }
3734 
3735 void tc_cleanup_offload_action(struct flow_action *flow_action)
3736 {
3737 	struct flow_action_entry *entry;
3738 	int i;
3739 
3740 	flow_action_for_each(i, entry, flow_action) {
3741 		tcf_act_put_user_cookie(entry);
3742 		if (entry->destructor)
3743 			entry->destructor(entry->destructor_priv);
3744 	}
3745 }
3746 EXPORT_SYMBOL(tc_cleanup_offload_action);
3747 
3748 static int tc_setup_offload_act(struct tc_action *act,
3749 				struct flow_action_entry *entry,
3750 				u32 *index_inc,
3751 				struct netlink_ext_ack *extack)
3752 {
3753 #ifdef CONFIG_NET_CLS_ACT
3754 	if (act->ops->offload_act_setup) {
3755 		return act->ops->offload_act_setup(act, entry, index_inc, true,
3756 						   extack);
3757 	} else {
3758 		NL_SET_ERR_MSG(extack, "Action does not support offload");
3759 		return -EOPNOTSUPP;
3760 	}
3761 #else
3762 	return 0;
3763 #endif
3764 }
3765 
3766 int tc_setup_action(struct flow_action *flow_action,
3767 		    struct tc_action *actions[],
3768 		    u32 miss_cookie_base,
3769 		    struct netlink_ext_ack *extack)
3770 {
3771 	int i, j, k, index, err = 0;
3772 	struct tc_action *act;
3773 
3774 	BUILD_BUG_ON(TCA_ACT_HW_STATS_ANY != FLOW_ACTION_HW_STATS_ANY);
3775 	BUILD_BUG_ON(TCA_ACT_HW_STATS_IMMEDIATE != FLOW_ACTION_HW_STATS_IMMEDIATE);
3776 	BUILD_BUG_ON(TCA_ACT_HW_STATS_DELAYED != FLOW_ACTION_HW_STATS_DELAYED);
3777 
3778 	if (!actions)
3779 		return 0;
3780 
3781 	j = 0;
3782 	tcf_act_for_each_action(i, act, actions) {
3783 		struct flow_action_entry *entry;
3784 
3785 		entry = &flow_action->entries[j];
3786 		spin_lock_bh(&act->tcfa_lock);
3787 		err = tcf_act_get_user_cookie(entry, act);
3788 		if (err)
3789 			goto err_out_locked;
3790 
3791 		index = 0;
3792 		err = tc_setup_offload_act(act, entry, &index, extack);
3793 		if (err)
3794 			goto err_out_locked;
3795 
3796 		for (k = 0; k < index ; k++) {
3797 			entry[k].hw_stats = tc_act_hw_stats(act->hw_stats);
3798 			entry[k].hw_index = act->tcfa_index;
3799 			entry[k].cookie = (unsigned long)act;
3800 			entry[k].miss_cookie =
3801 				tcf_exts_miss_cookie_get(miss_cookie_base, i);
3802 		}
3803 
3804 		j += index;
3805 
3806 		spin_unlock_bh(&act->tcfa_lock);
3807 	}
3808 
3809 err_out:
3810 	if (err)
3811 		tc_cleanup_offload_action(flow_action);
3812 
3813 	return err;
3814 err_out_locked:
3815 	spin_unlock_bh(&act->tcfa_lock);
3816 	goto err_out;
3817 }
3818 
3819 int tc_setup_offload_action(struct flow_action *flow_action,
3820 			    const struct tcf_exts *exts,
3821 			    struct netlink_ext_ack *extack)
3822 {
3823 #ifdef CONFIG_NET_CLS_ACT
3824 	u32 miss_cookie_base;
3825 
3826 	if (!exts)
3827 		return 0;
3828 
3829 	miss_cookie_base = exts->miss_cookie_node ?
3830 			   exts->miss_cookie_node->miss_cookie_base : 0;
3831 	return tc_setup_action(flow_action, exts->actions, miss_cookie_base,
3832 			       extack);
3833 #else
3834 	return 0;
3835 #endif
3836 }
3837 EXPORT_SYMBOL(tc_setup_offload_action);
3838 
3839 unsigned int tcf_exts_num_actions(struct tcf_exts *exts)
3840 {
3841 	unsigned int num_acts = 0;
3842 	struct tc_action *act;
3843 	int i;
3844 
3845 	tcf_exts_for_each_action(i, act, exts) {
3846 		if (is_tcf_pedit(act))
3847 			num_acts += tcf_pedit_nkeys(act);
3848 		else
3849 			num_acts++;
3850 	}
3851 	return num_acts;
3852 }
3853 EXPORT_SYMBOL(tcf_exts_num_actions);
3854 
3855 #ifdef CONFIG_NET_CLS_ACT
3856 static int tcf_qevent_parse_block_index(struct nlattr *block_index_attr,
3857 					u32 *p_block_index,
3858 					struct netlink_ext_ack *extack)
3859 {
3860 	*p_block_index = nla_get_u32(block_index_attr);
3861 	if (!*p_block_index) {
3862 		NL_SET_ERR_MSG(extack, "Block number may not be zero");
3863 		return -EINVAL;
3864 	}
3865 
3866 	return 0;
3867 }
3868 
3869 int tcf_qevent_init(struct tcf_qevent *qe, struct Qdisc *sch,
3870 		    enum flow_block_binder_type binder_type,
3871 		    struct nlattr *block_index_attr,
3872 		    struct netlink_ext_ack *extack)
3873 {
3874 	u32 block_index;
3875 	int err;
3876 
3877 	if (!block_index_attr)
3878 		return 0;
3879 
3880 	err = tcf_qevent_parse_block_index(block_index_attr, &block_index, extack);
3881 	if (err)
3882 		return err;
3883 
3884 	qe->info.binder_type = binder_type;
3885 	qe->info.chain_head_change = tcf_chain_head_change_dflt;
3886 	qe->info.chain_head_change_priv = &qe->filter_chain;
3887 	qe->info.block_index = block_index;
3888 
3889 	return tcf_block_get_ext(&qe->block, sch, &qe->info, extack);
3890 }
3891 EXPORT_SYMBOL(tcf_qevent_init);
3892 
3893 void tcf_qevent_destroy(struct tcf_qevent *qe, struct Qdisc *sch)
3894 {
3895 	if (qe->info.block_index)
3896 		tcf_block_put_ext(qe->block, sch, &qe->info);
3897 }
3898 EXPORT_SYMBOL(tcf_qevent_destroy);
3899 
3900 int tcf_qevent_validate_change(struct tcf_qevent *qe, struct nlattr *block_index_attr,
3901 			       struct netlink_ext_ack *extack)
3902 {
3903 	u32 block_index;
3904 	int err;
3905 
3906 	if (!block_index_attr)
3907 		return 0;
3908 
3909 	err = tcf_qevent_parse_block_index(block_index_attr, &block_index, extack);
3910 	if (err)
3911 		return err;
3912 
3913 	/* Bounce newly-configured block or change in block. */
3914 	if (block_index != qe->info.block_index) {
3915 		NL_SET_ERR_MSG(extack, "Change of blocks is not supported");
3916 		return -EINVAL;
3917 	}
3918 
3919 	return 0;
3920 }
3921 EXPORT_SYMBOL(tcf_qevent_validate_change);
3922 
3923 struct sk_buff *tcf_qevent_handle(struct tcf_qevent *qe, struct Qdisc *sch, struct sk_buff *skb,
3924 				  struct sk_buff **to_free, int *ret)
3925 {
3926 	struct tcf_result cl_res;
3927 	struct tcf_proto *fl;
3928 
3929 	if (!qe->info.block_index)
3930 		return skb;
3931 
3932 	fl = rcu_dereference_bh(qe->filter_chain);
3933 
3934 	switch (tcf_classify(skb, NULL, fl, &cl_res, false)) {
3935 	case TC_ACT_SHOT:
3936 		qdisc_qstats_drop(sch);
3937 		__qdisc_drop(skb, to_free);
3938 		*ret = __NET_XMIT_BYPASS;
3939 		return NULL;
3940 	case TC_ACT_STOLEN:
3941 	case TC_ACT_QUEUED:
3942 	case TC_ACT_TRAP:
3943 		__qdisc_drop(skb, to_free);
3944 		*ret = __NET_XMIT_STOLEN;
3945 		return NULL;
3946 	case TC_ACT_REDIRECT:
3947 		skb_do_redirect(skb);
3948 		*ret = __NET_XMIT_STOLEN;
3949 		return NULL;
3950 	}
3951 
3952 	return skb;
3953 }
3954 EXPORT_SYMBOL(tcf_qevent_handle);
3955 
3956 int tcf_qevent_dump(struct sk_buff *skb, int attr_name, struct tcf_qevent *qe)
3957 {
3958 	if (!qe->info.block_index)
3959 		return 0;
3960 	return nla_put_u32(skb, attr_name, qe->info.block_index);
3961 }
3962 EXPORT_SYMBOL(tcf_qevent_dump);
3963 #endif
3964 
3965 static __net_init int tcf_net_init(struct net *net)
3966 {
3967 	struct tcf_net *tn = net_generic(net, tcf_net_id);
3968 
3969 	spin_lock_init(&tn->idr_lock);
3970 	idr_init(&tn->idr);
3971 	return 0;
3972 }
3973 
3974 static void __net_exit tcf_net_exit(struct net *net)
3975 {
3976 	struct tcf_net *tn = net_generic(net, tcf_net_id);
3977 
3978 	idr_destroy(&tn->idr);
3979 }
3980 
3981 static struct pernet_operations tcf_net_ops = {
3982 	.init = tcf_net_init,
3983 	.exit = tcf_net_exit,
3984 	.id   = &tcf_net_id,
3985 	.size = sizeof(struct tcf_net),
3986 };
3987 
3988 static int __init tc_filter_init(void)
3989 {
3990 	int err;
3991 
3992 	tc_filter_wq = alloc_ordered_workqueue("tc_filter_workqueue", 0);
3993 	if (!tc_filter_wq)
3994 		return -ENOMEM;
3995 
3996 	err = register_pernet_subsys(&tcf_net_ops);
3997 	if (err)
3998 		goto err_register_pernet_subsys;
3999 
4000 	xa_init_flags(&tcf_exts_miss_cookies_xa, XA_FLAGS_ALLOC1);
4001 
4002 	rtnl_register(PF_UNSPEC, RTM_NEWTFILTER, tc_new_tfilter, NULL,
4003 		      RTNL_FLAG_DOIT_UNLOCKED);
4004 	rtnl_register(PF_UNSPEC, RTM_DELTFILTER, tc_del_tfilter, NULL,
4005 		      RTNL_FLAG_DOIT_UNLOCKED);
4006 	rtnl_register(PF_UNSPEC, RTM_GETTFILTER, tc_get_tfilter,
4007 		      tc_dump_tfilter, RTNL_FLAG_DOIT_UNLOCKED);
4008 	rtnl_register(PF_UNSPEC, RTM_NEWCHAIN, tc_ctl_chain, NULL, 0);
4009 	rtnl_register(PF_UNSPEC, RTM_DELCHAIN, tc_ctl_chain, NULL, 0);
4010 	rtnl_register(PF_UNSPEC, RTM_GETCHAIN, tc_ctl_chain,
4011 		      tc_dump_chain, 0);
4012 
4013 	return 0;
4014 
4015 err_register_pernet_subsys:
4016 	destroy_workqueue(tc_filter_wq);
4017 	return err;
4018 }
4019 
4020 subsys_initcall(tc_filter_init);
4021