]>
The Tcpdump Group git mirrors - tcpdump/blob - print-vrrp.c
2 * Copyright (c) 2000 William C. Fenner.
5 * Kevin Steves <ks@hp.se> July 2000
7 * - print version, type string and packet length
8 * - print IP address count if > 1 (-v)
9 * - verify checksum (-v)
10 * - print authentication string (-v)
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that: (1) source code
14 * distributions retain the above copyright notice and this paragraph
15 * in its entirety, and (2) distributions including binary code include
16 * the above copyright notice and this paragraph in its entirety in
17 * the documentation or other materials provided with the distribution.
18 * The name of William C. Fenner may not be used to endorse or
19 * promote products derived from this software without specific prior
20 * written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND
21 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
22 * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 * FOR A PARTICULAR PURPOSE.
30 #include <tcpdump-stdinc.h>
35 #include "interface.h"
37 #include "addrtoname.h"
45 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
46 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
47 * |Version| Type | Virtual Rtr ID| Priority | Count IP Addrs|
48 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
49 * | Auth Type | Adver Int | Checksum |
50 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
52 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
56 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
58 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
59 * | Authentication Data (1) |
60 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
61 * | Authentication Data (2) |
62 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
68 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
69 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
70 * | IPv4 Fields or IPv6 Fields |
73 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
74 * |Version| Type | Virtual Rtr ID| Priority |Count IPvX Addr|
75 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
76 * |(rsvd) | Max Adver Int | Checksum |
77 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
80 * | IPvX Address(es) |
83 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
87 #define VRRP_TYPE_ADVERTISEMENT 1
89 static const struct tok type2str
[] = {
90 { VRRP_TYPE_ADVERTISEMENT
, "Advertisement" },
95 #define VRRP_AUTH_NONE 0
96 #define VRRP_AUTH_SIMPLE 1
97 #define VRRP_AUTH_AH 2
99 static const struct tok auth2str
[] = {
100 { VRRP_AUTH_NONE
, "none" },
101 { VRRP_AUTH_SIMPLE
, "simple" },
102 { VRRP_AUTH_AH
, "ah" },
107 vrrp_print(register const u_char
*bp
, register u_int len
,
108 register const u_char
*bp2
, int ttl
)
110 int version
, type
, auth_type
= VRRP_AUTH_NONE
; /* keep compiler happy */
114 version
= (bp
[0] & 0xf0) >> 4;
116 type_s
= tok2str(type2str
, "unknown type (%u)", type
);
117 printf("VRRPv%u, %s", version
, type_s
);
119 printf(", (ttl %u)", ttl
);
120 if (version
< 2 || version
> 3 || type
!= VRRP_TYPE_ADVERTISEMENT
)
123 printf(", vrid %u, prio %u", bp
[1], bp
[2]);
128 printf(", authtype %s", tok2str(auth2str
, NULL
, auth_type
));
129 printf(", intvl %us, length %u", bp
[5], len
);
130 } else { /* version == 3 */
131 u_int16_t intvl
= (bp
[4] & 0x0f) << 8 | bp
[5];
132 printf(", intvl %ucs, length %u", intvl
, len
);
140 if (version
== 2 && TTEST2(bp
[0], len
)) {
141 struct cksum_vec vec
[1];
145 if (in_cksum(vec
, 1))
146 printf(", (bad vrrp cksum %x)",
147 EXTRACT_16BITS(&bp
[6]));
150 if (version
== 3 && TTEST2(bp
[0], len
)) {
151 u_int16_t cksum
= nextproto4_cksum((struct ip
*)bp2
, bp
,
152 len
, len
, IPPROTO_VRRP
);
154 printf(", (bad vrrp cksum %x)",
155 EXTRACT_16BITS(&bp
[6]));
160 printf("(%d)", naddrs
);
164 for (i
= 0; i
< naddrs
; i
++) {
166 printf("%c%s", c
, ipaddr_string(bp
));
170 if (version
== 2 && auth_type
== VRRP_AUTH_SIMPLE
) { /* simple text password */
173 if (fn_printn(bp
, 8, snapend
)) {