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 */
25 #include "netdissect-stdinc.h"
27 #include "netdissect.h"
32 #define ForCES_HDRL 24
33 #define ForCES_ALNL 4U
38 #define TOM_ASSNSETUP 0x1
39 #define TOM_ASSNTEARD 0x2
40 #define TOM_CONFIG 0x3
42 #define TOM_EVENTNOT 0x5
43 #define TOM_PKTREDIR 0x6
44 #define TOM_HEARTBT 0x0F
45 #define TOM_ASSNSETREP 0x11
46 #define TOM_CONFIGREP 0x13
47 #define TOM_QUERYREP 0x14
50 * tom_h Flags: resv1(8b):maxtlvs(4b):resv2(2b):mintlv(2b)
52 #define ZERO_TTLV 0x01
53 #define ZERO_MORE_TTLV 0x02
54 #define ONE_MORE_TTLV 0x04
60 #define TTLV_T1 (ONE_MORE_TTLV|ONE_TLV)
61 #define TTLV_T2 (ONE_MORE_TTLV|MAX_TLV)
68 int (*print
) (netdissect_options
*ndo
, const u_char
* pptr
, u_int len
,
69 uint16_t op_msk
, int indent
);
86 #define TOM_MAX_IND (_TOM_RSV_MAX - 1)
89 tom_valid(uint8_t tom
)
92 if (tom
>= 0x7 && tom
<= 0xe)
104 ForCES_node(uint32_t node
)
106 if (node
<= 0x3FFFFFFF)
108 if (node
>= 0x40000000 && node
<= 0x7FFFFFFF)
110 if (node
>= 0xC0000000 && node
<= 0xFFFFFFEF)
111 return "AllMulticast";
112 if (node
== 0xFFFFFFFD)
113 return "AllCEsBroadcast";
114 if (node
== 0xFFFFFFFE)
115 return "AllFEsBroadcast";
116 if (node
== 0xFFFFFFFF)
117 return "AllBroadcast";
119 return "ForCESreserved";
123 static const struct tok ForCES_ACKs
[] = {
131 static const struct tok ForCES_EMs
[] = {
133 {0x1, "execute-all-or-none"},
134 {0x2, "execute-until-failure"},
135 {0x3, "continue-execute-on-failure"},
139 static const struct tok ForCES_ATs
[] = {
141 {0x1, "2PCtransaction"},
145 static const struct tok ForCES_TPs
[] = {
146 {0x0, "StartofTransaction"},
147 {0x1, "MiddleofTransaction"},
148 {0x2, "EndofTransaction"},
154 * Structure of forces header, naked of TLVs.
157 nd_uint8_t fm_vrsvd
; /* version and reserved */
158 #define ForCES_V(forcesh) (GET_U_1((forcesh)->fm_vrsvd) >> 4)
159 nd_uint8_t fm_tom
; /* type of message */
160 nd_uint16_t fm_len
; /* total length * 4 bytes */
161 #define ForCES_BLN(forcesh) ((uint32_t)(GET_BE_U_2((forcesh)->fm_len) << 2))
162 nd_uint32_t fm_sid
; /* Source ID */
163 #define ForCES_SID(forcesh) GET_BE_U_4((forcesh)->fm_sid)
164 nd_uint32_t fm_did
; /* Destination ID */
165 #define ForCES_DID(forcesh) GET_BE_U_4((forcesh)->fm_did)
166 nd_uint8_t fm_cor
[8]; /* correlator */
167 nd_uint32_t fm_flags
; /* flags */
168 #define ForCES_ACK(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0xC0000000) >> 30)
169 #define ForCES_PRI(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0x38000000) >> 27)
170 #define ForCES_RS1(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0x07000000) >> 24)
171 #define ForCES_EM(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0x00C00000) >> 22)
172 #define ForCES_AT(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0x00200000) >> 21)
173 #define ForCES_TP(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0x00180000) >> 19)
174 #define ForCES_RS2(forcesh) ((GET_BE_U_4((forcesh)->fm_flags)&0x0007FFFF) >> 0)
177 #define ForCES_HLN_VALID(fhl,tlen) ((tlen) >= ForCES_HDRL && \
178 (fhl) >= ForCES_HDRL && \
181 #define F_LFB_RSVD 0x0
182 #define F_LFB_FEO 0x1
183 #define F_LFB_FEPO 0x2
184 static const struct tok ForCES_LFBs
[] = {
185 {F_LFB_RSVD
, "Invalid TLV"},
186 {F_LFB_FEO
, "FEObj LFB"},
187 {F_LFB_FEPO
, "FEProtoObj LFB"},
191 /* this is defined in RFC5810 section A.2 */
192 /* https://www.iana.org/assignments/forces/forces.xhtml#oper-tlv-types */
211 #define F_OP_MAX (_F_OP_MAX - 1)
214 B_OP_SET
= 1 << (F_OP_SET
- 1),
215 B_OP_SETPROP
= 1 << (F_OP_SETPROP
- 1),
216 B_OP_SETRESP
= 1 << (F_OP_SETRESP
- 1),
217 B_OP_SETPRESP
= 1 << (F_OP_SETPRESP
- 1),
218 B_OP_DEL
= 1 << (F_OP_DEL
- 1),
219 B_OP_DELRESP
= 1 << (F_OP_DELRESP
- 1),
220 B_OP_GET
= 1 << (F_OP_GET
- 1),
221 B_OP_GETPROP
= 1 << (F_OP_GETPROP
- 1),
222 B_OP_GETRESP
= 1 << (F_OP_GETRESP
- 1),
223 B_OP_GETPRESP
= 1 << (F_OP_GETPRESP
- 1),
224 B_OP_REPORT
= 1 << (F_OP_REPORT
- 1),
225 B_OP_COMMIT
= 1 << (F_OP_COMMIT
- 1),
226 B_OP_RCOMMIT
= 1 << (F_OP_RCOMMIT
- 1),
227 B_OP_RTRCOMP
= 1 << (F_OP_RTRCOMP
- 1)
234 int (*print
) (netdissect_options
*ndo
, const u_char
* pptr
, u_int len
,
235 uint16_t op_msk
, int indent
);
238 static int genoptlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
239 uint16_t op_msk
, int indent
);
240 static int recpdoptlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
241 uint16_t op_msk
, int indent
);
242 static int invoptlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
243 uint16_t op_msk
, int indent
);
258 static const struct optlv_h OPTLV_msg
[F_OP_MAX
+ 1] = {
259 /* F_OP_RSV */ {ZERO_TTLV
, 0, "Invalid OPTLV", invoptlv_print
},
260 /* F_OP_SET */ {TTLV_T2
, B_FULLD
| B_SPARD
, " Set", recpdoptlv_print
},
262 {TTLV_T2
, B_FULLD
| B_SPARD
, " SetProp", recpdoptlv_print
},
263 /* F_OP_SETRESP */ {TTLV_T2
, B_RESTV
, " SetResp", recpdoptlv_print
},
264 /* F_OP_SETPRESP */ {TTLV_T2
, B_RESTV
, " SetPropResp", recpdoptlv_print
},
265 /* F_OP_DEL */ {ZERO_TTLV
, 0, " Del", recpdoptlv_print
},
266 /* F_OP_DELRESP */ {TTLV_T2
, B_RESTV
, " DelResp", recpdoptlv_print
},
267 /* F_OP_GET */ {ZERO_TTLV
, 0, " Get", recpdoptlv_print
},
268 /* F_OP_GETPROP */ {ZERO_TTLV
, 0, " GetProp", recpdoptlv_print
},
270 {TTLV_T2
, B_FULLD
| B_SPARD
| B_RESTV
, " GetResp", recpdoptlv_print
},
272 {TTLV_T2
, B_FULLD
| B_RESTV
, " GetPropResp", recpdoptlv_print
},
274 {TTLV_T2
, B_FULLD
| B_SPARD
, " Report", recpdoptlv_print
},
275 /* F_OP_COMMIT */ {ZERO_TTLV
, 0, " Commit", NULL
},
276 /* F_OP_RCOMMIT */ {TTLV_T1
, B_RESTV
, " RCommit", genoptlv_print
},
277 /* F_OP_RTRCOMP */ {ZERO_TTLV
, 0, " RTRCOMP", NULL
},
280 static const struct optlv_h
*
281 get_forces_optlv_h(uint16_t opt
)
283 if (opt
> F_OP_MAX
|| opt
== F_OP_RSV
)
284 return &OPTLV_msg
[F_OP_RSV
];
286 return &OPTLV_msg
[opt
];
291 #define IND_PREF '\n'
293 static char ind_buf
[IND_SIZE
];
296 indent_pr(int indent
, int nlpref
)
301 if (indent
> (IND_SIZE
- 1))
302 indent
= IND_SIZE
- 1;
310 while (--indent
>= 0)
318 op_valid(uint16_t op
, uint16_t mask
)
323 return (1 << (op
- 1)) & mask
; /* works only for 0x0001 through 0x0010 */
324 /* I guess we should allow vendor operations? */
330 #define F_TLV_RSVD 0x0000
331 #define F_TLV_REDR 0x0001
332 #define F_TLV_ASRS 0x0010
333 #define F_TLV_ASRT 0x0011
334 #define F_TLV_LFBS 0x1000
335 #define F_TLV_PDAT 0x0110
336 #define F_TLV_KEYI 0x0111
337 #define F_TLV_FULD 0x0112
338 #define F_TLV_SPAD 0x0113
339 #define F_TLV_REST 0x0114
340 #define F_TLV_METD 0x0115
341 #define F_TLV_REDD 0x0116
342 #define F_TLV_TRNG 0x0117
345 #define F_TLV_VNST 0x8000
347 static const struct tok ForCES_TLV
[] = {
348 {F_TLV_RSVD
, "Invalid TLV"},
349 {F_TLV_REDR
, "REDIRECT TLV"},
350 {F_TLV_ASRS
, "ASResult TLV"},
351 {F_TLV_ASRT
, "ASTreason TLV"},
352 {F_TLV_LFBS
, "LFBselect TLV"},
353 {F_TLV_PDAT
, "PATH-DATA TLV"},
354 {F_TLV_KEYI
, "KEYINFO TLV"},
355 {F_TLV_FULD
, "FULLDATA TLV"},
356 {F_TLV_SPAD
, "SPARSEDATA TLV"},
357 {F_TLV_REST
, "RESULT TLV"},
358 {F_TLV_METD
, "METADATA TLV"},
359 {F_TLV_REDD
, "REDIRECTDATA TLV"},
365 ttlv_valid(uint16_t ttlv
)
368 if (ttlv
== 1 || ttlv
== 0x1000)
370 if (ttlv
>= 0x10 && ttlv
<= 0x11)
372 if (ttlv
>= 0x110 && ttlv
<= 0x116)
391 #define F_ALN_LEN(len) roundup2(len, ForCES_ALNL)
392 #define GET_TOP_TLV(fhdr) ((const struct forces_tlv *)((fhdr) + sizeof (struct forcesh)))
393 #define TLV_SET_LEN(len) (F_ALN_LEN(TLV_HDRL) + (len))
394 #define TLV_DATA(tlvp) ((const void*)(((const char*)(tlvp)) + TLV_SET_LEN(0)))
395 #define GO_NXT_TLV(tlv,rlen) ((rlen) -= F_ALN_LEN(GET_BE_U_2((tlv)->length)), \
396 (const struct forces_tlv*)(((const char*)(tlv)) \
397 + F_ALN_LEN(GET_BE_U_2((tlv)->length))))
398 #define ILV_SET_LEN(len) (F_ALN_LEN(ILV_HDRL) + (len))
399 #define ILV_DATA(ilvp) ((const void*)(((const char*)(ilvp)) + ILV_SET_LEN(0)))
400 #define GO_NXT_ILV(ilv,rlen) ((rlen) -= F_ALN_LEN(GET_BE_U_4((ilv)->length)), \
401 (const struct forces_ilv *)(((const char*)(ilv)) \
402 + F_ALN_LEN(GET_BE_U_4((ilv)->length))))
403 #define INVALID_RLEN 1
404 #define INVALID_STLN 2
405 #define INVALID_LTLN 3
406 #define INVALID_ALEN 4
408 static const struct tok ForCES_TLV_err
[] = {
409 {INVALID_RLEN
, "Invalid total length"},
410 {INVALID_STLN
, "xLV too short"},
411 {INVALID_LTLN
, "xLV too long"},
412 {INVALID_ALEN
, "data padding missing"},
417 tlv_valid(u_int tlvl
, u_int rlen
)
425 if (rlen
< F_ALN_LEN(tlvl
))
432 ilv_valid(netdissect_options
*ndo
, const struct forces_ilv
*ilv
, u_int rlen
)
436 if (GET_BE_U_4(ilv
->length
) < ILV_HDRL
)
438 if (GET_BE_U_4(ilv
->length
) > rlen
)
440 if (rlen
< F_ALN_LEN(GET_BE_U_4(ilv
->length
)))
446 static int lfbselect_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
447 uint16_t op_msk
, int indent
);
448 static int redirect_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
449 uint16_t op_msk
, int indent
);
450 static int asrtlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
451 uint16_t op_msk
, int indent
);
452 static int asttlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
453 uint16_t op_msk
, int indent
);
455 struct forces_lfbsh
{
457 nd_uint32_t instance
;
460 #define ASSNS_OPS (B_OP_REPORT)
461 #define CFG_OPS (B_OP_SET|B_OP_SETPROP|B_OP_DEL|B_OP_COMMIT|B_OP_RTRCOMP)
462 #define CFG_ROPS (B_OP_SETRESP|B_OP_SETPRESP|B_OP_DELRESP|B_OP_RCOMMIT)
463 #define CFG_QY (B_OP_GET|B_OP_GETPROP)
464 #define CFG_QYR (B_OP_GETRESP|B_OP_GETPRESP)
465 #define CFG_EVN (B_OP_REPORT)
467 static const struct tom_h ForCES_msg
[TOM_MAX_IND
+ 1] = {
468 /* TOM_RSV_I */ {TOM_RSVD
, ZERO_TTLV
, 0, "Invalid message", NULL
},
469 /* TOM_ASS_I */ {TOM_ASSNSETUP
, ZERO_MORE_TTLV
| TWO_TLV
, ASSNS_OPS
,
470 "Association Setup", lfbselect_print
},
472 {TOM_ASSNTEARD
, TTLV_T1
, 0, "Association TearDown", asttlv_print
},
473 /* TOM_CFG_I */ {TOM_CONFIG
, TTLV_T2
, CFG_OPS
, "Config", lfbselect_print
},
474 /* TOM_QRY_I */ {TOM_QUERY
, TTLV_T2
, CFG_QY
, "Query", lfbselect_print
},
475 /* TOM_EVN_I */ {TOM_EVENTNOT
, TTLV_T1
, CFG_EVN
, "Event Notification",
478 {TOM_PKTREDIR
, TTLV_T2
, 0, "Packet Redirect", redirect_print
},
479 /* TOM_HBT_I */ {TOM_HEARTBT
, ZERO_TTLV
, 0, "HeartBeat", NULL
},
481 {TOM_ASSNSETREP
, TTLV_T1
, 0, "Association Response", asrtlv_print
},
482 /* TOM_CNR_I */ {TOM_CONFIGREP
, TTLV_T2
, CFG_ROPS
, "Config Response",
485 {TOM_QUERYREP
, TTLV_T2
, CFG_QYR
, "Query Response", lfbselect_print
},
488 static const struct tom_h
*
489 get_forces_tom(uint8_t tom
)
492 for (i
= TOM_RSV_I
; i
<= TOM_MAX_IND
; i
++) {
493 const struct tom_h
*th
= &ForCES_msg
[i
];
497 return &ForCES_msg
[TOM_RSV_I
];
505 int (*print
) (netdissect_options
*, const u_char
* pptr
, u_int len
,
506 uint16_t op_msk
, int indent
);
518 #define PD_MAX_IND (_TOM_RSV_MAX - 1)
521 pd_valid(uint16_t pd
)
523 if (pd
>= F_TLV_PDAT
&& pd
<= F_TLV_REST
)
529 chk_op_type(netdissect_options
*ndo
,
530 uint16_t type
, uint16_t msk
, uint16_t omsk
)
532 if (type
!= F_TLV_PDAT
) {
534 if (type
!= F_TLV_KEYI
) {
535 ND_PRINT("Based on flags expected KEYINFO TLV!\n");
539 ND_PRINT("Illegal DATA encoding for type 0x%x programmed %x got %x\n",
548 #define F_SELTABRANGE 2
549 #define F_TABAPPEND 4
557 static int prestlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
558 uint16_t op_msk
, int indent
);
559 static int pkeyitlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
560 uint16_t op_msk
, int indent
);
561 static int fdatatlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
562 uint16_t op_msk
, int indent
);
563 static int sdatatlv_print(netdissect_options
*, const u_char
* pptr
, u_int len
,
564 uint16_t op_msk
, int indent
);
566 static const struct pdata_ops ForCES_pdata
[PD_MAX_IND
+ 1] = {
567 /* PD_RSV_I */ {0, 0, 0, "Invalid message", NULL
},
568 /* PD_SEL_I */ {F_TLV_KEYI
, 0, 0, "KEYINFO TLV", pkeyitlv_print
},
569 /* PD_FDT_I */ {F_TLV_FULD
, 0, B_FULLD
, "FULLDATA TLV", fdatatlv_print
},
570 /* PD_SDT_I */ {F_TLV_SPAD
, 0, B_SPARD
, "SPARSEDATA TLV", sdatatlv_print
},
571 /* PD_RES_I */ {F_TLV_REST
, 0, B_RESTV
, "RESULT TLV", prestlv_print
},
573 {F_TLV_PDAT
, 0, 0, "Inner PATH-DATA TLV", recpdoptlv_print
},
576 static const struct pdata_ops
*
577 get_forces_pd(uint16_t pd
)
580 for (i
= PD_RSV_I
+ 1; i
<= PD_MAX_IND
; i
++) {
581 const struct pdata_ops
*pdo
= &ForCES_pdata
[i
];
585 return &ForCES_pdata
[TOM_RSV_I
];
593 E_INVALID_DESTINATION_PID
,
596 E_LFB_INSTANCE_ID_NOT_FOUND
,
598 E_COMPONENT_DOES_NOT_EXIST
,
602 E_INVALID_ARRAY_CREATION
,
603 E_VALUE_OUT_OF_RANGE
,
605 E_INVALID_PARAMETERS
,
606 E_INVALID_MESSAGE_TYPE
,
613 /* 0x18-0xFE are reserved .. */
614 E_UNSPECIFIED_ERROR
= 0XFF
617 static const struct tok ForCES_errs
[] = {
618 {E_SUCCESS
, "SUCCESS"},
619 {E_INVALID_HEADER
, "INVALID HEADER"},
620 {E_LENGTH_MISMATCH
, "LENGTH MISMATCH"},
621 {E_VERSION_MISMATCH
, "VERSION MISMATCH"},
622 {E_INVALID_DESTINATION_PID
, "INVALID DESTINATION PID"},
623 {E_LFB_UNKNOWN
, "LFB UNKNOWN"},
624 {E_LFB_NOT_FOUND
, "LFB NOT FOUND"},
625 {E_LFB_INSTANCE_ID_NOT_FOUND
, "LFB INSTANCE ID NOT FOUND"},
626 {E_INVALID_PATH
, "INVALID PATH"},
627 {E_COMPONENT_DOES_NOT_EXIST
, "COMPONENT DOES NOT EXIST"},
628 {E_EXISTS
, "EXISTS ALREADY"},
629 {E_NOT_FOUND
, "NOT FOUND"},
630 {E_READ_ONLY
, "READ ONLY"},
631 {E_INVALID_ARRAY_CREATION
, "INVALID ARRAY CREATION"},
632 {E_VALUE_OUT_OF_RANGE
, "VALUE OUT OF RANGE"},
633 {E_CONTENTS_TOO_LONG
, "CONTENTS TOO LONG"},
634 {E_INVALID_PARAMETERS
, "INVALID PARAMETERS"},
635 {E_INVALID_MESSAGE_TYPE
, "INVALID MESSAGE TYPE"},
636 {E_INVALID_FLAGS
, "INVALID FLAGS"},
637 {E_INVALID_TLV
, "INVALID TLV"},
638 {E_EVENT_ERROR
, "EVENT ERROR"},
639 {E_NOT_SUPPORTED
, "NOT SUPPORTED"},
640 {E_MEMORY_ERROR
, "MEMORY ERROR"},
641 {E_INTERNAL_ERROR
, "INTERNAL ERROR"},
642 {E_UNSPECIFIED_ERROR
, "UNSPECIFIED ERROR"},
649 prestlv_print(netdissect_options
*ndo
,
650 const u_char
* pptr
, u_int len
,
651 uint16_t op_msk _U_
, int indent
)
653 const struct forces_tlv
*tlv
= (const struct forces_tlv
*)pptr
;
654 const u_char
*tdp
= (const u_char
*) TLV_DATA(tlv
);
655 const struct res_val
*r
= (const struct res_val
*)tdp
;
660 * pdatacnt_print() has ensured that len (the TLV length)
663 dlen
= len
- TLV_HDRL
;
664 if (dlen
!= RESLEN
) {
665 ND_PRINT("illegal RESULT-TLV: %u bytes!\n", dlen
);
670 result
= GET_U_1(r
->result
);
671 if (result
>= 0x18 && result
<= 0xFE) {
672 ND_PRINT("illegal reserved result code: 0x%x!\n", result
);
676 if (ndo
->ndo_vflag
>= 3) {
677 char *ib
= indent_pr(indent
, 0);
678 ND_PRINT("%s Result: %s (code 0x%x)\n", ib
,
679 tok2str(ForCES_errs
, NULL
, result
), result
);
689 fdatatlv_print(netdissect_options
*ndo
,
690 const u_char
* pptr
, u_int len
,
691 uint16_t op_msk _U_
, int indent
)
693 const struct forces_tlv
*tlv
= (const struct forces_tlv
*)pptr
;
695 const u_char
*tdp
= (const u_char
*) TLV_DATA(tlv
);
699 * pdatacnt_print() or pkeyitlv_print() has ensured that len
700 * (the TLV length) >= TLV_HDRL.
702 rlen
= len
- TLV_HDRL
;
704 type
= GET_BE_U_2(tlv
->type
);
705 if (type
!= F_TLV_FULD
) {
706 ND_PRINT("Error: expecting FULLDATA!\n");
710 if (ndo
->ndo_vflag
>= 3) {
711 char *ib
= indent_pr(indent
+ 2, 1);
712 ND_PRINT("%s[", ib
+ 1);
713 hex_print(ndo
, ib
, tdp
, rlen
);
714 ND_PRINT("\n%s]", ib
+ 1);
724 sdatailv_print(netdissect_options
*ndo
,
725 const u_char
* pptr
, u_int len
,
726 uint16_t op_msk _U_
, int indent
)
729 const struct forces_ilv
*ilv
= (const struct forces_ilv
*)pptr
;
732 if (len
< ILV_HDRL
) {
733 ND_PRINT("Error: BAD SPARSEDATA-TLV!\n");
740 ND_PRINT("Jamal - outstanding length <%u>\n", rlen
);
742 char *ib
= indent_pr(indent
, 1);
743 const u_char
*tdp
= (const u_char
*) ILV_DATA(ilv
);
744 invilv
= ilv_valid(ndo
, ilv
, rlen
);
746 ND_PRINT("%s[", ib
+ 1);
747 hex_print(ndo
, ib
, tdp
, rlen
);
748 ND_PRINT("\n%s]\n", ib
+ 1);
751 if (ndo
->ndo_vflag
>= 3) {
752 u_int ilvl
= GET_BE_U_4(ilv
->length
);
753 ND_PRINT("\n%s ILV: type %x length %u\n", ib
+ 1,
754 GET_BE_U_4(ilv
->type
), ilvl
);
755 hex_print(ndo
, "\t\t[", tdp
, ilvl
-ILV_HDRL
);
758 ilv
= GO_NXT_ILV(ilv
, rlen
);
765 sdatatlv_print(netdissect_options
*ndo
,
766 const u_char
* pptr
, u_int len
,
767 uint16_t op_msk
, int indent
)
769 const struct forces_tlv
*tlv
= (const struct forces_tlv
*)pptr
;
771 const u_char
*tdp
= (const u_char
*) TLV_DATA(tlv
);
775 * pdatacnt_print() has ensured that len (the TLV length)
778 rlen
= len
- TLV_HDRL
;
780 type
= GET_BE_U_2(tlv
->type
);
781 if (type
!= F_TLV_SPAD
) {
782 ND_PRINT("Error: expecting SPARSEDATA!\n");
786 return sdatailv_print(ndo
, tdp
, rlen
, op_msk
, indent
);
794 pkeyitlv_print(netdissect_options
*ndo
,
795 const u_char
* pptr
, u_int len
,
796 uint16_t op_msk
, int indent
)
798 const struct forces_tlv
*tlv
= (const struct forces_tlv
*)pptr
;
799 const u_char
*tdp
= (const u_char
*) TLV_DATA(tlv
);
800 const u_char
*dp
= tdp
+ 4;
801 const struct forces_tlv
*kdtlv
= (const struct forces_tlv
*)dp
;
803 char *ib
= indent_pr(indent
, 0);
807 id
= GET_BE_U_4(tdp
);
808 ND_PRINT("%sKeyinfo: Key 0x%x\n", ib
, id
);
809 type
= GET_BE_U_2(kdtlv
->type
);
810 tll
= GET_BE_U_2(kdtlv
->length
);
811 invtlv
= tlv_valid(tll
, len
);
814 ND_PRINT("%s TLV type 0x%x len %u\n",
815 tok2str(ForCES_TLV_err
, NULL
, invtlv
), type
,
820 * At this point, tlv_valid() has ensured that the TLV
821 * length is large enough but not too large (it doesn't
822 * go past the end of the containing TLV).
824 tll
= GET_BE_U_2(kdtlv
->length
);
825 dp
= (const u_char
*) TLV_DATA(kdtlv
);
826 return fdatatlv_print(ndo
, dp
, tll
, op_msk
, indent
);
829 #define PTH_DESC_SIZE 12
832 pdatacnt_print(netdissect_options
*ndo
,
833 const u_char
* pptr
, u_int len
,
834 uint16_t IDcnt
, uint16_t op_msk
, int indent
)
838 char *ib
= indent_pr(indent
, 0);
840 if ((op_msk
& B_APPND
) && ndo
->ndo_vflag
>= 3) {
841 ND_PRINT("%sTABLE APPEND\n", ib
);
843 for (i
= 0; i
< IDcnt
; i
++) {
847 id
= GET_BE_U_4(pptr
);
848 if (ndo
->ndo_vflag
>= 3)
849 ND_PRINT("%sID#%02u: %u\n", ib
, i
+ 1, id
);
854 if ((op_msk
& B_TRNG
) || (op_msk
& B_KEYIN
)) {
855 if (op_msk
& B_TRNG
) {
856 uint32_t starti
, endi
;
858 if (len
< PTH_DESC_SIZE
) {
859 ND_PRINT("pathlength %u with key/range too short %u\n",
864 pptr
+= sizeof(struct forces_tlv
);
865 len
-= sizeof(struct forces_tlv
);
867 starti
= GET_BE_U_4(pptr
);
871 endi
= GET_BE_U_4(pptr
);
875 if (ndo
->ndo_vflag
>= 3)
876 ND_PRINT("%sTable range: [%u,%u]\n", ib
, starti
, endi
);
879 if (op_msk
& B_KEYIN
) {
880 const struct forces_tlv
*keytlv
;
883 if (len
< PTH_DESC_SIZE
) {
884 ND_PRINT("pathlength %u with key/range too short %u\n",
892 keytlv
= (const struct forces_tlv
*)pptr
;
894 pptr
+= sizeof(struct forces_tlv
);
895 len
-= sizeof(struct forces_tlv
);
896 /* skip key content */
897 tll
= GET_BE_U_2(keytlv
->length
);
898 if (tll
< TLV_HDRL
) {
899 ND_PRINT("key content length %u < %u\n",
905 ND_PRINT("key content too short\n");
915 const struct forces_tlv
*pdtlv
= (const struct forces_tlv
*)pptr
;
922 type
= GET_BE_U_2(pdtlv
->type
);
923 tlvl
= GET_BE_U_2(pdtlv
->length
);
924 invtlv
= tlv_valid(tlvl
, len
);
926 ND_PRINT("%s Outstanding bytes %u for TLV type 0x%x TLV len %u\n",
927 tok2str(ForCES_TLV_err
, NULL
, invtlv
), len
, type
,
932 * At this point, tlv_valid() has ensured that the TLV
933 * length is large enough but not too large (it doesn't
934 * go past the end of the containing TLV).
936 tll
= tlvl
- TLV_HDRL
;
937 aln
= F_ALN_LEN(tlvl
);
940 ND_PRINT("Invalid padded pathdata TLV type 0x%x len %u missing %u pad bytes\n",
941 type
, tlvl
, aln
- len
);
946 if (pd_valid(type
)) {
947 const struct pdata_ops
*ops
= get_forces_pd(type
);
949 if (ndo
->ndo_vflag
>= 3 && ops
->v
!= F_TLV_PDAT
) {
951 ND_PRINT("%s %s (Length %u DataLen %u pad %u Bytes)\n",
952 ib
, ops
->s
, tlvl
, tll
, pad
);
954 ND_PRINT("%s %s (Length %u DataLen %u Bytes)\n",
955 ib
, ops
->s
, tlvl
, tll
);
958 chk_op_type(ndo
, type
, op_msk
, ops
->op_msk
);
960 if (ops
->print(ndo
, (const u_char
*)pdtlv
,
961 tll
+ pad
+ TLV_HDRL
, op_msk
,
964 len
-= (TLV_HDRL
+ pad
+ tll
);
966 ND_PRINT("Invalid path data content type 0x%x len %u\n",
970 hex_print(ndo
, "Bad Data val\n\t [",
986 pdata_print(netdissect_options
*ndo
,
987 const u_char
* pptr
, u_int len
,
988 uint16_t op_msk
, int indent
)
990 const struct pathdata_h
*pdh
= (const struct pathdata_h
*)pptr
;
991 char *ib
= indent_pr(indent
, 0);
997 if (len
< sizeof(struct pathdata_h
))
999 if (ndo
->ndo_vflag
>= 3) {
1000 ND_PRINT("\n%sPathdata: Flags 0x%x ID count %u\n",
1001 ib
, GET_BE_U_2(pdh
->pflags
),
1002 GET_BE_U_2(pdh
->pIDcnt
));
1005 if (GET_BE_U_2(pdh
->pflags
) & F_SELKEY
) {
1009 /* Table GET Range operation */
1010 if (GET_BE_U_2(pdh
->pflags
) & F_SELTABRANGE
) {
1013 /* Table SET append operation */
1014 if (GET_BE_U_2(pdh
->pflags
) & F_TABAPPEND
) {
1018 pptr
+= sizeof(struct pathdata_h
);
1019 len
-= sizeof(struct pathdata_h
);
1020 idcnt
= GET_BE_U_2(pdh
->pIDcnt
);
1021 minsize
= idcnt
* 4;
1022 if (len
< minsize
) {
1023 ND_PRINT("\t\t\ttruncated IDs expected %uB got %uB\n", minsize
,
1025 hex_print(ndo
, "\t\t\tID Data[", pptr
, len
);
1030 if ((op_msk
& B_TRNG
) && (op_msk
& B_KEYIN
)) {
1031 ND_PRINT("\t\t\tIllegal to have both Table ranges and keys\n");
1035 more_pd
= pdatacnt_print(ndo
, pptr
, len
, idcnt
, op_msk
, indent
);
1037 int consumed
= len
- more_pd
;
1040 /* XXX: Argh, recurse some more */
1041 return recpdoptlv_print(ndo
, pptr
, len
, op_msk
, indent
+1);
1046 nd_print_trunc(ndo
);
1051 genoptlv_print(netdissect_options
*ndo
,
1052 const u_char
* pptr
, u_int len
,
1053 uint16_t op_msk
, int indent
)
1055 const struct forces_tlv
*pdtlv
= (const struct forces_tlv
*)pptr
;
1059 char *ib
= indent_pr(indent
, 0);
1061 type
= GET_BE_U_2(pdtlv
->type
);
1062 tlvl
= GET_BE_U_2(pdtlv
->length
);
1063 invtlv
= tlv_valid(tlvl
, len
);
1064 ND_PRINT("genoptlvprint - %s TLV type 0x%x len %u\n",
1065 tok2str(ForCES_TLV
, NULL
, type
), type
, tlvl
);
1068 * At this point, tlv_valid() has ensured that the TLV
1069 * length is large enough but not too large (it doesn't
1070 * go past the end of the containing TLV).
1072 const u_char
*dp
= (const u_char
*) TLV_DATA(pdtlv
);
1074 if (!ttlv_valid(type
)) {
1075 ND_PRINT("%s TLV type 0x%x len %u\n",
1076 tok2str(ForCES_TLV_err
, NULL
, invtlv
), type
,
1080 if (ndo
->ndo_vflag
>= 3)
1081 ND_PRINT("%s%s, length %u (data length %u Bytes)",
1082 ib
, tok2str(ForCES_TLV
, NULL
, type
),
1083 tlvl
, tlvl
- TLV_HDRL
);
1085 return pdata_print(ndo
, dp
, tlvl
- TLV_HDRL
, op_msk
, indent
+ 1);
1087 ND_PRINT("\t\t\tInvalid ForCES TLV type=%x", type
);
1093 recpdoptlv_print(netdissect_options
*ndo
,
1094 const u_char
* pptr
, u_int len
,
1095 uint16_t op_msk
, int indent
)
1097 const struct forces_tlv
*pdtlv
= (const struct forces_tlv
*)pptr
;
1100 uint16_t type
, tlvl
;
1105 tlvl
= GET_BE_U_2(pdtlv
->length
);
1106 invtlv
= tlv_valid(tlvl
, len
);
1112 * At this point, tlv_valid() has ensured that the TLV
1113 * length is large enough but not too large (it doesn't
1114 * go past the end of the containing TLV).
1116 ib
= indent_pr(indent
, 0);
1117 type
= GET_BE_U_2(pdtlv
->type
);
1118 dp
= (const u_char
*) TLV_DATA(pdtlv
);
1120 if (ndo
->ndo_vflag
>= 3)
1121 ND_PRINT("%s%s, length %u (data encapsulated %u Bytes)",
1122 ib
, tok2str(ForCES_TLV
, NULL
, type
),
1126 if (pdata_print(ndo
, dp
, tlvl
- TLV_HDRL
, op_msk
, indent
+ 1) == -1)
1128 pdtlv
= GO_NXT_TLV(pdtlv
, len
);
1132 ND_PRINT("\n\t\tMessy PATHDATA TLV header, type (0x%x)\n\t\texcess of %u Bytes ",
1133 GET_BE_U_2(pdtlv
->type
),
1134 len
- GET_BE_U_2(pdtlv
->length
));
1142 invoptlv_print(netdissect_options
*ndo
,
1143 const u_char
* pptr
, u_int len
,
1144 uint16_t op_msk _U_
, int indent
)
1146 char *ib
= indent_pr(indent
, 1);
1148 if (ndo
->ndo_vflag
>= 3) {
1149 ND_PRINT("%sData[", ib
+ 1);
1150 hex_print(ndo
, ib
, pptr
, len
);
1151 ND_PRINT("%s]\n", ib
);
1157 otlv_print(netdissect_options
*ndo
,
1158 const struct forces_tlv
*otlv
, uint16_t op_msk _U_
, int indent
)
1161 const u_char
*dp
= (const u_char
*) TLV_DATA(otlv
);
1164 char *ib
= indent_pr(indent
, 0);
1165 const struct optlv_h
*ops
;
1168 * lfbselect_print() has ensured that GET_BE_U_2(otlv->length)
1171 type
= GET_BE_U_2(otlv
->type
);
1172 tll
= GET_BE_U_2(otlv
->length
) - TLV_HDRL
;
1173 ops
= get_forces_optlv_h(type
);
1174 if (ndo
->ndo_vflag
>= 3) {
1175 ND_PRINT("%sOper TLV %s(0x%x) length %u\n", ib
, ops
->s
, type
,
1176 GET_BE_U_2(otlv
->length
));
1178 /* rest of ops must at least have 12B {pathinfo} */
1179 if (tll
< OP_MIN_SIZ
) {
1180 ND_PRINT("\t\tOper TLV %s(0x%x) length %u\n", ops
->s
, type
,
1181 GET_BE_U_2(otlv
->length
));
1182 ND_PRINT("\t\tTruncated data size %u minimum required %u\n", tll
,
1184 return invoptlv_print(ndo
, dp
, tll
, ops
->op_msk
, indent
);
1188 /* XXX - do anything with ops->flags? */
1190 rc
= ops
->print(ndo
, dp
, tll
, ops
->op_msk
, indent
+ 1);
1198 asttlv_print(netdissect_options
*ndo
,
1199 const u_char
* pptr
, u_int len
,
1200 uint16_t op_msk _U_
, int indent
)
1204 char *ib
= indent_pr(indent
, 0);
1207 * forces_type_print() has ensured that len (the TLV length)
1210 dlen
= len
- TLV_HDRL
;
1211 if (dlen
!= ASTDLN
) {
1212 ND_PRINT("illegal ASTresult-TLV: %u bytes!\n", dlen
);
1215 rescode
= GET_BE_U_4(pptr
);
1216 if (rescode
> ASTMCD
) {
1217 ND_PRINT("illegal ASTresult result code: %u!\n", rescode
);
1221 if (ndo
->ndo_vflag
>= 3) {
1222 ND_PRINT("Teardown reason:\n%s", ib
);
1225 ND_PRINT("Normal Teardown");
1228 ND_PRINT("Loss of Heartbeats");
1231 ND_PRINT("Out of bandwidth");
1234 ND_PRINT("Out of Memory");
1237 ND_PRINT("Application Crash");
1240 ND_PRINT("Unknown Teardown reason");
1243 ND_PRINT("(%x)\n%s", rescode
, ib
);
1251 asrtlv_print(netdissect_options
*ndo
,
1252 const u_char
* pptr
, u_int len
,
1253 uint16_t op_msk _U_
, int indent
)
1257 char *ib
= indent_pr(indent
, 0);
1260 * forces_type_print() has ensured that len (the TLV length)
1263 dlen
= len
- TLV_HDRL
;
1264 if (dlen
!= ASRDLN
) { /* id, instance, oper tlv */
1265 ND_PRINT("illegal ASRresult-TLV: %u bytes!\n", dlen
);
1268 rescode
= GET_BE_U_4(pptr
);
1270 if (rescode
> ASRMCD
) {
1271 ND_PRINT("illegal ASRresult result code: %u!\n", rescode
);
1275 if (ndo
->ndo_vflag
>= 3) {
1276 ND_PRINT("\n%s", ib
);
1279 ND_PRINT("Success ");
1282 ND_PRINT("FE ID invalid ");
1285 ND_PRINT("permission denied ");
1288 ND_PRINT("Unknown ");
1291 ND_PRINT("(%x)\n%s", rescode
, ib
);
1301 gentltlv_print(netdissect_options
*ndo
,
1302 const u_char
* pptr _U_
, u_int len
,
1303 uint16_t op_msk _U_
, int indent _U_
)
1305 u_int dlen
= len
- TLV_HDRL
;
1307 if (dlen
< 4) { /* at least 32 bits must exist */
1308 ND_PRINT("truncated TLV: %u bytes missing! ", 4 - dlen
);
1318 print_metailv(netdissect_options
*ndo
,
1319 const u_char
* pptr
, uint16_t op_msk _U_
, int indent
)
1322 char *ib
= indent_pr(indent
, 0);
1323 /* XXX: check header length */
1324 const struct forces_ilv
*ilv
= (const struct forces_ilv
*)pptr
;
1327 * print_metatlv() has ensured that len (what remains in the
1330 rlen
= GET_BE_U_4(ilv
->length
) - ILV_HDRL
;
1331 ND_PRINT("%sMetaID 0x%x length %u\n", ib
, GET_BE_U_4(ilv
->type
),
1332 GET_BE_U_4(ilv
->length
));
1333 if (ndo
->ndo_vflag
>= 3) {
1334 hex_print(ndo
, "\t\t[", ILV_DATA(ilv
), rlen
);
1341 print_metatlv(netdissect_options
*ndo
,
1342 const u_char
* pptr
, u_int len
,
1343 uint16_t op_msk _U_
, int indent
)
1346 char *ib
= indent_pr(indent
, 0);
1348 const struct forces_ilv
*ilv
= (const struct forces_ilv
*)pptr
;
1352 * redirect_print() has ensured that len (what remains in the
1355 dlen
= len
- TLV_HDRL
;
1357 ND_PRINT("\n%s METADATA length %u\n", ib
, rlen
);
1359 invilv
= ilv_valid(ndo
, ilv
, rlen
);
1365 * At this point, ilv_valid() has ensured that the ILV
1366 * length is large enough but not too large (it doesn't
1367 * go past the end of the containing TLV).
1369 print_metailv(ndo
, (const u_char
*) ilv
, 0, indent
+ 1);
1370 ilv
= GO_NXT_ILV(ilv
, rlen
);
1378 print_reddata(netdissect_options
*ndo
,
1379 const u_char
* pptr
, u_int len
,
1380 uint16_t op_msk _U_
, int indent
)
1383 char *ib
= indent_pr(indent
, 0);
1386 dlen
= len
- TLV_HDRL
;
1388 ND_PRINT("\n%s Redirect Data length %u\n", ib
, rlen
);
1390 if (ndo
->ndo_vflag
>= 3) {
1392 hex_print(ndo
, "\n\t\t", pptr
, rlen
);
1393 ND_PRINT("\n\t\t]");
1400 redirect_print(netdissect_options
*ndo
,
1401 const u_char
* pptr
, u_int len
,
1402 uint16_t op_msk _U_
, int indent
)
1404 const struct forces_tlv
*tlv
= (const struct forces_tlv
*)pptr
;
1410 * forces_type_print() has ensured that len (the TLV length)
1413 dlen
= len
- TLV_HDRL
;
1414 if (dlen
<= RD_MIN
) {
1415 ND_PRINT("\n\t\ttruncated Redirect TLV: %u bytes missing! ",
1423 uint16_t type
, tlvl
;
1425 type
= GET_BE_U_2(tlv
->type
);
1426 tlvl
= GET_BE_U_2(tlv
->length
);
1427 invtlv
= tlv_valid(tlvl
, rlen
);
1429 ND_PRINT("Bad Redirect data\n");
1434 * At this point, tlv_valid() has ensured that the TLV
1435 * length is large enough but not too large (it doesn't
1436 * go past the end of the containing TLV).
1438 if (type
== F_TLV_METD
) {
1439 print_metatlv(ndo
, (const u_char
*) TLV_DATA(tlv
),
1442 } else if (type
== F_TLV_REDD
) {
1443 print_reddata(ndo
, (const u_char
*) TLV_DATA(tlv
),
1447 ND_PRINT("Unknown REDIRECT TLV 0x%x len %u\n",
1452 tlv
= GO_NXT_TLV(tlv
, rlen
);
1456 ND_PRINT("\n\t\tMessy Redirect TLV header, type (0x%x)\n\t\texcess of %u Bytes ",
1457 GET_BE_U_2(tlv
->type
),
1458 rlen
- GET_BE_U_2(tlv
->length
));
1469 lfbselect_print(netdissect_options
*ndo
,
1470 const u_char
* pptr
, u_int len
,
1471 uint16_t op_msk
, int indent
)
1473 const struct forces_lfbsh
*lfbs
;
1474 const struct forces_tlv
*otlv
;
1475 char *ib
= indent_pr(indent
, 0);
1481 * forces_type_print() has ensured that len (the TLV length)
1484 dlen
= len
- TLV_HDRL
;
1485 if (dlen
<= OP_MIN
) { /* id, instance, oper tlv header .. */
1486 ND_PRINT("\n\t\ttruncated lfb selector: %u bytes missing! ",
1492 * At this point, we know that dlen > OP_MIN; OP_OFF < OP_MIN, so
1493 * we also know that it's > OP_OFF.
1495 rlen
= dlen
- OP_OFF
;
1497 lfbs
= (const struct forces_lfbsh
*)pptr
;
1498 ND_TCHECK_SIZE(lfbs
);
1499 if (ndo
->ndo_vflag
>= 3) {
1500 ND_PRINT("\n%s%s(Classid %x) instance %x\n",
1502 tok2str(ForCES_LFBs
, NULL
, GET_BE_U_4(lfbs
->class)),
1503 GET_BE_U_4(lfbs
->class),
1504 GET_BE_U_4(lfbs
->instance
));
1507 otlv
= (const struct forces_tlv
*)(lfbs
+ 1);
1511 uint16_t type
, tlvl
;
1513 type
= GET_BE_U_2(otlv
->type
);
1514 tlvl
= GET_BE_U_2(otlv
->length
);
1515 invtlv
= tlv_valid(tlvl
, rlen
);
1520 * At this point, tlv_valid() has ensured that the TLV
1521 * length is large enough but not too large (it doesn't
1522 * go past the end of the containing TLV).
1524 if (op_valid(type
, op_msk
)) {
1525 otlv_print(ndo
, otlv
, 0, indent
);
1527 if (ndo
->ndo_vflag
< 3)
1529 ND_PRINT("\t\tINValid oper-TLV type 0x%x length %u for this ForCES message\n",
1531 invoptlv_print(ndo
, (const u_char
*)otlv
, rlen
, 0, indent
);
1533 otlv
= GO_NXT_TLV(otlv
, rlen
);
1537 ND_PRINT("\n\t\tMessy oper TLV header, type (0x%x)\n\t\texcess of %u Bytes ",
1538 GET_BE_U_2(otlv
->type
),
1539 rlen
- GET_BE_U_2(otlv
->length
));
1546 nd_print_trunc(ndo
);
1551 forces_type_print(netdissect_options
*ndo
,
1552 const u_char
* pptr
, const struct forcesh
*fhdr _U_
,
1553 u_int mlen
, const struct tom_h
*tops
)
1555 const struct forces_tlv
*tltlv
;
1562 * forces_print() has already checked that mlen >= ForCES_HDRL
1563 * by calling ForCES_HLN_VALID().
1565 rlen
= mlen
- ForCES_HDRL
;
1567 if (rlen
> TLV_HLN
) {
1568 if (tops
->flags
& ZERO_TTLV
) {
1569 ND_PRINT("<0x%x>Illegal Top level TLV!\n", tops
->flags
);
1573 if (tops
->flags
& ZERO_MORE_TTLV
)
1575 if (tops
->flags
& ONE_MORE_TTLV
) {
1576 ND_PRINT("\tTop level TLV Data missing!\n");
1581 if (tops
->flags
& ZERO_TTLV
) {
1585 ttlv
= tops
->flags
>> 4;
1586 tltlv
= GET_TOP_TLV(pptr
);
1588 /*XXX: 15 top level tlvs will probably be fine
1589 You are nuts if you send more ;-> */
1591 uint16_t type
, tlvl
;
1593 type
= GET_BE_U_2(tltlv
->type
);
1594 tlvl
= GET_BE_U_2(tltlv
->length
);
1595 invtlv
= tlv_valid(tlvl
, rlen
);
1600 * At this point, tlv_valid() has ensured that the TLV
1601 * length is large enough but not too large (it doesn't
1602 * go past the end of the packet).
1604 if (!ttlv_valid(type
)) {
1605 ND_PRINT("\n\tInvalid ForCES Top TLV type=0x%x",
1610 if (ndo
->ndo_vflag
>= 3)
1611 ND_PRINT("\t%s, length %u (data length %u Bytes)",
1612 tok2str(ForCES_TLV
, NULL
, type
),
1616 rc
= tops
->print(ndo
, (const u_char
*) TLV_DATA(tltlv
),
1622 tltlv
= GO_NXT_TLV(tltlv
, rlen
);
1628 * XXX - if ttlv != 0, does that mean that the packet was too
1629 * short, and didn't have *enough* TLVs in it?
1632 ND_PRINT("\tMess TopTLV header: min %u, total %u advertised %u ",
1633 TLV_HDRL
, rlen
, GET_BE_U_2(tltlv
->length
));
1641 forces_print(netdissect_options
*ndo
,
1642 const u_char
* pptr
, u_int len
)
1644 const struct forcesh
*fhdr
;
1648 const struct tom_h
*tops
;
1651 ndo
->ndo_protocol
= "forces";
1652 fhdr
= (const struct forcesh
*)pptr
;
1653 ND_TCHECK_SIZE(fhdr
);
1654 tom
= GET_U_1(fhdr
->fm_tom
);
1655 if (!tom_valid(tom
)) {
1656 ND_PRINT("Invalid ForCES message type %u\n", tom
);
1660 mlen
= ForCES_BLN(fhdr
);
1662 tops
= get_forces_tom(tom
);
1663 if (tops
->v
== TOM_RSVD
) {
1664 ND_PRINT("\n\tUnknown ForCES message type=0x%x", tom
);
1668 ND_PRINT("\n\tForCES %s ", tops
->s
);
1669 if (!ForCES_HLN_VALID(mlen
, len
)) {
1670 ND_PRINT("Illegal ForCES pkt len - min %u, total recvd %u, advertised %u ",
1671 ForCES_HDRL
, len
, ForCES_BLN(fhdr
));
1675 flg_raw
= GET_BE_U_4(pptr
+ 20);
1676 if (ndo
->ndo_vflag
>= 1) {
1677 ND_PRINT("\n\tForCES Version %u len %uB flags 0x%08x ",
1678 ForCES_V(fhdr
), mlen
, flg_raw
);
1679 ND_PRINT("\n\tSrcID 0x%x(%s) DstID 0x%x(%s) Correlator 0x%" PRIx64
,
1680 ForCES_SID(fhdr
), ForCES_node(ForCES_SID(fhdr
)),
1681 ForCES_DID(fhdr
), ForCES_node(ForCES_DID(fhdr
)),
1682 GET_BE_U_8(fhdr
->fm_cor
));
1685 if (ndo
->ndo_vflag
>= 2) {
1686 ND_PRINT("\n\tForCES flags:\n\t %s(0x%x), prio=%u, %s(0x%x),\n\t %s(0x%x), %s(0x%x)\n",
1687 tok2str(ForCES_ACKs
, "ACKUnknown", ForCES_ACK(fhdr
)),
1690 tok2str(ForCES_EMs
, "EMUnknown", ForCES_EM(fhdr
)),
1692 tok2str(ForCES_ATs
, "ATUnknown", ForCES_AT(fhdr
)),
1694 tok2str(ForCES_TPs
, "TPUnknown", ForCES_TP(fhdr
)),
1696 ND_PRINT("\t Extra flags: rsv(b5-7) 0x%x rsv(b13-31) 0x%x\n",
1697 ForCES_RS1(fhdr
), ForCES_RS2(fhdr
));
1699 rc
= forces_type_print(ndo
, pptr
, fhdr
, mlen
, tops
);
1702 hex_print(ndo
, "\n\t[", pptr
, len
);
1707 if (ndo
->ndo_vflag
>= 4) {
1708 ND_PRINT("\n\t Raw ForCES message\n\t [");
1709 hex_print(ndo
, "\n\t ", pptr
, len
);
1715 nd_print_trunc(ndo
);