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