Deleted Added
full compact
smbutil.c (127668) smbutil.c (146773)
1/*
2 * Copyright (C) Andrew Tridgell 1995-1999
3 *
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
6 * or later
7 */
8
9#ifdef HAVE_CONFIG_H
10#include "config.h"
11#endif
12
13#ifndef lint
14static const char rcsid[] _U_ =
1/*
2 * Copyright (C) Andrew Tridgell 1995-1999
3 *
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
6 * or later
7 */
8
9#ifdef HAVE_CONFIG_H
10#include "config.h"
11#endif
12
13#ifndef lint
14static const char rcsid[] _U_ =
15 "@(#) $Header: /tcpdump/master/tcpdump/smbutil.c,v 1.26.2.2 2003/11/16 08:51:56 guy Exp $";
15 "@(#) $Header: /tcpdump/master/tcpdump/smbutil.c,v 1.36 2005/01/29 10:37:02 guy Exp $";
16#endif
17
18#include <tcpdump-stdinc.h>
19
20#include <stdio.h>
21#include <stdlib.h>
22#include <string.h>
23
24#include "interface.h"
25#include "extract.h"
26#include "smb.h"
27
16#endif
17
18#include <tcpdump-stdinc.h>
19
20#include <stdio.h>
21#include <stdlib.h>
22#include <string.h>
23
24#include "interface.h"
25#include "extract.h"
26#include "smb.h"
27
28static u_int32_t stringlen;
28extern const u_char *startbuf;
29
30/*
31 * interpret a 32 bit dos packed date/time to some parameters
32 */
33static void
34interpret_dos_date(u_int32_t date, struct tm *tp)
35{

--- 65 unchanged lines hidden (view full) ---

101 * It's originally in "100ns units since jan 1st 1601"
102 */
103static time_t
104interpret_long_date(const u_char *p)
105{
106 double d;
107 time_t ret;
108
29extern const u_char *startbuf;
30
31/*
32 * interpret a 32 bit dos packed date/time to some parameters
33 */
34static void
35interpret_dos_date(u_int32_t date, struct tm *tp)
36{

--- 65 unchanged lines hidden (view full) ---

102 * It's originally in "100ns units since jan 1st 1601"
103 */
104static time_t
105interpret_long_date(const u_char *p)
106{
107 double d;
108 time_t ret;
109
109 TCHECK2(p[4], 4);
110
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));
113
114 /* now adjust by 369 years to make the secs since 1970 */
115 d -= 369.0 * 365.25 * 24 * 60 * 60;
116
117 /* and a fudge factor as we got it wrong by a few days */
118 d += (3 * 24 * 60 * 60 + 6 * 60 * 60 + 2);
119
120 if (d < 0)
121 return(0);
122
123 ret = (time_t)d;
124
125 return(ret);
110 /* this gives us seconds since jan 1st 1601 (approx) */
111 d = (EXTRACT_LE_32BITS(p + 4) * 256.0 + p[3]) * (1.0e-7 * (1 << 24));
112
113 /* now adjust by 369 years to make the secs since 1970 */
114 d -= 369.0 * 365.25 * 24 * 60 * 60;
115
116 /* and a fudge factor as we got it wrong by a few days */
117 d += (3 * 24 * 60 * 60 + 6 * 60 * 60 + 2);
118
119 if (d < 0)
120 return(0);
121
122 ret = (time_t)d;
123
124 return(ret);
126trunc:
127 return(0);
128}
129
130/*
131 * interpret the weird netbios "name". Return the name type, or -1 if
132 * we run past the end of the buffer
133 */
134static int
135name_interpret(const u_char *in, const u_char *maxbuf, char *out)

--- 45 unchanged lines hidden (view full) ---

181 if (p >= maxbuf)
182 return(NULL); /* name goes past the end of the buffer */
183 TCHECK2(*p, 1);
184
185 c = *p;
186
187 /* XXX - this should use the same code that the DNS dissector does */
188 if ((c & 0xC0) == 0xC0) {
125}
126
127/*
128 * interpret the weird netbios "name". Return the name type, or -1 if
129 * we run past the end of the buffer
130 */
131static int
132name_interpret(const u_char *in, const u_char *maxbuf, char *out)

--- 45 unchanged lines hidden (view full) ---

178 if (p >= maxbuf)
179 return(NULL); /* name goes past the end of the buffer */
180 TCHECK2(*p, 1);
181
182 c = *p;
183
184 /* XXX - this should use the same code that the DNS dissector does */
185 if ((c & 0xC0) == 0xC0) {
189 u_int16_t l = EXTRACT_16BITS(buf + ofs) & 0x3FFF;
186 u_int16_t l;
187
188 TCHECK2(*p, 2);
189 if ((p + 1) >= maxbuf)
190 return(NULL); /* name goes past the end of the buffer */
191 l = EXTRACT_16BITS(p) & 0x3FFF;
190 if (l == 0) {
191 /* We have a pointer that points to itself. */
192 return(NULL);
193 }
194 p = buf + l;
195 if (p >= maxbuf)
196 return(NULL); /* name goes past the end of the buffer */
197 TCHECK2(*p, 1);
192 if (l == 0) {
193 /* We have a pointer that points to itself. */
194 return(NULL);
195 }
196 p = buf + l;
197 if (p >= maxbuf)
198 return(NULL); /* name goes past the end of the buffer */
199 TCHECK2(*p, 1);
198 return(buf + l);
199 } else
200 return(buf + ofs);
200 }
201 return(p);
201
202trunc:
203 return(NULL); /* name goes past the end of the buffer */
204}
205
206/*
207 * extract a netbios name from a buf
208 */

--- 114 unchanged lines hidden (view full) ---

323 if (l && (val & (1 << i)))
324 printf("%.*s ", (int)l, fmt);
325 fmt = p + 1;
326 i++;
327 }
328}
329
330/* convert a UCS2 string into iso-8859-1 string */
202
203trunc:
204 return(NULL); /* name goes past the end of the buffer */
205}
206
207/*
208 * extract a netbios name from a buf
209 */

--- 114 unchanged lines hidden (view full) ---

