summaryrefslogtreecommitdiff
path: root/usr.sbin/tcpdump
diff options
context:
space:
mode:
authorHakan Olsson <ho@cvs.openbsd.org>1999-10-29 09:44:08 +0000
committerHakan Olsson <ho@cvs.openbsd.org>1999-10-29 09:44:08 +0000
commit57386b6e41af9cc06605f5a443ec435b7a46c051 (patch)
tree2a6e6e94af59b82840fd8edfc8eac443db6f8086 /usr.sbin/tcpdump
parent6c0ac4d84f53d9ae33ed1e455476e75b982fda3e (diff)
Print AH payload data (with -v). jakob@ ok.
Diffstat (limited to 'usr.sbin/tcpdump')
-rw-r--r--usr.sbin/tcpdump/print-ipsec.c59
1 files changed, 55 insertions, 4 deletions
diff --git a/usr.sbin/tcpdump/print-ipsec.c b/usr.sbin/tcpdump/print-ipsec.c
index fc8ab69d9e6..eacb24c4a60 100644
--- a/usr.sbin/tcpdump/print-ipsec.c
+++ b/usr.sbin/tcpdump/print-ipsec.c
@@ -26,7 +26,7 @@
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-ipsec.c,v 1.2 1999/09/21 20:54:58 jakob Exp $ (XXX)";
+ "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-ipsec.c,v 1.3 1999/10/29 09:44:07 ho Exp $ (XXX)";
#endif
#include <sys/param.h>
@@ -82,9 +82,11 @@ void esp_print(register const u_char *bp, register u_int len,
* IPSec/AH header
*/
struct ah_hdr {
- u_int ah_dummy;
- u_int ah_spi;
- u_int ah_seq;
+ u_char ah_nxt_hdr;
+ u_char ah_pl_len;
+ u_short ah_reserved;
+ u_int ah_spi;
+ u_int ah_seq;
};
ah_print(register const u_char *bp, register u_int len,
@@ -92,6 +94,7 @@ ah_print(register const u_char *bp, register u_int len,
{
const struct ip *ip;
const struct ah_hdr *ah;
+ u_int pl_len;
ip = (const struct ip *)bp2;
ah = (const struct ah_hdr *)bp;
@@ -101,4 +104,52 @@ ah_print(register const u_char *bp, register u_int len,
ipaddr_string(&ip->ip_dst),
ntohl(ah->ah_spi), ntohl(ah->ah_seq), len);
+ if (vflag) {
+ (void)printf("\n\t[ ");
+
+ pl_len = (ah->ah_pl_len + 2) << 2; /* RFC2402, sec 2.2 */
+
+ if (len - pl_len <= 0) {
+ (void)printf("truncated");
+ goto out;
+ }
+
+ switch (ah->ah_nxt_hdr) {
+
+ case IPPROTO_IPIP: /* Tunnel Mode, IP-in-IP */
+ ip_print(bp + pl_len, len - pl_len);
+ break;
+
+ case IPPROTO_ICMP: /* From here and down; Transport mode */
+ icmp_print(bp + pl_len, (const u_char *) ip);
+ break;
+
+ case IPPROTO_TCP:
+ tcp_print(bp + pl_len, len - pl_len,
+ (const u_char *) ip);
+ break;
+
+ case IPPROTO_UDP:
+ udp_print(bp + pl_len, len - pl_len,
+ (const u_char *) ip);
+ break;
+
+ case IPPROTO_ESP:
+ esp_print(bp + pl_len, len - pl_len,
+ (const u_char *) ip);
+ break;
+
+ case IPPROTO_AH:
+ ah_print(bp + pl_len, len - pl_len,
+ (const u_char *) ip);
+ break;
+
+ default:
+ (void)printf("ip-proto-%d len %d", ah->ah_nxt_hdr,
+ len - pl_len);
+ }
+out:
+ (void)printf(" ]");
+ }
+
}