2 * Copyright (C) 2000 Alfredo Andres Omella. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
14 * 3. The names of the authors may not be used to endorse or promote
15 * products derived from this software without specific prior
18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
23 * Radius printer routines as specified on:
26 * "Remote Authentication Dial In User Service (RADIUS)"
32 * "RADIUS Accounting Modifications for Tunnel Protocol Support"
35 * "RADIUS Attributes for Tunnel Protocol Support"
41 * "IEEE 802.1X Remote Authentication Dial In User Service (RADIUS)"
45 * "RADIUS Attributes for Virtual LAN and Priority Support"
48 * "Dynamic Authorization Extensions to RADIUS"
50 * Alfredo Andres Omella (aandres@s21sec.com) v0.1 2000/09/15
52 * TODO: Among other things to print ok MacIntosh and Vendor values
59 #include <netdissect-stdinc.h>
63 #include "netdissect.h"
64 #include "addrtoname.h"
68 static const char tstr
[] = " [|radius]";
70 #define TAM_SIZE(x) (sizeof(x)/sizeof(x[0]) )
72 #define PRINT_HEX(bytes_len, ptr_data) \
75 ND_PRINT((ndo, "%02X", *ptr_data )); \
81 /* Radius packet codes */
82 #define RADCMD_ACCESS_REQ 1 /* Access-Request */
83 #define RADCMD_ACCESS_ACC 2 /* Access-Accept */
84 #define RADCMD_ACCESS_REJ 3 /* Access-Reject */
85 #define RADCMD_ACCOUN_REQ 4 /* Accounting-Request */
86 #define RADCMD_ACCOUN_RES 5 /* Accounting-Response */
87 #define RADCMD_ACCESS_CHA 11 /* Access-Challenge */
88 #define RADCMD_STATUS_SER 12 /* Status-Server */
89 #define RADCMD_STATUS_CLI 13 /* Status-Client */
90 #define RADCMD_DISCON_REQ 40 /* Disconnect-Request */
91 #define RADCMD_DISCON_ACK 41 /* Disconnect-ACK */
92 #define RADCMD_DISCON_NAK 42 /* Disconnect-NAK */
93 #define RADCMD_COA_REQ 43 /* CoA-Request */
94 #define RADCMD_COA_ACK 44 /* CoA-ACK */
95 #define RADCMD_COA_NAK 45 /* CoA-NAK */
96 #define RADCMD_RESERVED 255 /* Reserved */
98 static const struct tok radius_command_values
[] = {
99 { RADCMD_ACCESS_REQ
, "Access-Request" },
100 { RADCMD_ACCESS_ACC
, "Access-Accept" },
101 { RADCMD_ACCESS_REJ
, "Access-Reject" },
102 { RADCMD_ACCOUN_REQ
, "Accounting-Request" },
103 { RADCMD_ACCOUN_RES
, "Accounting-Response" },
104 { RADCMD_ACCESS_CHA
, "Access-Challenge" },
105 { RADCMD_STATUS_SER
, "Status-Server" },
106 { RADCMD_STATUS_CLI
, "Status-Client" },
107 { RADCMD_DISCON_REQ
, "Disconnect-Request" },
108 { RADCMD_DISCON_ACK
, "Disconnect-ACK" },
109 { RADCMD_DISCON_NAK
, "Disconnect-NAK" },
110 { RADCMD_COA_REQ
, "CoA-Request" },
111 { RADCMD_COA_ACK
, "CoA-ACK" },
112 { RADCMD_COA_NAK
, "CoA-NAK" },
113 { RADCMD_RESERVED
, "Reserved" },
117 /********************************/
118 /* Begin Radius Attribute types */
119 /********************************/
122 #define LOG_IPHOST 14
123 #define LOG_SERVICE 15
125 #define SESSION_TIMEOUT 27
126 #define IDLE_TIMEOUT 28
127 #define FRM_ATALK_LINK 37
128 #define FRM_ATALK_NETWORK 38
130 #define ACCT_DELAY 41
131 #define ACCT_SESSION_TIME 46
133 #define EGRESS_VLAN_ID 56
134 #define EGRESS_VLAN_NAME 58
136 #define TUNNEL_TYPE 64
137 #define TUNNEL_MEDIUM 65
138 #define TUNNEL_CLIENT_END 66
139 #define TUNNEL_SERVER_END 67
140 #define TUNNEL_PASS 69
143 #define ARAP_FEATURES 71
145 #define TUNNEL_PRIV_GROUP 81
146 #define TUNNEL_ASSIGN_ID 82
147 #define TUNNEL_PREFERENCE 83
149 #define ARAP_CHALLENGE_RESP 84
150 #define ACCT_INT_INTERVAL 85
152 #define TUNNEL_CLIENT_AUTH 90
153 #define TUNNEL_SERVER_AUTH 91
154 /********************************/
155 /* End Radius Attribute types */
156 /********************************/
158 #define RFC4675_TAGGED 0x31
159 #define RFC4675_UNTAGGED 0x32
161 static const struct tok rfc4675_tagged
[] = {
162 { RFC4675_TAGGED
, "Tagged" },
163 { RFC4675_UNTAGGED
, "Untagged" },
168 static void print_attr_string(netdissect_options
*, register const u_char
*, u_int
, u_short
);
169 static void print_attr_num(netdissect_options
*, register const u_char
*, u_int
, u_short
);
170 static void print_vendor_attr(netdissect_options
*, register const u_char
*, u_int
, u_short
);
171 static void print_attr_address(netdissect_options
*, register const u_char
*, u_int
, u_short
);
172 static void print_attr_time(netdissect_options
*, register const u_char
*, u_int
, u_short
);
173 static void print_attr_strange(netdissect_options
*, register const u_char
*, u_int
, u_short
);
176 struct radius_hdr
{ uint8_t code
; /* Radius packet code */
177 uint8_t id
; /* Radius packet id */
178 uint16_t len
; /* Radius total length */
179 uint8_t auth
[16]; /* Authenticator */
182 #define MIN_RADIUS_LEN 20
184 struct radius_attr
{ uint8_t type
; /* Attribute type */
185 uint8_t len
; /* Attribute length */
189 /* Service-Type Attribute standard values */
190 static const char *serv_type
[]={ NULL
,
199 "Callback NAS Prompt",
201 "Callback Administrative",
204 /* Framed-Protocol Attribute standard values */
205 static const char *frm_proto
[]={ NULL
,
209 "Gandalf proprietary",
214 /* Framed-Routing Attribute standard values */
215 static const char *frm_routing
[]={ "None",
221 /* Framed-Compression Attribute standard values */
222 static const char *frm_comp
[]={ "None",
228 /* Login-Service Attribute standard values */
229 static const char *login_serv
[]={ "Telnet",
232 "PortMaster(proprietary)",
241 /* Termination-Action Attribute standard values */
242 static const char *term_action
[]={ "Default",
246 /* Ingress-Filters Attribute standard values */
247 static const char *ingress_filters
[]={ NULL
,
252 /* NAS-Port-Type Attribute standard values */
253 static const char *nas_port_type
[]={ "Async",
260 "HDLC Clear Channel",
272 "Wireless - IEEE 802.11",
275 /* Acct-Status-Type Accounting Attribute standard values */
276 static const char *acct_status
[]={ NULL
,
290 "Tunnel-Link-Reject",
294 /* Acct-Authentic Accounting Attribute standard values */
295 static const char *acct_auth
[]={ NULL
,
301 /* Acct-Terminate-Cause Accounting Attribute standard values */
302 static const char *acct_term
[]={ NULL
,
317 "Service Unavailable",
323 /* Tunnel-Type Attribute standard values */
324 static const char *tunnel_type
[]={ NULL
,
336 "IP-in-IP Tunneling",
340 /* Tunnel-Medium-Type Attribute standard values */
341 static const char *tunnel_medium
[]={ NULL
,
356 "E.164 with NSAP subaddress",
359 /* ARAP-Zone-Access Attribute standard values */
360 static const char *arap_zone
[]={ NULL
,
361 "Only access to dfl zone",
362 "Use zone filter inc.",
364 "Use zone filter exc.",
367 static const char *prompt
[]={ "No Echo",
372 struct attrtype
{ const char *name
; /* Attribute name */
373 const char **subtypes
; /* Standard Values (if any) */
374 u_char siz_subtypes
; /* Size of total standard values */
375 u_char first_subtype
; /* First standard value is 0 or 1 */
376 void (*print_func
)(netdissect_options
*, register const u_char
*, u_int
, u_short
);
379 { NULL
, NULL
, 0, 0, NULL
},
380 { "User-Name", NULL
, 0, 0, print_attr_string
},
381 { "User-Password", NULL
, 0, 0, NULL
},
382 { "CHAP-Password", NULL
, 0, 0, NULL
},
383 { "NAS-IP-Address", NULL
, 0, 0, print_attr_address
},
384 { "NAS-Port", NULL
, 0, 0, print_attr_num
},
385 { "Service-Type", serv_type
, TAM_SIZE(serv_type
)-1, 1, print_attr_num
},
386 { "Framed-Protocol", frm_proto
, TAM_SIZE(frm_proto
)-1, 1, print_attr_num
},
387 { "Framed-IP-Address", NULL
, 0, 0, print_attr_address
},
388 { "Framed-IP-Netmask", NULL
, 0, 0, print_attr_address
},
389 { "Framed-Routing", frm_routing
, TAM_SIZE(frm_routing
), 0, print_attr_num
},
390 { "Filter-Id", NULL
, 0, 0, print_attr_string
},
391 { "Framed-MTU", NULL
, 0, 0, print_attr_num
},
392 { "Framed-Compression", frm_comp
, TAM_SIZE(frm_comp
), 0, print_attr_num
},
393 { "Login-IP-Host", NULL
, 0, 0, print_attr_address
},
394 { "Login-Service", login_serv
, TAM_SIZE(login_serv
), 0, print_attr_num
},
395 { "Login-TCP-Port", NULL
, 0, 0, print_attr_num
},
396 { "Unassigned", NULL
, 0, 0, NULL
}, /*17*/
397 { "Reply-Message", NULL
, 0, 0, print_attr_string
},
398 { "Callback-Number", NULL
, 0, 0, print_attr_string
},
399 { "Callback-Id", NULL
, 0, 0, print_attr_string
},
400 { "Unassigned", NULL
, 0, 0, NULL
}, /*21*/
401 { "Framed-Route", NULL
, 0, 0, print_attr_string
},
402 { "Framed-IPX-Network", NULL
, 0, 0, print_attr_num
},
403 { "State", NULL
, 0, 0, print_attr_string
},
404 { "Class", NULL
, 0, 0, print_attr_string
},
405 { "Vendor-Specific", NULL
, 0, 0, print_vendor_attr
},
406 { "Session-Timeout", NULL
, 0, 0, print_attr_num
},
407 { "Idle-Timeout", NULL
, 0, 0, print_attr_num
},
408 { "Termination-Action", term_action
, TAM_SIZE(term_action
), 0, print_attr_num
},
409 { "Called-Station-Id", NULL
, 0, 0, print_attr_string
},
410 { "Calling-Station-Id", NULL
, 0, 0, print_attr_string
},
411 { "NAS-Identifier", NULL
, 0, 0, print_attr_string
},
412 { "Proxy-State", NULL
, 0, 0, print_attr_string
},
413 { "Login-LAT-Service", NULL
, 0, 0, print_attr_string
},
414 { "Login-LAT-Node", NULL
, 0, 0, print_attr_string
},
415 { "Login-LAT-Group", NULL
, 0, 0, print_attr_string
},
416 { "Framed-AppleTalk-Link", NULL
, 0, 0, print_attr_num
},
417 { "Framed-AppleTalk-Network", NULL
, 0, 0, print_attr_num
},
418 { "Framed-AppleTalk-Zone", NULL
, 0, 0, print_attr_string
},
419 { "Acct-Status-Type", acct_status
, TAM_SIZE(acct_status
)-1, 1, print_attr_num
},
420 { "Acct-Delay-Time", NULL
, 0, 0, print_attr_num
},
421 { "Acct-Input-Octets", NULL
, 0, 0, print_attr_num
},
422 { "Acct-Output-Octets", NULL
, 0, 0, print_attr_num
},
423 { "Acct-Session-Id", NULL
, 0, 0, print_attr_string
},
424 { "Acct-Authentic", acct_auth
, TAM_SIZE(acct_auth
)-1, 1, print_attr_num
},
425 { "Acct-Session-Time", NULL
, 0, 0, print_attr_num
},
426 { "Acct-Input-Packets", NULL
, 0, 0, print_attr_num
},
427 { "Acct-Output-Packets", NULL
, 0, 0, print_attr_num
},
428 { "Acct-Terminate-Cause", acct_term
, TAM_SIZE(acct_term
)-1, 1, print_attr_num
},
429 { "Acct-Multi-Session-Id", NULL
, 0, 0, print_attr_string
},
430 { "Acct-Link-Count", NULL
, 0, 0, print_attr_num
},
431 { "Acct-Input-Gigawords", NULL
, 0, 0, print_attr_num
},
432 { "Acct-Output-Gigawords", NULL
, 0, 0, print_attr_num
},
433 { "Unassigned", NULL
, 0, 0, NULL
}, /*54*/
434 { "Event-Timestamp", NULL
, 0, 0, print_attr_time
},
435 { "Egress-VLANID", NULL
, 0, 0, print_attr_num
},
436 { "Ingress-Filters", ingress_filters
, TAM_SIZE(ingress_filters
)-1, 1, print_attr_num
},
437 { "Egress-VLAN-Name", NULL
, 0, 0, print_attr_string
},
438 { "User-Priority-Table", NULL
, 0, 0, NULL
},
439 { "CHAP-Challenge", NULL
, 0, 0, print_attr_string
},
440 { "NAS-Port-Type", nas_port_type
, TAM_SIZE(nas_port_type
), 0, print_attr_num
},
441 { "Port-Limit", NULL
, 0, 0, print_attr_num
},
442 { "Login-LAT-Port", NULL
, 0, 0, print_attr_string
}, /*63*/
443 { "Tunnel-Type", tunnel_type
, TAM_SIZE(tunnel_type
)-1, 1, print_attr_num
},
444 { "Tunnel-Medium-Type", tunnel_medium
, TAM_SIZE(tunnel_medium
)-1, 1, print_attr_num
},
445 { "Tunnel-Client-Endpoint", NULL
, 0, 0, print_attr_string
},
446 { "Tunnel-Server-Endpoint", NULL
, 0, 0, print_attr_string
},
447 { "Acct-Tunnel-Connection", NULL
, 0, 0, print_attr_string
},
448 { "Tunnel-Password", NULL
, 0, 0, print_attr_string
},
449 { "ARAP-Password", NULL
, 0, 0, print_attr_strange
},
450 { "ARAP-Features", NULL
, 0, 0, print_attr_strange
},
451 { "ARAP-Zone-Access", arap_zone
, TAM_SIZE(arap_zone
)-1, 1, print_attr_num
}, /*72*/
452 { "ARAP-Security", NULL
, 0, 0, print_attr_string
},
453 { "ARAP-Security-Data", NULL
, 0, 0, print_attr_string
},
454 { "Password-Retry", NULL
, 0, 0, print_attr_num
},
455 { "Prompt", prompt
, TAM_SIZE(prompt
), 0, print_attr_num
},
456 { "Connect-Info", NULL
, 0, 0, print_attr_string
},
457 { "Configuration-Token", NULL
, 0, 0, print_attr_string
},
458 { "EAP-Message", NULL
, 0, 0, print_attr_string
},
459 { "Message-Authenticator", NULL
, 0, 0, print_attr_string
}, /*80*/
460 { "Tunnel-Private-Group-ID", NULL
, 0, 0, print_attr_string
},
461 { "Tunnel-Assignment-ID", NULL
, 0, 0, print_attr_string
},
462 { "Tunnel-Preference", NULL
, 0, 0, print_attr_num
},
463 { "ARAP-Challenge-Response", NULL
, 0, 0, print_attr_strange
},
464 { "Acct-Interim-Interval", NULL
, 0, 0, print_attr_num
},
465 { "Acct-Tunnel-Packets-Lost", NULL
, 0, 0, print_attr_num
}, /*86*/
466 { "NAS-Port-Id", NULL
, 0, 0, print_attr_string
},
467 { "Framed-Pool", NULL
, 0, 0, print_attr_string
},
468 { "CUI", NULL
, 0, 0, print_attr_string
},
469 { "Tunnel-Client-Auth-ID", NULL
, 0, 0, print_attr_string
},
470 { "Tunnel-Server-Auth-ID", NULL
, 0, 0, print_attr_string
},
471 { "Unassigned", NULL
, 0, 0, NULL
}, /*92*/
472 { "Unassigned", NULL
, 0, 0, NULL
} /*93*/
476 /*****************************/
477 /* Print an attribute string */
478 /* value pointed by 'data' */
479 /* and 'length' size. */
480 /*****************************/
481 /* Returns nothing. */
482 /*****************************/
484 print_attr_string(netdissect_options
*ndo
,
485 register const u_char
*data
, u_int length
, u_short attr_code
)
489 ND_TCHECK2(data
[0],length
);
496 ND_PRINT((ndo
, "%s", tstr
));
499 if (*data
&& (*data
<=0x1F) )
500 ND_PRINT((ndo
, "Tag[%u] ", *data
));
502 ND_PRINT((ndo
, "Tag[Unused] "));
505 ND_PRINT((ndo
, "Salt %u ", EXTRACT_16BITS(data
)));
509 case TUNNEL_CLIENT_END
:
510 case TUNNEL_SERVER_END
:
511 case TUNNEL_PRIV_GROUP
:
512 case TUNNEL_ASSIGN_ID
:
513 case TUNNEL_CLIENT_AUTH
:
514 case TUNNEL_SERVER_AUTH
:
519 ND_PRINT((ndo
, "%s", tstr
));
523 ND_PRINT((ndo
, "Tag[%u] ", *data
));
525 ND_PRINT((ndo
, "Tag[Unused] "));
530 case EGRESS_VLAN_NAME
:
531 ND_PRINT((ndo
, "%s (0x%02x) ",
532 tok2str(rfc4675_tagged
,"Unknown tag",*data
),
539 for (i
=0; *data
&& i
< length
; i
++, data
++)
540 ND_PRINT((ndo
, "%c", (*data
< 32 || *data
> 126) ? '.' : *data
));
545 ND_PRINT((ndo
, "%s", tstr
));
549 * print vendor specific attributes
552 print_vendor_attr(netdissect_options
*ndo
,
553 register const u_char
*data
, u_int length
, u_short attr_code _U_
)
562 ND_TCHECK2(*data
, 4);
563 vendor_id
= EXTRACT_32BITS(data
);
567 ND_PRINT((ndo
, "Vendor: %s (%u)",
568 tok2str(smi_values
,"Unknown",vendor_id
),
571 while (length
>= 2) {
572 ND_TCHECK2(*data
, 2);
574 vendor_type
= *(data
);
575 vendor_length
= *(data
+1);
577 if (vendor_length
< 2)
579 ND_PRINT((ndo
, "\n\t Vendor Attribute: %u, Length: %u (bogus, must be >= 2)",
584 if (vendor_length
> length
)
586 ND_PRINT((ndo
, "\n\t Vendor Attribute: %u, Length: %u (bogus, goes past end of vendor-specific attribute)",
594 ND_TCHECK2(*data
, vendor_length
);
596 ND_PRINT((ndo
, "\n\t Vendor Attribute: %u, Length: %u, Value: ",
599 for (idx
= 0; idx
< vendor_length
; idx
++, data
++)
600 ND_PRINT((ndo
, "%c", (*data
< 32 || *data
> 126) ? '.' : *data
));
601 length
-=vendor_length
;
606 ND_PRINT((ndo
, "%s", tstr
));
609 /******************************/
610 /* Print an attribute numeric */
611 /* value pointed by 'data' */
612 /* and 'length' size. */
613 /******************************/
614 /* Returns nothing. */
615 /******************************/
617 print_attr_num(netdissect_options
*ndo
,
618 register const u_char
*data
, u_int length
, u_short attr_code
)
624 ND_PRINT((ndo
, "ERROR: length %u != 4", length
));
628 ND_TCHECK2(data
[0],4);
629 /* This attribute has standard values */
630 if (attr_type
[attr_code
].siz_subtypes
)
632 static const char **table
;
634 table
= attr_type
[attr_code
].subtypes
;
636 if ( (attr_code
== TUNNEL_TYPE
) || (attr_code
== TUNNEL_MEDIUM
) )
639 ND_PRINT((ndo
, "Tag[Unused] "));
641 ND_PRINT((ndo
, "Tag[%d] ", *data
));
643 data_value
= EXTRACT_24BITS(data
);
647 data_value
= EXTRACT_32BITS(data
);
649 if ( data_value
<= (uint32_t)(attr_type
[attr_code
].siz_subtypes
- 1 +
650 attr_type
[attr_code
].first_subtype
) &&
651 data_value
>= attr_type
[attr_code
].first_subtype
)
652 ND_PRINT((ndo
, "%s", table
[data_value
]));
654 ND_PRINT((ndo
, "#%u", data_value
));
658 switch(attr_code
) /* Be aware of special cases... */
661 if (EXTRACT_32BITS( data
) == 0xFFFFFFFE )
662 ND_PRINT((ndo
, "NAS Select"));
664 ND_PRINT((ndo
, "%d", EXTRACT_32BITS(data
)));
667 case SESSION_TIMEOUT
:
670 case ACCT_SESSION_TIME
:
671 case ACCT_INT_INTERVAL
:
672 timeout
= EXTRACT_32BITS( data
);
674 ND_PRINT((ndo
, "%02d secs", timeout
));
677 if ( timeout
< 3600 )
678 ND_PRINT((ndo
, "%02d:%02d min",
679 timeout
/ 60, timeout
% 60));
681 ND_PRINT((ndo
, "%02d:%02d:%02d hours",
682 timeout
/ 3600, (timeout
% 3600) / 60,
688 if (EXTRACT_32BITS(data
) )
689 ND_PRINT((ndo
, "%d", EXTRACT_32BITS(data
)));
691 ND_PRINT((ndo
, "Unnumbered"));
694 case FRM_ATALK_NETWORK
:
695 if (EXTRACT_32BITS(data
) )
696 ND_PRINT((ndo
, "%d", EXTRACT_32BITS(data
)));
698 ND_PRINT((ndo
, "NAS assigned"));
701 case TUNNEL_PREFERENCE
:
703 ND_PRINT((ndo
, "Tag[%d] ", *data
));
705 ND_PRINT((ndo
, "Tag[Unused] "));
707 ND_PRINT((ndo
, "%d", EXTRACT_24BITS(data
)));
711 ND_PRINT((ndo
, "%s (0x%02x) ",
712 tok2str(rfc4675_tagged
,"Unknown tag",*data
),
715 ND_PRINT((ndo
, "%d", EXTRACT_24BITS(data
)));
719 ND_PRINT((ndo
, "%d", EXTRACT_32BITS(data
)));
729 ND_PRINT((ndo
, "%s", tstr
));
732 /*****************************/
733 /* Print an attribute IPv4 */
734 /* address value pointed by */
735 /* 'data' and 'length' size. */
736 /*****************************/
737 /* Returns nothing. */
738 /*****************************/
740 print_attr_address(netdissect_options
*ndo
,
741 register const u_char
*data
, u_int length
, u_short attr_code
)
745 ND_PRINT((ndo
, "ERROR: length %u != 4", length
));
749 ND_TCHECK2(data
[0],4);
755 if (EXTRACT_32BITS(data
) == 0xFFFFFFFF )
756 ND_PRINT((ndo
, "User Selected"));
758 if (EXTRACT_32BITS(data
) == 0xFFFFFFFE )
759 ND_PRINT((ndo
, "NAS Select"));
761 ND_PRINT((ndo
, "%s",ipaddr_string(ndo
, data
)));
765 ND_PRINT((ndo
, "%s", ipaddr_string(ndo
, data
)));
772 ND_PRINT((ndo
, "%s", tstr
));
775 /*************************************/
776 /* Print an attribute of 'secs since */
777 /* January 1, 1970 00:00 UTC' value */
778 /* pointed by 'data' and 'length' */
780 /*************************************/
781 /* Returns nothing. */
782 /*************************************/
784 print_attr_time(netdissect_options
*ndo
,
785 register const u_char
*data
, u_int length
, u_short attr_code _U_
)
792 ND_PRINT((ndo
, "ERROR: length %u != 4", length
));
796 ND_TCHECK2(data
[0],4);
798 attr_time
= EXTRACT_32BITS(data
);
799 strlcpy(string
, ctime(&attr_time
), sizeof(string
));
800 /* Get rid of the newline */
802 ND_PRINT((ndo
, "%.24s", string
));
806 ND_PRINT((ndo
, "%s", tstr
));
809 /***********************************/
810 /* Print an attribute of 'strange' */
811 /* data format pointed by 'data' */
812 /* and 'length' size. */
813 /***********************************/
814 /* Returns nothing. */
815 /***********************************/
817 print_attr_strange(netdissect_options
*ndo
,
818 register const u_char
*data
, u_int length
, u_short attr_code
)
827 ND_PRINT((ndo
, "ERROR: length %u != 16", length
));
830 ND_PRINT((ndo
, "User_challenge ("));
831 ND_TCHECK2(data
[0],8);
833 PRINT_HEX(len_data
, data
);
834 ND_PRINT((ndo
, ") User_resp("));
835 ND_TCHECK2(data
[0],8);
837 PRINT_HEX(len_data
, data
);
838 ND_PRINT((ndo
, ")"));
844 ND_PRINT((ndo
, "ERROR: length %u != 14", length
));
847 ND_TCHECK2(data
[0],1);
849 ND_PRINT((ndo
, "User can change password"));
851 ND_PRINT((ndo
, "User cannot change password"));
853 ND_TCHECK2(data
[0],1);
854 ND_PRINT((ndo
, ", Min password length: %d", *data
));
856 ND_PRINT((ndo
, ", created at: "));
857 ND_TCHECK2(data
[0],4);
859 PRINT_HEX(len_data
, data
);
860 ND_PRINT((ndo
, ", expires in: "));
861 ND_TCHECK2(data
[0],4);
863 PRINT_HEX(len_data
, data
);
864 ND_PRINT((ndo
, ", Current Time: "));
865 ND_TCHECK2(data
[0],4);
867 PRINT_HEX(len_data
, data
);
870 case ARAP_CHALLENGE_RESP
:
873 ND_PRINT((ndo
, "ERROR: length %u != 8", length
));
876 ND_TCHECK2(data
[0],8);
878 PRINT_HEX(len_data
, data
);
884 ND_PRINT((ndo
, "%s", tstr
));
888 radius_attrs_print(netdissect_options
*ndo
,
889 register const u_char
*attr
, u_int length
)
891 register const struct radius_attr
*rad_attr
= (const struct radius_attr
*)attr
;
892 const char *attr_string
;
898 ND_TCHECK(*rad_attr
);
900 if (rad_attr
->type
> 0 && rad_attr
->type
< TAM_SIZE(attr_type
))
901 attr_string
= attr_type
[rad_attr
->type
].name
;
903 attr_string
= "Unknown";
904 if (rad_attr
->len
< 2)
906 ND_PRINT((ndo
, "\n\t %s Attribute (%u), length: %u (bogus, must be >= 2)",
912 if (rad_attr
->len
> length
)
914 ND_PRINT((ndo
, "\n\t %s Attribute (%u), length: %u (bogus, goes past end of packet)",
920 ND_PRINT((ndo
, "\n\t %s Attribute (%u), length: %u, Value: ",
925 if (rad_attr
->type
< TAM_SIZE(attr_type
))
927 if (rad_attr
->len
> 2)
929 if ( attr_type
[rad_attr
->type
].print_func
)
930 (*attr_type
[rad_attr
->type
].print_func
)(
931 ndo
, ((const u_char
*)(rad_attr
+1)),
932 rad_attr
->len
- 2, rad_attr
->type
);
935 /* do we also want to see a hex dump ? */
936 if (ndo
->ndo_vflag
> 1)
937 print_unknown_data(ndo
, (const u_char
*)rad_attr
+2, "\n\t ", (rad_attr
->len
)-2);
939 length
-=(rad_attr
->len
);
940 rad_attr
= (const struct radius_attr
*)( ((const char *)(rad_attr
))+rad_attr
->len
);
945 ND_PRINT((ndo
, "%s", tstr
));
949 radius_print(netdissect_options
*ndo
,
950 const u_char
*dat
, u_int length
)
952 register const struct radius_hdr
*rad
;
955 ND_TCHECK2(*dat
, MIN_RADIUS_LEN
);
956 rad
= (const struct radius_hdr
*)dat
;
957 len
= EXTRACT_16BITS(&rad
->len
);
959 if (len
< MIN_RADIUS_LEN
)
961 ND_PRINT((ndo
, "%s", tstr
));
968 if (ndo
->ndo_vflag
< 1) {
969 ND_PRINT((ndo
, "RADIUS, %s (%u), id: 0x%02x length: %u",
970 tok2str(radius_command_values
,"Unknown Command",rad
->code
),
977 ND_PRINT((ndo
, "RADIUS, length: %u\n\t%s (%u), id: 0x%02x, Authenticator: ",
979 tok2str(radius_command_values
,"Unknown Command",rad
->code
),
983 for(auth_idx
=0; auth_idx
< 16; auth_idx
++)
984 ND_PRINT((ndo
, "%02x", rad
->auth
[auth_idx
]));
987 if (len
> MIN_RADIUS_LEN
)
988 radius_attrs_print(ndo
, dat
+ MIN_RADIUS_LEN
, len
- MIN_RADIUS_LEN
);
992 ND_PRINT((ndo
, "%s", tstr
));