2 * netsniff-ng - the packet sniffing beast
3 * Copyright 2012 Markus Amend <markus@netsniff-ng.org>
4 * Subject to the GPL, version 2.
6 * IP Authentication Header described in RFC4302
9 #ifndef PROTO_IP_AUTHENTICATION_HDR_H
10 #define PROTO_IP_AUTHENTICATION_HDR_H
14 #include <netinet/in.h> /* for ntohs() */
16 #include "proto_struct.h"
17 #include "dissector_eth.h"
21 uint8_t h_next_header
;
22 uint8_t h_payload_len
;
28 static inline void auth_hdr(struct pkt_buff
*pkt
)
31 struct auth_hdr
*auth_ops
;
33 auth_ops
= (struct auth_hdr
*) pkt_pull(pkt
, sizeof(*auth_ops
));
34 hdr_len
= (auth_ops
->h_payload_len
* 4) + 8;
38 tprintf(" [ Authentication Header ");
39 tprintf("NextHdr (%u), ", auth_ops
->h_next_header
);
40 if (hdr_len
> pkt_len(pkt
)) {
41 tprintf("HdrLen (%u, %s), ", hdr_len
,
42 colorize_start_full(black
, red
),
43 "invalid" colorize_end());
46 tprintf("HdrLen (%u), ", hdr_len
);
47 tprintf("Reserved (0x%x), ", ntohs(auth_ops
->h_reserved
));
49 * Upgrade for Extended (64-bit) Sequence Number
50 * http://tools.ietf.org/html/rfc4302#section-2.5.1
52 tprintf("SPI (0x%x), ", ntohl(auth_ops
->h_spi
));
53 tprintf("SNF (0x%x), ", ntohl(auth_ops
->h_snf
));
55 for (size_t i
= sizeof(struct auth_hdr
); i
< hdr_len
; i
++)
56 tprintf("%02x", *pkt_pull(pkt
, 1));
59 pkt_set_proto(pkt
, ð_lay3
, auth_ops
->h_next_header
);
62 static inline void auth_hdr_less(struct pkt_buff
*pkt
)
65 struct auth_hdr
*auth_ops
;
67 auth_ops
= (struct auth_hdr
*) pkt_pull(pkt
, sizeof(*auth_ops
));
68 hdr_len
= (auth_ops
->h_payload_len
* 4) + 8;
69 if (auth_ops
== NULL
|| hdr_len
> pkt_len(pkt
))
74 pkt_pull(pkt
, hdr_len
- sizeof(*auth_ops
));
75 pkt_set_proto(pkt
, ð_lay3
, auth_ops
->h_next_header
);
78 struct protocol ip_auth_hdr_ops
= {
80 .print_full
= auth_hdr
,
81 .print_less
= auth_hdr_less
,
84 #endif /* PROTO_IP_AUTHENTICATION_HDR_H */