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.
27 static const char rcsid
[] _U_
=
28 "@(#) $Header: /tcpdump/master/tcpdump/print-vrrp.c,v 1.10 2005-05-06 07:56:54 guy Exp $";
35 #include <tcpdump-stdinc.h>
40 #include "interface.h"
42 #include "addrtoname.h"
47 * 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
48 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
49 * |Version| Type | Virtual Rtr ID| Priority | Count IP Addrs|
50 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
51 * | Auth Type | Adver Int | Checksum |
52 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
54 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
58 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
60 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
61 * | Authentication Data (1) |
62 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
63 * | Authentication Data (2) |
64 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
68 #define VRRP_TYPE_ADVERTISEMENT 1
70 static const struct tok type2str
[] = {
71 { VRRP_TYPE_ADVERTISEMENT
, "Advertisement" },
76 #define VRRP_AUTH_NONE 0
77 #define VRRP_AUTH_SIMPLE 1
78 #define VRRP_AUTH_AH 2
80 static const struct tok auth2str
[] = {
81 { VRRP_AUTH_NONE
, "none" },
82 { VRRP_AUTH_SIMPLE
, "simple" },
83 { VRRP_AUTH_AH
, "ah" },
88 vrrp_print(register const u_char
*bp
, register u_int len
, int ttl
)
90 int version
, type
, auth_type
;
94 version
= (bp
[0] & 0xf0) >> 4;
96 type_s
= tok2str(type2str
, "unknown type (%u)", type
);
97 printf("VRRPv%u, %s", version
, type_s
);
99 printf(", (ttl %u)", ttl
);
100 if (version
!= 2 || type
!= VRRP_TYPE_ADVERTISEMENT
)
103 printf(", vrid %u, prio %u", bp
[1], bp
[2]);
106 printf(", authtype %s", tok2str(auth2str
, NULL
, auth_type
));
107 printf(", intvl %us, length %u", bp
[5],len
);
113 if (TTEST2(bp
[0], len
)) {
114 struct cksum_vec vec
[1];
118 if (in_cksum(vec
, 1))
119 printf(", (bad vrrp cksum %x)",
120 EXTRACT_16BITS(&bp
[6]));
124 printf("(%d)", naddrs
);
128 for (i
= 0; i
< naddrs
; i
++) {
130 printf("%c%s", c
, ipaddr_string(bp
));
134 if (auth_type
== VRRP_AUTH_SIMPLE
) { /* simple text password */
137 if (fn_printn(bp
, 8, snapend
)) {