flowtop: Mark parameter in callback function as unused
[netsniff-ng.git] / trafgen_proto.h
blob55287043b2a1baedd38271a3a20266e4aa0043e3
1 #ifndef TRAFGEN_PROTO_H
2 #define TRAFGEN_PROTO_H
4 #include <stddef.h>
5 #include <stdint.h>
6 #include <stdbool.h>
8 struct proto_ctx {
9 const char *dev;
12 enum proto_id {
13 PROTO_NONE,
14 PROTO_ETH,
15 PROTO_VLAN,
16 PROTO_ARP,
17 PROTO_MPLS,
18 PROTO_IP4,
19 PROTO_IP6,
20 PROTO_ICMP6,
21 PROTO_UDP,
22 PROTO_TCP,
25 enum proto_layer {
26 PROTO_L0, /* invalid layer */
27 PROTO_L2,
28 PROTO_L3,
29 PROTO_L4,
32 struct proto_field {
33 uint32_t id;
34 size_t len;
35 uint32_t shift;
36 uint32_t mask;
37 /* might be negative (e.g. VLAN TPID field) */
38 int16_t offset;
40 bool is_set;
41 uint16_t pkt_offset;
44 struct proto_hdr {
45 enum proto_id id;
46 enum proto_layer layer;
48 struct proto_hdr *next;
49 struct proto_ctx *ctx;
50 uint16_t pkt_offset;
51 struct proto_field *fields;
52 size_t fields_count;
54 void (*header_init)(struct proto_hdr *hdr);
55 void (*header_finish)(struct proto_hdr *hdr);
56 void (*packet_finish)(struct proto_hdr *hdr);
57 void (*set_next_proto)(struct proto_hdr *hdr, enum proto_id pid);
60 extern void protos_init(const char *dev);
61 extern void proto_header_register(struct proto_hdr *hdr);
63 extern struct proto_hdr *proto_header_init(enum proto_id pid);
64 extern void proto_header_finish(struct proto_hdr *hdr);
65 extern void proto_packet_finish(void);
66 extern struct proto_hdr *proto_lower_default_add(struct proto_hdr *hdr,
67 enum proto_id pid);
69 extern struct proto_hdr *proto_lower_header(struct proto_hdr *hdr);
70 extern uint8_t *proto_header_ptr(struct proto_hdr *hdr);
72 extern void proto_header_fields_add(struct proto_hdr *hdr,
73 const struct proto_field *fields,
74 size_t count);
76 extern bool proto_field_is_set(struct proto_hdr *hdr, uint32_t fid);
77 extern void proto_field_set_bytes(struct proto_hdr *hdr, uint32_t fid,
78 uint8_t *bytes);
79 extern void proto_field_set_u8(struct proto_hdr *hdr, uint32_t fid, uint8_t val);
80 extern uint8_t proto_field_get_u8(struct proto_hdr *hdr, uint32_t fid);
81 extern void proto_field_set_u16(struct proto_hdr *hdr, uint32_t fid, uint16_t val);
82 extern uint16_t proto_field_get_u16(struct proto_hdr *hdr, uint32_t fid);
83 extern void proto_field_set_u32(struct proto_hdr *hdr, uint32_t fid, uint32_t val);
84 extern uint32_t proto_field_get_u32(struct proto_hdr *hdr, uint32_t fid);
86 extern void proto_field_set_default_bytes(struct proto_hdr *hdr, uint32_t fid,
87 uint8_t *bytes);
88 extern void proto_field_set_default_u8(struct proto_hdr *hdr, uint32_t fid,
89 uint8_t val);
90 extern void proto_field_set_default_u16(struct proto_hdr *hdr, uint32_t fid,
91 uint16_t val);
92 extern void proto_field_set_default_u32(struct proto_hdr *hdr, uint32_t fid,
93 uint32_t val);
95 extern void proto_field_set_be16(struct proto_hdr *hdr, uint32_t fid, uint16_t val);
96 extern void proto_field_set_be32(struct proto_hdr *hdr, uint32_t fid, uint32_t val);
98 extern void proto_field_set_default_be16(struct proto_hdr *hdr, uint32_t fid,
99 uint16_t val);
100 extern void proto_field_set_default_be32(struct proto_hdr *hdr, uint32_t fid,
101 uint32_t val);
103 extern void proto_field_set_dev_mac(struct proto_hdr *hdr, uint32_t fid);
104 extern void proto_field_set_default_dev_mac(struct proto_hdr *hdr, uint32_t fid);
106 extern void proto_field_set_dev_ipv4(struct proto_hdr *hdr, uint32_t fid);
107 extern void proto_field_set_default_dev_ipv4(struct proto_hdr *hdr, uint32_t fid);
109 extern void proto_field_set_dev_ipv6(struct proto_hdr *hdr, uint32_t fid);
110 extern void proto_field_set_default_dev_ipv6(struct proto_hdr *hdr, uint32_t fid);
112 #endif /* TRAFGEN_PROTO_H */