Linux Audio

Check our new training course

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