1 #ifndef TRAFGEN_PROTO_H
2 #define TRAFGEN_PROTO_H
25 PROTO_L0
, /* invalid layer */
36 /* might be negative (e.g. VLAN TPID field) */
45 enum proto_layer layer
;
47 struct proto_hdr
*next
;
48 struct proto_ctx
*ctx
;
50 struct proto_field
*fields
;
53 void (*header_init
)(struct proto_hdr
*hdr
);
54 void (*header_finish
)(struct proto_hdr
*hdr
);
55 void (*packet_finish
)(struct proto_hdr
*hdr
);
56 void (*set_next_proto
)(struct proto_hdr
*hdr
, enum proto_id pid
);
59 extern void protos_init(const char *dev
);
60 extern void proto_header_register(struct proto_hdr
*hdr
);
62 extern struct proto_hdr
*proto_header_init(enum proto_id pid
);
63 extern void proto_header_finish(struct proto_hdr
*hdr
);
64 extern void proto_packet_finish(void);
65 extern struct proto_hdr
*proto_lower_default_add(struct proto_hdr
*hdr
,
68 extern struct proto_hdr
*proto_lower_header(struct proto_hdr
*hdr
);
69 extern uint8_t *proto_header_ptr(struct proto_hdr
*hdr
);
71 extern void proto_header_fields_add(struct proto_hdr
*hdr
,
72 const struct proto_field
*fields
,
75 extern bool proto_field_is_set(struct proto_hdr
*hdr
, uint32_t fid
);
76 extern void proto_field_set_bytes(struct proto_hdr
*hdr
, uint32_t fid
,
78 extern void proto_field_set_u8(struct proto_hdr
*hdr
, uint32_t fid
, uint8_t val
);
79 extern uint8_t proto_field_get_u8(struct proto_hdr
*hdr
, uint32_t fid
);
80 extern void proto_field_set_u16(struct proto_hdr
*hdr
, uint32_t fid
, uint16_t val
);
81 extern uint16_t proto_field_get_u16(struct proto_hdr
*hdr
, uint32_t fid
);
82 extern void proto_field_set_u32(struct proto_hdr
*hdr
, uint32_t fid
, uint32_t val
);
83 extern uint32_t proto_field_get_u32(struct proto_hdr
*hdr
, uint32_t fid
);
85 extern void proto_field_set_default_bytes(struct proto_hdr
*hdr
, uint32_t fid
,
87 extern void proto_field_set_default_u8(struct proto_hdr
*hdr
, uint32_t fid
,
89 extern void proto_field_set_default_u16(struct proto_hdr
*hdr
, uint32_t fid
,
91 extern void proto_field_set_default_u32(struct proto_hdr
*hdr
, uint32_t fid
,
94 extern void proto_field_set_be16(struct proto_hdr
*hdr
, uint32_t fid
, uint16_t val
);
95 extern void proto_field_set_be32(struct proto_hdr
*hdr
, uint32_t fid
, uint32_t val
);
97 extern void proto_field_set_default_be16(struct proto_hdr
*hdr
, uint32_t fid
,
99 extern void proto_field_set_default_be32(struct proto_hdr
*hdr
, uint32_t fid
,
102 extern void proto_field_set_dev_mac(struct proto_hdr
*hdr
, uint32_t fid
);
103 extern void proto_field_set_default_dev_mac(struct proto_hdr
*hdr
, uint32_t fid
);
105 extern void proto_field_set_dev_ipv4(struct proto_hdr
*hdr
, uint32_t fid
);
106 extern void proto_field_set_default_dev_ipv4(struct proto_hdr
*hdr
, uint32_t fid
);
108 #endif /* TRAFGEN_PROTO_H */