324 if (l && (val & (1 << i)))
325 printf("%.*s ", (int)l, fmt);
326 fmt = p + 1;
327 i++;
328 }
329}
330
331/* convert a UCS2 string into iso-8859-1 string */
332#define MAX_UNISTR_SIZE 1000
331static const char *
333static const char *
332unistr(const u_char *s, int *len)
334unistr(const u_char *s, u_int32_t *len, int use_unicode)
333{
335{
334 static char buf[1000];
335 int l=0;
336 static int use_unicode = -1;
336 static char buf[MAX_UNISTR_SIZE+1];
337 size_t l = 0;
338 u_int32_t strsize;
339 const u_char *sp;
337
340
338 if (use_unicode == -1) {
339 char *p = getenv("USE_UNICODE");
340 if (p && (atoi(p) == 1))
341 use_unicode = 1;
342 else
343 use_unicode = 0;
341 if (use_unicode) {
342 /*
343 * Skip padding that puts the string on an even boundary.
344 */
345 if (((s - startbuf) % 2) != 0) {
346 TCHECK(s[0]);
347 s++;
348 }
344 }
349 }
345
346 /* maybe it isn't unicode - a cheap trick */
347 if (!use_unicode || (s[0] && s[1])) {
348 *len = strlen((const char *)s) + 1;
349 return (const char *)s;
350 if (*len == 0) {
351 /*
352 * Null-terminated string.
353 */
354 strsize = 0;
355 sp = s;
356 if (!use_unicode) {
357 for (;;) {
358 TCHECK(sp[0]);
359 *len += 1;
360 if (sp[0] == 0)
361 break;
362 sp++;
363 }
364 strsize = *len - 1;
365 } else {
366 for (;;) {
367 TCHECK2(sp[0], 2);
368 *len += 2;
369 if (sp[0] == 0 && sp[1] == 0)
370 break;
371 sp += 2;
372 }
373 strsize = *len - 2;
374 }
375 } else {
376 /*
377 * Counted string.
378 */
379 strsize = *len;
350 }
380 }
351
352 *len = 0;
353
354 if (s[0] == 0 && s[1] != 0) {
355 s++;
356 *len = 1;
381 if (!use_unicode) {
382 while (strsize != 0) {
383 TCHECK(s[0]);
384 if (l >= MAX_UNISTR_SIZE)
385 break;
386 if (isprint(s[0]))
387 buf[l] = s[0];
388 else {
389 if (s[0] == 0)
390 break;
391 buf[l] = '.';
392 }
393 l++;
394 s++;
395 strsize--;
396 }
397 } else {
398 while (strsize != 0) {
399 TCHECK2(s[0], 2);
400 if (l >= MAX_UNISTR_SIZE)
401 break;
402 if (s[1] == 0 && isprint(s[0])) {
403 /* It's a printable ASCII character */
404 buf[l] = s[0];
405 } else {
406 /* It's a non-ASCII character or a non-printable ASCII character */
407 if (s[0] == 0 && s[1] == 0)
408 break;
409 buf[l] = '.';
410 }
411 l++;
412 s += 2;
413 if (strsize == 1)
414 break;
415 strsize -= 2;
416 }
357 }
417 }
358
359 while (l < (int)(sizeof(buf) - 1) && s[0] && s[1] == 0) {
360 buf[l] = s[0];
361 s += 2;
362 l++;
363 *len += 2;
364 }
365 buf[l] = 0;
418 buf[l] = 0;
366 *len += 2;
367 return buf;
419 return buf;
420
421trunc:
422 return NULL;
368}
369
370static const u_char *
423}
424
425static const u_char *
371smb_fdata1(const u_char *buf, const char *fmt, const u_char *maxbuf)
426smb_fdata1(const u_char *buf, const char *fmt, const u_char *maxbuf,
427 int unicodestr)
372{
373 int reverse = 0;
374 const char *attrib_fmt = "READONLY|HIDDEN|SYSTEM|VOLUME|DIR|ARCHIVE|";
375 int len;
376
377 while (*fmt && buf<maxbuf) {
378 switch (*fmt) {
379 case 'a':
428{
429 int reverse = 0;
430 const char *attrib_fmt = "READONLY|HIDDEN|SYSTEM|VOLUME|DIR|ARCHIVE|";
431 int len;
432
433 while (*fmt && buf<maxbuf) {
434 switch (*fmt) {
435 case 'a':
436 TCHECK(buf[0]);
380 write_bits(buf[0], attrib_fmt);
381 buf++;
382 fmt++;
383 break;
384
385 case 'A':
437 write_bits(buf[0], attrib_fmt);
438 buf++;
439 fmt++;
440 break;
441
442 case 'A':
443 TCHECK2(buf[0], 2);
386 write_bits(EXTRACT_LE_16BITS(buf), attrib_fmt);
387 buf += 2;
388 fmt++;
389 break;
390
391 case '{':
392 {
393 char bitfmt[128];

--- 4 unchanged lines hidden (view full) ---

398 l = PTR_DIFF(p, fmt);
399
400 if ((unsigned int)l > sizeof(bitfmt) - 1)
401 l = sizeof(bitfmt)-1;
402
403 strncpy(bitfmt, fmt, l);
404 bitfmt[l] = '\0';
405 fmt = p + 1;
444 write_bits(EXTRACT_LE_16BITS(buf), attrib_fmt);
445 buf += 2;
446 fmt++;
447 break;
448
449 case '{':
450 {
451 char bitfmt[128];

--- 4 unchanged lines hidden (view full) ---

456 l = PTR_DIFF(p, fmt);
457
458 if ((unsigned int)l > sizeof(bitfmt) - 1)
459 l = sizeof(bitfmt)-1;
460
461 strncpy(bitfmt, fmt, l);
462 bitfmt[l] = '\0';
463 fmt = p + 1;
464 TCHECK(buf[0]);
406 write_bits(buf[0], bitfmt);
407 buf++;
408 break;
409 }
410
411 case 'P':
412 {
413 int l = atoi(fmt + 1);
465 write_bits(buf[0], bitfmt);
466 buf++;
467 break;
468 }
469
470 case 'P':
471 {
472 int l = atoi(fmt + 1);
473 TCHECK2(buf[0], l);
414 buf += l;
415 fmt++;
416 while (isdigit((unsigned char)*fmt))
417 fmt++;
418 break;
419 }
420 case 'r':
421 reverse = !reverse;
422 fmt++;
423 break;
474 buf += l;
475 fmt++;
476 while (isdigit((unsigned char)*fmt))
477 fmt++;
478 break;
479 }
480 case 'r':
481 reverse = !reverse;
482 fmt++;
483 break;
424 case 'D':
484 case 'b':
425 {
426 unsigned int x;
485 {
486 unsigned int x;
427
428 TCHECK2(buf[0], 4);
429 x = reverse ? EXTRACT_32BITS(buf) : EXTRACT_LE_32BITS(buf);
430 printf("%d (0x%x)", x, x);
431 buf += 4;
487 TCHECK(buf[0]);
488 x = buf[0];
489 printf("%u (0x%x)", x, x);
490 buf += 1;
432 fmt++;
433 break;
434 }
491 fmt++;
492 break;
493 }
435 case 'L':
436 {
437 unsigned int x1, x2;
438
439 TCHECK2(buf[4], 4);
440 x1 = reverse ? EXTRACT_32BITS(buf) :
441 EXTRACT_LE_32BITS(buf);
442 x2 = reverse ? EXTRACT_32BITS(buf + 4) :
443 EXTRACT_LE_32BITS(buf + 4);
444 if (x2)
445 printf("0x%08x:%08x", x2, x1);
446 else
447 printf("%d (0x%08x%08x)", x1, x2, x1);
448 buf += 8;
449 fmt++;
450 break;
451 }
452 case 'd':
453 {
454 unsigned int x;
455 TCHECK2(buf[0], 2);
456 x = reverse ? EXTRACT_16BITS(buf) :
457 EXTRACT_LE_16BITS(buf);
458 printf("%d (0x%x)", x, x);
459 buf += 2;
460 fmt++;
461 break;
462 }
494 case 'd':
495 {
496 unsigned int x;
497 TCHECK2(buf[0], 2);
498 x = reverse ? EXTRACT_16BITS(buf) :
499 EXTRACT_LE_16BITS(buf);
500 printf("%d (0x%x)", x, x);
501 buf += 2;
502 fmt++;
503 break;
504 }
463 case 'W':
505 case 'D':
464 {
465 unsigned int x;
466 TCHECK2(buf[0], 4);
467 x = reverse ? EXTRACT_32BITS(buf) :
468 EXTRACT_LE_32BITS(buf);
506 {
507 unsigned int x;
508 TCHECK2(buf[0], 4);
509 x = reverse ? EXTRACT_32BITS(buf) :
510 EXTRACT_LE_32BITS(buf);
469 printf("0x%X", x);
511 printf("%d (0x%x)", x, x);
470 buf += 4;
471 fmt++;
472 break;
473 }
512 buf += 4;
513 fmt++;
514 break;
515 }
516 case 'L':
517 {
518 u_int64_t x;
519 TCHECK2(buf[0], 8);
520 x = reverse ? EXTRACT_64BITS(buf) :
521 EXTRACT_LE_64BITS(buf);
522 printf("%" PRIu64 " (0x%" PRIx64 ")", x, x);
523 buf += 8;
524 fmt++;
525 break;
526 }
527 case 'M':
528 {
529 /* Weird mixed-endian length values in 64-bit locks */
530 u_int32_t x1, x2;
531 u_int64_t x;
532 TCHECK2(buf[0], 8);
533 x1 = reverse ? EXTRACT_32BITS(buf) :
534 EXTRACT_LE_32BITS(buf);
535 x2 = reverse ? EXTRACT_32BITS(buf + 4) :
536 EXTRACT_LE_32BITS(buf + 4);
537 x = (((u_int64_t)x1) << 32) | x2;
538 printf("%" PRIu64 " (0x%" PRIx64 ")", x, x);
539 buf += 8;
540 fmt++;
541 break;
542 }
543 case 'B':
544 {
545 unsigned int x;
546 TCHECK(buf[0]);
547 x = buf[0];
548 printf("0x%X", x);
549 buf += 1;
550 fmt++;
551 break;
552 }
474 case 'w':
475 {
476 unsigned int x;
477 TCHECK2(buf[0], 2);
478 x = reverse ? EXTRACT_16BITS(buf) :
479 EXTRACT_LE_16BITS(buf);
480 printf("0x%X", x);
481 buf += 2;
482 fmt++;
483 break;
484 }
553 case 'w':
554 {
555 unsigned int x;
556 TCHECK2(buf[0], 2);
557 x = reverse ? EXTRACT_16BITS(buf) :
558 EXTRACT_LE_16BITS(buf);
559 printf("0x%X", x);
560 buf += 2;
561 fmt++;
562 break;
563 }
485 case 'B':
564 case 'W':
486 {
487 unsigned int x;
565 {
566 unsigned int x;
488 TCHECK(buf[0]);
489 x = buf[0];
567 TCHECK2(buf[0], 4);
568 x = reverse ? EXTRACT_32BITS(buf) :
569 EXTRACT_LE_32BITS(buf);
490 printf("0x%X", x);
570 printf("0x%X", x);
491 buf += 1;
571 buf += 4;
492 fmt++;
493 break;
494 }
572 fmt++;
573 break;
574 }
495 case 'b':
575 case 'l':
496 {
576 {
497 unsigned int x;
498 TCHECK(buf[0]);
499 x = buf[0];
500 printf("%u (0x%x)", x, x);
501 buf += 1;
502 fmt++;
577 fmt++;
578 switch (*fmt) {
579
580 case 'b':
581 TCHECK(buf[0]);
582 stringlen = buf[0];
583 printf("%u", stringlen);
584 buf += 1;
585 break;
586
587 case 'd':
588 TCHECK2(buf[0], 2);
589 stringlen = reverse ? EXTRACT_16BITS(buf) :
590 EXTRACT_LE_16BITS(buf);
591 printf("%u", stringlen);
592 buf += 2;
593 break;
594
595 case 'D':
596 TCHECK2(buf[0], 4);
597 stringlen = reverse ? EXTRACT_32BITS(buf) :
598 EXTRACT_LE_32BITS(buf);
599 printf("%u", stringlen);
600 buf += 4;
601 break;
602 }
603 fmt++;
503 break;
504 }
505 case 'S':
604 break;
605 }
606 case 'S':
607 case 'R': /* like 'S', but always ASCII */
506 {
507 /*XXX unistr() */
608 {
609 /*XXX unistr() */
508 printf("%.*s", (int)PTR_DIFF(maxbuf, buf), unistr(buf, &len));
610 const char *s;
611 len = 0;
612 s = unistr(buf, &len, (*fmt == 'R') ? 0 : unicodestr);
613 if (s == NULL)
614 goto trunc;
615 printf("%s", s);
509 buf += len;
510 fmt++;
511 break;
512 }
513 case 'Z':
616 buf += len;
617 fmt++;
618 break;
619 }
620 case 'Z':
621 case 'Y': /* like 'Z', but always ASCII */
514 {
622 {
515 if (*buf != 4 && *buf != 2)
516 printf("Error! ASCIIZ buffer of type %u (safety=%lu)\n", *buf,
517 (unsigned long)PTR_DIFF(maxbuf, buf));
518 printf("%.*s", (int)PTR_DIFF(maxbuf, buf + 1),
519 unistr(buf + 1, &len));
623 const char *s;
624 TCHECK(*buf);
625 if (*buf != 4 && *buf != 2) {
626 printf("Error! ASCIIZ buffer of type %u", *buf);
627 return maxbuf; /* give up */
628 }
629 len = 0;
630 s = unistr(buf + 1, &len, (*fmt == 'Y') ? 0 : unicodestr);
631 if (s == NULL)
632 goto trunc;
633 printf("%s", s);
520 buf += len + 1;
521 fmt++;
522 break;
523 }
524 case 's':
525 {
526 int l = atoi(fmt + 1);
634 buf += len + 1;
635 fmt++;
636 break;
637 }
638 case 's':
639 {
640 int l = atoi(fmt + 1);
641 TCHECK2(*buf, l);
527 printf("%-*.*s", l, l, buf);
528 buf += l;
529 fmt++;
530 while (isdigit((unsigned char)*fmt))
531 fmt++;
532 break;
533 }
642 printf("%-*.*s", l, l, buf);
643 buf += l;
644 fmt++;
645 while (isdigit((unsigned char)*fmt))
646 fmt++;
647 break;
648 }
649 case 'c':
650 {
651 TCHECK2(*buf, stringlen);
652 printf("%-*.*s", (int)stringlen, (int)stringlen, buf);
653 buf += stringlen;
654 fmt++;
655 while (isdigit((unsigned char)*fmt))
656 fmt++;
657 break;
658 }
659 case 'C':
660 {
661 const char *s;
662 s = unistr(buf, &stringlen, unicodestr);
663 if (s == NULL)
664 goto trunc;
665 printf("%s", s);
666 buf += stringlen;
667 fmt++;
668 break;
669 }
534 case 'h':
535 {
536 int l = atoi(fmt + 1);
670 case 'h':
671 {
672 int l = atoi(fmt + 1);
673 TCHECK2(*buf, l);
537 while (l--)
538 printf("%02x", *buf++);
539 fmt++;
540 while (isdigit((unsigned char)*fmt))
541 fmt++;
542 break;
543 }
544 case 'n':

--- 12 unchanged lines hidden (view full) ---

557 len = name_len(buf, maxbuf);
558 if (len < 0)
559 goto trunc;
560 buf += len;
561 printf("%-15.15s NameType=0x%02X (%s)", nbuf, name_type,
562 name_type_str(name_type));
563 break;
564 case 2:
674 while (l--)
675 printf("%02x", *buf++);
676 fmt++;
677 while (isdigit((unsigned char)*fmt))
678 fmt++;
679 break;
680 }
681 case 'n':

--- 12 unchanged lines hidden (view full) ---

694 len = name_len(buf, maxbuf);
695 if (len < 0)
696 goto trunc;
697 buf += len;
698 printf("%-15.15s NameType=0x%02X (%s)", nbuf, name_type,
699 name_type_str(name_type));
700 break;
701 case 2:
702 TCHECK(buf[15]);
565 name_type = buf[15];
566 printf("%-15.15s NameType=0x%02X (%s)", buf, name_type,
567 name_type_str(name_type));
568 buf += 16;
569 break;
570 }
571 fmt++;
572 while (isdigit((unsigned char)*fmt))
573 fmt++;
574 break;
575 }
576 case 'T':
577 {
578 time_t t;
579 struct tm *lt;
580 const char *tstring;
581 u_int32_t x;
703 name_type = buf[15];
704 printf("%-15.15s NameType=0x%02X (%s)", buf, name_type,
705 name_type_str(name_type));
706 buf += 16;
707 break;
708 }
709 fmt++;
710 while (isdigit((unsigned char)*fmt))
711 fmt++;
712 break;
713 }
714 case 'T':
715 {
716 time_t t;
717 struct tm *lt;
718 const char *tstring;
719 u_int32_t x;
582 x = EXTRACT_LE_32BITS(buf);
583
584 switch (atoi(fmt + 1)) {
585 case 1:
720
721 switch (atoi(fmt + 1)) {
722 case 1:
723 TCHECK2(buf[0], 4);
724 x = EXTRACT_LE_32BITS(buf);
586 if (x == 0 || x == 0xFFFFFFFF)
587 t = 0;
588 else
589 t = make_unix_date(buf);
590 buf += 4;
591 break;
592 case 2:
725 if (x == 0 || x == 0xFFFFFFFF)
726 t = 0;
727 else
728 t = make_unix_date(buf);
729 buf += 4;
730 break;
731 case 2:
732 TCHECK2(buf[0], 4);
733 x = EXTRACT_LE_32BITS(buf);
593 if (x == 0 || x == 0xFFFFFFFF)
594 t = 0;
595 else
596 t = make_unix_date2(buf);
597 buf += 4;
598 break;
599 case 3:
734 if (x == 0 || x == 0xFFFFFFFF)
735 t = 0;
736 else
737 t = make_unix_date2(buf);
738 buf += 4;
739 break;
740 case 3:
741 TCHECK2(buf[0], 8);
600 t = interpret_long_date(buf);
601 buf += 8;
602 break;
603 }
604 if (t != 0) {
605 lt = localtime(&t);
606 if (lt != NULL)
607 tstring = asctime(lt);

--- 21 unchanged lines hidden (view full) ---

629
630trunc:
631 printf("\n");
632 printf("WARNING: Short packet. Try increasing the snap length\n");
633 return(NULL);
634}
635
636const u_char *
742 t = interpret_long_date(buf);
743 buf += 8;
744 break;
745 }
746 if (t != 0) {
747 lt = localtime(&t);
748 if (lt != NULL)
749 tstring = asctime(lt);

--- 21 unchanged lines hidden (view full) ---

771
772trunc:
773 printf("\n");
774 printf("WARNING: Short packet. Try increasing the snap length\n");
775 return(NULL);
776}
777
778const u_char *
637smb_fdata(const u_char *buf, const char *fmt, const u_char *maxbuf)
779smb_fdata(const u_char *buf, const char *fmt, const u_char *maxbuf,
780 int unicodestr)
638{
639 static int depth = 0;
640 char s[128];
641 char *p;
642
643 while (*fmt) {
644 switch (*fmt) {
645 case '*':
646 fmt++;
647 while (buf < maxbuf) {
648 const u_char *buf2;
649 depth++;
781{
782 static int depth = 0;
783 char s[128];
784 char *p;
785
786 while (*fmt) {
787 switch (*fmt) {
788 case '*':
789 fmt++;
790 while (buf < maxbuf) {
791 const u_char *buf2;
792 depth++;
650 buf2 = smb_fdata(buf, fmt, maxbuf);
793 buf2 = smb_fdata(buf, fmt, maxbuf, unicodestr);
651 depth--;
652 if (buf2 == NULL)
653 return(NULL);
654 if (buf2 == buf)
655 return(buf);
656 buf = buf2;
657 }
658 return(buf);

--- 22 unchanged lines hidden (view full) ---

681 p = strchr(fmt, ']');
682 if ((size_t)(p - fmt + 1) > sizeof(s)) {
683 /* overrun */
684 return(buf);
685 }
686 strncpy(s, fmt, p - fmt);
687 s[p - fmt] = '\0';
688 fmt = p + 1;
794 depth--;
795 if (buf2 == NULL)
796 return(NULL);
797 if (buf2 == buf)
798 return(buf);
799 buf = buf2;
800 }
801 return(buf);

--- 22 unchanged lines hidden (view full) ---

824 p = strchr(fmt, ']');
825 if ((size_t)(p - fmt + 1) > sizeof(s)) {
826 /* overrun */
827 return(buf);
828 }
829 strncpy(s, fmt, p - fmt);
830 s[p - fmt] = '\0';
831 fmt = p + 1;
689 buf = smb_fdata1(buf, s, maxbuf);
832 buf = smb_fdata1(buf, s, maxbuf, unicodestr);
690 if (buf == NULL)
691 return(NULL);
692 break;
693
694 default:
695 putchar(*fmt);
696 fmt++;
697 fflush(stdout);

--- 10 unchanged lines hidden (view full) ---

708}
709
710typedef struct {
711 const char *name;
712 int code;
713 const char *message;
714} err_code_struct;
715
833 if (buf == NULL)
834 return(NULL);
835 break;
836
837 default:
838 putchar(*fmt);
839 fmt++;
840 fflush(stdout);

--- 10 unchanged lines hidden (view full) ---

851}
852
853typedef struct {
854 const char *name;
855 int code;
856 const char *message;
857} err_code_struct;
858
716/* Dos Error Messages */
717static err_code_struct dos_msgs[] = {
859/* DOS Error Messages */
860static const err_code_struct dos_msgs[] = {
718 { "ERRbadfunc", 1, "Invalid function." },
719 { "ERRbadfile", 2, "File not found." },
720 { "ERRbadpath", 3, "Directory invalid." },
721 { "ERRnofids", 4, "No file descriptors available" },
722 { "ERRnoaccess", 5, "Access denied." },
723 { "ERRbadfid", 6, "Invalid file handle." },
724 { "ERRbadmcb", 7, "Memory control blocks destroyed." },
725 { "ERRnomem", 8, "Insufficient server memory to perform the requested function." },
726 { "ERRbadmem", 9, "Invalid memory block address." },
727 { "ERRbadenv", 10, "Invalid environment." },
728 { "ERRbadformat", 11, "Invalid format." },
729 { "ERRbadaccess", 12, "Invalid open mode." },
730 { "ERRbaddata", 13, "Invalid data." },
731 { "ERR", 14, "reserved." },
732 { "ERRbaddrive", 15, "Invalid drive specified." },
861 { "ERRbadfunc", 1, "Invalid function." },
862 { "ERRbadfile", 2, "File not found." },
863 { "ERRbadpath", 3, "Directory invalid." },
864 { "ERRnofids", 4, "No file descriptors available" },
865 { "ERRnoaccess", 5, "Access denied." },
866 { "ERRbadfid", 6, "Invalid file handle." },
867 { "ERRbadmcb", 7, "Memory control blocks destroyed." },
868 { "ERRnomem", 8, "Insufficient server memory to perform the requested function." },
869 { "ERRbadmem", 9, "Invalid memory block address." },
870 { "ERRbadenv", 10, "Invalid environment." },
871 { "ERRbadformat", 11, "Invalid format." },
872 { "ERRbadaccess", 12, "Invalid open mode." },
873 { "ERRbaddata", 13, "Invalid data." },
874 { "ERR", 14, "reserved." },
875 { "ERRbaddrive", 15, "Invalid drive specified." },
733 { "ERRremcd", 16, "A Delete Directory request attempted to remove the server's current directory." },
876 { "ERRremcd", 16, "A Delete Directory request attempted to remove the server's current directory." },
734 { "ERRdiffdevice", 17, "Not same device." },
735 { "ERRnofiles", 18, "A File Search command can find no more files matching the specified criteria." },
877 { "ERRdiffdevice", 17, "Not same device." },
878 { "ERRnofiles", 18, "A File Search command can find no more files matching the specified criteria." },
736 { "ERRbadshare", 32, "The sharing mode specified for an Open conflicts with existing FIDs on the file." },
737 { "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." },
738 { "ERRfilexists", 80, "The file named in a Create Directory, Make New File or Link request already exists." },
879 { "ERRbadshare", 32, "The sharing mode specified for an Open conflicts with existing FIDs on the file." },
880 { "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." },
881 { "ERRfilexists", 80, "The file named in a Create Directory, Make New File or Link request already exists." },
739 { "ERRbadpipe", 230, "Pipe invalid." },
740 { "ERRpipebusy", 231, "All instances of the requested pipe are busy." },
741 { "ERRpipeclosing", 232, "Pipe close in progress." },
742 { "ERRnotconnected", 233, "No process on other end of pipe." },
743 { "ERRmoredata", 234, "There is more data to be returned." },
744 { NULL, -1, NULL }
745 };
746
747/* Server Error Messages */
748err_code_struct server_msgs[] = {
749 { "ERRerror", 1, "Non-specific error code." },
750 { "ERRbadpw", 2, "Bad password - name/password pair in a Tree Connect or Session Setup are invalid." },
751 { "ERRbadtype", 3, "reserved." },
882 { "ERRbadpipe", 230, "Pipe invalid." },
883 { "ERRpipebusy", 231, "All instances of the requested pipe are busy." },
884 { "ERRpipeclosing", 232, "Pipe close in progress." },
885 { "ERRnotconnected", 233, "No process on other end of pipe." },
886 { "ERRmoredata", 234, "There is more data to be returned." },
887 { NULL, -1, NULL }
888 };
889
890/* Server Error Messages */
891err_code_struct server_msgs[] = {
892 { "ERRerror", 1, "Non-specific error code." },
893 { "ERRbadpw", 2, "Bad password - name/password pair in a Tree Connect or Session Setup are invalid." },
894 { "ERRbadtype", 3, "reserved." },
752 { "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." },
895 { "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." },
753 { "ERRinvnid", 5, "The tree ID (TID) specified in a command was invalid." },
754 { "ERRinvnetname", 6, "Invalid network name in tree connect." },
896 { "ERRinvnid", 5, "The tree ID (TID) specified in a command was invalid." },
897 { "ERRinvnetname", 6, "Invalid network name in tree connect." },
755 { "ERRinvdevice", 7, "Invalid device - printer request made to non-printer connection or non-printer request made to printer connection." },
898 { "ERRinvdevice", 7, "Invalid device - printer request made to non-printer connection or non-printer request made to printer connection." },
756 { "ERRqfull", 49, "Print queue full (files) -- returned by open print file." },
757 { "ERRqtoobig", 50, "Print queue full -- no space." },
758 { "ERRqeof", 51, "EOF on print queue dump." },
759 { "ERRinvpfid", 52, "Invalid print file FID." },
760 { "ERRsmbcmd", 64, "The server did not recognize the command received." },
899 { "ERRqfull", 49, "Print queue full (files) -- returned by open print file." },
900 { "ERRqtoobig", 50, "Print queue full -- no space." },
901 { "ERRqeof", 51, "EOF on print queue dump." },
902 { "ERRinvpfid", 52, "Invalid print file FID." },
903 { "ERRsmbcmd", 64, "The server did not recognize the command received." },
761 { "ERRsrverror", 65, "The server encountered an internal error, e.g., system file unavailable." },
762 { "ERRfilespecs", 67, "The file handle (FID) and pathname parameters contained an invalid combination of values." },
904 { "ERRsrverror", 65, "The server encountered an internal error, e.g., system file unavailable." },
905 { "ERRfilespecs", 67, "The file handle (FID) and pathname parameters contained an invalid combination of values." },
763 { "ERRreserved", 68, "reserved." },
764 { "ERRbadpermits", 69, "The access permissions specified for a file or directory are not a valid combination. The server cannot set the requested attribute." },
765 { "ERRreserved", 70, "reserved." },
766 { "ERRsetattrmode", 71, "The attribute mode in the Set File Attribute request is invalid." },
767 { "ERRpaused", 81, "Server is paused." },
768 { "ERRmsgoff", 82, "Not receiving messages." },
769 { "ERRnoroom", 83, "No room to buffer message." },
770 { "ERRrmuns", 87, "Too many remote user names." },
771 { "ERRtimeout", 88, "Operation timed out." },
772 { "ERRnoresource", 89, "No resources currently available for request." },
773 { "ERRtoomanyuids", 90, "Too many UIDs active on this session." },
774 { "ERRbaduid", 91, "The UID is not known as a valid ID on this session." },
906 { "ERRreserved", 68, "reserved." },
907 { "ERRbadpermits", 69, "The access permissions specified for a file or directory are not a valid combination. The server cannot set the requested attribute." },
908 { "ERRreserved", 70, "reserved." },
909 { "ERRsetattrmode", 71, "The attribute mode in the Set File Attribute request is invalid." },
910 { "ERRpaused", 81, "Server is paused." },
911 { "ERRmsgoff", 82, "Not receiving messages." },
912 { "ERRnoroom", 83, "No room to buffer message." },
913 { "ERRrmuns", 87, "Too many remote user names." },
914 { "ERRtimeout", 88, "Operation timed out." },
915 { "ERRnoresource", 89, "No resources currently available for request." },
916 { "ERRtoomanyuids", 90, "Too many UIDs active on this session." },
917 { "ERRbaduid", 91, "The UID is not known as a valid ID on this session." },
775 { "ERRusempx", 250, "Temp unable to support Raw, use MPX mode." },
776 { "ERRusestd", 251, "Temp unable to support Raw, use standard read/write." },
918 { "ERRusempx", 250, "Temp unable to support Raw, use MPX mode." },
919 { "ERRusestd", 251, "Temp unable to support Raw, use standard read/write." },
777 { "ERRcontmpx", 252, "Continue in MPX mode." },
778 { "ERRreserved", 253, "reserved." },
779 { "ERRreserved", 254, "reserved." },
780 { "ERRnosupport", 0xFFFF, "Function not supported." },
781 { NULL, -1, NULL }
782};
783
784/* Hard Error Messages */

--- 7 unchanged lines hidden (view full) ---

792 { "ERRseek", 25 , "Seek error." },
793 { "ERRbadmedia", 26, "Unknown media type." },
794 { "ERRbadsector", 27, "Sector not found." },
795 { "ERRnopaper", 28, "Printer out of paper." },
796 { "ERRwrite", 29, "Write fault." },
797 { "ERRread", 30, "Read fault." },
798 { "ERRgeneral", 31, "General failure." },
799 { "ERRbadshare", 32, "A open conflicts with an existing open." },
920 { "ERRcontmpx", 252, "Continue in MPX mode." },
921 { "ERRreserved", 253, "reserved." },
922 { "ERRreserved", 254, "reserved." },
923 { "ERRnosupport", 0xFFFF, "Function not supported." },
924 { NULL, -1, NULL }
925};
926
927/* Hard Error Messages */

--- 7 unchanged lines hidden (view full) ---

935 { "ERRseek", 25 , "Seek error." },
936 { "ERRbadmedia", 26, "Unknown media type." },
937 { "ERRbadsector", 27, "Sector not found." },
938 { "ERRnopaper", 28, "Printer out of paper." },
939 { "ERRwrite", 29, "Write fault." },
940 { "ERRread", 30, "Read fault." },
941 { "ERRgeneral", 31, "General failure." },
942 { "ERRbadshare", 32, "A open conflicts with an existing open." },
800 { "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." },
943 { "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." },
801 { "ERRwrongdisk", 34, "The wrong disk was found in a drive." },
802 { "ERRFCBUnavail", 35, "No FCBs are available to process request." },
803 { "ERRsharebufexc", 36, "A sharing buffer has been exceeded." },
804 { NULL, -1, NULL }
805};
806
944 { "ERRwrongdisk", 34, "The wrong disk was found in a drive." },
945 { "ERRFCBUnavail", 35, "No FCBs are available to process request." },
946 { "ERRsharebufexc", 36, "A sharing buffer has been exceeded." },
947 { NULL, -1, NULL }
948};
949
807static struct {
950static const struct {
808 int code;
809 const char *class;
951 int code;
952 const char *class;
810 err_code_struct *err_msgs;
953 const err_code_struct *err_msgs;
811} err_classes[] = {
812 { 0, "SUCCESS", NULL },
813 { 0x01, "ERRDOS", dos_msgs },
814 { 0x02, "ERRSRV", server_msgs },
815 { 0x03, "ERRHRD", hard_msgs },
816 { 0x04, "ERRXOS", NULL },
817 { 0xE1, "ERRRMX1", NULL },
818 { 0xE2, "ERRRMX2", NULL },

--- 11 unchanged lines hidden (view full) ---

830 static char ret[128];
831 int i, j;
832
833 ret[0] = 0;
834
835 for (i = 0; err_classes[i].class; i++)
836 if (err_classes[i].code == class) {
837 if (err_classes[i].err_msgs) {
954} err_classes[] = {
955 { 0, "SUCCESS", NULL },
956 { 0x01, "ERRDOS", dos_msgs },
957 { 0x02, "ERRSRV", server_msgs },
958 { 0x03, "ERRHRD", hard_msgs },
959 { 0x04, "ERRXOS", NULL },
960 { 0xE1, "ERRRMX1", NULL },
961 { 0xE2, "ERRRMX2", NULL },

--- 11 unchanged lines hidden (view full) ---

973 static char ret[128];
974 int i, j;
975
976 ret[0] = 0;
977
978 for (i = 0; err_classes[i].class; i++)
979 if (err_classes[i].code == class) {
980 if (err_classes[i].err_msgs) {
838 err_code_struct *err = err_classes[i].err_msgs;
981 const err_code_struct *err = err_classes[i].err_msgs;
839 for (j = 0; err[j].name; j++)
840 if (num == err[j].code) {
841 snprintf(ret, sizeof(ret), "%s - %s (%s)",
842 err_classes[i].class, err[j].name, err[j].message);
843 return ret;
844 }
845 }
846
847 snprintf(ret, sizeof(ret), "%s - %d", err_classes[i].class, num);
848 return ret;
849 }
850
851 snprintf(ret, sizeof(ret), "ERROR: Unknown error (%d,%d)", class, num);
852 return(ret);
853}
982 for (j = 0; err[j].name; j++)
983 if (num == err[j].code) {
984 snprintf(ret, sizeof(ret), "%s - %s (%s)",
985 err_classes[i].class, err[j].name, err[j].message);
986 return ret;
987 }
988 }
989
990 snprintf(ret, sizeof(ret), "%s - %d", err_classes[i].class, num);
991 return ret;
992 }
993
994 snprintf(ret, sizeof(ret), "ERROR: Unknown error (%d,%d)", class, num);
995 return(ret);
996}
997
998typedef struct {
999 u_int32_t code;
1000 const char *name;
1001} nt_err_code_struct;
1002
1003/*
1004 * NT Error codes
1005 */
1006static const nt_err_code_struct nt_errors[] = {
1007 { 0x00000000, "STATUS_SUCCESS" },
1008 { 0x00000000, "STATUS_WAIT_0" },
1009 { 0x00000001, "STATUS_WAIT_1" },
1010 { 0x00000002, "STATUS_WAIT_2" },
1011 { 0x00000003, "STATUS_WAIT_3" },
1012 { 0x0000003F, "STATUS_WAIT_63" },
1013 { 0x00000080, "STATUS_ABANDONED" },
1014 { 0x00000080, "STATUS_ABANDONED_WAIT_0" },
1015 { 0x000000BF, "STATUS_ABANDONED_WAIT_63" },
1016 { 0x000000C0, "STATUS_USER_APC" },
1017 { 0x00000100, "STATUS_KERNEL_APC" },
1018 { 0x00000101, "STATUS_ALERTED" },
1019 { 0x00000102, "STATUS_TIMEOUT" },
1020 { 0x00000103, "STATUS_PENDING" },
1021 { 0x00000104, "STATUS_REPARSE" },
1022 { 0x00000105, "STATUS_MORE_ENTRIES" },
1023 { 0x00000106, "STATUS_NOT_ALL_ASSIGNED" },
1024 { 0x00000107, "STATUS_SOME_NOT_MAPPED" },
1025 { 0x00000108, "STATUS_OPLOCK_BREAK_IN_PROGRESS" },
1026 { 0x00000109, "STATUS_VOLUME_MOUNTED" },
1027 { 0x0000010A, "STATUS_RXACT_COMMITTED" },
1028 { 0x0000010B, "STATUS_NOTIFY_CLEANUP" },
1029 { 0x0000010C, "STATUS_NOTIFY_ENUM_DIR" },
1030 { 0x0000010D, "STATUS_NO_QUOTAS_FOR_ACCOUNT" },
1031 { 0x0000010E, "STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED" },
1032 { 0x00000110, "STATUS_PAGE_FAULT_TRANSITION" },
1033 { 0x00000111, "STATUS_PAGE_FAULT_DEMAND_ZERO" },
1034 { 0x00000112, "STATUS_PAGE_FAULT_COPY_ON_WRITE" },
1035 { 0x00000113, "STATUS_PAGE_FAULT_GUARD_PAGE" },
1036 { 0x00000114, "STATUS_PAGE_FAULT_PAGING_FILE" },
1037 { 0x00000115, "STATUS_CACHE_PAGE_LOCKED" },
1038 { 0x00000116, "STATUS_CRASH_DUMP" },
1039 { 0x00000117, "STATUS_BUFFER_ALL_ZEROS" },
1040 { 0x00000118, "STATUS_REPARSE_OBJECT" },
1041 { 0x0000045C, "STATUS_NO_SHUTDOWN_IN_PROGRESS" },
1042 { 0x40000000, "STATUS_OBJECT_NAME_EXISTS" },
1043 { 0x40000001, "STATUS_THREAD_WAS_SUSPENDED" },
1044 { 0x40000002, "STATUS_WORKING_SET_LIMIT_RANGE" },
1045 { 0x40000003, "STATUS_IMAGE_NOT_AT_BASE" },
1046 { 0x40000004, "STATUS_RXACT_STATE_CREATED" },
1047 { 0x40000005, "STATUS_SEGMENT_NOTIFICATION" },
1048 { 0x40000006, "STATUS_LOCAL_USER_SESSION_KEY" },
1049 { 0x40000007, "STATUS_BAD_CURRENT_DIRECTORY" },
1050 { 0x40000008, "STATUS_SERIAL_MORE_WRITES" },
1051 { 0x40000009, "STATUS_REGISTRY_RECOVERED" },
1052 { 0x4000000A, "STATUS_FT_READ_RECOVERY_FROM_BACKUP" },
1053 { 0x4000000B, "STATUS_FT_WRITE_RECOVERY" },
1054 { 0x4000000C, "STATUS_SERIAL_COUNTER_TIMEOUT" },
1055 { 0x4000000D, "STATUS_NULL_LM_PASSWORD" },
1056 { 0x4000000E, "STATUS_IMAGE_MACHINE_TYPE_MISMATCH" },
1057 { 0x4000000F, "STATUS_RECEIVE_PARTIAL" },
1058 { 0x40000010, "STATUS_RECEIVE_EXPEDITED" },
1059 { 0x40000011, "STATUS_RECEIVE_PARTIAL_EXPEDITED" },
1060 { 0x40000012, "STATUS_EVENT_DONE" },
1061 { 0x40000013, "STATUS_EVENT_PENDING" },
1062 { 0x40000014, "STATUS_CHECKING_FILE_SYSTEM" },
1063 { 0x40000015, "STATUS_FATAL_APP_EXIT" },
1064 { 0x40000016, "STATUS_PREDEFINED_HANDLE" },
1065 { 0x40000017, "STATUS_WAS_UNLOCKED" },
1066 { 0x40000018, "STATUS_SERVICE_NOTIFICATION" },
1067 { 0x40000019, "STATUS_WAS_LOCKED" },
1068 { 0x4000001A, "STATUS_LOG_HARD_ERROR" },
1069 { 0x4000001B, "STATUS_ALREADY_WIN32" },
1070 { 0x4000001C, "STATUS_WX86_UNSIMULATE" },
1071 { 0x4000001D, "STATUS_WX86_CONTINUE" },
1072 { 0x4000001E, "STATUS_WX86_SINGLE_STEP" },
1073 { 0x4000001F, "STATUS_WX86_BREAKPOINT" },
1074 { 0x40000020, "STATUS_WX86_EXCEPTION_CONTINUE" },
1075 { 0x40000021, "STATUS_WX86_EXCEPTION_LASTCHANCE" },
1076 { 0x40000022, "STATUS_WX86_EXCEPTION_CHAIN" },
1077 { 0x40000023, "STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE" },
1078 { 0x40000024, "STATUS_NO_YIELD_PERFORMED" },
1079 { 0x40000025, "STATUS_TIMER_RESUME_IGNORED" },
1080 { 0x80000001, "STATUS_GUARD_PAGE_VIOLATION" },
1081 { 0x80000002, "STATUS_DATATYPE_MISALIGNMENT" },
1082 { 0x80000003, "STATUS_BREAKPOINT" },
1083 { 0x80000004, "STATUS_SINGLE_STEP" },
1084 { 0x80000005, "STATUS_BUFFER_OVERFLOW" },
1085 { 0x80000006, "STATUS_NO_MORE_FILES" },
1086 { 0x80000007, "STATUS_WAKE_SYSTEM_DEBUGGER" },
1087 { 0x8000000A, "STATUS_HANDLES_CLOSED" },
1088 { 0x8000000B, "STATUS_NO_INHERITANCE" },
1089 { 0x8000000C, "STATUS_GUID_SUBSTITUTION_MADE" },
1090 { 0x8000000D, "STATUS_PARTIAL_COPY" },
1091 { 0x8000000E, "STATUS_DEVICE_PAPER_EMPTY" },
1092 { 0x8000000F, "STATUS_DEVICE_POWERED_OFF" },
1093 { 0x80000010, "STATUS_DEVICE_OFF_LINE" },
1094 { 0x80000011, "STATUS_DEVICE_BUSY" },
1095 { 0x80000012, "STATUS_NO_MORE_EAS" },
1096 { 0x80000013, "STATUS_INVALID_EA_NAME" },
1097 { 0x80000014, "STATUS_EA_LIST_INCONSISTENT" },
1098 { 0x80000015, "STATUS_INVALID_EA_FLAG" },
1099 { 0x80000016, "STATUS_VERIFY_REQUIRED" },
1100 { 0x80000017, "STATUS_EXTRANEOUS_INFORMATION" },
1101 { 0x80000018, "STATUS_RXACT_COMMIT_NECESSARY" },
1102 { 0x8000001A, "STATUS_NO_MORE_ENTRIES" },
1103 { 0x8000001B, "STATUS_FILEMARK_DETECTED" },
1104 { 0x8000001C, "STATUS_MEDIA_CHANGED" },
1105 { 0x8000001D, "STATUS_BUS_RESET" },
1106 { 0x8000001E, "STATUS_END_OF_MEDIA" },
1107 { 0x8000001F, "STATUS_BEGINNING_OF_MEDIA" },
1108 { 0x80000020, "STATUS_MEDIA_CHECK" },
1109 { 0x80000021, "STATUS_SETMARK_DETECTED" },
1110 { 0x80000022, "STATUS_NO_DATA_DETECTED" },
1111 { 0x80000023, "STATUS_REDIRECTOR_HAS_OPEN_HANDLES" },
1112 { 0x80000024, "STATUS_SERVER_HAS_OPEN_HANDLES" },
1113 { 0x80000025, "STATUS_ALREADY_DISCONNECTED" },
1114 { 0x80000026, "STATUS_LONGJUMP" },
1115 { 0x80040111, "MAPI_E_LOGON_FAILED" },
1116 { 0x80090300, "SEC_E_INSUFFICIENT_MEMORY" },
1117 { 0x80090301, "SEC_E_INVALID_HANDLE" },
1118 { 0x80090302, "SEC_E_UNSUPPORTED_FUNCTION" },
1119 { 0x8009030B, "SEC_E_NO_IMPERSONATION" },
1120 { 0x8009030D, "SEC_E_UNKNOWN_CREDENTIALS" },
1121 { 0x8009030E, "SEC_E_NO_CREDENTIALS" },
1122 { 0x8009030F, "SEC_E_MESSAGE_ALTERED" },
1123 { 0x80090310, "SEC_E_OUT_OF_SEQUENCE" },
1124 { 0x80090311, "SEC_E_NO_AUTHENTICATING_AUTHORITY" },
1125 { 0xC0000001, "STATUS_UNSUCCESSFUL" },
1126 { 0xC0000002, "STATUS_NOT_IMPLEMENTED" },
1127 { 0xC0000003, "STATUS_INVALID_INFO_CLASS" },
1128 { 0xC0000004, "STATUS_INFO_LENGTH_MISMATCH" },
1129 { 0xC0000005, "STATUS_ACCESS_VIOLATION" },
1130 { 0xC0000006, "STATUS_IN_PAGE_ERROR" },
1131 { 0xC0000007, "STATUS_PAGEFILE_QUOTA" },
1132 { 0xC0000008, "STATUS_INVALID_HANDLE" },
1133 { 0xC0000009, "STATUS_BAD_INITIAL_STACK" },
1134 { 0xC000000A, "STATUS_BAD_INITIAL_PC" },
1135 { 0xC000000B, "STATUS_INVALID_CID" },
1136 { 0xC000000C, "STATUS_TIMER_NOT_CANCELED" },
1137 { 0xC000000D, "STATUS_INVALID_PARAMETER" },
1138 { 0xC000000E, "STATUS_NO_SUCH_DEVICE" },
1139 { 0xC000000F, "STATUS_NO_SUCH_FILE" },
1140 { 0xC0000010, "STATUS_INVALID_DEVICE_REQUEST" },
1141 { 0xC0000011, "STATUS_END_OF_FILE" },
1142 { 0xC0000012, "STATUS_WRONG_VOLUME" },
1143 { 0xC0000013, "STATUS_NO_MEDIA_IN_DEVICE" },
1144 { 0xC0000014, "STATUS_UNRECOGNIZED_MEDIA" },
1145 { 0xC0000015, "STATUS_NONEXISTENT_SECTOR" },
1146 { 0xC0000016, "STATUS_MORE_PROCESSING_REQUIRED" },
1147 { 0xC0000017, "STATUS_NO_MEMORY" },
1148 { 0xC0000018, "STATUS_CONFLICTING_ADDRESSES" },
1149 { 0xC0000019, "STATUS_NOT_MAPPED_VIEW" },
1150 { 0xC000001A, "STATUS_UNABLE_TO_FREE_VM" },
1151 { 0xC000001B, "STATUS_UNABLE_TO_DELETE_SECTION" },
1152 { 0xC000001C, "STATUS_INVALID_SYSTEM_SERVICE" },
1153 { 0xC000001D, "STATUS_ILLEGAL_INSTRUCTION" },
1154 { 0xC000001E, "STATUS_INVALID_LOCK_SEQUENCE" },
1155 { 0xC000001F, "STATUS_INVALID_VIEW_SIZE" },
1156 { 0xC0000020, "STATUS_INVALID_FILE_FOR_SECTION" },
1157 { 0xC0000021, "STATUS_ALREADY_COMMITTED" },
1158 { 0xC0000022, "STATUS_ACCESS_DENIED" },
1159 { 0xC0000023, "STATUS_BUFFER_TOO_SMALL" },
1160 { 0xC0000024, "STATUS_OBJECT_TYPE_MISMATCH" },
1161 { 0xC0000025, "STATUS_NONCONTINUABLE_EXCEPTION" },
1162 { 0xC0000026, "STATUS_INVALID_DISPOSITION" },
1163 { 0xC0000027, "STATUS_UNWIND" },
1164 { 0xC0000028, "STATUS_BAD_STACK" },
1165 { 0xC0000029, "STATUS_INVALID_UNWIND_TARGET" },
1166 { 0xC000002A, "STATUS_NOT_LOCKED" },
1167 { 0xC000002B, "STATUS_PARITY_ERROR" },
1168 { 0xC000002C, "STATUS_UNABLE_TO_DECOMMIT_VM" },
1169 { 0xC000002D, "STATUS_NOT_COMMITTED" },
1170 { 0xC000002E, "STATUS_INVALID_PORT_ATTRIBUTES" },
1171 { 0xC000002F, "STATUS_PORT_MESSAGE_TOO_LONG" },
1172 { 0xC0000030, "STATUS_INVALID_PARAMETER_MIX" },
1173 { 0xC0000031, "STATUS_INVALID_QUOTA_LOWER" },
1174 { 0xC0000032, "STATUS_DISK_CORRUPT_ERROR" },
1175 { 0xC0000033, "STATUS_OBJECT_NAME_INVALID" },
1176 { 0xC0000034, "STATUS_OBJECT_NAME_NOT_FOUND" },
1177 { 0xC0000035, "STATUS_OBJECT_NAME_COLLISION" },
1178 { 0xC0000037, "STATUS_PORT_DISCONNECTED" },
1179 { 0xC0000038, "STATUS_DEVICE_ALREADY_ATTACHED" },
1180 { 0xC0000039, "STATUS_OBJECT_PATH_INVALID" },
1181 { 0xC000003A, "STATUS_OBJECT_PATH_NOT_FOUND" },
1182 { 0xC000003B, "STATUS_OBJECT_PATH_SYNTAX_BAD" },
1183 { 0xC000003C, "STATUS_DATA_OVERRUN" },
1184 { 0xC000003D, "STATUS_DATA_LATE_ERROR" },
1185 { 0xC000003E, "STATUS_DATA_ERROR" },
1186 { 0xC000003F, "STATUS_CRC_ERROR" },
1187 { 0xC0000040, "STATUS_SECTION_TOO_BIG" },
1188 { 0xC0000041, "STATUS_PORT_CONNECTION_REFUSED" },
1189 { 0xC0000042, "STATUS_INVALID_PORT_HANDLE" },
1190 { 0xC0000043, "STATUS_SHARING_VIOLATION" },
1191 { 0xC0000044, "STATUS_QUOTA_EXCEEDED" },
1192 { 0xC0000045, "STATUS_INVALID_PAGE_PROTECTION" },
1193 { 0xC0000046, "STATUS_MUTANT_NOT_OWNED" },
1194 { 0xC0000047, "STATUS_SEMAPHORE_LIMIT_EXCEEDED" },
1195 { 0xC0000048, "STATUS_PORT_ALREADY_SET" },
1196 { 0xC0000049, "STATUS_SECTION_NOT_IMAGE" },
1197 { 0xC000004A, "STATUS_SUSPEND_COUNT_EXCEEDED" },
1198 { 0xC000004B, "STATUS_THREAD_IS_TERMINATING" },
1199 { 0xC000004C, "STATUS_BAD_WORKING_SET_LIMIT" },
1200 { 0xC000004D, "STATUS_INCOMPATIBLE_FILE_MAP" },
1201 { 0xC000004E, "STATUS_SECTION_PROTECTION" },
1202 { 0xC000004F, "STATUS_EAS_NOT_SUPPORTED" },
1203 { 0xC0000050, "STATUS_EA_TOO_LARGE" },
1204 { 0xC0000051, "STATUS_NONEXISTENT_EA_ENTRY" },
1205 { 0xC0000052, "STATUS_NO_EAS_ON_FILE" },
1206 { 0xC0000053, "STATUS_EA_CORRUPT_ERROR" },
1207 { 0xC0000054, "STATUS_FILE_LOCK_CONFLICT" },
1208 { 0xC0000055, "STATUS_LOCK_NOT_GRANTED" },
1209 { 0xC0000056, "STATUS_DELETE_PENDING" },
1210 { 0xC0000057, "STATUS_CTL_FILE_NOT_SUPPORTED" },
1211 { 0xC0000058, "STATUS_UNKNOWN_REVISION" },
1212 { 0xC0000059, "STATUS_REVISION_MISMATCH" },
1213 { 0xC000005A, "STATUS_INVALID_OWNER" },
1214 { 0xC000005B, "STATUS_INVALID_PRIMARY_GROUP" },
1215 { 0xC000005C, "STATUS_NO_IMPERSONATION_TOKEN" },
1216 { 0xC000005D, "STATUS_CANT_DISABLE_MANDATORY" },
1217 { 0xC000005E, "STATUS_NO_LOGON_SERVERS" },
1218 { 0xC000005F, "STATUS_NO_SUCH_LOGON_SESSION" },
1219 { 0xC0000060, "STATUS_NO_SUCH_PRIVILEGE" },
1220 { 0xC0000061, "STATUS_PRIVILEGE_NOT_HELD" },
1221 { 0xC0000062, "STATUS_INVALID_ACCOUNT_NAME" },
1222 { 0xC0000063, "STATUS_USER_EXISTS" },
1223 { 0xC0000064, "STATUS_NO_SUCH_USER" },
1224 { 0xC0000065, "STATUS_GROUP_EXISTS" },
1225 { 0xC0000066, "STATUS_NO_SUCH_GROUP" },
1226 { 0xC0000067, "STATUS_MEMBER_IN_GROUP" },
1227 { 0xC0000068, "STATUS_MEMBER_NOT_IN_GROUP" },
1228 { 0xC0000069, "STATUS_LAST_ADMIN" },
1229 { 0xC000006A, "STATUS_WRONG_PASSWORD" },
1230 { 0xC000006B, "STATUS_ILL_FORMED_PASSWORD" },
1231 { 0xC000006C, "STATUS_PASSWORD_RESTRICTION" },
1232 { 0xC000006D, "STATUS_LOGON_FAILURE" },
1233 { 0xC000006E, "STATUS_ACCOUNT_RESTRICTION" },
1234 { 0xC000006F, "STATUS_INVALID_LOGON_HOURS" },
1235 { 0xC0000070, "STATUS_INVALID_WORKSTATION" },
1236 { 0xC0000071, "STATUS_PASSWORD_EXPIRED" },
1237 { 0xC0000072, "STATUS_ACCOUNT_DISABLED" },
1238 { 0xC0000073, "STATUS_NONE_MAPPED" },
1239 { 0xC0000074, "STATUS_TOO_MANY_LUIDS_REQUESTED" },
1240 { 0xC0000075, "STATUS_LUIDS_EXHAUSTED" },
1241 { 0xC0000076, "STATUS_INVALID_SUB_AUTHORITY" },
1242 { 0xC0000077, "STATUS_INVALID_ACL" },
1243 { 0xC0000078, "STATUS_INVALID_SID" },
1244 { 0xC0000079, "STATUS_INVALID_SECURITY_DESCR" },
1245 { 0xC000007A, "STATUS_PROCEDURE_NOT_FOUND" },
1246 { 0xC000007B, "STATUS_INVALID_IMAGE_FORMAT" },
1247 { 0xC000007C, "STATUS_NO_TOKEN" },
1248 { 0xC000007D, "STATUS_BAD_INHERITANCE_ACL" },
1249 { 0xC000007E, "STATUS_RANGE_NOT_LOCKED" },
1250 { 0xC000007F, "STATUS_DISK_FULL" },
1251 { 0xC0000080, "STATUS_SERVER_DISABLED" },
1252 { 0xC0000081, "STATUS_SERVER_NOT_DISABLED" },
1253 { 0xC0000082, "STATUS_TOO_MANY_GUIDS_REQUESTED" },
1254 { 0xC0000083, "STATUS_GUIDS_EXHAUSTED" },
1255 { 0xC0000084, "STATUS_INVALID_ID_AUTHORITY" },
1256 { 0xC0000085, "STATUS_AGENTS_EXHAUSTED" },
1257 { 0xC0000086, "STATUS_INVALID_VOLUME_LABEL" },
1258 { 0xC0000087, "STATUS_SECTION_NOT_EXTENDED" },
1259 { 0xC0000088, "STATUS_NOT_MAPPED_DATA" },
1260 { 0xC0000089, "STATUS_RESOURCE_DATA_NOT_FOUND" },
1261 { 0xC000008A, "STATUS_RESOURCE_TYPE_NOT_FOUND" },
1262 { 0xC000008B, "STATUS_RESOURCE_NAME_NOT_FOUND" },
1263 { 0xC000008C, "STATUS_ARRAY_BOUNDS_EXCEEDED" },
1264 { 0xC000008D, "STATUS_FLOAT_DENORMAL_OPERAND" },
1265 { 0xC000008E, "STATUS_FLOAT_DIVIDE_BY_ZERO" },
1266 { 0xC000008F, "STATUS_FLOAT_INEXACT_RESULT" },
1267 { 0xC0000090, "STATUS_FLOAT_INVALID_OPERATION" },
1268 { 0xC0000091, "STATUS_FLOAT_OVERFLOW" },
1269 { 0xC0000092, "STATUS_FLOAT_STACK_CHECK" },
1270 { 0xC0000093, "STATUS_FLOAT_UNDERFLOW" },
1271 { 0xC0000094, "STATUS_INTEGER_DIVIDE_BY_ZERO" },
1272 { 0xC0000095, "STATUS_INTEGER_OVERFLOW" },
1273 { 0xC0000096, "STATUS_PRIVILEGED_INSTRUCTION" },
1274 { 0xC0000097, "STATUS_TOO_MANY_PAGING_FILES" },
1275 { 0xC0000098, "STATUS_FILE_INVALID" },
1276 { 0xC0000099, "STATUS_ALLOTTED_SPACE_EXCEEDED" },
1277 { 0xC000009A, "STATUS_INSUFFICIENT_RESOURCES" },
1278 { 0xC000009B, "STATUS_DFS_EXIT_PATH_FOUND" },
1279 { 0xC000009C, "STATUS_DEVICE_DATA_ERROR" },
1280 { 0xC000009D, "STATUS_DEVICE_NOT_CONNECTED" },
1281 { 0xC000009E, "STATUS_DEVICE_POWER_FAILURE" },
1282 { 0xC000009F, "STATUS_FREE_VM_NOT_AT_BASE" },
1283 { 0xC00000A0, "STATUS_MEMORY_NOT_ALLOCATED" },
1284 { 0xC00000A1, "STATUS_WORKING_SET_QUOTA" },
1285 { 0xC00000A2, "STATUS_MEDIA_WRITE_PROTECTED" },
1286 { 0xC00000A3, "STATUS_DEVICE_NOT_READY" },
1287 { 0xC00000A4, "STATUS_INVALID_GROUP_ATTRIBUTES" },
1288 { 0xC00000A5, "STATUS_BAD_IMPERSONATION_LEVEL" },
1289 { 0xC00000A6, "STATUS_CANT_OPEN_ANONYMOUS" },
1290 { 0xC00000A7, "STATUS_BAD_VALIDATION_CLASS" },
1291 { 0xC00000A8, "STATUS_BAD_TOKEN_TYPE" },
1292 { 0xC00000A9, "STATUS_BAD_MASTER_BOOT_RECORD" },
1293 { 0xC00000AA, "STATUS_INSTRUCTION_MISALIGNMENT" },
1294 { 0xC00000AB, "STATUS_INSTANCE_NOT_AVAILABLE" },
1295 { 0xC00000AC, "STATUS_PIPE_NOT_AVAILABLE" },
1296 { 0xC00000AD, "STATUS_INVALID_PIPE_STATE" },
1297 { 0xC00000AE, "STATUS_PIPE_BUSY" },
1298 { 0xC00000AF, "STATUS_ILLEGAL_FUNCTION" },
1299 { 0xC00000B0, "STATUS_PIPE_DISCONNECTED" },
1300 { 0xC00000B1, "STATUS_PIPE_CLOSING" },
1301 { 0xC00000B2, "STATUS_PIPE_CONNECTED" },
1302 { 0xC00000B3, "STATUS_PIPE_LISTENING" },
1303 { 0xC00000B4, "STATUS_INVALID_READ_MODE" },
1304 { 0xC00000B5, "STATUS_IO_TIMEOUT" },
1305 { 0xC00000B6, "STATUS_FILE_FORCED_CLOSED" },
1306 { 0xC00000B7, "STATUS_PROFILING_NOT_STARTED" },
1307 { 0xC00000B8, "STATUS_PROFILING_NOT_STOPPED" },
1308 { 0xC00000B9, "STATUS_COULD_NOT_INTERPRET" },
1309 { 0xC00000BA, "STATUS_FILE_IS_A_DIRECTORY" },
1310 { 0xC00000BB, "STATUS_NOT_SUPPORTED" },
1311 { 0xC00000BC, "STATUS_REMOTE_NOT_LISTENING" },
1312 { 0xC00000BD, "STATUS_DUPLICATE_NAME" },
1313 { 0xC00000BE, "STATUS_BAD_NETWORK_PATH" },
1314 { 0xC00000BF, "STATUS_NETWORK_BUSY" },
1315 { 0xC00000C0, "STATUS_DEVICE_DOES_NOT_EXIST" },
1316 { 0xC00000C1, "STATUS_TOO_MANY_COMMANDS" },
1317 { 0xC00000C2, "STATUS_ADAPTER_HARDWARE_ERROR" },
1318 { 0xC00000C3, "STATUS_INVALID_NETWORK_RESPONSE" },
1319 { 0xC00000C4, "STATUS_UNEXPECTED_NETWORK_ERROR" },
1320 { 0xC00000C5, "STATUS_BAD_REMOTE_ADAPTER" },
1321 { 0xC00000C6, "STATUS_PRINT_QUEUE_FULL" },
1322 { 0xC00000C7, "STATUS_NO_SPOOL_SPACE" },
1323 { 0xC00000C8, "STATUS_PRINT_CANCELLED" },
1324 { 0xC00000C9, "STATUS_NETWORK_NAME_DELETED" },
1325 { 0xC00000CA, "STATUS_NETWORK_ACCESS_DENIED" },
1326 { 0xC00000CB, "STATUS_BAD_DEVICE_TYPE" },
1327 { 0xC00000CC, "STATUS_BAD_NETWORK_NAME" },
1328 { 0xC00000CD, "STATUS_TOO_MANY_NAMES" },
1329 { 0xC00000CE, "STATUS_TOO_MANY_SESSIONS" },
1330 { 0xC00000CF, "STATUS_SHARING_PAUSED" },
1331 { 0xC00000D0, "STATUS_REQUEST_NOT_ACCEPTED" },
1332 { 0xC00000D1, "STATUS_REDIRECTOR_PAUSED" },
1333 { 0xC00000D2, "STATUS_NET_WRITE_FAULT" },
1334 { 0xC00000D3, "STATUS_PROFILING_AT_LIMIT" },
1335 { 0xC00000D4, "STATUS_NOT_SAME_DEVICE" },
1336 { 0xC00000D5, "STATUS_FILE_RENAMED" },
1337 { 0xC00000D6, "STATUS_VIRTUAL_CIRCUIT_CLOSED" },
1338 { 0xC00000D7, "STATUS_NO_SECURITY_ON_OBJECT" },
1339 { 0xC00000D8, "STATUS_CANT_WAIT" },
1340 { 0xC00000D9, "STATUS_PIPE_EMPTY" },
1341 { 0xC00000DA, "STATUS_CANT_ACCESS_DOMAIN_INFO" },
1342 { 0xC00000DB, "STATUS_CANT_TERMINATE_SELF" },
1343 { 0xC00000DC, "STATUS_INVALID_SERVER_STATE" },
1344 { 0xC00000DD, "STATUS_INVALID_DOMAIN_STATE" },
1345 { 0xC00000DE, "STATUS_INVALID_DOMAIN_ROLE" },
1346 { 0xC00000DF, "STATUS_NO_SUCH_DOMAIN" },
1347 { 0xC00000E0, "STATUS_DOMAIN_EXISTS" },
1348 { 0xC00000E1, "STATUS_DOMAIN_LIMIT_EXCEEDED" },
1349 { 0xC00000E2, "STATUS_OPLOCK_NOT_GRANTED" },
1350 { 0xC00000E3, "STATUS_INVALID_OPLOCK_PROTOCOL" },
1351 { 0xC00000E4, "STATUS_INTERNAL_DB_CORRUPTION" },
1352 { 0xC00000E5, "STATUS_INTERNAL_ERROR" },
1353 { 0xC00000E6, "STATUS_GENERIC_NOT_MAPPED" },
1354 { 0xC00000E7, "STATUS_BAD_DESCRIPTOR_FORMAT" },
1355 { 0xC00000E8, "STATUS_INVALID_USER_BUFFER" },
1356 { 0xC00000E9, "STATUS_UNEXPECTED_IO_ERROR" },
1357 { 0xC00000EA, "STATUS_UNEXPECTED_MM_CREATE_ERR" },
1358 { 0xC00000EB, "STATUS_UNEXPECTED_MM_MAP_ERROR" },
1359 { 0xC00000EC, "STATUS_UNEXPECTED_MM_EXTEND_ERR" },
1360 { 0xC00000ED, "STATUS_NOT_LOGON_PROCESS" },
1361 { 0xC00000EE, "STATUS_LOGON_SESSION_EXISTS" },
1362 { 0xC00000EF, "STATUS_INVALID_PARAMETER_1" },
1363 { 0xC00000F0, "STATUS_INVALID_PARAMETER_2" },
1364 { 0xC00000F1, "STATUS_INVALID_PARAMETER_3" },
1365 { 0xC00000F2, "STATUS_INVALID_PARAMETER_4" },
1366 { 0xC00000F3, "STATUS_INVALID_PARAMETER_5" },
1367 { 0xC00000F4, "STATUS_INVALID_PARAMETER_6" },
1368 { 0xC00000F5, "STATUS_INVALID_PARAMETER_7" },
1369 { 0xC00000F6, "STATUS_INVALID_PARAMETER_8" },
1370 { 0xC00000F7, "STATUS_INVALID_PARAMETER_9" },
1371 { 0xC00000F8, "STATUS_INVALID_PARAMETER_10" },
1372 { 0xC00000F9, "STATUS_INVALID_PARAMETER_11" },
1373 { 0xC00000FA, "STATUS_INVALID_PARAMETER_12" },
1374 { 0xC00000FB, "STATUS_REDIRECTOR_NOT_STARTED" },
1375 { 0xC00000FC, "STATUS_REDIRECTOR_STARTED" },
1376 { 0xC00000FD, "STATUS_STACK_OVERFLOW" },
1377 { 0xC00000FE, "STATUS_NO_SUCH_PACKAGE" },
1378 { 0xC00000FF, "STATUS_BAD_FUNCTION_TABLE" },
1379 { 0xC0000100, "STATUS_VARIABLE_NOT_FOUND" },
1380 { 0xC0000101, "STATUS_DIRECTORY_NOT_EMPTY" },
1381 { 0xC0000102, "STATUS_FILE_CORRUPT_ERROR" },
1382 { 0xC0000103, "STATUS_NOT_A_DIRECTORY" },
1383 { 0xC0000104, "STATUS_BAD_LOGON_SESSION_STATE" },
1384 { 0xC0000105, "STATUS_LOGON_SESSION_COLLISION" },
1385 { 0xC0000106, "STATUS_NAME_TOO_LONG" },
1386 { 0xC0000107, "STATUS_FILES_OPEN" },
1387 { 0xC0000108, "STATUS_CONNECTION_IN_USE" },
1388 { 0xC0000109, "STATUS_MESSAGE_NOT_FOUND" },
1389 { 0xC000010A, "STATUS_PROCESS_IS_TERMINATING" },
1390 { 0xC000010B, "STATUS_INVALID_LOGON_TYPE" },
1391 { 0xC000010C, "STATUS_NO_GUID_TRANSLATION" },
1392 { 0xC000010D, "STATUS_CANNOT_IMPERSONATE" },
1393 { 0xC000010E, "STATUS_IMAGE_ALREADY_LOADED" },
1394 { 0xC000010F, "STATUS_ABIOS_NOT_PRESENT" },
1395 { 0xC0000110, "STATUS_ABIOS_LID_NOT_EXIST" },
1396 { 0xC0000111, "STATUS_ABIOS_LID_ALREADY_OWNED" },
1397 { 0xC0000112, "STATUS_ABIOS_NOT_LID_OWNER" },
1398 { 0xC0000113, "STATUS_ABIOS_INVALID_COMMAND" },
1399 { 0xC0000114, "STATUS_ABIOS_INVALID_LID" },
1400 { 0xC0000115, "STATUS_ABIOS_SELECTOR_NOT_AVAILABLE" },
1401 { 0xC0000116, "STATUS_ABIOS_INVALID_SELECTOR" },
1402 { 0xC0000117, "STATUS_NO_LDT" },
1403 { 0xC0000118, "STATUS_INVALID_LDT_SIZE" },
1404 { 0xC0000119, "STATUS_INVALID_LDT_OFFSET" },
1405 { 0xC000011A, "STATUS_INVALID_LDT_DESCRIPTOR" },
1406 { 0xC000011B, "STATUS_INVALID_IMAGE_NE_FORMAT" },
1407 { 0xC000011C, "STATUS_RXACT_INVALID_STATE" },
1408 { 0xC000011D, "STATUS_RXACT_COMMIT_FAILURE" },
1409 { 0xC000011E, "STATUS_MAPPED_FILE_SIZE_ZERO" },
1410 { 0xC000011F, "STATUS_TOO_MANY_OPENED_FILES" },
1411 { 0xC0000120, "STATUS_CANCELLED" },
1412 { 0xC0000121, "STATUS_CANNOT_DELETE" },
1413 { 0xC0000122, "STATUS_INVALID_COMPUTER_NAME" },
1414 { 0xC0000123, "STATUS_FILE_DELETED" },
1415 { 0xC0000124, "STATUS_SPECIAL_ACCOUNT" },
1416 { 0xC0000125, "STATUS_SPECIAL_GROUP" },
1417 { 0xC0000126, "STATUS_SPECIAL_USER" },
1418 { 0xC0000127, "STATUS_MEMBERS_PRIMARY_GROUP" },
1419 { 0xC0000128, "STATUS_FILE_CLOSED" },
1420 { 0xC0000129, "STATUS_TOO_MANY_THREADS" },
1421 { 0xC000012A, "STATUS_THREAD_NOT_IN_PROCESS" },
1422 { 0xC000012B, "STATUS_TOKEN_ALREADY_IN_USE" },
1423 { 0xC000012C, "STATUS_PAGEFILE_QUOTA_EXCEEDED" },
1424 { 0xC000012D, "STATUS_COMMITMENT_LIMIT" },
1425 { 0xC000012E, "STATUS_INVALID_IMAGE_LE_FORMAT" },
1426 { 0xC000012F, "STATUS_INVALID_IMAGE_NOT_MZ" },
1427 { 0xC0000130, "STATUS_INVALID_IMAGE_PROTECT" },
1428 { 0xC0000131, "STATUS_INVALID_IMAGE_WIN_16" },
1429 { 0xC0000132, "STATUS_LOGON_SERVER_CONFLICT" },
1430 { 0xC0000133, "STATUS_TIME_DIFFERENCE_AT_DC" },
1431 { 0xC0000134, "STATUS_SYNCHRONIZATION_REQUIRED" },
1432 { 0xC0000135, "STATUS_DLL_NOT_FOUND" },
1433 { 0xC0000136, "STATUS_OPEN_FAILED" },
1434 { 0xC0000137, "STATUS_IO_PRIVILEGE_FAILED" },
1435 { 0xC0000138, "STATUS_ORDINAL_NOT_FOUND" },
1436 { 0xC0000139, "STATUS_ENTRYPOINT_NOT_FOUND" },
1437 { 0xC000013A, "STATUS_CONTROL_C_EXIT" },
1438 { 0xC000013B, "STATUS_LOCAL_DISCONNECT" },
1439 { 0xC000013C, "STATUS_REMOTE_DISCONNECT" },
1440 { 0xC000013D, "STATUS_REMOTE_RESOURCES" },
1441 { 0xC000013E, "STATUS_LINK_FAILED" },
1442 { 0xC000013F, "STATUS_LINK_TIMEOUT" },
1443 { 0xC0000140, "STATUS_INVALID_CONNECTION" },
1444 { 0xC0000141, "STATUS_INVALID_ADDRESS" },
1445 { 0xC0000142, "STATUS_DLL_INIT_FAILED" },
1446 { 0xC0000143, "STATUS_MISSING_SYSTEMFILE" },
1447 { 0xC0000144, "STATUS_UNHANDLED_EXCEPTION" },
1448 { 0xC0000145, "STATUS_APP_INIT_FAILURE" },
1449 { 0xC0000146, "STATUS_PAGEFILE_CREATE_FAILED" },
1450 { 0xC0000147, "STATUS_NO_PAGEFILE" },
1451 { 0xC0000148, "STATUS_INVALID_LEVEL" },
1452 { 0xC0000149, "STATUS_WRONG_PASSWORD_CORE" },
1453 { 0xC000014A, "STATUS_ILLEGAL_FLOAT_CONTEXT" },
1454 { 0xC000014B, "STATUS_PIPE_BROKEN" },
1455 { 0xC000014C, "STATUS_REGISTRY_CORRUPT" },
1456 { 0xC000014D, "STATUS_REGISTRY_IO_FAILED" },
1457 { 0xC000014E, "STATUS_NO_EVENT_PAIR" },
1458 { 0xC000014F, "STATUS_UNRECOGNIZED_VOLUME" },
1459 { 0xC0000150, "STATUS_SERIAL_NO_DEVICE_INITED" },
1460 { 0xC0000151, "STATUS_NO_SUCH_ALIAS" },
1461 { 0xC0000152, "STATUS_MEMBER_NOT_IN_ALIAS" },
1462 { 0xC0000153, "STATUS_MEMBER_IN_ALIAS" },
1463 { 0xC0000154, "STATUS_ALIAS_EXISTS" },
1464 { 0xC0000155, "STATUS_LOGON_NOT_GRANTED" },
1465 { 0xC0000156, "STATUS_TOO_MANY_SECRETS" },
1466 { 0xC0000157, "STATUS_SECRET_TOO_LONG" },
1467 { 0xC0000158, "STATUS_INTERNAL_DB_ERROR" },
1468 { 0xC0000159, "STATUS_FULLSCREEN_MODE" },
1469 { 0xC000015A, "STATUS_TOO_MANY_CONTEXT_IDS" },
1470 { 0xC000015B, "STATUS_LOGON_TYPE_NOT_GRANTED" },
1471 { 0xC000015C, "STATUS_NOT_REGISTRY_FILE" },
1472 { 0xC000015D, "STATUS_NT_CROSS_ENCRYPTION_REQUIRED" },
1473 { 0xC000015E, "STATUS_DOMAIN_CTRLR_CONFIG_ERROR" },
1474 { 0xC000015F, "STATUS_FT_MISSING_MEMBER" },
1475 { 0xC0000160, "STATUS_ILL_FORMED_SERVICE_ENTRY" },
1476 { 0xC0000161, "STATUS_ILLEGAL_CHARACTER" },
1477 { 0xC0000162, "STATUS_UNMAPPABLE_CHARACTER" },
1478 { 0xC0000163, "STATUS_UNDEFINED_CHARACTER" },
1479 { 0xC0000164, "STATUS_FLOPPY_VOLUME" },
1480 { 0xC0000165, "STATUS_FLOPPY_ID_MARK_NOT_FOUND" },
1481 { 0xC0000166, "STATUS_FLOPPY_WRONG_CYLINDER" },
1482 { 0xC0000167, "STATUS_FLOPPY_UNKNOWN_ERROR" },
1483 { 0xC0000168, "STATUS_FLOPPY_BAD_REGISTERS" },
1484 { 0xC0000169, "STATUS_DISK_RECALIBRATE_FAILED" },
1485 { 0xC000016A, "STATUS_DISK_OPERATION_FAILED" },
1486 { 0xC000016B, "STATUS_DISK_RESET_FAILED" },
1487 { 0xC000016C, "STATUS_SHARED_IRQ_BUSY" },
1488 { 0xC000016D, "STATUS_FT_ORPHANING" },
1489 { 0xC000016E, "STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT" },
1490 { 0xC0000172, "STATUS_PARTITION_FAILURE" },
1491 { 0xC0000173, "STATUS_INVALID_BLOCK_LENGTH" },
1492 { 0xC0000174, "STATUS_DEVICE_NOT_PARTITIONED" },
1493 { 0xC0000175, "STATUS_UNABLE_TO_LOCK_MEDIA" },
1494 { 0xC0000176, "STATUS_UNABLE_TO_UNLOAD_MEDIA" },
1495 { 0xC0000177, "STATUS_EOM_OVERFLOW" },
1496 { 0xC0000178, "STATUS_NO_MEDIA" },
1497 { 0xC000017A, "STATUS_NO_SUCH_MEMBER" },
1498 { 0xC000017B, "STATUS_INVALID_MEMBER" },
1499 { 0xC000017C, "STATUS_KEY_DELETED" },
1500 { 0xC000017D, "STATUS_NO_LOG_SPACE" },
1501 { 0xC000017E, "STATUS_TOO_MANY_SIDS" },
1502 { 0xC000017F, "STATUS_LM_CROSS_ENCRYPTION_REQUIRED" },
1503 { 0xC0000180, "STATUS_KEY_HAS_CHILDREN" },
1504 { 0xC0000181, "STATUS_CHILD_MUST_BE_VOLATILE" },
1505 { 0xC0000182, "STATUS_DEVICE_CONFIGURATION_ERROR" },
1506 { 0xC0000183, "STATUS_DRIVER_INTERNAL_ERROR" },
1507 { 0xC0000184, "STATUS_INVALID_DEVICE_STATE" },
1508 { 0xC0000185, "STATUS_IO_DEVICE_ERROR" },
1509 { 0xC0000186, "STATUS_DEVICE_PROTOCOL_ERROR" },
1510 { 0xC0000187, "STATUS_BACKUP_CONTROLLER" },
1511 { 0xC0000188, "STATUS_LOG_FILE_FULL" },
1512 { 0xC0000189, "STATUS_TOO_LATE" },
1513 { 0xC000018A, "STATUS_NO_TRUST_LSA_SECRET" },
1514 { 0xC000018B, "STATUS_NO_TRUST_SAM_ACCOUNT" },
1515 { 0xC000018C, "STATUS_TRUSTED_DOMAIN_FAILURE" },
1516 { 0xC000018D, "STATUS_TRUSTED_RELATIONSHIP_FAILURE" },
1517 { 0xC000018E, "STATUS_EVENTLOG_FILE_CORRUPT" },
1518 { 0xC000018F, "STATUS_EVENTLOG_CANT_START" },
1519 { 0xC0000190, "STATUS_TRUST_FAILURE" },
1520 { 0xC0000191, "STATUS_MUTANT_LIMIT_EXCEEDED" },
1521 { 0xC0000192, "STATUS_NETLOGON_NOT_STARTED" },
1522 { 0xC0000193, "STATUS_ACCOUNT_EXPIRED" },
1523 { 0xC0000194, "STATUS_POSSIBLE_DEADLOCK" },
1524 { 0xC0000195, "STATUS_NETWORK_CREDENTIAL_CONFLICT" },
1525 { 0xC0000196, "STATUS_REMOTE_SESSION_LIMIT" },
1526 { 0xC0000197, "STATUS_EVENTLOG_FILE_CHANGED" },
1527 { 0xC0000198, "STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT" },
1528 { 0xC0000199, "STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT" },
1529 { 0xC000019A, "STATUS_NOLOGON_SERVER_TRUST_ACCOUNT" },
1530 { 0xC000019B, "STATUS_DOMAIN_TRUST_INCONSISTENT" },
1531 { 0xC000019C, "STATUS_FS_DRIVER_REQUIRED" },
1532 { 0xC0000202, "STATUS_NO_USER_SESSION_KEY" },
1533 { 0xC0000203, "STATUS_USER_SESSION_DELETED" },
1534 { 0xC0000204, "STATUS_RESOURCE_LANG_NOT_FOUND" },
1535 { 0xC0000205, "STATUS_INSUFF_SERVER_RESOURCES" },
1536 { 0xC0000206, "STATUS_INVALID_BUFFER_SIZE" },
1537 { 0xC0000207, "STATUS_INVALID_ADDRESS_COMPONENT" },
1538 { 0xC0000208, "STATUS_INVALID_ADDRESS_WILDCARD" },
1539 { 0xC0000209, "STATUS_TOO_MANY_ADDRESSES" },
1540 { 0xC000020A, "STATUS_ADDRESS_ALREADY_EXISTS" },
1541 { 0xC000020B, "STATUS_ADDRESS_CLOSED" },
1542 { 0xC000020C, "STATUS_CONNECTION_DISCONNECTED" },
1543 { 0xC000020D, "STATUS_CONNECTION_RESET" },
1544 { 0xC000020E, "STATUS_TOO_MANY_NODES" },
1545 { 0xC000020F, "STATUS_TRANSACTION_ABORTED" },
1546 { 0xC0000210, "STATUS_TRANSACTION_TIMED_OUT" },
1547 { 0xC0000211, "STATUS_TRANSACTION_NO_RELEASE" },
1548 { 0xC0000212, "STATUS_TRANSACTION_NO_MATCH" },
1549 { 0xC0000213, "STATUS_TRANSACTION_RESPONDED" },
1550 { 0xC0000214, "STATUS_TRANSACTION_INVALID_ID" },
1551 { 0xC0000215, "STATUS_TRANSACTION_INVALID_TYPE" },
1552 { 0xC0000216, "STATUS_NOT_SERVER_SESSION" },
1553 { 0xC0000217, "STATUS_NOT_CLIENT_SESSION" },
1554 { 0xC0000218, "STATUS_CANNOT_LOAD_REGISTRY_FILE" },
1555 { 0xC0000219, "STATUS_DEBUG_ATTACH_FAILED" },
1556 { 0xC000021A, "STATUS_SYSTEM_PROCESS_TERMINATED" },
1557 { 0xC000021B, "STATUS_DATA_NOT_ACCEPTED" },
1558 { 0xC000021C, "STATUS_NO_BROWSER_SERVERS_FOUND" },
1559 { 0xC000021D, "STATUS_VDM_HARD_ERROR" },
1560 { 0xC000021E, "STATUS_DRIVER_CANCEL_TIMEOUT" },
1561 { 0xC000021F, "STATUS_REPLY_MESSAGE_MISMATCH" },
1562 { 0xC0000220, "STATUS_MAPPED_ALIGNMENT" },
1563 { 0xC0000221, "STATUS_IMAGE_CHECKSUM_MISMATCH" },
1564 { 0xC0000222, "STATUS_LOST_WRITEBEHIND_DATA" },
1565 { 0xC0000223, "STATUS_CLIENT_SERVER_PARAMETERS_INVALID" },
1566 { 0xC0000224, "STATUS_PASSWORD_MUST_CHANGE" },
1567 { 0xC0000225, "STATUS_NOT_FOUND" },
1568 { 0xC0000226, "STATUS_NOT_TINY_STREAM" },
1569 { 0xC0000227, "STATUS_RECOVERY_FAILURE" },
1570 { 0xC0000228, "STATUS_STACK_OVERFLOW_READ" },
1571 { 0xC0000229, "STATUS_FAIL_CHECK" },
1572 { 0xC000022A, "STATUS_DUPLICATE_OBJECTID" },
1573 { 0xC000022B, "STATUS_OBJECTID_EXISTS" },
1574 { 0xC000022C, "STATUS_CONVERT_TO_LARGE" },
1575 { 0xC000022D, "STATUS_RETRY" },
1576 { 0xC000022E, "STATUS_FOUND_OUT_OF_SCOPE" },
1577 { 0xC000022F, "STATUS_ALLOCATE_BUCKET" },
1578 { 0xC0000230, "STATUS_PROPSET_NOT_FOUND" },
1579 { 0xC0000231, "STATUS_MARSHALL_OVERFLOW" },
1580 { 0xC0000232, "STATUS_INVALID_VARIANT" },
1581 { 0xC0000233, "STATUS_DOMAIN_CONTROLLER_NOT_FOUND" },
1582 { 0xC0000234, "STATUS_ACCOUNT_LOCKED_OUT" },
1583 { 0xC0000235, "STATUS_HANDLE_NOT_CLOSABLE" },
1584 { 0xC0000236, "STATUS_CONNECTION_REFUSED" },
1585 { 0xC0000237, "STATUS_GRACEFUL_DISCONNECT" },
1586 { 0xC0000238, "STATUS_ADDRESS_ALREADY_ASSOCIATED" },
1587 { 0xC0000239, "STATUS_ADDRESS_NOT_ASSOCIATED" },
1588 { 0xC000023A, "STATUS_CONNECTION_INVALID" },
1589 { 0xC000023B, "STATUS_CONNECTION_ACTIVE" },
1590 { 0xC000023C, "STATUS_NETWORK_UNREACHABLE" },
1591 { 0xC000023D, "STATUS_HOST_UNREACHABLE" },
1592 { 0xC000023E, "STATUS_PROTOCOL_UNREACHABLE" },
1593 { 0xC000023F, "STATUS_PORT_UNREACHABLE" },
1594 { 0xC0000240, "STATUS_REQUEST_ABORTED" },
1595 { 0xC0000241, "STATUS_CONNECTION_ABORTED" },
1596 { 0xC0000242, "STATUS_BAD_COMPRESSION_BUFFER" },
1597 { 0xC0000243, "STATUS_USER_MAPPED_FILE" },
1598 { 0xC0000244, "STATUS_AUDIT_FAILED" },
1599 { 0xC0000245, "STATUS_TIMER_RESOLUTION_NOT_SET" },
1600 { 0xC0000246, "STATUS_CONNECTION_COUNT_LIMIT" },
1601 { 0xC0000247, "STATUS_LOGIN_TIME_RESTRICTION" },
1602 { 0xC0000248, "STATUS_LOGIN_WKSTA_RESTRICTION" },
1603 { 0xC0000249, "STATUS_IMAGE_MP_UP_MISMATCH" },
1604 { 0xC0000250, "STATUS_INSUFFICIENT_LOGON_INFO" },
1605 { 0xC0000251, "STATUS_BAD_DLL_ENTRYPOINT" },
1606 { 0xC0000252, "STATUS_BAD_SERVICE_ENTRYPOINT" },
1607 { 0xC0000253, "STATUS_LPC_REPLY_LOST" },
1608 { 0xC0000254, "STATUS_IP_ADDRESS_CONFLICT1" },
1609 { 0xC0000255, "STATUS_IP_ADDRESS_CONFLICT2" },
1610 { 0xC0000256, "STATUS_REGISTRY_QUOTA_LIMIT" },
1611 { 0xC0000257, "STATUS_PATH_NOT_COVERED" },
1612 { 0xC0000258, "STATUS_NO_CALLBACK_ACTIVE" },
1613 { 0xC0000259, "STATUS_LICENSE_QUOTA_EXCEEDED" },
1614 { 0xC000025A, "STATUS_PWD_TOO_SHORT" },
1615 { 0xC000025B, "STATUS_PWD_TOO_RECENT" },
1616 { 0xC000025C, "STATUS_PWD_HISTORY_CONFLICT" },
1617 { 0xC000025E, "STATUS_PLUGPLAY_NO_DEVICE" },
1618 { 0xC000025F, "STATUS_UNSUPPORTED_COMPRESSION" },
1619 { 0xC0000260, "STATUS_INVALID_HW_PROFILE" },
1620 { 0xC0000261, "STATUS_INVALID_PLUGPLAY_DEVICE_PATH" },
1621 { 0xC0000262, "STATUS_DRIVER_ORDINAL_NOT_FOUND" },
1622 { 0xC0000263, "STATUS_DRIVER_ENTRYPOINT_NOT_FOUND" },
1623 { 0xC0000264, "STATUS_RESOURCE_NOT_OWNED" },
1624 { 0xC0000265, "STATUS_TOO_MANY_LINKS" },
1625 { 0xC0000266, "STATUS_QUOTA_LIST_INCONSISTENT" },
1626 { 0xC0000267, "STATUS_FILE_IS_OFFLINE" },
1627 { 0xC0000268, "STATUS_EVALUATION_EXPIRATION" },
1628 { 0xC0000269, "STATUS_ILLEGAL_DLL_RELOCATION" },
1629 { 0xC000026A, "STATUS_LICENSE_VIOLATION" },
1630 { 0xC000026B, "STATUS_DLL_INIT_FAILED_LOGOFF" },
1631 { 0xC000026C, "STATUS_DRIVER_UNABLE_TO_LOAD" },
1632 { 0xC000026D, "STATUS_DFS_UNAVAILABLE" },
1633 { 0xC000026E, "STATUS_VOLUME_DISMOUNTED" },
1634 { 0xC000026F, "STATUS_WX86_INTERNAL_ERROR" },
1635 { 0xC0000270, "STATUS_WX86_FLOAT_STACK_CHECK" },
1636 { 0xC0000271, "STATUS_VALIDATE_CONTINUE" },
1637 { 0xC0000272, "STATUS_NO_MATCH" },
1638 { 0xC0000273, "STATUS_NO_MORE_MATCHES" },
1639 { 0xC0000275, "STATUS_NOT_A_REPARSE_POINT" },
1640 { 0xC0000276, "STATUS_IO_REPARSE_TAG_INVALID" },
1641 { 0xC0000277, "STATUS_IO_REPARSE_TAG_MISMATCH" },
1642 { 0xC0000278, "STATUS_IO_REPARSE_DATA_INVALID" },
1643 { 0xC0000279, "STATUS_IO_REPARSE_TAG_NOT_HANDLED" },
1644 { 0xC0000280, "STATUS_REPARSE_POINT_NOT_RESOLVED" },
1645 { 0xC0000281, "STATUS_DIRECTORY_IS_A_REPARSE_POINT" },
1646 { 0xC0000282, "STATUS_RANGE_LIST_CONFLICT" },
1647 { 0xC0000283, "STATUS_SOURCE_ELEMENT_EMPTY" },
1648 { 0xC0000284, "STATUS_DESTINATION_ELEMENT_FULL" },
1649 { 0xC0000285, "STATUS_ILLEGAL_ELEMENT_ADDRESS" },
1650 { 0xC0000286, "STATUS_MAGAZINE_NOT_PRESENT" },
1651 { 0xC0000287, "STATUS_REINITIALIZATION_NEEDED" },
1652 { 0x80000288, "STATUS_DEVICE_REQUIRES_CLEANING" },
1653 { 0x80000289, "STATUS_DEVICE_DOOR_OPEN" },
1654 { 0xC000028A, "STATUS_ENCRYPTION_FAILED" },
1655 { 0xC000028B, "STATUS_DECRYPTION_FAILED" },
1656 { 0xC000028C, "STATUS_RANGE_NOT_FOUND" },
1657 { 0xC000028D, "STATUS_NO_RECOVERY_POLICY" },
1658 { 0xC000028E, "STATUS_NO_EFS" },
1659 { 0xC000028F, "STATUS_WRONG_EFS" },
1660 { 0xC0000290, "STATUS_NO_USER_KEYS" },
1661 { 0xC0000291, "STATUS_FILE_NOT_ENCRYPTED" },
1662 { 0xC0000292, "STATUS_NOT_EXPORT_FORMAT" },
1663 { 0xC0000293, "STATUS_FILE_ENCRYPTED" },
1664 { 0x40000294, "STATUS_WAKE_SYSTEM" },
1665 { 0xC0000295, "STATUS_WMI_GUID_NOT_FOUND" },
1666 { 0xC0000296, "STATUS_WMI_INSTANCE_NOT_FOUND" },
1667 { 0xC0000297, "STATUS_WMI_ITEMID_NOT_FOUND" },
1668 { 0xC0000298, "STATUS_WMI_TRY_AGAIN" },
1669 { 0xC0000299, "STATUS_SHARED_POLICY" },
1670 { 0xC000029A, "STATUS_POLICY_OBJECT_NOT_FOUND" },
1671 { 0xC000029B, "STATUS_POLICY_ONLY_IN_DS" },
1672 { 0xC000029C, "STATUS_VOLUME_NOT_UPGRADED" },
1673 { 0xC000029D, "STATUS_REMOTE_STORAGE_NOT_ACTIVE" },
1674 { 0xC000029E, "STATUS_REMOTE_STORAGE_MEDIA_ERROR" },
1675 { 0xC000029F, "STATUS_NO_TRACKING_SERVICE" },
1676 { 0xC00002A0, "STATUS_SERVER_SID_MISMATCH" },
1677 { 0xC00002A1, "STATUS_DS_NO_ATTRIBUTE_OR_VALUE" },
1678 { 0xC00002A2, "STATUS_DS_INVALID_ATTRIBUTE_SYNTAX" },
1679 { 0xC00002A3, "STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED" },
1680 { 0xC00002A4, "STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS" },
1681 { 0xC00002A5, "STATUS_DS_BUSY" },
1682 { 0xC00002A6, "STATUS_DS_UNAVAILABLE" },
1683 { 0xC00002A7, "STATUS_DS_NO_RIDS_ALLOCATED" },
1684 { 0xC00002A8, "STATUS_DS_NO_MORE_RIDS" },
1685 { 0xC00002A9, "STATUS_DS_INCORRECT_ROLE_OWNER" },
1686 { 0xC00002AA, "STATUS_DS_RIDMGR_INIT_ERROR" },
1687 { 0xC00002AB, "STATUS_DS_OBJ_CLASS_VIOLATION" },
1688 { 0xC00002AC, "STATUS_DS_CANT_ON_NON_LEAF" },
1689 { 0xC00002AD, "STATUS_DS_CANT_ON_RDN" },
1690 { 0xC00002AE, "STATUS_DS_CANT_MOD_OBJ_CLASS" },
1691 { 0xC00002AF, "STATUS_DS_CROSS_DOM_MOVE_FAILED" },
1692 { 0xC00002B0, "STATUS_DS_GC_NOT_AVAILABLE" },
1693 { 0xC00002B1, "STATUS_DIRECTORY_SERVICE_REQUIRED" },
1694 { 0xC00002B2, "STATUS_REPARSE_ATTRIBUTE_CONFLICT" },
1695 { 0xC00002B3, "STATUS_CANT_ENABLE_DENY_ONLY" },
1696 { 0xC00002B4, "STATUS_FLOAT_MULTIPLE_FAULTS" },
1697 { 0xC00002B5, "STATUS_FLOAT_MULTIPLE_TRAPS" },
1698 { 0xC00002B6, "STATUS_DEVICE_REMOVED" },
1699 { 0xC00002B7, "STATUS_JOURNAL_DELETE_IN_PROGRESS" },
1700 { 0xC00002B8, "STATUS_JOURNAL_NOT_ACTIVE" },
1701 { 0xC00002B9, "STATUS_NOINTERFACE" },
1702 { 0xC00002C1, "STATUS_DS_ADMIN_LIMIT_EXCEEDED" },
1703 { 0xC00002C2, "STATUS_DRIVER_FAILED_SLEEP" },
1704 { 0xC00002C3, "STATUS_MUTUAL_AUTHENTICATION_FAILED" },
1705 { 0xC00002C4, "STATUS_CORRUPT_SYSTEM_FILE" },
1706 { 0xC00002C5, "STATUS_DATATYPE_MISALIGNMENT_ERROR" },
1707 { 0xC00002C6, "STATUS_WMI_READ_ONLY" },
1708 { 0xC00002C7, "STATUS_WMI_SET_FAILURE" },
1709 { 0xC00002C8, "STATUS_COMMITMENT_MINIMUM" },
1710 { 0xC00002C9, "STATUS_REG_NAT_CONSUMPTION" },
1711 { 0xC00002CA, "STATUS_TRANSPORT_FULL" },
1712 { 0xC00002CB, "STATUS_DS_SAM_INIT_FAILURE" },
1713 { 0xC00002CC, "STATUS_ONLY_IF_CONNECTED" },
1714 { 0xC00002CD, "STATUS_DS_SENSITIVE_GROUP_VIOLATION" },
1715 { 0xC00002CE, "STATUS_PNP_RESTART_ENUMERATION" },
1716 { 0xC00002CF, "STATUS_JOURNAL_ENTRY_DELETED" },
1717 { 0xC00002D0, "STATUS_DS_CANT_MOD_PRIMARYGROUPID" },
1718 { 0xC00002D1, "STATUS_SYSTEM_IMAGE_BAD_SIGNATURE" },
1719 { 0xC00002D2, "STATUS_PNP_REBOOT_REQUIRED" },
1720 { 0xC00002D3, "STATUS_POWER_STATE_INVALID" },
1721 { 0xC00002D4, "STATUS_DS_INVALID_GROUP_TYPE" },
1722 { 0xC00002D5, "STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN" },
1723 { 0xC00002D6, "STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN" },
1724 { 0xC00002D7, "STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER" },
1725 { 0xC00002D8, "STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER" },
1726 { 0xC00002D9, "STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER" },
1727 { 0xC00002DA, "STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER" },
1728 { 0xC00002DB, "STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER" },
1729 { 0xC00002DC, "STATUS_DS_HAVE_PRIMARY_MEMBERS" },
1730 { 0xC00002DD, "STATUS_WMI_NOT_SUPPORTED" },
1731 { 0xC00002DE, "STATUS_INSUFFICIENT_POWER" },
1732 { 0xC00002DF, "STATUS_SAM_NEED_BOOTKEY_PASSWORD" },
1733 { 0xC00002E0, "STATUS_SAM_NEED_BOOTKEY_FLOPPY" },
1734 { 0xC00002E1, "STATUS_DS_CANT_START" },
1735 { 0xC00002E2, "STATUS_DS_INIT_FAILURE" },
1736 { 0xC00002E3, "STATUS_SAM_INIT_FAILURE" },
1737 { 0xC00002E4, "STATUS_DS_GC_REQUIRED" },
1738 { 0xC00002E5, "STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY" },
1739 { 0xC00002E6, "STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS" },
1740 { 0xC00002E7, "STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" },
1741 { 0xC00002E8, "STATUS_MULTIPLE_FAULT_VIOLATION" },
1742 { 0xC0000300, "STATUS_NOT_SUPPORTED_ON_SBS" },
1743 { 0xC0009898, "STATUS_WOW_ASSERTION" },
1744 { 0xC0020001, "RPC_NT_INVALID_STRING_BINDING" },
1745 { 0xC0020002, "RPC_NT_WRONG_KIND_OF_BINDING" },
1746 { 0xC0020003, "RPC_NT_INVALID_BINDING" },
1747 { 0xC0020004, "RPC_NT_PROTSEQ_NOT_SUPPORTED" },
1748 { 0xC0020005, "RPC_NT_INVALID_RPC_PROTSEQ" },
1749 { 0xC0020006, "RPC_NT_INVALID_STRING_UUID" },
1750 { 0xC0020007, "RPC_NT_INVALID_ENDPOINT_FORMAT" },
1751 { 0xC0020008, "RPC_NT_INVALID_NET_ADDR" },
1752 { 0xC0020009, "RPC_NT_NO_ENDPOINT_FOUND" },
1753 { 0xC002000A, "RPC_NT_INVALID_TIMEOUT" },
1754 { 0xC002000B, "RPC_NT_OBJECT_NOT_FOUND" },
1755 { 0xC002000C, "RPC_NT_ALREADY_REGISTERED" },
1756 { 0xC002000D, "RPC_NT_TYPE_ALREADY_REGISTERED" },
1757 { 0xC002000E, "RPC_NT_ALREADY_LISTENING" },
1758 { 0xC002000F, "RPC_NT_NO_PROTSEQS_REGISTERED" },
1759 { 0xC0020010, "RPC_NT_NOT_LISTENING" },
1760 { 0xC0020011, "RPC_NT_UNKNOWN_MGR_TYPE" },
1761 { 0xC0020012, "RPC_NT_UNKNOWN_IF" },
1762 { 0xC0020013, "RPC_NT_NO_BINDINGS" },
1763 { 0xC0020014, "RPC_NT_NO_PROTSEQS" },
1764 { 0xC0020015, "RPC_NT_CANT_CREATE_ENDPOINT" },
1765 { 0xC0020016, "RPC_NT_OUT_OF_RESOURCES" },
1766 { 0xC0020017, "RPC_NT_SERVER_UNAVAILABLE" },
1767 { 0xC0020018, "RPC_NT_SERVER_TOO_BUSY" },
1768 { 0xC0020019, "RPC_NT_INVALID_NETWORK_OPTIONS" },
1769 { 0xC002001A, "RPC_NT_NO_CALL_ACTIVE" },
1770 { 0xC002001B, "RPC_NT_CALL_FAILED" },
1771 { 0xC002001C, "RPC_NT_CALL_FAILED_DNE" },
1772 { 0xC002001D, "RPC_NT_PROTOCOL_ERROR" },
1773 { 0xC002001F, "RPC_NT_UNSUPPORTED_TRANS_SYN" },
1774 { 0xC0020021, "RPC_NT_UNSUPPORTED_TYPE" },
1775 { 0xC0020022, "RPC_NT_INVALID_TAG" },
1776 { 0xC0020023, "RPC_NT_INVALID_BOUND" },
1777 { 0xC0020024, "RPC_NT_NO_ENTRY_NAME" },
1778 { 0xC0020025, "RPC_NT_INVALID_NAME_SYNTAX" },
1779 { 0xC0020026, "RPC_NT_UNSUPPORTED_NAME_SYNTAX" },
1780 { 0xC0020028, "RPC_NT_UUID_NO_ADDRESS" },
1781 { 0xC0020029, "RPC_NT_DUPLICATE_ENDPOINT" },
1782 { 0xC002002A, "RPC_NT_UNKNOWN_AUTHN_TYPE" },
1783 { 0xC002002B, "RPC_NT_MAX_CALLS_TOO_SMALL" },
1784 { 0xC002002C, "RPC_NT_STRING_TOO_LONG" },
1785 { 0xC002002D, "RPC_NT_PROTSEQ_NOT_FOUND" },
1786 { 0xC002002E, "RPC_NT_PROCNUM_OUT_OF_RANGE" },
1787 { 0xC002002F, "RPC_NT_BINDING_HAS_NO_AUTH" },
1788 { 0xC0020030, "RPC_NT_UNKNOWN_AUTHN_SERVICE" },
1789 { 0xC0020031, "RPC_NT_UNKNOWN_AUTHN_LEVEL" },
1790 { 0xC0020032, "RPC_NT_INVALID_AUTH_IDENTITY" },
1791 { 0xC0020033, "RPC_NT_UNKNOWN_AUTHZ_SERVICE" },
1792 { 0xC0020034, "EPT_NT_INVALID_ENTRY" },
1793 { 0xC0020035, "EPT_NT_CANT_PERFORM_OP" },
1794 { 0xC0020036, "EPT_NT_NOT_REGISTERED" },
1795 { 0xC0020037, "RPC_NT_NOTHING_TO_EXPORT" },
1796 { 0xC0020038, "RPC_NT_INCOMPLETE_NAME" },
1797 { 0xC0020039, "RPC_NT_INVALID_VERS_OPTION" },
1798 { 0xC002003A, "RPC_NT_NO_MORE_MEMBERS" },
1799 { 0xC002003B, "RPC_NT_NOT_ALL_OBJS_UNEXPORTED" },
1800 { 0xC002003C, "RPC_NT_INTERFACE_NOT_FOUND" },
1801 { 0xC002003D, "RPC_NT_ENTRY_ALREADY_EXISTS" },
1802 { 0xC002003E, "RPC_NT_ENTRY_NOT_FOUND" },
1803 { 0xC002003F, "RPC_NT_NAME_SERVICE_UNAVAILABLE" },
1804 { 0xC0020040, "RPC_NT_INVALID_NAF_ID" },
1805 { 0xC0020041, "RPC_NT_CANNOT_SUPPORT" },
1806 { 0xC0020042, "RPC_NT_NO_CONTEXT_AVAILABLE" },
1807 { 0xC0020043, "RPC_NT_INTERNAL_ERROR" },
1808 { 0xC0020044, "RPC_NT_ZERO_DIVIDE" },
1809 { 0xC0020045, "RPC_NT_ADDRESS_ERROR" },
1810 { 0xC0020046, "RPC_NT_FP_DIV_ZERO" },
1811 { 0xC0020047, "RPC_NT_FP_UNDERFLOW" },
1812 { 0xC0020048, "RPC_NT_FP_OVERFLOW" },
1813 { 0xC0021007, "RPC_P_RECEIVE_ALERTED" },
1814 { 0xC0021008, "RPC_P_CONNECTION_CLOSED" },
1815 { 0xC0021009, "RPC_P_RECEIVE_FAILED" },
1816 { 0xC002100A, "RPC_P_SEND_FAILED" },
1817 { 0xC002100B, "RPC_P_TIMEOUT" },
1818 { 0xC002100C, "RPC_P_SERVER_TRANSPORT_ERROR" },
1819 { 0xC002100E, "RPC_P_EXCEPTION_OCCURED" },
1820 { 0xC0021012, "RPC_P_CONNECTION_SHUTDOWN" },
1821 { 0xC0021015, "RPC_P_THREAD_LISTENING" },
1822 { 0xC0030001, "RPC_NT_NO_MORE_ENTRIES" },
1823 { 0xC0030002, "RPC_NT_SS_CHAR_TRANS_OPEN_FAIL" },
1824 { 0xC0030003, "RPC_NT_SS_CHAR_TRANS_SHORT_FILE" },
1825 { 0xC0030004, "RPC_NT_SS_IN_NULL_CONTEXT" },
1826 { 0xC0030005, "RPC_NT_SS_CONTEXT_MISMATCH" },
1827 { 0xC0030006, "RPC_NT_SS_CONTEXT_DAMAGED" },
1828 { 0xC0030007, "RPC_NT_SS_HANDLES_MISMATCH" },
1829 { 0xC0030008, "RPC_NT_SS_CANNOT_GET_CALL_HANDLE" },
1830 { 0xC0030009, "RPC_NT_NULL_REF_POINTER" },
1831 { 0xC003000A, "RPC_NT_ENUM_VALUE_OUT_OF_RANGE" },
1832 { 0xC003000B, "RPC_NT_BYTE_COUNT_TOO_SMALL" },
1833 { 0xC003000C, "RPC_NT_BAD_STUB_DATA" },
1834 { 0xC0020049, "RPC_NT_CALL_IN_PROGRESS" },
1835 { 0xC002004A, "RPC_NT_NO_MORE_BINDINGS" },
1836 { 0xC002004B, "RPC_NT_GROUP_MEMBER_NOT_FOUND" },
1837 { 0xC002004C, "EPT_NT_CANT_CREATE" },
1838 { 0xC002004D, "RPC_NT_INVALID_OBJECT" },
1839 { 0xC002004F, "RPC_NT_NO_INTERFACES" },
1840 { 0xC0020050, "RPC_NT_CALL_CANCELLED" },
1841 { 0xC0020051, "RPC_NT_BINDING_INCOMPLETE" },
1842 { 0xC0020052, "RPC_NT_COMM_FAILURE" },
1843 { 0xC0020053, "RPC_NT_UNSUPPORTED_AUTHN_LEVEL" },
1844 { 0xC0020054, "RPC_NT_NO_PRINC_NAME" },
1845 { 0xC0020055, "RPC_NT_NOT_RPC_ERROR" },
1846 { 0x40020056, "RPC_NT_UUID_LOCAL_ONLY" },
1847 { 0xC0020057, "RPC_NT_SEC_PKG_ERROR" },
1848 { 0xC0020058, "RPC_NT_NOT_CANCELLED" },
1849 { 0xC0030059, "RPC_NT_INVALID_ES_ACTION" },
1850 { 0xC003005A, "RPC_NT_WRONG_ES_VERSION" },
1851 { 0xC003005B, "RPC_NT_WRONG_STUB_VERSION" },
1852 { 0xC003005C, "RPC_NT_INVALID_PIPE_OBJECT" },
1853 { 0xC003005D, "RPC_NT_INVALID_PIPE_OPERATION" },
1854 { 0xC003005E, "RPC_NT_WRONG_PIPE_VERSION" },
1855 { 0x400200AF, "RPC_NT_SEND_INCOMPLETE" },
1856 { 0, NULL }
1857};
1858
1859/*
1860 * return an NT error string from a SMB buffer
1861 */
1862const char *
1863nt_errstr(u_int32_t err)
1864{
1865 static char ret[128];
1866 int i;
1867
1868 ret[0] = 0;
1869
1870 for (i = 0; nt_errors[i].name; i++) {
1871 if (err == nt_errors[i].code)
1872 return nt_errors[i].name;
1873 }
1874
1875 snprintf(ret, sizeof(ret), "0x%08x", err);
1876 return ret;
1877}