2 * Redistribution and use in source and binary forms, with or without
3 * modification, are permitted provided that: (1) source code
4 * distributions retain the above copyright notice and this paragraph
5 * in its entirety, and (2) distributions including binary code include
6 * the above copyright notice and this paragraph in its entirety in
7 * the documentation or other materials provided with the distribution.
8 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND
9 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
10 * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
11 * FOR A PARTICULAR PURPOSE.
13 * Copyright (c) 2009 Mojatatu Networks, Inc
17 /* \summary: Forwarding and Control Element Separation (ForCES) Protocol printer */
19 /* specification: RFC 5810 */
23 #include "netdissect-stdinc.h"
25 #include "netdissect.h"
30 #define ForCES_HDRL 24
31 #define ForCES_ALNL 4U
36 #define TOM_ASSNSETUP 0x1
37 #define TOM_ASSNTEARD 0x2
38 #define TOM_CONFIG 0x3
40 #define TOM_EVENTNOT 0x5
41 #define TOM_PKTREDIR 0x6
42 #define TOM_HEARTBT 0x0F
43 #define TOM_ASSNSETREP 0x11
44 #define TOM_CONFIGREP 0x13
45 #define TOM_QUERYREP 0x14
48 * tom_h Flags: resv1(8b):maxtlvs(4b):resv2(2b):mintlv(2b)
50 #define ZERO_TTLV 0x01
51 #define ZERO_MORE_TTLV 0x02
52 #define ONE_MORE_TTLV 0x04
58 #define TTLV_T1 (ONE_MORE_TTLV|ONE_TLV)
59 #define TTLV_T2 (ONE_MORE_TTLV|MAX_TLV)
66 int (*print
) (netdissect_options
*ndo
, const u_char
* pptr
, u_int len
,
67 uint16_t op_msk
, int indent
);
84 #define TOM_MAX_IND (_TOM_RSV_MAX - 1)
87 tom_valid(uint8_t tom
)
90 if (tom
>= 0x7 && tom
<= 0xe)
102 ForCES_node(uint32_t node
)
104 if (node
<= 0x3FFFFFFF)
106 if (node
>= 0x40000000 && node
<= 0x7FFFFFFF)
108 if (node
>= 0xC0000000 && node
<= 0xFFFFFFEF)
109 return "AllMulticast";
110 if (node
== 0xFFFFFFFD)
111 return "AllCEsBroadcast";
112 if (node
== 0xFFFFFFFE)
113 return "AllFEsBroadcast";
114 if (node
== 0xFFFFFFFF)
115 return "AllBroadcast";
117 return "ForCESreserved";
121 static const struct tok ForCES_ACKs
[] = {
129 static const struct tok ForCES_EMs
[] = {
131 {0x1, "execute-all-or-none"},
132 {0x2, "execute-until-failure"},
133 {0x3, "continue-execute-on-failure"},
137 static const struct tok ForCES_ATs
[] = {
139 {0x1, "2PCtransaction"},
143 static const struct tok ForCES_TPs
[] = {
144 {0x0, "StartofTransaction"},
145 {0x1, "MiddleofTransaction"},
146 {0x2, "EndofTransaction"},
152 * Structure of forces header, naked of TLVs.
155 nd_uint8_t fm_vrsvd
; /* version and reserved */
156 #define ForCES_V(forcesh) (GET_U_1((forcesh)->fm_vrsvd) >> 4)
157 nd_uint8_t fm_tom
; /* type of message */
158 nd_uint16_t fm_len
; /* total length * 4 bytes */
159 #define ForCES_BLN(forcesh) ((uint32_t)(GET_BE_U_2((forcesh)->fm_len) << 2))
160 nd_uint32_t fm_sid
; /* Source ID */
161 #define ForCES_SID(forcesh) GET_BE_U_4((forcesh)->fm_sid)
162 nd_uint32_t fm_did
; /* Destination ID */
163 #define ForCES_DID(forcesh) GET_BE_U_4((forcesh)->fm_did)
164 nd_uint8_t fm_cor
[8]; /* correlator */
165 nd_uint32_t fm_flags
; /* flags */
166 #define ForCES_ACK(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0xC0000000) >> 30)
167 #define ForCES_PRI(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0x38000000) >> 27)
168 #define ForCES_RS1(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0x07000000) >> 24)
169 #define ForCES_EM(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0x00C00000) >> 22)
170 #define ForCES_AT(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0x00200000) >> 21)
171 #define ForCES_TP(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0x00180000) >> 19)
172 #define ForCES_RS2(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0x0007FFFF) >> 0)
175 #define ForCES_HLN_VALID(fhl,tlen) ((tlen) >= ForCES_HDRL && \
176 (fhl) >= ForCES_HDRL && \
179 #define F_LFB_RSVD 0x0
180 #define F_LFB_FEO 0x1
181 #define F_LFB_FEPO 0x2
182 static const struct tok ForCES_LFBs
[] = {
183 {F_LFB_RSVD
, "Invalid TLV"},
184 {F_LFB_FEO
, "FEObj LFB"},
185 {F_LFB_FEPO
, "FEProtoObj LFB"},
189 /* this is defined in RFC5810 section A.2 */
190 /* https://www.iana.org/assignments/forces/forces.xhtml#oper-tlv-types */
209 #define F_OP_MAX (_F_OP_MAX - 1)
212 B_OP_SET
= 1 << (F_OP_SET
- 1),
213 B_OP_SETPROP
= 1 << (F_OP_SETPROP
- 1),
214 B_OP_SETRESP
= 1 << (F_OP_SETRESP
- 1),
215 B_OP_SETPRESP
= 1 << (F_OP_SETPRESP
- 1),
216 B_OP_DEL
= 1 << (F_OP_DEL
- 1),
217 B_OP_DELRESP
= 1 << (F_OP_DELRESP
- 1),
218 B_OP_GET
= 1 << (F_OP_GET
- 1),
219 B_OP_GETPROP
= 1 << (F_OP_GETPROP
- 1),
220 B_OP_GETRESP
= 1 << (F_OP_GETRESP
- 1),
221 B_OP_GETPRESP
= 1 << (F_OP_GETPRESP
- 1),
222 B_OP_REPORT
= 1 << (F_OP_REPORT
- 1),
223 B_OP_COMMIT
= 1 << (F_OP_COMMIT
- 1),
224 B_OP_RCOMMIT
= 1 << (F_OP_RCOMMIT
- 1),
225 B_OP_RTRCOMP
= 1 << (F_OP_RTRCOMP
- 1)
232 int (*print
) (netdissect_options
*ndo
, const u_char
* pptr
, u_int len
,
233 uint16_t op_msk
, int indent
);
236 static int genoptlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
237 uint16_t op_msk
, int indent
);
238 static int recpdoptlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
239 uint16_t op_msk
, int indent
);
240 static int invoptlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
241 uint16_t op_msk
, int indent
);
256 static const struct optlv_h OPTLV_msg
[F_OP_MAX
+ 1] = {
257 /* F_OP_RSV */ {ZERO_TTLV
, 0, "Invalid OPTLV", invoptlv_print
},
258 /* F_OP_SET */ {TTLV_T2
, B_FULLD
| B_SPARD
, " Set", recpdoptlv_print
},
260 {TTLV_T2
, B_FULLD
| B_SPARD
, " SetProp", recpdoptlv_print
},
261 /* F_OP_SETRESP */ {TTLV_T2
, B_RESTV
, " SetResp", recpdoptlv_print
},
262 /* F_OP_SETPRESP */ {TTLV_T2
, B_RESTV
, " SetPropResp", recpdoptlv_print
},
263 /* F_OP_DEL */ {ZERO_TTLV
, 0, " Del", recpdoptlv_print
},
264 /* F_OP_DELRESP */ {TTLV_T2
, B_RESTV
, " DelResp", recpdoptlv_print
},
265 /* F_OP_GET */ {ZERO_TTLV
, 0, " Get", recpdoptlv_print
},
266 /* F_OP_GETPROP */ {ZERO_TTLV
, 0, " GetProp", recpdoptlv_print
},
268 {TTLV_T2
, B_FULLD
| B_SPARD
| B_RESTV
, " GetResp", recpdoptlv_print
},
270 {TTLV_T2
, B_FULLD
| B_RESTV
, " GetPropResp", recpdoptlv_print
},
272 {TTLV_T2
, B_FULLD
| B_SPARD
, " Report", recpdoptlv_print
},
273 /* F_OP_COMMIT */ {ZERO_TTLV
, 0, " Commit", NULL
},
274 /* F_OP_RCOMMIT */ {TTLV_T1
, B_RESTV
, " RCommit", genoptlv_print
},
275 /* F_OP_RTRCOMP */ {ZERO_TTLV
, 0, " RTRCOMP", NULL
},
278 static const struct optlv_h
*
279 get_forces_optlv_h(uint16_t opt
)
281 if (opt
> F_OP_MAX
|| opt
== F_OP_RSV
)
282 return &OPTLV_msg
[F_OP_RSV
];
284 return &OPTLV_msg
[opt
];
289 #define IND_PREF '\n'
291 static char ind_buf
[IND_SIZE
];
294 indent_pr(int indent
, int nlpref
)
299 if (indent
> (IND_SIZE
- 1))
300 indent
= IND_SIZE
- 1;
308 while (--indent
>= 0)
316 op_valid(uint16_t op
, uint16_t mask
)
321 return (1 << (op
- 1)) & mask
; /* works only for 0x0001 through 0x0010 */
322 /* I guess we should allow vendor operations? */
328 #define F_TLV_RSVD 0x0000
329 #define F_TLV_REDR 0x0001
330 #define F_TLV_ASRS 0x0010
331 #define F_TLV_ASRT 0x0011
332 #define F_TLV_LFBS 0x1000
333 #define F_TLV_PDAT 0x0110
334 #define F_TLV_KEYI 0x0111
335 #define F_TLV_FULD 0x0112
336 #define F_TLV_SPAD 0x0113
337 #define F_TLV_REST 0x0114
338 #define F_TLV_METD 0x0115
339 #define F_TLV_REDD 0x0116
340 #define F_TLV_TRNG 0x0117
343 #define F_TLV_VNST 0x8000
345 static const struct tok ForCES_TLV
[] = {
346 {F_TLV_RSVD
, "Invalid TLV"},
347 {F_TLV_REDR
, "REDIRECT TLV"},
348 {F_TLV_ASRS
, "ASResult TLV"},
349 {F_TLV_ASRT
, "ASTreason TLV"},
350 {F_TLV_LFBS
, "LFBselect TLV"},
351 {F_TLV_PDAT
, "PATH-DATA TLV"},
352 {F_TLV_KEYI
, "KEYINFO TLV"},
353 {F_TLV_FULD
, "FULLDATA TLV"},
354 {F_TLV_SPAD
, "SPARSEDATA TLV"},
355 {F_TLV_REST
, "RESULT TLV"},
356 {F_TLV_METD
, "METADATA TLV"},
357 {F_TLV_REDD
, "REDIRECTDATA TLV"},
363 ttlv_valid(uint16_t ttlv
)
366 if (ttlv
== 1 || ttlv
== 0x1000)
368 if (ttlv
>= 0x10 && ttlv
<= 0x11)
370 if (ttlv
>= 0x110 && ttlv
<= 0x116)
389 #define F_ALN_LEN(len) roundup2(len, ForCES_ALNL)
390 #define GET_TOP_TLV(fhdr) ((const struct forces_tlv *)((fhdr) + sizeof (struct forcesh)))
391 #define TLV_SET_LEN(len) (F_ALN_LEN(TLV_HDRL) + (len))
392 #define TLV_DATA(tlvp) ((const void*)(((const char*)(tlvp)) + TLV_SET_LEN(0)))
393 #define GO_NXT_TLV(tlv,rlen) ((rlen) -= F_ALN_LEN(GET_BE_U_2((tlv)->length)), \
394 (const struct forces_tlv*)(((const char*)(tlv)) \
395 + F_ALN_LEN(GET_BE_U_2((tlv)->length))))
396 #define ILV_SET_LEN(len) (F_ALN_LEN(ILV_HDRL) + (len))
397 #define ILV_DATA(ilvp) ((const void*)(((const char*)(ilvp)) + ILV_SET_LEN(0)))
398 #define GO_NXT_ILV(ilv,rlen) ((rlen) -= F_ALN_LEN(GET_BE_U_4((ilv)->length)), \
399 (const struct forces_ilv *)(((const char*)(ilv)) \
400 + F_ALN_LEN(GET_BE_U_4((ilv)->length))))
401 #define INVALID_RLEN 1
402 #define INVALID_STLN 2
403 #define INVALID_LTLN 3
404 #define INVALID_ALEN 4
406 static const struct tok ForCES_TLV_err
[] = {
407 {INVALID_RLEN
, "Invalid total length"},
408 {INVALID_STLN
, "xLV too short"},
409 {INVALID_LTLN
, "xLV too long"},
410 {INVALID_ALEN
, "data padding missing"},
415 tlv_valid(u_int tlvl
, u_int rlen
)
423 if (rlen
< F_ALN_LEN(tlvl
))
430 ilv_valid(netdissect_options
*ndo
, const struct forces_ilv
*ilv
, u_int rlen
)
434 if (GET_BE_U_4(ilv
->length
) < ILV_HDRL
)
436 if (GET_BE_U_4(ilv
->length
) > rlen
)
438 if (rlen
< F_ALN_LEN(GET_BE_U_4(ilv
->length
)))
444 static int lfbselect_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
445 uint16_t op_msk
, int indent
);
446 static int redirect_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
447 uint16_t op_msk
, int indent
);
448 static int asrtlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
449 uint16_t op_msk
, int indent
);
450 static int asttlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
451 uint16_t op_msk
, int indent
);
453 struct forces_lfbsh
{
455 nd_uint32_t instance
;
458 #define ASSNS_OPS (B_OP_REPORT)
459 #define CFG_OPS (B_OP_SET|B_OP_SETPROP|B_OP_DEL|B_OP_COMMIT|B_OP_RTRCOMP)
460 #define CFG_ROPS (B_OP_SETRESP|B_OP_SETPRESP|B_OP_DELRESP|B_OP_RCOMMIT)
461 #define CFG_QY (B_OP_GET|B_OP_GETPROP)
462 #define CFG_QYR (B_OP_GETRESP|B_OP_GETPRESP)
463 #define CFG_EVN (B_OP_REPORT)
465 static const struct tom_h ForCES_msg
[TOM_MAX_IND
+ 1] = {
466 /* TOM_RSV_I */ {TOM_RSVD
, ZERO_TTLV
, 0, "Invalid message", NULL
},
467 /* TOM_ASS_I */ {TOM_ASSNSETUP
, ZERO_MORE_TTLV
| TWO_TLV
, ASSNS_OPS
,
468 "Association Setup", lfbselect_print
},
470 {TOM_ASSNTEARD
, TTLV_T1
, 0, "Association TearDown", asttlv_print
},
471 /* TOM_CFG_I */ {TOM_CONFIG
, TTLV_T2
, CFG_OPS
, "Config", lfbselect_print
},
472 /* TOM_QRY_I */ {TOM_QUERY
, TTLV_T2
, CFG_QY
, "Query", lfbselect_print
},
473 /* TOM_EVN_I */ {TOM_EVENTNOT
, TTLV_T1
, CFG_EVN
, "Event Notification",
476 {TOM_PKTREDIR
, TTLV_T2
, 0, "Packet Redirect", redirect_print
},
477 /* TOM_HBT_I */ {TOM_HEARTBT
, ZERO_TTLV
, 0, "HeartBeat", NULL
},
479 {TOM_ASSNSETREP
, TTLV_T1
, 0, "Association Response", asrtlv_print
},
480 /* TOM_CNR_I */ {TOM_CONFIGREP
, TTLV_T2
, CFG_ROPS
, "Config Response",
483 {TOM_QUERYREP
, TTLV_T2
, CFG_QYR
, "Query Response", lfbselect_print
},
486 static const struct tom_h
*
487 get_forces_tom(uint8_t tom
)
490 for (i
= TOM_RSV_I
; i
<= TOM_MAX_IND
; i
++) {
491 const struct tom_h
*th
= &ForCES_msg
[i
];
495 return &ForCES_msg
[TOM_RSV_I
];
503 int (*print
) (netdissect_options
*, const u_char
* pptr
, u_int len
,
504 uint16_t op_msk
, int indent
);
516 #define PD_MAX_IND (_TOM_RSV_MAX - 1)
519 pd_valid(uint16_t pd
)
521 if (pd
>= F_TLV_PDAT
&& pd
<= F_TLV_REST
)
527 chk_op_type(netdissect_options
*ndo
,
528 uint16_t type
, uint16_t msk
, uint16_t omsk
)
530 if (type
!= F_TLV_PDAT
) {
532 if (type
!= F_TLV_KEYI
) {
533 ND_PRINT("Based on flags expected KEYINFO TLV!\n");
537 ND_PRINT("Illegal DATA encoding for type 0x%x programmed %x got %x\n",
546 #define F_SELTABRANGE 2
547 #define F_TABAPPEND 4
555 static int prestlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
556 uint16_t op_msk
, int indent
);
557 static int pkeyitlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
558 uint16_t op_msk
, int indent
);
559 static int fdatatlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
560 uint16_t op_msk
, int indent
);
561 static int sdatatlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
562 uint16_t op_msk
, int indent
);
564 static const struct pdata_ops ForCES_pdata
[PD_MAX_IND
+ 1] = {
565 /* PD_RSV_I */ {0, 0, 0, "Invalid message", NULL
},
566 /* PD_SEL_I */ {F_TLV_KEYI
, 0, 0, "KEYINFO TLV", pkeyitlv_print
},
567 /* PD_FDT_I */ {F_TLV_FULD
, 0, B_FULLD
, "FULLDATA TLV", fdatatlv_print
},
568 /* PD_SDT_I */ {F_TLV_SPAD
, 0, B_SPARD
, "SPARSEDATA TLV", sdatatlv_print
},
569 /* PD_RES_I */ {F_TLV_REST
, 0, B_RESTV
, "RESULT TLV", prestlv_print
},
571 {F_TLV_PDAT
, 0, 0, "Inner PATH-DATA TLV", recpdoptlv_print
},
574 static const struct pdata_ops
*
575 get_forces_pd(uint16_t pd
)
578 for (i
= PD_RSV_I
+ 1; i
<= PD_MAX_IND
; i
++) {
579 const struct pdata_ops
*pdo
= &ForCES_pdata
[i
];
583 return &ForCES_pdata
[TOM_RSV_I
];
591 E_INVALID_DESTINATION_PID
,
594 E_LFB_INSTANCE_ID_NOT_FOUND
,
596 E_COMPONENT_DOES_NOT_EXIST
,
600 E_INVALID_ARRAY_CREATION
,
601 E_VALUE_OUT_OF_RANGE
,
603 E_INVALID_PARAMETERS
,
604 E_INVALID_MESSAGE_TYPE
,
611 /* 0x18-0xFE are reserved .. */
612 E_UNSPECIFIED_ERROR
= 0XFF
615 static const struct tok ForCES_errs
[] = {
616 {E_SUCCESS
, "SUCCESS"},
617 {E_INVALID_HEADER
, "INVALID HEADER"},
618 {E_LENGTH_MISMATCH
, "LENGTH MISMATCH"},
619 {E_VERSION_MISMATCH
, "VERSION MISMATCH"},
620 {E_INVALID_DESTINATION_PID
, "INVALID DESTINATION PID"},
621 {E_LFB_UNKNOWN
, "LFB UNKNOWN"},
622 {E_LFB_NOT_FOUND
, "LFB NOT FOUND"},
623 {E_LFB_INSTANCE_ID_NOT_FOUND
, "LFB INSTANCE ID NOT FOUND"},
624 {E_INVALID_PATH
, "INVALID PATH"},
625 {E_COMPONENT_DOES_NOT_EXIST
, "COMPONENT DOES NOT EXIST"},
626 {E_EXISTS
, "EXISTS ALREADY"},
627 {E_NOT_FOUND
, "NOT FOUND"},
628 {E_READ_ONLY
, "READ ONLY"},
629 {E_INVALID_ARRAY_CREATION
, "INVALID ARRAY CREATION"},
630 {E_VALUE_OUT_OF_RANGE
, "VALUE OUT OF RANGE"},
631 {E_CONTENTS_TOO_LONG
, "CONTENTS TOO LONG"},
632 {E_INVALID_PARAMETERS
, "INVALID PARAMETERS"},
633 {E_INVALID_MESSAGE_TYPE
, "INVALID MESSAGE TYPE"},
634 {E_INVALID_FLAGS
, "INVALID FLAGS"},
635 {E_INVALID_TLV
, "INVALID TLV"},
636 {E_EVENT_ERROR
, "EVENT ERROR"},
637 {E_NOT_SUPPORTED
, "NOT SUPPORTED"},
638 {E_MEMORY_ERROR
, "MEMORY ERROR"},
639 {E_INTERNAL_ERROR
, "INTERNAL ERROR"},
640 {E_UNSPECIFIED_ERROR
, "UNSPECIFIED ERROR"},
647 prestlv_print(netdissect_options
*ndo
,
648 const u_char
* pptr
, u_int len
,
649 uint16_t op_msk _U_
, int indent
)
651 const struct forces_tlv
*tlv
= (const struct forces_tlv
*)pptr
;
652 const u_char
*tdp
= (const u_char
*) TLV_DATA(tlv
);
653 const struct res_val
*r
= (const struct res_val
*)tdp
;
658 * pdatacnt_print() has ensured that len (the TLV length)
661 dlen
= len
- TLV_HDRL
;
662 if (dlen
!= RESLEN
) {
663 ND_PRINT("illegal RESULT-TLV: %u bytes!\n", dlen
);
668 result
= GET_U_1(r
->result
);
669 if (result
>= 0x18 && result
<= 0xFE) {
670 ND_PRINT("illegal reserved result code: 0x%x!\n", result
);
674 if (ndo
->ndo_vflag
>= 3) {
675 char *ib
= indent_pr(indent
, 0);
676 ND_PRINT("%s Result: %s (code 0x%x)\n", ib
,
677 tok2str(ForCES_errs
, NULL
, result
), result
);
687 fdatatlv_print(netdissect_options
*ndo
,
688 const u_char
* pptr
, u_int len
,
689 uint16_t op_msk _U_
, int indent
)
691 const struct forces_tlv
*tlv
= (const struct forces_tlv
*)pptr
;
693 const u_char
*tdp
= (const u_char
*) TLV_DATA(tlv
);
697 * pdatacnt_print() or pkeyitlv_print() has ensured that len
698 * (the TLV length) >= TLV_HDRL.
700 rlen
= len
- TLV_HDRL
;
702 type
= GET_BE_U_2(tlv
->type
);
703 if (type
!= F_TLV_FULD
) {
704 ND_PRINT("Error: expecting FULLDATA!\n");
708 if (ndo
->ndo_vflag
>= 3) {
709 char *ib
= indent_pr(indent
+ 2, 1);
710 ND_PRINT("%s[", ib
+ 1);
711 hex_print(ndo
, ib
, tdp
, rlen
);
712 ND_PRINT("\n%s]", ib
+ 1);
722 sdatailv_print(netdissect_options
*ndo
,
723 const u_char
* pptr
, u_int len
,
724 uint16_t op_msk _U_
, int indent
)
727 const struct forces_ilv
*ilv
= (const struct forces_ilv
*)pptr
;
730 if (len
< ILV_HDRL
) {
731 ND_PRINT("Error: BAD SPARSEDATA-TLV!\n");
738 ND_PRINT("Jamal - outstanding length <%u>\n", rlen
);
740 char *ib
= indent_pr(indent
, 1);
741 const u_char
*tdp
= (const u_char
*) ILV_DATA(ilv
);
742 invilv
= ilv_valid(ndo
, ilv
, rlen
);
744 ND_PRINT("Error: %s, rlen %u\n",
745 tok2str(ForCES_TLV_err
, NULL
, invilv
), rlen
);
748 if (ndo
->ndo_vflag
>= 3) {
749 u_int ilvl
= GET_BE_U_4(ilv
->length
);
750 ND_PRINT("\n%s ILV: type %x length %u\n", ib
+ 1,
751 GET_BE_U_4(ilv
->type
), ilvl
);
752 hex_print(ndo
, "\t\t[", tdp
, ilvl
-ILV_HDRL
);
755 ilv
= GO_NXT_ILV(ilv
, rlen
);
762 sdatatlv_print(netdissect_options
*ndo
,
763 const u_char
* pptr
, u_int len
,
764 uint16_t op_msk
, int indent
)
766 const struct forces_tlv
*tlv
= (const struct forces_tlv
*)pptr
;
768 const u_char
*tdp
= (const u_char
*) TLV_DATA(tlv
);
772 * pdatacnt_print() has ensured that len (the TLV length)
775 rlen
= len
- TLV_HDRL
;
777 type
= GET_BE_U_2(tlv
->type
);
778 if (type
!= F_TLV_SPAD
) {
779 ND_PRINT("Error: expecting SPARSEDATA!\n");
783 return sdatailv_print(ndo
, tdp
, rlen
, op_msk
, indent
);
791 pkeyitlv_print(netdissect_options
*ndo
,
792 const u_char
* pptr
, u_int len
,
793 uint16_t op_msk
, int indent
)
795 const struct forces_tlv
*tlv
= (const struct forces_tlv
*)pptr
;
796 const u_char
*tdp
= (const u_char
*) TLV_DATA(tlv
);
797 const u_char
*dp
= tdp
+ 4;
798 const struct forces_tlv
*kdtlv
= (const struct forces_tlv
*)dp
;
800 char *ib
= indent_pr(indent
, 0);
804 id
= GET_BE_U_4(tdp
);
805 ND_PRINT("%sKeyinfo: Key 0x%x\n", ib
, id
);
806 type
= GET_BE_U_2(kdtlv
->type
);
807 tll
= GET_BE_U_2(kdtlv
->length
);
808 invtlv
= tlv_valid(tll
, len
);
811 ND_PRINT("%s TLV type 0x%x len %u\n",
812 tok2str(ForCES_TLV_err
, NULL
, invtlv
), type
,
817 * At this point, tlv_valid() has ensured that the TLV
818 * length is large enough but not too large (it doesn't
819 * go past the end of the containing TLV).
821 tll
= GET_BE_U_2(kdtlv
->length
);
822 dp
= (const u_char
*) TLV_DATA(kdtlv
);
823 return fdatatlv_print(ndo
, dp
, tll
, op_msk
, indent
);
826 #define PTH_DESC_SIZE 12
829 pdatacnt_print(netdissect_options
*ndo
,
830 const u_char
* pptr
, u_int len
,
831 uint16_t IDcnt
, uint16_t op_msk
, int indent
)
835 char *ib
= indent_pr(indent
, 0);
837 if ((op_msk
& B_APPND
) && ndo
->ndo_vflag
>= 3) {
838 ND_PRINT("%sTABLE APPEND\n", ib
);
840 for (i
= 0; i
< IDcnt
; i
++) {
844 id
= GET_BE_U_4(pptr
);
845 if (ndo
->ndo_vflag
>= 3)
846 ND_PRINT("%sID#%02u: %u\n", ib
, i
+ 1, id
);
851 if ((op_msk
& B_TRNG
) || (op_msk
& B_KEYIN
)) {
852 if (op_msk
& B_TRNG
) {
853 uint32_t starti
, endi
;
855 if (len
< PTH_DESC_SIZE
) {
856 ND_PRINT("pathlength %u with key/range too short %u\n",
861 pptr
+= sizeof(struct forces_tlv
);
862 len
-= sizeof(struct forces_tlv
);
864 starti
= GET_BE_U_4(pptr
);
868 endi
= GET_BE_U_4(pptr
);
872 if (ndo
->ndo_vflag
>= 3)
873 ND_PRINT("%sTable range: [%u,%u]\n", ib
, starti
, endi
);
876 if (op_msk
& B_KEYIN
) {
877 const struct forces_tlv
*keytlv
;
880 if (len
< PTH_DESC_SIZE
) {
881 ND_PRINT("pathlength %u with key/range too short %u\n",
889 keytlv
= (const struct forces_tlv
*)pptr
;
891 pptr
+= sizeof(struct forces_tlv
);
892 len
-= sizeof(struct forces_tlv
);
893 /* skip key content */
894 tll
= GET_BE_U_2(keytlv
->length
);
895 if (tll
< TLV_HDRL
) {
896 ND_PRINT("key content length %u < %u\n",
902 ND_PRINT("key content too short\n");
912 const struct forces_tlv
*pdtlv
= (const struct forces_tlv
*)pptr
;
919 type
= GET_BE_U_2(pdtlv
->type
);
920 tlvl
= GET_BE_U_2(pdtlv
->length
);
921 invtlv
= tlv_valid(tlvl
, len
);
923 ND_PRINT("%s Outstanding bytes %u for TLV type 0x%x TLV len %u\n",
924 tok2str(ForCES_TLV_err
, NULL
, invtlv
), len
, type
,
929 * At this point, tlv_valid() has ensured that the TLV
930 * length is large enough but not too large (it doesn't
931 * go past the end of the containing TLV).
933 tll
= tlvl
- TLV_HDRL
;
934 aln
= F_ALN_LEN(tlvl
);
937 ND_PRINT("Invalid padded pathdata TLV type 0x%x len %u missing %u pad bytes\n",
938 type
, tlvl
, aln
- len
);
943 if (pd_valid(type
)) {
944 const struct pdata_ops
*ops
= get_forces_pd(type
);
946 if (ndo
->ndo_vflag
>= 3 && ops
->v
!= F_TLV_PDAT
) {
948 ND_PRINT("%s %s (Length %u DataLen %u pad %u Bytes)\n",
949 ib
, ops
->s
, tlvl
, tll
, pad
);
951 ND_PRINT("%s %s (Length %u DataLen %u Bytes)\n",
952 ib
, ops
->s
, tlvl
, tll
);
955 chk_op_type(ndo
, type
, op_msk
, ops
->op_msk
);
957 if (ops
->print(ndo
, (const u_char
*)pdtlv
,
958 tll
+ pad
+ TLV_HDRL
, op_msk
,
961 len
-= (TLV_HDRL
+ pad
+ tll
);
963 ND_PRINT("Invalid path data content type 0x%x len %u\n",
967 hex_print(ndo
, "Bad Data val\n\t [",
983 pdata_print(netdissect_options
*ndo
,
984 const u_char
* pptr
, u_int len
,
985 uint16_t op_msk
, int indent
)
987 const struct pathdata_h
*pdh
= (const struct pathdata_h
*)pptr
;
988 char *ib
= indent_pr(indent
, 0);
994 if (len
< sizeof(struct pathdata_h
))
996 if (ndo
->ndo_vflag
>= 3) {
997 ND_PRINT("\n%sPathdata: Flags 0x%x ID count %u\n",
998 ib
, GET_BE_U_2(pdh
->pflags
),
999 GET_BE_U_2(pdh
->pIDcnt
));
1002 if (GET_BE_U_2(pdh
->pflags
) & F_SELKEY
) {
1006 /* Table GET Range operation */
1007 if (GET_BE_U_2(pdh
->pflags
) & F_SELTABRANGE
) {
1010 /* Table SET append operation */
1011 if (GET_BE_U_2(pdh
->pflags
) & F_TABAPPEND
) {
1015 pptr
+= sizeof(struct pathdata_h
);
1016 len
-= sizeof(struct pathdata_h
);
1017 idcnt
= GET_BE_U_2(pdh
->pIDcnt
);
1018 minsize
= idcnt
* 4;
1019 if (len
< minsize
) {
1020 ND_PRINT("\t\t\ttruncated IDs expected %uB got %uB\n", minsize
,
1022 hex_print(ndo
, "\t\t\tID Data[", pptr
, len
);
1027 if ((op_msk
& B_TRNG
) && (op_msk
& B_KEYIN
)) {
1028 ND_PRINT("\t\t\tIllegal to have both Table ranges and keys\n");
1032 more_pd
= pdatacnt_print(ndo
, pptr
, len
, idcnt
, op_msk
, indent
);
1034 int consumed
= len
- more_pd
;
1037 /* XXX: Argh, recurse some more */
1038 return recpdoptlv_print(ndo
, pptr
, len
, op_msk
, indent
+1);
1043 nd_print_trunc(ndo
);
1048 genoptlv_print(netdissect_options
*ndo
,
1049 const u_char
* pptr
, u_int len
,
1050 uint16_t op_msk
, int indent
)
1052 const struct forces_tlv
*pdtlv
= (const struct forces_tlv
*)pptr
;
1056 char *ib
= indent_pr(indent
, 0);
1058 type
= GET_BE_U_2(pdtlv
->type
);
1059 tlvl
= GET_BE_U_2(pdtlv
->length
);
1060 invtlv
= tlv_valid(tlvl
, len
);
1061 ND_PRINT("genoptlvprint - %s TLV type 0x%x len %u\n",
1062 tok2str(ForCES_TLV
, NULL
, type
), type
, tlvl
);
1065 * At this point, tlv_valid() has ensured that the TLV
1066 * length is large enough but not too large (it doesn't
1067 * go past the end of the containing TLV).
1069 const u_char
*dp
= (const u_char
*) TLV_DATA(pdtlv
);
1071 if (!ttlv_valid(type
)) {
1072 ND_PRINT("%s TLV type 0x%x len %u\n",
1073 tok2str(ForCES_TLV_err
, NULL
, invtlv
), type
,
1077 if (ndo
->ndo_vflag
>= 3)
1078 ND_PRINT("%s%s, length %u (data length %u Bytes)",
1079 ib
, tok2str(ForCES_TLV
, NULL
, type
),
1080 tlvl
, tlvl
- TLV_HDRL
);
1082 return pdata_print(ndo
, dp
, tlvl
- TLV_HDRL
, op_msk
, indent
+ 1);
1084 ND_PRINT("\t\t\tInvalid ForCES TLV type=%x", type
);
1090 recpdoptlv_print(netdissect_options
*ndo
,
1091 const u_char
* pptr
, u_int len
,
1092 uint16_t op_msk
, int indent
)
1094 const struct forces_tlv
*pdtlv
= (const struct forces_tlv
*)pptr
;
1097 uint16_t type
, tlvl
;
1102 tlvl
= GET_BE_U_2(pdtlv
->length
);
1103 invtlv
= tlv_valid(tlvl
, len
);
1109 * At this point, tlv_valid() has ensured that the TLV
1110 * length is large enough but not too large (it doesn't
1111 * go past the end of the containing TLV).
1113 ib
= indent_pr(indent
, 0);
1114 type
= GET_BE_U_2(pdtlv
->type
);
1115 dp
= (const u_char
*) TLV_DATA(pdtlv
);
1117 if (ndo
->ndo_vflag
>= 3)
1118 ND_PRINT("%s%s, length %u (data encapsulated %u Bytes)",
1119 ib
, tok2str(ForCES_TLV
, NULL
, type
),
1123 if (pdata_print(ndo
, dp
, tlvl
- TLV_HDRL
, op_msk
, indent
+ 1) == -1)
1125 pdtlv
= GO_NXT_TLV(pdtlv
, len
);
1129 ND_PRINT("\n\t\tMessy PATHDATA TLV header, type (0x%x)\n\t\texcess of %u Bytes ",
1130 GET_BE_U_2(pdtlv
->type
),
1131 len
- GET_BE_U_2(pdtlv
->length
));
1139 invoptlv_print(netdissect_options
*ndo
,
1140 const u_char
* pptr
, u_int len
,
1141 uint16_t op_msk _U_
, int indent
)
1143 char *ib
= indent_pr(indent
, 1);
1145 if (ndo
->ndo_vflag
>= 3) {
1146 ND_PRINT("%sData[", ib
+ 1);
1147 hex_print(ndo
, ib
, pptr
, len
);
1148 ND_PRINT("%s]\n", ib
);
1154 otlv_print(netdissect_options
*ndo
,
1155 const struct forces_tlv
*otlv
, uint16_t op_msk _U_
, int indent
)
1158 const u_char
*dp
= (const u_char
*) TLV_DATA(otlv
);
1161 char *ib
= indent_pr(indent
, 0);
1162 const struct optlv_h
*ops
;
1165 * lfbselect_print() has ensured that GET_BE_U_2(otlv->length)
1168 type
= GET_BE_U_2(otlv
->type
);
1169 tll
= GET_BE_U_2(otlv
->length
) - TLV_HDRL
;
1170 ops
= get_forces_optlv_h(type
);
1171 if (ndo
->ndo_vflag
>= 3) {
1172 ND_PRINT("%sOper TLV %s(0x%x) length %u\n", ib
, ops
->s
, type
,
1173 GET_BE_U_2(otlv
->length
));
1175 /* rest of ops must at least have 12B {pathinfo} */
1176 if (tll
< OP_MIN_SIZ
) {
1177 ND_PRINT("\t\tOper TLV %s(0x%x) length %u\n", ops
->s
, type
,
1178 GET_BE_U_2(otlv
->length
));
1179 ND_PRINT("\t\tTruncated data size %u minimum required %u\n", tll
,
1181 return invoptlv_print(ndo
, dp
, tll
, ops
->op_msk
, indent
);
1185 /* XXX - do anything with ops->flags? */
1187 rc
= ops
->print(ndo
, dp
, tll
, ops
->op_msk
, indent
+ 1);
1195 asttlv_print(netdissect_options
*ndo
,
1196 const u_char
* pptr
, u_int len
,
1197 uint16_t op_msk _U_
, int indent
)
1201 char *ib
= indent_pr(indent
, 0);
1204 * forces_type_print() has ensured that len (the TLV length)
1207 dlen
= len
- TLV_HDRL
;
1208 if (dlen
!= ASTDLN
) {
1209 ND_PRINT("illegal ASTresult-TLV: %u bytes!\n", dlen
);
1212 rescode
= GET_BE_U_4(pptr
);
1213 if (rescode
> ASTMCD
) {
1214 ND_PRINT("illegal ASTresult result code: %u!\n", rescode
);
1218 if (ndo
->ndo_vflag
>= 3) {
1219 ND_PRINT("Teardown reason:\n%s", ib
);
1222 ND_PRINT("Normal Teardown");
1225 ND_PRINT("Loss of Heartbeats");
1228 ND_PRINT("Out of bandwidth");
1231 ND_PRINT("Out of Memory");
1234 ND_PRINT("Application Crash");
1237 ND_PRINT("Unknown Teardown reason");
1240 ND_PRINT("(%x)\n%s", rescode
, ib
);
1248 asrtlv_print(netdissect_options
*ndo
,
1249 const u_char
* pptr
, u_int len
,
1250 uint16_t op_msk _U_
, int indent
)
1254 char *ib
= indent_pr(indent
, 0);
1257 * forces_type_print() has ensured that len (the TLV length)
1260 dlen
= len
- TLV_HDRL
;
1261 if (dlen
!= ASRDLN
) { /* id, instance, oper tlv */
1262 ND_PRINT("illegal ASRresult-TLV: %u bytes!\n", dlen
);
1265 rescode
= GET_BE_U_4(pptr
);
1267 if (rescode
> ASRMCD
) {
1268 ND_PRINT("illegal ASRresult result code: %u!\n", rescode
);
1272 if (ndo
->ndo_vflag
>= 3) {
1273 ND_PRINT("\n%s", ib
);
1276 ND_PRINT("Success ");
1279 ND_PRINT("FE ID invalid ");
1282 ND_PRINT("permission denied ");
1285 ND_PRINT("Unknown ");
1288 ND_PRINT("(%x)\n%s", rescode
, ib
);
1298 gentltlv_print(netdissect_options
*ndo
,
1299 const u_char
* pptr _U_
, u_int len
,
1300 uint16_t op_msk _U_
, int indent _U_
)
1302 u_int dlen
= len
- TLV_HDRL
;
1304 if (dlen
< 4) { /* at least 32 bits must exist */
1305 ND_PRINT("truncated TLV: %u bytes missing! ", 4 - dlen
);
1315 print_metailv(netdissect_options
*ndo
,
1316 const u_char
* pptr
, uint16_t op_msk _U_
, int indent
)
1319 char *ib
= indent_pr(indent
, 0);
1320 /* XXX: check header length */
1321 const struct forces_ilv
*ilv
= (const struct forces_ilv
*)pptr
;
1324 * print_metatlv() has ensured that len (what remains in the
1327 rlen
= GET_BE_U_4(ilv
->length
) - ILV_HDRL
;
1328 ND_PRINT("%sMetaID 0x%x length %u\n", ib
, GET_BE_U_4(ilv
->type
),
1329 GET_BE_U_4(ilv
->length
));
1330 if (ndo
->ndo_vflag
>= 3) {
1331 hex_print(ndo
, "\t\t[", ILV_DATA(ilv
), rlen
);
1338 print_metatlv(netdissect_options
*ndo
,
1339 const u_char
* pptr
, u_int len
,
1340 uint16_t op_msk _U_
, int indent
)
1343 char *ib
= indent_pr(indent
, 0);
1345 const struct forces_ilv
*ilv
= (const struct forces_ilv
*)pptr
;
1349 * redirect_print() has ensured that len (what remains in the
1352 dlen
= len
- TLV_HDRL
;
1354 ND_PRINT("\n%s METADATA length %u\n", ib
, rlen
);
1356 invilv
= ilv_valid(ndo
, ilv
, rlen
);
1362 * At this point, ilv_valid() has ensured that the ILV
1363 * length is large enough but not too large (it doesn't
1364 * go past the end of the containing TLV).
1366 print_metailv(ndo
, (const u_char
*) ilv
, 0, indent
+ 1);
1367 ilv
= GO_NXT_ILV(ilv
, rlen
);
1375 print_reddata(netdissect_options
*ndo
,
1376 const u_char
* pptr
, u_int len
,
1377 uint16_t op_msk _U_
, int indent
)
1380 char *ib
= indent_pr(indent
, 0);
1383 dlen
= len
- TLV_HDRL
;
1385 ND_PRINT("\n%s Redirect Data length %u\n", ib
, rlen
);
1387 if (ndo
->ndo_vflag
>= 3) {
1389 hex_print(ndo
, "\n\t\t", pptr
, rlen
);
1390 ND_PRINT("\n\t\t]");
1397 redirect_print(netdissect_options
*ndo
,
1398 const u_char
* pptr
, u_int len
,
1399 uint16_t op_msk _U_
, int indent
)
1401 const struct forces_tlv
*tlv
= (const struct forces_tlv
*)pptr
;
1407 * forces_type_print() has ensured that len (the TLV length)
1410 dlen
= len
- TLV_HDRL
;
1411 if (dlen
<= RD_MIN
) {
1412 ND_PRINT("\n\t\ttruncated Redirect TLV: %u bytes missing! ",
1420 uint16_t type
, tlvl
;
1422 type
= GET_BE_U_2(tlv
->type
);
1423 tlvl
= GET_BE_U_2(tlv
->length
);
1424 invtlv
= tlv_valid(tlvl
, rlen
);
1426 ND_PRINT("Bad Redirect data\n");
1431 * At this point, tlv_valid() has ensured that the TLV
1432 * length is large enough but not too large (it doesn't
1433 * go past the end of the containing TLV).
1435 if (type
== F_TLV_METD
) {
1436 print_metatlv(ndo
, (const u_char
*) TLV_DATA(tlv
),
1439 } else if (type
== F_TLV_REDD
) {
1440 print_reddata(ndo
, (const u_char
*) TLV_DATA(tlv
),
1444 ND_PRINT("Unknown REDIRECT TLV 0x%x len %u\n",
1449 tlv
= GO_NXT_TLV(tlv
, rlen
);
1453 ND_PRINT("\n\t\tMessy Redirect TLV header, type (0x%x)\n\t\texcess of %u Bytes ",
1454 GET_BE_U_2(tlv
->type
),
1455 rlen
- GET_BE_U_2(tlv
->length
));
1466 lfbselect_print(netdissect_options
*ndo
,
1467 const u_char
* pptr
, u_int len
,
1468 uint16_t op_msk
, int indent
)
1470 const struct forces_lfbsh
*lfbs
;
1471 const struct forces_tlv
*otlv
;
1472 char *ib
= indent_pr(indent
, 0);
1478 * forces_type_print() has ensured that len (the TLV length)
1481 dlen
= len
- TLV_HDRL
;
1482 if (dlen
<= OP_MIN
) { /* id, instance, oper tlv header .. */
1483 ND_PRINT("\n\t\ttruncated lfb selector: %u bytes missing! ",
1489 * At this point, we know that dlen > OP_MIN; OP_OFF < OP_MIN, so
1490 * we also know that it's > OP_OFF.
1492 rlen
= dlen
- OP_OFF
;
1494 lfbs
= (const struct forces_lfbsh
*)pptr
;
1495 ND_TCHECK_SIZE(lfbs
);
1496 if (ndo
->ndo_vflag
>= 3) {
1497 ND_PRINT("\n%s%s(Classid %x) instance %x\n",
1499 tok2str(ForCES_LFBs
, NULL
, GET_BE_U_4(lfbs
->class)),
1500 GET_BE_U_4(lfbs
->class),
1501 GET_BE_U_4(lfbs
->instance
));
1504 otlv
= (const struct forces_tlv
*)(lfbs
+ 1);
1508 uint16_t type
, tlvl
;
1510 type
= GET_BE_U_2(otlv
->type
);
1511 tlvl
= GET_BE_U_2(otlv
->length
);
1512 invtlv
= tlv_valid(tlvl
, rlen
);
1517 * At this point, tlv_valid() has ensured that the TLV
1518 * length is large enough but not too large (it doesn't
1519 * go past the end of the containing TLV).
1521 if (op_valid(type
, op_msk
)) {
1522 otlv_print(ndo
, otlv
, 0, indent
);
1524 if (ndo
->ndo_vflag
< 3)
1526 ND_PRINT("\t\tINValid oper-TLV type 0x%x length %u for this ForCES message\n",
1528 invoptlv_print(ndo
, (const u_char
*)otlv
, rlen
, 0, indent
);
1530 otlv
= GO_NXT_TLV(otlv
, rlen
);
1534 ND_PRINT("\n\t\tMessy oper TLV header, type (0x%x)\n\t\texcess of %u Bytes ",
1535 GET_BE_U_2(otlv
->type
),
1536 rlen
- GET_BE_U_2(otlv
->length
));
1543 nd_print_trunc(ndo
);
1548 forces_type_print(netdissect_options
*ndo
,
1549 const u_char
* pptr
, const struct forcesh
*fhdr _U_
,
1550 u_int mlen
, const struct tom_h
*tops
)
1552 const struct forces_tlv
*tltlv
;
1559 * forces_print() has already checked that mlen >= ForCES_HDRL
1560 * by calling ForCES_HLN_VALID().
1562 rlen
= mlen
- ForCES_HDRL
;
1564 if (rlen
> TLV_HLN
) {
1565 if (tops
->flags
& ZERO_TTLV
) {
1566 ND_PRINT("<0x%x>Illegal Top level TLV!\n", tops
->flags
);
1570 if (tops
->flags
& ZERO_MORE_TTLV
)
1572 if (tops
->flags
& ONE_MORE_TTLV
) {
1573 ND_PRINT("\tTop level TLV Data missing!\n");
1578 if (tops
->flags
& ZERO_TTLV
) {
1582 ttlv
= tops
->flags
>> 4;
1583 tltlv
= GET_TOP_TLV(pptr
);
1585 /*XXX: 15 top level tlvs will probably be fine
1586 You are nuts if you send more ;-> */
1588 uint16_t type
, tlvl
;
1590 type
= GET_BE_U_2(tltlv
->type
);
1591 tlvl
= GET_BE_U_2(tltlv
->length
);
1592 invtlv
= tlv_valid(tlvl
, rlen
);
1597 * At this point, tlv_valid() has ensured that the TLV
1598 * length is large enough but not too large (it doesn't
1599 * go past the end of the packet).
1601 if (!ttlv_valid(type
)) {
1602 ND_PRINT("\n\tInvalid ForCES Top TLV type=0x%x",
1607 if (ndo
->ndo_vflag
>= 3)
1608 ND_PRINT("\t%s, length %u (data length %u Bytes)",
1609 tok2str(ForCES_TLV
, NULL
, type
),
1613 rc
= tops
->print(ndo
, (const u_char
*) TLV_DATA(tltlv
),
1619 tltlv
= GO_NXT_TLV(tltlv
, rlen
);
1625 * XXX - if ttlv != 0, does that mean that the packet was too
1626 * short, and didn't have *enough* TLVs in it?
1629 ND_PRINT("\tMess TopTLV header: min %u, total %u advertised %u ",
1630 TLV_HDRL
, rlen
, GET_BE_U_2(tltlv
->length
));
1638 forces_print(netdissect_options
*ndo
,
1639 const u_char
* pptr
, u_int len
)
1641 const struct forcesh
*fhdr
;
1645 const struct tom_h
*tops
;
1648 ndo
->ndo_protocol
= "forces";
1649 fhdr
= (const struct forcesh
*)pptr
;
1650 ND_TCHECK_SIZE(fhdr
);
1651 tom
= GET_U_1(fhdr
->fm_tom
);
1652 if (!tom_valid(tom
)) {
1653 ND_PRINT("Invalid ForCES message type %u\n", tom
);
1657 mlen
= ForCES_BLN(fhdr
);
1659 tops
= get_forces_tom(tom
);
1660 if (tops
->v
== TOM_RSVD
) {
1661 ND_PRINT("\n\tUnknown ForCES message type=0x%x", tom
);
1665 ND_PRINT("\n\tForCES %s ", tops
->s
);
1666 if (!ForCES_HLN_VALID(mlen
, len
)) {
1667 ND_PRINT("Illegal ForCES pkt len - min %u, total recvd %u, advertised %u ",
1668 ForCES_HDRL
, len
, ForCES_BLN(fhdr
));
1672 flg_raw
= GET_BE_U_4(pptr
+ 20);
1673 if (ndo
->ndo_vflag
>= 1) {
1674 ND_PRINT("\n\tForCES Version %u len %uB flags 0x%08x ",
1675 ForCES_V(fhdr
), mlen
, flg_raw
);
1676 ND_PRINT("\n\tSrcID 0x%x(%s) DstID 0x%x(%s) Correlator 0x%" PRIx64
,
1677 ForCES_SID(fhdr
), ForCES_node(ForCES_SID(fhdr
)),
1678 ForCES_DID(fhdr
), ForCES_node(ForCES_DID(fhdr
)),
1679 GET_BE_U_8(fhdr
->fm_cor
));
1682 if (ndo
->ndo_vflag
>= 2) {
1683 ND_PRINT("\n\tForCES flags:\n\t %s(0x%x), prio=%u, %s(0x%x),\n\t %s(0x%x), %s(0x%x)\n",
1684 tok2str(ForCES_ACKs
, "ACKUnknown", ForCES_ACK(fhdr
)),
1687 tok2str(ForCES_EMs
, "EMUnknown", ForCES_EM(fhdr
)),
1689 tok2str(ForCES_ATs
, "ATUnknown", ForCES_AT(fhdr
)),
1691 tok2str(ForCES_TPs
, "TPUnknown", ForCES_TP(fhdr
)),
1693 ND_PRINT("\t Extra flags: rsv(b5-7) 0x%x rsv(b13-31) 0x%x\n",
1694 ForCES_RS1(fhdr
), ForCES_RS2(fhdr
));
1696 rc
= forces_type_print(ndo
, pptr
, fhdr
, mlen
, tops
);
1699 hex_print(ndo
, "\n\t[", pptr
, len
);
1704 if (ndo
->ndo_vflag
>= 4) {
1705 ND_PRINT("\n\t Raw ForCES message\n\t [");
1706 hex_print(ndo
, "\n\t ", pptr
, len
);
1712 nd_print_trunc(ndo
);