]>
The Tcpdump Group git mirrors - tcpdump/blob - print-zephyr.c
2 * Decode and print Zephyr packets.
4 * https://web.mit.edu/zephyr/doc/protocol
6 * Copyright (c) 2001 Nickolai Zeldovich <kolya@MIT.EDU>
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
23 /* \summary: Zephyr printer */
29 #include "netdissect-stdinc.h"
35 #include "netdissect-ctype.h"
37 #include "netdissect.h"
53 const char *recipient
;
57 const char *multi_uid
;
58 /* Other fields follow here.. */
73 static const struct tok z_types
[] = {
74 { 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" },
82 { Z_PACKET_STAT
, "stat" },
86 static char z_buf
[256];
89 parse_field(netdissect_options
*ndo
, const char **pptr
, int *len
)
95 /* Scan for the NUL terminator */
98 /* Ran out of packet data without finding it */
101 if (GET_U_1(*pptr
) == '\0') {
109 /* Skip the NUL terminator */
116 z_triple(const char *class, const char *inst
, const char *recipient
)
120 snprintf(z_buf
, sizeof(z_buf
), "<%s,%s,%s>", class, inst
, recipient
);
121 z_buf
[sizeof(z_buf
)-1] = '\0';
126 str_to_lower(const char *string
)
130 strncpy(z_buf
, string
, sizeof(z_buf
));
131 z_buf
[sizeof(z_buf
)-1] = '\0';
135 *zb_string
= ND_ASCII_TOLOWER(*zb_string
);
142 #define ZEPHYR_PRINT(str1,str2) \
143 ND_PRINT("%s", str1); \
144 fn_print_str(ndo, (const u_char *)str2);
147 zephyr_print(netdissect_options
*ndo
, const u_char
*cp
, u_int length
)
149 struct z_packet z
= {
162 NULL
, /* recipient */
168 const char *parse
= (const char *) cp
;
169 int parselen
= length
;
173 ndo
->ndo_protocol
= "zephyr";
174 /* squelch compiler warnings */
176 #define PARSE_STRING \
177 s = parse_field(ndo, &parse, &parselen); \
180 #define PARSE_FIELD_INT(field) \
182 if (!lose) field = strtol(s, 0, 16);
184 #define PARSE_FIELD_STR(field) \
186 if (!lose) field = s;
188 PARSE_FIELD_STR(z
.version
);
192 if (strncmp(z
.version
, "ZEPH", 4))
195 PARSE_FIELD_INT(z
.numfields
);
196 PARSE_FIELD_INT(z
.kind
);
197 PARSE_FIELD_STR(z
.uid
);
198 PARSE_FIELD_INT(z
.port
);
199 PARSE_FIELD_INT(z
.auth
);
200 PARSE_FIELD_INT(z
.authlen
);
201 PARSE_FIELD_STR(z
.authdata
);
202 PARSE_FIELD_STR(z
.class);
203 PARSE_FIELD_STR(z
.inst
);
204 PARSE_FIELD_STR(z
.opcode
);
205 PARSE_FIELD_STR(z
.sender
);
206 PARSE_FIELD_STR(z
.recipient
);
207 PARSE_FIELD_STR(z
.format
);
208 PARSE_FIELD_INT(z
.cksum
);
209 PARSE_FIELD_INT(z
.multi
);
210 PARSE_FIELD_STR(z
.multi_uid
);
216 if (strncmp(z
.version
+4, "0.2", 3)) {
217 ZEPHYR_PRINT(" v", z
.version
+4)
221 ND_PRINT(" %s", tok2str(z_types
, "type %d", z
.kind
));
222 if (z
.kind
== Z_PACKET_SERVACK
) {
223 /* Initialization to silence warnings */
224 const char *ackdata
= NULL
;
225 PARSE_FIELD_STR(ackdata
);
226 if (!lose
&& strcmp(ackdata
, "SENT"))
227 ZEPHYR_PRINT("/", str_to_lower(ackdata
))
229 if (*z
.sender
) ZEPHYR_PRINT(" ", z
.sender
);
231 if (!strcmp(z
.class, "USER_LOCATE")) {
232 if (!strcmp(z
.opcode
, "USER_HIDE"))
234 else if (!strcmp(z
.opcode
, "USER_UNHIDE"))
237 ZEPHYR_PRINT(" locate ", z
.inst
);
241 if (!strcmp(z
.class, "ZEPHYR_ADMIN")) {
242 ZEPHYR_PRINT(" zephyr-admin ", str_to_lower(z
.opcode
));
246 if (!strcmp(z
.class, "ZEPHYR_CTL")) {
247 if (!strcmp(z
.inst
, "CLIENT")) {
248 if (!strcmp(z
.opcode
, "SUBSCRIBE") ||
249 !strcmp(z
.opcode
, "SUBSCRIBE_NODEFS") ||
250 !strcmp(z
.opcode
, "UNSUBSCRIBE")) {
252 ND_PRINT(" %ssub%s", strcmp(z
.opcode
, "SUBSCRIBE") ? "un" : "",
253 strcmp(z
.opcode
, "SUBSCRIBE_NODEFS") ? "" :
255 if (z
.kind
!= Z_PACKET_SERVACK
) {
256 /* Initialization to silence warnings */
257 const char *c
= NULL
, *i
= NULL
, *r
= NULL
;
261 if (!lose
) ZEPHYR_PRINT(" ", z_triple(c
, i
, r
));
266 if (!strcmp(z
.opcode
, "GIMME")) {
271 if (!strcmp(z
.opcode
, "GIMMEDEFS")) {
272 ND_PRINT(" gimme-defs");
276 if (!strcmp(z
.opcode
, "CLEARSUB")) {
277 ND_PRINT(" clear-subs");
281 ZEPHYR_PRINT(" ", str_to_lower(z
.opcode
));
285 if (!strcmp(z
.inst
, "HM")) {
286 ZEPHYR_PRINT(" ", str_to_lower(z
.opcode
));
290 if (!strcmp(z
.inst
, "REALM")) {
291 if (!strcmp(z
.opcode
, "ADD_SUBSCRIBE"))
292 ND_PRINT(" realm add-subs");
293 if (!strcmp(z
.opcode
, "REQ_SUBSCRIBE"))
294 ND_PRINT(" realm req-subs");
295 if (!strcmp(z
.opcode
, "RLM_SUBSCRIBE"))
296 ND_PRINT(" realm rlm-sub");
297 if (!strcmp(z
.opcode
, "RLM_UNSUBSCRIBE"))
298 ND_PRINT(" realm rlm-unsub");
303 if (!strcmp(z
.class, "HM_CTL")) {
304 ZEPHYR_PRINT(" hm_ctl ", str_to_lower(z
.inst
));
305 ZEPHYR_PRINT(" ", str_to_lower(z
.opcode
));
309 if (!strcmp(z
.class, "HM_STAT")) {
310 if (!strcmp(z
.inst
, "HMST_CLIENT") && !strcmp(z
.opcode
, "GIMMESTATS")) {
311 ND_PRINT(" get-client-stats");
316 if (!strcmp(z
.class, "WG_CTL")) {
317 ZEPHYR_PRINT(" wg_ctl ", str_to_lower(z
.inst
));
318 ZEPHYR_PRINT(" ", str_to_lower(z
.opcode
));
322 if (!strcmp(z
.class, "LOGIN")) {
323 if (!strcmp(z
.opcode
, "USER_FLUSH")) {
324 ND_PRINT(" flush_locs");
328 if (!strcmp(z
.opcode
, "NONE") ||
329 !strcmp(z
.opcode
, "OPSTAFF") ||
330 !strcmp(z
.opcode
, "REALM-VISIBLE") ||
331 !strcmp(z
.opcode
, "REALM-ANNOUNCED") ||
332 !strcmp(z
.opcode
, "NET-VISIBLE") ||
333 !strcmp(z
.opcode
, "NET-ANNOUNCED")) {
334 ZEPHYR_PRINT(" set-exposure ", str_to_lower(z
.opcode
));
342 ZEPHYR_PRINT(" to ", z_triple(z
.class, z
.inst
, z
.recipient
));
344 ZEPHYR_PRINT(" op ", z
.opcode
);
348 nd_print_invalid(ndo
);