2 * Copyright (c) 1992, 1993, 1994, 1995, 1996, 1997
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
22 #include <sys/cdefs.h>
24 __RCSID("$NetBSD: print-decnet.c,v 1.6 2015/03/31 21:59:35 christos Exp $");
27 #define NETDISSECT_REWORKED
32 #include <tcpdump-stdinc.h>
37 #ifdef HAVE_NETDNET_DNETDB_H
38 #include <netdnet/dnetdb.h>
46 #include "interface.h"
47 #include "addrtoname.h"
49 static const char tstr
[] = "[|decnet]";
52 typedef uint8_t byte
[1]; /* single byte field */
55 * the keyword 'byte' generates conflicts in Windows
57 typedef unsigned char Byte
[1]; /* single byte field */
60 typedef uint8_t word
[2]; /* 2 byte field */
61 typedef uint8_t longword
[4]; /* 4 bytes field */
64 * Definitions for DECNET Phase IV protocol headers
67 uint8_t dne_addr
[6]; /* full ethernet address */
69 uint8_t dne_hiord
[4]; /* DECnet HIORD prefix */
70 uint8_t dne_nodeaddr
[2]; /* DECnet node address */
74 typedef union etheraddress etheraddr
; /* Ethernet address */
76 #define HIORD 0x000400aa /* high 32-bits of address (swapped) */
78 #define AREAMASK 0176000 /* mask for area field */
79 #define AREASHIFT 10 /* bit-offset for area field */
80 #define NODEMASK 01777 /* mask for node address field */
82 #define DN_MAXADDL 20 /* max size of DECnet address */
84 uint16_t a_len
; /* length of address */
85 uint8_t a_addr
[DN_MAXADDL
]; /* address as bytes */
89 * Define long and short header formats.
93 byte sh_flags
; /* route flags */
94 word sh_dst
; /* destination node address */
95 word sh_src
; /* source node address */
96 byte sh_visits
; /* visit count */
101 byte lg_flags
; /* route flags */
102 byte lg_darea
; /* destination area (reserved) */
103 byte lg_dsarea
; /* destination subarea (reserved) */
104 etheraddr lg_dst
; /* destination id */
105 byte lg_sarea
; /* source area (reserved) */
106 byte lg_ssarea
; /* source subarea (reserved) */
107 etheraddr lg_src
; /* source id */
108 byte lg_nextl2
; /* next level 2 router (reserved) */
109 byte lg_visits
; /* visit count */
110 byte lg_service
; /* service class (reserved) */
111 byte lg_pt
; /* protocol type (reserved) */
116 struct shorthdr rh_short
; /* short route header */
117 struct longhdr rh_long
; /* long route header */
121 * Define the values of various fields in the protocol messages.
123 * 1. Data packet formats.
125 #define RMF_MASK 7 /* mask for message type */
126 #define RMF_SHORT 2 /* short message format */
127 #define RMF_LONG 6 /* long message format */
129 #define RMF_RQR 010 /* request return to sender */
130 #define RMF_RTS 020 /* returning to sender */
131 #define RMF_IE 040 /* intra-ethernet packet */
133 #define RMF_FVER 0100 /* future version flag */
134 #define RMF_PAD 0200 /* pad field */
135 #define RMF_PADMASK 0177 /* pad field mask */
137 #define VIS_MASK 077 /* visit field mask */
140 * 2. Control packet formats.
142 #define RMF_CTLMASK 017 /* mask for message type */
143 #define RMF_CTLMSG 01 /* control message indicator */
144 #define RMF_INIT 01 /* initialization message */
145 #define RMF_VER 03 /* verification message */
146 #define RMF_TEST 05 /* hello and test message */
147 #define RMF_L1ROUT 07 /* level 1 routing message */
148 #define RMF_L2ROUT 011 /* level 2 routing message */
149 #define RMF_RHELLO 013 /* router hello message */
150 #define RMF_EHELLO 015 /* endnode hello message */
152 #define TI_L2ROUT 01 /* level 2 router */
153 #define TI_L1ROUT 02 /* level 1 router */
154 #define TI_ENDNODE 03 /* endnode */
155 #define TI_VERIF 04 /* verification required */
156 #define TI_BLOCK 010 /* blocking requested */
158 #define VE_VERS 2 /* version number (2) */
159 #define VE_ECO 0 /* ECO number */
160 #define VE_UECO 0 /* user ECO number (0) */
162 #define P3_VERS 1 /* phase III version number (1) */
163 #define P3_ECO 3 /* ECO number (3) */
164 #define P3_UECO 0 /* user ECO number (0) */
166 #define II_L2ROUT 01 /* level 2 router */
167 #define II_L1ROUT 02 /* level 1 router */
168 #define II_ENDNODE 03 /* endnode */
169 #define II_VERIF 04 /* verification required */
170 #define II_NOMCAST 040 /* no multicast traffic accepted */
171 #define II_BLOCK 0100 /* blocking requested */
172 #define II_TYPEMASK 03 /* mask for node type */
174 #define TESTDATA 0252 /* test data bytes */
175 #define TESTLEN 1 /* length of transmitted test data */
178 * Define control message formats.
180 struct initmsgIII
/* phase III initialization message */
182 byte inIII_flags
; /* route flags */
183 word inIII_src
; /* source node address */
184 byte inIII_info
; /* routing layer information */
185 word inIII_blksize
; /* maximum data link block size */
186 byte inIII_vers
; /* version number */
187 byte inIII_eco
; /* ECO number */
188 byte inIII_ueco
; /* user ECO number */
189 byte inIII_rsvd
; /* reserved image field */
192 struct initmsg
/* initialization message */
194 byte in_flags
; /* route flags */
195 word in_src
; /* source node address */
196 byte in_info
; /* routing layer information */
197 word in_blksize
; /* maximum data link block size */
198 byte in_vers
; /* version number */
199 byte in_eco
; /* ECO number */
200 byte in_ueco
; /* user ECO number */
201 word in_hello
; /* hello timer */
202 byte in_rsvd
; /* reserved image field */
205 struct verifmsg
/* verification message */
207 byte ve_flags
; /* route flags */
208 word ve_src
; /* source node address */
209 byte ve_fcnval
; /* function value image field */
212 struct testmsg
/* hello and test message */
214 byte te_flags
; /* route flags */
215 word te_src
; /* source node address */
216 byte te_data
; /* test data image field */
219 struct l1rout
/* level 1 routing message */
221 byte r1_flags
; /* route flags */
222 word r1_src
; /* source node address */
223 byte r1_rsvd
; /* reserved field */
226 struct l2rout
/* level 2 routing message */
228 byte r2_flags
; /* route flags */
229 word r2_src
; /* source node address */
230 byte r2_rsvd
; /* reserved field */
233 struct rhellomsg
/* router hello message */
235 byte rh_flags
; /* route flags */
236 byte rh_vers
; /* version number */
237 byte rh_eco
; /* ECO number */
238 byte rh_ueco
; /* user ECO number */
239 etheraddr rh_src
; /* source id */
240 byte rh_info
; /* routing layer information */
241 word rh_blksize
; /* maximum data link block size */
242 byte rh_priority
; /* router's priority */
243 byte rh_area
; /* reserved */
244 word rh_hello
; /* hello timer */
245 byte rh_mpd
; /* reserved */
248 struct ehellomsg
/* endnode hello message */
250 byte eh_flags
; /* route flags */
251 byte eh_vers
; /* version number */
252 byte eh_eco
; /* ECO number */
253 byte eh_ueco
; /* user ECO number */
254 etheraddr eh_src
; /* source id */
255 byte eh_info
; /* routing layer information */
256 word eh_blksize
; /* maximum data link block size */
257 byte eh_area
; /* area (reserved) */
258 byte eh_seed
[8]; /* verification seed */
259 etheraddr eh_router
; /* designated router */
260 word eh_hello
; /* hello timer */
261 byte eh_mpd
; /* (reserved) */
262 byte eh_data
; /* test data image field */
267 struct initmsg cm_init
; /* initialization message */
268 struct verifmsg cm_ver
; /* verification message */
269 struct testmsg cm_test
; /* hello and test message */
270 struct l1rout cm_l1rou
; /* level 1 routing message */
271 struct l2rout cm_l2rout
; /* level 2 routing message */
272 struct rhellomsg cm_rhello
; /* router hello message */
273 struct ehellomsg cm_ehello
; /* endnode hello message */
276 /* Macros for decoding routing-info fields */
277 #define RI_COST(x) ((x)&0777)
278 #define RI_HOPS(x) (((x)>>10)&037)
281 * NSP protocol fields and values.
284 #define NSP_TYPEMASK 014 /* mask to isolate type code */
285 #define NSP_SUBMASK 0160 /* mask to isolate subtype code */
286 #define NSP_SUBSHFT 4 /* shift to move subtype code */
288 #define MFT_DATA 0 /* data message */
289 #define MFT_ACK 04 /* acknowledgement message */
290 #define MFT_CTL 010 /* control message */
292 #define MFS_ILS 020 /* data or I/LS indicator */
293 #define MFS_BOM 040 /* beginning of message (data) */
294 #define MFS_MOM 0 /* middle of message (data) */
295 #define MFS_EOM 0100 /* end of message (data) */
296 #define MFS_INT 040 /* interrupt message */
298 #define MFS_DACK 0 /* data acknowledgement */
299 #define MFS_IACK 020 /* I/LS acknowledgement */
300 #define MFS_CACK 040 /* connect acknowledgement */
302 #define MFS_NOP 0 /* no operation */
303 #define MFS_CI 020 /* connect initiate */
304 #define MFS_CC 040 /* connect confirm */
305 #define MFS_DI 060 /* disconnect initiate */
306 #define MFS_DC 0100 /* disconnect confirm */
307 #define MFS_RCI 0140 /* retransmitted connect initiate */
309 #define SGQ_ACK 0100000 /* ack */
310 #define SGQ_NAK 0110000 /* negative ack */
311 #define SGQ_OACK 0120000 /* other channel ack */
312 #define SGQ_ONAK 0130000 /* other channel negative ack */
313 #define SGQ_MASK 07777 /* mask to isolate seq # */
314 #define SGQ_OTHER 020000 /* other channel qualifier */
315 #define SGQ_DELAY 010000 /* ack delay flag */
317 #define SGQ_EOM 0100000 /* pseudo flag for end-of-message */
319 #define LSM_MASK 03 /* mask for modifier field */
320 #define LSM_NOCHANGE 0 /* no change */
321 #define LSM_DONOTSEND 1 /* do not send data */
322 #define LSM_SEND 2 /* send data */
324 #define LSI_MASK 014 /* mask for interpretation field */
325 #define LSI_DATA 0 /* data segment or message count */
326 #define LSI_INTR 4 /* interrupt request count */
327 #define LSI_INTM 0377 /* funny marker for int. message */
329 #define COS_MASK 014 /* mask for flow control field */
330 #define COS_NONE 0 /* no flow control */
331 #define COS_SEGMENT 04 /* segment flow control */
332 #define COS_MESSAGE 010 /* message flow control */
333 #define COS_CRYPTSER 020 /* cryptographic services requested */
334 #define COS_DEFAULT 1 /* default value for field */
336 #define COI_MASK 3 /* mask for version field */
337 #define COI_32 0 /* version 3.2 */
338 #define COI_31 1 /* version 3.1 */
339 #define COI_40 2 /* version 4.0 */
340 #define COI_41 3 /* version 4.1 */
342 #define MNU_MASK 140 /* mask for session control version */
343 #define MNU_10 000 /* session V1.0 */
344 #define MNU_20 040 /* session V2.0 */
345 #define MNU_ACCESS 1 /* access control present */
346 #define MNU_USRDATA 2 /* user data field present */
347 #define MNU_INVKPROXY 4 /* invoke proxy field present */
348 #define MNU_UICPROXY 8 /* use uic-based proxy */
350 #define DC_NORESOURCES 1 /* no resource reason code */
351 #define DC_NOLINK 41 /* no link terminate reason code */
352 #define DC_COMPLETE 42 /* disconnect complete reason code */
354 #define DI_NOERROR 0 /* user disconnect */
355 #define DI_SHUT 3 /* node is shutting down */
356 #define DI_NOUSER 4 /* destination end user does not exist */
357 #define DI_INVDEST 5 /* invalid end user destination */
358 #define DI_REMRESRC 6 /* insufficient remote resources */
359 #define DI_TPA 8 /* third party abort */
360 #define DI_PROTOCOL 7 /* protocol error discovered */
361 #define DI_ABORT 9 /* user abort */
362 #define DI_LOCALRESRC 32 /* insufficient local resources */
363 #define DI_REMUSERRESRC 33 /* insufficient remote user resources */
364 #define DI_BADACCESS 34 /* bad access control information */
365 #define DI_BADACCNT 36 /* bad ACCOUNT information */
366 #define DI_CONNECTABORT 38 /* connect request cancelled */
367 #define DI_TIMEDOUT 38 /* remote node or user crashed */
368 #define DI_UNREACHABLE 39 /* local timers expired due to ... */
369 #define DI_BADIMAGE 43 /* bad image data in connect */
370 #define DI_SERVMISMATCH 54 /* cryptographic service mismatch */
372 #define UC_OBJREJECT 0 /* object rejected connect */
373 #define UC_USERDISCONNECT 0 /* user disconnect */
374 #define UC_RESOURCES 1 /* insufficient resources (local or remote) */
375 #define UC_NOSUCHNODE 2 /* unrecognized node name */
376 #define UC_REMOTESHUT 3 /* remote node shutting down */
377 #define UC_NOSUCHOBJ 4 /* unrecognized object */
378 #define UC_INVOBJFORMAT 5 /* invalid object name format */
379 #define UC_OBJTOOBUSY 6 /* object too busy */
380 #define UC_NETWORKABORT 8 /* network abort */
381 #define UC_USERABORT 9 /* user abort */
382 #define UC_INVNODEFORMAT 10 /* invalid node name format */
383 #define UC_LOCALSHUT 11 /* local node shutting down */
384 #define UC_ACCESSREJECT 34 /* invalid access control information */
385 #define UC_NORESPONSE 38 /* no response from object */
386 #define UC_UNREACHABLE 39 /* node unreachable */
389 * NSP message formats.
391 struct nsphdr
/* general nsp header */
393 byte nh_flags
; /* message flags */
394 word nh_dst
; /* destination link address */
395 word nh_src
; /* source link address */
398 struct seghdr
/* data segment header */
400 byte sh_flags
; /* message flags */
401 word sh_dst
; /* destination link address */
402 word sh_src
; /* source link address */
403 word sh_seq
[3]; /* sequence numbers */
406 struct minseghdr
/* minimum data segment header */
408 byte ms_flags
; /* message flags */
409 word ms_dst
; /* destination link address */
410 word ms_src
; /* source link address */
411 word ms_seq
; /* sequence number */
414 struct lsmsg
/* link service message (after hdr) */
416 byte ls_lsflags
; /* link service flags */
417 byte ls_fcval
; /* flow control value */
420 struct ackmsg
/* acknowledgement message */
422 byte ak_flags
; /* message flags */
423 word ak_dst
; /* destination link address */
424 word ak_src
; /* source link address */
425 word ak_acknum
[2]; /* acknowledgement numbers */
428 struct minackmsg
/* minimum acknowledgement message */
430 byte mk_flags
; /* message flags */
431 word mk_dst
; /* destination link address */
432 word mk_src
; /* source link address */
433 word mk_acknum
; /* acknowledgement number */
436 struct ciackmsg
/* connect acknowledgement message */
438 byte ck_flags
; /* message flags */
439 word ck_dst
; /* destination link address */
442 struct cimsg
/* connect initiate message */
444 byte ci_flags
; /* message flags */
445 word ci_dst
; /* destination link address (0) */
446 word ci_src
; /* source link address */
447 byte ci_services
; /* requested services */
448 byte ci_info
; /* information */
449 word ci_segsize
; /* maximum segment size */
452 struct ccmsg
/* connect confirm message */
454 byte cc_flags
; /* message flags */
455 word cc_dst
; /* destination link address */
456 word cc_src
; /* source link address */
457 byte cc_services
; /* requested services */
458 byte cc_info
; /* information */
459 word cc_segsize
; /* maximum segment size */
460 byte cc_optlen
; /* optional data length */
463 struct cnmsg
/* generic connect message */
465 byte cn_flags
; /* message flags */
466 word cn_dst
; /* destination link address */
467 word cn_src
; /* source link address */
468 byte cn_services
; /* requested services */
469 byte cn_info
; /* information */
470 word cn_segsize
; /* maximum segment size */
473 struct dimsg
/* disconnect initiate message */
475 byte di_flags
; /* message flags */
476 word di_dst
; /* destination link address */
477 word di_src
; /* source link address */
478 word di_reason
; /* reason code */
479 byte di_optlen
; /* optional data length */
482 struct dcmsg
/* disconnect confirm message */
484 byte dc_flags
; /* message flags */
485 word dc_dst
; /* destination link address */
486 word dc_src
; /* source link address */
487 word dc_reason
; /* reason code */
491 static int print_decnet_ctlmsg(netdissect_options
*, const union routehdr
*, u_int
, u_int
);
492 static void print_t_info(netdissect_options
*, int);
493 static int print_l1_routes(netdissect_options
*, const char *, u_int
);
494 static int print_l2_routes(netdissect_options
*, const char *, u_int
);
495 static void print_i_info(netdissect_options
*, int);
496 static int print_elist(const char *, u_int
);
497 static int print_nsp(netdissect_options
*, const u_char
*, u_int
);
498 static void print_reason(netdissect_options
*, int);
500 static void pdata(netdissect_options
*, u_char
*, u_int
);
503 #ifndef HAVE_NETDNET_DNETDB_H_DNET_HTOA
504 extern char *dnet_htoa(struct dn_naddr
*);
508 decnet_print(netdissect_options
*ndo
,
509 register const u_char
*ap
, register u_int length
,
510 register u_int caplen
)
512 register const union routehdr
*rhp
;
515 u_int nsplen
, pktlen
;
518 if (length
< sizeof(struct shorthdr
)) {
519 ND_PRINT((ndo
, "%s", tstr
));
523 ND_TCHECK2(*ap
, sizeof(short));
524 pktlen
= EXTRACT_LE_16BITS(ap
);
525 if (pktlen
< sizeof(struct shorthdr
)) {
526 ND_PRINT((ndo
, "%s", tstr
));
529 if (pktlen
> length
) {
530 ND_PRINT((ndo
, "%s", tstr
));
535 rhp
= (const union routehdr
*)&(ap
[sizeof(short)]);
536 ND_TCHECK(rhp
->rh_short
.sh_flags
);
537 mflags
= EXTRACT_LE_8BITS(rhp
->rh_short
.sh_flags
);
539 if (mflags
& RMF_PAD
) {
540 /* pad bytes of some sort in front of message */
541 u_int padlen
= mflags
& RMF_PADMASK
;
543 ND_PRINT((ndo
, "[pad:%d] ", padlen
));
544 if (length
< padlen
+ 2) {
545 ND_PRINT((ndo
, "%s", tstr
));
548 ND_TCHECK2(ap
[sizeof(short)], padlen
);
552 rhp
= (const union routehdr
*)&(ap
[sizeof(short)]);
553 mflags
= EXTRACT_LE_8BITS(rhp
->rh_short
.sh_flags
);
556 if (mflags
& RMF_FVER
) {
557 ND_PRINT((ndo
, "future-version-decnet"));
558 ND_DEFAULTPRINT(ap
, min(length
, caplen
));
562 /* is it a control message? */
563 if (mflags
& RMF_CTLMSG
) {
564 if (!print_decnet_ctlmsg(ndo
, rhp
, length
, caplen
))
569 switch (mflags
& RMF_MASK
) {
571 if (length
< sizeof(struct longhdr
)) {
572 ND_PRINT((ndo
, "%s", tstr
));
575 ND_TCHECK(rhp
->rh_long
);
577 EXTRACT_LE_16BITS(rhp
->rh_long
.lg_dst
.dne_remote
.dne_nodeaddr
);
579 EXTRACT_LE_16BITS(rhp
->rh_long
.lg_src
.dne_remote
.dne_nodeaddr
);
580 hops
= EXTRACT_LE_8BITS(rhp
->rh_long
.lg_visits
);
581 nspp
= &(ap
[sizeof(short) + sizeof(struct longhdr
)]);
582 nsplen
= length
- sizeof(struct longhdr
);
585 ND_TCHECK(rhp
->rh_short
);
586 dst
= EXTRACT_LE_16BITS(rhp
->rh_short
.sh_dst
);
587 src
= EXTRACT_LE_16BITS(rhp
->rh_short
.sh_src
);
588 hops
= (EXTRACT_LE_8BITS(rhp
->rh_short
.sh_visits
) & VIS_MASK
)+1;
589 nspp
= &(ap
[sizeof(short) + sizeof(struct shorthdr
)]);
590 nsplen
= length
- sizeof(struct shorthdr
);
593 ND_PRINT((ndo
, "unknown message flags under mask"));
594 ND_DEFAULTPRINT((u_char
*)ap
, min(length
, caplen
));
598 ND_PRINT((ndo
, "%s > %s %d ",
599 dnaddr_string(ndo
, src
), dnaddr_string(ndo
, dst
), pktlen
));
600 if (ndo
->ndo_vflag
) {
601 if (mflags
& RMF_RQR
)
602 ND_PRINT((ndo
, "RQR "));
603 if (mflags
& RMF_RTS
)
604 ND_PRINT((ndo
, "RTS "));
606 ND_PRINT((ndo
, "IE "));
607 ND_PRINT((ndo
, "%d hops ", hops
));
610 if (!print_nsp(ndo
, nspp
, nsplen
))
615 ND_PRINT((ndo
, "%s", tstr
));
620 print_decnet_ctlmsg(netdissect_options
*ndo
,
621 register const union routehdr
*rhp
, u_int length
,
624 int mflags
= EXTRACT_LE_8BITS(rhp
->rh_short
.sh_flags
);
625 register union controlmsg
*cmp
= (union controlmsg
*)rhp
;
626 int src
, dst
, info
, blksize
, eco
, ueco
, hello
, other
, vers
;
627 etheraddr srcea
, rtea
;
629 char *rhpx
= (char *)rhp
;
632 switch (mflags
& RMF_CTLMASK
) {
634 ND_PRINT((ndo
, "init "));
635 if (length
< sizeof(struct initmsg
))
637 ND_TCHECK(cmp
->cm_init
);
638 src
= EXTRACT_LE_16BITS(cmp
->cm_init
.in_src
);
639 info
= EXTRACT_LE_8BITS(cmp
->cm_init
.in_info
);
640 blksize
= EXTRACT_LE_16BITS(cmp
->cm_init
.in_blksize
);
641 vers
= EXTRACT_LE_8BITS(cmp
->cm_init
.in_vers
);
642 eco
= EXTRACT_LE_8BITS(cmp
->cm_init
.in_eco
);
643 ueco
= EXTRACT_LE_8BITS(cmp
->cm_init
.in_ueco
);
644 hello
= EXTRACT_LE_16BITS(cmp
->cm_init
.in_hello
);
645 print_t_info(ndo
, info
);
647 "src %sblksize %d vers %d eco %d ueco %d hello %d",
648 dnaddr_string(ndo
, src
), blksize
, vers
, eco
, ueco
,
653 ND_PRINT((ndo
, "verification "));
654 if (length
< sizeof(struct verifmsg
))
656 ND_TCHECK(cmp
->cm_ver
);
657 src
= EXTRACT_LE_16BITS(cmp
->cm_ver
.ve_src
);
658 other
= EXTRACT_LE_8BITS(cmp
->cm_ver
.ve_fcnval
);
659 ND_PRINT((ndo
, "src %s fcnval %o", dnaddr_string(ndo
, src
), other
));
663 ND_PRINT((ndo
, "test "));
664 if (length
< sizeof(struct testmsg
))
666 ND_TCHECK(cmp
->cm_test
);
667 src
= EXTRACT_LE_16BITS(cmp
->cm_test
.te_src
);
668 other
= EXTRACT_LE_8BITS(cmp
->cm_test
.te_data
);
669 ND_PRINT((ndo
, "src %s data %o", dnaddr_string(ndo
, src
), other
));
673 ND_PRINT((ndo
, "lev-1-routing "));
674 if (length
< sizeof(struct l1rout
))
676 ND_TCHECK(cmp
->cm_l1rou
);
677 src
= EXTRACT_LE_16BITS(cmp
->cm_l1rou
.r1_src
);
678 ND_PRINT((ndo
, "src %s ", dnaddr_string(ndo
, src
)));
679 ret
= print_l1_routes(ndo
, &(rhpx
[sizeof(struct l1rout
)]),
680 length
- sizeof(struct l1rout
));
683 ND_PRINT((ndo
, "lev-2-routing "));
684 if (length
< sizeof(struct l2rout
))
686 ND_TCHECK(cmp
->cm_l2rout
);
687 src
= EXTRACT_LE_16BITS(cmp
->cm_l2rout
.r2_src
);
688 ND_PRINT((ndo
, "src %s ", dnaddr_string(ndo
, src
)));
689 ret
= print_l2_routes(ndo
, &(rhpx
[sizeof(struct l2rout
)]),
690 length
- sizeof(struct l2rout
));
693 ND_PRINT((ndo
, "router-hello "));
694 if (length
< sizeof(struct rhellomsg
))
696 ND_TCHECK(cmp
->cm_rhello
);
697 vers
= EXTRACT_LE_8BITS(cmp
->cm_rhello
.rh_vers
);
698 eco
= EXTRACT_LE_8BITS(cmp
->cm_rhello
.rh_eco
);
699 ueco
= EXTRACT_LE_8BITS(cmp
->cm_rhello
.rh_ueco
);
700 memcpy((char *)&srcea
, (char *)&(cmp
->cm_rhello
.rh_src
),
702 src
= EXTRACT_LE_16BITS(srcea
.dne_remote
.dne_nodeaddr
);
703 info
= EXTRACT_LE_8BITS(cmp
->cm_rhello
.rh_info
);
704 blksize
= EXTRACT_LE_16BITS(cmp
->cm_rhello
.rh_blksize
);
705 priority
= EXTRACT_LE_8BITS(cmp
->cm_rhello
.rh_priority
);
706 hello
= EXTRACT_LE_16BITS(cmp
->cm_rhello
.rh_hello
);
707 print_i_info(ndo
, info
);
709 "vers %d eco %d ueco %d src %s blksize %d pri %d hello %d",
710 vers
, eco
, ueco
, dnaddr_string(ndo
, src
),
711 blksize
, priority
, hello
));
712 ret
= print_elist(&(rhpx
[sizeof(struct rhellomsg
)]),
713 length
- sizeof(struct rhellomsg
));
716 ND_PRINT((ndo
, "endnode-hello "));
717 if (length
< sizeof(struct ehellomsg
))
719 ND_TCHECK(cmp
->cm_ehello
);
720 vers
= EXTRACT_LE_8BITS(cmp
->cm_ehello
.eh_vers
);
721 eco
= EXTRACT_LE_8BITS(cmp
->cm_ehello
.eh_eco
);
722 ueco
= EXTRACT_LE_8BITS(cmp
->cm_ehello
.eh_ueco
);
723 memcpy((char *)&srcea
, (char *)&(cmp
->cm_ehello
.eh_src
),
725 src
= EXTRACT_LE_16BITS(srcea
.dne_remote
.dne_nodeaddr
);
726 info
= EXTRACT_LE_8BITS(cmp
->cm_ehello
.eh_info
);
727 blksize
= EXTRACT_LE_16BITS(cmp
->cm_ehello
.eh_blksize
);
729 memcpy((char *)&rtea
, (char *)&(cmp
->cm_ehello
.eh_router
),
731 dst
= EXTRACT_LE_16BITS(rtea
.dne_remote
.dne_nodeaddr
);
732 hello
= EXTRACT_LE_16BITS(cmp
->cm_ehello
.eh_hello
);
733 other
= EXTRACT_LE_8BITS(cmp
->cm_ehello
.eh_data
);
734 print_i_info(ndo
, info
);
736 "vers %d eco %d ueco %d src %s blksize %d rtr %s hello %d data %o",
737 vers
, eco
, ueco
, dnaddr_string(ndo
, src
),
738 blksize
, dnaddr_string(ndo
, dst
), hello
, other
));
743 ND_PRINT((ndo
, "unknown control message"));
744 ND_DEFAULTPRINT((u_char
*)rhp
, min(length
, caplen
));
755 print_t_info(netdissect_options
*ndo
,
758 int ntype
= info
& 3;
760 case 0: ND_PRINT((ndo
, "reserved-ntype? ")); break;
761 case TI_L2ROUT
: ND_PRINT((ndo
, "l2rout ")); break;
762 case TI_L1ROUT
: ND_PRINT((ndo
, "l1rout ")); break;
763 case TI_ENDNODE
: ND_PRINT((ndo
, "endnode ")); break;
766 ND_PRINT((ndo
, "verif "));
768 ND_PRINT((ndo
, "blo "));
772 print_l1_routes(netdissect_options
*ndo
,
773 const char *rp
, u_int len
)
779 /* The last short is a checksum */
780 while (len
> (3 * sizeof(short))) {
781 ND_TCHECK2(*rp
, 3 * sizeof(short));
782 count
= EXTRACT_LE_16BITS(rp
);
784 return (1); /* seems to be bogus from here on */
786 len
-= sizeof(short);
787 id
= EXTRACT_LE_16BITS(rp
);
789 len
-= sizeof(short);
790 info
= EXTRACT_LE_16BITS(rp
);
792 len
-= sizeof(short);
793 ND_PRINT((ndo
, "{ids %d-%d cost %d hops %d} ", id
, id
+ count
,
794 RI_COST(info
), RI_HOPS(info
)));
803 print_l2_routes(netdissect_options
*ndo
,
804 const char *rp
, u_int len
)
810 /* The last short is a checksum */
811 while (len
> (3 * sizeof(short))) {
812 ND_TCHECK2(*rp
, 3 * sizeof(short));
813 count
= EXTRACT_LE_16BITS(rp
);
815 return (1); /* seems to be bogus from here on */
817 len
-= sizeof(short);
818 area
= EXTRACT_LE_16BITS(rp
);
820 len
-= sizeof(short);
821 info
= EXTRACT_LE_16BITS(rp
);
823 len
-= sizeof(short);
824 ND_PRINT((ndo
, "{areas %d-%d cost %d hops %d} ", area
, area
+ count
,
825 RI_COST(info
), RI_HOPS(info
)));
834 print_i_info(netdissect_options
*ndo
,
837 int ntype
= info
& II_TYPEMASK
;
839 case 0: ND_PRINT((ndo
, "reserved-ntype? ")); break;
840 case II_L2ROUT
: ND_PRINT((ndo
, "l2rout ")); break;
841 case II_L1ROUT
: ND_PRINT((ndo
, "l1rout ")); break;
842 case II_ENDNODE
: ND_PRINT((ndo
, "endnode ")); break;
845 ND_PRINT((ndo
, "verif "));
846 if (info
& II_NOMCAST
)
847 ND_PRINT((ndo
, "nomcast "));
849 ND_PRINT((ndo
, "blo "));
853 print_elist(const char *elp _U_
, u_int len _U_
)
855 /* Not enough examples available for me to debug this */
860 print_nsp(netdissect_options
*ndo
,
861 const u_char
*nspp
, u_int nsplen
)
863 const struct nsphdr
*nsphp
= (struct nsphdr
*)nspp
;
866 if (nsplen
< sizeof(struct nsphdr
))
869 flags
= EXTRACT_LE_8BITS(nsphp
->nh_flags
);
870 dst
= EXTRACT_LE_16BITS(nsphp
->nh_dst
);
871 src
= EXTRACT_LE_16BITS(nsphp
->nh_src
);
873 switch (flags
& NSP_TYPEMASK
) {
875 switch (flags
& NSP_SUBMASK
) {
879 case MFS_BOM
+MFS_EOM
:
880 ND_PRINT((ndo
, "data %d>%d ", src
, dst
));
882 struct seghdr
*shp
= (struct seghdr
*)nspp
;
887 u_int data_off
= sizeof(struct minseghdr
);
889 if (nsplen
< data_off
)
891 ND_TCHECK(shp
->sh_seq
[0]);
892 ack
= EXTRACT_LE_16BITS(shp
->sh_seq
[0]);
893 if (ack
& SGQ_ACK
) { /* acknum field */
894 if ((ack
& SGQ_NAK
) == SGQ_NAK
)
895 ND_PRINT((ndo
, "nak %d ", ack
& SGQ_MASK
));
897 ND_PRINT((ndo
, "ack %d ", ack
& SGQ_MASK
));
898 data_off
+= sizeof(short);
899 if (nsplen
< data_off
)
901 ND_TCHECK(shp
->sh_seq
[1]);
902 ack
= EXTRACT_LE_16BITS(shp
->sh_seq
[1]);
903 if (ack
& SGQ_OACK
) { /* ackoth field */
904 if ((ack
& SGQ_ONAK
) == SGQ_ONAK
)
905 ND_PRINT((ndo
, "onak %d ", ack
& SGQ_MASK
));
907 ND_PRINT((ndo
, "oack %d ", ack
& SGQ_MASK
));
908 data_off
+= sizeof(short);
909 if (nsplen
< data_off
)
911 ND_TCHECK(shp
->sh_seq
[2]);
912 ack
= EXTRACT_LE_16BITS(shp
->sh_seq
[2]);
915 ND_PRINT((ndo
, "seg %d ", ack
& SGQ_MASK
));
917 if (nsplen
> data_off
) {
918 dp
= &(nspp
[data_off
]);
919 ND_TCHECK2(*dp
, nsplen
- data_off
);
920 pdata(ndo
, dp
, nsplen
- data_off
);
925 case MFS_ILS
+MFS_INT
:
926 ND_PRINT((ndo
, "intr "));
928 struct seghdr
*shp
= (struct seghdr
*)nspp
;
933 u_int data_off
= sizeof(struct minseghdr
);
935 if (nsplen
< data_off
)
937 ND_TCHECK(shp
->sh_seq
[0]);
938 ack
= EXTRACT_LE_16BITS(shp
->sh_seq
[0]);
939 if (ack
& SGQ_ACK
) { /* acknum field */
940 if ((ack
& SGQ_NAK
) == SGQ_NAK
)
941 ND_PRINT((ndo
, "nak %d ", ack
& SGQ_MASK
));
943 ND_PRINT((ndo
, "ack %d ", ack
& SGQ_MASK
));
944 data_off
+= sizeof(short);
945 if (nsplen
< data_off
)
947 ND_TCHECK(shp
->sh_seq
[1]);
948 ack
= EXTRACT_LE_16BITS(shp
->sh_seq
[1]);
949 if (ack
& SGQ_OACK
) { /* ackdat field */
950 if ((ack
& SGQ_ONAK
) == SGQ_ONAK
)
951 ND_PRINT((ndo
, "nakdat %d ", ack
& SGQ_MASK
));
953 ND_PRINT((ndo
, "ackdat %d ", ack
& SGQ_MASK
));
954 data_off
+= sizeof(short);
955 if (nsplen
< data_off
)
957 ND_TCHECK(shp
->sh_seq
[2]);
958 ack
= EXTRACT_LE_16BITS(shp
->sh_seq
[2]);
961 ND_PRINT((ndo
, "seg %d ", ack
& SGQ_MASK
));
963 if (nsplen
> data_off
) {
964 dp
= &(nspp
[data_off
]);
965 ND_TCHECK2(*dp
, nsplen
- data_off
);
966 pdata(ndo
, dp
, nsplen
- data_off
);
972 ND_PRINT((ndo
, "link-service %d>%d ", src
, dst
));
974 struct seghdr
*shp
= (struct seghdr
*)nspp
;
976 (struct lsmsg
*)&(nspp
[sizeof(struct seghdr
)]);
980 if (nsplen
< sizeof(struct seghdr
) + sizeof(struct lsmsg
))
982 ND_TCHECK(shp
->sh_seq
[0]);
983 ack
= EXTRACT_LE_16BITS(shp
->sh_seq
[0]);
984 if (ack
& SGQ_ACK
) { /* acknum field */
985 if ((ack
& SGQ_NAK
) == SGQ_NAK
)
986 ND_PRINT((ndo
, "nak %d ", ack
& SGQ_MASK
));
988 ND_PRINT((ndo
, "ack %d ", ack
& SGQ_MASK
));
989 ND_TCHECK(shp
->sh_seq
[1]);
990 ack
= EXTRACT_LE_16BITS(shp
->sh_seq
[1]);
991 if (ack
& SGQ_OACK
) { /* ackdat field */
992 if ((ack
& SGQ_ONAK
) == SGQ_ONAK
)
993 ND_PRINT((ndo
, "nakdat %d ", ack
& SGQ_MASK
));
995 ND_PRINT((ndo
, "ackdat %d ", ack
& SGQ_MASK
));
996 ND_TCHECK(shp
->sh_seq
[2]);
997 ack
= EXTRACT_LE_16BITS(shp
->sh_seq
[2]);
1000 ND_PRINT((ndo
, "seg %d ", ack
& SGQ_MASK
));
1002 lsflags
= EXTRACT_LE_8BITS(lsmp
->ls_lsflags
);
1003 fcval
= EXTRACT_LE_8BITS(lsmp
->ls_fcval
);
1004 switch (lsflags
& LSI_MASK
) {
1006 ND_PRINT((ndo
, "dat seg count %d ", fcval
));
1007 switch (lsflags
& LSM_MASK
) {
1011 ND_PRINT((ndo
, "donotsend-data "));
1014 ND_PRINT((ndo
, "send-data "));
1017 ND_PRINT((ndo
, "reserved-fcmod? %x", lsflags
));
1022 ND_PRINT((ndo
, "intr req count %d ", fcval
));
1025 ND_PRINT((ndo
, "reserved-fcval-int? %x", lsflags
));
1031 ND_PRINT((ndo
, "reserved-subtype? %x %d > %d", flags
, src
, dst
));
1036 switch (flags
& NSP_SUBMASK
) {
1038 ND_PRINT((ndo
, "data-ack %d>%d ", src
, dst
));
1040 struct ackmsg
*amp
= (struct ackmsg
*)nspp
;
1043 if (nsplen
< sizeof(struct ackmsg
))
1046 ack
= EXTRACT_LE_16BITS(amp
->ak_acknum
[0]);
1047 if (ack
& SGQ_ACK
) { /* acknum field */
1048 if ((ack
& SGQ_NAK
) == SGQ_NAK
)
1049 ND_PRINT((ndo
, "nak %d ", ack
& SGQ_MASK
));
1051 ND_PRINT((ndo
, "ack %d ", ack
& SGQ_MASK
));
1052 ack
= EXTRACT_LE_16BITS(amp
->ak_acknum
[1]);
1053 if (ack
& SGQ_OACK
) { /* ackoth field */
1054 if ((ack
& SGQ_ONAK
) == SGQ_ONAK
)
1055 ND_PRINT((ndo
, "onak %d ", ack
& SGQ_MASK
));
1057 ND_PRINT((ndo
, "oack %d ", ack
& SGQ_MASK
));
1063 ND_PRINT((ndo
, "ils-ack %d>%d ", src
, dst
));
1065 struct ackmsg
*amp
= (struct ackmsg
*)nspp
;
1068 if (nsplen
< sizeof(struct ackmsg
))
1071 ack
= EXTRACT_LE_16BITS(amp
->ak_acknum
[0]);
1072 if (ack
& SGQ_ACK
) { /* acknum field */
1073 if ((ack
& SGQ_NAK
) == SGQ_NAK
)
1074 ND_PRINT((ndo
, "nak %d ", ack
& SGQ_MASK
));
1076 ND_PRINT((ndo
, "ack %d ", ack
& SGQ_MASK
));
1077 ND_TCHECK(amp
->ak_acknum
[1]);
1078 ack
= EXTRACT_LE_16BITS(amp
->ak_acknum
[1]);
1079 if (ack
& SGQ_OACK
) { /* ackdat field */
1080 if ((ack
& SGQ_ONAK
) == SGQ_ONAK
)
1081 ND_PRINT((ndo
, "nakdat %d ", ack
& SGQ_MASK
));
1083 ND_PRINT((ndo
, "ackdat %d ", ack
& SGQ_MASK
));
1089 ND_PRINT((ndo
, "conn-ack %d", dst
));
1092 ND_PRINT((ndo
, "reserved-acktype? %x %d > %d", flags
, src
, dst
));
1097 switch (flags
& NSP_SUBMASK
) {
1100 if ((flags
& NSP_SUBMASK
) == MFS_CI
)
1101 ND_PRINT((ndo
, "conn-initiate "));
1103 ND_PRINT((ndo
, "retrans-conn-initiate "));
1104 ND_PRINT((ndo
, "%d>%d ", src
, dst
));
1106 struct cimsg
*cimp
= (struct cimsg
*)nspp
;
1107 int services
, info
, segsize
;
1108 #ifdef PRINT_NSPDATA
1112 if (nsplen
< sizeof(struct cimsg
))
1115 services
= EXTRACT_LE_8BITS(cimp
->ci_services
);
1116 info
= EXTRACT_LE_8BITS(cimp
->ci_info
);
1117 segsize
= EXTRACT_LE_16BITS(cimp
->ci_segsize
);
1119 switch (services
& COS_MASK
) {
1123 ND_PRINT((ndo
, "seg "));
1126 ND_PRINT((ndo
, "msg "));
1129 ND_PRINT((ndo
, "crypt "));
1132 switch (info
& COI_MASK
) {
1134 ND_PRINT((ndo
, "ver 3.2 "));
1137 ND_PRINT((ndo
, "ver 3.1 "));
1140 ND_PRINT((ndo
, "ver 4.0 "));
1143 ND_PRINT((ndo
, "ver 4.1 "));
1146 ND_PRINT((ndo
, "segsize %d ", segsize
));
1147 #ifdef PRINT_NSPDATA
1148 if (nsplen
> sizeof(struct cimsg
)) {
1149 dp
= &(nspp
[sizeof(struct cimsg
)]);
1150 ND_TCHECK2(*dp
, nsplen
- sizeof(struct cimsg
));
1151 pdata(ndo
, dp
, nsplen
- sizeof(struct cimsg
));
1157 ND_PRINT((ndo
, "conn-confirm %d>%d ", src
, dst
));
1159 struct ccmsg
*ccmp
= (struct ccmsg
*)nspp
;
1161 u_int segsize
, optlen
;
1162 #ifdef PRINT_NSPDATA
1166 if (nsplen
< sizeof(struct ccmsg
))
1169 services
= EXTRACT_LE_8BITS(ccmp
->cc_services
);
1170 info
= EXTRACT_LE_8BITS(ccmp
->cc_info
);
1171 segsize
= EXTRACT_LE_16BITS(ccmp
->cc_segsize
);
1172 optlen
= EXTRACT_LE_8BITS(ccmp
->cc_optlen
);
1174 switch (services
& COS_MASK
) {
1178 ND_PRINT((ndo
, "seg "));
1181 ND_PRINT((ndo
, "msg "));
1184 ND_PRINT((ndo
, "crypt "));
1187 switch (info
& COI_MASK
) {
1189 ND_PRINT((ndo
, "ver 3.2 "));
1192 ND_PRINT((ndo
, "ver 3.1 "));
1195 ND_PRINT((ndo
, "ver 4.0 "));
1198 ND_PRINT((ndo
, "ver 4.1 "));
1201 ND_PRINT((ndo
, "segsize %d ", segsize
));
1203 ND_PRINT((ndo
, "optlen %d ", optlen
));
1204 #ifdef PRINT_NSPDATA
1205 if (optlen
> nsplen
- sizeof(struct ccmsg
))
1207 dp
= &(nspp
[sizeof(struct ccmsg
)]);
1208 ND_TCHECK2(*dp
, optlen
);
1209 pdata(ndo
, dp
, optlen
);
1215 ND_PRINT((ndo
, "disconn-initiate %d>%d ", src
, dst
));
1217 struct dimsg
*dimp
= (struct dimsg
*)nspp
;
1220 #ifdef PRINT_NSPDATA
1224 if (nsplen
< sizeof(struct dimsg
))
1227 reason
= EXTRACT_LE_16BITS(dimp
->di_reason
);
1228 optlen
= EXTRACT_LE_8BITS(dimp
->di_optlen
);
1230 print_reason(ndo
, reason
);
1232 ND_PRINT((ndo
, "optlen %d ", optlen
));
1233 #ifdef PRINT_NSPDATA
1234 if (optlen
> nsplen
- sizeof(struct dimsg
))
1236 dp
= &(nspp
[sizeof(struct dimsg
)]);
1237 ND_TCHECK2(*dp
, optlen
);
1238 pdata(ndo
, dp
, optlen
);
1244 ND_PRINT((ndo
, "disconn-confirm %d>%d ", src
, dst
));
1246 struct dcmsg
*dcmp
= (struct dcmsg
*)nspp
;
1250 reason
= EXTRACT_LE_16BITS(dcmp
->dc_reason
);
1252 print_reason(ndo
, reason
);
1256 ND_PRINT((ndo
, "reserved-ctltype? %x %d > %d", flags
, src
, dst
));
1261 ND_PRINT((ndo
, "reserved-type? %x %d > %d", flags
, src
, dst
));
1270 static const struct tok reason2str
[] = {
1271 { UC_OBJREJECT
, "object rejected connect" },
1272 { UC_RESOURCES
, "insufficient resources" },
1273 { UC_NOSUCHNODE
, "unrecognized node name" },
1274 { DI_SHUT
, "node is shutting down" },
1275 { UC_NOSUCHOBJ
, "unrecognized object" },
1276 { UC_INVOBJFORMAT
, "invalid object name format" },
1277 { UC_OBJTOOBUSY
, "object too busy" },
1278 { DI_PROTOCOL
, "protocol error discovered" },
1279 { DI_TPA
, "third party abort" },
1280 { UC_USERABORT
, "user abort" },
1281 { UC_INVNODEFORMAT
, "invalid node name format" },
1282 { UC_LOCALSHUT
, "local node shutting down" },
1283 { DI_LOCALRESRC
, "insufficient local resources" },
1284 { DI_REMUSERRESRC
, "insufficient remote user resources" },
1285 { UC_ACCESSREJECT
, "invalid access control information" },
1286 { DI_BADACCNT
, "bad ACCOUNT information" },
1287 { UC_NORESPONSE
, "no response from object" },
1288 { UC_UNREACHABLE
, "node unreachable" },
1289 { DC_NOLINK
, "no link terminate" },
1290 { DC_COMPLETE
, "disconnect complete" },
1291 { DI_BADIMAGE
, "bad image data in connect" },
1292 { DI_SERVMISMATCH
, "cryptographic service mismatch" },
1297 print_reason(netdissect_options
*ndo
,
1298 register int reason
)
1300 ND_PRINT((ndo
, "%s ", tok2str(reason2str
, "reason-%d", reason
)));
1304 dnnum_string(u_short dnaddr
)
1308 int area
= (u_short
)(dnaddr
& AREAMASK
) >> AREASHIFT
;
1309 int node
= dnaddr
& NODEMASK
;
1311 str
= (char *)malloc(siz
= sizeof("00.0000"));
1313 error("dnnum_string: malloc");
1314 snprintf(str
, siz
, "%d.%d", area
, node
);
1319 dnname_string(u_short dnaddr
)
1321 #ifdef HAVE_DNET_HTOA
1322 struct dn_naddr dna
;
1325 dna
.a_len
= sizeof(short);
1326 memcpy((char *)dna
.a_addr
, (char *)&dnaddr
, sizeof(short));
1327 dnname
= dnet_htoa(&dna
);
1329 return (strdup(dnname
));
1331 return(dnnum_string(dnaddr
));
1333 return(dnnum_string(dnaddr
)); /* punt */
1337 #ifdef PRINT_NSPDATA
1339 pdata(netdissect_options
*ndo
,
1340 u_char
*dp
, u_int maxlen
)
1347 safeputchar(ndo
, c
);