Jamal Hadi Salim | ef6980b | 2016-02-27 08:08:54 -0500 | [diff] [blame] | 1 | #ifndef __NET_TC_IFE_H |
| 2 | #define __NET_TC_IFE_H |
| 3 | |
| 4 | #include <net/act_api.h> |
| 5 | #include <linux/etherdevice.h> |
| 6 | #include <linux/rtnetlink.h> |
| 7 | #include <linux/module.h> |
| 8 | |
| 9 | #define IFE_METAHDRLEN 2 |
| 10 | struct tcf_ife_info { |
WANG Cong | ec0595c | 2016-07-25 16:09:42 -0700 | [diff] [blame] | 11 | struct tc_action common; |
Jamal Hadi Salim | ef6980b | 2016-02-27 08:08:54 -0500 | [diff] [blame] | 12 | u8 eth_dst[ETH_ALEN]; |
| 13 | u8 eth_src[ETH_ALEN]; |
| 14 | u16 eth_type; |
| 15 | u16 flags; |
| 16 | /* list of metaids allowed */ |
| 17 | struct list_head metalist; |
| 18 | }; |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 19 | #define to_ife(a) ((struct tcf_ife_info *)a) |
Jamal Hadi Salim | ef6980b | 2016-02-27 08:08:54 -0500 | [diff] [blame] | 20 | |
| 21 | struct tcf_meta_info { |
| 22 | const struct tcf_meta_ops *ops; |
| 23 | void *metaval; |
| 24 | u16 metaid; |
| 25 | struct list_head metalist; |
| 26 | }; |
| 27 | |
| 28 | struct tcf_meta_ops { |
| 29 | u16 metaid; /*Maintainer provided ID */ |
| 30 | u16 metatype; /*netlink attribute type (look at net/netlink.h) */ |
| 31 | const char *name; |
| 32 | const char *synopsis; |
| 33 | struct list_head list; |
| 34 | int (*check_presence)(struct sk_buff *, struct tcf_meta_info *); |
| 35 | int (*encode)(struct sk_buff *, void *, struct tcf_meta_info *); |
| 36 | int (*decode)(struct sk_buff *, void *, u16 len); |
| 37 | int (*get)(struct sk_buff *skb, struct tcf_meta_info *mi); |
WANG Cong | 067a7cd | 2016-06-20 13:37:18 -0700 | [diff] [blame] | 38 | int (*alloc)(struct tcf_meta_info *, void *, gfp_t); |
Jamal Hadi Salim | ef6980b | 2016-02-27 08:08:54 -0500 | [diff] [blame] | 39 | void (*release)(struct tcf_meta_info *); |
| 40 | int (*validate)(void *val, int len); |
| 41 | struct module *owner; |
| 42 | }; |
| 43 | |
| 44 | #define MODULE_ALIAS_IFE_META(metan) MODULE_ALIAS("ifemeta" __stringify_1(metan)) |
| 45 | |
| 46 | int ife_get_meta_u32(struct sk_buff *skb, struct tcf_meta_info *mi); |
| 47 | int ife_get_meta_u16(struct sk_buff *skb, struct tcf_meta_info *mi); |
| 48 | int ife_tlv_meta_encode(void *skbdata, u16 attrtype, u16 dlen, |
| 49 | const void *dval); |
WANG Cong | 067a7cd | 2016-06-20 13:37:18 -0700 | [diff] [blame] | 50 | int ife_alloc_meta_u32(struct tcf_meta_info *mi, void *metaval, gfp_t gfp); |
| 51 | int ife_alloc_meta_u16(struct tcf_meta_info *mi, void *metaval, gfp_t gfp); |
Jamal Hadi Salim | ef6980b | 2016-02-27 08:08:54 -0500 | [diff] [blame] | 52 | int ife_check_meta_u32(u32 metaval, struct tcf_meta_info *mi); |
Jamal Hadi Salim | 6a5d58b | 2016-09-18 07:31:42 -0400 | [diff] [blame] | 53 | int ife_check_meta_u16(u16 metaval, struct tcf_meta_info *mi); |
Jamal Hadi Salim | ef6980b | 2016-02-27 08:08:54 -0500 | [diff] [blame] | 54 | int ife_encode_meta_u32(u32 metaval, void *skbdata, struct tcf_meta_info *mi); |
| 55 | int ife_validate_meta_u32(void *val, int len); |
| 56 | int ife_validate_meta_u16(void *val, int len); |
Jamal Hadi Salim | 6a5d58b | 2016-09-18 07:31:42 -0400 | [diff] [blame] | 57 | int ife_encode_meta_u16(u16 metaval, void *skbdata, struct tcf_meta_info *mi); |
Jamal Hadi Salim | ef6980b | 2016-02-27 08:08:54 -0500 | [diff] [blame] | 58 | void ife_release_meta_gen(struct tcf_meta_info *mi); |
| 59 | int register_ife_op(struct tcf_meta_ops *mops); |
| 60 | int unregister_ife_op(struct tcf_meta_ops *mops); |
| 61 | |
| 62 | #endif /* __NET_TC_IFE_H */ |