1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * net/sched/cls_flower.c Flower classifier 4 * 5 * Copyright (c) 2015 Jiri Pirko <jiri@resnulli.us> 6 */ 7 8 #include <linux/kernel.h> 9 #include <linux/init.h> 10 #include <linux/module.h> 11 #include <linux/rhashtable.h> 12 #include <linux/workqueue.h> 13 #include <linux/refcount.h> 14 15 #include <linux/if_ether.h> 16 #include <linux/in6.h> 17 #include <linux/ip.h> 18 #include <linux/mpls.h> 19 20 #include <net/sch_generic.h> 21 #include <net/pkt_cls.h> 22 #include <net/ip.h> 23 #include <net/flow_dissector.h> 24 #include <net/geneve.h> 25 26 #include <net/dst.h> 27 #include <net/dst_metadata.h> 28 29 struct fl_flow_key { 30 int indev_ifindex; 31 struct flow_dissector_key_control control; 32 struct flow_dissector_key_control enc_control; 33 struct flow_dissector_key_basic basic; 34 struct flow_dissector_key_eth_addrs eth; 35 struct flow_dissector_key_vlan vlan; 36 struct flow_dissector_key_vlan cvlan; 37 union { 38 struct flow_dissector_key_ipv4_addrs ipv4; 39 struct flow_dissector_key_ipv6_addrs ipv6; 40 }; 41 struct flow_dissector_key_ports tp; 42 struct flow_dissector_key_icmp icmp; 43 struct flow_dissector_key_arp arp; 44 struct flow_dissector_key_keyid enc_key_id; 45 union { 46 struct flow_dissector_key_ipv4_addrs enc_ipv4; 47 struct flow_dissector_key_ipv6_addrs enc_ipv6; 48 }; 49 struct flow_dissector_key_ports enc_tp; 50 struct flow_dissector_key_mpls mpls; 51 struct flow_dissector_key_tcp tcp; 52 struct flow_dissector_key_ip ip; 53 struct flow_dissector_key_ip enc_ip; 54 struct flow_dissector_key_enc_opts enc_opts; 55 struct flow_dissector_key_ports tp_min; 56 struct flow_dissector_key_ports tp_max; 57 } __aligned(BITS_PER_LONG / 8); /* Ensure that we can do comparisons as longs. */ 58 59 struct fl_flow_mask_range { 60 unsigned short int start; 61 unsigned short int end; 62 }; 63 64 struct fl_flow_mask { 65 struct fl_flow_key key; 66 struct fl_flow_mask_range range; 67 u32 flags; 68 struct rhash_head ht_node; 69 struct rhashtable ht; 70 struct rhashtable_params filter_ht_params; 71 struct flow_dissector dissector; 72 struct list_head filters; 73 struct rcu_work rwork; 74 struct list_head list; 75 refcount_t refcnt; 76 }; 77 78 struct fl_flow_tmplt { 79 struct fl_flow_key dummy_key; 80 struct fl_flow_key mask; 81 struct flow_dissector dissector; 82 struct tcf_chain *chain; 83 }; 84 85 struct cls_fl_head { 86 struct rhashtable ht; 87 spinlock_t masks_lock; /* Protect masks list */ 88 struct list_head masks; 89 struct list_head hw_filters; 90 struct rcu_work rwork; 91 struct idr handle_idr; 92 }; 93 94 struct cls_fl_filter { 95 struct fl_flow_mask *mask; 96 struct rhash_head ht_node; 97 struct fl_flow_key mkey; 98 struct tcf_exts exts; 99 struct tcf_result res; 100 struct fl_flow_key key; 101 struct list_head list; 102 struct list_head hw_list; 103 u32 handle; 104 u32 flags; 105 u32 in_hw_count; 106 struct rcu_work rwork; 107 struct net_device *hw_dev; 108 /* Flower classifier is unlocked, which means that its reference counter 109 * can be changed concurrently without any kind of external 110 * synchronization. Use atomic reference counter to be concurrency-safe. 111 */ 112 refcount_t refcnt; 113 bool deleted; 114 }; 115 116 static const struct rhashtable_params mask_ht_params = { 117 .key_offset = offsetof(struct fl_flow_mask, key), 118 .key_len = sizeof(struct fl_flow_key), 119 .head_offset = offsetof(struct fl_flow_mask, ht_node), 120 .automatic_shrinking = true, 121 }; 122 123 static unsigned short int fl_mask_range(const struct fl_flow_mask *mask) 124 { 125 return mask->range.end - mask->range.start; 126 } 127 128 static void fl_mask_update_range(struct fl_flow_mask *mask) 129 { 130 const u8 *bytes = (const u8 *) &mask->key; 131 size_t size = sizeof(mask->key); 132 size_t i, first = 0, last; 133 134 for (i = 0; i < size; i++) { 135 if (bytes[i]) { 136 first = i; 137 break; 138 } 139 } 140 last = first; 141 for (i = size - 1; i != first; i--) { 142 if (bytes[i]) { 143 last = i; 144 break; 145 } 146 } 147 mask->range.start = rounddown(first, sizeof(long)); 148 mask->range.end = roundup(last + 1, sizeof(long)); 149 } 150 151 static void *fl_key_get_start(struct fl_flow_key *key, 152 const struct fl_flow_mask *mask) 153 { 154 return (u8 *) key + mask->range.start; 155 } 156 157 static void fl_set_masked_key(struct fl_flow_key *mkey, struct fl_flow_key *key, 158 struct fl_flow_mask *mask) 159 { 160 const long *lkey = fl_key_get_start(key, mask); 161 const long *lmask = fl_key_get_start(&mask->key, mask); 162 long *lmkey = fl_key_get_start(mkey, mask); 163 int i; 164 165 for (i = 0; i < fl_mask_range(mask); i += sizeof(long)) 166 *lmkey++ = *lkey++ & *lmask++; 167 } 168 169 static bool fl_mask_fits_tmplt(struct fl_flow_tmplt *tmplt, 170 struct fl_flow_mask *mask) 171 { 172 const long *lmask = fl_key_get_start(&mask->key, mask); 173 const long *ltmplt; 174 int i; 175 176 if (!tmplt) 177 return true; 178 ltmplt = fl_key_get_start(&tmplt->mask, mask); 179 for (i = 0; i < fl_mask_range(mask); i += sizeof(long)) { 180 if (~*ltmplt++ & *lmask++) 181 return false; 182 } 183 return true; 184 } 185 186 static void fl_clear_masked_range(struct fl_flow_key *key, 187 struct fl_flow_mask *mask) 188 { 189 memset(fl_key_get_start(key, mask), 0, fl_mask_range(mask)); 190 } 191 192 static bool fl_range_port_dst_cmp(struct cls_fl_filter *filter, 193 struct fl_flow_key *key, 194 struct fl_flow_key *mkey) 195 { 196 __be16 min_mask, max_mask, min_val, max_val; 197 198 min_mask = htons(filter->mask->key.tp_min.dst); 199 max_mask = htons(filter->mask->key.tp_max.dst); 200 min_val = htons(filter->key.tp_min.dst); 201 max_val = htons(filter->key.tp_max.dst); 202 203 if (min_mask && max_mask) { 204 if (htons(key->tp.dst) < min_val || 205 htons(key->tp.dst) > max_val) 206 return false; 207 208 /* skb does not have min and max values */ 209 mkey->tp_min.dst = filter->mkey.tp_min.dst; 210 mkey->tp_max.dst = filter->mkey.tp_max.dst; 211 } 212 return true; 213 } 214 215 static bool fl_range_port_src_cmp(struct cls_fl_filter *filter, 216 struct fl_flow_key *key, 217 struct fl_flow_key *mkey) 218 { 219 __be16 min_mask, max_mask, min_val, max_val; 220 221 min_mask = htons(filter->mask->key.tp_min.src); 222 max_mask = htons(filter->mask->key.tp_max.src); 223 min_val = htons(filter->key.tp_min.src); 224 max_val = htons(filter->key.tp_max.src); 225 226 if (min_mask && max_mask) { 227 if (htons(key->tp.src) < min_val || 228 htons(key->tp.src) > max_val) 229 return false; 230 231 /* skb does not have min and max values */ 232 mkey->tp_min.src = filter->mkey.tp_min.src; 233 mkey->tp_max.src = filter->mkey.tp_max.src; 234 } 235 return true; 236 } 237 238 static struct cls_fl_filter *__fl_lookup(struct fl_flow_mask *mask, 239 struct fl_flow_key *mkey) 240 { 241 return rhashtable_lookup_fast(&mask->ht, fl_key_get_start(mkey, mask), 242 mask->filter_ht_params); 243 } 244 245 static struct cls_fl_filter *fl_lookup_range(struct fl_flow_mask *mask, 246 struct fl_flow_key *mkey, 247 struct fl_flow_key *key) 248 { 249 struct cls_fl_filter *filter, *f; 250 251 list_for_each_entry_rcu(filter, &mask->filters, list) { 252 if (!fl_range_port_dst_cmp(filter, key, mkey)) 253 continue; 254 255 if (!fl_range_port_src_cmp(filter, key, mkey)) 256 continue; 257 258 f = __fl_lookup(mask, mkey); 259 if (f) 260 return f; 261 } 262 return NULL; 263 } 264 265 static struct cls_fl_filter *fl_lookup(struct fl_flow_mask *mask, 266 struct fl_flow_key *mkey, 267 struct fl_flow_key *key) 268 { 269 if ((mask->flags & TCA_FLOWER_MASK_FLAGS_RANGE)) 270 return fl_lookup_range(mask, mkey, key); 271 272 return __fl_lookup(mask, mkey); 273 } 274 275 static int fl_classify(struct sk_buff *skb, const struct tcf_proto *tp, 276 struct tcf_result *res) 277 { 278 struct cls_fl_head *head = rcu_dereference_bh(tp->root); 279 struct cls_fl_filter *f; 280 struct fl_flow_mask *mask; 281 struct fl_flow_key skb_key; 282 struct fl_flow_key skb_mkey; 283 284 list_for_each_entry_rcu(mask, &head->masks, list) { 285 fl_clear_masked_range(&skb_key, mask); 286 287 skb_key.indev_ifindex = skb->skb_iif; 288 /* skb_flow_dissect() does not set n_proto in case an unknown 289 * protocol, so do it rather here. 290 */ 291 skb_key.basic.n_proto = skb->protocol; 292 skb_flow_dissect_tunnel_info(skb, &mask->dissector, &skb_key); 293 skb_flow_dissect(skb, &mask->dissector, &skb_key, 0); 294 295 fl_set_masked_key(&skb_mkey, &skb_key, mask); 296 297 f = fl_lookup(mask, &skb_mkey, &skb_key); 298 if (f && !tc_skip_sw(f->flags)) { 299 *res = f->res; 300 return tcf_exts_exec(skb, &f->exts, res); 301 } 302 } 303 return -1; 304 } 305 306 static int fl_init(struct tcf_proto *tp) 307 { 308 struct cls_fl_head *head; 309 310 head = kzalloc(sizeof(*head), GFP_KERNEL); 311 if (!head) 312 return -ENOBUFS; 313 314 spin_lock_init(&head->masks_lock); 315 INIT_LIST_HEAD_RCU(&head->masks); 316 INIT_LIST_HEAD(&head->hw_filters); 317 rcu_assign_pointer(tp->root, head); 318 idr_init(&head->handle_idr); 319 320 return rhashtable_init(&head->ht, &mask_ht_params); 321 } 322 323 static void fl_mask_free(struct fl_flow_mask *mask, bool mask_init_done) 324 { 325 /* temporary masks don't have their filters list and ht initialized */ 326 if (mask_init_done) { 327 WARN_ON(!list_empty(&mask->filters)); 328 rhashtable_destroy(&mask->ht); 329 } 330 kfree(mask); 331 } 332 333 static void fl_mask_free_work(struct work_struct *work) 334 { 335 struct fl_flow_mask *mask = container_of(to_rcu_work(work), 336 struct fl_flow_mask, rwork); 337 338 fl_mask_free(mask, true); 339 } 340 341 static void fl_uninit_mask_free_work(struct work_struct *work) 342 { 343 struct fl_flow_mask *mask = container_of(to_rcu_work(work), 344 struct fl_flow_mask, rwork); 345 346 fl_mask_free(mask, false); 347 } 348 349 static bool fl_mask_put(struct cls_fl_head *head, struct fl_flow_mask *mask) 350 { 351 if (!refcount_dec_and_test(&mask->refcnt)) 352 return false; 353 354 rhashtable_remove_fast(&head->ht, &mask->ht_node, mask_ht_params); 355 356 spin_lock(&head->masks_lock); 357 list_del_rcu(&mask->list); 358 spin_unlock(&head->masks_lock); 359 360 tcf_queue_work(&mask->rwork, fl_mask_free_work); 361 362 return true; 363 } 364 365 static struct cls_fl_head *fl_head_dereference(struct tcf_proto *tp) 366 { 367 /* Flower classifier only changes root pointer during init and destroy. 368 * Users must obtain reference to tcf_proto instance before calling its 369 * API, so tp->root pointer is protected from concurrent call to 370 * fl_destroy() by reference counting. 371 */ 372 return rcu_dereference_raw(tp->root); 373 } 374 375 static void __fl_destroy_filter(struct cls_fl_filter *f) 376 { 377 tcf_exts_destroy(&f->exts); 378 tcf_exts_put_net(&f->exts); 379 kfree(f); 380 } 381 382 static void fl_destroy_filter_work(struct work_struct *work) 383 { 384 struct cls_fl_filter *f = container_of(to_rcu_work(work), 385 struct cls_fl_filter, rwork); 386 387 __fl_destroy_filter(f); 388 } 389 390 static void fl_hw_destroy_filter(struct tcf_proto *tp, struct cls_fl_filter *f, 391 bool rtnl_held, struct netlink_ext_ack *extack) 392 { 393 struct tc_cls_flower_offload cls_flower = {}; 394 struct tcf_block *block = tp->chain->block; 395 396 if (!rtnl_held) 397 rtnl_lock(); 398 399 tc_cls_common_offload_init(&cls_flower.common, tp, f->flags, extack); 400 cls_flower.command = TC_CLSFLOWER_DESTROY; 401 cls_flower.cookie = (unsigned long) f; 402 403 tc_setup_cb_call(block, TC_SETUP_CLSFLOWER, &cls_flower, false); 404 spin_lock(&tp->lock); 405 list_del_init(&f->hw_list); 406 tcf_block_offload_dec(block, &f->flags); 407 spin_unlock(&tp->lock); 408 409 if (!rtnl_held) 410 rtnl_unlock(); 411 } 412 413 static int fl_hw_replace_filter(struct tcf_proto *tp, 414 struct cls_fl_filter *f, bool rtnl_held, 415 struct netlink_ext_ack *extack) 416 { 417 struct cls_fl_head *head = fl_head_dereference(tp); 418 struct tc_cls_flower_offload cls_flower = {}; 419 struct tcf_block *block = tp->chain->block; 420 bool skip_sw = tc_skip_sw(f->flags); 421 int err = 0; 422 423 if (!rtnl_held) 424 rtnl_lock(); 425 426 cls_flower.rule = flow_rule_alloc(tcf_exts_num_actions(&f->exts)); 427 if (!cls_flower.rule) { 428 err = -ENOMEM; 429 goto errout; 430 } 431 432 tc_cls_common_offload_init(&cls_flower.common, tp, f->flags, extack); 433 cls_flower.command = TC_CLSFLOWER_REPLACE; 434 cls_flower.cookie = (unsigned long) f; 435 cls_flower.rule->match.dissector = &f->mask->dissector; 436 cls_flower.rule->match.mask = &f->mask->key; 437 cls_flower.rule->match.key = &f->mkey; 438 cls_flower.classid = f->res.classid; 439 440 err = tc_setup_flow_action(&cls_flower.rule->action, &f->exts); 441 if (err) { 442 kfree(cls_flower.rule); 443 if (skip_sw) 444 NL_SET_ERR_MSG_MOD(extack, "Failed to setup flow action"); 445 else 446 err = 0; 447 goto errout; 448 } 449 450 err = tc_setup_cb_call(block, TC_SETUP_CLSFLOWER, &cls_flower, skip_sw); 451 kfree(cls_flower.rule); 452 453 if (err < 0) { 454 fl_hw_destroy_filter(tp, f, true, NULL); 455 goto errout; 456 } else if (err > 0) { 457 f->in_hw_count = err; 458 err = 0; 459 spin_lock(&tp->lock); 460 tcf_block_offload_inc(block, &f->flags); 461 spin_unlock(&tp->lock); 462 } 463 464 if (skip_sw && !(f->flags & TCA_CLS_FLAGS_IN_HW)) { 465 err = -EINVAL; 466 goto errout; 467 } 468 469 spin_lock(&tp->lock); 470 list_add(&f->hw_list, &head->hw_filters); 471 spin_unlock(&tp->lock); 472 errout: 473 if (!rtnl_held) 474 rtnl_unlock(); 475 476 return err; 477 } 478 479 static void fl_hw_update_stats(struct tcf_proto *tp, struct cls_fl_filter *f, 480 bool rtnl_held) 481 { 482 struct tc_cls_flower_offload cls_flower = {}; 483 struct tcf_block *block = tp->chain->block; 484 485 if (!rtnl_held) 486 rtnl_lock(); 487 488 tc_cls_common_offload_init(&cls_flower.common, tp, f->flags, NULL); 489 cls_flower.command = TC_CLSFLOWER_STATS; 490 cls_flower.cookie = (unsigned long) f; 491 cls_flower.classid = f->res.classid; 492 493 tc_setup_cb_call(block, TC_SETUP_CLSFLOWER, &cls_flower, false); 494 495 tcf_exts_stats_update(&f->exts, cls_flower.stats.bytes, 496 cls_flower.stats.pkts, 497 cls_flower.stats.lastused); 498 499 if (!rtnl_held) 500 rtnl_unlock(); 501 } 502 503 static void __fl_put(struct cls_fl_filter *f) 504 { 505 if (!refcount_dec_and_test(&f->refcnt)) 506 return; 507 508 if (tcf_exts_get_net(&f->exts)) 509 tcf_queue_work(&f->rwork, fl_destroy_filter_work); 510 else 511 __fl_destroy_filter(f); 512 } 513 514 static struct cls_fl_filter *__fl_get(struct cls_fl_head *head, u32 handle) 515 { 516 struct cls_fl_filter *f; 517 518 rcu_read_lock(); 519 f = idr_find(&head->handle_idr, handle); 520 if (f && !refcount_inc_not_zero(&f->refcnt)) 521 f = NULL; 522 rcu_read_unlock(); 523 524 return f; 525 } 526 527 static struct cls_fl_filter *fl_get_next_filter(struct tcf_proto *tp, 528 unsigned long *handle) 529 { 530 struct cls_fl_head *head = fl_head_dereference(tp); 531 struct cls_fl_filter *f; 532 533 rcu_read_lock(); 534 while ((f = idr_get_next_ul(&head->handle_idr, handle))) { 535 /* don't return filters that are being deleted */ 536 if (refcount_inc_not_zero(&f->refcnt)) 537 break; 538 ++(*handle); 539 } 540 rcu_read_unlock(); 541 542 return f; 543 } 544 545 static int __fl_delete(struct tcf_proto *tp, struct cls_fl_filter *f, 546 bool *last, bool rtnl_held, 547 struct netlink_ext_ack *extack) 548 { 549 struct cls_fl_head *head = fl_head_dereference(tp); 550 551 *last = false; 552 553 spin_lock(&tp->lock); 554 if (f->deleted) { 555 spin_unlock(&tp->lock); 556 return -ENOENT; 557 } 558 559 f->deleted = true; 560 rhashtable_remove_fast(&f->mask->ht, &f->ht_node, 561 f->mask->filter_ht_params); 562 idr_remove(&head->handle_idr, f->handle); 563 list_del_rcu(&f->list); 564 spin_unlock(&tp->lock); 565 566 *last = fl_mask_put(head, f->mask); 567 if (!tc_skip_hw(f->flags)) 568 fl_hw_destroy_filter(tp, f, rtnl_held, extack); 569 tcf_unbind_filter(tp, &f->res); 570 __fl_put(f); 571 572 return 0; 573 } 574 575 static void fl_destroy_sleepable(struct work_struct *work) 576 { 577 struct cls_fl_head *head = container_of(to_rcu_work(work), 578 struct cls_fl_head, 579 rwork); 580 581 rhashtable_destroy(&head->ht); 582 kfree(head); 583 module_put(THIS_MODULE); 584 } 585 586 static void fl_destroy(struct tcf_proto *tp, bool rtnl_held, 587 struct netlink_ext_ack *extack) 588 { 589 struct cls_fl_head *head = fl_head_dereference(tp); 590 struct fl_flow_mask *mask, *next_mask; 591 struct cls_fl_filter *f, *next; 592 bool last; 593 594 list_for_each_entry_safe(mask, next_mask, &head->masks, list) { 595 list_for_each_entry_safe(f, next, &mask->filters, list) { 596 __fl_delete(tp, f, &last, rtnl_held, extack); 597 if (last) 598 break; 599 } 600 } 601 idr_destroy(&head->handle_idr); 602 603 __module_get(THIS_MODULE); 604 tcf_queue_work(&head->rwork, fl_destroy_sleepable); 605 } 606 607 static void fl_put(struct tcf_proto *tp, void *arg) 608 { 609 struct cls_fl_filter *f = arg; 610 611 __fl_put(f); 612 } 613 614 static void *fl_get(struct tcf_proto *tp, u32 handle) 615 { 616 struct cls_fl_head *head = fl_head_dereference(tp); 617 618 return __fl_get(head, handle); 619 } 620 621 static const struct nla_policy fl_policy[TCA_FLOWER_MAX + 1] = { 622 [TCA_FLOWER_UNSPEC] = { .type = NLA_UNSPEC }, 623 [TCA_FLOWER_CLASSID] = { .type = NLA_U32 }, 624 [TCA_FLOWER_INDEV] = { .type = NLA_STRING, 625 .len = IFNAMSIZ }, 626 [TCA_FLOWER_KEY_ETH_DST] = { .len = ETH_ALEN }, 627 [TCA_FLOWER_KEY_ETH_DST_MASK] = { .len = ETH_ALEN }, 628 [TCA_FLOWER_KEY_ETH_SRC] = { .len = ETH_ALEN }, 629 [TCA_FLOWER_KEY_ETH_SRC_MASK] = { .len = ETH_ALEN }, 630 [TCA_FLOWER_KEY_ETH_TYPE] = { .type = NLA_U16 }, 631 [TCA_FLOWER_KEY_IP_PROTO] = { .type = NLA_U8 }, 632 [TCA_FLOWER_KEY_IPV4_SRC] = { .type = NLA_U32 }, 633 [TCA_FLOWER_KEY_IPV4_SRC_MASK] = { .type = NLA_U32 }, 634 [TCA_FLOWER_KEY_IPV4_DST] = { .type = NLA_U32 }, 635 [TCA_FLOWER_KEY_IPV4_DST_MASK] = { .type = NLA_U32 }, 636 [TCA_FLOWER_KEY_IPV6_SRC] = { .len = sizeof(struct in6_addr) }, 637 [TCA_FLOWER_KEY_IPV6_SRC_MASK] = { .len = sizeof(struct in6_addr) }, 638 [TCA_FLOWER_KEY_IPV6_DST] = { .len = sizeof(struct in6_addr) }, 639 [TCA_FLOWER_KEY_IPV6_DST_MASK] = { .len = sizeof(struct in6_addr) }, 640 [TCA_FLOWER_KEY_TCP_SRC] = { .type = NLA_U16 }, 641 [TCA_FLOWER_KEY_TCP_DST] = { .type = NLA_U16 }, 642 [TCA_FLOWER_KEY_UDP_SRC] = { .type = NLA_U16 }, 643 [TCA_FLOWER_KEY_UDP_DST] = { .type = NLA_U16 }, 644 [TCA_FLOWER_KEY_VLAN_ID] = { .type = NLA_U16 }, 645 [TCA_FLOWER_KEY_VLAN_PRIO] = { .type = NLA_U8 }, 646 [TCA_FLOWER_KEY_VLAN_ETH_TYPE] = { .type = NLA_U16 }, 647 [TCA_FLOWER_KEY_ENC_KEY_ID] = { .type = NLA_U32 }, 648 [TCA_FLOWER_KEY_ENC_IPV4_SRC] = { .type = NLA_U32 }, 649 [TCA_FLOWER_KEY_ENC_IPV4_SRC_MASK] = { .type = NLA_U32 }, 650 [TCA_FLOWER_KEY_ENC_IPV4_DST] = { .type = NLA_U32 }, 651 [TCA_FLOWER_KEY_ENC_IPV4_DST_MASK] = { .type = NLA_U32 }, 652 [TCA_FLOWER_KEY_ENC_IPV6_SRC] = { .len = sizeof(struct in6_addr) }, 653 [TCA_FLOWER_KEY_ENC_IPV6_SRC_MASK] = { .len = sizeof(struct in6_addr) }, 654 [TCA_FLOWER_KEY_ENC_IPV6_DST] = { .len = sizeof(struct in6_addr) }, 655 [TCA_FLOWER_KEY_ENC_IPV6_DST_MASK] = { .len = sizeof(struct in6_addr) }, 656 [TCA_FLOWER_KEY_TCP_SRC_MASK] = { .type = NLA_U16 }, 657 [TCA_FLOWER_KEY_TCP_DST_MASK] = { .type = NLA_U16 }, 658 [TCA_FLOWER_KEY_UDP_SRC_MASK] = { .type = NLA_U16 }, 659 [TCA_FLOWER_KEY_UDP_DST_MASK] = { .type = NLA_U16 }, 660 [TCA_FLOWER_KEY_SCTP_SRC_MASK] = { .type = NLA_U16 }, 661 [TCA_FLOWER_KEY_SCTP_DST_MASK] = { .type = NLA_U16 }, 662 [TCA_FLOWER_KEY_SCTP_SRC] = { .type = NLA_U16 }, 663 [TCA_FLOWER_KEY_SCTP_DST] = { .type = NLA_U16 }, 664 [TCA_FLOWER_KEY_ENC_UDP_SRC_PORT] = { .type = NLA_U16 }, 665 [TCA_FLOWER_KEY_ENC_UDP_SRC_PORT_MASK] = { .type = NLA_U16 }, 666 [TCA_FLOWER_KEY_ENC_UDP_DST_PORT] = { .type = NLA_U16 }, 667 [TCA_FLOWER_KEY_ENC_UDP_DST_PORT_MASK] = { .type = NLA_U16 }, 668 [TCA_FLOWER_KEY_FLAGS] = { .type = NLA_U32 }, 669 [TCA_FLOWER_KEY_FLAGS_MASK] = { .type = NLA_U32 }, 670 [TCA_FLOWER_KEY_ICMPV4_TYPE] = { .type = NLA_U8 }, 671 [TCA_FLOWER_KEY_ICMPV4_TYPE_MASK] = { .type = NLA_U8 }, 672 [TCA_FLOWER_KEY_ICMPV4_CODE] = { .type = NLA_U8 }, 673 [TCA_FLOWER_KEY_ICMPV4_CODE_MASK] = { .type = NLA_U8 }, 674 [TCA_FLOWER_KEY_ICMPV6_TYPE] = { .type = NLA_U8 }, 675 [TCA_FLOWER_KEY_ICMPV6_TYPE_MASK] = { .type = NLA_U8 }, 676 [TCA_FLOWER_KEY_ICMPV6_CODE] = { .type = NLA_U8 }, 677 [TCA_FLOWER_KEY_ICMPV6_CODE_MASK] = { .type = NLA_U8 }, 678 [TCA_FLOWER_KEY_ARP_SIP] = { .type = NLA_U32 }, 679 [TCA_FLOWER_KEY_ARP_SIP_MASK] = { .type = NLA_U32 }, 680 [TCA_FLOWER_KEY_ARP_TIP] = { .type = NLA_U32 }, 681 [TCA_FLOWER_KEY_ARP_TIP_MASK] = { .type = NLA_U32 }, 682 [TCA_FLOWER_KEY_ARP_OP] = { .type = NLA_U8 }, 683 [TCA_FLOWER_KEY_ARP_OP_MASK] = { .type = NLA_U8 }, 684 [TCA_FLOWER_KEY_ARP_SHA] = { .len = ETH_ALEN }, 685 [TCA_FLOWER_KEY_ARP_SHA_MASK] = { .len = ETH_ALEN }, 686 [TCA_FLOWER_KEY_ARP_THA] = { .len = ETH_ALEN }, 687 [TCA_FLOWER_KEY_ARP_THA_MASK] = { .len = ETH_ALEN }, 688 [TCA_FLOWER_KEY_MPLS_TTL] = { .type = NLA_U8 }, 689 [TCA_FLOWER_KEY_MPLS_BOS] = { .type = NLA_U8 }, 690 [TCA_FLOWER_KEY_MPLS_TC] = { .type = NLA_U8 }, 691 [TCA_FLOWER_KEY_MPLS_LABEL] = { .type = NLA_U32 }, 692 [TCA_FLOWER_KEY_TCP_FLAGS] = { .type = NLA_U16 }, 693 [TCA_FLOWER_KEY_TCP_FLAGS_MASK] = { .type = NLA_U16 }, 694 [TCA_FLOWER_KEY_IP_TOS] = { .type = NLA_U8 }, 695 [TCA_FLOWER_KEY_IP_TOS_MASK] = { .type = NLA_U8 }, 696 [TCA_FLOWER_KEY_IP_TTL] = { .type = NLA_U8 }, 697 [TCA_FLOWER_KEY_IP_TTL_MASK] = { .type = NLA_U8 }, 698 [TCA_FLOWER_KEY_CVLAN_ID] = { .type = NLA_U16 }, 699 [TCA_FLOWER_KEY_CVLAN_PRIO] = { .type = NLA_U8 }, 700 [TCA_FLOWER_KEY_CVLAN_ETH_TYPE] = { .type = NLA_U16 }, 701 [TCA_FLOWER_KEY_ENC_IP_TOS] = { .type = NLA_U8 }, 702 [TCA_FLOWER_KEY_ENC_IP_TOS_MASK] = { .type = NLA_U8 }, 703 [TCA_FLOWER_KEY_ENC_IP_TTL] = { .type = NLA_U8 }, 704 [TCA_FLOWER_KEY_ENC_IP_TTL_MASK] = { .type = NLA_U8 }, 705 [TCA_FLOWER_KEY_ENC_OPTS] = { .type = NLA_NESTED }, 706 [TCA_FLOWER_KEY_ENC_OPTS_MASK] = { .type = NLA_NESTED }, 707 }; 708 709 static const struct nla_policy 710 enc_opts_policy[TCA_FLOWER_KEY_ENC_OPTS_MAX + 1] = { 711 [TCA_FLOWER_KEY_ENC_OPTS_GENEVE] = { .type = NLA_NESTED }, 712 }; 713 714 static const struct nla_policy 715 geneve_opt_policy[TCA_FLOWER_KEY_ENC_OPT_GENEVE_MAX + 1] = { 716 [TCA_FLOWER_KEY_ENC_OPT_GENEVE_CLASS] = { .type = NLA_U16 }, 717 [TCA_FLOWER_KEY_ENC_OPT_GENEVE_TYPE] = { .type = NLA_U8 }, 718 [TCA_FLOWER_KEY_ENC_OPT_GENEVE_DATA] = { .type = NLA_BINARY, 719 .len = 128 }, 720 }; 721 722 static void fl_set_key_val(struct nlattr **tb, 723 void *val, int val_type, 724 void *mask, int mask_type, int len) 725 { 726 if (!tb[val_type]) 727 return; 728 memcpy(val, nla_data(tb[val_type]), len); 729 if (mask_type == TCA_FLOWER_UNSPEC || !tb[mask_type]) 730 memset(mask, 0xff, len); 731 else 732 memcpy(mask, nla_data(tb[mask_type]), len); 733 } 734 735 static int fl_set_key_port_range(struct nlattr **tb, struct fl_flow_key *key, 736 struct fl_flow_key *mask) 737 { 738 fl_set_key_val(tb, &key->tp_min.dst, 739 TCA_FLOWER_KEY_PORT_DST_MIN, &mask->tp_min.dst, 740 TCA_FLOWER_UNSPEC, sizeof(key->tp_min.dst)); 741 fl_set_key_val(tb, &key->tp_max.dst, 742 TCA_FLOWER_KEY_PORT_DST_MAX, &mask->tp_max.dst, 743 TCA_FLOWER_UNSPEC, sizeof(key->tp_max.dst)); 744 fl_set_key_val(tb, &key->tp_min.src, 745 TCA_FLOWER_KEY_PORT_SRC_MIN, &mask->tp_min.src, 746 TCA_FLOWER_UNSPEC, sizeof(key->tp_min.src)); 747 fl_set_key_val(tb, &key->tp_max.src, 748 TCA_FLOWER_KEY_PORT_SRC_MAX, &mask->tp_max.src, 749 TCA_FLOWER_UNSPEC, sizeof(key->tp_max.src)); 750 751 if ((mask->tp_min.dst && mask->tp_max.dst && 752 htons(key->tp_max.dst) <= htons(key->tp_min.dst)) || 753 (mask->tp_min.src && mask->tp_max.src && 754 htons(key->tp_max.src) <= htons(key->tp_min.src))) 755 return -EINVAL; 756 757 return 0; 758 } 759 760 static int fl_set_key_mpls(struct nlattr **tb, 761 struct flow_dissector_key_mpls *key_val, 762 struct flow_dissector_key_mpls *key_mask) 763 { 764 if (tb[TCA_FLOWER_KEY_MPLS_TTL]) { 765 key_val->mpls_ttl = nla_get_u8(tb[TCA_FLOWER_KEY_MPLS_TTL]); 766 key_mask->mpls_ttl = MPLS_TTL_MASK; 767 } 768 if (tb[TCA_FLOWER_KEY_MPLS_BOS]) { 769 u8 bos = nla_get_u8(tb[TCA_FLOWER_KEY_MPLS_BOS]); 770 771 if (bos & ~MPLS_BOS_MASK) 772 return -EINVAL; 773 key_val->mpls_bos = bos; 774 key_mask->mpls_bos = MPLS_BOS_MASK; 775 } 776 if (tb[TCA_FLOWER_KEY_MPLS_TC]) { 777 u8 tc = nla_get_u8(tb[TCA_FLOWER_KEY_MPLS_TC]); 778 779 if (tc & ~MPLS_TC_MASK) 780 return -EINVAL; 781 key_val->mpls_tc = tc; 782 key_mask->mpls_tc = MPLS_TC_MASK; 783 } 784 if (tb[TCA_FLOWER_KEY_MPLS_LABEL]) { 785 u32 label = nla_get_u32(tb[TCA_FLOWER_KEY_MPLS_LABEL]); 786 787 if (label & ~MPLS_LABEL_MASK) 788 return -EINVAL; 789 key_val->mpls_label = label; 790 key_mask->mpls_label = MPLS_LABEL_MASK; 791 } 792 return 0; 793 } 794 795 static void fl_set_key_vlan(struct nlattr **tb, 796 __be16 ethertype, 797 int vlan_id_key, int vlan_prio_key, 798 struct flow_dissector_key_vlan *key_val, 799 struct flow_dissector_key_vlan *key_mask) 800 { 801 #define VLAN_PRIORITY_MASK 0x7 802 803 if (tb[vlan_id_key]) { 804 key_val->vlan_id = 805 nla_get_u16(tb[vlan_id_key]) & VLAN_VID_MASK; 806 key_mask->vlan_id = VLAN_VID_MASK; 807 } 808 if (tb[vlan_prio_key]) { 809 key_val->vlan_priority = 810 nla_get_u8(tb[vlan_prio_key]) & 811 VLAN_PRIORITY_MASK; 812 key_mask->vlan_priority = VLAN_PRIORITY_MASK; 813 } 814 key_val->vlan_tpid = ethertype; 815 key_mask->vlan_tpid = cpu_to_be16(~0); 816 } 817 818 static void fl_set_key_flag(u32 flower_key, u32 flower_mask, 819 u32 *dissector_key, u32 *dissector_mask, 820 u32 flower_flag_bit, u32 dissector_flag_bit) 821 { 822 if (flower_mask & flower_flag_bit) { 823 *dissector_mask |= dissector_flag_bit; 824 if (flower_key & flower_flag_bit) 825 *dissector_key |= dissector_flag_bit; 826 } 827 } 828 829 static int fl_set_key_flags(struct nlattr **tb, 830 u32 *flags_key, u32 *flags_mask) 831 { 832 u32 key, mask; 833 834 /* mask is mandatory for flags */ 835 if (!tb[TCA_FLOWER_KEY_FLAGS_MASK]) 836 return -EINVAL; 837 838 key = be32_to_cpu(nla_get_u32(tb[TCA_FLOWER_KEY_FLAGS])); 839 mask = be32_to_cpu(nla_get_u32(tb[TCA_FLOWER_KEY_FLAGS_MASK])); 840 841 *flags_key = 0; 842 *flags_mask = 0; 843 844 fl_set_key_flag(key, mask, flags_key, flags_mask, 845 TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT, FLOW_DIS_IS_FRAGMENT); 846 fl_set_key_flag(key, mask, flags_key, flags_mask, 847 TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST, 848 FLOW_DIS_FIRST_FRAG); 849 850 return 0; 851 } 852 853 static void fl_set_key_ip(struct nlattr **tb, bool encap, 854 struct flow_dissector_key_ip *key, 855 struct flow_dissector_key_ip *mask) 856 { 857 int tos_key = encap ? TCA_FLOWER_KEY_ENC_IP_TOS : TCA_FLOWER_KEY_IP_TOS; 858 int ttl_key = encap ? TCA_FLOWER_KEY_ENC_IP_TTL : TCA_FLOWER_KEY_IP_TTL; 859 int tos_mask = encap ? TCA_FLOWER_KEY_ENC_IP_TOS_MASK : TCA_FLOWER_KEY_IP_TOS_MASK; 860 int ttl_mask = encap ? TCA_FLOWER_KEY_ENC_IP_TTL_MASK : TCA_FLOWER_KEY_IP_TTL_MASK; 861 862 fl_set_key_val(tb, &key->tos, tos_key, &mask->tos, tos_mask, sizeof(key->tos)); 863 fl_set_key_val(tb, &key->ttl, ttl_key, &mask->ttl, ttl_mask, sizeof(key->ttl)); 864 } 865 866 static int fl_set_geneve_opt(const struct nlattr *nla, struct fl_flow_key *key, 867 int depth, int option_len, 868 struct netlink_ext_ack *extack) 869 { 870 struct nlattr *tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_MAX + 1]; 871 struct nlattr *class = NULL, *type = NULL, *data = NULL; 872 struct geneve_opt *opt; 873 int err, data_len = 0; 874 875 if (option_len > sizeof(struct geneve_opt)) 876 data_len = option_len - sizeof(struct geneve_opt); 877 878 opt = (struct geneve_opt *)&key->enc_opts.data[key->enc_opts.len]; 879 memset(opt, 0xff, option_len); 880 opt->length = data_len / 4; 881 opt->r1 = 0; 882 opt->r2 = 0; 883 opt->r3 = 0; 884 885 /* If no mask has been prodived we assume an exact match. */ 886 if (!depth) 887 return sizeof(struct geneve_opt) + data_len; 888 889 if (nla_type(nla) != TCA_FLOWER_KEY_ENC_OPTS_GENEVE) { 890 NL_SET_ERR_MSG(extack, "Non-geneve option type for mask"); 891 return -EINVAL; 892 } 893 894 err = nla_parse_nested_deprecated(tb, 895 TCA_FLOWER_KEY_ENC_OPT_GENEVE_MAX, 896 nla, geneve_opt_policy, extack); 897 if (err < 0) 898 return err; 899 900 /* We are not allowed to omit any of CLASS, TYPE or DATA 901 * fields from the key. 902 */ 903 if (!option_len && 904 (!tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_CLASS] || 905 !tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_TYPE] || 906 !tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_DATA])) { 907 NL_SET_ERR_MSG(extack, "Missing tunnel key geneve option class, type or data"); 908 return -EINVAL; 909 } 910 911 /* Omitting any of CLASS, TYPE or DATA fields is allowed 912 * for the mask. 913 */ 914 if (tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_DATA]) { 915 int new_len = key->enc_opts.len; 916 917 data = tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_DATA]; 918 data_len = nla_len(data); 919 if (data_len < 4) { 920 NL_SET_ERR_MSG(extack, "Tunnel key geneve option data is less than 4 bytes long"); 921 return -ERANGE; 922 } 923 if (data_len % 4) { 924 NL_SET_ERR_MSG(extack, "Tunnel key geneve option data is not a multiple of 4 bytes long"); 925 return -ERANGE; 926 } 927 928 new_len += sizeof(struct geneve_opt) + data_len; 929 BUILD_BUG_ON(FLOW_DIS_TUN_OPTS_MAX != IP_TUNNEL_OPTS_MAX); 930 if (new_len > FLOW_DIS_TUN_OPTS_MAX) { 931 NL_SET_ERR_MSG(extack, "Tunnel options exceeds max size"); 932 return -ERANGE; 933 } 934 opt->length = data_len / 4; 935 memcpy(opt->opt_data, nla_data(data), data_len); 936 } 937 938 if (tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_CLASS]) { 939 class = tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_CLASS]; 940 opt->opt_class = nla_get_be16(class); 941 } 942 943 if (tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_TYPE]) { 944 type = tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_TYPE]; 945 opt->type = nla_get_u8(type); 946 } 947 948 return sizeof(struct geneve_opt) + data_len; 949 } 950 951 static int fl_set_enc_opt(struct nlattr **tb, struct fl_flow_key *key, 952 struct fl_flow_key *mask, 953 struct netlink_ext_ack *extack) 954 { 955 const struct nlattr *nla_enc_key, *nla_opt_key, *nla_opt_msk = NULL; 956 int err, option_len, key_depth, msk_depth = 0; 957 958 err = nla_validate_nested_deprecated(tb[TCA_FLOWER_KEY_ENC_OPTS], 959 TCA_FLOWER_KEY_ENC_OPTS_MAX, 960 enc_opts_policy, extack); 961 if (err) 962 return err; 963 964 nla_enc_key = nla_data(tb[TCA_FLOWER_KEY_ENC_OPTS]); 965 966 if (tb[TCA_FLOWER_KEY_ENC_OPTS_MASK]) { 967 err = nla_validate_nested_deprecated(tb[TCA_FLOWER_KEY_ENC_OPTS_MASK], 968 TCA_FLOWER_KEY_ENC_OPTS_MAX, 969 enc_opts_policy, extack); 970 if (err) 971 return err; 972 973 nla_opt_msk = nla_data(tb[TCA_FLOWER_KEY_ENC_OPTS_MASK]); 974 msk_depth = nla_len(tb[TCA_FLOWER_KEY_ENC_OPTS_MASK]); 975 } 976 977 nla_for_each_attr(nla_opt_key, nla_enc_key, 978 nla_len(tb[TCA_FLOWER_KEY_ENC_OPTS]), key_depth) { 979 switch (nla_type(nla_opt_key)) { 980 case TCA_FLOWER_KEY_ENC_OPTS_GENEVE: 981 option_len = 0; 982 key->enc_opts.dst_opt_type = TUNNEL_GENEVE_OPT; 983 option_len = fl_set_geneve_opt(nla_opt_key, key, 984 key_depth, option_len, 985 extack); 986 if (option_len < 0) 987 return option_len; 988 989 key->enc_opts.len += option_len; 990 /* At the same time we need to parse through the mask 991 * in order to verify exact and mask attribute lengths. 992 */ 993 mask->enc_opts.dst_opt_type = TUNNEL_GENEVE_OPT; 994 option_len = fl_set_geneve_opt(nla_opt_msk, mask, 995 msk_depth, option_len, 996 extack); 997 if (option_len < 0) 998 return option_len; 999 1000 mask->enc_opts.len += option_len; 1001 if (key->enc_opts.len != mask->enc_opts.len) { 1002 NL_SET_ERR_MSG(extack, "Key and mask miss aligned"); 1003 return -EINVAL; 1004 } 1005 1006 if (msk_depth) 1007 nla_opt_msk = nla_next(nla_opt_msk, &msk_depth); 1008 break; 1009 default: 1010 NL_SET_ERR_MSG(extack, "Unknown tunnel option type"); 1011 return -EINVAL; 1012 } 1013 } 1014 1015 return 0; 1016 } 1017 1018 static int fl_set_key(struct net *net, struct nlattr **tb, 1019 struct fl_flow_key *key, struct fl_flow_key *mask, 1020 struct netlink_ext_ack *extack) 1021 { 1022 __be16 ethertype; 1023 int ret = 0; 1024 1025 if (tb[TCA_FLOWER_INDEV]) { 1026 int err = tcf_change_indev(net, tb[TCA_FLOWER_INDEV], extack); 1027 if (err < 0) 1028 return err; 1029 key->indev_ifindex = err; 1030 mask->indev_ifindex = 0xffffffff; 1031 } 1032 1033 fl_set_key_val(tb, key->eth.dst, TCA_FLOWER_KEY_ETH_DST, 1034 mask->eth.dst, TCA_FLOWER_KEY_ETH_DST_MASK, 1035 sizeof(key->eth.dst)); 1036 fl_set_key_val(tb, key->eth.src, TCA_FLOWER_KEY_ETH_SRC, 1037 mask->eth.src, TCA_FLOWER_KEY_ETH_SRC_MASK, 1038 sizeof(key->eth.src)); 1039 1040 if (tb[TCA_FLOWER_KEY_ETH_TYPE]) { 1041 ethertype = nla_get_be16(tb[TCA_FLOWER_KEY_ETH_TYPE]); 1042 1043 if (eth_type_vlan(ethertype)) { 1044 fl_set_key_vlan(tb, ethertype, TCA_FLOWER_KEY_VLAN_ID, 1045 TCA_FLOWER_KEY_VLAN_PRIO, &key->vlan, 1046 &mask->vlan); 1047 1048 if (tb[TCA_FLOWER_KEY_VLAN_ETH_TYPE]) { 1049 ethertype = nla_get_be16(tb[TCA_FLOWER_KEY_VLAN_ETH_TYPE]); 1050 if (eth_type_vlan(ethertype)) { 1051 fl_set_key_vlan(tb, ethertype, 1052 TCA_FLOWER_KEY_CVLAN_ID, 1053 TCA_FLOWER_KEY_CVLAN_PRIO, 1054 &key->cvlan, &mask->cvlan); 1055 fl_set_key_val(tb, &key->basic.n_proto, 1056 TCA_FLOWER_KEY_CVLAN_ETH_TYPE, 1057 &mask->basic.n_proto, 1058 TCA_FLOWER_UNSPEC, 1059 sizeof(key->basic.n_proto)); 1060 } else { 1061 key->basic.n_proto = ethertype; 1062 mask->basic.n_proto = cpu_to_be16(~0); 1063 } 1064 } 1065 } else { 1066 key->basic.n_proto = ethertype; 1067 mask->basic.n_proto = cpu_to_be16(~0); 1068 } 1069 } 1070 1071 if (key->basic.n_proto == htons(ETH_P_IP) || 1072 key->basic.n_proto == htons(ETH_P_IPV6)) { 1073 fl_set_key_val(tb, &key->basic.ip_proto, TCA_FLOWER_KEY_IP_PROTO, 1074 &mask->basic.ip_proto, TCA_FLOWER_UNSPEC, 1075 sizeof(key->basic.ip_proto)); 1076 fl_set_key_ip(tb, false, &key->ip, &mask->ip); 1077 } 1078 1079 if (tb[TCA_FLOWER_KEY_IPV4_SRC] || tb[TCA_FLOWER_KEY_IPV4_DST]) { 1080 key->control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS; 1081 mask->control.addr_type = ~0; 1082 fl_set_key_val(tb, &key->ipv4.src, TCA_FLOWER_KEY_IPV4_SRC, 1083 &mask->ipv4.src, TCA_FLOWER_KEY_IPV4_SRC_MASK, 1084 sizeof(key->ipv4.src)); 1085 fl_set_key_val(tb, &key->ipv4.dst, TCA_FLOWER_KEY_IPV4_DST, 1086 &mask->ipv4.dst, TCA_FLOWER_KEY_IPV4_DST_MASK, 1087 sizeof(key->ipv4.dst)); 1088 } else if (tb[TCA_FLOWER_KEY_IPV6_SRC] || tb[TCA_FLOWER_KEY_IPV6_DST]) { 1089 key->control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 1090 mask->control.addr_type = ~0; 1091 fl_set_key_val(tb, &key->ipv6.src, TCA_FLOWER_KEY_IPV6_SRC, 1092 &mask->ipv6.src, TCA_FLOWER_KEY_IPV6_SRC_MASK, 1093 sizeof(key->ipv6.src)); 1094 fl_set_key_val(tb, &key->ipv6.dst, TCA_FLOWER_KEY_IPV6_DST, 1095 &mask->ipv6.dst, TCA_FLOWER_KEY_IPV6_DST_MASK, 1096 sizeof(key->ipv6.dst)); 1097 } 1098 1099 if (key->basic.ip_proto == IPPROTO_TCP) { 1100 fl_set_key_val(tb, &key->tp.src, TCA_FLOWER_KEY_TCP_SRC, 1101 &mask->tp.src, TCA_FLOWER_KEY_TCP_SRC_MASK, 1102 sizeof(key->tp.src)); 1103 fl_set_key_val(tb, &key->tp.dst, TCA_FLOWER_KEY_TCP_DST, 1104 &mask->tp.dst, TCA_FLOWER_KEY_TCP_DST_MASK, 1105 sizeof(key->tp.dst)); 1106 fl_set_key_val(tb, &key->tcp.flags, TCA_FLOWER_KEY_TCP_FLAGS, 1107 &mask->tcp.flags, TCA_FLOWER_KEY_TCP_FLAGS_MASK, 1108 sizeof(key->tcp.flags)); 1109 } else if (key->basic.ip_proto == IPPROTO_UDP) { 1110 fl_set_key_val(tb, &key->tp.src, TCA_FLOWER_KEY_UDP_SRC, 1111 &mask->tp.src, TCA_FLOWER_KEY_UDP_SRC_MASK, 1112 sizeof(key->tp.src)); 1113 fl_set_key_val(tb, &key->tp.dst, TCA_FLOWER_KEY_UDP_DST, 1114 &mask->tp.dst, TCA_FLOWER_KEY_UDP_DST_MASK, 1115 sizeof(key->tp.dst)); 1116 } else if (key->basic.ip_proto == IPPROTO_SCTP) { 1117 fl_set_key_val(tb, &key->tp.src, TCA_FLOWER_KEY_SCTP_SRC, 1118 &mask->tp.src, TCA_FLOWER_KEY_SCTP_SRC_MASK, 1119 sizeof(key->tp.src)); 1120 fl_set_key_val(tb, &key->tp.dst, TCA_FLOWER_KEY_SCTP_DST, 1121 &mask->tp.dst, TCA_FLOWER_KEY_SCTP_DST_MASK, 1122 sizeof(key->tp.dst)); 1123 } else if (key->basic.n_proto == htons(ETH_P_IP) && 1124 key->basic.ip_proto == IPPROTO_ICMP) { 1125 fl_set_key_val(tb, &key->icmp.type, TCA_FLOWER_KEY_ICMPV4_TYPE, 1126 &mask->icmp.type, 1127 TCA_FLOWER_KEY_ICMPV4_TYPE_MASK, 1128 sizeof(key->icmp.type)); 1129 fl_set_key_val(tb, &key->icmp.code, TCA_FLOWER_KEY_ICMPV4_CODE, 1130 &mask->icmp.code, 1131 TCA_FLOWER_KEY_ICMPV4_CODE_MASK, 1132 sizeof(key->icmp.code)); 1133 } else if (key->basic.n_proto == htons(ETH_P_IPV6) && 1134 key->basic.ip_proto == IPPROTO_ICMPV6) { 1135 fl_set_key_val(tb, &key->icmp.type, TCA_FLOWER_KEY_ICMPV6_TYPE, 1136 &mask->icmp.type, 1137 TCA_FLOWER_KEY_ICMPV6_TYPE_MASK, 1138 sizeof(key->icmp.type)); 1139 fl_set_key_val(tb, &key->icmp.code, TCA_FLOWER_KEY_ICMPV6_CODE, 1140 &mask->icmp.code, 1141 TCA_FLOWER_KEY_ICMPV6_CODE_MASK, 1142 sizeof(key->icmp.code)); 1143 } else if (key->basic.n_proto == htons(ETH_P_MPLS_UC) || 1144 key->basic.n_proto == htons(ETH_P_MPLS_MC)) { 1145 ret = fl_set_key_mpls(tb, &key->mpls, &mask->mpls); 1146 if (ret) 1147 return ret; 1148 } else if (key->basic.n_proto == htons(ETH_P_ARP) || 1149 key->basic.n_proto == htons(ETH_P_RARP)) { 1150 fl_set_key_val(tb, &key->arp.sip, TCA_FLOWER_KEY_ARP_SIP, 1151 &mask->arp.sip, TCA_FLOWER_KEY_ARP_SIP_MASK, 1152 sizeof(key->arp.sip)); 1153 fl_set_key_val(tb, &key->arp.tip, TCA_FLOWER_KEY_ARP_TIP, 1154 &mask->arp.tip, TCA_FLOWER_KEY_ARP_TIP_MASK, 1155 sizeof(key->arp.tip)); 1156 fl_set_key_val(tb, &key->arp.op, TCA_FLOWER_KEY_ARP_OP, 1157 &mask->arp.op, TCA_FLOWER_KEY_ARP_OP_MASK, 1158 sizeof(key->arp.op)); 1159 fl_set_key_val(tb, key->arp.sha, TCA_FLOWER_KEY_ARP_SHA, 1160 mask->arp.sha, TCA_FLOWER_KEY_ARP_SHA_MASK, 1161 sizeof(key->arp.sha)); 1162 fl_set_key_val(tb, key->arp.tha, TCA_FLOWER_KEY_ARP_THA, 1163 mask->arp.tha, TCA_FLOWER_KEY_ARP_THA_MASK, 1164 sizeof(key->arp.tha)); 1165 } 1166 1167 if (key->basic.ip_proto == IPPROTO_TCP || 1168 key->basic.ip_proto == IPPROTO_UDP || 1169 key->basic.ip_proto == IPPROTO_SCTP) { 1170 ret = fl_set_key_port_range(tb, key, mask); 1171 if (ret) 1172 return ret; 1173 } 1174 1175 if (tb[TCA_FLOWER_KEY_ENC_IPV4_SRC] || 1176 tb[TCA_FLOWER_KEY_ENC_IPV4_DST]) { 1177 key->enc_control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS; 1178 mask->enc_control.addr_type = ~0; 1179 fl_set_key_val(tb, &key->enc_ipv4.src, 1180 TCA_FLOWER_KEY_ENC_IPV4_SRC, 1181 &mask->enc_ipv4.src, 1182 TCA_FLOWER_KEY_ENC_IPV4_SRC_MASK, 1183 sizeof(key->enc_ipv4.src)); 1184 fl_set_key_val(tb, &key->enc_ipv4.dst, 1185 TCA_FLOWER_KEY_ENC_IPV4_DST, 1186 &mask->enc_ipv4.dst, 1187 TCA_FLOWER_KEY_ENC_IPV4_DST_MASK, 1188 sizeof(key->enc_ipv4.dst)); 1189 } 1190 1191 if (tb[TCA_FLOWER_KEY_ENC_IPV6_SRC] || 1192 tb[TCA_FLOWER_KEY_ENC_IPV6_DST]) { 1193 key->enc_control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 1194 mask->enc_control.addr_type = ~0; 1195 fl_set_key_val(tb, &key->enc_ipv6.src, 1196 TCA_FLOWER_KEY_ENC_IPV6_SRC, 1197 &mask->enc_ipv6.src, 1198 TCA_FLOWER_KEY_ENC_IPV6_SRC_MASK, 1199 sizeof(key->enc_ipv6.src)); 1200 fl_set_key_val(tb, &key->enc_ipv6.dst, 1201 TCA_FLOWER_KEY_ENC_IPV6_DST, 1202 &mask->enc_ipv6.dst, 1203 TCA_FLOWER_KEY_ENC_IPV6_DST_MASK, 1204 sizeof(key->enc_ipv6.dst)); 1205 } 1206 1207 fl_set_key_val(tb, &key->enc_key_id.keyid, TCA_FLOWER_KEY_ENC_KEY_ID, 1208 &mask->enc_key_id.keyid, TCA_FLOWER_UNSPEC, 1209 sizeof(key->enc_key_id.keyid)); 1210 1211 fl_set_key_val(tb, &key->enc_tp.src, TCA_FLOWER_KEY_ENC_UDP_SRC_PORT, 1212 &mask->enc_tp.src, TCA_FLOWER_KEY_ENC_UDP_SRC_PORT_MASK, 1213 sizeof(key->enc_tp.src)); 1214 1215 fl_set_key_val(tb, &key->enc_tp.dst, TCA_FLOWER_KEY_ENC_UDP_DST_PORT, 1216 &mask->enc_tp.dst, TCA_FLOWER_KEY_ENC_UDP_DST_PORT_MASK, 1217 sizeof(key->enc_tp.dst)); 1218 1219 fl_set_key_ip(tb, true, &key->enc_ip, &mask->enc_ip); 1220 1221 if (tb[TCA_FLOWER_KEY_ENC_OPTS]) { 1222 ret = fl_set_enc_opt(tb, key, mask, extack); 1223 if (ret) 1224 return ret; 1225 } 1226 1227 if (tb[TCA_FLOWER_KEY_FLAGS]) 1228 ret = fl_set_key_flags(tb, &key->control.flags, &mask->control.flags); 1229 1230 return ret; 1231 } 1232 1233 static void fl_mask_copy(struct fl_flow_mask *dst, 1234 struct fl_flow_mask *src) 1235 { 1236 const void *psrc = fl_key_get_start(&src->key, src); 1237 void *pdst = fl_key_get_start(&dst->key, src); 1238 1239 memcpy(pdst, psrc, fl_mask_range(src)); 1240 dst->range = src->range; 1241 } 1242 1243 static const struct rhashtable_params fl_ht_params = { 1244 .key_offset = offsetof(struct cls_fl_filter, mkey), /* base offset */ 1245 .head_offset = offsetof(struct cls_fl_filter, ht_node), 1246 .automatic_shrinking = true, 1247 }; 1248 1249 static int fl_init_mask_hashtable(struct fl_flow_mask *mask) 1250 { 1251 mask->filter_ht_params = fl_ht_params; 1252 mask->filter_ht_params.key_len = fl_mask_range(mask); 1253 mask->filter_ht_params.key_offset += mask->range.start; 1254 1255 return rhashtable_init(&mask->ht, &mask->filter_ht_params); 1256 } 1257 1258 #define FL_KEY_MEMBER_OFFSET(member) offsetof(struct fl_flow_key, member) 1259 #define FL_KEY_MEMBER_SIZE(member) FIELD_SIZEOF(struct fl_flow_key, member) 1260 1261 #define FL_KEY_IS_MASKED(mask, member) \ 1262 memchr_inv(((char *)mask) + FL_KEY_MEMBER_OFFSET(member), \ 1263 0, FL_KEY_MEMBER_SIZE(member)) \ 1264 1265 #define FL_KEY_SET(keys, cnt, id, member) \ 1266 do { \ 1267 keys[cnt].key_id = id; \ 1268 keys[cnt].offset = FL_KEY_MEMBER_OFFSET(member); \ 1269 cnt++; \ 1270 } while(0); 1271 1272 #define FL_KEY_SET_IF_MASKED(mask, keys, cnt, id, member) \ 1273 do { \ 1274 if (FL_KEY_IS_MASKED(mask, member)) \ 1275 FL_KEY_SET(keys, cnt, id, member); \ 1276 } while(0); 1277 1278 static void fl_init_dissector(struct flow_dissector *dissector, 1279 struct fl_flow_key *mask) 1280 { 1281 struct flow_dissector_key keys[FLOW_DISSECTOR_KEY_MAX]; 1282 size_t cnt = 0; 1283 1284 FL_KEY_SET(keys, cnt, FLOW_DISSECTOR_KEY_CONTROL, control); 1285 FL_KEY_SET(keys, cnt, FLOW_DISSECTOR_KEY_BASIC, basic); 1286 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1287 FLOW_DISSECTOR_KEY_ETH_ADDRS, eth); 1288 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1289 FLOW_DISSECTOR_KEY_IPV4_ADDRS, ipv4); 1290 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1291 FLOW_DISSECTOR_KEY_IPV6_ADDRS, ipv6); 1292 if (FL_KEY_IS_MASKED(mask, tp) || 1293 FL_KEY_IS_MASKED(mask, tp_min) || FL_KEY_IS_MASKED(mask, tp_max)) 1294 FL_KEY_SET(keys, cnt, FLOW_DISSECTOR_KEY_PORTS, tp); 1295 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1296 FLOW_DISSECTOR_KEY_IP, ip); 1297 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1298 FLOW_DISSECTOR_KEY_TCP, tcp); 1299 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1300 FLOW_DISSECTOR_KEY_ICMP, icmp); 1301 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1302 FLOW_DISSECTOR_KEY_ARP, arp); 1303 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1304 FLOW_DISSECTOR_KEY_MPLS, mpls); 1305 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1306 FLOW_DISSECTOR_KEY_VLAN, vlan); 1307 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1308 FLOW_DISSECTOR_KEY_CVLAN, cvlan); 1309 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1310 FLOW_DISSECTOR_KEY_ENC_KEYID, enc_key_id); 1311 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1312 FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS, enc_ipv4); 1313 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1314 FLOW_DISSECTOR_KEY_ENC_IPV6_ADDRS, enc_ipv6); 1315 if (FL_KEY_IS_MASKED(mask, enc_ipv4) || 1316 FL_KEY_IS_MASKED(mask, enc_ipv6)) 1317 FL_KEY_SET(keys, cnt, FLOW_DISSECTOR_KEY_ENC_CONTROL, 1318 enc_control); 1319 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1320 FLOW_DISSECTOR_KEY_ENC_PORTS, enc_tp); 1321 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1322 FLOW_DISSECTOR_KEY_ENC_IP, enc_ip); 1323 FL_KEY_SET_IF_MASKED(mask, keys, cnt, 1324 FLOW_DISSECTOR_KEY_ENC_OPTS, enc_opts); 1325 1326 skb_flow_dissector_init(dissector, keys, cnt); 1327 } 1328 1329 static struct fl_flow_mask *fl_create_new_mask(struct cls_fl_head *head, 1330 struct fl_flow_mask *mask) 1331 { 1332 struct fl_flow_mask *newmask; 1333 int err; 1334 1335 newmask = kzalloc(sizeof(*newmask), GFP_KERNEL); 1336 if (!newmask) 1337 return ERR_PTR(-ENOMEM); 1338 1339 fl_mask_copy(newmask, mask); 1340 1341 if ((newmask->key.tp_min.dst && newmask->key.tp_max.dst) || 1342 (newmask->key.tp_min.src && newmask->key.tp_max.src)) 1343 newmask->flags |= TCA_FLOWER_MASK_FLAGS_RANGE; 1344 1345 err = fl_init_mask_hashtable(newmask); 1346 if (err) 1347 goto errout_free; 1348 1349 fl_init_dissector(&newmask->dissector, &newmask->key); 1350 1351 INIT_LIST_HEAD_RCU(&newmask->filters); 1352 1353 refcount_set(&newmask->refcnt, 1); 1354 err = rhashtable_replace_fast(&head->ht, &mask->ht_node, 1355 &newmask->ht_node, mask_ht_params); 1356 if (err) 1357 goto errout_destroy; 1358 1359 spin_lock(&head->masks_lock); 1360 list_add_tail_rcu(&newmask->list, &head->masks); 1361 spin_unlock(&head->masks_lock); 1362 1363 return newmask; 1364 1365 errout_destroy: 1366 rhashtable_destroy(&newmask->ht); 1367 errout_free: 1368 kfree(newmask); 1369 1370 return ERR_PTR(err); 1371 } 1372 1373 static int fl_check_assign_mask(struct cls_fl_head *head, 1374 struct cls_fl_filter *fnew, 1375 struct cls_fl_filter *fold, 1376 struct fl_flow_mask *mask) 1377 { 1378 struct fl_flow_mask *newmask; 1379 int ret = 0; 1380 1381 rcu_read_lock(); 1382 1383 /* Insert mask as temporary node to prevent concurrent creation of mask 1384 * with same key. Any concurrent lookups with same key will return 1385 * -EAGAIN because mask's refcnt is zero. 1386 */ 1387 fnew->mask = rhashtable_lookup_get_insert_fast(&head->ht, 1388 &mask->ht_node, 1389 mask_ht_params); 1390 if (!fnew->mask) { 1391 rcu_read_unlock(); 1392 1393 if (fold) { 1394 ret = -EINVAL; 1395 goto errout_cleanup; 1396 } 1397 1398 newmask = fl_create_new_mask(head, mask); 1399 if (IS_ERR(newmask)) { 1400 ret = PTR_ERR(newmask); 1401 goto errout_cleanup; 1402 } 1403 1404 fnew->mask = newmask; 1405 return 0; 1406 } else if (IS_ERR(fnew->mask)) { 1407 ret = PTR_ERR(fnew->mask); 1408 } else if (fold && fold->mask != fnew->mask) { 1409 ret = -EINVAL; 1410 } else if (!refcount_inc_not_zero(&fnew->mask->refcnt)) { 1411 /* Mask was deleted concurrently, try again */ 1412 ret = -EAGAIN; 1413 } 1414 rcu_read_unlock(); 1415 return ret; 1416 1417 errout_cleanup: 1418 rhashtable_remove_fast(&head->ht, &mask->ht_node, 1419 mask_ht_params); 1420 return ret; 1421 } 1422 1423 static int fl_set_parms(struct net *net, struct tcf_proto *tp, 1424 struct cls_fl_filter *f, struct fl_flow_mask *mask, 1425 unsigned long base, struct nlattr **tb, 1426 struct nlattr *est, bool ovr, 1427 struct fl_flow_tmplt *tmplt, bool rtnl_held, 1428 struct netlink_ext_ack *extack) 1429 { 1430 int err; 1431 1432 err = tcf_exts_validate(net, tp, tb, est, &f->exts, ovr, rtnl_held, 1433 extack); 1434 if (err < 0) 1435 return err; 1436 1437 if (tb[TCA_FLOWER_CLASSID]) { 1438 f->res.classid = nla_get_u32(tb[TCA_FLOWER_CLASSID]); 1439 if (!rtnl_held) 1440 rtnl_lock(); 1441 tcf_bind_filter(tp, &f->res, base); 1442 if (!rtnl_held) 1443 rtnl_unlock(); 1444 } 1445 1446 err = fl_set_key(net, tb, &f->key, &mask->key, extack); 1447 if (err) 1448 return err; 1449 1450 fl_mask_update_range(mask); 1451 fl_set_masked_key(&f->mkey, &f->key, mask); 1452 1453 if (!fl_mask_fits_tmplt(tmplt, mask)) { 1454 NL_SET_ERR_MSG_MOD(extack, "Mask does not fit the template"); 1455 return -EINVAL; 1456 } 1457 1458 return 0; 1459 } 1460 1461 static int fl_ht_insert_unique(struct cls_fl_filter *fnew, 1462 struct cls_fl_filter *fold, 1463 bool *in_ht) 1464 { 1465 struct fl_flow_mask *mask = fnew->mask; 1466 int err; 1467 1468 err = rhashtable_lookup_insert_fast(&mask->ht, 1469 &fnew->ht_node, 1470 mask->filter_ht_params); 1471 if (err) { 1472 *in_ht = false; 1473 /* It is okay if filter with same key exists when 1474 * overwriting. 1475 */ 1476 return fold && err == -EEXIST ? 0 : err; 1477 } 1478 1479 *in_ht = true; 1480 return 0; 1481 } 1482 1483 static int fl_change(struct net *net, struct sk_buff *in_skb, 1484 struct tcf_proto *tp, unsigned long base, 1485 u32 handle, struct nlattr **tca, 1486 void **arg, bool ovr, bool rtnl_held, 1487 struct netlink_ext_ack *extack) 1488 { 1489 struct cls_fl_head *head = fl_head_dereference(tp); 1490 struct cls_fl_filter *fold = *arg; 1491 struct cls_fl_filter *fnew; 1492 struct fl_flow_mask *mask; 1493 struct nlattr **tb; 1494 bool in_ht; 1495 int err; 1496 1497 if (!tca[TCA_OPTIONS]) { 1498 err = -EINVAL; 1499 goto errout_fold; 1500 } 1501 1502 mask = kzalloc(sizeof(struct fl_flow_mask), GFP_KERNEL); 1503 if (!mask) { 1504 err = -ENOBUFS; 1505 goto errout_fold; 1506 } 1507 1508 tb = kcalloc(TCA_FLOWER_MAX + 1, sizeof(struct nlattr *), GFP_KERNEL); 1509 if (!tb) { 1510 err = -ENOBUFS; 1511 goto errout_mask_alloc; 1512 } 1513 1514 err = nla_parse_nested_deprecated(tb, TCA_FLOWER_MAX, 1515 tca[TCA_OPTIONS], fl_policy, NULL); 1516 if (err < 0) 1517 goto errout_tb; 1518 1519 if (fold && handle && fold->handle != handle) { 1520 err = -EINVAL; 1521 goto errout_tb; 1522 } 1523 1524 fnew = kzalloc(sizeof(*fnew), GFP_KERNEL); 1525 if (!fnew) { 1526 err = -ENOBUFS; 1527 goto errout_tb; 1528 } 1529 INIT_LIST_HEAD(&fnew->hw_list); 1530 refcount_set(&fnew->refcnt, 1); 1531 1532 err = tcf_exts_init(&fnew->exts, net, TCA_FLOWER_ACT, 0); 1533 if (err < 0) 1534 goto errout; 1535 1536 if (tb[TCA_FLOWER_FLAGS]) { 1537 fnew->flags = nla_get_u32(tb[TCA_FLOWER_FLAGS]); 1538 1539 if (!tc_flags_valid(fnew->flags)) { 1540 err = -EINVAL; 1541 goto errout; 1542 } 1543 } 1544 1545 err = fl_set_parms(net, tp, fnew, mask, base, tb, tca[TCA_RATE], ovr, 1546 tp->chain->tmplt_priv, rtnl_held, extack); 1547 if (err) 1548 goto errout; 1549 1550 err = fl_check_assign_mask(head, fnew, fold, mask); 1551 if (err) 1552 goto errout; 1553 1554 err = fl_ht_insert_unique(fnew, fold, &in_ht); 1555 if (err) 1556 goto errout_mask; 1557 1558 if (!tc_skip_hw(fnew->flags)) { 1559 err = fl_hw_replace_filter(tp, fnew, rtnl_held, extack); 1560 if (err) 1561 goto errout_ht; 1562 } 1563 1564 if (!tc_in_hw(fnew->flags)) 1565 fnew->flags |= TCA_CLS_FLAGS_NOT_IN_HW; 1566 1567 spin_lock(&tp->lock); 1568 1569 /* tp was deleted concurrently. -EAGAIN will cause caller to lookup 1570 * proto again or create new one, if necessary. 1571 */ 1572 if (tp->deleting) { 1573 err = -EAGAIN; 1574 goto errout_hw; 1575 } 1576 1577 if (fold) { 1578 /* Fold filter was deleted concurrently. Retry lookup. */ 1579 if (fold->deleted) { 1580 err = -EAGAIN; 1581 goto errout_hw; 1582 } 1583 1584 fnew->handle = handle; 1585 1586 if (!in_ht) { 1587 struct rhashtable_params params = 1588 fnew->mask->filter_ht_params; 1589 1590 err = rhashtable_insert_fast(&fnew->mask->ht, 1591 &fnew->ht_node, 1592 params); 1593 if (err) 1594 goto errout_hw; 1595 in_ht = true; 1596 } 1597 1598 refcount_inc(&fnew->refcnt); 1599 rhashtable_remove_fast(&fold->mask->ht, 1600 &fold->ht_node, 1601 fold->mask->filter_ht_params); 1602 idr_replace(&head->handle_idr, fnew, fnew->handle); 1603 list_replace_rcu(&fold->list, &fnew->list); 1604 fold->deleted = true; 1605 1606 spin_unlock(&tp->lock); 1607 1608 fl_mask_put(head, fold->mask); 1609 if (!tc_skip_hw(fold->flags)) 1610 fl_hw_destroy_filter(tp, fold, rtnl_held, NULL); 1611 tcf_unbind_filter(tp, &fold->res); 1612 /* Caller holds reference to fold, so refcnt is always > 0 1613 * after this. 1614 */ 1615 refcount_dec(&fold->refcnt); 1616 __fl_put(fold); 1617 } else { 1618 if (handle) { 1619 /* user specifies a handle and it doesn't exist */ 1620 err = idr_alloc_u32(&head->handle_idr, fnew, &handle, 1621 handle, GFP_ATOMIC); 1622 1623 /* Filter with specified handle was concurrently 1624 * inserted after initial check in cls_api. This is not 1625 * necessarily an error if NLM_F_EXCL is not set in 1626 * message flags. Returning EAGAIN will cause cls_api to 1627 * try to update concurrently inserted rule. 1628 */ 1629 if (err == -ENOSPC) 1630 err = -EAGAIN; 1631 } else { 1632 handle = 1; 1633 err = idr_alloc_u32(&head->handle_idr, fnew, &handle, 1634 INT_MAX, GFP_ATOMIC); 1635 } 1636 if (err) 1637 goto errout_hw; 1638 1639 refcount_inc(&fnew->refcnt); 1640 fnew->handle = handle; 1641 list_add_tail_rcu(&fnew->list, &fnew->mask->filters); 1642 spin_unlock(&tp->lock); 1643 } 1644 1645 *arg = fnew; 1646 1647 kfree(tb); 1648 tcf_queue_work(&mask->rwork, fl_uninit_mask_free_work); 1649 return 0; 1650 1651 errout_ht: 1652 spin_lock(&tp->lock); 1653 errout_hw: 1654 fnew->deleted = true; 1655 spin_unlock(&tp->lock); 1656 if (!tc_skip_hw(fnew->flags)) 1657 fl_hw_destroy_filter(tp, fnew, rtnl_held, NULL); 1658 if (in_ht) 1659 rhashtable_remove_fast(&fnew->mask->ht, &fnew->ht_node, 1660 fnew->mask->filter_ht_params); 1661 errout_mask: 1662 fl_mask_put(head, fnew->mask); 1663 errout: 1664 __fl_put(fnew); 1665 errout_tb: 1666 kfree(tb); 1667 errout_mask_alloc: 1668 tcf_queue_work(&mask->rwork, fl_uninit_mask_free_work); 1669 errout_fold: 1670 if (fold) 1671 __fl_put(fold); 1672 return err; 1673 } 1674 1675 static int fl_delete(struct tcf_proto *tp, void *arg, bool *last, 1676 bool rtnl_held, struct netlink_ext_ack *extack) 1677 { 1678 struct cls_fl_head *head = fl_head_dereference(tp); 1679 struct cls_fl_filter *f = arg; 1680 bool last_on_mask; 1681 int err = 0; 1682 1683 err = __fl_delete(tp, f, &last_on_mask, rtnl_held, extack); 1684 *last = list_empty(&head->masks); 1685 __fl_put(f); 1686 1687 return err; 1688 } 1689 1690 static void fl_walk(struct tcf_proto *tp, struct tcf_walker *arg, 1691 bool rtnl_held) 1692 { 1693 struct cls_fl_filter *f; 1694 1695 arg->count = arg->skip; 1696 1697 while ((f = fl_get_next_filter(tp, &arg->cookie)) != NULL) { 1698 if (arg->fn(tp, f, arg) < 0) { 1699 __fl_put(f); 1700 arg->stop = 1; 1701 break; 1702 } 1703 __fl_put(f); 1704 arg->cookie++; 1705 arg->count++; 1706 } 1707 } 1708 1709 static struct cls_fl_filter * 1710 fl_get_next_hw_filter(struct tcf_proto *tp, struct cls_fl_filter *f, bool add) 1711 { 1712 struct cls_fl_head *head = fl_head_dereference(tp); 1713 1714 spin_lock(&tp->lock); 1715 if (list_empty(&head->hw_filters)) { 1716 spin_unlock(&tp->lock); 1717 return NULL; 1718 } 1719 1720 if (!f) 1721 f = list_entry(&head->hw_filters, struct cls_fl_filter, 1722 hw_list); 1723 list_for_each_entry_continue(f, &head->hw_filters, hw_list) { 1724 if (!(add && f->deleted) && refcount_inc_not_zero(&f->refcnt)) { 1725 spin_unlock(&tp->lock); 1726 return f; 1727 } 1728 } 1729 1730 spin_unlock(&tp->lock); 1731 return NULL; 1732 } 1733 1734 static int fl_reoffload(struct tcf_proto *tp, bool add, tc_setup_cb_t *cb, 1735 void *cb_priv, struct netlink_ext_ack *extack) 1736 { 1737 struct tc_cls_flower_offload cls_flower = {}; 1738 struct tcf_block *block = tp->chain->block; 1739 struct cls_fl_filter *f = NULL; 1740 int err; 1741 1742 /* hw_filters list can only be changed by hw offload functions after 1743 * obtaining rtnl lock. Make sure it is not changed while reoffload is 1744 * iterating it. 1745 */ 1746 ASSERT_RTNL(); 1747 1748 while ((f = fl_get_next_hw_filter(tp, f, add))) { 1749 cls_flower.rule = 1750 flow_rule_alloc(tcf_exts_num_actions(&f->exts)); 1751 if (!cls_flower.rule) { 1752 __fl_put(f); 1753 return -ENOMEM; 1754 } 1755 1756 tc_cls_common_offload_init(&cls_flower.common, tp, f->flags, 1757 extack); 1758 cls_flower.command = add ? 1759 TC_CLSFLOWER_REPLACE : TC_CLSFLOWER_DESTROY; 1760 cls_flower.cookie = (unsigned long)f; 1761 cls_flower.rule->match.dissector = &f->mask->dissector; 1762 cls_flower.rule->match.mask = &f->mask->key; 1763 cls_flower.rule->match.key = &f->mkey; 1764 1765 err = tc_setup_flow_action(&cls_flower.rule->action, &f->exts); 1766 if (err) { 1767 kfree(cls_flower.rule); 1768 if (tc_skip_sw(f->flags)) { 1769 NL_SET_ERR_MSG_MOD(extack, "Failed to setup flow action"); 1770 __fl_put(f); 1771 return err; 1772 } 1773 goto next_flow; 1774 } 1775 1776 cls_flower.classid = f->res.classid; 1777 1778 err = cb(TC_SETUP_CLSFLOWER, &cls_flower, cb_priv); 1779 kfree(cls_flower.rule); 1780 1781 if (err) { 1782 if (add && tc_skip_sw(f->flags)) { 1783 __fl_put(f); 1784 return err; 1785 } 1786 goto next_flow; 1787 } 1788 1789 spin_lock(&tp->lock); 1790 tc_cls_offload_cnt_update(block, &f->in_hw_count, &f->flags, 1791 add); 1792 spin_unlock(&tp->lock); 1793 next_flow: 1794 __fl_put(f); 1795 } 1796 1797 return 0; 1798 } 1799 1800 static int fl_hw_create_tmplt(struct tcf_chain *chain, 1801 struct fl_flow_tmplt *tmplt) 1802 { 1803 struct tc_cls_flower_offload cls_flower = {}; 1804 struct tcf_block *block = chain->block; 1805 1806 cls_flower.rule = flow_rule_alloc(0); 1807 if (!cls_flower.rule) 1808 return -ENOMEM; 1809 1810 cls_flower.common.chain_index = chain->index; 1811 cls_flower.command = TC_CLSFLOWER_TMPLT_CREATE; 1812 cls_flower.cookie = (unsigned long) tmplt; 1813 cls_flower.rule->match.dissector = &tmplt->dissector; 1814 cls_flower.rule->match.mask = &tmplt->mask; 1815 cls_flower.rule->match.key = &tmplt->dummy_key; 1816 1817 /* We don't care if driver (any of them) fails to handle this 1818 * call. It serves just as a hint for it. 1819 */ 1820 tc_setup_cb_call(block, TC_SETUP_CLSFLOWER, &cls_flower, false); 1821 kfree(cls_flower.rule); 1822 1823 return 0; 1824 } 1825 1826 static void fl_hw_destroy_tmplt(struct tcf_chain *chain, 1827 struct fl_flow_tmplt *tmplt) 1828 { 1829 struct tc_cls_flower_offload cls_flower = {}; 1830 struct tcf_block *block = chain->block; 1831 1832 cls_flower.common.chain_index = chain->index; 1833 cls_flower.command = TC_CLSFLOWER_TMPLT_DESTROY; 1834 cls_flower.cookie = (unsigned long) tmplt; 1835 1836 tc_setup_cb_call(block, TC_SETUP_CLSFLOWER, &cls_flower, false); 1837 } 1838 1839 static void *fl_tmplt_create(struct net *net, struct tcf_chain *chain, 1840 struct nlattr **tca, 1841 struct netlink_ext_ack *extack) 1842 { 1843 struct fl_flow_tmplt *tmplt; 1844 struct nlattr **tb; 1845 int err; 1846 1847 if (!tca[TCA_OPTIONS]) 1848 return ERR_PTR(-EINVAL); 1849 1850 tb = kcalloc(TCA_FLOWER_MAX + 1, sizeof(struct nlattr *), GFP_KERNEL); 1851 if (!tb) 1852 return ERR_PTR(-ENOBUFS); 1853 err = nla_parse_nested_deprecated(tb, TCA_FLOWER_MAX, 1854 tca[TCA_OPTIONS], fl_policy, NULL); 1855 if (err) 1856 goto errout_tb; 1857 1858 tmplt = kzalloc(sizeof(*tmplt), GFP_KERNEL); 1859 if (!tmplt) { 1860 err = -ENOMEM; 1861 goto errout_tb; 1862 } 1863 tmplt->chain = chain; 1864 err = fl_set_key(net, tb, &tmplt->dummy_key, &tmplt->mask, extack); 1865 if (err) 1866 goto errout_tmplt; 1867 1868 fl_init_dissector(&tmplt->dissector, &tmplt->mask); 1869 1870 err = fl_hw_create_tmplt(chain, tmplt); 1871 if (err) 1872 goto errout_tmplt; 1873 1874 kfree(tb); 1875 return tmplt; 1876 1877 errout_tmplt: 1878 kfree(tmplt); 1879 errout_tb: 1880 kfree(tb); 1881 return ERR_PTR(err); 1882 } 1883 1884 static void fl_tmplt_destroy(void *tmplt_priv) 1885 { 1886 struct fl_flow_tmplt *tmplt = tmplt_priv; 1887 1888 fl_hw_destroy_tmplt(tmplt->chain, tmplt); 1889 kfree(tmplt); 1890 } 1891 1892 static int fl_dump_key_val(struct sk_buff *skb, 1893 void *val, int val_type, 1894 void *mask, int mask_type, int len) 1895 { 1896 int err; 1897 1898 if (!memchr_inv(mask, 0, len)) 1899 return 0; 1900 err = nla_put(skb, val_type, len, val); 1901 if (err) 1902 return err; 1903 if (mask_type != TCA_FLOWER_UNSPEC) { 1904 err = nla_put(skb, mask_type, len, mask); 1905 if (err) 1906 return err; 1907 } 1908 return 0; 1909 } 1910 1911 static int fl_dump_key_port_range(struct sk_buff *skb, struct fl_flow_key *key, 1912 struct fl_flow_key *mask) 1913 { 1914 if (fl_dump_key_val(skb, &key->tp_min.dst, TCA_FLOWER_KEY_PORT_DST_MIN, 1915 &mask->tp_min.dst, TCA_FLOWER_UNSPEC, 1916 sizeof(key->tp_min.dst)) || 1917 fl_dump_key_val(skb, &key->tp_max.dst, TCA_FLOWER_KEY_PORT_DST_MAX, 1918 &mask->tp_max.dst, TCA_FLOWER_UNSPEC, 1919 sizeof(key->tp_max.dst)) || 1920 fl_dump_key_val(skb, &key->tp_min.src, TCA_FLOWER_KEY_PORT_SRC_MIN, 1921 &mask->tp_min.src, TCA_FLOWER_UNSPEC, 1922 sizeof(key->tp_min.src)) || 1923 fl_dump_key_val(skb, &key->tp_max.src, TCA_FLOWER_KEY_PORT_SRC_MAX, 1924 &mask->tp_max.src, TCA_FLOWER_UNSPEC, 1925 sizeof(key->tp_max.src))) 1926 return -1; 1927 1928 return 0; 1929 } 1930 1931 static int fl_dump_key_mpls(struct sk_buff *skb, 1932 struct flow_dissector_key_mpls *mpls_key, 1933 struct flow_dissector_key_mpls *mpls_mask) 1934 { 1935 int err; 1936 1937 if (!memchr_inv(mpls_mask, 0, sizeof(*mpls_mask))) 1938 return 0; 1939 if (mpls_mask->mpls_ttl) { 1940 err = nla_put_u8(skb, TCA_FLOWER_KEY_MPLS_TTL, 1941 mpls_key->mpls_ttl); 1942 if (err) 1943 return err; 1944 } 1945 if (mpls_mask->mpls_tc) { 1946 err = nla_put_u8(skb, TCA_FLOWER_KEY_MPLS_TC, 1947 mpls_key->mpls_tc); 1948 if (err) 1949 return err; 1950 } 1951 if (mpls_mask->mpls_label) { 1952 err = nla_put_u32(skb, TCA_FLOWER_KEY_MPLS_LABEL, 1953 mpls_key->mpls_label); 1954 if (err) 1955 return err; 1956 } 1957 if (mpls_mask->mpls_bos) { 1958 err = nla_put_u8(skb, TCA_FLOWER_KEY_MPLS_BOS, 1959 mpls_key->mpls_bos); 1960 if (err) 1961 return err; 1962 } 1963 return 0; 1964 } 1965 1966 static int fl_dump_key_ip(struct sk_buff *skb, bool encap, 1967 struct flow_dissector_key_ip *key, 1968 struct flow_dissector_key_ip *mask) 1969 { 1970 int tos_key = encap ? TCA_FLOWER_KEY_ENC_IP_TOS : TCA_FLOWER_KEY_IP_TOS; 1971 int ttl_key = encap ? TCA_FLOWER_KEY_ENC_IP_TTL : TCA_FLOWER_KEY_IP_TTL; 1972 int tos_mask = encap ? TCA_FLOWER_KEY_ENC_IP_TOS_MASK : TCA_FLOWER_KEY_IP_TOS_MASK; 1973 int ttl_mask = encap ? TCA_FLOWER_KEY_ENC_IP_TTL_MASK : TCA_FLOWER_KEY_IP_TTL_MASK; 1974 1975 if (fl_dump_key_val(skb, &key->tos, tos_key, &mask->tos, tos_mask, sizeof(key->tos)) || 1976 fl_dump_key_val(skb, &key->ttl, ttl_key, &mask->ttl, ttl_mask, sizeof(key->ttl))) 1977 return -1; 1978 1979 return 0; 1980 } 1981 1982 static int fl_dump_key_vlan(struct sk_buff *skb, 1983 int vlan_id_key, int vlan_prio_key, 1984 struct flow_dissector_key_vlan *vlan_key, 1985 struct flow_dissector_key_vlan *vlan_mask) 1986 { 1987 int err; 1988 1989 if (!memchr_inv(vlan_mask, 0, sizeof(*vlan_mask))) 1990 return 0; 1991 if (vlan_mask->vlan_id) { 1992 err = nla_put_u16(skb, vlan_id_key, 1993 vlan_key->vlan_id); 1994 if (err) 1995 return err; 1996 } 1997 if (vlan_mask->vlan_priority) { 1998 err = nla_put_u8(skb, vlan_prio_key, 1999 vlan_key->vlan_priority); 2000 if (err) 2001 return err; 2002 } 2003 return 0; 2004 } 2005 2006 static void fl_get_key_flag(u32 dissector_key, u32 dissector_mask, 2007 u32 *flower_key, u32 *flower_mask, 2008 u32 flower_flag_bit, u32 dissector_flag_bit) 2009 { 2010 if (dissector_mask & dissector_flag_bit) { 2011 *flower_mask |= flower_flag_bit; 2012 if (dissector_key & dissector_flag_bit) 2013 *flower_key |= flower_flag_bit; 2014 } 2015 } 2016 2017 static int fl_dump_key_flags(struct sk_buff *skb, u32 flags_key, u32 flags_mask) 2018 { 2019 u32 key, mask; 2020 __be32 _key, _mask; 2021 int err; 2022 2023 if (!memchr_inv(&flags_mask, 0, sizeof(flags_mask))) 2024 return 0; 2025 2026 key = 0; 2027 mask = 0; 2028 2029 fl_get_key_flag(flags_key, flags_mask, &key, &mask, 2030 TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT, FLOW_DIS_IS_FRAGMENT); 2031 fl_get_key_flag(flags_key, flags_mask, &key, &mask, 2032 TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST, 2033 FLOW_DIS_FIRST_FRAG); 2034 2035 _key = cpu_to_be32(key); 2036 _mask = cpu_to_be32(mask); 2037 2038 err = nla_put(skb, TCA_FLOWER_KEY_FLAGS, 4, &_key); 2039 if (err) 2040 return err; 2041 2042 return nla_put(skb, TCA_FLOWER_KEY_FLAGS_MASK, 4, &_mask); 2043 } 2044 2045 static int fl_dump_key_geneve_opt(struct sk_buff *skb, 2046 struct flow_dissector_key_enc_opts *enc_opts) 2047 { 2048 struct geneve_opt *opt; 2049 struct nlattr *nest; 2050 int opt_off = 0; 2051 2052 nest = nla_nest_start_noflag(skb, TCA_FLOWER_KEY_ENC_OPTS_GENEVE); 2053 if (!nest) 2054 goto nla_put_failure; 2055 2056 while (enc_opts->len > opt_off) { 2057 opt = (struct geneve_opt *)&enc_opts->data[opt_off]; 2058 2059 if (nla_put_be16(skb, TCA_FLOWER_KEY_ENC_OPT_GENEVE_CLASS, 2060 opt->opt_class)) 2061 goto nla_put_failure; 2062 if (nla_put_u8(skb, TCA_FLOWER_KEY_ENC_OPT_GENEVE_TYPE, 2063 opt->type)) 2064 goto nla_put_failure; 2065 if (nla_put(skb, TCA_FLOWER_KEY_ENC_OPT_GENEVE_DATA, 2066 opt->length * 4, opt->opt_data)) 2067 goto nla_put_failure; 2068 2069 opt_off += sizeof(struct geneve_opt) + opt->length * 4; 2070 } 2071 nla_nest_end(skb, nest); 2072 return 0; 2073 2074 nla_put_failure: 2075 nla_nest_cancel(skb, nest); 2076 return -EMSGSIZE; 2077 } 2078 2079 static int fl_dump_key_options(struct sk_buff *skb, int enc_opt_type, 2080 struct flow_dissector_key_enc_opts *enc_opts) 2081 { 2082 struct nlattr *nest; 2083 int err; 2084 2085 if (!enc_opts->len) 2086 return 0; 2087 2088 nest = nla_nest_start_noflag(skb, enc_opt_type); 2089 if (!nest) 2090 goto nla_put_failure; 2091 2092 switch (enc_opts->dst_opt_type) { 2093 case TUNNEL_GENEVE_OPT: 2094 err = fl_dump_key_geneve_opt(skb, enc_opts); 2095 if (err) 2096 goto nla_put_failure; 2097 break; 2098 default: 2099 goto nla_put_failure; 2100 } 2101 nla_nest_end(skb, nest); 2102 return 0; 2103 2104 nla_put_failure: 2105 nla_nest_cancel(skb, nest); 2106 return -EMSGSIZE; 2107 } 2108 2109 static int fl_dump_key_enc_opt(struct sk_buff *skb, 2110 struct flow_dissector_key_enc_opts *key_opts, 2111 struct flow_dissector_key_enc_opts *msk_opts) 2112 { 2113 int err; 2114 2115 err = fl_dump_key_options(skb, TCA_FLOWER_KEY_ENC_OPTS, key_opts); 2116 if (err) 2117 return err; 2118 2119 return fl_dump_key_options(skb, TCA_FLOWER_KEY_ENC_OPTS_MASK, msk_opts); 2120 } 2121 2122 static int fl_dump_key(struct sk_buff *skb, struct net *net, 2123 struct fl_flow_key *key, struct fl_flow_key *mask) 2124 { 2125 if (mask->indev_ifindex) { 2126 struct net_device *dev; 2127 2128 dev = __dev_get_by_index(net, key->indev_ifindex); 2129 if (dev && nla_put_string(skb, TCA_FLOWER_INDEV, dev->name)) 2130 goto nla_put_failure; 2131 } 2132 2133 if (fl_dump_key_val(skb, key->eth.dst, TCA_FLOWER_KEY_ETH_DST, 2134 mask->eth.dst, TCA_FLOWER_KEY_ETH_DST_MASK, 2135 sizeof(key->eth.dst)) || 2136 fl_dump_key_val(skb, key->eth.src, TCA_FLOWER_KEY_ETH_SRC, 2137 mask->eth.src, TCA_FLOWER_KEY_ETH_SRC_MASK, 2138 sizeof(key->eth.src)) || 2139 fl_dump_key_val(skb, &key->basic.n_proto, TCA_FLOWER_KEY_ETH_TYPE, 2140 &mask->basic.n_proto, TCA_FLOWER_UNSPEC, 2141 sizeof(key->basic.n_proto))) 2142 goto nla_put_failure; 2143 2144 if (fl_dump_key_mpls(skb, &key->mpls, &mask->mpls)) 2145 goto nla_put_failure; 2146 2147 if (fl_dump_key_vlan(skb, TCA_FLOWER_KEY_VLAN_ID, 2148 TCA_FLOWER_KEY_VLAN_PRIO, &key->vlan, &mask->vlan)) 2149 goto nla_put_failure; 2150 2151 if (fl_dump_key_vlan(skb, TCA_FLOWER_KEY_CVLAN_ID, 2152 TCA_FLOWER_KEY_CVLAN_PRIO, 2153 &key->cvlan, &mask->cvlan) || 2154 (mask->cvlan.vlan_tpid && 2155 nla_put_be16(skb, TCA_FLOWER_KEY_VLAN_ETH_TYPE, 2156 key->cvlan.vlan_tpid))) 2157 goto nla_put_failure; 2158 2159 if (mask->basic.n_proto) { 2160 if (mask->cvlan.vlan_tpid) { 2161 if (nla_put_be16(skb, TCA_FLOWER_KEY_CVLAN_ETH_TYPE, 2162 key->basic.n_proto)) 2163 goto nla_put_failure; 2164 } else if (mask->vlan.vlan_tpid) { 2165 if (nla_put_be16(skb, TCA_FLOWER_KEY_VLAN_ETH_TYPE, 2166 key->basic.n_proto)) 2167 goto nla_put_failure; 2168 } 2169 } 2170 2171 if ((key->basic.n_proto == htons(ETH_P_IP) || 2172 key->basic.n_proto == htons(ETH_P_IPV6)) && 2173 (fl_dump_key_val(skb, &key->basic.ip_proto, TCA_FLOWER_KEY_IP_PROTO, 2174 &mask->basic.ip_proto, TCA_FLOWER_UNSPEC, 2175 sizeof(key->basic.ip_proto)) || 2176 fl_dump_key_ip(skb, false, &key->ip, &mask->ip))) 2177 goto nla_put_failure; 2178 2179 if (key->control.addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS && 2180 (fl_dump_key_val(skb, &key->ipv4.src, TCA_FLOWER_KEY_IPV4_SRC, 2181 &mask->ipv4.src, TCA_FLOWER_KEY_IPV4_SRC_MASK, 2182 sizeof(key->ipv4.src)) || 2183 fl_dump_key_val(skb, &key->ipv4.dst, TCA_FLOWER_KEY_IPV4_DST, 2184 &mask->ipv4.dst, TCA_FLOWER_KEY_IPV4_DST_MASK, 2185 sizeof(key->ipv4.dst)))) 2186 goto nla_put_failure; 2187 else if (key->control.addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS && 2188 (fl_dump_key_val(skb, &key->ipv6.src, TCA_FLOWER_KEY_IPV6_SRC, 2189 &mask->ipv6.src, TCA_FLOWER_KEY_IPV6_SRC_MASK, 2190 sizeof(key->ipv6.src)) || 2191 fl_dump_key_val(skb, &key->ipv6.dst, TCA_FLOWER_KEY_IPV6_DST, 2192 &mask->ipv6.dst, TCA_FLOWER_KEY_IPV6_DST_MASK, 2193 sizeof(key->ipv6.dst)))) 2194 goto nla_put_failure; 2195 2196 if (key->basic.ip_proto == IPPROTO_TCP && 2197 (fl_dump_key_val(skb, &key->tp.src, TCA_FLOWER_KEY_TCP_SRC, 2198 &mask->tp.src, TCA_FLOWER_KEY_TCP_SRC_MASK, 2199 sizeof(key->tp.src)) || 2200 fl_dump_key_val(skb, &key->tp.dst, TCA_FLOWER_KEY_TCP_DST, 2201 &mask->tp.dst, TCA_FLOWER_KEY_TCP_DST_MASK, 2202 sizeof(key->tp.dst)) || 2203 fl_dump_key_val(skb, &key->tcp.flags, TCA_FLOWER_KEY_TCP_FLAGS, 2204 &mask->tcp.flags, TCA_FLOWER_KEY_TCP_FLAGS_MASK, 2205 sizeof(key->tcp.flags)))) 2206 goto nla_put_failure; 2207 else if (key->basic.ip_proto == IPPROTO_UDP && 2208 (fl_dump_key_val(skb, &key->tp.src, TCA_FLOWER_KEY_UDP_SRC, 2209 &mask->tp.src, TCA_FLOWER_KEY_UDP_SRC_MASK, 2210 sizeof(key->tp.src)) || 2211 fl_dump_key_val(skb, &key->tp.dst, TCA_FLOWER_KEY_UDP_DST, 2212 &mask->tp.dst, TCA_FLOWER_KEY_UDP_DST_MASK, 2213 sizeof(key->tp.dst)))) 2214 goto nla_put_failure; 2215 else if (key->basic.ip_proto == IPPROTO_SCTP && 2216 (fl_dump_key_val(skb, &key->tp.src, TCA_FLOWER_KEY_SCTP_SRC, 2217 &mask->tp.src, TCA_FLOWER_KEY_SCTP_SRC_MASK, 2218 sizeof(key->tp.src)) || 2219 fl_dump_key_val(skb, &key->tp.dst, TCA_FLOWER_KEY_SCTP_DST, 2220 &mask->tp.dst, TCA_FLOWER_KEY_SCTP_DST_MASK, 2221 sizeof(key->tp.dst)))) 2222 goto nla_put_failure; 2223 else if (key->basic.n_proto == htons(ETH_P_IP) && 2224 key->basic.ip_proto == IPPROTO_ICMP && 2225 (fl_dump_key_val(skb, &key->icmp.type, 2226 TCA_FLOWER_KEY_ICMPV4_TYPE, &mask->icmp.type, 2227 TCA_FLOWER_KEY_ICMPV4_TYPE_MASK, 2228 sizeof(key->icmp.type)) || 2229 fl_dump_key_val(skb, &key->icmp.code, 2230 TCA_FLOWER_KEY_ICMPV4_CODE, &mask->icmp.code, 2231 TCA_FLOWER_KEY_ICMPV4_CODE_MASK, 2232 sizeof(key->icmp.code)))) 2233 goto nla_put_failure; 2234 else if (key->basic.n_proto == htons(ETH_P_IPV6) && 2235 key->basic.ip_proto == IPPROTO_ICMPV6 && 2236 (fl_dump_key_val(skb, &key->icmp.type, 2237 TCA_FLOWER_KEY_ICMPV6_TYPE, &mask->icmp.type, 2238 TCA_FLOWER_KEY_ICMPV6_TYPE_MASK, 2239 sizeof(key->icmp.type)) || 2240 fl_dump_key_val(skb, &key->icmp.code, 2241 TCA_FLOWER_KEY_ICMPV6_CODE, &mask->icmp.code, 2242 TCA_FLOWER_KEY_ICMPV6_CODE_MASK, 2243 sizeof(key->icmp.code)))) 2244 goto nla_put_failure; 2245 else if ((key->basic.n_proto == htons(ETH_P_ARP) || 2246 key->basic.n_proto == htons(ETH_P_RARP)) && 2247 (fl_dump_key_val(skb, &key->arp.sip, 2248 TCA_FLOWER_KEY_ARP_SIP, &mask->arp.sip, 2249 TCA_FLOWER_KEY_ARP_SIP_MASK, 2250 sizeof(key->arp.sip)) || 2251 fl_dump_key_val(skb, &key->arp.tip, 2252 TCA_FLOWER_KEY_ARP_TIP, &mask->arp.tip, 2253 TCA_FLOWER_KEY_ARP_TIP_MASK, 2254 sizeof(key->arp.tip)) || 2255 fl_dump_key_val(skb, &key->arp.op, 2256 TCA_FLOWER_KEY_ARP_OP, &mask->arp.op, 2257 TCA_FLOWER_KEY_ARP_OP_MASK, 2258 sizeof(key->arp.op)) || 2259 fl_dump_key_val(skb, key->arp.sha, TCA_FLOWER_KEY_ARP_SHA, 2260 mask->arp.sha, TCA_FLOWER_KEY_ARP_SHA_MASK, 2261 sizeof(key->arp.sha)) || 2262 fl_dump_key_val(skb, key->arp.tha, TCA_FLOWER_KEY_ARP_THA, 2263 mask->arp.tha, TCA_FLOWER_KEY_ARP_THA_MASK, 2264 sizeof(key->arp.tha)))) 2265 goto nla_put_failure; 2266 2267 if ((key->basic.ip_proto == IPPROTO_TCP || 2268 key->basic.ip_proto == IPPROTO_UDP || 2269 key->basic.ip_proto == IPPROTO_SCTP) && 2270 fl_dump_key_port_range(skb, key, mask)) 2271 goto nla_put_failure; 2272 2273 if (key->enc_control.addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS && 2274 (fl_dump_key_val(skb, &key->enc_ipv4.src, 2275 TCA_FLOWER_KEY_ENC_IPV4_SRC, &mask->enc_ipv4.src, 2276 TCA_FLOWER_KEY_ENC_IPV4_SRC_MASK, 2277 sizeof(key->enc_ipv4.src)) || 2278 fl_dump_key_val(skb, &key->enc_ipv4.dst, 2279 TCA_FLOWER_KEY_ENC_IPV4_DST, &mask->enc_ipv4.dst, 2280 TCA_FLOWER_KEY_ENC_IPV4_DST_MASK, 2281 sizeof(key->enc_ipv4.dst)))) 2282 goto nla_put_failure; 2283 else if (key->enc_control.addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS && 2284 (fl_dump_key_val(skb, &key->enc_ipv6.src, 2285 TCA_FLOWER_KEY_ENC_IPV6_SRC, &mask->enc_ipv6.src, 2286 TCA_FLOWER_KEY_ENC_IPV6_SRC_MASK, 2287 sizeof(key->enc_ipv6.src)) || 2288 fl_dump_key_val(skb, &key->enc_ipv6.dst, 2289 TCA_FLOWER_KEY_ENC_IPV6_DST, 2290 &mask->enc_ipv6.dst, 2291 TCA_FLOWER_KEY_ENC_IPV6_DST_MASK, 2292 sizeof(key->enc_ipv6.dst)))) 2293 goto nla_put_failure; 2294 2295 if (fl_dump_key_val(skb, &key->enc_key_id, TCA_FLOWER_KEY_ENC_KEY_ID, 2296 &mask->enc_key_id, TCA_FLOWER_UNSPEC, 2297 sizeof(key->enc_key_id)) || 2298 fl_dump_key_val(skb, &key->enc_tp.src, 2299 TCA_FLOWER_KEY_ENC_UDP_SRC_PORT, 2300 &mask->enc_tp.src, 2301 TCA_FLOWER_KEY_ENC_UDP_SRC_PORT_MASK, 2302 sizeof(key->enc_tp.src)) || 2303 fl_dump_key_val(skb, &key->enc_tp.dst, 2304 TCA_FLOWER_KEY_ENC_UDP_DST_PORT, 2305 &mask->enc_tp.dst, 2306 TCA_FLOWER_KEY_ENC_UDP_DST_PORT_MASK, 2307 sizeof(key->enc_tp.dst)) || 2308 fl_dump_key_ip(skb, true, &key->enc_ip, &mask->enc_ip) || 2309 fl_dump_key_enc_opt(skb, &key->enc_opts, &mask->enc_opts)) 2310 goto nla_put_failure; 2311 2312 if (fl_dump_key_flags(skb, key->control.flags, mask->control.flags)) 2313 goto nla_put_failure; 2314 2315 return 0; 2316 2317 nla_put_failure: 2318 return -EMSGSIZE; 2319 } 2320 2321 static int fl_dump(struct net *net, struct tcf_proto *tp, void *fh, 2322 struct sk_buff *skb, struct tcmsg *t, bool rtnl_held) 2323 { 2324 struct cls_fl_filter *f = fh; 2325 struct nlattr *nest; 2326 struct fl_flow_key *key, *mask; 2327 bool skip_hw; 2328 2329 if (!f) 2330 return skb->len; 2331 2332 t->tcm_handle = f->handle; 2333 2334 nest = nla_nest_start_noflag(skb, TCA_OPTIONS); 2335 if (!nest) 2336 goto nla_put_failure; 2337 2338 spin_lock(&tp->lock); 2339 2340 if (f->res.classid && 2341 nla_put_u32(skb, TCA_FLOWER_CLASSID, f->res.classid)) 2342 goto nla_put_failure_locked; 2343 2344 key = &f->key; 2345 mask = &f->mask->key; 2346 skip_hw = tc_skip_hw(f->flags); 2347 2348 if (fl_dump_key(skb, net, key, mask)) 2349 goto nla_put_failure_locked; 2350 2351 if (f->flags && nla_put_u32(skb, TCA_FLOWER_FLAGS, f->flags)) 2352 goto nla_put_failure_locked; 2353 2354 spin_unlock(&tp->lock); 2355 2356 if (!skip_hw) 2357 fl_hw_update_stats(tp, f, rtnl_held); 2358 2359 if (nla_put_u32(skb, TCA_FLOWER_IN_HW_COUNT, f->in_hw_count)) 2360 goto nla_put_failure; 2361 2362 if (tcf_exts_dump(skb, &f->exts)) 2363 goto nla_put_failure; 2364 2365 nla_nest_end(skb, nest); 2366 2367 if (tcf_exts_dump_stats(skb, &f->exts) < 0) 2368 goto nla_put_failure; 2369 2370 return skb->len; 2371 2372 nla_put_failure_locked: 2373 spin_unlock(&tp->lock); 2374 nla_put_failure: 2375 nla_nest_cancel(skb, nest); 2376 return -1; 2377 } 2378 2379 static int fl_tmplt_dump(struct sk_buff *skb, struct net *net, void *tmplt_priv) 2380 { 2381 struct fl_flow_tmplt *tmplt = tmplt_priv; 2382 struct fl_flow_key *key, *mask; 2383 struct nlattr *nest; 2384 2385 nest = nla_nest_start_noflag(skb, TCA_OPTIONS); 2386 if (!nest) 2387 goto nla_put_failure; 2388 2389 key = &tmplt->dummy_key; 2390 mask = &tmplt->mask; 2391 2392 if (fl_dump_key(skb, net, key, mask)) 2393 goto nla_put_failure; 2394 2395 nla_nest_end(skb, nest); 2396 2397 return skb->len; 2398 2399 nla_put_failure: 2400 nla_nest_cancel(skb, nest); 2401 return -EMSGSIZE; 2402 } 2403 2404 static void fl_bind_class(void *fh, u32 classid, unsigned long cl) 2405 { 2406 struct cls_fl_filter *f = fh; 2407 2408 if (f && f->res.classid == classid) 2409 f->res.class = cl; 2410 } 2411 2412 static struct tcf_proto_ops cls_fl_ops __read_mostly = { 2413 .kind = "flower", 2414 .classify = fl_classify, 2415 .init = fl_init, 2416 .destroy = fl_destroy, 2417 .get = fl_get, 2418 .put = fl_put, 2419 .change = fl_change, 2420 .delete = fl_delete, 2421 .walk = fl_walk, 2422 .reoffload = fl_reoffload, 2423 .dump = fl_dump, 2424 .bind_class = fl_bind_class, 2425 .tmplt_create = fl_tmplt_create, 2426 .tmplt_destroy = fl_tmplt_destroy, 2427 .tmplt_dump = fl_tmplt_dump, 2428 .owner = THIS_MODULE, 2429 .flags = TCF_PROTO_OPS_DOIT_UNLOCKED, 2430 }; 2431 2432 static int __init cls_fl_init(void) 2433 { 2434 return register_tcf_proto_ops(&cls_fl_ops); 2435 } 2436 2437 static void __exit cls_fl_exit(void) 2438 { 2439 unregister_tcf_proto_ops(&cls_fl_ops); 2440 } 2441 2442 module_init(cls_fl_init); 2443 module_exit(cls_fl_exit); 2444 2445 MODULE_AUTHOR("Jiri Pirko <jiri@resnulli.us>"); 2446 MODULE_DESCRIPTION("Flower classifier"); 2447 MODULE_LICENSE("GPL v2"); 2448