blob: aa552aaa657092e3e94746e3735e61e93403c697 [file] [log] [blame]
The Android Open Source Project2949f582009-03-03 19:30:46 -08001/*
2 * Decode and print Zephyr packets.
3 *
Elliott Hughes820eced2021-08-20 18:00:50 -07004 * https://web.mit.edu/zephyr/doc/protocol
The Android Open Source Project2949f582009-03-03 19:30:46 -08005 *
6 * Copyright (c) 2001 Nickolai Zeldovich <kolya@MIT.EDU>
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that: (1) source code
11 * distributions retain the above copyright notice and this paragraph
12 * in its entirety, and (2) distributions including binary code include
13 * the above copyright notice and this paragraph in its entirety in
14 * the documentation or other materials provided with the distribution.
15 * The name of the author(s) may not be used to endorse or promote
16 * products derived from this software without specific prior written
17 * permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 * PURPOSE.
21 */
22
Elliott Hughese2e3bd12017-05-15 10:59:29 -070023/* \summary: Zephyr printer */
24
The Android Open Source Project2949f582009-03-03 19:30:46 -080025#ifdef HAVE_CONFIG_H
Elliott Hughes820eced2021-08-20 18:00:50 -070026#include <config.h>
The Android Open Source Project2949f582009-03-03 19:30:46 -080027#endif
28
Elliott Hughes820eced2021-08-20 18:00:50 -070029#include "netdissect-stdinc.h"
The Android Open Source Project2949f582009-03-03 19:30:46 -080030
31#include <stdio.h>
32#include <string.h>
33#include <stdlib.h>
34
Elliott Hughes820eced2021-08-20 18:00:50 -070035#include "netdissect-ctype.h"
36
Elliott Hughese2e3bd12017-05-15 10:59:29 -070037#include "netdissect.h"
Elliott Hughes820eced2021-08-20 18:00:50 -070038#include "extract.h"
The Android Open Source Project2949f582009-03-03 19:30:46 -080039
40struct z_packet {
Elliott Hughese2e3bd12017-05-15 10:59:29 -070041 const char *version;
The Android Open Source Project2949f582009-03-03 19:30:46 -080042 int numfields;
43 int kind;
Elliott Hughese2e3bd12017-05-15 10:59:29 -070044 const char *uid;
The Android Open Source Project2949f582009-03-03 19:30:46 -080045 int port;
46 int auth;
47 int authlen;
Elliott Hughese2e3bd12017-05-15 10:59:29 -070048 const char *authdata;
49 const char *class;
50 const char *inst;
51 const char *opcode;
52 const char *sender;
The Android Open Source Project2949f582009-03-03 19:30:46 -080053 const char *recipient;
Elliott Hughese2e3bd12017-05-15 10:59:29 -070054 const char *format;
The Android Open Source Project2949f582009-03-03 19:30:46 -080055 int cksum;
56 int multi;
Elliott Hughese2e3bd12017-05-15 10:59:29 -070057 const char *multi_uid;
The Android Open Source Project2949f582009-03-03 19:30:46 -080058 /* Other fields follow here.. */
59};
60
61enum z_packet_type {
62 Z_PACKET_UNSAFE = 0,
63 Z_PACKET_UNACKED,
64 Z_PACKET_ACKED,
65 Z_PACKET_HMACK,
66 Z_PACKET_HMCTL,
67 Z_PACKET_SERVACK,
68 Z_PACKET_SERVNAK,
69 Z_PACKET_CLIENTACK,
70 Z_PACKET_STAT
71};
72
JP Abgrall53f17a92014-02-12 14:02:41 -080073static const struct tok z_types[] = {
The Android Open Source Project2949f582009-03-03 19:30:46 -080074 { Z_PACKET_UNSAFE, "unsafe" },
75 { Z_PACKET_UNACKED, "unacked" },
76 { Z_PACKET_ACKED, "acked" },
77 { Z_PACKET_HMACK, "hm-ack" },
78 { Z_PACKET_HMCTL, "hm-ctl" },
79 { Z_PACKET_SERVACK, "serv-ack" },
80 { Z_PACKET_SERVNAK, "serv-nak" },
81 { Z_PACKET_CLIENTACK, "client-ack" },
Elliott Hughescec480a2017-12-19 16:54:57 -080082 { Z_PACKET_STAT, "stat" },
83 { 0, NULL }
The Android Open Source Project2949f582009-03-03 19:30:46 -080084};
85
Elliott Hughes892a68b2015-10-19 14:43:53 -070086static char z_buf[256];
The Android Open Source Project2949f582009-03-03 19:30:46 -080087
Elliott Hughese2e3bd12017-05-15 10:59:29 -070088static const char *
Elliott Hughes820eced2021-08-20 18:00:50 -070089parse_field(netdissect_options *ndo, const char **pptr, int *len)
The Android Open Source Project2949f582009-03-03 19:30:46 -080090{
Elliott Hughese2e3bd12017-05-15 10:59:29 -070091 const char *s;
The Android Open Source Project2949f582009-03-03 19:30:46 -080092
Elliott Hughescec480a2017-12-19 16:54:57 -080093 /* Start of string */
The Android Open Source Project2949f582009-03-03 19:30:46 -080094 s = *pptr;
Elliott Hughescec480a2017-12-19 16:54:57 -080095 /* Scan for the NUL terminator */
96 for (;;) {
97 if (*len == 0) {
98 /* Ran out of packet data without finding it */
99 return NULL;
100 }
Elliott Hughes820eced2021-08-20 18:00:50 -0700101 if (GET_U_1(*pptr) == '\0') {
Elliott Hughescec480a2017-12-19 16:54:57 -0800102 /* Found it */
103 break;
104 }
105 /* Keep scanning */
The Android Open Source Project2949f582009-03-03 19:30:46 -0800106 (*pptr)++;
107 (*len)--;
108 }
Elliott Hughescec480a2017-12-19 16:54:57 -0800109 /* Skip the NUL terminator */
The Android Open Source Project2949f582009-03-03 19:30:46 -0800110 (*pptr)++;
111 (*len)--;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800112 return s;
113}
114
115static const char *
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700116z_triple(const char *class, const char *inst, const char *recipient)
The Android Open Source Project2949f582009-03-03 19:30:46 -0800117{
118 if (!*recipient)
119 recipient = "*";
120 snprintf(z_buf, sizeof(z_buf), "<%s,%s,%s>", class, inst, recipient);
121 z_buf[sizeof(z_buf)-1] = '\0';
122 return z_buf;
123}
124
125static const char *
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700126str_to_lower(const char *string)
The Android Open Source Project2949f582009-03-03 19:30:46 -0800127{
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700128 char *zb_string;
129
The Android Open Source Project2949f582009-03-03 19:30:46 -0800130 strncpy(z_buf, string, sizeof(z_buf));
131 z_buf[sizeof(z_buf)-1] = '\0';
132
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700133 zb_string = z_buf;
134 while (*zb_string) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700135 *zb_string = ND_ASCII_TOLOWER(*zb_string);
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700136 zb_string++;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800137 }
138
139 return z_buf;
140}
141
142void
Elliott Hughes820eced2021-08-20 18:00:50 -0700143zephyr_print(netdissect_options *ndo, const u_char *cp, u_int length)
The Android Open Source Project2949f582009-03-03 19:30:46 -0800144{
Elliott Hughes820eced2021-08-20 18:00:50 -0700145 struct z_packet z = {
146 NULL, /* version */
147 0, /* numfields */
148 0, /* kind */
149 NULL, /* uid */
150 0, /* port */
151 0, /* auth */
152 0, /* authlen */
153 NULL, /* authdata */
154 NULL, /* class */
155 NULL, /* inst */
156 NULL, /* opcode */
157 NULL, /* sender */
158 NULL, /* recipient */
159 NULL, /* format */
160 0, /* cksum */
161 0, /* multi */
162 NULL /* multi_uid */
163 };
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700164 const char *parse = (const char *) cp;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800165 int parselen = length;
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700166 const char *s;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800167 int lose = 0;
168
Elliott Hughes820eced2021-08-20 18:00:50 -0700169 ndo->ndo_protocol = "zephyr";
JP Abgrall53f17a92014-02-12 14:02:41 -0800170 /* squelch compiler warnings */
171
Elliott Hughescec480a2017-12-19 16:54:57 -0800172#define PARSE_STRING \
Elliott Hughes820eced2021-08-20 18:00:50 -0700173 s = parse_field(ndo, &parse, &parselen); \
The Android Open Source Project2949f582009-03-03 19:30:46 -0800174 if (!s) lose = 1;
175
176#define PARSE_FIELD_INT(field) \
177 PARSE_STRING \
178 if (!lose) field = strtol(s, 0, 16);
179
180#define PARSE_FIELD_STR(field) \
181 PARSE_STRING \
182 if (!lose) field = s;
183
184 PARSE_FIELD_STR(z.version);
Elliott Hughes820eced2021-08-20 18:00:50 -0700185 if (lose)
186 goto invalid;
187
The Android Open Source Project2949f582009-03-03 19:30:46 -0800188 if (strncmp(z.version, "ZEPH", 4))
189 return;
190
191 PARSE_FIELD_INT(z.numfields);
192 PARSE_FIELD_INT(z.kind);
193 PARSE_FIELD_STR(z.uid);
194 PARSE_FIELD_INT(z.port);
195 PARSE_FIELD_INT(z.auth);
196 PARSE_FIELD_INT(z.authlen);
197 PARSE_FIELD_STR(z.authdata);
198 PARSE_FIELD_STR(z.class);
199 PARSE_FIELD_STR(z.inst);
200 PARSE_FIELD_STR(z.opcode);
201 PARSE_FIELD_STR(z.sender);
202 PARSE_FIELD_STR(z.recipient);
203 PARSE_FIELD_STR(z.format);
204 PARSE_FIELD_INT(z.cksum);
205 PARSE_FIELD_INT(z.multi);
206 PARSE_FIELD_STR(z.multi_uid);
207
Elliott Hughescec480a2017-12-19 16:54:57 -0800208 if (lose)
Elliott Hughes820eced2021-08-20 18:00:50 -0700209 goto invalid;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800210
Elliott Hughes820eced2021-08-20 18:00:50 -0700211 ND_PRINT(" zephyr");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800212 if (strncmp(z.version+4, "0.2", 3)) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700213 ND_PRINT(" v%s", z.version+4);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800214 return;
215 }
216
Elliott Hughes820eced2021-08-20 18:00:50 -0700217 ND_PRINT(" %s", tok2str(z_types, "type %d", z.kind));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800218 if (z.kind == Z_PACKET_SERVACK) {
219 /* Initialization to silence warnings */
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700220 const char *ackdata = NULL;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800221 PARSE_FIELD_STR(ackdata);
222 if (!lose && strcmp(ackdata, "SENT"))
Elliott Hughes820eced2021-08-20 18:00:50 -0700223 ND_PRINT("/%s", str_to_lower(ackdata));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800224 }
Elliott Hughes820eced2021-08-20 18:00:50 -0700225 if (*z.sender) ND_PRINT(" %s", z.sender);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800226
227 if (!strcmp(z.class, "USER_LOCATE")) {
228 if (!strcmp(z.opcode, "USER_HIDE"))
Elliott Hughes820eced2021-08-20 18:00:50 -0700229 ND_PRINT(" hide");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800230 else if (!strcmp(z.opcode, "USER_UNHIDE"))
Elliott Hughes820eced2021-08-20 18:00:50 -0700231 ND_PRINT(" unhide");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800232 else
Elliott Hughes820eced2021-08-20 18:00:50 -0700233 ND_PRINT(" locate %s", z.inst);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800234 return;
235 }
236
237 if (!strcmp(z.class, "ZEPHYR_ADMIN")) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700238 ND_PRINT(" zephyr-admin %s", str_to_lower(z.opcode));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800239 return;
240 }
241
242 if (!strcmp(z.class, "ZEPHYR_CTL")) {
243 if (!strcmp(z.inst, "CLIENT")) {
244 if (!strcmp(z.opcode, "SUBSCRIBE") ||
245 !strcmp(z.opcode, "SUBSCRIBE_NODEFS") ||
246 !strcmp(z.opcode, "UNSUBSCRIBE")) {
247
Elliott Hughes820eced2021-08-20 18:00:50 -0700248 ND_PRINT(" %ssub%s", strcmp(z.opcode, "SUBSCRIBE") ? "un" : "",
The Android Open Source Project2949f582009-03-03 19:30:46 -0800249 strcmp(z.opcode, "SUBSCRIBE_NODEFS") ? "" :
Elliott Hughes820eced2021-08-20 18:00:50 -0700250 "-nodefs");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800251 if (z.kind != Z_PACKET_SERVACK) {
252 /* Initialization to silence warnings */
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700253 const char *c = NULL, *i = NULL, *r = NULL;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800254 PARSE_FIELD_STR(c);
255 PARSE_FIELD_STR(i);
256 PARSE_FIELD_STR(r);
Elliott Hughes820eced2021-08-20 18:00:50 -0700257 if (!lose) ND_PRINT(" %s", z_triple(c, i, r));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800258 }
259 return;
260 }
261
262 if (!strcmp(z.opcode, "GIMME")) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700263 ND_PRINT(" ret");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800264 return;
265 }
266
267 if (!strcmp(z.opcode, "GIMMEDEFS")) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700268 ND_PRINT(" gimme-defs");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800269 return;
270 }
271
272 if (!strcmp(z.opcode, "CLEARSUB")) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700273 ND_PRINT(" clear-subs");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800274 return;
275 }
276
Elliott Hughes820eced2021-08-20 18:00:50 -0700277 ND_PRINT(" %s", str_to_lower(z.opcode));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800278 return;
279 }
280
281 if (!strcmp(z.inst, "HM")) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700282 ND_PRINT(" %s", str_to_lower(z.opcode));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800283 return;
284 }
285
286 if (!strcmp(z.inst, "REALM")) {
287 if (!strcmp(z.opcode, "ADD_SUBSCRIBE"))
Elliott Hughes820eced2021-08-20 18:00:50 -0700288 ND_PRINT(" realm add-subs");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800289 if (!strcmp(z.opcode, "REQ_SUBSCRIBE"))
Elliott Hughes820eced2021-08-20 18:00:50 -0700290 ND_PRINT(" realm req-subs");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800291 if (!strcmp(z.opcode, "RLM_SUBSCRIBE"))
Elliott Hughes820eced2021-08-20 18:00:50 -0700292 ND_PRINT(" realm rlm-sub");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800293 if (!strcmp(z.opcode, "RLM_UNSUBSCRIBE"))
Elliott Hughes820eced2021-08-20 18:00:50 -0700294 ND_PRINT(" realm rlm-unsub");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800295 return;
296 }
297 }
298
299 if (!strcmp(z.class, "HM_CTL")) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700300 ND_PRINT(" hm_ctl %s", str_to_lower(z.inst));
301 ND_PRINT(" %s", str_to_lower(z.opcode));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800302 return;
303 }
304
305 if (!strcmp(z.class, "HM_STAT")) {
306 if (!strcmp(z.inst, "HMST_CLIENT") && !strcmp(z.opcode, "GIMMESTATS")) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700307 ND_PRINT(" get-client-stats");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800308 return;
309 }
310 }
311
312 if (!strcmp(z.class, "WG_CTL")) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700313 ND_PRINT(" wg_ctl %s", str_to_lower(z.inst));
314 ND_PRINT(" %s", str_to_lower(z.opcode));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800315 return;
316 }
317
318 if (!strcmp(z.class, "LOGIN")) {
319 if (!strcmp(z.opcode, "USER_FLUSH")) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700320 ND_PRINT(" flush_locs");
The Android Open Source Project2949f582009-03-03 19:30:46 -0800321 return;
322 }
323
324 if (!strcmp(z.opcode, "NONE") ||
325 !strcmp(z.opcode, "OPSTAFF") ||
326 !strcmp(z.opcode, "REALM-VISIBLE") ||
327 !strcmp(z.opcode, "REALM-ANNOUNCED") ||
328 !strcmp(z.opcode, "NET-VISIBLE") ||
329 !strcmp(z.opcode, "NET-ANNOUNCED")) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700330 ND_PRINT(" set-exposure %s", str_to_lower(z.opcode));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800331 return;
332 }
333 }
334
335 if (!*z.recipient)
336 z.recipient = "*";
337
Elliott Hughes820eced2021-08-20 18:00:50 -0700338 ND_PRINT(" to %s", z_triple(z.class, z.inst, z.recipient));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800339 if (*z.opcode)
Elliott Hughes820eced2021-08-20 18:00:50 -0700340 ND_PRINT(" op %s", z.opcode);
Elliott Hughescec480a2017-12-19 16:54:57 -0800341 return;
342
Elliott Hughes820eced2021-08-20 18:00:50 -0700343invalid:
344 nd_print_invalid(ndo);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800345}