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