2 * Copyright (C) Andrew Tridgell 1995-1999
4 * This software may be distributed either under the terms of the
5 * BSD-style license that accompanies tcpdump or the GNU GPL version 2
14 static const char rcsid
[] _U_
=
15 "@(#) $Header: /tcpdump/master/tcpdump/smbutil.c,v 1.32 2004-12-28 22:29:45 guy Exp $";
18 #include <tcpdump-stdinc.h>
24 #include "interface.h"
28 extern const u_char
*startbuf
;
31 * interpret a 32 bit dos packed date/time to some parameters
34 interpret_dos_date(u_int32_t date
, struct tm
*tp
)
36 u_int32_t p0
, p1
, p2
, p3
;
39 p1
= ((date
& 0xFF00) >> 8) & 0xFF;
40 p2
= ((date
& 0xFF0000) >> 16) & 0xFF;
41 p3
= ((date
& 0xFF000000) >> 24) & 0xFF;
43 tp
->tm_sec
= 2 * (p0
& 0x1F);
44 tp
->tm_min
= ((p0
>> 5) & 0xFF) + ((p1
& 0x7) << 3);
45 tp
->tm_hour
= (p1
>> 3) & 0xFF;
46 tp
->tm_mday
= (p2
& 0x1F);
47 tp
->tm_mon
= ((p2
>> 5) & 0xFF) + ((p3
& 0x1) << 3) - 1;
48 tp
->tm_year
= ((p3
>> 1) & 0xFF) + 80;
53 * create a unix date from a dos date
56 int_unix_date(u_int32_t dos_date
)
63 interpret_dos_date(dos_date
, &t
);
72 * create a unix date from a dos date
73 * in network byte order
76 make_unix_date(const u_char
*date_ptr
)
78 u_int32_t dos_date
= 0;
80 dos_date
= EXTRACT_LE_32BITS(date_ptr
);
82 return int_unix_date(dos_date
);
86 * create a unix date from a dos date
87 * in halfword-swapped network byte order!
90 make_unix_date2(const u_char
*date_ptr
)
94 x
= EXTRACT_LE_32BITS(date_ptr
);
95 x2
= ((x
& 0xFFFF) << 16) | ((x
& 0xFFFF0000) >> 16);
96 return int_unix_date(x2
);
100 * interpret an 8 byte "filetime" structure to a time_t
101 * It's originally in "100ns units since jan 1st 1601"
104 interpret_long_date(const u_char
*p
)
111 /* this gives us seconds since jan 1st 1601 (approx) */
112 d
= (EXTRACT_LE_32BITS(p
+ 4) * 256.0 + p
[3]) * (1.0e-7 * (1 << 24));
114 /* now adjust by 369 years to make the secs since 1970 */
115 d
-= 369.0 * 365.25 * 24 * 60 * 60;
117 /* and a fudge factor as we got it wrong by a few days */
118 d
+= (3 * 24 * 60 * 60 + 6 * 60 * 60 + 2);
131 * interpret the weird netbios "name". Return the name type, or -1 if
132 * we run past the end of the buffer
135 name_interpret(const u_char
*in
, const u_char
*maxbuf
, char *out
)
141 return(-1); /* name goes past the end of the buffer */
147 if (len
> 30 || len
< 1)
152 if (in
+ 1 >= maxbuf
)
153 return(-1); /* name goes past the end of the buffer */
154 if (in
[0] < 'A' || in
[0] > 'P' || in
[1] < 'A' || in
[1] > 'P') {
158 *out
= ((in
[0] - 'A') << 4) + (in
[1] - 'A');
172 * find a pointer to a netbios name
174 static const u_char
*
175 name_ptr(const u_char
*buf
, int ofs
, const u_char
*maxbuf
)
182 return(NULL
); /* name goes past the end of the buffer */
187 /* XXX - this should use the same code that the DNS dissector does */
188 if ((c
& 0xC0) == 0xC0) {
189 u_int16_t l
= EXTRACT_16BITS(buf
+ ofs
) & 0x3FFF;
191 /* We have a pointer that points to itself. */
196 return(NULL
); /* name goes past the end of the buffer */
203 return(NULL
); /* name goes past the end of the buffer */
207 * extract a netbios name from a buf
210 name_extract(const u_char
*buf
, int ofs
, const u_char
*maxbuf
, char *name
)
212 const u_char
*p
= name_ptr(buf
, ofs
, maxbuf
);
214 return(-1); /* error (probably name going past end of buffer) */
216 return(name_interpret(p
, maxbuf
, name
));
221 * return the total storage length of a mangled name
224 name_len(const unsigned char *s
, const unsigned char *maxbuf
)
226 const unsigned char *s0
= s
;
230 return(-1); /* name goes past the end of the buffer */
233 if ((c
& 0xC0) == 0xC0)
237 return(-1); /* name goes past the end of the buffer */
241 return(PTR_DIFF(s
, s0
) + 1);
244 return(-1); /* name goes past the end of the buffer */
248 print_asc(const unsigned char *buf
, int len
)
251 for (i
= 0; i
< len
; i
++)
256 name_type_str(int name_type
)
258 const char *f
= NULL
;
261 case 0: f
= "Workstation"; break;
262 case 0x03: f
= "Client?"; break;
263 case 0x20: f
= "Server"; break;
264 case 0x1d: f
= "Master Browser"; break;
265 case 0x1b: f
= "Domain Controller"; break;
266 case 0x1e: f
= "Browser Server"; break;
267 default: f
= "Unknown"; break;
273 print_data(const unsigned char *buf
, int len
)
279 printf("[%03X] ", i
);
280 for (i
= 0; i
< len
; /*nothing*/) {
281 printf("%02X ", buf
[i
] & 0xff);
286 print_asc(&buf
[i
- 16], 8);
288 print_asc(&buf
[i
- 8], 8);
291 printf("[%03X] ", i
);
304 n
= SMBMIN(8, i
% 16);
305 print_asc(&buf
[i
- (i
% 16)], n
);
309 print_asc(&buf
[i
- n
], n
);
316 write_bits(unsigned int val
, const char *fmt
)
321 while ((p
= strchr(fmt
, '|'))) {
322 size_t l
= PTR_DIFF(p
, fmt
);
323 if (l
&& (val
& (1 << i
)))
324 printf("%.*s ", (int)l
, fmt
);
330 /* convert a UCS2 string into iso-8859-1 string */
332 unistr(const u_char
*s
, int *len
, int use_unicode
)
334 static char buf
[1000];
338 *len
= strlen((const char *)s
) + 1;
339 return (const char *)s
;
343 * Skip padding that puts the string on an even boundary.
345 if (((s
- startbuf
) % 2) != 0)
350 if (s
[0] == 0 && s
[1] != 0) {
355 while (l
< (int)(sizeof(buf
) - 1) && s
[0] && s
[1] == 0) {
366 static const u_char
*
367 smb_fdata1(const u_char
*buf
, const char *fmt
, const u_char
*maxbuf
,
371 const char *attrib_fmt
= "READONLY|HIDDEN|SYSTEM|VOLUME|DIR|ARCHIVE|";
374 while (*fmt
&& buf
<maxbuf
) {
377 write_bits(buf
[0], attrib_fmt
);
383 write_bits(EXTRACT_LE_16BITS(buf
), attrib_fmt
);
394 p
= strchr(++fmt
, '}');
395 l
= PTR_DIFF(p
, fmt
);
397 if ((unsigned int)l
> sizeof(bitfmt
) - 1)
398 l
= sizeof(bitfmt
)-1;
400 strncpy(bitfmt
, fmt
, l
);
403 write_bits(buf
[0], bitfmt
);
410 int l
= atoi(fmt
+ 1);
413 while (isdigit((unsigned char)*fmt
))
426 printf("%u (0x%x)", x
, x
);
435 x
= reverse
? EXTRACT_16BITS(buf
) :
436 EXTRACT_LE_16BITS(buf
);
437 printf("%d (0x%x)", x
, x
);
446 x
= reverse
? EXTRACT_32BITS(buf
) :
447 EXTRACT_LE_32BITS(buf
);
448 printf("%d (0x%x)", x
, x
);
457 x
= reverse
? EXTRACT_64BITS(buf
) :
458 EXTRACT_LE_64BITS(buf
);
459 printf("%" PRIu64
" (0x%" PRIx64
")", x
, x
);
466 /* Weird mixed-endian length values in 64-bit locks */
470 x1
= reverse
? EXTRACT_32BITS(buf
) :
471 EXTRACT_LE_32BITS(buf
);
472 x2
= reverse
? EXTRACT_32BITS(buf
+ 4) :
473 EXTRACT_LE_32BITS(buf
+ 4);
474 x
= (((u_int64_t
)x1
) << 32) | x2
;
475 printf("%" PRIu64
" (0x%" PRIx64
")", x
, x
);
494 x
= reverse
? EXTRACT_16BITS(buf
) :
495 EXTRACT_LE_16BITS(buf
);
505 x
= reverse
? EXTRACT_32BITS(buf
) :
506 EXTRACT_LE_32BITS(buf
);
513 case 'R': /* like 'S', but always ASCII */
516 printf("%.*s", (int)PTR_DIFF(maxbuf
, buf
),
517 unistr(buf
, &len
, (*fmt
== 'R') ? 0 : unicodestr
));
523 case 'Y': /* like 'Z', but always ASCII */
525 if (*buf
!= 4 && *buf
!= 2)
526 printf("Error! ASCIIZ buffer of type %u (safety=%lu)\n", *buf
,
527 (unsigned long)PTR_DIFF(maxbuf
, buf
));
528 printf("%.*s", (int)PTR_DIFF(maxbuf
, buf
+ 1),
529 unistr(buf
+ 1, &len
, (*fmt
== 'Y') ? 0 : unicodestr
));
536 int l
= atoi(fmt
+ 1);
537 printf("%-*.*s", l
, l
, buf
);
540 while (isdigit((unsigned char)*fmt
))
546 int l
= atoi(fmt
+ 1);
548 printf("%02x", *buf
++);
550 while (isdigit((unsigned char)*fmt
))
563 name_type
= name_extract(startbuf
, PTR_DIFF(buf
, startbuf
),
567 len
= name_len(buf
, maxbuf
);
571 printf("%-15.15s NameType=0x%02X (%s)", nbuf
, name_type
,
572 name_type_str(name_type
));
576 printf("%-15.15s NameType=0x%02X (%s)", buf
, name_type
,
577 name_type_str(name_type
));
582 while (isdigit((unsigned char)*fmt
))
592 x
= EXTRACT_LE_32BITS(buf
);
594 switch (atoi(fmt
+ 1)) {
596 if (x
== 0 || x
== 0xFFFFFFFF)
599 t
= make_unix_date(buf
);
603 if (x
== 0 || x
== 0xFFFFFFFF)
606 t
= make_unix_date2(buf
);
610 t
= interpret_long_date(buf
);
617 tstring
= asctime(lt
);
619 tstring
= "(Can't convert time)\n";
622 printf("%s", tstring
);
624 while (isdigit((unsigned char)*fmt
))
635 if (buf
>= maxbuf
&& *fmt
)
636 printf("END OF BUFFER\n");
642 printf("WARNING: Short packet. Try increasing the snap length\n");
647 smb_fdata(const u_char
*buf
, const char *fmt
, const u_char
*maxbuf
,
650 static int depth
= 0;
658 while (buf
< maxbuf
) {
661 buf2
= smb_fdata(buf
, fmt
, maxbuf
, unicodestr
);
691 memset(s
, 0, sizeof(s
));
692 p
= strchr(fmt
, ']');
693 if ((size_t)(p
- fmt
+ 1) > sizeof(s
)) {
697 strncpy(s
, fmt
, p
- fmt
);
700 buf
= smb_fdata1(buf
, s
, maxbuf
, unicodestr
);
712 if (!depth
&& buf
< maxbuf
) {
713 size_t len
= PTR_DIFF(maxbuf
, buf
);
714 printf("Data: (%lu bytes)\n", (unsigned long)len
);
715 print_data(buf
, len
);
727 /* Dos Error Messages */
728 static err_code_struct dos_msgs
[] = {
729 { "ERRbadfunc", 1, "Invalid function." },
730 { "ERRbadfile", 2, "File not found." },
731 { "ERRbadpath", 3, "Directory invalid." },
732 { "ERRnofids", 4, "No file descriptors available" },
733 { "ERRnoaccess", 5, "Access denied." },
734 { "ERRbadfid", 6, "Invalid file handle." },
735 { "ERRbadmcb", 7, "Memory control blocks destroyed." },
736 { "ERRnomem", 8, "Insufficient server memory to perform the requested function." },
737 { "ERRbadmem", 9, "Invalid memory block address." },
738 { "ERRbadenv", 10, "Invalid environment." },
739 { "ERRbadformat", 11, "Invalid format." },
740 { "ERRbadaccess", 12, "Invalid open mode." },
741 { "ERRbaddata", 13, "Invalid data." },
742 { "ERR", 14, "reserved." },
743 { "ERRbaddrive", 15, "Invalid drive specified." },
744 { "ERRremcd", 16, "A Delete Directory request attempted to remove the server's current directory." },
745 { "ERRdiffdevice", 17, "Not same device." },
746 { "ERRnofiles", 18, "A File Search command can find no more files matching the specified criteria." },
747 { "ERRbadshare", 32, "The sharing mode specified for an Open conflicts with existing FIDs on the file." },
748 { "ERRlock", 33, "A Lock request conflicted with an existing lock or specified an invalid mode, or an Unlock requested attempted to remove a lock held by another process." },
749 { "ERRfilexists", 80, "The file named in a Create Directory, Make New File or Link request already exists." },
750 { "ERRbadpipe", 230, "Pipe invalid." },
751 { "ERRpipebusy", 231, "All instances of the requested pipe are busy." },
752 { "ERRpipeclosing", 232, "Pipe close in progress." },
753 { "ERRnotconnected", 233, "No process on other end of pipe." },
754 { "ERRmoredata", 234, "There is more data to be returned." },
758 /* Server Error Messages */
759 err_code_struct server_msgs
[] = {
760 { "ERRerror", 1, "Non-specific error code." },
761 { "ERRbadpw", 2, "Bad password - name/password pair in a Tree Connect or Session Setup are invalid." },
762 { "ERRbadtype", 3, "reserved." },
763 { "ERRaccess", 4, "The requester does not have the necessary access rights within the specified context for the requested function. The context is defined by the TID or the UID." },
764 { "ERRinvnid", 5, "The tree ID (TID) specified in a command was invalid." },
765 { "ERRinvnetname", 6, "Invalid network name in tree connect." },
766 { "ERRinvdevice", 7, "Invalid device - printer request made to non-printer connection or non-printer request made to printer connection." },
767 { "ERRqfull", 49, "Print queue full (files) -- returned by open print file." },
768 { "ERRqtoobig", 50, "Print queue full -- no space." },
769 { "ERRqeof", 51, "EOF on print queue dump." },
770 { "ERRinvpfid", 52, "Invalid print file FID." },
771 { "ERRsmbcmd", 64, "The server did not recognize the command received." },
772 { "ERRsrverror", 65, "The server encountered an internal error, e.g., system file unavailable." },
773 { "ERRfilespecs", 67, "The file handle (FID) and pathname parameters contained an invalid combination of values." },
774 { "ERRreserved", 68, "reserved." },
775 { "ERRbadpermits", 69, "The access permissions specified for a file or directory are not a valid combination. The server cannot set the requested attribute." },
776 { "ERRreserved", 70, "reserved." },
777 { "ERRsetattrmode", 71, "The attribute mode in the Set File Attribute request is invalid." },
778 { "ERRpaused", 81, "Server is paused." },
779 { "ERRmsgoff", 82, "Not receiving messages." },
780 { "ERRnoroom", 83, "No room to buffer message." },
781 { "ERRrmuns", 87, "Too many remote user names." },
782 { "ERRtimeout", 88, "Operation timed out." },
783 { "ERRnoresource", 89, "No resources currently available for request." },
784 { "ERRtoomanyuids", 90, "Too many UIDs active on this session." },
785 { "ERRbaduid", 91, "The UID is not known as a valid ID on this session." },
786 { "ERRusempx", 250, "Temp unable to support Raw, use MPX mode." },
787 { "ERRusestd", 251, "Temp unable to support Raw, use standard read/write." },
788 { "ERRcontmpx", 252, "Continue in MPX mode." },
789 { "ERRreserved", 253, "reserved." },
790 { "ERRreserved", 254, "reserved." },
791 { "ERRnosupport", 0xFFFF, "Function not supported." },
795 /* Hard Error Messages */
796 err_code_struct hard_msgs
[] = {
797 { "ERRnowrite", 19, "Attempt to write on write-protected diskette." },
798 { "ERRbadunit", 20, "Unknown unit." },
799 { "ERRnotready", 21, "Drive not ready." },
800 { "ERRbadcmd", 22, "Unknown command." },
801 { "ERRdata", 23, "Data error (CRC)." },
802 { "ERRbadreq", 24, "Bad request structure length." },
803 { "ERRseek", 25 , "Seek error." },
804 { "ERRbadmedia", 26, "Unknown media type." },
805 { "ERRbadsector", 27, "Sector not found." },
806 { "ERRnopaper", 28, "Printer out of paper." },
807 { "ERRwrite", 29, "Write fault." },
808 { "ERRread", 30, "Read fault." },
809 { "ERRgeneral", 31, "General failure." },
810 { "ERRbadshare", 32, "A open conflicts with an existing open." },
811 { "ERRlock", 33, "A Lock request conflicted with an existing lock or specified an invalid mode, or an Unlock requested attempted to remove a lock held by another process." },
812 { "ERRwrongdisk", 34, "The wrong disk was found in a drive." },
813 { "ERRFCBUnavail", 35, "No FCBs are available to process request." },
814 { "ERRsharebufexc", 36, "A sharing buffer has been exceeded." },
821 err_code_struct
*err_msgs
;
823 { 0, "SUCCESS", NULL
},
824 { 0x01, "ERRDOS", dos_msgs
},
825 { 0x02, "ERRSRV", server_msgs
},
826 { 0x03, "ERRHRD", hard_msgs
},
827 { 0x04, "ERRXOS", NULL
},
828 { 0xE1, "ERRRMX1", NULL
},
829 { 0xE2, "ERRRMX2", NULL
},
830 { 0xE3, "ERRRMX3", NULL
},
831 { 0xFF, "ERRCMD", NULL
},
836 * return a SMB error string from a SMB buffer
839 smb_errstr(int class, int num
)
841 static char ret
[128];
846 for (i
= 0; err_classes
[i
].class; i
++)
847 if (err_classes
[i
].code
== class) {
848 if (err_classes
[i
].err_msgs
) {
849 err_code_struct
*err
= err_classes
[i
].err_msgs
;
850 for (j
= 0; err
[j
].name
; j
++)
851 if (num
== err
[j
].code
) {
852 snprintf(ret
, sizeof(ret
), "%s - %s (%s)",
853 err_classes
[i
].class, err
[j
].name
, err
[j
].message
);
858 snprintf(ret
, sizeof(ret
), "%s - %d", err_classes
[i
].class, num
);
862 snprintf(ret
, sizeof(ret
), "ERROR: Unknown error (%d,%d)", class, num
);