tc_ife.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __NET_TC_IFE_H
  3. #define __NET_TC_IFE_H
  4. #include <net/act_api.h>
  5. #include <linux/etherdevice.h>
  6. #include <linux/rtnetlink.h>
  7. #include <linux/module.h>
  8. struct tcf_ife_info {
  9. struct tc_action common;
  10. u8 eth_dst[ETH_ALEN];
  11. u8 eth_src[ETH_ALEN];
  12. u16 eth_type;
  13. u16 flags;
  14. /* list of metaids allowed */
  15. struct list_head metalist;
  16. };
  17. #define to_ife(a) ((struct tcf_ife_info *)a)
  18. struct tcf_meta_info {
  19. const struct tcf_meta_ops *ops;
  20. void *metaval;
  21. u16 metaid;
  22. struct list_head metalist;
  23. };
  24. struct tcf_meta_ops {
  25. u16 metaid; /*Maintainer provided ID */
  26. u16 metatype; /*netlink attribute type (look at net/netlink.h) */
  27. const char *name;
  28. const char *synopsis;
  29. struct list_head list;
  30. int (*check_presence)(struct sk_buff *, struct tcf_meta_info *);
  31. int (*encode)(struct sk_buff *, void *, struct tcf_meta_info *);
  32. int (*decode)(struct sk_buff *, void *, u16 len);
  33. int (*get)(struct sk_buff *skb, struct tcf_meta_info *mi);
  34. int (*alloc)(struct tcf_meta_info *, void *, gfp_t);
  35. void (*release)(struct tcf_meta_info *);
  36. int (*validate)(void *val, int len);
  37. struct module *owner;
  38. };
  39. #define MODULE_ALIAS_IFE_META(metan) MODULE_ALIAS("ifemeta" __stringify_1(metan))
  40. int ife_get_meta_u32(struct sk_buff *skb, struct tcf_meta_info *mi);
  41. int ife_get_meta_u16(struct sk_buff *skb, struct tcf_meta_info *mi);
  42. int ife_alloc_meta_u32(struct tcf_meta_info *mi, void *metaval, gfp_t gfp);
  43. int ife_alloc_meta_u16(struct tcf_meta_info *mi, void *metaval, gfp_t gfp);
  44. int ife_check_meta_u32(u32 metaval, struct tcf_meta_info *mi);
  45. int ife_check_meta_u16(u16 metaval, struct tcf_meta_info *mi);
  46. int ife_encode_meta_u32(u32 metaval, void *skbdata, struct tcf_meta_info *mi);
  47. int ife_validate_meta_u32(void *val, int len);
  48. int ife_validate_meta_u16(void *val, int len);
  49. int ife_encode_meta_u16(u16 metaval, void *skbdata, struct tcf_meta_info *mi);
  50. void ife_release_meta_gen(struct tcf_meta_info *mi);
  51. int register_ife_op(struct tcf_meta_ops *mops);
  52. int unregister_ife_op(struct tcf_meta_ops *mops);
  53. #endif /* __NET_TC_IFE_H */