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