X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/f9c2c905b118b69a0b102549c1b25cca871947b5..675f67a20b0a94eef8288b0016f959a1597615cc:/smbutil.c diff --git a/smbutil.c b/smbutil.c index 817573e4..63a36860 100644 --- a/smbutil.c +++ b/smbutil.c @@ -20,9 +20,20 @@ #include "extract.h" #include "smb.h" +static int stringlen_is_set; static uint32_t stringlen; extern const u_char *startbuf; +/* + * Reset SMB state. + */ +void +smb_reset(void) +{ + stringlen_is_set = 0; + stringlen = 0; +} + /* * interpret a 32 bit dos packed date/time to some parameters */ @@ -340,13 +351,13 @@ write_bits(netdissect_options *ndo, /* convert a UCS-2 string into an ASCII string */ #define MAX_UNISTR_SIZE 1000 -static const char * -unistr(netdissect_options *ndo, - const u_char *s, uint32_t *len, int use_unicode) +static const u_char * +unistr(netdissect_options *ndo, char (*buf)[MAX_UNISTR_SIZE+1], + const u_char *s, uint32_t strsize, int is_null_terminated, + int use_unicode) { - static char buf[MAX_UNISTR_SIZE+1]; + u_int c; size_t l = 0; - uint32_t strsize; const u_char *sp; if (use_unicode) { @@ -358,78 +369,108 @@ unistr(netdissect_options *ndo, s++; } } - if (*len == 0) { + if (is_null_terminated) { /* * Null-terminated string. + * Find the length, counting the terminating NUL. */ strsize = 0; sp = s; if (!use_unicode) { for (;;) { ND_TCHECK_1(sp); - *len += 1; - if (GET_U_1(sp) == 0) - break; + c = GET_U_1(sp); sp++; + strsize++; + if (c == '\0') + break; } - strsize = *len - 1; } else { for (;;) { ND_TCHECK_2(sp); - *len += 2; - if (GET_U_1(sp) == 0 && GET_U_1(sp + 1) == 0) - break; + c = GET_LE_U_2(sp); sp += 2; + strsize += 2; + if (c == '\0') + break; } - strsize = *len - 2; } - } else { - /* - * Counted string. - */ - strsize = *len; } if (!use_unicode) { while (strsize != 0) { - ND_TCHECK_1(s); - if (l >= MAX_UNISTR_SIZE) - break; - if (ND_ISPRINT(GET_U_1(s))) - buf[l] = GET_U_1(s); - else { - if (GET_U_1(s) == 0) - break; - buf[l] = '.'; - } - l++; + ND_TCHECK_1(s); + c = GET_U_1(s); s++; strsize--; + if (c == 0) { + /* + * Even counted strings may have embedded null + * terminators, so quit here, and skip past + * the rest of the data. + * + * Make sure, however, that the rest of the data + * is there, so we don't overflow the buffer when + * skipping past it. + */ + ND_TCHECK_LEN(s, strsize); + s += strsize; + strsize = 0; + break; + } + if (l < MAX_UNISTR_SIZE) { + if (ND_ISPRINT(c)) { + /* It's a printable ASCII character */ + (*buf)[l] = c; + } else { + /* It's a non-ASCII character or a non-printable ASCII character */ + (*buf)[l] = '.'; + } + l++; + } } } else { - while (strsize != 0) { + while (strsize > 1) { ND_TCHECK_2(s); - if (l >= MAX_UNISTR_SIZE) - break; - if (GET_U_1(s + 1) == 0 && ND_ISPRINT(GET_U_1(s))) { - /* It's a printable ASCII character */ - buf[l] = GET_U_1(s); - } else { - /* It's a non-ASCII character or a non-printable ASCII character */ - if (GET_U_1(s) == 0 && GET_U_1(s + 1) == 0) - break; - buf[l] = '.'; - } - l++; + c = GET_LE_U_2(s); s += 2; - if (strsize == 1) - break; strsize -= 2; + if (c == 0) { + /* + * Even counted strings may have embedded null + * terminators, so quit here, and skip past + * the rest of the data. + * + * Make sure, however, that the rest of the data + * is there, so we don't overflow the buffer when + * skipping past it. + */ + ND_TCHECK_LEN(s, strsize); + s += strsize; + strsize = 0; + break; + } + if (l < MAX_UNISTR_SIZE) { + if (ND_ISPRINT(c)) { + /* It's a printable ASCII character */ + (*buf)[l] = c; + } else { + /* It's a non-ASCII character or a non-printable ASCII character */ + (*buf)[l] = '.'; + } + l++; + } + } + if (strsize == 1) { + /* We have half of a code point; skip past it */ + ND_TCHECK_1(s); + s++; } } - buf[l] = 0; - return buf; + (*buf)[l] = 0; + return s; trunc: + (*buf)[l] = 0; return NULL; } @@ -440,6 +481,7 @@ smb_fdata1(netdissect_options *ndo, { int reverse = 0; const char *attrib_fmt = "READONLY|HIDDEN|SYSTEM|VOLUME|DIR|ARCHIVE|"; + char strbuf[MAX_UNISTR_SIZE+1]; while (*fmt && buf