diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2016-08-12 09:46:59 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2016-08-12 09:46:59 +0200 |
commit | ee3f53306b1ceb5235ac587c2e0a605c13922d78 (patch) | |
tree | 091b354a9a5722498b56b22fc7572415803d84be /trafgen_l4.c | |
parent | 355bbe1b1e7fe1b0ab07fe2de8cb6e64418d51e0 (diff) |
trafgen: proto: Split static protocol definition out of struct proto_hdr
Currently struct proto_hdr is used twofold:
1) Statically define protocol behavior, i.e. all the *_hdr definitions in
trafgen_l{2,3,4}.c which map a protocol id/layer to a set of callback
functions.
2) For each packet created at parse time the struct is memcpy()'ed
(including all the static information from 1) and then used to store
dynamic information at parse/run time.
Thus, struct proto_hdr members such as the proto id, layer and the
pointers callback functions get copied for each created packet (in
addition to the other fields which get changed during parsing). Also,
static/dynamic information get mixed and we e.g. can't make the protocol
definitions const to ensure they'll not get changed by mistake.
Rather than copying the struct proto_hdr for every packet, clearly
separate the two purposes defined above by splitting struct proto_hdr
into two structs:
1) struct proto_ops for the static (const) protocol behavior definition
2) struct proto_hdr (reduced) for dynamic information
struct proto_hdr keeps a pointer to the corresponding proto_ops instance
and uses it to execute the corresponding callbacks.
Reference: https://groups.google.com/forum/#!msg/netsniff-ng/20RvwJdh50Y/eMkbmKSaBgAJ
Acked-by: Vadim Kochan <vadim4j@gmail.com>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'trafgen_l4.c')
-rw-r--r-- | trafgen_l4.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/trafgen_l4.c b/trafgen_l4.c index 79c5914..16346db 100644 --- a/trafgen_l4.c +++ b/trafgen_l4.c @@ -44,7 +44,7 @@ static void udp_packet_finish(struct proto_hdr *hdr) if (!lower) return; - switch (lower->id) { + switch (lower->ops->id) { case PROTO_IP4: csum = p4_csum((void *) proto_header_ptr(lower), proto_header_ptr(hdr), total_len, IPPROTO_UDP); @@ -61,7 +61,7 @@ static void udp_packet_finish(struct proto_hdr *hdr) proto_field_set_be16(hdr, UDP_CSUM, bswap_16(csum)); } -static struct proto_hdr udp_hdr = { +static const struct proto_ops udp_proto_ops = { .id = PROTO_UDP, .layer = PROTO_L4, .header_init = udp_header_init, @@ -112,7 +112,7 @@ static void tcp_packet_finish(struct proto_hdr *hdr) total_len = pkt->len - hdr->pkt_offset; - switch (lower->id) { + switch (lower->ops->id) { case PROTO_IP4: csum = p4_csum((void *) proto_header_ptr(lower), proto_header_ptr(hdr), total_len, IPPROTO_TCP); @@ -129,7 +129,7 @@ static void tcp_packet_finish(struct proto_hdr *hdr) proto_field_set_be16(hdr, TCP_CSUM, bswap_16(csum)); } -static struct proto_hdr tcp_hdr = { +static const struct proto_ops tcp_proto_ops = { .id = PROTO_TCP, .layer = PROTO_L4, .header_init = tcp_header_init, @@ -170,7 +170,7 @@ static void icmpv4_packet_finish(struct proto_hdr *hdr) proto_field_set_u16(hdr, ICMPV4_CSUM, bswap_16(csum)); } -static struct proto_hdr icmpv4_hdr = { +static const struct proto_ops icmpv4_proto_ops = { .id = PROTO_ICMP4, .layer = PROTO_L4, .header_init = icmpv4_header_init, @@ -205,7 +205,7 @@ static void icmpv6_packet_finish(struct proto_hdr *hdr) total_len = pkt->len - hdr->pkt_offset; - switch (lower->id) { + switch (lower->ops->id) { case PROTO_IP6: csum = p6_csum((void *) proto_header_ptr(lower), proto_header_ptr(hdr), total_len, IPPROTO_ICMPV6); @@ -218,7 +218,7 @@ static void icmpv6_packet_finish(struct proto_hdr *hdr) proto_field_set_be16(hdr, ICMPV6_CSUM, bswap_16(csum)); } -static struct proto_hdr icmpv6_hdr = { +static struct proto_ops icmpv6_proto_ops = { .id = PROTO_ICMP6, .layer = PROTO_L4, .header_init = icmpv6_header_init, @@ -227,8 +227,8 @@ static struct proto_hdr icmpv6_hdr = { void protos_l4_init(void) { - proto_header_register(&udp_hdr); - proto_header_register(&tcp_hdr); - proto_header_register(&icmpv4_hdr); - proto_header_register(&icmpv6_hdr); + proto_ops_register(&udp_proto_ops); + proto_ops_register(&tcp_proto_ops); + proto_ops_register(&icmpv4_proto_ops); + proto_ops_register(&icmpv6_proto_ops); } |