root/net/sched/act_ife.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. ife_encode_meta_u16
  2. ife_get_meta_u32
  3. ife_check_meta_u32
  4. ife_check_meta_u16
  5. ife_encode_meta_u32
  6. ife_get_meta_u16
  7. ife_alloc_meta_u32
  8. ife_alloc_meta_u16
  9. ife_release_meta_gen
  10. ife_validate_meta_u32
  11. ife_validate_meta_u16
  12. find_ife_oplist
  13. register_ife_op
  14. unregister_ife_op
  15. ife_validate_metatype
  16. ife_meta_id2name
  17. load_metaops_and_vet
  18. __add_metainfo
  19. add_metainfo_and_get_ops
  20. add_metainfo
  21. use_all_metadata
  22. dump_metalist
  23. _tcf_ife_cleanup
  24. tcf_ife_cleanup
  25. populate_metalist
  26. tcf_ife_init
  27. tcf_ife_dump
  28. find_decode_metaid
  29. tcf_ife_decode
  30. ife_get_sz
  31. tcf_ife_encode
  32. tcf_ife_act
  33. tcf_ife_walker
  34. tcf_ife_search
  35. ife_init_net
  36. ife_exit_net
  37. ife_init_module
  38. ife_cleanup_module

   1 // SPDX-License-Identifier: GPL-2.0-or-later
   2 /*
   3  * net/sched/ife.c      Inter-FE action based on ForCES WG InterFE LFB
   4  *
   5  *              Refer to:
   6  *              draft-ietf-forces-interfelfb-03
   7  *              and
   8  *              netdev01 paper:
   9  *              "Distributing Linux Traffic Control Classifier-Action
  10  *              Subsystem"
  11  *              Authors: Jamal Hadi Salim and Damascene M. Joachimpillai
  12  *
  13  * copyright Jamal Hadi Salim (2015)
  14 */
  15 
  16 #include <linux/types.h>
  17 #include <linux/kernel.h>
  18 #include <linux/string.h>
  19 #include <linux/errno.h>
  20 #include <linux/skbuff.h>
  21 #include <linux/rtnetlink.h>
  22 #include <linux/module.h>
  23 #include <linux/init.h>
  24 #include <net/net_namespace.h>
  25 #include <net/netlink.h>
  26 #include <net/pkt_sched.h>
  27 #include <net/pkt_cls.h>
  28 #include <uapi/linux/tc_act/tc_ife.h>
  29 #include <net/tc_act/tc_ife.h>
  30 #include <linux/etherdevice.h>
  31 #include <net/ife.h>
  32 
  33 static unsigned int ife_net_id;
  34 static int max_metacnt = IFE_META_MAX + 1;
  35 static struct tc_action_ops act_ife_ops;
  36 
  37 static const struct nla_policy ife_policy[TCA_IFE_MAX + 1] = {
  38         [TCA_IFE_PARMS] = { .len = sizeof(struct tc_ife)},
  39         [TCA_IFE_DMAC] = { .len = ETH_ALEN},
  40         [TCA_IFE_SMAC] = { .len = ETH_ALEN},
  41         [TCA_IFE_TYPE] = { .type = NLA_U16},
  42 };
  43 
  44 int ife_encode_meta_u16(u16 metaval, void *skbdata, struct tcf_meta_info *mi)
  45 {
  46         u16 edata = 0;
  47 
  48         if (mi->metaval)
  49                 edata = *(u16 *)mi->metaval;
  50         else if (metaval)
  51                 edata = metaval;
  52 
  53         if (!edata) /* will not encode */
  54                 return 0;
  55 
  56         edata = htons(edata);
  57         return ife_tlv_meta_encode(skbdata, mi->metaid, 2, &edata);
  58 }
  59 EXPORT_SYMBOL_GPL(ife_encode_meta_u16);
  60 
  61 int ife_get_meta_u32(struct sk_buff *skb, struct tcf_meta_info *mi)
  62 {
  63         if (mi->metaval)
  64                 return nla_put_u32(skb, mi->metaid, *(u32 *)mi->metaval);
  65         else
  66                 return nla_put(skb, mi->metaid, 0, NULL);
  67 }
  68 EXPORT_SYMBOL_GPL(ife_get_meta_u32);
  69 
  70 int ife_check_meta_u32(u32 metaval, struct tcf_meta_info *mi)
  71 {
  72         if (metaval || mi->metaval)
  73                 return 8; /* T+L+V == 2+2+4 */
  74 
  75         return 0;
  76 }
  77 EXPORT_SYMBOL_GPL(ife_check_meta_u32);
  78 
  79 int ife_check_meta_u16(u16 metaval, struct tcf_meta_info *mi)
  80 {
  81         if (metaval || mi->metaval)
  82                 return 8; /* T+L+(V) == 2+2+(2+2bytepad) */
  83 
  84         return 0;
  85 }
  86 EXPORT_SYMBOL_GPL(ife_check_meta_u16);
  87 
  88 int ife_encode_meta_u32(u32 metaval, void *skbdata, struct tcf_meta_info *mi)
  89 {
  90         u32 edata = metaval;
  91 
  92         if (mi->metaval)
  93                 edata = *(u32 *)mi->metaval;
  94         else if (metaval)
  95                 edata = metaval;
  96 
  97         if (!edata) /* will not encode */
  98                 return 0;
  99 
 100         edata = htonl(edata);
 101         return ife_tlv_meta_encode(skbdata, mi->metaid, 4, &edata);
 102 }
 103 EXPORT_SYMBOL_GPL(ife_encode_meta_u32);
 104 
 105 int ife_get_meta_u16(struct sk_buff *skb, struct tcf_meta_info *mi)
 106 {
 107         if (mi->metaval)
 108                 return nla_put_u16(skb, mi->metaid, *(u16 *)mi->metaval);
 109         else
 110                 return nla_put(skb, mi->metaid, 0, NULL);
 111 }
 112 EXPORT_SYMBOL_GPL(ife_get_meta_u16);
 113 
 114 int ife_alloc_meta_u32(struct tcf_meta_info *mi, void *metaval, gfp_t gfp)
 115 {
 116         mi->metaval = kmemdup(metaval, sizeof(u32), gfp);
 117         if (!mi->metaval)
 118                 return -ENOMEM;
 119 
 120         return 0;
 121 }
 122 EXPORT_SYMBOL_GPL(ife_alloc_meta_u32);
 123 
 124 int ife_alloc_meta_u16(struct tcf_meta_info *mi, void *metaval, gfp_t gfp)
 125 {
 126         mi->metaval = kmemdup(metaval, sizeof(u16), gfp);
 127         if (!mi->metaval)
 128                 return -ENOMEM;
 129 
 130         return 0;
 131 }
 132 EXPORT_SYMBOL_GPL(ife_alloc_meta_u16);
 133 
 134 void ife_release_meta_gen(struct tcf_meta_info *mi)
 135 {
 136         kfree(mi->metaval);
 137 }
 138 EXPORT_SYMBOL_GPL(ife_release_meta_gen);
 139 
 140 int ife_validate_meta_u32(void *val, int len)
 141 {
 142         if (len == sizeof(u32))
 143                 return 0;
 144 
 145         return -EINVAL;
 146 }
 147 EXPORT_SYMBOL_GPL(ife_validate_meta_u32);
 148 
 149 int ife_validate_meta_u16(void *val, int len)
 150 {
 151         /* length will not include padding */
 152         if (len == sizeof(u16))
 153                 return 0;
 154 
 155         return -EINVAL;
 156 }
 157 EXPORT_SYMBOL_GPL(ife_validate_meta_u16);
 158 
 159 static LIST_HEAD(ifeoplist);
 160 static DEFINE_RWLOCK(ife_mod_lock);
 161 
 162 static struct tcf_meta_ops *find_ife_oplist(u16 metaid)
 163 {
 164         struct tcf_meta_ops *o;
 165 
 166         read_lock(&ife_mod_lock);
 167         list_for_each_entry(o, &ifeoplist, list) {
 168                 if (o->metaid == metaid) {
 169                         if (!try_module_get(o->owner))
 170                                 o = NULL;
 171                         read_unlock(&ife_mod_lock);
 172                         return o;
 173                 }
 174         }
 175         read_unlock(&ife_mod_lock);
 176 
 177         return NULL;
 178 }
 179 
 180 int register_ife_op(struct tcf_meta_ops *mops)
 181 {
 182         struct tcf_meta_ops *m;
 183 
 184         if (!mops->metaid || !mops->metatype || !mops->name ||
 185             !mops->check_presence || !mops->encode || !mops->decode ||
 186             !mops->get || !mops->alloc)
 187                 return -EINVAL;
 188 
 189         write_lock(&ife_mod_lock);
 190 
 191         list_for_each_entry(m, &ifeoplist, list) {
 192                 if (m->metaid == mops->metaid ||
 193                     (strcmp(mops->name, m->name) == 0)) {
 194                         write_unlock(&ife_mod_lock);
 195                         return -EEXIST;
 196                 }
 197         }
 198 
 199         if (!mops->release)
 200                 mops->release = ife_release_meta_gen;
 201 
 202         list_add_tail(&mops->list, &ifeoplist);
 203         write_unlock(&ife_mod_lock);
 204         return 0;
 205 }
 206 EXPORT_SYMBOL_GPL(unregister_ife_op);
 207 
 208 int unregister_ife_op(struct tcf_meta_ops *mops)
 209 {
 210         struct tcf_meta_ops *m;
 211         int err = -ENOENT;
 212 
 213         write_lock(&ife_mod_lock);
 214         list_for_each_entry(m, &ifeoplist, list) {
 215                 if (m->metaid == mops->metaid) {
 216                         list_del(&mops->list);
 217                         err = 0;
 218                         break;
 219                 }
 220         }
 221         write_unlock(&ife_mod_lock);
 222 
 223         return err;
 224 }
 225 EXPORT_SYMBOL_GPL(register_ife_op);
 226 
 227 static int ife_validate_metatype(struct tcf_meta_ops *ops, void *val, int len)
 228 {
 229         int ret = 0;
 230         /* XXX: unfortunately cant use nla_policy at this point
 231         * because a length of 0 is valid in the case of
 232         * "allow". "use" semantics do enforce for proper
 233         * length and i couldve use nla_policy but it makes it hard
 234         * to use it just for that..
 235         */
 236         if (ops->validate)
 237                 return ops->validate(val, len);
 238 
 239         if (ops->metatype == NLA_U32)
 240                 ret = ife_validate_meta_u32(val, len);
 241         else if (ops->metatype == NLA_U16)
 242                 ret = ife_validate_meta_u16(val, len);
 243 
 244         return ret;
 245 }
 246 
 247 #ifdef CONFIG_MODULES
 248 static const char *ife_meta_id2name(u32 metaid)
 249 {
 250         switch (metaid) {
 251         case IFE_META_SKBMARK:
 252                 return "skbmark";
 253         case IFE_META_PRIO:
 254                 return "skbprio";
 255         case IFE_META_TCINDEX:
 256                 return "tcindex";
 257         default:
 258                 return "unknown";
 259         }
 260 }
 261 #endif
 262 
 263 /* called when adding new meta information
 264 */
 265 static int load_metaops_and_vet(u32 metaid, void *val, int len, bool rtnl_held)
 266 {
 267         struct tcf_meta_ops *ops = find_ife_oplist(metaid);
 268         int ret = 0;
 269 
 270         if (!ops) {
 271                 ret = -ENOENT;
 272 #ifdef CONFIG_MODULES
 273                 if (rtnl_held)
 274                         rtnl_unlock();
 275                 request_module("ife-meta-%s", ife_meta_id2name(metaid));
 276                 if (rtnl_held)
 277                         rtnl_lock();
 278                 ops = find_ife_oplist(metaid);
 279 #endif
 280         }
 281 
 282         if (ops) {
 283                 ret = 0;
 284                 if (len)
 285                         ret = ife_validate_metatype(ops, val, len);
 286 
 287                 module_put(ops->owner);
 288         }
 289 
 290         return ret;
 291 }
 292 
 293 /* called when adding new meta information
 294 */
 295 static int __add_metainfo(const struct tcf_meta_ops *ops,
 296                           struct tcf_ife_info *ife, u32 metaid, void *metaval,
 297                           int len, bool atomic, bool exists)
 298 {
 299         struct tcf_meta_info *mi = NULL;
 300         int ret = 0;
 301 
 302         mi = kzalloc(sizeof(*mi), atomic ? GFP_ATOMIC : GFP_KERNEL);
 303         if (!mi)
 304                 return -ENOMEM;
 305 
 306         mi->metaid = metaid;
 307         mi->ops = ops;
 308         if (len > 0) {
 309                 ret = ops->alloc(mi, metaval, atomic ? GFP_ATOMIC : GFP_KERNEL);
 310                 if (ret != 0) {
 311                         kfree(mi);
 312                         return ret;
 313                 }
 314         }
 315 
 316         if (exists)
 317                 spin_lock_bh(&ife->tcf_lock);
 318         list_add_tail(&mi->metalist, &ife->metalist);
 319         if (exists)
 320                 spin_unlock_bh(&ife->tcf_lock);
 321 
 322         return ret;
 323 }
 324 
 325 static int add_metainfo_and_get_ops(const struct tcf_meta_ops *ops,
 326                                     struct tcf_ife_info *ife, u32 metaid,
 327                                     bool exists)
 328 {
 329         int ret;
 330 
 331         if (!try_module_get(ops->owner))
 332                 return -ENOENT;
 333         ret = __add_metainfo(ops, ife, metaid, NULL, 0, true, exists);
 334         if (ret)
 335                 module_put(ops->owner);
 336         return ret;
 337 }
 338 
 339 static int add_metainfo(struct tcf_ife_info *ife, u32 metaid, void *metaval,
 340                         int len, bool exists)
 341 {
 342         const struct tcf_meta_ops *ops = find_ife_oplist(metaid);
 343         int ret;
 344 
 345         if (!ops)
 346                 return -ENOENT;
 347         ret = __add_metainfo(ops, ife, metaid, metaval, len, false, exists);
 348         if (ret)
 349                 /*put back what find_ife_oplist took */
 350                 module_put(ops->owner);
 351         return ret;
 352 }
 353 
 354 static int use_all_metadata(struct tcf_ife_info *ife, bool exists)
 355 {
 356         struct tcf_meta_ops *o;
 357         int rc = 0;
 358         int installed = 0;
 359 
 360         read_lock(&ife_mod_lock);
 361         list_for_each_entry(o, &ifeoplist, list) {
 362                 rc = add_metainfo_and_get_ops(o, ife, o->metaid, exists);
 363                 if (rc == 0)
 364                         installed += 1;
 365         }
 366         read_unlock(&ife_mod_lock);
 367 
 368         if (installed)
 369                 return 0;
 370         else
 371                 return -EINVAL;
 372 }
 373 
 374 static int dump_metalist(struct sk_buff *skb, struct tcf_ife_info *ife)
 375 {
 376         struct tcf_meta_info *e;
 377         struct nlattr *nest;
 378         unsigned char *b = skb_tail_pointer(skb);
 379         int total_encoded = 0;
 380 
 381         /*can only happen on decode */
 382         if (list_empty(&ife->metalist))
 383                 return 0;
 384 
 385         nest = nla_nest_start_noflag(skb, TCA_IFE_METALST);
 386         if (!nest)
 387                 goto out_nlmsg_trim;
 388 
 389         list_for_each_entry(e, &ife->metalist, metalist) {
 390                 if (!e->ops->get(skb, e))
 391                         total_encoded += 1;
 392         }
 393 
 394         if (!total_encoded)
 395                 goto out_nlmsg_trim;
 396 
 397         nla_nest_end(skb, nest);
 398 
 399         return 0;
 400 
 401 out_nlmsg_trim:
 402         nlmsg_trim(skb, b);
 403         return -1;
 404 }
 405 
 406 /* under ife->tcf_lock */
 407 static void _tcf_ife_cleanup(struct tc_action *a)
 408 {
 409         struct tcf_ife_info *ife = to_ife(a);
 410         struct tcf_meta_info *e, *n;
 411 
 412         list_for_each_entry_safe(e, n, &ife->metalist, metalist) {
 413                 list_del(&e->metalist);
 414                 if (e->metaval) {
 415                         if (e->ops->release)
 416                                 e->ops->release(e);
 417                         else
 418                                 kfree(e->metaval);
 419                 }
 420                 module_put(e->ops->owner);
 421                 kfree(e);
 422         }
 423 }
 424 
 425 static void tcf_ife_cleanup(struct tc_action *a)
 426 {
 427         struct tcf_ife_info *ife = to_ife(a);
 428         struct tcf_ife_params *p;
 429 
 430         spin_lock_bh(&ife->tcf_lock);
 431         _tcf_ife_cleanup(a);
 432         spin_unlock_bh(&ife->tcf_lock);
 433 
 434         p = rcu_dereference_protected(ife->params, 1);
 435         if (p)
 436                 kfree_rcu(p, rcu);
 437 }
 438 
 439 static int populate_metalist(struct tcf_ife_info *ife, struct nlattr **tb,
 440                              bool exists, bool rtnl_held)
 441 {
 442         int len = 0;
 443         int rc = 0;
 444         int i = 0;
 445         void *val;
 446 
 447         for (i = 1; i < max_metacnt; i++) {
 448                 if (tb[i]) {
 449                         val = nla_data(tb[i]);
 450                         len = nla_len(tb[i]);
 451 
 452                         rc = load_metaops_and_vet(i, val, len, rtnl_held);
 453                         if (rc != 0)
 454                                 return rc;
 455 
 456                         rc = add_metainfo(ife, i, val, len, exists);
 457                         if (rc)
 458                                 return rc;
 459                 }
 460         }
 461 
 462         return rc;
 463 }
 464 
 465 static int tcf_ife_init(struct net *net, struct nlattr *nla,
 466                         struct nlattr *est, struct tc_action **a,
 467                         int ovr, int bind, bool rtnl_held,
 468                         struct tcf_proto *tp, struct netlink_ext_ack *extack)
 469 {
 470         struct tc_action_net *tn = net_generic(net, ife_net_id);
 471         struct nlattr *tb[TCA_IFE_MAX + 1];
 472         struct nlattr *tb2[IFE_META_MAX + 1];
 473         struct tcf_chain *goto_ch = NULL;
 474         struct tcf_ife_params *p;
 475         struct tcf_ife_info *ife;
 476         u16 ife_type = ETH_P_IFE;
 477         struct tc_ife *parm;
 478         u8 *daddr = NULL;
 479         u8 *saddr = NULL;
 480         bool exists = false;
 481         int ret = 0;
 482         u32 index;
 483         int err;
 484 
 485         if (!nla) {
 486                 NL_SET_ERR_MSG_MOD(extack, "IFE requires attributes to be passed");
 487                 return -EINVAL;
 488         }
 489 
 490         err = nla_parse_nested_deprecated(tb, TCA_IFE_MAX, nla, ife_policy,
 491                                           NULL);
 492         if (err < 0)
 493                 return err;
 494 
 495         if (!tb[TCA_IFE_PARMS])
 496                 return -EINVAL;
 497 
 498         parm = nla_data(tb[TCA_IFE_PARMS]);
 499 
 500         /* IFE_DECODE is 0 and indicates the opposite of IFE_ENCODE because
 501          * they cannot run as the same time. Check on all other values which
 502          * are not supported right now.
 503          */
 504         if (parm->flags & ~IFE_ENCODE)
 505                 return -EINVAL;
 506 
 507         p = kzalloc(sizeof(*p), GFP_KERNEL);
 508         if (!p)
 509                 return -ENOMEM;
 510 
 511         index = parm->index;
 512         err = tcf_idr_check_alloc(tn, &index, a, bind);
 513         if (err < 0) {
 514                 kfree(p);
 515                 return err;
 516         }
 517         exists = err;
 518         if (exists && bind) {
 519                 kfree(p);
 520                 return 0;
 521         }
 522 
 523         if (!exists) {
 524                 ret = tcf_idr_create(tn, index, est, a, &act_ife_ops,
 525                                      bind, true);
 526                 if (ret) {
 527                         tcf_idr_cleanup(tn, index);
 528                         kfree(p);
 529                         return ret;
 530                 }
 531                 ret = ACT_P_CREATED;
 532         } else if (!ovr) {
 533                 tcf_idr_release(*a, bind);
 534                 kfree(p);
 535                 return -EEXIST;
 536         }
 537 
 538         ife = to_ife(*a);
 539         if (ret == ACT_P_CREATED)
 540                 INIT_LIST_HEAD(&ife->metalist);
 541 
 542         err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
 543         if (err < 0)
 544                 goto release_idr;
 545 
 546         p->flags = parm->flags;
 547 
 548         if (parm->flags & IFE_ENCODE) {
 549                 if (tb[TCA_IFE_TYPE])
 550                         ife_type = nla_get_u16(tb[TCA_IFE_TYPE]);
 551                 if (tb[TCA_IFE_DMAC])
 552                         daddr = nla_data(tb[TCA_IFE_DMAC]);
 553                 if (tb[TCA_IFE_SMAC])
 554                         saddr = nla_data(tb[TCA_IFE_SMAC]);
 555         }
 556 
 557         if (parm->flags & IFE_ENCODE) {
 558                 if (daddr)
 559                         ether_addr_copy(p->eth_dst, daddr);
 560                 else
 561                         eth_zero_addr(p->eth_dst);
 562 
 563                 if (saddr)
 564                         ether_addr_copy(p->eth_src, saddr);
 565                 else
 566                         eth_zero_addr(p->eth_src);
 567 
 568                 p->eth_type = ife_type;
 569         }
 570 
 571         if (tb[TCA_IFE_METALST]) {
 572                 err = nla_parse_nested_deprecated(tb2, IFE_META_MAX,
 573                                                   tb[TCA_IFE_METALST], NULL,
 574                                                   NULL);
 575                 if (err)
 576                         goto metadata_parse_err;
 577                 err = populate_metalist(ife, tb2, exists, rtnl_held);
 578                 if (err)
 579                         goto metadata_parse_err;
 580 
 581         } else {
 582                 /* if no passed metadata allow list or passed allow-all
 583                  * then here we process by adding as many supported metadatum
 584                  * as we can. You better have at least one else we are
 585                  * going to bail out
 586                  */
 587                 err = use_all_metadata(ife, exists);
 588                 if (err)
 589                         goto metadata_parse_err;
 590         }
 591 
 592         if (exists)
 593                 spin_lock_bh(&ife->tcf_lock);
 594         /* protected by tcf_lock when modifying existing action */
 595         goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
 596         rcu_swap_protected(ife->params, p, 1);
 597 
 598         if (exists)
 599                 spin_unlock_bh(&ife->tcf_lock);
 600         if (goto_ch)
 601                 tcf_chain_put_by_act(goto_ch);
 602         if (p)
 603                 kfree_rcu(p, rcu);
 604 
 605         if (ret == ACT_P_CREATED)
 606                 tcf_idr_insert(tn, *a);
 607 
 608         return ret;
 609 metadata_parse_err:
 610         if (goto_ch)
 611                 tcf_chain_put_by_act(goto_ch);
 612 release_idr:
 613         kfree(p);
 614         tcf_idr_release(*a, bind);
 615         return err;
 616 }
 617 
 618 static int tcf_ife_dump(struct sk_buff *skb, struct tc_action *a, int bind,
 619                         int ref)
 620 {
 621         unsigned char *b = skb_tail_pointer(skb);
 622         struct tcf_ife_info *ife = to_ife(a);
 623         struct tcf_ife_params *p;
 624         struct tc_ife opt = {
 625                 .index = ife->tcf_index,
 626                 .refcnt = refcount_read(&ife->tcf_refcnt) - ref,
 627                 .bindcnt = atomic_read(&ife->tcf_bindcnt) - bind,
 628         };
 629         struct tcf_t t;
 630 
 631         spin_lock_bh(&ife->tcf_lock);
 632         opt.action = ife->tcf_action;
 633         p = rcu_dereference_protected(ife->params,
 634                                       lockdep_is_held(&ife->tcf_lock));
 635         opt.flags = p->flags;
 636 
 637         if (nla_put(skb, TCA_IFE_PARMS, sizeof(opt), &opt))
 638                 goto nla_put_failure;
 639 
 640         tcf_tm_dump(&t, &ife->tcf_tm);
 641         if (nla_put_64bit(skb, TCA_IFE_TM, sizeof(t), &t, TCA_IFE_PAD))
 642                 goto nla_put_failure;
 643 
 644         if (!is_zero_ether_addr(p->eth_dst)) {
 645                 if (nla_put(skb, TCA_IFE_DMAC, ETH_ALEN, p->eth_dst))
 646                         goto nla_put_failure;
 647         }
 648 
 649         if (!is_zero_ether_addr(p->eth_src)) {
 650                 if (nla_put(skb, TCA_IFE_SMAC, ETH_ALEN, p->eth_src))
 651                         goto nla_put_failure;
 652         }
 653 
 654         if (nla_put(skb, TCA_IFE_TYPE, 2, &p->eth_type))
 655                 goto nla_put_failure;
 656 
 657         if (dump_metalist(skb, ife)) {
 658                 /*ignore failure to dump metalist */
 659                 pr_info("Failed to dump metalist\n");
 660         }
 661 
 662         spin_unlock_bh(&ife->tcf_lock);
 663         return skb->len;
 664 
 665 nla_put_failure:
 666         spin_unlock_bh(&ife->tcf_lock);
 667         nlmsg_trim(skb, b);
 668         return -1;
 669 }
 670 
 671 static int find_decode_metaid(struct sk_buff *skb, struct tcf_ife_info *ife,
 672                               u16 metaid, u16 mlen, void *mdata)
 673 {
 674         struct tcf_meta_info *e;
 675 
 676         /* XXX: use hash to speed up */
 677         list_for_each_entry(e, &ife->metalist, metalist) {
 678                 if (metaid == e->metaid) {
 679                         if (e->ops) {
 680                                 /* We check for decode presence already */
 681                                 return e->ops->decode(skb, mdata, mlen);
 682                         }
 683                 }
 684         }
 685 
 686         return -ENOENT;
 687 }
 688 
 689 static int tcf_ife_decode(struct sk_buff *skb, const struct tc_action *a,
 690                           struct tcf_result *res)
 691 {
 692         struct tcf_ife_info *ife = to_ife(a);
 693         int action = ife->tcf_action;
 694         u8 *ifehdr_end;
 695         u8 *tlv_data;
 696         u16 metalen;
 697 
 698         bstats_cpu_update(this_cpu_ptr(ife->common.cpu_bstats), skb);
 699         tcf_lastuse_update(&ife->tcf_tm);
 700 
 701         if (skb_at_tc_ingress(skb))
 702                 skb_push(skb, skb->dev->hard_header_len);
 703 
 704         tlv_data = ife_decode(skb, &metalen);
 705         if (unlikely(!tlv_data)) {
 706                 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
 707                 return TC_ACT_SHOT;
 708         }
 709 
 710         ifehdr_end = tlv_data + metalen;
 711         for (; tlv_data < ifehdr_end; tlv_data = ife_tlv_meta_next(tlv_data)) {
 712                 u8 *curr_data;
 713                 u16 mtype;
 714                 u16 dlen;
 715 
 716                 curr_data = ife_tlv_meta_decode(tlv_data, ifehdr_end, &mtype,
 717                                                 &dlen, NULL);
 718                 if (!curr_data) {
 719                         qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
 720                         return TC_ACT_SHOT;
 721                 }
 722 
 723                 if (find_decode_metaid(skb, ife, mtype, dlen, curr_data)) {
 724                         /* abuse overlimits to count when we receive metadata
 725                          * but dont have an ops for it
 726                          */
 727                         pr_info_ratelimited("Unknown metaid %d dlen %d\n",
 728                                             mtype, dlen);
 729                         qstats_overlimit_inc(this_cpu_ptr(ife->common.cpu_qstats));
 730                 }
 731         }
 732 
 733         if (WARN_ON(tlv_data != ifehdr_end)) {
 734                 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
 735                 return TC_ACT_SHOT;
 736         }
 737 
 738         skb->protocol = eth_type_trans(skb, skb->dev);
 739         skb_reset_network_header(skb);
 740 
 741         return action;
 742 }
 743 
 744 /*XXX: check if we can do this at install time instead of current
 745  * send data path
 746 **/
 747 static int ife_get_sz(struct sk_buff *skb, struct tcf_ife_info *ife)
 748 {
 749         struct tcf_meta_info *e, *n;
 750         int tot_run_sz = 0, run_sz = 0;
 751 
 752         list_for_each_entry_safe(e, n, &ife->metalist, metalist) {
 753                 if (e->ops->check_presence) {
 754                         run_sz = e->ops->check_presence(skb, e);
 755                         tot_run_sz += run_sz;
 756                 }
 757         }
 758 
 759         return tot_run_sz;
 760 }
 761 
 762 static int tcf_ife_encode(struct sk_buff *skb, const struct tc_action *a,
 763                           struct tcf_result *res, struct tcf_ife_params *p)
 764 {
 765         struct tcf_ife_info *ife = to_ife(a);
 766         int action = ife->tcf_action;
 767         struct ethhdr *oethh;   /* outer ether header */
 768         struct tcf_meta_info *e;
 769         /*
 770            OUTERHDR:TOTMETALEN:{TLVHDR:Metadatum:TLVHDR..}:ORIGDATA
 771            where ORIGDATA = original ethernet header ...
 772          */
 773         u16 metalen = ife_get_sz(skb, ife);
 774         int hdrm = metalen + skb->dev->hard_header_len + IFE_METAHDRLEN;
 775         unsigned int skboff = 0;
 776         int new_len = skb->len + hdrm;
 777         bool exceed_mtu = false;
 778         void *ife_meta;
 779         int err = 0;
 780 
 781         if (!skb_at_tc_ingress(skb)) {
 782                 if (new_len > skb->dev->mtu)
 783                         exceed_mtu = true;
 784         }
 785 
 786         bstats_cpu_update(this_cpu_ptr(ife->common.cpu_bstats), skb);
 787         tcf_lastuse_update(&ife->tcf_tm);
 788 
 789         if (!metalen) {         /* no metadata to send */
 790                 /* abuse overlimits to count when we allow packet
 791                  * with no metadata
 792                  */
 793                 qstats_overlimit_inc(this_cpu_ptr(ife->common.cpu_qstats));
 794                 return action;
 795         }
 796         /* could be stupid policy setup or mtu config
 797          * so lets be conservative.. */
 798         if ((action == TC_ACT_SHOT) || exceed_mtu) {
 799                 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
 800                 return TC_ACT_SHOT;
 801         }
 802 
 803         if (skb_at_tc_ingress(skb))
 804                 skb_push(skb, skb->dev->hard_header_len);
 805 
 806         ife_meta = ife_encode(skb, metalen);
 807 
 808         spin_lock(&ife->tcf_lock);
 809 
 810         /* XXX: we dont have a clever way of telling encode to
 811          * not repeat some of the computations that are done by
 812          * ops->presence_check...
 813          */
 814         list_for_each_entry(e, &ife->metalist, metalist) {
 815                 if (e->ops->encode) {
 816                         err = e->ops->encode(skb, (void *)(ife_meta + skboff),
 817                                              e);
 818                 }
 819                 if (err < 0) {
 820                         /* too corrupt to keep around if overwritten */
 821                         spin_unlock(&ife->tcf_lock);
 822                         qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
 823                         return TC_ACT_SHOT;
 824                 }
 825                 skboff += err;
 826         }
 827         spin_unlock(&ife->tcf_lock);
 828         oethh = (struct ethhdr *)skb->data;
 829 
 830         if (!is_zero_ether_addr(p->eth_src))
 831                 ether_addr_copy(oethh->h_source, p->eth_src);
 832         if (!is_zero_ether_addr(p->eth_dst))
 833                 ether_addr_copy(oethh->h_dest, p->eth_dst);
 834         oethh->h_proto = htons(p->eth_type);
 835 
 836         if (skb_at_tc_ingress(skb))
 837                 skb_pull(skb, skb->dev->hard_header_len);
 838 
 839         return action;
 840 }
 841 
 842 static int tcf_ife_act(struct sk_buff *skb, const struct tc_action *a,
 843                        struct tcf_result *res)
 844 {
 845         struct tcf_ife_info *ife = to_ife(a);
 846         struct tcf_ife_params *p;
 847         int ret;
 848 
 849         p = rcu_dereference_bh(ife->params);
 850         if (p->flags & IFE_ENCODE) {
 851                 ret = tcf_ife_encode(skb, a, res, p);
 852                 return ret;
 853         }
 854 
 855         return tcf_ife_decode(skb, a, res);
 856 }
 857 
 858 static int tcf_ife_walker(struct net *net, struct sk_buff *skb,
 859                           struct netlink_callback *cb, int type,
 860                           const struct tc_action_ops *ops,
 861                           struct netlink_ext_ack *extack)
 862 {
 863         struct tc_action_net *tn = net_generic(net, ife_net_id);
 864 
 865         return tcf_generic_walker(tn, skb, cb, type, ops, extack);
 866 }
 867 
 868 static int tcf_ife_search(struct net *net, struct tc_action **a, u32 index)
 869 {
 870         struct tc_action_net *tn = net_generic(net, ife_net_id);
 871 
 872         return tcf_idr_search(tn, a, index);
 873 }
 874 
 875 static struct tc_action_ops act_ife_ops = {
 876         .kind = "ife",
 877         .id = TCA_ID_IFE,
 878         .owner = THIS_MODULE,
 879         .act = tcf_ife_act,
 880         .dump = tcf_ife_dump,
 881         .cleanup = tcf_ife_cleanup,
 882         .init = tcf_ife_init,
 883         .walk = tcf_ife_walker,
 884         .lookup = tcf_ife_search,
 885         .size = sizeof(struct tcf_ife_info),
 886 };
 887 
 888 static __net_init int ife_init_net(struct net *net)
 889 {
 890         struct tc_action_net *tn = net_generic(net, ife_net_id);
 891 
 892         return tc_action_net_init(net, tn, &act_ife_ops);
 893 }
 894 
 895 static void __net_exit ife_exit_net(struct list_head *net_list)
 896 {
 897         tc_action_net_exit(net_list, ife_net_id);
 898 }
 899 
 900 static struct pernet_operations ife_net_ops = {
 901         .init = ife_init_net,
 902         .exit_batch = ife_exit_net,
 903         .id   = &ife_net_id,
 904         .size = sizeof(struct tc_action_net),
 905 };
 906 
 907 static int __init ife_init_module(void)
 908 {
 909         return tcf_register_action(&act_ife_ops, &ife_net_ops);
 910 }
 911 
 912 static void __exit ife_cleanup_module(void)
 913 {
 914         tcf_unregister_action(&act_ife_ops, &ife_net_ops);
 915 }
 916 
 917 module_init(ife_init_module);
 918 module_exit(ife_cleanup_module);
 919 
 920 MODULE_AUTHOR("Jamal Hadi Salim(2015)");
 921 MODULE_DESCRIPTION("Inter-FE LFB action");
 922 MODULE_LICENSE("GPL");

/* [<][>][^][v][top][bottom][index][help] */