blob: ee97974ecd438ef4b60b2fb74608889e1154af88 [file] [log] [blame]
The Android Open Source Project2949f582009-03-03 19:30:46 -08001/*
2 * Copyright (c) 2000 William C. Fenner.
3 * All rights reserved.
4 *
5 * Kevin Steves <ks@hp.se> July 2000
6 * Modified to:
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)
11 *
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.
24 */
25
Elliott Hughese2e3bd12017-05-15 10:59:29 -070026/* \summary: Virtual Router Redundancy Protocol (VRRP) printer */
27
The Android Open Source Project2949f582009-03-03 19:30:46 -080028#ifdef HAVE_CONFIG_H
Elliott Hughes820eced2021-08-20 18:00:50 -070029#include <config.h>
The Android Open Source Project2949f582009-03-03 19:30:46 -080030#endif
31
Elliott Hughes820eced2021-08-20 18:00:50 -070032#include "netdissect-stdinc.h"
The Android Open Source Project2949f582009-03-03 19:30:46 -080033
Elliott Hughese2e3bd12017-05-15 10:59:29 -070034#include "netdissect.h"
The Android Open Source Project2949f582009-03-03 19:30:46 -080035#include "extract.h"
36#include "addrtoname.h"
37
Elliott Hughes892a68b2015-10-19 14:43:53 -070038#include "ip.h"
39#include "ipproto.h"
The Android Open Source Project2949f582009-03-03 19:30:46 -080040/*
Elliott Hughes892a68b2015-10-19 14:43:53 -070041 * RFC 2338 (VRRP v2):
42 *
The Android Open Source Project2949f582009-03-03 19:30:46 -080043 * 0 1 2 3
44 * 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
45 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
46 * |Version| Type | Virtual Rtr ID| Priority | Count IP Addrs|
47 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
48 * | Auth Type | Adver Int | Checksum |
49 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
50 * | IP Address (1) |
51 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
52 * | . |
53 * | . |
54 * | . |
55 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
56 * | IP Address (n) |
57 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
58 * | Authentication Data (1) |
59 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
60 * | Authentication Data (2) |
61 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Elliott Hughes892a68b2015-10-19 14:43:53 -070062 *
63 *
64 * RFC 5798 (VRRP v3):
65 *
66 * 0 1 2 3
67 * 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
68 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
69 * | IPv4 Fields or IPv6 Fields |
70 * ... ...
71 * | |
72 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
73 * |Version| Type | Virtual Rtr ID| Priority |Count IPvX Addr|
74 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
75 * |(rsvd) | Max Adver Int | Checksum |
76 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
77 * | |
78 * + +
79 * | IPvX Address(es) |
80 * + +
81 * | |
82 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
The Android Open Source Project2949f582009-03-03 19:30:46 -080083 */
84
85/* Type */
86#define VRRP_TYPE_ADVERTISEMENT 1
87
88static const struct tok type2str[] = {
89 { VRRP_TYPE_ADVERTISEMENT, "Advertisement" },
90 { 0, NULL }
91};
92
93/* Auth Type */
94#define VRRP_AUTH_NONE 0
95#define VRRP_AUTH_SIMPLE 1
96#define VRRP_AUTH_AH 2
97
98static const struct tok auth2str[] = {
99 { VRRP_AUTH_NONE, "none" },
100 { VRRP_AUTH_SIMPLE, "simple" },
101 { VRRP_AUTH_AH, "ah" },
102 { 0, NULL }
103};
104
105void
Elliott Hughes892a68b2015-10-19 14:43:53 -0700106vrrp_print(netdissect_options *ndo,
Elliott Hughes820eced2021-08-20 18:00:50 -0700107 const u_char *bp, u_int len,
108 const u_char *bp2, int ttl)
The Android Open Source Project2949f582009-03-03 19:30:46 -0800109{
Elliott Hughes892a68b2015-10-19 14:43:53 -0700110 int version, type, auth_type = VRRP_AUTH_NONE; /* keep compiler happy */
The Android Open Source Project2949f582009-03-03 19:30:46 -0800111 const char *type_s;
112
Elliott Hughes820eced2021-08-20 18:00:50 -0700113 ndo->ndo_protocol = "vrrp";
114 version = (GET_U_1(bp) & 0xf0) >> 4;
115 type = GET_U_1(bp) & 0x0f;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800116 type_s = tok2str(type2str, "unknown type (%u)", type);
Elliott Hughes820eced2021-08-20 18:00:50 -0700117 ND_PRINT("VRRPv%u, %s", version, type_s);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800118 if (ttl != 255)
Elliott Hughes820eced2021-08-20 18:00:50 -0700119 ND_PRINT(", (ttl %u)", ttl);
Elliott Hughes892a68b2015-10-19 14:43:53 -0700120 if (version < 2 || version > 3 || type != VRRP_TYPE_ADVERTISEMENT)
The Android Open Source Project2949f582009-03-03 19:30:46 -0800121 return;
Elliott Hughes820eced2021-08-20 18:00:50 -0700122 ND_PRINT(", vrid %u, prio %u", GET_U_1(bp + 1), GET_U_1(bp + 2));
Elliott Hughes892a68b2015-10-19 14:43:53 -0700123
124 if (version == 2) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700125 auth_type = GET_U_1(bp + 4);
126 ND_PRINT(", authtype %s", tok2str(auth2str, NULL, auth_type));
127 ND_PRINT(", intvl %us, length %u", GET_U_1(bp + 5), len);
Elliott Hughes892a68b2015-10-19 14:43:53 -0700128 } else { /* version == 3 */
Elliott Hughes820eced2021-08-20 18:00:50 -0700129 uint16_t intvl = (GET_U_1(bp + 4) & 0x0f) << 8 | GET_U_1(bp + 5);
130 ND_PRINT(", intvl %ucs, length %u", intvl, len);
Elliott Hughes892a68b2015-10-19 14:43:53 -0700131 }
132
133 if (ndo->ndo_vflag) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700134 u_int naddrs = GET_U_1(bp + 3);
135 u_int i;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800136 char c;
137
Elliott Hughes820eced2021-08-20 18:00:50 -0700138 if (version == 2 && ND_TTEST_LEN(bp, len)) {
JP Abgrall53f17a92014-02-12 14:02:41 -0800139 struct cksum_vec vec[1];
140
141 vec[0].ptr = bp;
142 vec[0].len = len;
143 if (in_cksum(vec, 1))
Elliott Hughes820eced2021-08-20 18:00:50 -0700144 ND_PRINT(", (bad vrrp cksum %x)",
145 GET_BE_U_2(bp + 6));
JP Abgrall53f17a92014-02-12 14:02:41 -0800146 }
Elliott Hughes892a68b2015-10-19 14:43:53 -0700147
Elliott Hughes820eced2021-08-20 18:00:50 -0700148 if (version == 3 && ND_TTEST_LEN(bp, len)) {
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700149 uint16_t cksum = nextproto4_cksum(ndo, (const struct ip *)bp2, bp,
Elliott Hughes892a68b2015-10-19 14:43:53 -0700150 len, len, IPPROTO_VRRP);
151 if (cksum)
Elliott Hughes820eced2021-08-20 18:00:50 -0700152 ND_PRINT(", (bad vrrp cksum %x)",
153 GET_BE_U_2(bp + 6));
Elliott Hughes892a68b2015-10-19 14:43:53 -0700154 }
155
Elliott Hughes820eced2021-08-20 18:00:50 -0700156 ND_PRINT(", addrs");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800157 if (naddrs > 1)
Elliott Hughes820eced2021-08-20 18:00:50 -0700158 ND_PRINT("(%u)", naddrs);
159 ND_PRINT(":");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800160 c = ' ';
161 bp += 8;
162 for (i = 0; i < naddrs; i++) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700163 ND_PRINT("%c%s", c, GET_IPADDR_STRING(bp));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800164 c = ',';
165 bp += 4;
166 }
Elliott Hughes892a68b2015-10-19 14:43:53 -0700167 if (version == 2 && auth_type == VRRP_AUTH_SIMPLE) { /* simple text password */
Elliott Hughes820eced2021-08-20 18:00:50 -0700168 ND_PRINT(" auth \"");
169 /*
170 * RFC 2338 Section 5.3.10: "If the configured authentication string
171 * is shorter than 8 bytes, the remaining space MUST be zero-filled.
172 */
173 nd_printjnp(ndo, bp, 8);
174 ND_PRINT("\"");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800175 }
176 }
The Android Open Source Project2949f582009-03-03 19:30:46 -0800177}