]>
The Tcpdump Group git mirrors - tcpdump/blob - print-zephyr.c
2 * Decode and print Zephyr packets.
4 * http://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.h"
50 const char *recipient
;
54 const char *multi_uid
;
55 /* Other fields follow here.. */
70 static const struct tok z_types
[] = {
71 { Z_PACKET_UNSAFE
, "unsafe" },
72 { Z_PACKET_UNACKED
, "unacked" },
73 { Z_PACKET_ACKED
, "acked" },
74 { Z_PACKET_HMACK
, "hm-ack" },
75 { Z_PACKET_HMCTL
, "hm-ctl" },
76 { Z_PACKET_SERVACK
, "serv-ack" },
77 { Z_PACKET_SERVNAK
, "serv-nak" },
78 { Z_PACKET_CLIENTACK
, "client-ack" },
79 { Z_PACKET_STAT
, "stat" },
83 static char z_buf
[256];
86 parse_field(netdissect_options
*ndo
, const char **pptr
, int *len
, int *truncated
)
92 /* Scan for the NUL terminator */
95 /* Ran out of packet data without finding it */
98 if (!ND_TTEST_SIZE(*pptr
)) {
99 /* Ran out of captured data without finding it */
103 if (**pptr
== '\0') {
111 /* Skip the NUL terminator */
118 z_triple(const char *class, const char *inst
, const char *recipient
)
122 snprintf(z_buf
, sizeof(z_buf
), "<%s,%s,%s>", class, inst
, recipient
);
123 z_buf
[sizeof(z_buf
)-1] = '\0';
128 str_to_lower(const char *string
)
132 strncpy(z_buf
, string
, sizeof(z_buf
));
133 z_buf
[sizeof(z_buf
)-1] = '\0';
137 *zb_string
= tolower((unsigned char)(*zb_string
));
145 zephyr_print(netdissect_options
*ndo
, const u_char
*cp
, int length
)
147 struct z_packet z
= {
160 NULL
, /* recipient */
166 const char *parse
= (const char *) cp
;
167 int parselen
= length
;
172 /* squelch compiler warnings */
174 #define PARSE_STRING \
175 s = parse_field(ndo, &parse, &parselen, &truncated); \
176 if (truncated) goto trunc; \
179 #define PARSE_FIELD_INT(field) \
181 if (!lose) field = strtol(s, 0, 16);
183 #define PARSE_FIELD_STR(field) \
185 if (!lose) field = s;
187 PARSE_FIELD_STR(z
.version
);
189 if (strncmp(z
.version
, "ZEPH", 4))
192 PARSE_FIELD_INT(z
.numfields
);
193 PARSE_FIELD_INT(z
.kind
);
194 PARSE_FIELD_STR(z
.uid
);
195 PARSE_FIELD_INT(z
.port
);
196 PARSE_FIELD_INT(z
.auth
);
197 PARSE_FIELD_INT(z
.authlen
);
198 PARSE_FIELD_STR(z
.authdata
);
199 PARSE_FIELD_STR(z
.class);
200 PARSE_FIELD_STR(z
.inst
);
201 PARSE_FIELD_STR(z
.opcode
);
202 PARSE_FIELD_STR(z
.sender
);
203 PARSE_FIELD_STR(z
.recipient
);
204 PARSE_FIELD_STR(z
.format
);
205 PARSE_FIELD_INT(z
.cksum
);
206 PARSE_FIELD_INT(z
.multi
);
207 PARSE_FIELD_STR(z
.multi_uid
);
213 if (strncmp(z
.version
+4, "0.2", 3)) {
214 ND_PRINT(" v%s", z
.version
+4);
218 ND_PRINT(" %s", tok2str(z_types
, "type %d", z
.kind
));
219 if (z
.kind
== Z_PACKET_SERVACK
) {
220 /* Initialization to silence warnings */
221 const char *ackdata
= NULL
;
222 PARSE_FIELD_STR(ackdata
);
223 if (!lose
&& strcmp(ackdata
, "SENT"))
224 ND_PRINT("/%s", str_to_lower(ackdata
));
226 if (*z
.sender
) ND_PRINT(" %s", z
.sender
);
228 if (!strcmp(z
.class, "USER_LOCATE")) {
229 if (!strcmp(z
.opcode
, "USER_HIDE"))
231 else if (!strcmp(z
.opcode
, "USER_UNHIDE"))
234 ND_PRINT(" locate %s", z
.inst
);
238 if (!strcmp(z
.class, "ZEPHYR_ADMIN")) {
239 ND_PRINT(" zephyr-admin %s", str_to_lower(z
.opcode
));
243 if (!strcmp(z
.class, "ZEPHYR_CTL")) {
244 if (!strcmp(z
.inst
, "CLIENT")) {
245 if (!strcmp(z
.opcode
, "SUBSCRIBE") ||
246 !strcmp(z
.opcode
, "SUBSCRIBE_NODEFS") ||
247 !strcmp(z
.opcode
, "UNSUBSCRIBE")) {
249 ND_PRINT(" %ssub%s", strcmp(z
.opcode
, "SUBSCRIBE") ? "un" : "",
250 strcmp(z
.opcode
, "SUBSCRIBE_NODEFS") ? "" :
252 if (z
.kind
!= Z_PACKET_SERVACK
) {
253 /* Initialization to silence warnings */
254 const char *c
= NULL
, *i
= NULL
, *r
= NULL
;
258 if (!lose
) ND_PRINT(" %s", z_triple(c
, i
, r
));
263 if (!strcmp(z
.opcode
, "GIMME")) {
268 if (!strcmp(z
.opcode
, "GIMMEDEFS")) {
269 ND_PRINT(" gimme-defs");
273 if (!strcmp(z
.opcode
, "CLEARSUB")) {
274 ND_PRINT(" clear-subs");
278 ND_PRINT(" %s", str_to_lower(z
.opcode
));
282 if (!strcmp(z
.inst
, "HM")) {
283 ND_PRINT(" %s", str_to_lower(z
.opcode
));
287 if (!strcmp(z
.inst
, "REALM")) {
288 if (!strcmp(z
.opcode
, "ADD_SUBSCRIBE"))
289 ND_PRINT(" realm add-subs");
290 if (!strcmp(z
.opcode
, "REQ_SUBSCRIBE"))
291 ND_PRINT(" realm req-subs");
292 if (!strcmp(z
.opcode
, "RLM_SUBSCRIBE"))
293 ND_PRINT(" realm rlm-sub");
294 if (!strcmp(z
.opcode
, "RLM_UNSUBSCRIBE"))
295 ND_PRINT(" realm rlm-unsub");
300 if (!strcmp(z
.class, "HM_CTL")) {
301 ND_PRINT(" hm_ctl %s", str_to_lower(z
.inst
));
302 ND_PRINT(" %s", str_to_lower(z
.opcode
));
306 if (!strcmp(z
.class, "HM_STAT")) {
307 if (!strcmp(z
.inst
, "HMST_CLIENT") && !strcmp(z
.opcode
, "GIMMESTATS")) {
308 ND_PRINT(" get-client-stats");
313 if (!strcmp(z
.class, "WG_CTL")) {
314 ND_PRINT(" wg_ctl %s", str_to_lower(z
.inst
));
315 ND_PRINT(" %s", str_to_lower(z
.opcode
));
319 if (!strcmp(z
.class, "LOGIN")) {
320 if (!strcmp(z
.opcode
, "USER_FLUSH")) {
321 ND_PRINT(" flush_locs");
325 if (!strcmp(z
.opcode
, "NONE") ||
326 !strcmp(z
.opcode
, "OPSTAFF") ||
327 !strcmp(z
.opcode
, "REALM-VISIBLE") ||
328 !strcmp(z
.opcode
, "REALM-ANNOUNCED") ||
329 !strcmp(z
.opcode
, "NET-VISIBLE") ||
330 !strcmp(z
.opcode
, "NET-ANNOUNCED")) {
331 ND_PRINT(" set-exposure %s", str_to_lower(z
.opcode
));
339 ND_PRINT(" to %s", z_triple(z
.class, z
.inst
, z
.recipient
));
341 ND_PRINT(" op %s", z
.opcode
);
345 ND_PRINT(" [|zephyr] (%d)", length
);