xref: /freebsd/contrib/tcpdump/print-frag6.c (revision a90e161be323456b08b7fe13acb201536809510f)
1b0453382SBill Fenner /*
2b0453382SBill Fenner  * Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994
3b0453382SBill Fenner  *	The Regents of the University of California.  All rights reserved.
4b0453382SBill Fenner  *
5b0453382SBill Fenner  * Redistribution and use in source and binary forms, with or without
6b0453382SBill Fenner  * modification, are permitted provided that: (1) source code distributions
7b0453382SBill Fenner  * retain the above copyright notice and this paragraph in its entirety, (2)
8b0453382SBill Fenner  * distributions including binary code include the above copyright notice and
9b0453382SBill Fenner  * this paragraph in its entirety in the documentation or other materials
10b0453382SBill Fenner  * provided with the distribution, and (3) all advertising materials mentioning
11b0453382SBill Fenner  * features or use of this software display the following acknowledgement:
12b0453382SBill Fenner  * ``This product includes software developed by the University of California,
13b0453382SBill Fenner  * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14b0453382SBill Fenner  * the University nor the names of its contributors may be used to endorse
15b0453382SBill Fenner  * or promote products derived from this software without specific prior
16b0453382SBill Fenner  * written permission.
17b0453382SBill Fenner  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18b0453382SBill Fenner  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19b0453382SBill Fenner  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20b0453382SBill Fenner  */
21b0453382SBill Fenner 
22b0453382SBill Fenner #ifndef lint
23b0453382SBill Fenner static const char rcsid[] =
24a90e161bSBill Fenner     "@(#) $Header: /tcpdump/master/tcpdump/print-frag6.c,v 1.13 2001/09/17 21:58:02 fenner Exp $";
25b0453382SBill Fenner #endif
26b0453382SBill Fenner 
27b0453382SBill Fenner #ifdef HAVE_CONFIG_H
28b0453382SBill Fenner #include "config.h"
29b0453382SBill Fenner #endif
30b0453382SBill Fenner 
31b0453382SBill Fenner #ifdef INET6
32b0453382SBill Fenner 
33b0453382SBill Fenner #include <sys/param.h>
34b0453382SBill Fenner #include <sys/time.h>
35b0453382SBill Fenner #include <sys/types.h>
36b0453382SBill Fenner #include <sys/socket.h>
37b0453382SBill Fenner 
38b0453382SBill Fenner 
39b0453382SBill Fenner #include <netinet/in.h>
40b0453382SBill Fenner 
41b0453382SBill Fenner #include <stdio.h>
42b0453382SBill Fenner 
43685295f4SBill Fenner #include "ip6.h"
44b0453382SBill Fenner 
45b0453382SBill Fenner #include "interface.h"
46b0453382SBill Fenner #include "addrtoname.h"
47b0453382SBill Fenner 
48b0453382SBill Fenner int
49b0453382SBill Fenner frag6_print(register const u_char *bp, register const u_char *bp2)
50b0453382SBill Fenner {
51b0453382SBill Fenner 	register const struct ip6_frag *dp;
52b0453382SBill Fenner 	register const struct ip6_hdr *ip6;
53b0453382SBill Fenner 	register const u_char *ep;
54b0453382SBill Fenner 
55a90e161bSBill Fenner 	dp = (const struct ip6_frag *)bp;
56a90e161bSBill Fenner 	ip6 = (const struct ip6_hdr *)bp2;
57b0453382SBill Fenner 
58685295f4SBill Fenner 	/* 'ep' points to the end of available data. */
59b0453382SBill Fenner 	ep = snapend;
60b0453382SBill Fenner 
61b0453382SBill Fenner 	TCHECK(dp->ip6f_offlg);
62b0453382SBill Fenner 
63b0453382SBill Fenner 	if (vflag) {
64b0453382SBill Fenner 		printf("frag (0x%08x:%d|%ld)",
65b0453382SBill Fenner 		       (u_int32_t)ntohl(dp->ip6f_ident),
66b0453382SBill Fenner 		       ntohs(dp->ip6f_offlg & IP6F_OFF_MASK),
67b0453382SBill Fenner 		       sizeof(struct ip6_hdr) + ntohs(ip6->ip6_plen) -
68b0453382SBill Fenner 			       (long)(bp - bp2) - sizeof(struct ip6_frag));
69b0453382SBill Fenner 	} else {
70b0453382SBill Fenner 		printf("frag (%d|%ld)",
71b0453382SBill Fenner 		       ntohs(dp->ip6f_offlg & IP6F_OFF_MASK),
72b0453382SBill Fenner 		       sizeof(struct ip6_hdr) + ntohs(ip6->ip6_plen) -
73b0453382SBill Fenner 			       (long)(bp - bp2) - sizeof(struct ip6_frag));
74b0453382SBill Fenner 	}
75b0453382SBill Fenner 
76685295f4SBill Fenner #if 1
77b0453382SBill Fenner 	/* it is meaningless to decode non-first fragment */
78b0453382SBill Fenner 	if (ntohs(dp->ip6f_offlg & IP6F_OFF_MASK) != 0)
79b0453382SBill Fenner 		return 65535;
80b0453382SBill Fenner 	else
81b0453382SBill Fenner #endif
82b0453382SBill Fenner 	{
83b0453382SBill Fenner 		fputs(" ", stdout);
84b0453382SBill Fenner 		return sizeof(struct ip6_frag);
85b0453382SBill Fenner 	}
86b0453382SBill Fenner trunc:
87b0453382SBill Fenner 	fputs("[|frag]", stdout);
88b0453382SBill Fenner 	return 65535;
89b0453382SBill Fenner #undef TCHECK
90b0453382SBill Fenner }
91b0453382SBill Fenner #endif /* INET6 */
92