]> The Tcpdump Group git mirrors - tcpdump/blob - smbutil.c
CHANGES: Move change(s) backported to 4.99
[tcpdump] / smbutil.c
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 #include <config.h>
10
11 #include "netdissect-stdinc.h"
12
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16
17 #include "netdissect-ctype.h"
18
19 #include "netdissect.h"
20 #include "extract.h"
21 #include "smb.h"
22
23 static int stringlen_is_set;
24 static uint32_t stringlen;
25 extern const u_char *startbuf;
26
27 /*
28 * Reset SMB state.
29 */
30 void
31 smb_reset(void)
32 {
33 stringlen_is_set = 0;
34 stringlen = 0;
35 }
36
37 /*
38 * create a UNIX time_t from a 32-bit DOS packetd date/time, with
39 * the DOS date/time assumed to be local time in *our* location.
40 */
41 static time_t
42 int_unix_date(uint32_t dos_date)
43 {
44 uint32_t p0, p1, p2, p3;
45 struct tm t;
46
47 if (dos_date == 0)
48 return(0);
49
50 p0 = dos_date & 0xFF;
51 p1 = ((dos_date & 0xFF00) >> 8) & 0xFF;
52 p2 = ((dos_date & 0xFF0000) >> 16) & 0xFF;
53 p3 = ((dos_date & 0xFF000000) >> 24) & 0xFF;
54
55 t.tm_sec = 2 * (p0 & 0x1F);
56 t.tm_min = ((p0 >> 5) & 0xFF) + ((p1 & 0x7) << 3);
57 t.tm_hour = (p1 >> 3) & 0xFF;
58 t.tm_mday = (p2 & 0x1F);
59 t.tm_mon = ((p2 >> 5) & 0xFF) + ((p3 & 0x1) << 3) - 1;
60 t.tm_year = ((p3 >> 1) & 0xFF) + 80;
61
62 t.tm_wday = 1; /* XXX - should not affect the result; why 1? */
63 t.tm_yday = 1; /* XXX - should not affect the result; why 1? */
64 t.tm_isdst = 0; /* XXX - should be -1, to handle DST? */
65
66 /*
67 * XXX - if tm_year is 2038 or later, this might not fit in a
68 * 32-bit time_t.
69 */
70 return (mktime(&t));
71 }
72
73 /*
74 * create a unix date from a dos date
75 * in network byte order
76 */
77 static time_t
78 make_unix_date(netdissect_options *ndo, const u_char *date_ptr)
79 {
80 uint32_t dos_date = 0;
81
82 dos_date = GET_LE_U_4(date_ptr);
83
84 return int_unix_date(dos_date);
85 }
86
87 /*
88 * create a unix date from a dos date
89 * in halfword-swapped network byte order!
90 */
91 static time_t
92 make_unix_date2(netdissect_options *ndo, const u_char *date_ptr)
93 {
94 uint32_t x, x2;
95
96 x = GET_LE_U_4(date_ptr);
97 x2 = ((x & 0xFFFF) << 16) | ((x & 0xFFFF0000) >> 16);
98 return int_unix_date(x2);
99 }
100
101 /* Delta between the NT FILETIME epoch and the POSIX epoch. */
102 #define FILETIME_TO_POSIX_DELTA INT64_C(11644473600)
103
104 /*
105 * interpret an 8 byte NT FILETIME structure to a time_t
106 * It's originally in "100ns units since jan 1st 1601"
107 */
108 static time_t
109 interpret_filetime(netdissect_options *ndo, const u_char *p)
110 {
111 int64_t ret;
112 time_t ret_time_t;
113
114 /*
115 * Fetch a FILETIME structure; the first 4 bytes are the low-order
116 * 32 bits of a 64-bit count of 100ns units since 1601-01-01
117 * at some specific time, and the next 4 bytes are the high-order
118 * 32 bits of that count.
119 */
120 ret = (int64_t)(((uint64_t)GET_LE_U_4(p + 4) << 32) + (uint64_t)GET_LE_U_4(p));
121
122 /* Now convert from FILETIME to POSIX time. */
123 ret += FILETIME_TO_POSIX_DELTA;
124
125 ret_time_t = (time_t)ret;
126 if (ret_time_t != ret) {
127 /*
128 * It doesn't fit in a time_t. Return 0, as an error indication.
129 */
130 return(0);
131 }
132 return(ret_time_t);
133 }
134
135 /*
136 * interpret the weird netbios "name". Return the name type, or -1 if
137 * we run past the end of the buffer
138 */
139 static int
140 name_interpret(netdissect_options *ndo,
141 const u_char *in, const u_char *maxbuf, char *out)
142 {
143 int ret;
144 u_int len;
145
146 if (in >= maxbuf)
147 return(-1); /* name goes past the end of the buffer */
148 len = GET_U_1(in) / 2;
149 in++;
150
151 *out=0;
152
153 if (len > 30 || len == 0)
154 return(0);
155
156 while (len) {
157 ND_TCHECK_2(in);
158 if (in + 1 >= maxbuf)
159 return(-1); /* name goes past the end of the buffer */
160 if (GET_U_1(in) < 'A' || GET_U_1(in) > 'P' ||
161 GET_U_1(in + 1) < 'A' || GET_U_1(in + 1) > 'P') {
162 *out = 0;
163 return(0);
164 }
165 *out = ((GET_U_1(in) - 'A') << 4) + (GET_U_1(in + 1) - 'A');
166 in += 2;
167 out++;
168 len--;
169 }
170 *out = 0;
171 ret = out[-1];
172
173 return(ret);
174
175 trunc:
176 return(-1);
177 }
178
179 /*
180 * find a pointer to a netbios name
181 */
182 static const u_char *
183 name_ptr(netdissect_options *ndo,
184 const u_char *buf, u_int ofs, const u_char *maxbuf)
185 {
186 const u_char *p;
187 u_char c;
188
189 p = buf + ofs;
190 if (p >= maxbuf)
191 return(NULL); /* name goes past the end of the buffer */
192
193 c = GET_U_1(p);
194
195 /* XXX - this should use the same code that the DNS dissector does */
196 if ((c & 0xC0) == 0xC0) {
197 uint16_t l;
198
199 ND_TCHECK_2(p);
200 if ((p + 1) >= maxbuf)
201 return(NULL); /* name goes past the end of the buffer */
202 l = GET_BE_U_2(p) & 0x3FFF;
203 if (l == 0) {
204 /* We have a pointer that points to itself. */
205 return(NULL);
206 }
207 p = buf + l;
208 if (p >= maxbuf)
209 return(NULL); /* name goes past the end of the buffer */
210 ND_TCHECK_1(p);
211 }
212 return(p);
213
214 trunc:
215 return(NULL); /* name goes past the end of the buffer */
216 }
217
218 /*
219 * extract a netbios name from a buf
220 */
221 static int
222 name_extract(netdissect_options *ndo,
223 const u_char *buf, u_int ofs, const u_char *maxbuf, char *name)
224 {
225 const u_char *p = name_ptr(ndo, buf, ofs, maxbuf);
226 if (p == NULL)
227 return(-1); /* error (probably name going past end of buffer) */
228 name[0] = '\0';
229 return(name_interpret(ndo, p, maxbuf, name));
230 }
231
232
233 /*
234 * return the total storage length of a mangled name
235 */
236 static int
237 name_len(netdissect_options *ndo,
238 const u_char *s, const u_char *maxbuf)
239 {
240 const u_char *s0 = s;
241 unsigned char c;
242
243 if (s >= maxbuf)
244 return(-1); /* name goes past the end of the buffer */
245 c = GET_U_1(s);
246 if ((c & 0xC0) == 0xC0)
247 return(2);
248 while (GET_U_1(s)) {
249 if (s >= maxbuf)
250 return(-1); /* name goes past the end of the buffer */
251 s += GET_U_1(s) + 1;
252 ND_TCHECK_1(s);
253 }
254 return(ND_BYTES_BETWEEN(s0, s) + 1);
255
256 trunc:
257 return(-1); /* name goes past the end of the buffer */
258 }
259
260 static const char *
261 name_type_str(int name_type)
262 {
263 const char *f = NULL;
264
265 switch (name_type) {
266 case 0: f = "Workstation"; break;
267 case 0x03: f = "Client?"; break;
268 case 0x20: f = "Server"; break;
269 case 0x1d: f = "Master Browser"; break;
270 case 0x1b: f = "Domain Controller"; break;
271 case 0x1e: f = "Browser Server"; break;
272 default: f = "Unknown"; break;
273 }
274 return(f);
275 }
276
277 void
278 smb_data_print(netdissect_options *ndo, const u_char *buf, u_int len)
279 {
280 u_int i = 0;
281
282 if (len == 0)
283 return;
284 ND_PRINT("[%03X] ", i);
285 for (i = 0; i < len; /*nothing*/) {
286 ND_PRINT("%02X ", GET_U_1(buf + i) & 0xff);
287 i++;
288 if (i%8 == 0)
289 ND_PRINT(" ");
290 if (i % 16 == 0) {
291 nd_printjn(ndo, buf + i - 16, 8);
292 ND_PRINT(" ");
293 nd_printjn(ndo, buf + i - 8, 8);
294 ND_PRINT("\n");
295 if (i < len)
296 ND_PRINT("[%03X] ", i);
297 }
298 }
299 if (i % 16) {
300 int n;
301
302 n = 16 - (i % 16);
303 ND_PRINT(" ");
304 if (n>8)
305 ND_PRINT(" ");
306 while (n--)
307 ND_PRINT(" ");
308
309 n = ND_MIN(8, i % 16);
310 nd_printjn(ndo, buf + i - (i % 16), n);
311 ND_PRINT(" ");
312 n = (i % 16) - n;
313 if (n > 0)
314 nd_printjn(ndo, buf + i - n, n);
315 ND_PRINT("\n");
316 }
317 }
318
319
320 static void
321 write_bits(netdissect_options *ndo,
322 unsigned int val, const char *fmt)
323 {
324 const char *p = fmt;
325 u_int i = 0;
326
327 while ((p = strchr(fmt, '|'))) {
328 u_int l = ND_BYTES_BETWEEN(fmt, p);
329 if (l && (val & (1 << i)))
330 ND_PRINT("%.*s ", (int)l, fmt);
331 fmt = p + 1;
332 i++;
333 }
334 }
335
336 /* convert a UCS-2 string into an ASCII string */
337 #define MAX_UNISTR_SIZE 1000
338 static const u_char *
339 unistr(netdissect_options *ndo, char (*buf)[MAX_UNISTR_SIZE+1],
340 const u_char *s, uint32_t strsize, int is_null_terminated,
341 int use_unicode)
342 {
343 u_int c;
344 size_t l = 0;
345 const u_char *sp;
346
347 if (use_unicode) {
348 /*
349 * Skip padding that puts the string on an even boundary.
350 */
351 if (((s - startbuf) % 2) != 0) {
352 ND_TCHECK_1(s);
353 s++;
354 }
355 }
356 if (is_null_terminated) {
357 /*
358 * Null-terminated string.
359 * Find the length, counting the terminating NUL.
360 */
361 strsize = 0;
362 sp = s;
363 if (!use_unicode) {
364 for (;;) {
365 c = GET_U_1(sp);
366 sp++;
367 strsize++;
368 if (c == '\0')
369 break;
370 }
371 } else {
372 for (;;) {
373 c = GET_LE_U_2(sp);
374 sp += 2;
375 strsize += 2;
376 if (c == '\0')
377 break;
378 }
379 }
380 }
381 if (!use_unicode) {
382 while (strsize != 0) {
383 c = GET_U_1(s);
384 s++;
385 strsize--;
386 if (c == 0) {
387 /*
388 * Even counted strings may have embedded null
389 * terminators, so quit here, and skip past
390 * the rest of the data.
391 *
392 * Make sure, however, that the rest of the data
393 * is there, so we don't overflow the buffer when
394 * skipping past it.
395 */
396 ND_TCHECK_LEN(s, strsize);
397 s += strsize;
398 strsize = 0;
399 break;
400 }
401 if (l < MAX_UNISTR_SIZE) {
402 if (ND_ASCII_ISPRINT(c)) {
403 /* It's a printable ASCII character */
404 (*buf)[l] = (char)c;
405 } else {
406 /* It's a non-ASCII character or a non-printable ASCII character */
407 (*buf)[l] = '.';
408 }
409 l++;
410 }
411 }
412 } else {
413 while (strsize > 1) {
414 c = GET_LE_U_2(s);
415 s += 2;
416 strsize -= 2;
417 if (c == 0) {
418 /*
419 * Even counted strings may have embedded null
420 * terminators, so quit here, and skip past
421 * the rest of the data.
422 *
423 * Make sure, however, that the rest of the data
424 * is there, so we don't overflow the buffer when
425 * skipping past it.
426 */
427 ND_TCHECK_LEN(s, strsize);
428 s += strsize;
429 strsize = 0;
430 break;
431 }
432 if (l < MAX_UNISTR_SIZE) {
433 if (ND_ASCII_ISPRINT(c)) {
434 /* It's a printable ASCII character */
435 (*buf)[l] = (char)c;
436 } else {
437 /* It's a non-ASCII character or a non-printable ASCII character */
438 (*buf)[l] = '.';
439 }
440 l++;
441 }
442 }
443 if (strsize == 1) {
444 /* We have half of a code point; skip past it */
445 ND_TCHECK_1(s);
446 s++;
447 }
448 }
449 (*buf)[l] = 0;
450 return s;
451
452 trunc:
453 (*buf)[l] = 0;
454 return NULL;
455 }
456
457 static const u_char *
458 smb_fdata1(netdissect_options *ndo,
459 const u_char *buf, const char *fmt, const u_char *maxbuf,
460 int unicodestr)
461 {
462 int reverse = 0;
463 const char *attrib_fmt = "READONLY|HIDDEN|SYSTEM|VOLUME|DIR|ARCHIVE|";
464 char strbuf[MAX_UNISTR_SIZE+1];
465
466 while (*fmt && buf<maxbuf) {
467 switch (*fmt) {
468 case 'a':
469 write_bits(ndo, GET_U_1(buf), attrib_fmt);
470 buf++;
471 fmt++;
472 break;
473
474 case 'A':
475 write_bits(ndo, GET_LE_U_2(buf), attrib_fmt);
476 buf += 2;
477 fmt++;
478 break;
479
480 case '{':
481 {
482 char bitfmt[128];
483 char *p;
484 u_int l;
485
486 p = strchr(++fmt, '}');
487 l = ND_BYTES_BETWEEN(fmt, p);
488
489 if (l > sizeof(bitfmt) - 1)
490 l = sizeof(bitfmt)-1;
491
492 strncpy(bitfmt, fmt, l);
493 bitfmt[l] = '\0';
494 fmt = p + 1;
495 write_bits(ndo, GET_U_1(buf), bitfmt);
496 buf++;
497 break;
498 }
499
500 case 'P':
501 {
502 int l = atoi(fmt + 1);
503 ND_TCHECK_LEN(buf, l);
504 buf += l;
505 fmt++;
506 while (ND_ASCII_ISDIGIT(*fmt))
507 fmt++;
508 break;
509 }
510 case 'r':
511 reverse = !reverse;
512 fmt++;
513 break;
514 case 'b':
515 {
516 unsigned int x;
517 x = GET_U_1(buf);
518 ND_PRINT("%u (0x%x)", x, x);
519 buf += 1;
520 fmt++;
521 break;
522 }
523 case 'd':
524 {
525 int x;
526 x = reverse ? GET_BE_S_2(buf) :
527 GET_LE_S_2(buf);
528 ND_PRINT("%d (0x%x)", x, x);
529 buf += 2;
530 fmt++;
531 break;
532 }
533 case 'D':
534 {
535 int x;
536 x = reverse ? GET_BE_S_4(buf) :
537 GET_LE_S_4(buf);
538 ND_PRINT("%d (0x%x)", x, x);
539 buf += 4;
540 fmt++;
541 break;
542 }
543 case 'L':
544 {
545 uint64_t x;
546 x = reverse ? GET_BE_U_8(buf) :
547 GET_LE_U_8(buf);
548 ND_PRINT("%" PRIu64 " (0x%" PRIx64 ")", x, x);
549 buf += 8;
550 fmt++;
551 break;
552 }
553 case 'u':
554 {
555 unsigned int x;
556 x = reverse ? GET_BE_U_2(buf) :
557 GET_LE_U_2(buf);
558 ND_PRINT("%u (0x%x)", x, x);
559 buf += 2;
560 fmt++;
561 break;
562 }
563 case 'U':
564 {
565 unsigned int x;
566 x = reverse ? GET_BE_U_4(buf) :
567 GET_LE_U_4(buf);
568 ND_PRINT("%u (0x%x)", x, x);
569 buf += 4;
570 fmt++;
571 break;
572 }
573 case 'M':
574 {
575 /* Weird mixed-endian length values in 64-bit locks */
576 uint32_t x1, x2;
577 uint64_t x;
578 ND_TCHECK_8(buf);
579 x1 = reverse ? GET_BE_U_4(buf) :
580 GET_LE_U_4(buf);
581 x2 = reverse ? GET_BE_U_4(buf + 4) :
582 GET_LE_U_4(buf + 4);
583 x = (((uint64_t)x1) << 32) | x2;
584 ND_PRINT("%" PRIu64 " (0x%" PRIx64 ")", x, x);
585 buf += 8;
586 fmt++;
587 break;
588 }
589 case 'B':
590 {
591 unsigned int x;
592 x = GET_U_1(buf);
593 ND_PRINT("0x%X", x);
594 buf += 1;
595 fmt++;
596 break;
597 }
598 case 'w':
599 {
600 unsigned int x;
601 x = reverse ? GET_BE_U_2(buf) :
602 GET_LE_U_2(buf);
603 ND_PRINT("0x%X", x);
604 buf += 2;
605 fmt++;
606 break;
607 }
608 case 'W':
609 {
610 unsigned int x;
611 x = reverse ? GET_BE_U_4(buf) :
612 GET_LE_U_4(buf);
613 ND_PRINT("0x%X", x);
614 buf += 4;
615 fmt++;
616 break;
617 }
618 case 'l':
619 {
620 fmt++;
621 switch (*fmt) {
622
623 case 'b':
624 stringlen = GET_U_1(buf);
625 stringlen_is_set = 1;
626 ND_PRINT("%u", stringlen);
627 buf += 1;
628 break;
629
630 case 'd':
631 case 'u':
632 stringlen = reverse ? GET_BE_U_2(buf) :
633 GET_LE_U_2(buf);
634 stringlen_is_set = 1;
635 ND_PRINT("%u", stringlen);
636 buf += 2;
637 break;
638
639 case 'D':
640 case 'U':
641 stringlen = reverse ? GET_BE_U_4(buf) :
642 GET_LE_U_4(buf);
643 stringlen_is_set = 1;
644 ND_PRINT("%u", stringlen);
645 buf += 4;
646 break;
647 }
648 fmt++;
649 break;
650 }
651 case 'S':
652 case 'R': /* like 'S', but always ASCII */
653 {
654 /*XXX unistr() */
655 buf = unistr(ndo, &strbuf, buf, 0, 1, (*fmt == 'R') ? 0 : unicodestr);
656 ND_PRINT("%s", strbuf);
657 if (buf == NULL)
658 goto trunc;
659 fmt++;
660 break;
661 }
662 case 'Z':
663 case 'Y': /* like 'Z', but always ASCII */
664 {
665 if (GET_U_1(buf) != 4 && GET_U_1(buf) != 2) {
666 ND_PRINT("Error! ASCIIZ buffer of type %u", GET_U_1(buf));
667 return maxbuf; /* give up */
668 }
669 buf = unistr(ndo, &strbuf, buf + 1, 0, 1, (*fmt == 'Y') ? 0 : unicodestr);
670 ND_PRINT("%s", strbuf);
671 if (buf == NULL)
672 goto trunc;
673 fmt++;
674 break;
675 }
676 case 's':
677 {
678 int l = atoi(fmt + 1);
679 ND_TCHECK_LEN(buf, l);
680 ND_PRINT("%-*.*s", l, l, buf);
681 buf += l;
682 fmt++;
683 while (ND_ASCII_ISDIGIT(*fmt))
684 fmt++;
685 break;
686 }
687 case 'c':
688 {
689 if (!stringlen_is_set) {
690 ND_PRINT("{stringlen not set}");
691 goto trunc;
692 }
693 ND_TCHECK_LEN(buf, stringlen);
694 ND_PRINT("%-*.*s", (int)stringlen, (int)stringlen, buf);
695 buf += stringlen;
696 fmt++;
697 while (ND_ASCII_ISDIGIT(*fmt))
698 fmt++;
699 break;
700 }
701 case 'C':
702 {
703 if (!stringlen_is_set) {
704 ND_PRINT("{stringlen not set}");
705 goto trunc;
706 }
707 buf = unistr(ndo, &strbuf, buf, stringlen, 0, unicodestr);
708 ND_PRINT("%s", strbuf);
709 if (buf == NULL)
710 goto trunc;
711 fmt++;
712 break;
713 }
714 case 'h':
715 {
716 int l = atoi(fmt + 1);
717 ND_TCHECK_LEN(buf, l);
718 while (l--) {
719 ND_PRINT("%02x", GET_U_1(buf));
720 buf++;
721 }
722 fmt++;
723 while (ND_ASCII_ISDIGIT(*fmt))
724 fmt++;
725 break;
726 }
727 case 'n':
728 {
729 int t = atoi(fmt+1);
730 char nbuf[255];
731 int name_type;
732 int len;
733
734 switch (t) {
735 case 1:
736 name_type = name_extract(ndo, startbuf,
737 ND_BYTES_BETWEEN(startbuf, buf),
738 maxbuf, nbuf);
739 if (name_type < 0)
740 goto trunc;
741 len = name_len(ndo, buf, maxbuf);
742 if (len < 0)
743 goto trunc;
744 buf += len;
745 ND_PRINT("%-15.15s NameType=0x%02X (%s)", nbuf, name_type,
746 name_type_str(name_type));
747 break;
748 case 2:
749 name_type = GET_U_1(buf + 15);
750 ND_PRINT("%-15.15s NameType=0x%02X (%s)", buf, name_type,
751 name_type_str(name_type));
752 buf += 16;
753 break;
754 }
755 fmt++;
756 while (ND_ASCII_ISDIGIT(*fmt))
757 fmt++;
758 break;
759 }
760 case 'T':
761 {
762 time_t t;
763 const char *tstring;
764 char buffer[sizeof("Www Mmm dd hh:mm:ss yyyyy")];
765 uint32_t x;
766
767 switch (atoi(fmt + 1)) {
768 case 1:
769 x = GET_LE_U_4(buf);
770 if (x == 0 || x == 0xFFFFFFFF)
771 t = 0;
772 else
773 t = make_unix_date(ndo, buf);
774 buf += 4;
775 break;
776 case 2:
777 x = GET_LE_U_4(buf);
778 if (x == 0 || x == 0xFFFFFFFF)
779 t = 0;
780 else
781 t = make_unix_date2(ndo, buf);
782 buf += 4;
783 break;
784 case 3:
785 ND_TCHECK_8(buf);
786 t = interpret_filetime(ndo, buf);
787 buf += 8;
788 break;
789 default:
790 t = 0;
791 break;
792 }
793 if (t != 0) {
794 tstring = nd_format_time(buffer, sizeof(buffer), "%Y-%m-%d %T",
795 localtime(&t));
796 } else
797 tstring = "NULL";
798 ND_PRINT("%s\n", tstring);
799 fmt++;
800 while (ND_ASCII_ISDIGIT(*fmt))
801 fmt++;
802 break;
803 }
804 default:
805 ND_PRINT("%c", *fmt);
806 fmt++;
807 break;
808 }
809 }
810
811 if (buf >= maxbuf && *fmt)
812 ND_PRINT("END OF BUFFER\n");
813
814 return(buf);
815
816 trunc:
817 nd_print_trunc(ndo);
818 return(NULL);
819 }
820
821 const u_char *
822 smb_fdata(netdissect_options *ndo,
823 const u_char *buf, const char *fmt, const u_char *maxbuf,
824 int unicodestr)
825 {
826 static int depth = 0;
827 char s[128];
828 char *p;
829
830 while (*fmt) {
831 switch (*fmt) {
832 case '*':
833 /*
834 * List of multiple instances of something described by the
835 * remainder of the string (which may itself include a list
836 * of multiple instances of something, so we recurse).
837 */
838 fmt++;
839 while (buf < maxbuf) {
840 const u_char *buf2;
841 depth++;
842 /*
843 * In order to avoid stack exhaustion recurse at most 10
844 * levels; that "should not happen", as no SMB structure
845 * should be nested *that* deeply, and we thus shouldn't
846 * have format strings with that level of nesting.
847 */
848 if (depth == 10) {
849 ND_PRINT("(too many nested levels, not recursing)");
850 buf2 = buf;
851 } else
852 buf2 = smb_fdata(ndo, buf, fmt, maxbuf, unicodestr);
853 depth--;
854 if (buf2 == NULL)
855 return(NULL);
856 if (buf2 == buf)
857 return(buf);
858 buf = buf2;
859 }
860 return(buf);
861
862 case '|':
863 /*
864 * Just do a bounds check.
865 */
866 fmt++;
867 if (buf >= maxbuf)
868 return(buf);
869 break;
870
871 case '%':
872 /*
873 * XXX - unused?
874 */
875 fmt++;
876 buf = maxbuf;
877 break;
878
879 case '#':
880 /*
881 * Done?
882 */
883 fmt++;
884 return(buf);
885
886 case '[':
887 /*
888 * Format of an item, enclosed in square brackets; dissect
889 * the item with smb_fdata1().
890 */
891 fmt++;
892 if (buf >= maxbuf)
893 return(buf);
894 memset(s, 0, sizeof(s));
895 p = strchr(fmt, ']');
896 if ((size_t)(p - fmt + 1) > sizeof(s)) {
897 /* overrun */
898 return(buf);
899 }
900 strncpy(s, fmt, p - fmt);
901 s[p - fmt] = '\0';
902 fmt = p + 1;
903 buf = smb_fdata1(ndo, buf, s, maxbuf, unicodestr);
904 if (buf == NULL) {
905 /*
906 * Truncated.
907 * Is the next character a newline?
908 * If so, print it before quitting, so we don't
909 * get stuff in the middle of the line.
910 */
911 if (*fmt == '\n')
912 ND_PRINT("\n");
913 return(NULL);
914 }
915 break;
916
917 default:
918 /*
919 * Not a formatting character, so just print it.
920 */
921 ND_PRINT("%c", *fmt);
922 fmt++;
923 break;
924 }
925 }
926 if (!depth && buf < maxbuf) {
927 u_int len = ND_BYTES_BETWEEN(buf, maxbuf);
928 ND_PRINT("Data: (%u bytes)\n", len);
929 smb_data_print(ndo, buf, len);
930 return(buf + len);
931 }
932 return(buf);
933 }
934
935 typedef struct {
936 const char *name;
937 int code;
938 const char *message;
939 } err_code_struct;
940
941 /* DOS Error Messages */
942 static const err_code_struct dos_msgs[] = {
943 { "ERRbadfunc", 1, "Invalid function." },
944 { "ERRbadfile", 2, "File not found." },
945 { "ERRbadpath", 3, "Directory invalid." },
946 { "ERRnofids", 4, "No file descriptors available" },
947 { "ERRnoaccess", 5, "Access denied." },
948 { "ERRbadfid", 6, "Invalid file handle." },
949 { "ERRbadmcb", 7, "Memory control blocks destroyed." },
950 { "ERRnomem", 8, "Insufficient server memory to perform the requested function." },
951 { "ERRbadmem", 9, "Invalid memory block address." },
952 { "ERRbadenv", 10, "Invalid environment." },
953 { "ERRbadformat", 11, "Invalid format." },
954 { "ERRbadaccess", 12, "Invalid open mode." },
955 { "ERRbaddata", 13, "Invalid data." },
956 { "ERR", 14, "reserved." },
957 { "ERRbaddrive", 15, "Invalid drive specified." },
958 { "ERRremcd", 16, "A Delete Directory request attempted to remove the server's current directory." },
959 { "ERRdiffdevice", 17, "Not same device." },
960 { "ERRnofiles", 18, "A File Search command can find no more files matching the specified criteria." },
961 { "ERRbadshare", 32, "The sharing mode specified for an Open conflicts with existing FIDs on the file." },
962 { "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." },
963 { "ERRfilexists", 80, "The file named in a Create Directory, Make New File or Link request already exists." },
964 { "ERRbadpipe", 230, "Pipe invalid." },
965 { "ERRpipebusy", 231, "All instances of the requested pipe are busy." },
966 { "ERRpipeclosing", 232, "Pipe close in progress." },
967 { "ERRnotconnected", 233, "No process on other end of pipe." },
968 { "ERRmoredata", 234, "There is more data to be returned." },
969 { NULL, -1, NULL }
970 };
971
972 /* Server Error Messages */
973 static const err_code_struct server_msgs[] = {
974 { "ERRerror", 1, "Non-specific error code." },
975 { "ERRbadpw", 2, "Bad password - name/password pair in a Tree Connect or Session Setup are invalid." },
976 { "ERRbadtype", 3, "reserved." },
977 { "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." },
978 { "ERRinvnid", 5, "The tree ID (TID) specified in a command was invalid." },
979 { "ERRinvnetname", 6, "Invalid network name in tree connect." },
980 { "ERRinvdevice", 7, "Invalid device - printer request made to non-printer connection or non-printer request made to printer connection." },
981 { "ERRqfull", 49, "Print queue full (files) -- returned by open print file." },
982 { "ERRqtoobig", 50, "Print queue full -- no space." },
983 { "ERRqeof", 51, "EOF on print queue dump." },
984 { "ERRinvpfid", 52, "Invalid print file FID." },
985 { "ERRsmbcmd", 64, "The server did not recognize the command received." },
986 { "ERRsrverror", 65, "The server encountered an internal error, e.g., system file unavailable." },
987 { "ERRfilespecs", 67, "The file handle (FID) and pathname parameters contained an invalid combination of values." },
988 { "ERRreserved", 68, "reserved." },
989 { "ERRbadpermits", 69, "The access permissions specified for a file or directory are not a valid combination. The server cannot set the requested attribute." },
990 { "ERRreserved", 70, "reserved." },
991 { "ERRsetattrmode", 71, "The attribute mode in the Set File Attribute request is invalid." },
992 { "ERRpaused", 81, "Server is paused." },
993 { "ERRmsgoff", 82, "Not receiving messages." },
994 { "ERRnoroom", 83, "No room to buffer message." },
995 { "ERRrmuns", 87, "Too many remote user names." },
996 { "ERRtimeout", 88, "Operation timed out." },
997 { "ERRnoresource", 89, "No resources currently available for request." },
998 { "ERRtoomanyuids", 90, "Too many UIDs active on this session." },
999 { "ERRbaduid", 91, "The UID is not known as a valid ID on this session." },
1000 { "ERRusempx", 250, "Temp unable to support Raw, use MPX mode." },
1001 { "ERRusestd", 251, "Temp unable to support Raw, use standard read/write." },
1002 { "ERRcontmpx", 252, "Continue in MPX mode." },
1003 { "ERRreserved", 253, "reserved." },
1004 { "ERRreserved", 254, "reserved." },
1005 { "ERRnosupport", 0xFFFF, "Function not supported." },
1006 { NULL, -1, NULL }
1007 };
1008
1009 /* Hard Error Messages */
1010 static const err_code_struct hard_msgs[] = {
1011 { "ERRnowrite", 19, "Attempt to write on write-protected diskette." },
1012 { "ERRbadunit", 20, "Unknown unit." },
1013 { "ERRnotready", 21, "Drive not ready." },
1014 { "ERRbadcmd", 22, "Unknown command." },
1015 { "ERRdata", 23, "Data error (CRC)." },
1016 { "ERRbadreq", 24, "Bad request structure length." },
1017 { "ERRseek", 25 , "Seek error." },
1018 { "ERRbadmedia", 26, "Unknown media type." },
1019 { "ERRbadsector", 27, "Sector not found." },
1020 { "ERRnopaper", 28, "Printer out of paper." },
1021 { "ERRwrite", 29, "Write fault." },
1022 { "ERRread", 30, "Read fault." },
1023 { "ERRgeneral", 31, "General failure." },
1024 { "ERRbadshare", 32, "A open conflicts with an existing open." },
1025 { "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." },
1026 { "ERRwrongdisk", 34, "The wrong disk was found in a drive." },
1027 { "ERRFCBUnavail", 35, "No FCBs are available to process request." },
1028 { "ERRsharebufexc", 36, "A sharing buffer has been exceeded." },
1029 { NULL, -1, NULL }
1030 };
1031
1032 static const struct {
1033 int code;
1034 const char *class;
1035 const err_code_struct *err_msgs;
1036 } err_classes[] = {
1037 { 0, "SUCCESS", NULL },
1038 { 0x01, "ERRDOS", dos_msgs },
1039 { 0x02, "ERRSRV", server_msgs },
1040 { 0x03, "ERRHRD", hard_msgs },
1041 { 0x04, "ERRXOS", NULL },
1042 { 0xE1, "ERRRMX1", NULL },
1043 { 0xE2, "ERRRMX2", NULL },
1044 { 0xE3, "ERRRMX3", NULL },
1045 { 0xFF, "ERRCMD", NULL },
1046 { -1, NULL, NULL }
1047 };
1048
1049 /*
1050 * return a SMB error string from a SMB buffer
1051 */
1052 const char *
1053 smb_errstr(int class, int num)
1054 {
1055 static char ret[128];
1056 int i, j;
1057
1058 ret[0] = 0;
1059
1060 for (i = 0; err_classes[i].class; i++)
1061 if (err_classes[i].code == class) {
1062 if (err_classes[i].err_msgs) {
1063 const err_code_struct *err = err_classes[i].err_msgs;
1064 for (j = 0; err[j].name; j++)
1065 if (num == err[j].code) {
1066 snprintf(ret, sizeof(ret), "%s - %s (%s)",
1067 err_classes[i].class, err[j].name, err[j].message);
1068 return ret;
1069 }
1070 }
1071
1072 snprintf(ret, sizeof(ret), "%s - %d", err_classes[i].class, num);
1073 return ret;
1074 }
1075
1076 snprintf(ret, sizeof(ret), "ERROR: Unknown error (%d,%d)", class, num);
1077 return(ret);
1078 }
1079
1080 typedef struct {
1081 uint32_t code;
1082 const char *name;
1083 } nt_err_code_struct;
1084
1085 /*
1086 * NT Error codes
1087 */
1088 static const nt_err_code_struct nt_errors[] = {
1089 { 0x00000000, "STATUS_SUCCESS" },
1090 { 0x00000000, "STATUS_WAIT_0" },
1091 { 0x00000001, "STATUS_WAIT_1" },
1092 { 0x00000002, "STATUS_WAIT_2" },
1093 { 0x00000003, "STATUS_WAIT_3" },
1094 { 0x0000003F, "STATUS_WAIT_63" },
1095 { 0x00000080, "STATUS_ABANDONED" },
1096 { 0x00000080, "STATUS_ABANDONED_WAIT_0" },
1097 { 0x000000BF, "STATUS_ABANDONED_WAIT_63" },
1098 { 0x000000C0, "STATUS_USER_APC" },
1099 { 0x00000100, "STATUS_KERNEL_APC" },
1100 { 0x00000101, "STATUS_ALERTED" },
1101 { 0x00000102, "STATUS_TIMEOUT" },
1102 { 0x00000103, "STATUS_PENDING" },
1103 { 0x00000104, "STATUS_REPARSE" },
1104 { 0x00000105, "STATUS_MORE_ENTRIES" },
1105 { 0x00000106, "STATUS_NOT_ALL_ASSIGNED" },
1106 { 0x00000107, "STATUS_SOME_NOT_MAPPED" },
1107 { 0x00000108, "STATUS_OPLOCK_BREAK_IN_PROGRESS" },
1108 { 0x00000109, "STATUS_VOLUME_MOUNTED" },
1109 { 0x0000010A, "STATUS_RXACT_COMMITTED" },
1110 { 0x0000010B, "STATUS_NOTIFY_CLEANUP" },
1111 { 0x0000010C, "STATUS_NOTIFY_ENUM_DIR" },
1112 { 0x0000010D, "STATUS_NO_QUOTAS_FOR_ACCOUNT" },
1113 { 0x0000010E, "STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED" },
1114 { 0x00000110, "STATUS_PAGE_FAULT_TRANSITION" },
1115 { 0x00000111, "STATUS_PAGE_FAULT_DEMAND_ZERO" },
1116 { 0x00000112, "STATUS_PAGE_FAULT_COPY_ON_WRITE" },
1117 { 0x00000113, "STATUS_PAGE_FAULT_GUARD_PAGE" },
1118 { 0x00000114, "STATUS_PAGE_FAULT_PAGING_FILE" },
1119 { 0x00000115, "STATUS_CACHE_PAGE_LOCKED" },
1120 { 0x00000116, "STATUS_CRASH_DUMP" },
1121 { 0x00000117, "STATUS_BUFFER_ALL_ZEROS" },
1122 { 0x00000118, "STATUS_REPARSE_OBJECT" },
1123 { 0x0000045C, "STATUS_NO_SHUTDOWN_IN_PROGRESS" },
1124 { 0x40000000, "STATUS_OBJECT_NAME_EXISTS" },
1125 { 0x40000001, "STATUS_THREAD_WAS_SUSPENDED" },
1126 { 0x40000002, "STATUS_WORKING_SET_LIMIT_RANGE" },
1127 { 0x40000003, "STATUS_IMAGE_NOT_AT_BASE" },
1128 { 0x40000004, "STATUS_RXACT_STATE_CREATED" },
1129 { 0x40000005, "STATUS_SEGMENT_NOTIFICATION" },
1130 { 0x40000006, "STATUS_LOCAL_USER_SESSION_KEY" },
1131 { 0x40000007, "STATUS_BAD_CURRENT_DIRECTORY" },
1132 { 0x40000008, "STATUS_SERIAL_MORE_WRITES" },
1133 { 0x40000009, "STATUS_REGISTRY_RECOVERED" },
1134 { 0x4000000A, "STATUS_FT_READ_RECOVERY_FROM_BACKUP" },
1135 { 0x4000000B, "STATUS_FT_WRITE_RECOVERY" },
1136 { 0x4000000C, "STATUS_SERIAL_COUNTER_TIMEOUT" },
1137 { 0x4000000D, "STATUS_NULL_LM_PASSWORD" },
1138 { 0x4000000E, "STATUS_IMAGE_MACHINE_TYPE_MISMATCH" },
1139 { 0x4000000F, "STATUS_RECEIVE_PARTIAL" },
1140 { 0x40000010, "STATUS_RECEIVE_EXPEDITED" },
1141 { 0x40000011, "STATUS_RECEIVE_PARTIAL_EXPEDITED" },
1142 { 0x40000012, "STATUS_EVENT_DONE" },
1143 { 0x40000013, "STATUS_EVENT_PENDING" },
1144 { 0x40000014, "STATUS_CHECKING_FILE_SYSTEM" },
1145 { 0x40000015, "STATUS_FATAL_APP_EXIT" },
1146 { 0x40000016, "STATUS_PREDEFINED_HANDLE" },
1147 { 0x40000017, "STATUS_WAS_UNLOCKED" },
1148 { 0x40000018, "STATUS_SERVICE_NOTIFICATION" },
1149 { 0x40000019, "STATUS_WAS_LOCKED" },
1150 { 0x4000001A, "STATUS_LOG_HARD_ERROR" },
1151 { 0x4000001B, "STATUS_ALREADY_WIN32" },
1152 { 0x4000001C, "STATUS_WX86_UNSIMULATE" },
1153 { 0x4000001D, "STATUS_WX86_CONTINUE" },
1154 { 0x4000001E, "STATUS_WX86_SINGLE_STEP" },
1155 { 0x4000001F, "STATUS_WX86_BREAKPOINT" },
1156 { 0x40000020, "STATUS_WX86_EXCEPTION_CONTINUE" },
1157 { 0x40000021, "STATUS_WX86_EXCEPTION_LASTCHANCE" },
1158 { 0x40000022, "STATUS_WX86_EXCEPTION_CHAIN" },
1159 { 0x40000023, "STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE" },
1160 { 0x40000024, "STATUS_NO_YIELD_PERFORMED" },
1161 { 0x40000025, "STATUS_TIMER_RESUME_IGNORED" },
1162 { 0x80000001, "STATUS_GUARD_PAGE_VIOLATION" },
1163 { 0x80000002, "STATUS_DATATYPE_MISALIGNMENT" },
1164 { 0x80000003, "STATUS_BREAKPOINT" },
1165 { 0x80000004, "STATUS_SINGLE_STEP" },
1166 { 0x80000005, "STATUS_BUFFER_OVERFLOW" },
1167 { 0x80000006, "STATUS_NO_MORE_FILES" },
1168 { 0x80000007, "STATUS_WAKE_SYSTEM_DEBUGGER" },
1169 { 0x8000000A, "STATUS_HANDLES_CLOSED" },
1170 { 0x8000000B, "STATUS_NO_INHERITANCE" },
1171 { 0x8000000C, "STATUS_GUID_SUBSTITUTION_MADE" },
1172 { 0x8000000D, "STATUS_PARTIAL_COPY" },
1173 { 0x8000000E, "STATUS_DEVICE_PAPER_EMPTY" },
1174 { 0x8000000F, "STATUS_DEVICE_POWERED_OFF" },
1175 { 0x80000010, "STATUS_DEVICE_OFF_LINE" },
1176 { 0x80000011, "STATUS_DEVICE_BUSY" },
1177 { 0x80000012, "STATUS_NO_MORE_EAS" },
1178 { 0x80000013, "STATUS_INVALID_EA_NAME" },
1179 { 0x80000014, "STATUS_EA_LIST_INCONSISTENT" },
1180 { 0x80000015, "STATUS_INVALID_EA_FLAG" },
1181 { 0x80000016, "STATUS_VERIFY_REQUIRED" },
1182 { 0x80000017, "STATUS_EXTRANEOUS_INFORMATION" },
1183 { 0x80000018, "STATUS_RXACT_COMMIT_NECESSARY" },
1184 { 0x8000001A, "STATUS_NO_MORE_ENTRIES" },
1185 { 0x8000001B, "STATUS_FILEMARK_DETECTED" },
1186 { 0x8000001C, "STATUS_MEDIA_CHANGED" },
1187 { 0x8000001D, "STATUS_BUS_RESET" },
1188 { 0x8000001E, "STATUS_END_OF_MEDIA" },
1189 { 0x8000001F, "STATUS_BEGINNING_OF_MEDIA" },
1190 { 0x80000020, "STATUS_MEDIA_CHECK" },
1191 { 0x80000021, "STATUS_SETMARK_DETECTED" },
1192 { 0x80000022, "STATUS_NO_DATA_DETECTED" },
1193 { 0x80000023, "STATUS_REDIRECTOR_HAS_OPEN_HANDLES" },
1194 { 0x80000024, "STATUS_SERVER_HAS_OPEN_HANDLES" },
1195 { 0x80000025, "STATUS_ALREADY_DISCONNECTED" },
1196 { 0x80000026, "STATUS_LONGJUMP" },
1197 { 0x80040111, "MAPI_E_LOGON_FAILED" },
1198 { 0x80090300, "SEC_E_INSUFFICIENT_MEMORY" },
1199 { 0x80090301, "SEC_E_INVALID_HANDLE" },
1200 { 0x80090302, "SEC_E_UNSUPPORTED_FUNCTION" },
1201 { 0x8009030B, "SEC_E_NO_IMPERSONATION" },
1202 { 0x8009030D, "SEC_E_UNKNOWN_CREDENTIALS" },
1203 { 0x8009030E, "SEC_E_NO_CREDENTIALS" },
1204 { 0x8009030F, "SEC_E_MESSAGE_ALTERED" },
1205 { 0x80090310, "SEC_E_OUT_OF_SEQUENCE" },
1206 { 0x80090311, "SEC_E_NO_AUTHENTICATING_AUTHORITY" },
1207 { 0xC0000001, "STATUS_UNSUCCESSFUL" },
1208 { 0xC0000002, "STATUS_NOT_IMPLEMENTED" },
1209 { 0xC0000003, "STATUS_INVALID_INFO_CLASS" },
1210 { 0xC0000004, "STATUS_INFO_LENGTH_MISMATCH" },
1211 { 0xC0000005, "STATUS_ACCESS_VIOLATION" },
1212 { 0xC0000006, "STATUS_IN_PAGE_ERROR" },
1213 { 0xC0000007, "STATUS_PAGEFILE_QUOTA" },
1214 { 0xC0000008, "STATUS_INVALID_HANDLE" },
1215 { 0xC0000009, "STATUS_BAD_INITIAL_STACK" },
1216 { 0xC000000A, "STATUS_BAD_INITIAL_PC" },
1217 { 0xC000000B, "STATUS_INVALID_CID" },
1218 { 0xC000000C, "STATUS_TIMER_NOT_CANCELED" },
1219 { 0xC000000D, "STATUS_INVALID_PARAMETER" },
1220 { 0xC000000E, "STATUS_NO_SUCH_DEVICE" },
1221 { 0xC000000F, "STATUS_NO_SUCH_FILE" },
1222 { 0xC0000010, "STATUS_INVALID_DEVICE_REQUEST" },
1223 { 0xC0000011, "STATUS_END_OF_FILE" },
1224 { 0xC0000012, "STATUS_WRONG_VOLUME" },
1225 { 0xC0000013, "STATUS_NO_MEDIA_IN_DEVICE" },
1226 { 0xC0000014, "STATUS_UNRECOGNIZED_MEDIA" },
1227 { 0xC0000015, "STATUS_NONEXISTENT_SECTOR" },
1228 { 0xC0000016, "STATUS_MORE_PROCESSING_REQUIRED" },
1229 { 0xC0000017, "STATUS_NO_MEMORY" },
1230 { 0xC0000018, "STATUS_CONFLICTING_ADDRESSES" },
1231 { 0xC0000019, "STATUS_NOT_MAPPED_VIEW" },
1232 { 0xC000001A, "STATUS_UNABLE_TO_FREE_VM" },
1233 { 0xC000001B, "STATUS_UNABLE_TO_DELETE_SECTION" },
1234 { 0xC000001C, "STATUS_INVALID_SYSTEM_SERVICE" },
1235 { 0xC000001D, "STATUS_ILLEGAL_INSTRUCTION" },
1236 { 0xC000001E, "STATUS_INVALID_LOCK_SEQUENCE" },
1237 { 0xC000001F, "STATUS_INVALID_VIEW_SIZE" },
1238 { 0xC0000020, "STATUS_INVALID_FILE_FOR_SECTION" },
1239 { 0xC0000021, "STATUS_ALREADY_COMMITTED" },
1240 { 0xC0000022, "STATUS_ACCESS_DENIED" },
1241 { 0xC0000023, "STATUS_BUFFER_TOO_SMALL" },
1242 { 0xC0000024, "STATUS_OBJECT_TYPE_MISMATCH" },
1243 { 0xC0000025, "STATUS_NONCONTINUABLE_EXCEPTION" },
1244 { 0xC0000026, "STATUS_INVALID_DISPOSITION" },
1245 { 0xC0000027, "STATUS_UNWIND" },
1246 { 0xC0000028, "STATUS_BAD_STACK" },
1247 { 0xC0000029, "STATUS_INVALID_UNWIND_TARGET" },
1248 { 0xC000002A, "STATUS_NOT_LOCKED" },
1249 { 0xC000002B, "STATUS_PARITY_ERROR" },
1250 { 0xC000002C, "STATUS_UNABLE_TO_DECOMMIT_VM" },
1251 { 0xC000002D, "STATUS_NOT_COMMITTED" },
1252 { 0xC000002E, "STATUS_INVALID_PORT_ATTRIBUTES" },
1253 { 0xC000002F, "STATUS_PORT_MESSAGE_TOO_LONG" },
1254 { 0xC0000030, "STATUS_INVALID_PARAMETER_MIX" },
1255 { 0xC0000031, "STATUS_INVALID_QUOTA_LOWER" },
1256 { 0xC0000032, "STATUS_DISK_CORRUPT_ERROR" },
1257 { 0xC0000033, "STATUS_OBJECT_NAME_INVALID" },
1258 { 0xC0000034, "STATUS_OBJECT_NAME_NOT_FOUND" },
1259 { 0xC0000035, "STATUS_OBJECT_NAME_COLLISION" },
1260 { 0xC0000037, "STATUS_PORT_DISCONNECTED" },
1261 { 0xC0000038, "STATUS_DEVICE_ALREADY_ATTACHED" },
1262 { 0xC0000039, "STATUS_OBJECT_PATH_INVALID" },
1263 { 0xC000003A, "STATUS_OBJECT_PATH_NOT_FOUND" },
1264 { 0xC000003B, "STATUS_OBJECT_PATH_SYNTAX_BAD" },
1265 { 0xC000003C, "STATUS_DATA_OVERRUN" },
1266 { 0xC000003D, "STATUS_DATA_LATE_ERROR" },
1267 { 0xC000003E, "STATUS_DATA_ERROR" },
1268 { 0xC000003F, "STATUS_CRC_ERROR" },
1269 { 0xC0000040, "STATUS_SECTION_TOO_BIG" },
1270 { 0xC0000041, "STATUS_PORT_CONNECTION_REFUSED" },
1271 { 0xC0000042, "STATUS_INVALID_PORT_HANDLE" },
1272 { 0xC0000043, "STATUS_SHARING_VIOLATION" },
1273 { 0xC0000044, "STATUS_QUOTA_EXCEEDED" },
1274 { 0xC0000045, "STATUS_INVALID_PAGE_PROTECTION" },
1275 { 0xC0000046, "STATUS_MUTANT_NOT_OWNED" },
1276 { 0xC0000047, "STATUS_SEMAPHORE_LIMIT_EXCEEDED" },
1277 { 0xC0000048, "STATUS_PORT_ALREADY_SET" },
1278 { 0xC0000049, "STATUS_SECTION_NOT_IMAGE" },
1279 { 0xC000004A, "STATUS_SUSPEND_COUNT_EXCEEDED" },
1280 { 0xC000004B, "STATUS_THREAD_IS_TERMINATING" },
1281 { 0xC000004C, "STATUS_BAD_WORKING_SET_LIMIT" },
1282 { 0xC000004D, "STATUS_INCOMPATIBLE_FILE_MAP" },
1283 { 0xC000004E, "STATUS_SECTION_PROTECTION" },
1284 { 0xC000004F, "STATUS_EAS_NOT_SUPPORTED" },
1285 { 0xC0000050, "STATUS_EA_TOO_LARGE" },
1286 { 0xC0000051, "STATUS_NONEXISTENT_EA_ENTRY" },
1287 { 0xC0000052, "STATUS_NO_EAS_ON_FILE" },
1288 { 0xC0000053, "STATUS_EA_CORRUPT_ERROR" },
1289 { 0xC0000054, "STATUS_FILE_LOCK_CONFLICT" },
1290 { 0xC0000055, "STATUS_LOCK_NOT_GRANTED" },
1291 { 0xC0000056, "STATUS_DELETE_PENDING" },
1292 { 0xC0000057, "STATUS_CTL_FILE_NOT_SUPPORTED" },
1293 { 0xC0000058, "STATUS_UNKNOWN_REVISION" },
1294 { 0xC0000059, "STATUS_REVISION_MISMATCH" },
1295 { 0xC000005A, "STATUS_INVALID_OWNER" },
1296 { 0xC000005B, "STATUS_INVALID_PRIMARY_GROUP" },
1297 { 0xC000005C, "STATUS_NO_IMPERSONATION_TOKEN" },
1298 { 0xC000005D, "STATUS_CANT_DISABLE_MANDATORY" },
1299 { 0xC000005E, "STATUS_NO_LOGON_SERVERS" },
1300 { 0xC000005F, "STATUS_NO_SUCH_LOGON_SESSION" },
1301 { 0xC0000060, "STATUS_NO_SUCH_PRIVILEGE" },
1302 { 0xC0000061, "STATUS_PRIVILEGE_NOT_HELD" },
1303 { 0xC0000062, "STATUS_INVALID_ACCOUNT_NAME" },
1304 { 0xC0000063, "STATUS_USER_EXISTS" },
1305 { 0xC0000064, "STATUS_NO_SUCH_USER" },
1306 { 0xC0000065, "STATUS_GROUP_EXISTS" },
1307 { 0xC0000066, "STATUS_NO_SUCH_GROUP" },
1308 { 0xC0000067, "STATUS_MEMBER_IN_GROUP" },
1309 { 0xC0000068, "STATUS_MEMBER_NOT_IN_GROUP" },
1310 { 0xC0000069, "STATUS_LAST_ADMIN" },
1311 { 0xC000006A, "STATUS_WRONG_PASSWORD" },
1312 { 0xC000006B, "STATUS_ILL_FORMED_PASSWORD" },
1313 { 0xC000006C, "STATUS_PASSWORD_RESTRICTION" },
1314 { 0xC000006D, "STATUS_LOGON_FAILURE" },
1315 { 0xC000006E, "STATUS_ACCOUNT_RESTRICTION" },
1316 { 0xC000006F, "STATUS_INVALID_LOGON_HOURS" },
1317 { 0xC0000070, "STATUS_INVALID_WORKSTATION" },
1318 { 0xC0000071, "STATUS_PASSWORD_EXPIRED" },
1319 { 0xC0000072, "STATUS_ACCOUNT_DISABLED" },
1320 { 0xC0000073, "STATUS_NONE_MAPPED" },
1321 { 0xC0000074, "STATUS_TOO_MANY_LUIDS_REQUESTED" },
1322 { 0xC0000075, "STATUS_LUIDS_EXHAUSTED" },
1323 { 0xC0000076, "STATUS_INVALID_SUB_AUTHORITY" },
1324 { 0xC0000077, "STATUS_INVALID_ACL" },
1325 { 0xC0000078, "STATUS_INVALID_SID" },
1326 { 0xC0000079, "STATUS_INVALID_SECURITY_DESCR" },
1327 { 0xC000007A, "STATUS_PROCEDURE_NOT_FOUND" },
1328 { 0xC000007B, "STATUS_INVALID_IMAGE_FORMAT" },
1329 { 0xC000007C, "STATUS_NO_TOKEN" },
1330 { 0xC000007D, "STATUS_BAD_INHERITANCE_ACL" },
1331 { 0xC000007E, "STATUS_RANGE_NOT_LOCKED" },
1332 { 0xC000007F, "STATUS_DISK_FULL" },
1333 { 0xC0000080, "STATUS_SERVER_DISABLED" },
1334 { 0xC0000081, "STATUS_SERVER_NOT_DISABLED" },
1335 { 0xC0000082, "STATUS_TOO_MANY_GUIDS_REQUESTED" },
1336 { 0xC0000083, "STATUS_GUIDS_EXHAUSTED" },
1337 { 0xC0000084, "STATUS_INVALID_ID_AUTHORITY" },
1338 { 0xC0000085, "STATUS_AGENTS_EXHAUSTED" },
1339 { 0xC0000086, "STATUS_INVALID_VOLUME_LABEL" },
1340 { 0xC0000087, "STATUS_SECTION_NOT_EXTENDED" },
1341 { 0xC0000088, "STATUS_NOT_MAPPED_DATA" },
1342 { 0xC0000089, "STATUS_RESOURCE_DATA_NOT_FOUND" },
1343 { 0xC000008A, "STATUS_RESOURCE_TYPE_NOT_FOUND" },
1344 { 0xC000008B, "STATUS_RESOURCE_NAME_NOT_FOUND" },
1345 { 0xC000008C, "STATUS_ARRAY_BOUNDS_EXCEEDED" },
1346 { 0xC000008D, "STATUS_FLOAT_DENORMAL_OPERAND" },
1347 { 0xC000008E, "STATUS_FLOAT_DIVIDE_BY_ZERO" },
1348 { 0xC000008F, "STATUS_FLOAT_INEXACT_RESULT" },
1349 { 0xC0000090, "STATUS_FLOAT_INVALID_OPERATION" },
1350 { 0xC0000091, "STATUS_FLOAT_OVERFLOW" },
1351 { 0xC0000092, "STATUS_FLOAT_STACK_CHECK" },
1352 { 0xC0000093, "STATUS_FLOAT_UNDERFLOW" },
1353 { 0xC0000094, "STATUS_INTEGER_DIVIDE_BY_ZERO" },
1354 { 0xC0000095, "STATUS_INTEGER_OVERFLOW" },
1355 { 0xC0000096, "STATUS_PRIVILEGED_INSTRUCTION" },
1356 { 0xC0000097, "STATUS_TOO_MANY_PAGING_FILES" },
1357 { 0xC0000098, "STATUS_FILE_INVALID" },
1358 { 0xC0000099, "STATUS_ALLOTTED_SPACE_EXCEEDED" },
1359 { 0xC000009A, "STATUS_INSUFFICIENT_RESOURCES" },
1360 { 0xC000009B, "STATUS_DFS_EXIT_PATH_FOUND" },
1361 { 0xC000009C, "STATUS_DEVICE_DATA_ERROR" },
1362 { 0xC000009D, "STATUS_DEVICE_NOT_CONNECTED" },
1363 { 0xC000009E, "STATUS_DEVICE_POWER_FAILURE" },
1364 { 0xC000009F, "STATUS_FREE_VM_NOT_AT_BASE" },
1365 { 0xC00000A0, "STATUS_MEMORY_NOT_ALLOCATED" },
1366 { 0xC00000A1, "STATUS_WORKING_SET_QUOTA" },
1367 { 0xC00000A2, "STATUS_MEDIA_WRITE_PROTECTED" },
1368 { 0xC00000A3, "STATUS_DEVICE_NOT_READY" },
1369 { 0xC00000A4, "STATUS_INVALID_GROUP_ATTRIBUTES" },
1370 { 0xC00000A5, "STATUS_BAD_IMPERSONATION_LEVEL" },
1371 { 0xC00000A6, "STATUS_CANT_OPEN_ANONYMOUS" },
1372 { 0xC00000A7, "STATUS_BAD_VALIDATION_CLASS" },
1373 { 0xC00000A8, "STATUS_BAD_TOKEN_TYPE" },
1374 { 0xC00000A9, "STATUS_BAD_MASTER_BOOT_RECORD" },
1375 { 0xC00000AA, "STATUS_INSTRUCTION_MISALIGNMENT" },
1376 { 0xC00000AB, "STATUS_INSTANCE_NOT_AVAILABLE" },
1377 { 0xC00000AC, "STATUS_PIPE_NOT_AVAILABLE" },
1378 { 0xC00000AD, "STATUS_INVALID_PIPE_STATE" },
1379 { 0xC00000AE, "STATUS_PIPE_BUSY" },
1380 { 0xC00000AF, "STATUS_ILLEGAL_FUNCTION" },
1381 { 0xC00000B0, "STATUS_PIPE_DISCONNECTED" },
1382 { 0xC00000B1, "STATUS_PIPE_CLOSING" },
1383 { 0xC00000B2, "STATUS_PIPE_CONNECTED" },
1384 { 0xC00000B3, "STATUS_PIPE_LISTENING" },
1385 { 0xC00000B4, "STATUS_INVALID_READ_MODE" },
1386 { 0xC00000B5, "STATUS_IO_TIMEOUT" },
1387 { 0xC00000B6, "STATUS_FILE_FORCED_CLOSED" },
1388 { 0xC00000B7, "STATUS_PROFILING_NOT_STARTED" },
1389 { 0xC00000B8, "STATUS_PROFILING_NOT_STOPPED" },
1390 { 0xC00000B9, "STATUS_COULD_NOT_INTERPRET" },
1391 { 0xC00000BA, "STATUS_FILE_IS_A_DIRECTORY" },
1392 { 0xC00000BB, "STATUS_NOT_SUPPORTED" },
1393 { 0xC00000BC, "STATUS_REMOTE_NOT_LISTENING" },
1394 { 0xC00000BD, "STATUS_DUPLICATE_NAME" },
1395 { 0xC00000BE, "STATUS_BAD_NETWORK_PATH" },
1396 { 0xC00000BF, "STATUS_NETWORK_BUSY" },
1397 { 0xC00000C0, "STATUS_DEVICE_DOES_NOT_EXIST" },
1398 { 0xC00000C1, "STATUS_TOO_MANY_COMMANDS" },
1399 { 0xC00000C2, "STATUS_ADAPTER_HARDWARE_ERROR" },
1400 { 0xC00000C3, "STATUS_INVALID_NETWORK_RESPONSE" },
1401 { 0xC00000C4, "STATUS_UNEXPECTED_NETWORK_ERROR" },
1402 { 0xC00000C5, "STATUS_BAD_REMOTE_ADAPTER" },
1403 { 0xC00000C6, "STATUS_PRINT_QUEUE_FULL" },
1404 { 0xC00000C7, "STATUS_NO_SPOOL_SPACE" },
1405 { 0xC00000C8, "STATUS_PRINT_CANCELLED" },
1406 { 0xC00000C9, "STATUS_NETWORK_NAME_DELETED" },
1407 { 0xC00000CA, "STATUS_NETWORK_ACCESS_DENIED" },
1408 { 0xC00000CB, "STATUS_BAD_DEVICE_TYPE" },
1409 { 0xC00000CC, "STATUS_BAD_NETWORK_NAME" },
1410 { 0xC00000CD, "STATUS_TOO_MANY_NAMES" },
1411 { 0xC00000CE, "STATUS_TOO_MANY_SESSIONS" },
1412 { 0xC00000CF, "STATUS_SHARING_PAUSED" },
1413 { 0xC00000D0, "STATUS_REQUEST_NOT_ACCEPTED" },
1414 { 0xC00000D1, "STATUS_REDIRECTOR_PAUSED" },
1415 { 0xC00000D2, "STATUS_NET_WRITE_FAULT" },
1416 { 0xC00000D3, "STATUS_PROFILING_AT_LIMIT" },
1417 { 0xC00000D4, "STATUS_NOT_SAME_DEVICE" },
1418 { 0xC00000D5, "STATUS_FILE_RENAMED" },
1419 { 0xC00000D6, "STATUS_VIRTUAL_CIRCUIT_CLOSED" },
1420 { 0xC00000D7, "STATUS_NO_SECURITY_ON_OBJECT" },
1421 { 0xC00000D8, "STATUS_CANT_WAIT" },
1422 { 0xC00000D9, "STATUS_PIPE_EMPTY" },
1423 { 0xC00000DA, "STATUS_CANT_ACCESS_DOMAIN_INFO" },
1424 { 0xC00000DB, "STATUS_CANT_TERMINATE_SELF" },
1425 { 0xC00000DC, "STATUS_INVALID_SERVER_STATE" },
1426 { 0xC00000DD, "STATUS_INVALID_DOMAIN_STATE" },
1427 { 0xC00000DE, "STATUS_INVALID_DOMAIN_ROLE" },
1428 { 0xC00000DF, "STATUS_NO_SUCH_DOMAIN" },
1429 { 0xC00000E0, "STATUS_DOMAIN_EXISTS" },
1430 { 0xC00000E1, "STATUS_DOMAIN_LIMIT_EXCEEDED" },
1431 { 0xC00000E2, "STATUS_OPLOCK_NOT_GRANTED" },
1432 { 0xC00000E3, "STATUS_INVALID_OPLOCK_PROTOCOL" },
1433 { 0xC00000E4, "STATUS_INTERNAL_DB_CORRUPTION" },
1434 { 0xC00000E5, "STATUS_INTERNAL_ERROR" },
1435 { 0xC00000E6, "STATUS_GENERIC_NOT_MAPPED" },
1436 { 0xC00000E7, "STATUS_BAD_DESCRIPTOR_FORMAT" },
1437 { 0xC00000E8, "STATUS_INVALID_USER_BUFFER" },
1438 { 0xC00000E9, "STATUS_UNEXPECTED_IO_ERROR" },
1439 { 0xC00000EA, "STATUS_UNEXPECTED_MM_CREATE_ERR" },
1440 { 0xC00000EB, "STATUS_UNEXPECTED_MM_MAP_ERROR" },
1441 { 0xC00000EC, "STATUS_UNEXPECTED_MM_EXTEND_ERR" },
1442 { 0xC00000ED, "STATUS_NOT_LOGON_PROCESS" },
1443 { 0xC00000EE, "STATUS_LOGON_SESSION_EXISTS" },
1444 { 0xC00000EF, "STATUS_INVALID_PARAMETER_1" },
1445 { 0xC00000F0, "STATUS_INVALID_PARAMETER_2" },
1446 { 0xC00000F1, "STATUS_INVALID_PARAMETER_3" },
1447 { 0xC00000F2, "STATUS_INVALID_PARAMETER_4" },
1448 { 0xC00000F3, "STATUS_INVALID_PARAMETER_5" },
1449 { 0xC00000F4, "STATUS_INVALID_PARAMETER_6" },
1450 { 0xC00000F5, "STATUS_INVALID_PARAMETER_7" },
1451 { 0xC00000F6, "STATUS_INVALID_PARAMETER_8" },
1452 { 0xC00000F7, "STATUS_INVALID_PARAMETER_9" },
1453 { 0xC00000F8, "STATUS_INVALID_PARAMETER_10" },
1454 { 0xC00000F9, "STATUS_INVALID_PARAMETER_11" },
1455 { 0xC00000FA, "STATUS_INVALID_PARAMETER_12" },
1456 { 0xC00000FB, "STATUS_REDIRECTOR_NOT_STARTED" },
1457 { 0xC00000FC, "STATUS_REDIRECTOR_STARTED" },
1458 { 0xC00000FD, "STATUS_STACK_OVERFLOW" },
1459 { 0xC00000FE, "STATUS_NO_SUCH_PACKAGE" },
1460 { 0xC00000FF, "STATUS_BAD_FUNCTION_TABLE" },
1461 { 0xC0000100, "STATUS_VARIABLE_NOT_FOUND" },
1462 { 0xC0000101, "STATUS_DIRECTORY_NOT_EMPTY" },
1463 { 0xC0000102, "STATUS_FILE_CORRUPT_ERROR" },
1464 { 0xC0000103, "STATUS_NOT_A_DIRECTORY" },
1465 { 0xC0000104, "STATUS_BAD_LOGON_SESSION_STATE" },
1466 { 0xC0000105, "STATUS_LOGON_SESSION_COLLISION" },
1467 { 0xC0000106, "STATUS_NAME_TOO_LONG" },
1468 { 0xC0000107, "STATUS_FILES_OPEN" },
1469 { 0xC0000108, "STATUS_CONNECTION_IN_USE" },
1470 { 0xC0000109, "STATUS_MESSAGE_NOT_FOUND" },
1471 { 0xC000010A, "STATUS_PROCESS_IS_TERMINATING" },
1472 { 0xC000010B, "STATUS_INVALID_LOGON_TYPE" },
1473 { 0xC000010C, "STATUS_NO_GUID_TRANSLATION" },
1474 { 0xC000010D, "STATUS_CANNOT_IMPERSONATE" },
1475 { 0xC000010E, "STATUS_IMAGE_ALREADY_LOADED" },
1476 { 0xC000010F, "STATUS_ABIOS_NOT_PRESENT" },
1477 { 0xC0000110, "STATUS_ABIOS_LID_NOT_EXIST" },
1478 { 0xC0000111, "STATUS_ABIOS_LID_ALREADY_OWNED" },
1479 { 0xC0000112, "STATUS_ABIOS_NOT_LID_OWNER" },
1480 { 0xC0000113, "STATUS_ABIOS_INVALID_COMMAND" },
1481 { 0xC0000114, "STATUS_ABIOS_INVALID_LID" },
1482 { 0xC0000115, "STATUS_ABIOS_SELECTOR_NOT_AVAILABLE" },
1483 { 0xC0000116, "STATUS_ABIOS_INVALID_SELECTOR" },
1484 { 0xC0000117, "STATUS_NO_LDT" },
1485 { 0xC0000118, "STATUS_INVALID_LDT_SIZE" },
1486 { 0xC0000119, "STATUS_INVALID_LDT_OFFSET" },
1487 { 0xC000011A, "STATUS_INVALID_LDT_DESCRIPTOR" },
1488 { 0xC000011B, "STATUS_INVALID_IMAGE_NE_FORMAT" },
1489 { 0xC000011C, "STATUS_RXACT_INVALID_STATE" },
1490 { 0xC000011D, "STATUS_RXACT_COMMIT_FAILURE" },
1491 { 0xC000011E, "STATUS_MAPPED_FILE_SIZE_ZERO" },
1492 { 0xC000011F, "STATUS_TOO_MANY_OPENED_FILES" },
1493 { 0xC0000120, "STATUS_CANCELLED" },
1494 { 0xC0000121, "STATUS_CANNOT_DELETE" },
1495 { 0xC0000122, "STATUS_INVALID_COMPUTER_NAME" },
1496 { 0xC0000123, "STATUS_FILE_DELETED" },
1497 { 0xC0000124, "STATUS_SPECIAL_ACCOUNT" },
1498 { 0xC0000125, "STATUS_SPECIAL_GROUP" },
1499 { 0xC0000126, "STATUS_SPECIAL_USER" },
1500 { 0xC0000127, "STATUS_MEMBERS_PRIMARY_GROUP" },
1501 { 0xC0000128, "STATUS_FILE_CLOSED" },
1502 { 0xC0000129, "STATUS_TOO_MANY_THREADS" },
1503 { 0xC000012A, "STATUS_THREAD_NOT_IN_PROCESS" },
1504 { 0xC000012B, "STATUS_TOKEN_ALREADY_IN_USE" },
1505 { 0xC000012C, "STATUS_PAGEFILE_QUOTA_EXCEEDED" },
1506 { 0xC000012D, "STATUS_COMMITMENT_LIMIT" },
1507 { 0xC000012E, "STATUS_INVALID_IMAGE_LE_FORMAT" },
1508 { 0xC000012F, "STATUS_INVALID_IMAGE_NOT_MZ" },
1509 { 0xC0000130, "STATUS_INVALID_IMAGE_PROTECT" },
1510 { 0xC0000131, "STATUS_INVALID_IMAGE_WIN_16" },
1511 { 0xC0000132, "STATUS_LOGON_SERVER_CONFLICT" },
1512 { 0xC0000133, "STATUS_TIME_DIFFERENCE_AT_DC" },
1513 { 0xC0000134, "STATUS_SYNCHRONIZATION_REQUIRED" },
1514 { 0xC0000135, "STATUS_DLL_NOT_FOUND" },
1515 { 0xC0000136, "STATUS_OPEN_FAILED" },
1516 { 0xC0000137, "STATUS_IO_PRIVILEGE_FAILED" },
1517 { 0xC0000138, "STATUS_ORDINAL_NOT_FOUND" },
1518 { 0xC0000139, "STATUS_ENTRYPOINT_NOT_FOUND" },
1519 { 0xC000013A, "STATUS_CONTROL_C_EXIT" },
1520 { 0xC000013B, "STATUS_LOCAL_DISCONNECT" },
1521 { 0xC000013C, "STATUS_REMOTE_DISCONNECT" },
1522 { 0xC000013D, "STATUS_REMOTE_RESOURCES" },
1523 { 0xC000013E, "STATUS_LINK_FAILED" },
1524 { 0xC000013F, "STATUS_LINK_TIMEOUT" },
1525 { 0xC0000140, "STATUS_INVALID_CONNECTION" },
1526 { 0xC0000141, "STATUS_INVALID_ADDRESS" },
1527 { 0xC0000142, "STATUS_DLL_INIT_FAILED" },
1528 { 0xC0000143, "STATUS_MISSING_SYSTEMFILE" },
1529 { 0xC0000144, "STATUS_UNHANDLED_EXCEPTION" },
1530 { 0xC0000145, "STATUS_APP_INIT_FAILURE" },
1531 { 0xC0000146, "STATUS_PAGEFILE_CREATE_FAILED" },
1532 { 0xC0000147, "STATUS_NO_PAGEFILE" },
1533 { 0xC0000148, "STATUS_INVALID_LEVEL" },
1534 { 0xC0000149, "STATUS_WRONG_PASSWORD_CORE" },
1535 { 0xC000014A, "STATUS_ILLEGAL_FLOAT_CONTEXT" },
1536 { 0xC000014B, "STATUS_PIPE_BROKEN" },
1537 { 0xC000014C, "STATUS_REGISTRY_CORRUPT" },
1538 { 0xC000014D, "STATUS_REGISTRY_IO_FAILED" },
1539 { 0xC000014E, "STATUS_NO_EVENT_PAIR" },
1540 { 0xC000014F, "STATUS_UNRECOGNIZED_VOLUME" },
1541 { 0xC0000150, "STATUS_SERIAL_NO_DEVICE_INITED" },
1542 { 0xC0000151, "STATUS_NO_SUCH_ALIAS" },
1543 { 0xC0000152, "STATUS_MEMBER_NOT_IN_ALIAS" },
1544 { 0xC0000153, "STATUS_MEMBER_IN_ALIAS" },
1545 { 0xC0000154, "STATUS_ALIAS_EXISTS" },
1546 { 0xC0000155, "STATUS_LOGON_NOT_GRANTED" },
1547 { 0xC0000156, "STATUS_TOO_MANY_SECRETS" },
1548 { 0xC0000157, "STATUS_SECRET_TOO_LONG" },
1549 { 0xC0000158, "STATUS_INTERNAL_DB_ERROR" },
1550 { 0xC0000159, "STATUS_FULLSCREEN_MODE" },
1551 { 0xC000015A, "STATUS_TOO_MANY_CONTEXT_IDS" },
1552 { 0xC000015B, "STATUS_LOGON_TYPE_NOT_GRANTED" },
1553 { 0xC000015C, "STATUS_NOT_REGISTRY_FILE" },
1554 { 0xC000015D, "STATUS_NT_CROSS_ENCRYPTION_REQUIRED" },
1555 { 0xC000015E, "STATUS_DOMAIN_CTRLR_CONFIG_ERROR" },
1556 { 0xC000015F, "STATUS_FT_MISSING_MEMBER" },
1557 { 0xC0000160, "STATUS_ILL_FORMED_SERVICE_ENTRY" },
1558 { 0xC0000161, "STATUS_ILLEGAL_CHARACTER" },
1559 { 0xC0000162, "STATUS_UNMAPPABLE_CHARACTER" },
1560 { 0xC0000163, "STATUS_UNDEFINED_CHARACTER" },
1561 { 0xC0000164, "STATUS_FLOPPY_VOLUME" },
1562 { 0xC0000165, "STATUS_FLOPPY_ID_MARK_NOT_FOUND" },
1563 { 0xC0000166, "STATUS_FLOPPY_WRONG_CYLINDER" },
1564 { 0xC0000167, "STATUS_FLOPPY_UNKNOWN_ERROR" },
1565 { 0xC0000168, "STATUS_FLOPPY_BAD_REGISTERS" },
1566 { 0xC0000169, "STATUS_DISK_RECALIBRATE_FAILED" },
1567 { 0xC000016A, "STATUS_DISK_OPERATION_FAILED" },
1568 { 0xC000016B, "STATUS_DISK_RESET_FAILED" },
1569 { 0xC000016C, "STATUS_SHARED_IRQ_BUSY" },
1570 { 0xC000016D, "STATUS_FT_ORPHANING" },
1571 { 0xC000016E, "STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT" },
1572 { 0xC0000172, "STATUS_PARTITION_FAILURE" },
1573 { 0xC0000173, "STATUS_INVALID_BLOCK_LENGTH" },
1574 { 0xC0000174, "STATUS_DEVICE_NOT_PARTITIONED" },
1575 { 0xC0000175, "STATUS_UNABLE_TO_LOCK_MEDIA" },
1576 { 0xC0000176, "STATUS_UNABLE_TO_UNLOAD_MEDIA" },
1577 { 0xC0000177, "STATUS_EOM_OVERFLOW" },
1578 { 0xC0000178, "STATUS_NO_MEDIA" },
1579 { 0xC000017A, "STATUS_NO_SUCH_MEMBER" },
1580 { 0xC000017B, "STATUS_INVALID_MEMBER" },
1581 { 0xC000017C, "STATUS_KEY_DELETED" },
1582 { 0xC000017D, "STATUS_NO_LOG_SPACE" },
1583 { 0xC000017E, "STATUS_TOO_MANY_SIDS" },
1584 { 0xC000017F, "STATUS_LM_CROSS_ENCRYPTION_REQUIRED" },
1585 { 0xC0000180, "STATUS_KEY_HAS_CHILDREN" },
1586 { 0xC0000181, "STATUS_CHILD_MUST_BE_VOLATILE" },
1587 { 0xC0000182, "STATUS_DEVICE_CONFIGURATION_ERROR" },
1588 { 0xC0000183, "STATUS_DRIVER_INTERNAL_ERROR" },
1589 { 0xC0000184, "STATUS_INVALID_DEVICE_STATE" },
1590 { 0xC0000185, "STATUS_IO_DEVICE_ERROR" },
1591 { 0xC0000186, "STATUS_DEVICE_PROTOCOL_ERROR" },
1592 { 0xC0000187, "STATUS_BACKUP_CONTROLLER" },
1593 { 0xC0000188, "STATUS_LOG_FILE_FULL" },
1594 { 0xC0000189, "STATUS_TOO_LATE" },
1595 { 0xC000018A, "STATUS_NO_TRUST_LSA_SECRET" },
1596 { 0xC000018B, "STATUS_NO_TRUST_SAM_ACCOUNT" },
1597 { 0xC000018C, "STATUS_TRUSTED_DOMAIN_FAILURE" },
1598 { 0xC000018D, "STATUS_TRUSTED_RELATIONSHIP_FAILURE" },
1599 { 0xC000018E, "STATUS_EVENTLOG_FILE_CORRUPT" },
1600 { 0xC000018F, "STATUS_EVENTLOG_CANT_START" },
1601 { 0xC0000190, "STATUS_TRUST_FAILURE" },
1602 { 0xC0000191, "STATUS_MUTANT_LIMIT_EXCEEDED" },
1603 { 0xC0000192, "STATUS_NETLOGON_NOT_STARTED" },
1604 { 0xC0000193, "STATUS_ACCOUNT_EXPIRED" },
1605 { 0xC0000194, "STATUS_POSSIBLE_DEADLOCK" },
1606 { 0xC0000195, "STATUS_NETWORK_CREDENTIAL_CONFLICT" },
1607 { 0xC0000196, "STATUS_REMOTE_SESSION_LIMIT" },
1608 { 0xC0000197, "STATUS_EVENTLOG_FILE_CHANGED" },
1609 { 0xC0000198, "STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT" },
1610 { 0xC0000199, "STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT" },
1611 { 0xC000019A, "STATUS_NOLOGON_SERVER_TRUST_ACCOUNT" },
1612 { 0xC000019B, "STATUS_DOMAIN_TRUST_INCONSISTENT" },
1613 { 0xC000019C, "STATUS_FS_DRIVER_REQUIRED" },
1614 { 0xC0000202, "STATUS_NO_USER_SESSION_KEY" },
1615 { 0xC0000203, "STATUS_USER_SESSION_DELETED" },
1616 { 0xC0000204, "STATUS_RESOURCE_LANG_NOT_FOUND" },
1617 { 0xC0000205, "STATUS_INSUFF_SERVER_RESOURCES" },
1618 { 0xC0000206, "STATUS_INVALID_BUFFER_SIZE" },
1619 { 0xC0000207, "STATUS_INVALID_ADDRESS_COMPONENT" },
1620 { 0xC0000208, "STATUS_INVALID_ADDRESS_WILDCARD" },
1621 { 0xC0000209, "STATUS_TOO_MANY_ADDRESSES" },
1622 { 0xC000020A, "STATUS_ADDRESS_ALREADY_EXISTS" },
1623 { 0xC000020B, "STATUS_ADDRESS_CLOSED" },
1624 { 0xC000020C, "STATUS_CONNECTION_DISCONNECTED" },
1625 { 0xC000020D, "STATUS_CONNECTION_RESET" },
1626 { 0xC000020E, "STATUS_TOO_MANY_NODES" },
1627 { 0xC000020F, "STATUS_TRANSACTION_ABORTED" },
1628 { 0xC0000210, "STATUS_TRANSACTION_TIMED_OUT" },
1629 { 0xC0000211, "STATUS_TRANSACTION_NO_RELEASE" },
1630 { 0xC0000212, "STATUS_TRANSACTION_NO_MATCH" },
1631 { 0xC0000213, "STATUS_TRANSACTION_RESPONDED" },
1632 { 0xC0000214, "STATUS_TRANSACTION_INVALID_ID" },
1633 { 0xC0000215, "STATUS_TRANSACTION_INVALID_TYPE" },
1634 { 0xC0000216, "STATUS_NOT_SERVER_SESSION" },
1635 { 0xC0000217, "STATUS_NOT_CLIENT_SESSION" },
1636 { 0xC0000218, "STATUS_CANNOT_LOAD_REGISTRY_FILE" },
1637 { 0xC0000219, "STATUS_DEBUG_ATTACH_FAILED" },
1638 { 0xC000021A, "STATUS_SYSTEM_PROCESS_TERMINATED" },
1639 { 0xC000021B, "STATUS_DATA_NOT_ACCEPTED" },
1640 { 0xC000021C, "STATUS_NO_BROWSER_SERVERS_FOUND" },
1641 { 0xC000021D, "STATUS_VDM_HARD_ERROR" },
1642 { 0xC000021E, "STATUS_DRIVER_CANCEL_TIMEOUT" },
1643 { 0xC000021F, "STATUS_REPLY_MESSAGE_MISMATCH" },
1644 { 0xC0000220, "STATUS_MAPPED_ALIGNMENT" },
1645 { 0xC0000221, "STATUS_IMAGE_CHECKSUM_MISMATCH" },
1646 { 0xC0000222, "STATUS_LOST_WRITEBEHIND_DATA" },
1647 { 0xC0000223, "STATUS_CLIENT_SERVER_PARAMETERS_INVALID" },
1648 { 0xC0000224, "STATUS_PASSWORD_MUST_CHANGE" },
1649 { 0xC0000225, "STATUS_NOT_FOUND" },
1650 { 0xC0000226, "STATUS_NOT_TINY_STREAM" },
1651 { 0xC0000227, "STATUS_RECOVERY_FAILURE" },
1652 { 0xC0000228, "STATUS_STACK_OVERFLOW_READ" },
1653 { 0xC0000229, "STATUS_FAIL_CHECK" },
1654 { 0xC000022A, "STATUS_DUPLICATE_OBJECTID" },
1655 { 0xC000022B, "STATUS_OBJECTID_EXISTS" },
1656 { 0xC000022C, "STATUS_CONVERT_TO_LARGE" },
1657 { 0xC000022D, "STATUS_RETRY" },
1658 { 0xC000022E, "STATUS_FOUND_OUT_OF_SCOPE" },
1659 { 0xC000022F, "STATUS_ALLOCATE_BUCKET" },
1660 { 0xC0000230, "STATUS_PROPSET_NOT_FOUND" },
1661 { 0xC0000231, "STATUS_MARSHALL_OVERFLOW" },
1662 { 0xC0000232, "STATUS_INVALID_VARIANT" },
1663 { 0xC0000233, "STATUS_DOMAIN_CONTROLLER_NOT_FOUND" },
1664 { 0xC0000234, "STATUS_ACCOUNT_LOCKED_OUT" },
1665 { 0xC0000235, "STATUS_HANDLE_NOT_CLOSABLE" },
1666 { 0xC0000236, "STATUS_CONNECTION_REFUSED" },
1667 { 0xC0000237, "STATUS_GRACEFUL_DISCONNECT" },
1668 { 0xC0000238, "STATUS_ADDRESS_ALREADY_ASSOCIATED" },
1669 { 0xC0000239, "STATUS_ADDRESS_NOT_ASSOCIATED" },
1670 { 0xC000023A, "STATUS_CONNECTION_INVALID" },
1671 { 0xC000023B, "STATUS_CONNECTION_ACTIVE" },
1672 { 0xC000023C, "STATUS_NETWORK_UNREACHABLE" },
1673 { 0xC000023D, "STATUS_HOST_UNREACHABLE" },
1674 { 0xC000023E, "STATUS_PROTOCOL_UNREACHABLE" },
1675 { 0xC000023F, "STATUS_PORT_UNREACHABLE" },
1676 { 0xC0000240, "STATUS_REQUEST_ABORTED" },
1677 { 0xC0000241, "STATUS_CONNECTION_ABORTED" },
1678 { 0xC0000242, "STATUS_BAD_COMPRESSION_BUFFER" },
1679 { 0xC0000243, "STATUS_USER_MAPPED_FILE" },
1680 { 0xC0000244, "STATUS_AUDIT_FAILED" },
1681 { 0xC0000245, "STATUS_TIMER_RESOLUTION_NOT_SET" },
1682 { 0xC0000246, "STATUS_CONNECTION_COUNT_LIMIT" },
1683 { 0xC0000247, "STATUS_LOGIN_TIME_RESTRICTION" },
1684 { 0xC0000248, "STATUS_LOGIN_WKSTA_RESTRICTION" },
1685 { 0xC0000249, "STATUS_IMAGE_MP_UP_MISMATCH" },
1686 { 0xC0000250, "STATUS_INSUFFICIENT_LOGON_INFO" },
1687 { 0xC0000251, "STATUS_BAD_DLL_ENTRYPOINT" },
1688 { 0xC0000252, "STATUS_BAD_SERVICE_ENTRYPOINT" },
1689 { 0xC0000253, "STATUS_LPC_REPLY_LOST" },
1690 { 0xC0000254, "STATUS_IP_ADDRESS_CONFLICT1" },
1691 { 0xC0000255, "STATUS_IP_ADDRESS_CONFLICT2" },
1692 { 0xC0000256, "STATUS_REGISTRY_QUOTA_LIMIT" },
1693 { 0xC0000257, "STATUS_PATH_NOT_COVERED" },
1694 { 0xC0000258, "STATUS_NO_CALLBACK_ACTIVE" },
1695 { 0xC0000259, "STATUS_LICENSE_QUOTA_EXCEEDED" },
1696 { 0xC000025A, "STATUS_PWD_TOO_SHORT" },
1697 { 0xC000025B, "STATUS_PWD_TOO_RECENT" },
1698 { 0xC000025C, "STATUS_PWD_HISTORY_CONFLICT" },
1699 { 0xC000025E, "STATUS_PLUGPLAY_NO_DEVICE" },
1700 { 0xC000025F, "STATUS_UNSUPPORTED_COMPRESSION" },
1701 { 0xC0000260, "STATUS_INVALID_HW_PROFILE" },
1702 { 0xC0000261, "STATUS_INVALID_PLUGPLAY_DEVICE_PATH" },
1703 { 0xC0000262, "STATUS_DRIVER_ORDINAL_NOT_FOUND" },
1704 { 0xC0000263, "STATUS_DRIVER_ENTRYPOINT_NOT_FOUND" },
1705 { 0xC0000264, "STATUS_RESOURCE_NOT_OWNED" },
1706 { 0xC0000265, "STATUS_TOO_MANY_LINKS" },
1707 { 0xC0000266, "STATUS_QUOTA_LIST_INCONSISTENT" },
1708 { 0xC0000267, "STATUS_FILE_IS_OFFLINE" },
1709 { 0xC0000268, "STATUS_EVALUATION_EXPIRATION" },
1710 { 0xC0000269, "STATUS_ILLEGAL_DLL_RELOCATION" },
1711 { 0xC000026A, "STATUS_LICENSE_VIOLATION" },
1712 { 0xC000026B, "STATUS_DLL_INIT_FAILED_LOGOFF" },
1713 { 0xC000026C, "STATUS_DRIVER_UNABLE_TO_LOAD" },
1714 { 0xC000026D, "STATUS_DFS_UNAVAILABLE" },
1715 { 0xC000026E, "STATUS_VOLUME_DISMOUNTED" },
1716 { 0xC000026F, "STATUS_WX86_INTERNAL_ERROR" },
1717 { 0xC0000270, "STATUS_WX86_FLOAT_STACK_CHECK" },
1718 { 0xC0000271, "STATUS_VALIDATE_CONTINUE" },
1719 { 0xC0000272, "STATUS_NO_MATCH" },
1720 { 0xC0000273, "STATUS_NO_MORE_MATCHES" },
1721 { 0xC0000275, "STATUS_NOT_A_REPARSE_POINT" },
1722 { 0xC0000276, "STATUS_IO_REPARSE_TAG_INVALID" },
1723 { 0xC0000277, "STATUS_IO_REPARSE_TAG_MISMATCH" },
1724 { 0xC0000278, "STATUS_IO_REPARSE_DATA_INVALID" },
1725 { 0xC0000279, "STATUS_IO_REPARSE_TAG_NOT_HANDLED" },
1726 { 0xC0000280, "STATUS_REPARSE_POINT_NOT_RESOLVED" },
1727 { 0xC0000281, "STATUS_DIRECTORY_IS_A_REPARSE_POINT" },
1728 { 0xC0000282, "STATUS_RANGE_LIST_CONFLICT" },
1729 { 0xC0000283, "STATUS_SOURCE_ELEMENT_EMPTY" },
1730 { 0xC0000284, "STATUS_DESTINATION_ELEMENT_FULL" },
1731 { 0xC0000285, "STATUS_ILLEGAL_ELEMENT_ADDRESS" },
1732 { 0xC0000286, "STATUS_MAGAZINE_NOT_PRESENT" },
1733 { 0xC0000287, "STATUS_REINITIALIZATION_NEEDED" },
1734 { 0x80000288, "STATUS_DEVICE_REQUIRES_CLEANING" },
1735 { 0x80000289, "STATUS_DEVICE_DOOR_OPEN" },
1736 { 0xC000028A, "STATUS_ENCRYPTION_FAILED" },
1737 { 0xC000028B, "STATUS_DECRYPTION_FAILED" },
1738 { 0xC000028C, "STATUS_RANGE_NOT_FOUND" },
1739 { 0xC000028D, "STATUS_NO_RECOVERY_POLICY" },
1740 { 0xC000028E, "STATUS_NO_EFS" },
1741 { 0xC000028F, "STATUS_WRONG_EFS" },
1742 { 0xC0000290, "STATUS_NO_USER_KEYS" },
1743 { 0xC0000291, "STATUS_FILE_NOT_ENCRYPTED" },
1744 { 0xC0000292, "STATUS_NOT_EXPORT_FORMAT" },
1745 { 0xC0000293, "STATUS_FILE_ENCRYPTED" },
1746 { 0x40000294, "STATUS_WAKE_SYSTEM" },
1747 { 0xC0000295, "STATUS_WMI_GUID_NOT_FOUND" },
1748 { 0xC0000296, "STATUS_WMI_INSTANCE_NOT_FOUND" },
1749 { 0xC0000297, "STATUS_WMI_ITEMID_NOT_FOUND" },
1750 { 0xC0000298, "STATUS_WMI_TRY_AGAIN" },
1751 { 0xC0000299, "STATUS_SHARED_POLICY" },
1752 { 0xC000029A, "STATUS_POLICY_OBJECT_NOT_FOUND" },
1753 { 0xC000029B, "STATUS_POLICY_ONLY_IN_DS" },
1754 { 0xC000029C, "STATUS_VOLUME_NOT_UPGRADED" },
1755 { 0xC000029D, "STATUS_REMOTE_STORAGE_NOT_ACTIVE" },
1756 { 0xC000029E, "STATUS_REMOTE_STORAGE_MEDIA_ERROR" },
1757 { 0xC000029F, "STATUS_NO_TRACKING_SERVICE" },
1758 { 0xC00002A0, "STATUS_SERVER_SID_MISMATCH" },
1759 { 0xC00002A1, "STATUS_DS_NO_ATTRIBUTE_OR_VALUE" },
1760 { 0xC00002A2, "STATUS_DS_INVALID_ATTRIBUTE_SYNTAX" },
1761 { 0xC00002A3, "STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED" },
1762 { 0xC00002A4, "STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS" },
1763 { 0xC00002A5, "STATUS_DS_BUSY" },
1764 { 0xC00002A6, "STATUS_DS_UNAVAILABLE" },
1765 { 0xC00002A7, "STATUS_DS_NO_RIDS_ALLOCATED" },
1766 { 0xC00002A8, "STATUS_DS_NO_MORE_RIDS" },
1767 { 0xC00002A9, "STATUS_DS_INCORRECT_ROLE_OWNER" },
1768 { 0xC00002AA, "STATUS_DS_RIDMGR_INIT_ERROR" },
1769 { 0xC00002AB, "STATUS_DS_OBJ_CLASS_VIOLATION" },
1770 { 0xC00002AC, "STATUS_DS_CANT_ON_NON_LEAF" },
1771 { 0xC00002AD, "STATUS_DS_CANT_ON_RDN" },
1772 { 0xC00002AE, "STATUS_DS_CANT_MOD_OBJ_CLASS" },
1773 { 0xC00002AF, "STATUS_DS_CROSS_DOM_MOVE_FAILED" },
1774 { 0xC00002B0, "STATUS_DS_GC_NOT_AVAILABLE" },
1775 { 0xC00002B1, "STATUS_DIRECTORY_SERVICE_REQUIRED" },
1776 { 0xC00002B2, "STATUS_REPARSE_ATTRIBUTE_CONFLICT" },
1777 { 0xC00002B3, "STATUS_CANT_ENABLE_DENY_ONLY" },
1778 { 0xC00002B4, "STATUS_FLOAT_MULTIPLE_FAULTS" },
1779 { 0xC00002B5, "STATUS_FLOAT_MULTIPLE_TRAPS" },
1780 { 0xC00002B6, "STATUS_DEVICE_REMOVED" },
1781 { 0xC00002B7, "STATUS_JOURNAL_DELETE_IN_PROGRESS" },
1782 { 0xC00002B8, "STATUS_JOURNAL_NOT_ACTIVE" },
1783 { 0xC00002B9, "STATUS_NOINTERFACE" },
1784 { 0xC00002C1, "STATUS_DS_ADMIN_LIMIT_EXCEEDED" },
1785 { 0xC00002C2, "STATUS_DRIVER_FAILED_SLEEP" },
1786 { 0xC00002C3, "STATUS_MUTUAL_AUTHENTICATION_FAILED" },
1787 { 0xC00002C4, "STATUS_CORRUPT_SYSTEM_FILE" },
1788 { 0xC00002C5, "STATUS_DATATYPE_MISALIGNMENT_ERROR" },
1789 { 0xC00002C6, "STATUS_WMI_READ_ONLY" },
1790 { 0xC00002C7, "STATUS_WMI_SET_FAILURE" },
1791 { 0xC00002C8, "STATUS_COMMITMENT_MINIMUM" },
1792 { 0xC00002C9, "STATUS_REG_NAT_CONSUMPTION" },
1793 { 0xC00002CA, "STATUS_TRANSPORT_FULL" },
1794 { 0xC00002CB, "STATUS_DS_SAM_INIT_FAILURE" },
1795 { 0xC00002CC, "STATUS_ONLY_IF_CONNECTED" },
1796 { 0xC00002CD, "STATUS_DS_SENSITIVE_GROUP_VIOLATION" },
1797 { 0xC00002CE, "STATUS_PNP_RESTART_ENUMERATION" },
1798 { 0xC00002CF, "STATUS_JOURNAL_ENTRY_DELETED" },
1799 { 0xC00002D0, "STATUS_DS_CANT_MOD_PRIMARYGROUPID" },
1800 { 0xC00002D1, "STATUS_SYSTEM_IMAGE_BAD_SIGNATURE" },
1801 { 0xC00002D2, "STATUS_PNP_REBOOT_REQUIRED" },
1802 { 0xC00002D3, "STATUS_POWER_STATE_INVALID" },
1803 { 0xC00002D4, "STATUS_DS_INVALID_GROUP_TYPE" },
1804 { 0xC00002D5, "STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN" },
1805 { 0xC00002D6, "STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN" },
1806 { 0xC00002D7, "STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER" },
1807 { 0xC00002D8, "STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER" },
1808 { 0xC00002D9, "STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER" },
1809 { 0xC00002DA, "STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER" },
1810 { 0xC00002DB, "STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER" },
1811 { 0xC00002DC, "STATUS_DS_HAVE_PRIMARY_MEMBERS" },
1812 { 0xC00002DD, "STATUS_WMI_NOT_SUPPORTED" },
1813 { 0xC00002DE, "STATUS_INSUFFICIENT_POWER" },
1814 { 0xC00002DF, "STATUS_SAM_NEED_BOOTKEY_PASSWORD" },
1815 { 0xC00002E0, "STATUS_SAM_NEED_BOOTKEY_FLOPPY" },
1816 { 0xC00002E1, "STATUS_DS_CANT_START" },
1817 { 0xC00002E2, "STATUS_DS_INIT_FAILURE" },
1818 { 0xC00002E3, "STATUS_SAM_INIT_FAILURE" },
1819 { 0xC00002E4, "STATUS_DS_GC_REQUIRED" },
1820 { 0xC00002E5, "STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY" },
1821 { 0xC00002E6, "STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS" },
1822 { 0xC00002E7, "STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" },
1823 { 0xC00002E8, "STATUS_MULTIPLE_FAULT_VIOLATION" },
1824 { 0xC0000300, "STATUS_NOT_SUPPORTED_ON_SBS" },
1825 { 0xC0009898, "STATUS_WOW_ASSERTION" },
1826 { 0xC0020001, "RPC_NT_INVALID_STRING_BINDING" },
1827 { 0xC0020002, "RPC_NT_WRONG_KIND_OF_BINDING" },
1828 { 0xC0020003, "RPC_NT_INVALID_BINDING" },
1829 { 0xC0020004, "RPC_NT_PROTSEQ_NOT_SUPPORTED" },
1830 { 0xC0020005, "RPC_NT_INVALID_RPC_PROTSEQ" },
1831 { 0xC0020006, "RPC_NT_INVALID_STRING_UUID" },
1832 { 0xC0020007, "RPC_NT_INVALID_ENDPOINT_FORMAT" },
1833 { 0xC0020008, "RPC_NT_INVALID_NET_ADDR" },
1834 { 0xC0020009, "RPC_NT_NO_ENDPOINT_FOUND" },
1835 { 0xC002000A, "RPC_NT_INVALID_TIMEOUT" },
1836 { 0xC002000B, "RPC_NT_OBJECT_NOT_FOUND" },
1837 { 0xC002000C, "RPC_NT_ALREADY_REGISTERED" },
1838 { 0xC002000D, "RPC_NT_TYPE_ALREADY_REGISTERED" },
1839 { 0xC002000E, "RPC_NT_ALREADY_LISTENING" },
1840 { 0xC002000F, "RPC_NT_NO_PROTSEQS_REGISTERED" },
1841 { 0xC0020010, "RPC_NT_NOT_LISTENING" },
1842 { 0xC0020011, "RPC_NT_UNKNOWN_MGR_TYPE" },
1843 { 0xC0020012, "RPC_NT_UNKNOWN_IF" },
1844 { 0xC0020013, "RPC_NT_NO_BINDINGS" },
1845 { 0xC0020014, "RPC_NT_NO_PROTSEQS" },
1846 { 0xC0020015, "RPC_NT_CANT_CREATE_ENDPOINT" },
1847 { 0xC0020016, "RPC_NT_OUT_OF_RESOURCES" },
1848 { 0xC0020017, "RPC_NT_SERVER_UNAVAILABLE" },
1849 { 0xC0020018, "RPC_NT_SERVER_TOO_BUSY" },
1850 { 0xC0020019, "RPC_NT_INVALID_NETWORK_OPTIONS" },
1851 { 0xC002001A, "RPC_NT_NO_CALL_ACTIVE" },
1852 { 0xC002001B, "RPC_NT_CALL_FAILED" },
1853 { 0xC002001C, "RPC_NT_CALL_FAILED_DNE" },
1854 { 0xC002001D, "RPC_NT_PROTOCOL_ERROR" },
1855 { 0xC002001F, "RPC_NT_UNSUPPORTED_TRANS_SYN" },
1856 { 0xC0020021, "RPC_NT_UNSUPPORTED_TYPE" },
1857 { 0xC0020022, "RPC_NT_INVALID_TAG" },
1858 { 0xC0020023, "RPC_NT_INVALID_BOUND" },
1859 { 0xC0020024, "RPC_NT_NO_ENTRY_NAME" },
1860 { 0xC0020025, "RPC_NT_INVALID_NAME_SYNTAX" },
1861 { 0xC0020026, "RPC_NT_UNSUPPORTED_NAME_SYNTAX" },
1862 { 0xC0020028, "RPC_NT_UUID_NO_ADDRESS" },
1863 { 0xC0020029, "RPC_NT_DUPLICATE_ENDPOINT" },
1864 { 0xC002002A, "RPC_NT_UNKNOWN_AUTHN_TYPE" },
1865 { 0xC002002B, "RPC_NT_MAX_CALLS_TOO_SMALL" },
1866 { 0xC002002C, "RPC_NT_STRING_TOO_LONG" },
1867 { 0xC002002D, "RPC_NT_PROTSEQ_NOT_FOUND" },
1868 { 0xC002002E, "RPC_NT_PROCNUM_OUT_OF_RANGE" },
1869 { 0xC002002F, "RPC_NT_BINDING_HAS_NO_AUTH" },
1870 { 0xC0020030, "RPC_NT_UNKNOWN_AUTHN_SERVICE" },
1871 { 0xC0020031, "RPC_NT_UNKNOWN_AUTHN_LEVEL" },
1872 { 0xC0020032, "RPC_NT_INVALID_AUTH_IDENTITY" },
1873 { 0xC0020033, "RPC_NT_UNKNOWN_AUTHZ_SERVICE" },
1874 { 0xC0020034, "EPT_NT_INVALID_ENTRY" },
1875 { 0xC0020035, "EPT_NT_CANT_PERFORM_OP" },
1876 { 0xC0020036, "EPT_NT_NOT_REGISTERED" },
1877 { 0xC0020037, "RPC_NT_NOTHING_TO_EXPORT" },
1878 { 0xC0020038, "RPC_NT_INCOMPLETE_NAME" },
1879 { 0xC0020039, "RPC_NT_INVALID_VERS_OPTION" },
1880 { 0xC002003A, "RPC_NT_NO_MORE_MEMBERS" },
1881 { 0xC002003B, "RPC_NT_NOT_ALL_OBJS_UNEXPORTED" },
1882 { 0xC002003C, "RPC_NT_INTERFACE_NOT_FOUND" },
1883 { 0xC002003D, "RPC_NT_ENTRY_ALREADY_EXISTS" },
1884 { 0xC002003E, "RPC_NT_ENTRY_NOT_FOUND" },
1885 { 0xC002003F, "RPC_NT_NAME_SERVICE_UNAVAILABLE" },
1886 { 0xC0020040, "RPC_NT_INVALID_NAF_ID" },
1887 { 0xC0020041, "RPC_NT_CANNOT_SUPPORT" },
1888 { 0xC0020042, "RPC_NT_NO_CONTEXT_AVAILABLE" },
1889 { 0xC0020043, "RPC_NT_INTERNAL_ERROR" },
1890 { 0xC0020044, "RPC_NT_ZERO_DIVIDE" },
1891 { 0xC0020045, "RPC_NT_ADDRESS_ERROR" },
1892 { 0xC0020046, "RPC_NT_FP_DIV_ZERO" },
1893 { 0xC0020047, "RPC_NT_FP_UNDERFLOW" },
1894 { 0xC0020048, "RPC_NT_FP_OVERFLOW" },
1895 { 0xC0021007, "RPC_P_RECEIVE_ALERTED" },
1896 { 0xC0021008, "RPC_P_CONNECTION_CLOSED" },
1897 { 0xC0021009, "RPC_P_RECEIVE_FAILED" },
1898 { 0xC002100A, "RPC_P_SEND_FAILED" },
1899 { 0xC002100B, "RPC_P_TIMEOUT" },
1900 { 0xC002100C, "RPC_P_SERVER_TRANSPORT_ERROR" },
1901 { 0xC002100E, "RPC_P_EXCEPTION_OCCURRED" },
1902 { 0xC0021012, "RPC_P_CONNECTION_SHUTDOWN" },
1903 { 0xC0021015, "RPC_P_THREAD_LISTENING" },
1904 { 0xC0030001, "RPC_NT_NO_MORE_ENTRIES" },
1905 { 0xC0030002, "RPC_NT_SS_CHAR_TRANS_OPEN_FAIL" },
1906 { 0xC0030003, "RPC_NT_SS_CHAR_TRANS_SHORT_FILE" },
1907 { 0xC0030004, "RPC_NT_SS_IN_NULL_CONTEXT" },
1908 { 0xC0030005, "RPC_NT_SS_CONTEXT_MISMATCH" },
1909 { 0xC0030006, "RPC_NT_SS_CONTEXT_DAMAGED" },
1910 { 0xC0030007, "RPC_NT_SS_HANDLES_MISMATCH" },
1911 { 0xC0030008, "RPC_NT_SS_CANNOT_GET_CALL_HANDLE" },
1912 { 0xC0030009, "RPC_NT_NULL_REF_POINTER" },
1913 { 0xC003000A, "RPC_NT_ENUM_VALUE_OUT_OF_RANGE" },
1914 { 0xC003000B, "RPC_NT_BYTE_COUNT_TOO_SMALL" },
1915 { 0xC003000C, "RPC_NT_BAD_STUB_DATA" },
1916 { 0xC0020049, "RPC_NT_CALL_IN_PROGRESS" },
1917 { 0xC002004A, "RPC_NT_NO_MORE_BINDINGS" },
1918 { 0xC002004B, "RPC_NT_GROUP_MEMBER_NOT_FOUND" },
1919 { 0xC002004C, "EPT_NT_CANT_CREATE" },
1920 { 0xC002004D, "RPC_NT_INVALID_OBJECT" },
1921 { 0xC002004F, "RPC_NT_NO_INTERFACES" },
1922 { 0xC0020050, "RPC_NT_CALL_CANCELLED" },
1923 { 0xC0020051, "RPC_NT_BINDING_INCOMPLETE" },
1924 { 0xC0020052, "RPC_NT_COMM_FAILURE" },
1925 { 0xC0020053, "RPC_NT_UNSUPPORTED_AUTHN_LEVEL" },
1926 { 0xC0020054, "RPC_NT_NO_PRINC_NAME" },
1927 { 0xC0020055, "RPC_NT_NOT_RPC_ERROR" },
1928 { 0x40020056, "RPC_NT_UUID_LOCAL_ONLY" },
1929 { 0xC0020057, "RPC_NT_SEC_PKG_ERROR" },
1930 { 0xC0020058, "RPC_NT_NOT_CANCELLED" },
1931 { 0xC0030059, "RPC_NT_INVALID_ES_ACTION" },
1932 { 0xC003005A, "RPC_NT_WRONG_ES_VERSION" },
1933 { 0xC003005B, "RPC_NT_WRONG_STUB_VERSION" },
1934 { 0xC003005C, "RPC_NT_INVALID_PIPE_OBJECT" },
1935 { 0xC003005D, "RPC_NT_INVALID_PIPE_OPERATION" },
1936 { 0xC003005E, "RPC_NT_WRONG_PIPE_VERSION" },
1937 { 0x400200AF, "RPC_NT_SEND_INCOMPLETE" },
1938 { 0, NULL }
1939 };
1940
1941 /*
1942 * return an NT error string from a SMB buffer
1943 */
1944 const char *
1945 nt_errstr(uint32_t err)
1946 {
1947 static char ret[128];
1948 int i;
1949
1950 ret[0] = 0;
1951
1952 for (i = 0; nt_errors[i].name; i++) {
1953 if (err == nt_errors[i].code)
1954 return nt_errors[i].name;
1955 }
1956
1957 snprintf(ret, sizeof(ret), "0x%08x", err);
1958 return ret;
1959 }