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