diff --git a/source_code/dump_smb.c b/source_code/dump_smb.c index ac0b354..0353f3b 100644 --- a/source_code/dump_smb.c +++ b/source_code/dump_smb.c @@ -966,12 +966,12 @@ print_smb_transaction2_subcommand(int command,enum smb_packet_source_t smb_packe file_name = (char *)next_data_bytes(data,file_name_length,&entry_offset); Printf("\tresume key = 0x%08lx\n",resume_key); - Printf("\tcreation date = %lu\n",creation_date); - Printf("\tcreation time = %lu\n",creation_time); - Printf("\tlast access date = %lu\n",last_access_date); - Printf("\tlast access time = %lu\n",last_access_time); - Printf("\tlast write date = %lu\n",last_write_date); - Printf("\tlast write time = %lu\n",last_write_time); + Printf("\tcreation date = 0x%04lx\n",creation_date); + Printf("\tcreation time = 0x%04lx\n",creation_time); + Printf("\tlast access date = 0x%04lx\n",last_access_date); + Printf("\tlast access time = 0x%04lx\n",last_access_time); + Printf("\tlast write date = 0x%04lx\n",last_write_date); + Printf("\tlast write time = 0x%04lx\n",last_write_time); Printf("\tfile data size = %lu\n",file_data_size); Printf("\tallocation size = %lu\n",allocation_size); Printf("\tfile attributes = 0x%08lx\n",file_attributes); @@ -1284,7 +1284,7 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ Printf(" SMB_FILE_ATTRIBUTE_ARCHIVE\n"); Printf("last modified = 0x%04lx%04lx\n",vwv[3],vwv[2]); - Printf("file size = %ld\n",(((int)vwv[5]) << 16) + vwv[4]); + Printf("file size = %lu\n",(((unsigned long )vwv[5]) << 16) | vwv[4]); access_mode = vwv[6]; Printf("access mode = 0x%04lx\n",access_mode); @@ -1421,7 +1421,7 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ if(file_attributes & 0x0020) Printf(" SMB_FILE_ATTRIBUTE_ARCHIVE\n"); - Printf("creation time = 0x%04l%04lx\n",vwv[2],vwv[1]); + Printf("creation time = 0x%08lx\n",(((unsigned long)vwv[2]) << 16) | vwv[1]); Printf("buffer format = %ld\n",filename[0]); Printf("file pathname = '%s'\n",filename+1); } @@ -1555,8 +1555,8 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ if(file_attributes & 0x0020) Printf(" SMB_FILE_ATTRIBUTE_ARCHIVE\n"); - Printf("last write time = 0x%04lx%04lx\n",vwv[2],vwv[1]); - Printf("file size = %ld\n",(((int)vwv[4]) << 16) + vwv[3]); + Printf("last write time = 0x%08lx\n",(((unsigned long)vwv[2]) << 16) | vwv[1]); + Printf("file size = %lu\n",(((unsigned long)vwv[4]) << 16) | vwv[3]); } } else if (command == SMB_COM_SET_INFORMATION) @@ -1596,7 +1596,7 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ if(file_attributes & 0x0020) Printf(" SMB_FILE_ATTRIBUTE_ARCHIVE\n"); - Printf("creation time = 0x%04lx%04lx\n",vwv[2],vwv[1]); + Printf("creation time = 0x%08lx\n",(((unsigned long)vwv[2]) << 16) | vwv[1]); Printf("file pathname = '%s'\n",filename+1); } } @@ -1606,7 +1606,7 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ { Printf("file handle = 0x%04lx\n",vwv[0]); Printf("count of bytes to read = %ld\n",vwv[1]); - Printf("read offset in bytes = %ld\n",(((int)vwv[3]) << 16) + vwv[2]); + Printf("read offset in bytes = %lu\n",(((unsigned long)vwv[3]) << 16) | vwv[2]); Printf("estimate of remaining bytes to be read = %ld\n",vwv[4]); } else @@ -1634,7 +1634,7 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ Printf("file handle = 0x%04lx\n",vwv[0]); Printf("count of bytes to write = %ld\n",vwv[1]); - Printf("write offset in bytes = %ld\n",(((int)vwv[3]) << 16) + vwv[2]); + Printf("write offset in bytes = %lu\n",(((unsigned long)vwv[3]) << 16) | vwv[2]); Printf("estimate of remaining bytes to be written = %ld\n",vwv[4]); buffer_format = next_data_byte(data,&offset); @@ -1645,7 +1645,7 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ } else { - Printf("count of bytes written= %ld\n",vwv[0]); + Printf("count of bytes written = %ld\n",vwv[0]); } } else if (command == SMB_COM_SEEK) @@ -1692,7 +1692,7 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ Printf("offset = %lu\n",(((unsigned long)vwv[2]) << 16) | vwv[1]); Printf("maximum count of bytes to return = %ld\n",vwv[3]); Printf("minimum count of byte to return = %ld\n",vwv[4]); - Printf("timeout = %ld\n",(((int)vwv[6]) << 16) + vwv[5]); + Printf("timeout = %lu\n",(((unsigned long)vwv[6]) << 16) | vwv[5]); if(num_parameter_words == 0x0A) Printf("offset high = %lu\n",(((unsigned long)vwv[9]) << 16) | vwv[8]); @@ -1742,12 +1742,12 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ if(smb_packet_source == smb_packet_from_consumer) { Printf("fid = %ld\n",vwv[0]); - Printf("create date = %ld\n",vwv[1]); - Printf("creation time = %ld\n",vwv[2]); - Printf("last access date = %ld\n",vwv[3]); - Printf("last access time = %ld\n",vwv[4]); - Printf("last write date = %ld\n",vwv[5]); - Printf("last write time = %ld\n",vwv[6]); + Printf("create date = 0x%04lx\n",vwv[1]); + Printf("creation time = 0x%04lx\n",vwv[2]); + Printf("last access date = 0x%04lx\n",vwv[3]); + Printf("last access time = 0x%04lx\n",vwv[4]); + Printf("last write date = 0x%04lx\n",vwv[5]); + Printf("last write time = 0x%04lx\n",vwv[6]); } } else if (command == SMB_COM_QUERY_INFORMATION2) @@ -1757,12 +1757,12 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ int file_attributes; Printf("fid = %ld\n",vwv[0]); - Printf("create date = %ld\n",vwv[1]); - Printf("creation time = %ld\n",vwv[2]); - Printf("last access date = %ld\n",vwv[3]); - Printf("last access time = %ld\n",vwv[4]); - Printf("last write date = %ld\n",vwv[5]); - Printf("last write time = %ld\n",vwv[6]); + Printf("create date = 0x%04lx\n",vwv[1]); + Printf("creation time = 0x%04lx\n",vwv[2]); + Printf("last access date = 0x%04lx\n",vwv[3]); + Printf("last access time = 0x%04lx\n",vwv[4]); + Printf("last write date = 0x%04lx\n",vwv[5]); + Printf("last write time = 0x%04lx\n",vwv[6]); Printf("file data size = %lu\n",(((unsigned long)vwv[8]) << 16) | vwv[7]); Printf("file allocation size = %lu\n",(((unsigned long)vwv[10]) << 16) | vwv[9]); @@ -1880,7 +1880,7 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ if(flags & 0x0002) Printf(" NO_RESPONSE\n"); - Printf("timeout = %lu\n",(((unsigned long)vwv[7]) << 16) + vwv[6]); + Printf("timeout = %lu\n",(((unsigned long)vwv[7]) << 16) | vwv[6]); transaction_parameter_count = vwv[9]; Printf("parameter count = %ld\n",transaction_parameter_count); @@ -1957,7 +1957,7 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ Printf("parameter count = %ld\n",transaction_parameter_count); transaction_parameter_offset = vwv[4]; - Printf("parameter offset = %ld (header parameter offset = %ld)\n",transaction_parameter_offset,header->parameter_offset); + Printf("parameter offset = %ld\n",transaction_parameter_offset); Printf("parameter displacement = %ld\n",vwv[5]); @@ -1965,7 +1965,7 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ Printf("data count = %ld\n",transaction_data_count); transaction_data_offset = vwv[7]; - Printf("data offset = %ld (header data offset = %ld)\n",transaction_data_offset,header->data_offset); + Printf("data offset = %ld\n",transaction_data_offset); setup_count = vwv[8] & 0xff; Printf("setup count = %ld\n",setup_count); @@ -2103,9 +2103,9 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ Printf("max mpx count = %ld\n",next_data_word(parameters,&offset)); Printf("max number cvs = %ld\n",next_data_word(parameters,&offset)); - Printf("max buffer size = %ld\n",next_data_dword(parameters,&offset)); - Printf("max raw size = %ld\n",next_data_dword(parameters,&offset)); - Printf("session key = %ld\n",next_data_dword(parameters,&offset)); + Printf("max buffer size = %lu\n",next_data_dword(parameters,&offset)); + Printf("max raw size = %lu\n",next_data_dword(parameters,&offset)); + Printf("session key = %lu\n",next_data_dword(parameters,&offset)); capabilities = next_data_dword(parameters,&offset); Printf("capabilities = 0x%08lx\n",capabilities); @@ -2237,7 +2237,7 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ Printf("consumer's maximum buffer size = %ld\n",vwv[0]); Printf("actual maximum multiplexed pending requests = %ld\n",vwv[1]); Printf("vc number = %ld\n",vwv[2]); - Printf("session key = 0x%04lx%04lx\n",vwv[4],vwv[3]); + Printf("session key = 0x%08lx\n",(((unsigned long)vwv[4]) << 16) | vwv[3]); oem_password_length = vwv[5]; Printf("oem password length = %ld\n",oem_password_length); @@ -2245,7 +2245,7 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ unicode_password_length = vwv[6]; Printf("unicode password length = %ld\n",unicode_password_length); - capabilities = (((unsigned long)vwv[10]) << 16) + vwv[9]; + capabilities = (((unsigned long)vwv[10]) << 16) | vwv[9]; Printf("capabilities = 0x%08lx\n",capabilities); @@ -2601,8 +2601,8 @@ print_smb_contents(const struct smb_header * header,int command,enum smb_packet_ if(file_attributes & 0x0020) Printf("\t SMB_FILE_ATTRIBUTE_ARCHIVE\n"); - Printf("\tlast write time = %ld\n",next_data_word(data,&offset)); - Printf("\tlast write date = %ld\n",next_data_word(data,&offset)); + Printf("\tlast write time = 0x%04lx\n",next_data_word(data,&offset)); + Printf("\tlast write date = 0x%04lx\n",next_data_word(data,&offset)); Printf("\tfile size = %lu\n",next_data_dword(data,&offset)); file_name = (const char *)next_data_bytes(data,13,&offset); @@ -3240,28 +3240,28 @@ print_smb_header(const struct smb_header * header,int header_length,const unsign static const struct error_label_entry dos_errors[] = { { 0, "not specified" }, - { errdos_badfunc, "badfunc" }, - { errdos_badfile, "badfile" }, - { errdos_badpath, "badpath" }, - { errdos_nofids, "nofids" }, - { errdos_noaccess, "noaccess" }, - { errdos_badfid, "badfid" }, - { errdos_badmcb, "badmcb" }, - { errdos_nomem, "nomem" }, - { errdos_badmem, "badmem" }, - { errdos_badenv, "badenv" }, - { errdos_badformat, "badformat" }, - { errdos_badaccess, "badaccess" }, - { errdos_baddata, "baddata" }, - { errdos_baddrive, "baddrive" }, - { errdos_remcd, "remcd" }, - { errdos_diffdevice, "diffdevice" }, - { errdos_nofiles, "nofiles" }, - { errdos_badshare, "badshare" }, + { errdos_badfunc, "bad func" }, + { errdos_badfile, "bad file" }, + { errdos_badpath, "bad path" }, + { errdos_nofids, "no fids" }, + { errdos_noaccess, "no access" }, + { errdos_badfid, "bad fid" }, + { errdos_badmcb, "bad mcb" }, + { errdos_nomem, "no mem" }, + { errdos_badmem, "bad mem" }, + { errdos_badenv, "bad env" }, + { errdos_badformat, "bad format" }, + { errdos_badaccess, "bad access" }, + { errdos_baddata, "bad data" }, + { errdos_baddrive, "bad drive" }, + { errdos_remcd, "rem cd" }, + { errdos_diffdevice, "diff device" }, + { errdos_nofiles, "no files" }, + { errdos_badshare, "bad share" }, { errdos_lock, "lock" }, - { errdos_filexists, "filexists" }, + { errdos_filexists, "file exists" }, { errdos_quota, "quota" }, - { errdos_notALink, "notALink" }, + { errdos_notALink, "not a link" }, { -1, NULL } }; @@ -3269,65 +3269,65 @@ print_smb_header(const struct smb_header * header,int header_length,const unsign { { 0, "not specified" }, { errsrv_error, "error" }, - { errsrv_badpw, "badpw" }, + { errsrv_badpw, "bad pw" }, { errsrv_access, "access" }, - { errsrv_invtid, "invtid" }, - { errsrv_invnetname, "invnetname" }, - { errsrv_invdevice, "invdevice" }, - { errsrv_qfull, "qfull" }, - { errsrv_qtoobig, "qtoobig" }, - { errsrv_qeof, "qeof" }, - { errsrv_invpfid, "invpfid" }, - { errsrv_smbcmd, "smbcmd" }, - { errsrv_srverror, "srverror" }, - { errsrv_badBID, "badBID" }, - { errsrv_filespecs, "filespecs" }, - { errsrv_badLink, "badLink" }, - { errsrv_badpermits, "badpermits" }, - { errsrv_badPID, "badPID" }, - { errsrv_setattrmode, "setattrmode" }, + { errsrv_invtid, "inv tid" }, + { errsrv_invnetname, "inv net name" }, + { errsrv_invdevice, "inv device" }, + { errsrv_qfull, "q full" }, + { errsrv_qtoobig, "q toobig" }, + { errsrv_qeof, "q eof" }, + { errsrv_invpfid, "inv pfid" }, + { errsrv_smbcmd, "smb cmd" }, + { errsrv_srverror, "srv error" }, + { errsrv_badBID, "bad BID" }, + { errsrv_filespecs, "file specs" }, + { errsrv_badLink, "bad link" }, + { errsrv_badpermits, "bad permits" }, + { errsrv_badPID, "bad PID" }, + { errsrv_setattrmode, "setattr mode" }, { errsrv_paused, "paused" }, - { errsrv_msgoff, "msgoff" }, - { errsrv_noroom, "noroom" }, + { errsrv_msgoff, "msg off" }, + { errsrv_noroom, "no room" }, { errsrv_rmuns, "rmuns" }, { errsrv_timeout, "timeout" }, - { errsrv_noresource, "noresource" }, - { errsrv_toomanyuids, "toomanyuids" }, - { errsrv_baduid, "baduid" }, - { errsrv_usempx, "usempx" }, - { errsrv_usestd, "usestd" }, - { errsrv_contmpx, "contmpx" }, - { errsrv_badPassword, "badPassword" }, - { errsrv_notifyEnumDir, "notifyEnumDir" }, - { errsrv_accountExpired, "accountExpired" }, - { errsrv_badClient, "badClient" }, - { errsrv_badLogonTime, "badLogonTime" }, - { errsrv_passwordExpired, "passwordExpired" }, - { errsrv_nosupport, "nosupport" }, + { errsrv_noresource, "no resource" }, + { errsrv_toomanyuids, "too many uids" }, + { errsrv_baduid, "bad uid" }, + { errsrv_usempx, "use mpx" }, + { errsrv_usestd, "use std" }, + { errsrv_contmpx, "cont mpx" }, + { errsrv_badPassword, "ba DPassword" }, + { errsrv_notifyEnumDir, "notify enum dir" }, + { errsrv_accountExpired, "account expired" }, + { errsrv_badClient, "bad client" }, + { errsrv_badLogonTime, "bad logon time" }, + { errsrv_passwordExpired, "password expired" }, + { errsrv_nosupport, "no support" }, { -1, NULL } }; static const struct error_label_entry hardware_errors[] = { { 0, "not specified" }, - { errhrd_nowrite, "nowrite" }, - { errhrd_badunit, "badunit" }, - { errhrd_notready, "notready" }, - { errhrd_badcmd, "badcmd" }, + { errhrd_nowrite, "no write" }, + { errhrd_badunit, "bad unit" }, + { errhrd_notready, "not ready" }, + { errhrd_badcmd, "bad cmd" }, { errhrd_data, "data" }, - { errhrd_badreq, "badreq" }, + { errhrd_badreq, "bad req" }, { errhrd_seek, "seek" }, - { errhrd_badmedia, "badmedia" }, - { errhrd_badsector, "badsector" }, - { errhrd_nopaper, "nopaper" }, + { errhrd_badmedia, "bad media" }, + { errhrd_badsector, "bad sector" }, + { errhrd_nopaper, "no paper" }, { errhrd_write, "write" }, { errhrd_read, "read" }, { errhrd_general, "general" }, - { errhrd_badshare, "badshare" }, + { errhrd_badshare, "bad share" }, { errhrd_lock, "lock" }, - { errhrd_wrongdisk, "wrongdisk" }, - { errhrd_FCBUnavail, "FCBUnavail" }, - { errhrd_sharebufexc, "sharebufexc" }, + { errhrd_wrongdisk, "wrong disk" }, + { errhrd_FCBUnavail, "FCB unavail" }, + { errhrd_sharebufexc, "share buf exc" }, { -1, NULL } }; @@ -3335,507 +3335,507 @@ print_smb_header(const struct smb_header * header,int header_length,const unsign { { 0, "not specified" }, { nt_status_unsuccessful, "unsuccessful" }, - { nt_status_not_implemented, "not_implemented" }, - { nt_status_invalid_info_class, "invalid_info_class" }, - { nt_status_info_length_mismatch, "info_length_mismatch" }, - { nt_status_access_violation, "access_violation" }, - { nt_status_in_page_error, "in_page_error" }, - { nt_status_pagefile_quota, "pagefile_quota" }, - { nt_status_invalid_handle, "invalid_handle" }, - { nt_status_bad_initial_stack, "bad_initial_stack" }, - { nt_status_bad_initial_pc, "bad_initial_pc" }, - { nt_status_invalid_cid, "invalid_cid" }, - { nt_status_timer_not_canceled, "timer_not_canceled" }, - { nt_status_invalid_parameter, "invalid_parameter" }, - { nt_status_no_such_device, "no_such_device" }, - { nt_status_no_such_file, "no_such_file" }, - { nt_status_invalid_device_request, "invalid_device_request" }, - { nt_status_end_of_file, "end_of_file" }, - { nt_status_wrong_volume, "wrong_volume" }, - { nt_status_no_media_in_device, "no_media_in_device" }, - { nt_status_unrecognized_media, "unrecognized_media" }, - { nt_status_nonexistent_sector, "nonexistent_sector" }, - { nt_status_more_processing_required, "more_processing_required" }, - { nt_status_no_memory, "no_memory" }, - { nt_status_conflicting_addresses, "conflicting_addresses" }, - { nt_status_not_mapped_view, "not_mapped_view" }, - { nt_status_unable_to_free_vm, "unable_to_free_vm" }, - { nt_status_unable_to_delete_section, "unable_to_delete_section" }, - { nt_status_invalid_system_service, "invalid_system_service" }, - { nt_status_illegal_instruction, "illegal_instruction" }, - { nt_status_invalid_lock_sequence, "invalid_lock_sequence" }, - { nt_status_invalid_view_size, "invalid_view_size" }, - { nt_status_invalid_file_for_section, "invalid_file_for_section" }, - { nt_status_already_committed, "already_committed" }, - { nt_status_access_denied, "access_denied" }, - { nt_status_buffer_too_small, "buffer_too_small" }, - { nt_status_object_type_mismatch, "object_type_mismatch" }, - { nt_status_noncontinuable_exception, "noncontinuable_exception" }, - { nt_status_invalid_disposition, "invalid_disposition" }, + { nt_status_not_implemented, "not implemented" }, + { nt_status_invalid_info_class, "invalid info class" }, + { nt_status_info_length_mismatch, "info length mismatch" }, + { nt_status_access_violation, "access violation" }, + { nt_status_in_page_error, "in page error" }, + { nt_status_pagefile_quota, "pagefile quota" }, + { nt_status_invalid_handle, "invalid handle" }, + { nt_status_bad_initial_stack, "bad initial stack" }, + { nt_status_bad_initial_pc, "bad initial pc" }, + { nt_status_invalid_cid, "invalid cid" }, + { nt_status_timer_not_canceled, "timer not canceled" }, + { nt_status_invalid_parameter, "invalid parameter" }, + { nt_status_no_such_device, "no such device" }, + { nt_status_no_such_file, "no such file" }, + { nt_status_invalid_device_request, "invalid device request" }, + { nt_status_end_of_file, "end of file" }, + { nt_status_wrong_volume, "wrong volume" }, + { nt_status_no_media_in_device, "no media in device" }, + { nt_status_unrecognized_media, "unrecognized media" }, + { nt_status_nonexistent_sector, "nonexistent sector" }, + { nt_status_more_processing_required, "more processing required" }, + { nt_status_no_memory, "no memory" }, + { nt_status_conflicting_addresses, "conflicting addresses" }, + { nt_status_not_mapped_view, "not mapped view" }, + { nt_status_unable_to_free_vm, "unable to free vm" }, + { nt_status_unable_to_delete_section, "unable to delete section" }, + { nt_status_invalid_system_service, "invalid system service" }, + { nt_status_illegal_instruction, "illegal instruction" }, + { nt_status_invalid_lock_sequence, "invalid lock sequence" }, + { nt_status_invalid_view_size, "invalid view size" }, + { nt_status_invalid_file_for_section, "invalid file for section" }, + { nt_status_already_committed, "already committed" }, + { nt_status_access_denied, "access denied" }, + { nt_status_buffer_too_small, "buffer too small" }, + { nt_status_object_type_mismatch, "object type mismatch" }, + { nt_status_noncontinuable_exception, "noncontinuable exception" }, + { nt_status_invalid_disposition, "invalid disposition" }, { nt_status_unwind, "unwind" }, - { nt_status_bad_stack, "bad_stack" }, - { nt_status_invalid_unwind_target, "invalid_unwind_target" }, - { nt_status_not_locked, "not_locked" }, - { nt_status_parity_error, "parity_error" }, - { nt_status_unable_to_decommit_vm, "unable_to_decommit_vm" }, - { nt_status_not_committed, "not_committed" }, - { nt_status_invalid_port_attributes, "invalid_port_attributes" }, - { nt_status_port_message_too_long, "port_message_too_long" }, - { nt_status_invalid_parameter_mix, "invalid_parameter_mix" }, - { nt_status_invalid_quota_lower, "invalid_quota_lower" }, - { nt_status_disk_corrupt_error, "disk_corrupt_error" }, - { nt_status_object_name_invalid, "object_name_invalid" }, - { nt_status_object_name_not_found, "object_name_not_found" }, - { nt_status_object_name_collision, "object_name_collision" }, - { nt_status_handle_not_waitable, "handle_not_waitable" }, - { nt_status_port_disconnected, "port_disconnected" }, - { nt_status_device_already_attached, "device_already_attached" }, - { nt_status_object_path_invalid, "object_path_invalid" }, - { nt_status_object_path_not_found, "object_path_not_found" }, - { nt_status_object_path_syntax_bad, "object_path_syntax_bad" }, - { nt_status_data_overrun, "data_overrun" }, - { nt_status_data_late_error, "data_late_error" }, - { nt_status_data_error, "data_error" }, - { nt_status_crc_error, "crc_error" }, - { nt_status_section_too_big, "section_too_big" }, - { nt_status_port_connection_refused, "port_connection_refused" }, - { nt_status_invalid_port_handle, "invalid_port_handle" }, - { nt_status_sharing_violation, "sharing_violation" }, - { nt_status_quota_exceeded, "quota_exceeded" }, - { nt_status_invalid_page_protection, "invalid_page_protection" }, - { nt_status_mutant_not_owned, "mutant_not_owned" }, - { nt_status_semaphore_limit_exceeded, "semaphore_limit_exceeded" }, - { nt_status_port_already_set, "port_already_set" }, - { nt_status_section_not_image, "section_not_image" }, - { nt_status_suspend_count_exceeded, "suspend_count_exceeded" }, - { nt_status_thread_is_terminating, "thread_is_terminating" }, - { nt_status_bad_working_set_limit, "bad_working_set_limit" }, - { nt_status_incompatible_file_map, "incompatible_file_map" }, - { nt_status_section_protection, "section_protection" }, - { nt_status_eas_not_supported, "eas_not_supported" }, - { nt_status_ea_too_large, "ea_too_large" }, - { nt_status_nonexistent_ea_entry, "nonexistent_ea_entry" }, - { nt_status_no_eas_on_file, "no_eas_on_file" }, - { nt_status_ea_corrupt_error, "ea_corrupt_error" }, - { nt_status_file_lock_conflict, "file_lock_conflict" }, - { nt_status_lock_not_granted, "lock_not_granted" }, - { nt_status_delete_pending, "delete_pending" }, - { nt_status_ctl_file_not_supported, "ctl_file_not_supported" }, - { nt_status_unknown_revision, "unknown_revision" }, - { nt_status_revision_mismatch, "revision_mismatch" }, - { nt_status_invalid_owner, "invalid_owner" }, - { nt_status_invalid_primary_group, "invalid_primary_group" }, - { nt_status_no_impersonation_token, "no_impersonation_token" }, - { nt_status_cant_disable_mandatory, "cant_disable_mandatory" }, - { nt_status_no_logon_servers, "no_logon_servers" }, - { nt_status_no_such_logon_session, "no_such_logon_session" }, - { nt_status_no_such_privilege, "no_such_privilege" }, - { nt_status_privilege_not_held, "privilege_not_held" }, - { nt_status_invalid_account_name, "invalid_account_name" }, - { nt_status_user_exists, "user_exists" }, - { nt_status_no_such_user, "no_such_user" }, - { nt_status_group_exists, "group_exists" }, - { nt_status_no_such_group, "no_such_group" }, - { nt_status_member_in_group, "member_in_group" }, - { nt_status_member_not_in_group, "member_not_in_group" }, - { nt_status_last_admin, "last_admin" }, - { nt_status_wrong_password, "wrong_password" }, - { nt_status_ill_formed_password, "ill_formed_password" }, - { nt_status_password_restriction, "password_restriction" }, - { nt_status_logon_failure, "logon_failure" }, - { nt_status_account_restriction, "account_restriction" }, - { nt_status_invalid_logon_hours, "invalid_logon_hours" }, - { nt_status_invalid_workstation, "invalid_workstation" }, - { nt_status_password_expired, "password_expired" }, - { nt_status_account_disabled, "account_disabled" }, - { nt_status_none_mapped, "none_mapped" }, - { nt_status_too_many_luids_requested, "too_many_luids_requested" }, - { nt_status_luids_exhausted, "luids_exhausted" }, - { nt_status_invalid_sub_authority, "invalid_sub_authority" }, - { nt_status_invalid_acl, "invalid_acl" }, - { nt_status_invalid_sid, "invalid_sid" }, - { nt_status_invalid_security_descr, "invalid_security_descr" }, - { nt_status_procedure_not_found, "procedure_not_found" }, - { nt_status_invalid_image_format, "invalid_image_format" }, - { nt_status_no_token, "no_token" }, - { nt_status_bad_inheritance_acl, "bad_inheritance_acl" }, - { nt_status_range_not_locked, "range_not_locked" }, - { nt_status_disk_full, "disk_full" }, - { nt_status_server_disabled, "server_disabled" }, - { nt_status_server_not_disabled, "server_not_disabled" }, - { nt_status_too_many_guids_requested, "too_many_guids_requested" }, - { nt_status_guids_exhausted, "guids_exhausted" }, - { nt_status_invalid_id_authority, "invalid_id_authority" }, - { nt_status_agents_exhausted, "agents_exhausted" }, - { nt_status_invalid_volume_label, "invalid_volume_label" }, - { nt_status_section_not_extended, "section_not_extended" }, - { nt_status_not_mapped_data, "not_mapped_data" }, - { nt_status_resource_data_not_found, "resource_data_not_found" }, - { nt_status_resource_type_not_found, "resource_type_not_found" }, - { nt_status_resource_name_not_found, "resource_name_not_found" }, - { nt_status_array_bounds_exceeded, "array_bounds_exceeded" }, - { nt_status_float_denormal_operand, "float_denormal_operand" }, - { nt_status_float_divide_by_zero, "float_divide_by_zero" }, - { nt_status_float_inexact_result, "float_inexact_result" }, - { nt_status_float_invalid_operation, "float_invalid_operation" }, - { nt_status_float_overflow, "float_overflow" }, - { nt_status_float_stack_check, "float_stack_check" }, - { nt_status_float_underflow, "float_underflow" }, - { nt_status_integer_divide_by_zero, "integer_divide_by_zero" }, - { nt_status_integer_overflow, "integer_overflow" }, - { nt_status_privileged_instruction, "privileged_instruction" }, - { nt_status_too_many_paging_files, "too_many_paging_files" }, - { nt_status_file_invalid, "file_invalid" }, - { nt_status_allotted_space_exceeded, "allotted_space_exceeded" }, - { nt_status_insufficient_resources, "insufficient_resources" }, - { nt_status_dfs_exit_path_found, "dfs_exit_path_found" }, - { nt_status_device_data_error, "device_data_error" }, - { nt_status_device_not_connected, "device_not_connected" }, - { nt_status_device_power_failure, "device_power_failure" }, - { nt_status_free_vm_not_at_base, "free_vm_not_at_base" }, - { nt_status_memory_not_allocated, "memory_not_allocated" }, - { nt_status_working_set_quota, "working_set_quota" }, - { nt_status_media_write_protected, "media_write_protected" }, - { nt_status_device_not_ready, "device_not_ready" }, - { nt_status_invalid_group_attributes, "invalid_group_attributes" }, - { nt_status_bad_impersonation_level, "bad_impersonation_level" }, - { nt_status_cant_open_anonymous, "cant_open_anonymous" }, - { nt_status_bad_validation_class, "bad_validation_class" }, - { nt_status_bad_token_type, "bad_token_type" }, - { nt_status_bad_master_boot_record, "bad_master_boot_record" }, - { nt_status_instruction_misalignment, "instruction_misalignment" }, - { nt_status_instance_not_available, "instance_not_available" }, - { nt_status_pipe_not_available, "pipe_not_available" }, - { nt_status_invalid_pipe_state, "invalid_pipe_state" }, - { nt_status_pipe_busy, "pipe_busy" }, - { nt_status_illegal_function, "illegal_function" }, - { nt_status_pipe_disconnected, "pipe_disconnected" }, - { nt_status_pipe_closing, "pipe_closing" }, - { nt_status_pipe_connected, "pipe_connected" }, - { nt_status_pipe_listening, "pipe_listening" }, - { nt_status_invalid_read_mode, "invalid_read_mode" }, - { nt_status_io_timeout, "io_timeout" }, - { nt_status_file_forced_closed, "file_forced_closed" }, - { nt_status_profiling_not_started, "profiling_not_started" }, - { nt_status_profiling_not_stopped, "profiling_not_stopped" }, - { nt_status_could_not_interpret, "could_not_interpret" }, - { nt_status_file_is_a_directory, "file_is_a_directory" }, - { nt_status_not_supported, "not_supported" }, - { nt_status_remote_not_listening, "remote_not_listening" }, - { nt_status_duplicate_name, "duplicate_name" }, - { nt_status_bad_network_path, "bad_network_path" }, - { nt_status_network_busy, "network_busy" }, - { nt_status_device_does_not_exist, "device_does_not_exist" }, - { nt_status_too_many_commands, "too_many_commands" }, - { nt_status_adapter_hardware_error, "adapter_hardware_error" }, - { nt_status_invalid_network_response, "invalid_network_response" }, - { nt_status_unexpected_network_error, "unexpected_network_error" }, - { nt_status_bad_remote_adapter, "bad_remote_adapter" }, - { nt_status_print_queue_full, "print_queue_full" }, - { nt_status_no_spool_space, "no_spool_space" }, - { nt_status_print_cancelled, "print_cancelled" }, - { nt_status_network_name_deleted, "network_name_deleted" }, - { nt_status_network_access_denied, "network_access_denied" }, - { nt_status_bad_device_type, "bad_device_type" }, - { nt_status_bad_network_name, "bad_network_name" }, - { nt_status_too_many_names, "too_many_names" }, - { nt_status_too_many_sessions, "too_many_sessions" }, - { nt_status_sharing_paused, "sharing_paused" }, - { nt_status_request_not_accepted, "request_not_accepted" }, - { nt_status_redirector_paused, "redirector_paused" }, - { nt_status_net_write_fault, "net_write_fault" }, - { nt_status_profiling_at_limit, "profiling_at_limit" }, - { nt_status_not_same_device, "not_same_device" }, - { nt_status_file_renamed, "file_renamed" }, - { nt_status_virtual_circuit_closed, "virtual_circuit_closed" }, - { nt_status_no_security_on_object, "no_security_on_object" }, - { nt_status_cant_wait, "cant_wait" }, - { nt_status_pipe_empty, "pipe_empty" }, - { nt_status_cant_access_domain_info, "cant_access_domain_info" }, - { nt_status_cant_terminate_self, "cant_terminate_self" }, - { nt_status_invalid_server_state, "invalid_server_state" }, - { nt_status_invalid_domain_state, "invalid_domain_state" }, - { nt_status_invalid_domain_role, "invalid_domain_role" }, - { nt_status_no_such_domain, "no_such_domain" }, - { nt_status_domain_exists, "domain_exists" }, - { nt_status_domain_limit_exceeded, "domain_limit_exceeded" }, - { nt_status_oplock_not_granted, "oplock_not_granted" }, - { nt_status_invalid_oplock_protocol, "invalid_oplock_protocol" }, - { nt_status_internal_db_corruption, "internal_db_corruption" }, - { nt_status_internal_error, "internal_error" }, - { nt_status_generic_not_mapped, "generic_not_mapped" }, - { nt_status_bad_descriptor_format, "bad_descriptor_format" }, - { nt_status_invalid_user_buffer, "invalid_user_buffer" }, - { nt_status_unexpected_io_error, "unexpected_io_error" }, - { nt_status_unexpected_mm_create_err, "unexpected_mm_create_err" }, - { nt_status_unexpected_mm_map_error, "unexpected_mm_map_error" }, - { nt_status_unexpected_mm_extend_err, "unexpected_mm_extend_err" }, - { nt_status_not_logon_process, "not_logon_process" }, - { nt_status_logon_session_exists, "logon_session_exists" }, - { nt_status_invalid_parameter_1, "invalid_parameter_1" }, - { nt_status_invalid_parameter_2, "invalid_parameter_2" }, - { nt_status_invalid_parameter_3, "invalid_parameter_3" }, - { nt_status_invalid_parameter_4, "invalid_parameter_4" }, - { nt_status_invalid_parameter_5, "invalid_parameter_5" }, - { nt_status_invalid_parameter_6, "invalid_parameter_6" }, - { nt_status_invalid_parameter_7, "invalid_parameter_7" }, - { nt_status_invalid_parameter_8, "invalid_parameter_8" }, - { nt_status_invalid_parameter_9, "invalid_parameter_9" }, - { nt_status_invalid_parameter_10, "invalid_parameter_10" }, - { nt_status_invalid_parameter_11, "invalid_parameter_11" }, - { nt_status_invalid_parameter_12, "invalid_parameter_12" }, - { nt_status_redirector_not_started, "redirector_not_started" }, - { nt_status_redirector_started, "redirector_started" }, - { nt_status_stack_overflow, "stack_overflow" }, - { nt_status_no_such_package, "no_such_package" }, - { nt_status_bad_function_table, "bad_function_table" }, - { nt_status_directory_not_empty, "directory_not_empty" }, - { nt_status_file_corrupt_error, "file_corrupt_error" }, - { nt_status_not_a_directory, "not_a_directory" }, - { nt_status_bad_logon_session_state, "bad_logon_session_state" }, - { nt_status_logon_session_collision, "logon_session_collision" }, - { nt_status_name_too_long, "name_too_long" }, - { nt_status_files_open, "files_open" }, - { nt_status_connection_in_use, "connection_in_use" }, - { nt_status_message_not_found, "message_not_found" }, - { nt_status_process_is_terminating, "process_is_terminating" }, - { nt_status_invalid_logon_type, "invalid_logon_type" }, - { nt_status_no_guid_translation, "no_guid_translation" }, - { nt_status_cannot_impersonate, "cannot_impersonate" }, - { nt_status_image_already_loaded, "image_already_loaded" }, - { nt_status_abios_not_present, "abios_not_present" }, - { nt_status_abios_lid_not_exist, "abios_lid_not_exist" }, - { nt_status_abios_lid_already_owned, "abios_lid_already_owned" }, - { nt_status_abios_not_lid_owner, "abios_not_lid_owner" }, - { nt_status_abios_invalid_command, "abios_invalid_command" }, - { nt_status_abios_invalid_lid, "abios_invalid_lid" }, - { nt_status_abios_selector_not_available, "abios_selector_not_available" }, - { nt_status_abios_invalid_selector, "abios_invalid_selector" }, - { nt_status_no_ldt, "no_ldt" }, - { nt_status_invalid_ldt_size, "invalid_ldt_size" }, - { nt_status_invalid_ldt_offset, "invalid_ldt_offset" }, - { nt_status_invalid_ldt_descriptor, "invalid_ldt_descriptor" }, - { nt_status_invalid_image_ne_format, "invalid_image_ne_format" }, - { nt_status_rxact_invalid_state, "rxact_invalid_state" }, - { nt_status_rxact_commit_failure, "rxact_commit_failure" }, - { nt_status_mapped_file_size_zero, "mapped_file_size_zero" }, - { nt_status_too_many_opened_files, "too_many_opened_files" }, + { nt_status_bad_stack, "bad stack" }, + { nt_status_invalid_unwind_target, "invalid unwind target" }, + { nt_status_not_locked, "not locked" }, + { nt_status_parity_error, "parity error" }, + { nt_status_unable_to_decommit_vm, "unable to decommit vm" }, + { nt_status_not_committed, "not committed" }, + { nt_status_invalid_port_attributes, "invalid port attributes" }, + { nt_status_port_message_too_long, "port message too long" }, + { nt_status_invalid_parameter_mix, "invalid parameter mix" }, + { nt_status_invalid_quota_lower, "invalid quota lower" }, + { nt_status_disk_corrupt_error, "disk corrupt error" }, + { nt_status_object_name_invalid, "object name invalid" }, + { nt_status_object_name_not_found, "object name not found" }, + { nt_status_object_name_collision, "object name collision" }, + { nt_status_handle_not_waitable, "handle not waitable" }, + { nt_status_port_disconnected, "port disconnected" }, + { nt_status_device_already_attached, "device already attached" }, + { nt_status_object_path_invalid, "object path invalid" }, + { nt_status_object_path_not_found, "object path not found" }, + { nt_status_object_path_syntax_bad, "object path syntax bad" }, + { nt_status_data_overrun, "data overrun" }, + { nt_status_data_late_error, "data late error" }, + { nt_status_data_error, "data error" }, + { nt_status_crc_error, "crc error" }, + { nt_status_section_too_big, "section too big" }, + { nt_status_port_connection_refused, "port connection refused" }, + { nt_status_invalid_port_handle, "invalid port handle" }, + { nt_status_sharing_violation, "sharing violation" }, + { nt_status_quota_exceeded, "quota exceeded" }, + { nt_status_invalid_page_protection, "invalid page protection" }, + { nt_status_mutant_not_owned, "mutant not owned" }, + { nt_status_semaphore_limit_exceeded, "semaphore limit exceeded" }, + { nt_status_port_already_set, "port already set" }, + { nt_status_section_not_image, "section not image" }, + { nt_status_suspend_count_exceeded, "suspend count exceeded" }, + { nt_status_thread_is_terminating, "thread is terminating" }, + { nt_status_bad_working_set_limit, "bad working set limit" }, + { nt_status_incompatible_file_map, "incompatible file map" }, + { nt_status_section_protection, "section protection" }, + { nt_status_eas_not_supported, "eas not supported" }, + { nt_status_ea_too_large, "ea too large" }, + { nt_status_nonexistent_ea_entry, "nonexistent ea entry" }, + { nt_status_no_eas_on_file, "no eas on file" }, + { nt_status_ea_corrupt_error, "ea corrupt error" }, + { nt_status_file_lock_conflict, "file lock conflict" }, + { nt_status_lock_not_granted, "lock not granted" }, + { nt_status_delete_pending, "delete pending" }, + { nt_status_ctl_file_not_supported, "ctl file not supported" }, + { nt_status_unknown_revision, "unknown revision" }, + { nt_status_revision_mismatch, "revision mismatch" }, + { nt_status_invalid_owner, "invalid owner" }, + { nt_status_invalid_primary_group, "invalid primary group" }, + { nt_status_no_impersonation_token, "no impersonation token" }, + { nt_status_cant_disable_mandatory, "cant disable mandatory" }, + { nt_status_no_logon_servers, "no logon servers" }, + { nt_status_no_such_logon_session, "no such logon session" }, + { nt_status_no_such_privilege, "no such privilege" }, + { nt_status_privilege_not_held, "privilege not held" }, + { nt_status_invalid_account_name, "invalid account name" }, + { nt_status_user_exists, "user exists" }, + { nt_status_no_such_user, "no such user" }, + { nt_status_group_exists, "group exists" }, + { nt_status_no_such_group, "no such group" }, + { nt_status_member_in_group, "member in group" }, + { nt_status_member_not_in_group, "member not in group" }, + { nt_status_last_admin, "last admin" }, + { nt_status_wrong_password, "wrong password" }, + { nt_status_ill_formed_password, "ill formed password" }, + { nt_status_password_restriction, "password restriction" }, + { nt_status_logon_failure, "logon failure" }, + { nt_status_account_restriction, "account restriction" }, + { nt_status_invalid_logon_hours, "invalid logon hours" }, + { nt_status_invalid_workstation, "invalid workstation" }, + { nt_status_password_expired, "password expired" }, + { nt_status_account_disabled, "account disabled" }, + { nt_status_none_mapped, "none mapped" }, + { nt_status_too_many_luids_requested, "too many luids requested" }, + { nt_status_luids_exhausted, "luids exhausted" }, + { nt_status_invalid_sub_authority, "invalid sub authority" }, + { nt_status_invalid_acl, "invalid acl" }, + { nt_status_invalid_sid, "invalid sid" }, + { nt_status_invalid_security_descr, "invalid security descr" }, + { nt_status_procedure_not_found, "procedure not found" }, + { nt_status_invalid_image_format, "invalid image format" }, + { nt_status_no_token, "no token" }, + { nt_status_bad_inheritance_acl, "bad inheritance acl" }, + { nt_status_range_not_locked, "range not locked" }, + { nt_status_disk_full, "disk full" }, + { nt_status_server_disabled, "server disabled" }, + { nt_status_server_not_disabled, "server not disabled" }, + { nt_status_too_many_guids_requested, "too many guids requested" }, + { nt_status_guids_exhausted, "guids exhausted" }, + { nt_status_invalid_id_authority, "invalid id authority" }, + { nt_status_agents_exhausted, "agents exhausted" }, + { nt_status_invalid_volume_label, "invalid volume label" }, + { nt_status_section_not_extended, "section not extended" }, + { nt_status_not_mapped_data, "not mapped data" }, + { nt_status_resource_data_not_found, "resource data not found" }, + { nt_status_resource_type_not_found, "resource type not found" }, + { nt_status_resource_name_not_found, "resource name not found" }, + { nt_status_array_bounds_exceeded, "array bounds exceeded" }, + { nt_status_float_denormal_operand, "float denormal operand" }, + { nt_status_float_divide_by_zero, "float divide by zero" }, + { nt_status_float_inexact_result, "float inexact result" }, + { nt_status_float_invalid_operation, "float invalid operation" }, + { nt_status_float_overflow, "float overflow" }, + { nt_status_float_stack_check, "float stack check" }, + { nt_status_float_underflow, "float underflow" }, + { nt_status_integer_divide_by_zero, "integer divide by zero" }, + { nt_status_integer_overflow, "integer overflow" }, + { nt_status_privileged_instruction, "privileged instruction" }, + { nt_status_too_many_paging_files, "too many paging files" }, + { nt_status_file_invalid, "file invalid" }, + { nt_status_allotted_space_exceeded, "allotted space exceeded" }, + { nt_status_insufficient_resources, "insufficient resources" }, + { nt_status_dfs_exit_path_found, "dfs exit path found" }, + { nt_status_device_data_error, "device data error" }, + { nt_status_device_not_connected, "device not connected" }, + { nt_status_device_power_failure, "device power failure" }, + { nt_status_free_vm_not_at_base, "free vm not at base" }, + { nt_status_memory_not_allocated, "memory not allocated" }, + { nt_status_working_set_quota, "working set quota" }, + { nt_status_media_write_protected, "media write protected" }, + { nt_status_device_not_ready, "device not ready" }, + { nt_status_invalid_group_attributes, "invalid group attributes" }, + { nt_status_bad_impersonation_level, "bad impersonation level" }, + { nt_status_cant_open_anonymous, "cant open anonymous" }, + { nt_status_bad_validation_class, "bad validation class" }, + { nt_status_bad_token_type, "bad token type" }, + { nt_status_bad_master_boot_record, "bad master boot record" }, + { nt_status_instruction_misalignment, "instruction misalignment" }, + { nt_status_instance_not_available, "instance not available" }, + { nt_status_pipe_not_available, "pipe not available" }, + { nt_status_invalid_pipe_state, "invalid pipe state" }, + { nt_status_pipe_busy, "pipe busy" }, + { nt_status_illegal_function, "illegal function" }, + { nt_status_pipe_disconnected, "pipe disconnected" }, + { nt_status_pipe_closing, "pipe closing" }, + { nt_status_pipe_connected, "pipe connected" }, + { nt_status_pipe_listening, "pipe listening" }, + { nt_status_invalid_read_mode, "invalid read mode" }, + { nt_status_io_timeout, "io timeout" }, + { nt_status_file_forced_closed, "file forced closed" }, + { nt_status_profiling_not_started, "profiling not started" }, + { nt_status_profiling_not_stopped, "profiling not stopped" }, + { nt_status_could_not_interpret, "could not interpret" }, + { nt_status_file_is_a_directory, "file is a directory" }, + { nt_status_not_supported, "not supported" }, + { nt_status_remote_not_listening, "remote not listening" }, + { nt_status_duplicate_name, "duplicate name" }, + { nt_status_bad_network_path, "bad network path" }, + { nt_status_network_busy, "network busy" }, + { nt_status_device_does_not_exist, "device does not exist" }, + { nt_status_too_many_commands, "too many commands" }, + { nt_status_adapter_hardware_error, "adapter hardware error" }, + { nt_status_invalid_network_response, "invalid network response" }, + { nt_status_unexpected_network_error, "unexpected network error" }, + { nt_status_bad_remote_adapter, "bad remote adapter" }, + { nt_status_print_queue_full, "print queue full" }, + { nt_status_no_spool_space, "no spool space" }, + { nt_status_print_cancelled, "print cancelled" }, + { nt_status_network_name_deleted, "network name deleted" }, + { nt_status_network_access_denied, "network access denied" }, + { nt_status_bad_device_type, "bad device type" }, + { nt_status_bad_network_name, "bad network name" }, + { nt_status_too_many_names, "too many names" }, + { nt_status_too_many_sessions, "too many sessions" }, + { nt_status_sharing_paused, "sharing paused" }, + { nt_status_request_not_accepted, "request not accepted" }, + { nt_status_redirector_paused, "redirector paused" }, + { nt_status_net_write_fault, "net write fault" }, + { nt_status_profiling_at_limit, "profiling at limit" }, + { nt_status_not_same_device, "not same device" }, + { nt_status_file_renamed, "file renamed" }, + { nt_status_virtual_circuit_closed, "virtual circuit closed" }, + { nt_status_no_security_on_object, "no security on object" }, + { nt_status_cant_wait, "cant wait" }, + { nt_status_pipe_empty, "pipe empty" }, + { nt_status_cant_access_domain_info, "cant access domain info" }, + { nt_status_cant_terminate_self, "cant terminate self" }, + { nt_status_invalid_server_state, "invalid server state" }, + { nt_status_invalid_domain_state, "invalid domain state" }, + { nt_status_invalid_domain_role, "invalid domain role" }, + { nt_status_no_such_domain, "no such domain" }, + { nt_status_domain_exists, "domain exists" }, + { nt_status_domain_limit_exceeded, "domain limit exceeded" }, + { nt_status_oplock_not_granted, "oplock not granted" }, + { nt_status_invalid_oplock_protocol, "invalid oplock protocol" }, + { nt_status_internal_db_corruption, "internal db corruption" }, + { nt_status_internal_error, "internal error" }, + { nt_status_generic_not_mapped, "generic not mapped" }, + { nt_status_bad_descriptor_format, "bad descriptor format" }, + { nt_status_invalid_user_buffer, "invalid user buffer" }, + { nt_status_unexpected_io_error, "unexpected io error" }, + { nt_status_unexpected_mm_create_err, "unexpected mm create err" }, + { nt_status_unexpected_mm_map_error, "unexpected mm map error" }, + { nt_status_unexpected_mm_extend_err, "unexpected mm extend err" }, + { nt_status_not_logon_process, "not logon process" }, + { nt_status_logon_session_exists, "logon session exists" }, + { nt_status_invalid_parameter_1, "invalid parameter 1" }, + { nt_status_invalid_parameter_2, "invalid parameter 2" }, + { nt_status_invalid_parameter_3, "invalid parameter 3" }, + { nt_status_invalid_parameter_4, "invalid parameter 4" }, + { nt_status_invalid_parameter_5, "invalid parameter 5" }, + { nt_status_invalid_parameter_6, "invalid parameter 6" }, + { nt_status_invalid_parameter_7, "invalid parameter 7" }, + { nt_status_invalid_parameter_8, "invalid parameter 8" }, + { nt_status_invalid_parameter_9, "invalid parameter 9" }, + { nt_status_invalid_parameter_10, "invalid parameter 10" }, + { nt_status_invalid_parameter_11, "invalid parameter 11" }, + { nt_status_invalid_parameter_12, "invalid parameter 12" }, + { nt_status_redirector_not_started, "redirector not started" }, + { nt_status_redirector_started, "redirector started" }, + { nt_status_stack_overflow, "stack overflow" }, + { nt_status_no_such_package, "no such package" }, + { nt_status_bad_function_table, "bad function table" }, + { nt_status_directory_not_empty, "directory not empty" }, + { nt_status_file_corrupt_error, "file corrupt error" }, + { nt_status_not_a_directory, "not a directory" }, + { nt_status_bad_logon_session_state, "bad logon session state" }, + { nt_status_logon_session_collision, "logon session collision" }, + { nt_status_name_too_long, "name too long" }, + { nt_status_files_open, "files open" }, + { nt_status_connection_in_use, "connection in use" }, + { nt_status_message_not_found, "message not found" }, + { nt_status_process_is_terminating, "process is terminating" }, + { nt_status_invalid_logon_type, "invalid logon type" }, + { nt_status_no_guid_translation, "no guid translation" }, + { nt_status_cannot_impersonate, "cannot impersonate" }, + { nt_status_image_already_loaded, "image already loaded" }, + { nt_status_abios_not_present, "abios not present" }, + { nt_status_abios_lid_not_exist, "abios lid not exist" }, + { nt_status_abios_lid_already_owned, "abios lid already owned" }, + { nt_status_abios_not_lid_owner, "abios not lid owner" }, + { nt_status_abios_invalid_command, "abios invalid command" }, + { nt_status_abios_invalid_lid, "abios invalid lid" }, + { nt_status_abios_selector_not_available, "abios selector not available" }, + { nt_status_abios_invalid_selector, "abios invalid selector" }, + { nt_status_no_ldt, "no ldt" }, + { nt_status_invalid_ldt_size, "invalid ldt size" }, + { nt_status_invalid_ldt_offset, "invalid ldt offset" }, + { nt_status_invalid_ldt_descriptor, "invalid ldt descriptor" }, + { nt_status_invalid_image_ne_format, "invalid image ne format" }, + { nt_status_rxact_invalid_state, "rxact invalid state" }, + { nt_status_rxact_commit_failure, "rxact commit failure" }, + { nt_status_mapped_file_size_zero, "mapped file size zero" }, + { nt_status_too_many_opened_files, "too many opened files" }, { nt_status_cancelled, "cancelled" }, - { nt_status_cannot_delete, "cannot_delete" }, - { nt_status_invalid_computer_name, "invalid_computer_name" }, - { nt_status_file_deleted, "file_deleted" }, - { nt_status_special_account, "special_account" }, - { nt_status_special_group, "special_group" }, - { nt_status_special_user, "special_user" }, - { nt_status_members_primary_group, "members_primary_group" }, - { nt_status_file_closed, "file_closed" }, - { nt_status_too_many_threads, "too_many_threads" }, - { nt_status_thread_not_in_process, "thread_not_in_process" }, - { nt_status_token_already_in_use, "token_already_in_use" }, - { nt_status_pagefile_quota_exceeded, "pagefile_quota_exceeded" }, - { nt_status_commitment_limit, "commitment_limit" }, - { nt_status_invalid_image_le_format, "invalid_image_le_format" }, - { nt_status_invalid_image_not_mz, "invalid_image_not_mz" }, - { nt_status_invalid_image_protect, "invalid_image_protect" }, - { nt_status_invalid_image_win_16, "invalid_image_win_16" }, - { nt_status_logon_server_conflict, "logon_server_conflict" }, - { nt_status_time_difference_at_dc, "time_difference_at_dc" }, - { nt_status_synchronization_required, "synchronization_required" }, - { nt_status_dll_not_found, "dll_not_found" }, - { nt_status_open_failed, "open_failed" }, - { nt_status_io_privilege_failed, "io_privilege_failed" }, - { nt_status_ordinal_not_found, "ordinal_not_found" }, - { nt_status_entrypoint_not_found, "entrypoint_not_found" }, - { nt_status_control_c_exit, "control_c_exit" }, - { nt_status_local_disconnect, "local_disconnect" }, - { nt_status_remote_disconnect, "remote_disconnect" }, - { nt_status_remote_resources, "remote_resources" }, - { nt_status_link_failed, "link_failed" }, - { nt_status_link_timeout, "link_timeout" }, - { nt_status_invalid_connection, "invalid_connection" }, - { nt_status_invalid_address, "invalid_address" }, - { nt_status_dll_init_failed, "dll_init_failed" }, - { nt_status_missing_systemfile, "missing_systemfile" }, - { nt_status_unhandled_exception, "unhandled_exception" }, - { nt_status_app_init_failure, "app_init_failure" }, - { nt_status_pagefile_create_failed, "pagefile_create_failed" }, - { nt_status_no_pagefile, "no_pagefile" }, - { nt_status_invalid_level, "invalid_level" }, - { nt_status_wrong_password_core, "wrong_password_core" }, - { nt_status_illegal_float_context, "illegal_float_context" }, - { nt_status_pipe_broken, "pipe_broken" }, - { nt_status_registry_corrupt, "registry_corrupt" }, - { nt_status_registry_io_failed, "registry_io_failed" }, - { nt_status_no_event_pair, "no_event_pair" }, - { nt_status_unrecognized_volume, "unrecognized_volume" }, - { nt_status_serial_no_device_inited, "serial_no_device_inited" }, - { nt_status_no_such_alias, "no_such_alias" }, - { nt_status_member_not_in_alias, "member_not_in_alias" }, - { nt_status_member_in_alias, "member_in_alias" }, - { nt_status_alias_exists, "alias_exists" }, - { nt_status_logon_not_granted, "logon_not_granted" }, - { nt_status_too_many_secrets, "too_many_secrets" }, - { nt_status_secret_too_long, "secret_too_long" }, - { nt_status_internal_db_error, "internal_db_error" }, - { nt_status_fullscreen_mode, "fullscreen_mode" }, - { nt_status_too_many_context_ids, "too_many_context_ids" }, - { nt_status_logon_type_not_granted, "logon_type_not_granted" }, - { nt_status_not_registry_file, "not_registry_file" }, - { nt_status_nt_cross_encryption_required, "nt_cross_encryption_required" }, - { nt_status_domain_ctrlr_config_error, "domain_ctrlr_config_error" }, - { nt_status_ft_missing_member, "ft_missing_member" }, - { nt_status_ill_formed_service_entry, "ill_formed_service_entry" }, - { nt_status_illegal_character, "illegal_character" }, - { nt_status_unmappable_character, "unmappable_character" }, - { nt_status_undefined_character, "undefined_character" }, - { nt_status_floppy_volume, "floppy_volume" }, - { nt_status_floppy_id_mark_not_found, "floppy_id_mark_not_found" }, - { nt_status_floppy_wrong_cylinder, "floppy_wrong_cylinder" }, - { nt_status_floppy_unknown_error, "floppy_unknown_error" }, - { nt_status_floppy_bad_registers, "floppy_bad_registers" }, - { nt_status_disk_recalibrate_failed, "disk_recalibrate_failed" }, - { nt_status_disk_operation_failed, "disk_operation_failed" }, - { nt_status_disk_reset_failed, "disk_reset_failed" }, - { nt_status_shared_irq_busy, "shared_irq_busy" }, - { nt_status_ft_orphaning, "ft_orphaning" }, - { nt_status_partition_failure, "partition_failure" }, - { nt_status_invalid_block_length, "invalid_block_length" }, - { nt_status_device_not_partitioned, "device_not_partitioned" }, - { nt_status_unable_to_lock_media, "unable_to_lock_media" }, - { nt_status_unable_to_unload_media, "unable_to_unload_media" }, - { nt_status_eom_overflow, "eom_overflow" }, - { nt_status_no_media, "no_media" }, - { nt_status_no_such_member, "no_such_member" }, - { nt_status_invalid_member, "invalid_member" }, - { nt_status_key_deleted, "key_deleted" }, - { nt_status_no_log_space, "no_log_space" }, - { nt_status_too_many_sids, "too_many_sids" }, - { nt_status_lm_cross_encryption_required, "lm_cross_encryption_required" }, - { nt_status_key_has_children, "key_has_children" }, - { nt_status_child_must_be_volatile, "child_must_be_volatile" }, - { nt_status_device_configuration_error, "device_configuration_error" }, - { nt_status_driver_internal_error, "driver_internal_error" }, - { nt_status_invalid_device_state, "invalid_device_state" }, - { nt_status_io_device_error, "io_device_error" }, - { nt_status_device_protocol_error, "device_protocol_error" }, - { nt_status_backup_controller, "backup_controller" }, - { nt_status_log_file_full, "log_file_full" }, - { nt_status_too_late, "too_late" }, - { nt_status_no_trust_lsa_secret, "no_trust_lsa_secret" }, - { nt_status_no_trust_sam_account, "no_trust_sam_account" }, - { nt_status_trusted_domain_failure, "trusted_domain_failure" }, - { nt_status_trusted_relationship_failure, "trusted_relationship_failure" }, - { nt_status_eventlog_file_corrupt, "eventlog_file_corrupt" }, - { nt_status_eventlog_cant_start, "eventlog_cant_start" }, - { nt_status_trust_failure, "trust_failure" }, - { nt_status_mutant_limit_exceeded, "mutant_limit_exceeded" }, - { nt_status_netlogon_not_started, "netlogon_not_started" }, - { nt_status_account_expired, "account_expired" }, - { nt_status_possible_deadlock, "possible_deadlock" }, - { nt_status_network_credential_conflict, "network_credential_conflict" }, - { nt_status_remote_session_limit, "remote_session_limit" }, - { nt_status_eventlog_file_changed, "eventlog_file_changed" }, - { nt_status_nologon_interdomain_trust_account, "nologon_interdomain_trust_account" }, - { nt_status_nologon_workstation_trust_account, "nologon_workstation_trust_account" }, - { nt_status_nologon_server_trust_account, "nologon_server_trust_account" }, - { nt_status_domain_trust_inconsistent, "domain_trust_inconsistent" }, - { nt_status_fs_driver_required, "fs_driver_required" }, - { nt_status_no_user_session_key, "no_user_session_key" }, - { nt_status_user_session_deleted, "user_session_deleted" }, - { nt_status_resource_lang_not_found, "resource_lang_not_found" }, - { nt_status_insuff_server_resources, "insuff_server_resources" }, - { nt_status_invalid_buffer_size, "invalid_buffer_size" }, - { nt_status_invalid_address_component, "invalid_address_component" }, - { nt_status_invalid_address_wildcard, "invalid_address_wildcard" }, - { nt_status_too_many_addresses, "too_many_addresses" }, - { nt_status_address_already_exists, "address_already_exists" }, - { nt_status_address_closed, "address_closed" }, - { nt_status_connection_disconnected, "connection_disconnected" }, - { nt_status_connection_reset, "connection_reset" }, - { nt_status_too_many_nodes, "too_many_nodes" }, - { nt_status_transaction_aborted, "transaction_aborted" }, - { nt_status_transaction_timed_out, "transaction_timed_out" }, - { nt_status_transaction_no_release, "transaction_no_release" }, - { nt_status_transaction_no_match, "transaction_no_match" }, - { nt_status_transaction_responded, "transaction_responded" }, - { nt_status_transaction_invalid_id, "transaction_invalid_id" }, - { nt_status_transaction_invalid_type, "transaction_invalid_type" }, - { nt_status_not_server_session, "not_server_session" }, - { nt_status_not_client_session, "not_client_session" }, - { nt_status_cannot_load_registry_file, "cannot_load_registry_file" }, - { nt_status_debug_attach_failed, "debug_attach_failed" }, - { nt_status_system_process_terminated, "system_process_terminated" }, - { nt_status_data_not_accepted, "data_not_accepted" }, - { nt_status_no_browser_servers_found, "no_browser_servers_found" }, - { nt_status_vdm_hard_error, "vdm_hard_error" }, - { nt_status_driver_cancel_timeout, "driver_cancel_timeout" }, - { nt_status_reply_message_mismatch, "reply_message_mismatch" }, - { nt_status_mapped_alignment, "mapped_alignment" }, - { nt_status_image_checksum_mismatch, "image_checksum_mismatch" }, - { nt_status_lost_writebehind_data, "lost_writebehind_data" }, - { nt_status_client_server_parameters_invalid, "client_server_parameters_invalid" }, - { nt_status_password_must_change, "password_must_change" }, - { nt_status_not_found, "not_found" }, - { nt_status_not_tiny_stream, "not_tiny_stream" }, - { nt_status_recovery_failure, "recovery_failure" }, - { nt_status_stack_overflow_read, "stack_overflow_read" }, - { nt_status_fail_check, "fail_check" }, - { nt_status_duplicate_objectid, "duplicate_objectid" }, - { nt_status_objectid_exists, "objectid_exists" }, - { nt_status_convert_to_large, "convert_to_large" }, + { nt_status_cannot_delete, "cannot delete" }, + { nt_status_invalid_computer_name, "invalid computer name" }, + { nt_status_file_deleted, "file deleted" }, + { nt_status_special_account, "special account" }, + { nt_status_special_group, "special group" }, + { nt_status_special_user, "special user" }, + { nt_status_members_primary_group, "members primary group" }, + { nt_status_file_closed, "file closed" }, + { nt_status_too_many_threads, "too many threads" }, + { nt_status_thread_not_in_process, "thread not in process" }, + { nt_status_token_already_in_use, "token already in use" }, + { nt_status_pagefile_quota_exceeded, "pagefile quota exceeded" }, + { nt_status_commitment_limit, "commitment limit" }, + { nt_status_invalid_image_le_format, "invalid image le format" }, + { nt_status_invalid_image_not_mz, "invalid image not mz" }, + { nt_status_invalid_image_protect, "invalid image protect" }, + { nt_status_invalid_image_win_16, "invalid image win 16" }, + { nt_status_logon_server_conflict, "logon server conflict" }, + { nt_status_time_difference_at_dc, "time difference at dc" }, + { nt_status_synchronization_required, "synchronization required" }, + { nt_status_dll_not_found, "dll not found" }, + { nt_status_open_failed, "open failed" }, + { nt_status_io_privilege_failed, "io privilege failed" }, + { nt_status_ordinal_not_found, "ordinal not found" }, + { nt_status_entrypoint_not_found, "entrypoint not found" }, + { nt_status_control_c_exit, "control c exit" }, + { nt_status_local_disconnect, "local disconnect" }, + { nt_status_remote_disconnect, "remote disconnect" }, + { nt_status_remote_resources, "remote resources" }, + { nt_status_link_failed, "link failed" }, + { nt_status_link_timeout, "link timeout" }, + { nt_status_invalid_connection, "invalid connection" }, + { nt_status_invalid_address, "invalid address" }, + { nt_status_dll_init_failed, "dll init failed" }, + { nt_status_missing_systemfile, "missing systemfile" }, + { nt_status_unhandled_exception, "unhandled exception" }, + { nt_status_app_init_failure, "app init failure" }, + { nt_status_pagefile_create_failed, "pagefile create failed" }, + { nt_status_no_pagefile, "no pagefile" }, + { nt_status_invalid_level, "invalid level" }, + { nt_status_wrong_password_core, "wrong password core" }, + { nt_status_illegal_float_context, "illegal float context" }, + { nt_status_pipe_broken, "pipe broken" }, + { nt_status_registry_corrupt, "registry corrupt" }, + { nt_status_registry_io_failed, "registry io failed" }, + { nt_status_no_event_pair, "no event pair" }, + { nt_status_unrecognized_volume, "unrecognized volume" }, + { nt_status_serial_no_device_inited, "serial no device inited" }, + { nt_status_no_such_alias, "no such alias" }, + { nt_status_member_not_in_alias, "member not in alias" }, + { nt_status_member_in_alias, "member in alias" }, + { nt_status_alias_exists, "alias exists" }, + { nt_status_logon_not_granted, "logon not granted" }, + { nt_status_too_many_secrets, "too many secrets" }, + { nt_status_secret_too_long, "secret too long" }, + { nt_status_internal_db_error, "internal db error" }, + { nt_status_fullscreen_mode, "fullscreen mode" }, + { nt_status_too_many_context_ids, "too many context ids" }, + { nt_status_logon_type_not_granted, "logon type not granted" }, + { nt_status_not_registry_file, "not registry file" }, + { nt_status_nt_cross_encryption_required, "nt cross encryption required" }, + { nt_status_domain_ctrlr_config_error, "domain ctrlr config error" }, + { nt_status_ft_missing_member, "ft missing member" }, + { nt_status_ill_formed_service_entry, "ill formed service entry" }, + { nt_status_illegal_character, "illegal character" }, + { nt_status_unmappable_character, "unmappable character" }, + { nt_status_undefined_character, "undefined character" }, + { nt_status_floppy_volume, "floppy volume" }, + { nt_status_floppy_id_mark_not_found, "floppy id mark not found" }, + { nt_status_floppy_wrong_cylinder, "floppy wrong cylinder" }, + { nt_status_floppy_unknown_error, "floppy unknown error" }, + { nt_status_floppy_bad_registers, "floppy bad registers" }, + { nt_status_disk_recalibrate_failed, "disk recalibrate failed" }, + { nt_status_disk_operation_failed, "disk operation failed" }, + { nt_status_disk_reset_failed, "disk reset failed" }, + { nt_status_shared_irq_busy, "shared irq busy" }, + { nt_status_ft_orphaning, "ft orphaning" }, + { nt_status_partition_failure, "partition failure" }, + { nt_status_invalid_block_length, "invalid block length" }, + { nt_status_device_not_partitioned, "device not partitioned" }, + { nt_status_unable_to_lock_media, "unable to lock media" }, + { nt_status_unable_to_unload_media, "unable to unload media" }, + { nt_status_eom_overflow, "eom overflow" }, + { nt_status_no_media, "no media" }, + { nt_status_no_such_member, "no such member" }, + { nt_status_invalid_member, "invalid member" }, + { nt_status_key_deleted, "key deleted" }, + { nt_status_no_log_space, "no log space" }, + { nt_status_too_many_sids, "too many sids" }, + { nt_status_lm_cross_encryption_required, "lm cross encryption required" }, + { nt_status_key_has_children, "key has children" }, + { nt_status_child_must_be_volatile, "child must be volatile" }, + { nt_status_device_configuration_error, "device configuration error" }, + { nt_status_driver_internal_error, "driver internal error" }, + { nt_status_invalid_device_state, "invalid device state" }, + { nt_status_io_device_error, "io device error" }, + { nt_status_device_protocol_error, "device protocol error" }, + { nt_status_backup_controller, "backup controller" }, + { nt_status_log_file_full, "log file full" }, + { nt_status_too_late, "too late" }, + { nt_status_no_trust_lsa_secret, "no trust lsa secret" }, + { nt_status_no_trust_sam_account, "no trust sam account" }, + { nt_status_trusted_domain_failure, "trusted domain failure" }, + { nt_status_trusted_relationship_failure, "trusted relationship failure" }, + { nt_status_eventlog_file_corrupt, "eventlog file corrupt" }, + { nt_status_eventlog_cant_start, "eventlog cant start" }, + { nt_status_trust_failure, "trust failure" }, + { nt_status_mutant_limit_exceeded, "mutant limit exceeded" }, + { nt_status_netlogon_not_started, "netlogon not started" }, + { nt_status_account_expired, "account expired" }, + { nt_status_possible_deadlock, "possible deadlock" }, + { nt_status_network_credential_conflict, "network credential conflict" }, + { nt_status_remote_session_limit, "remote session limit" }, + { nt_status_eventlog_file_changed, "eventlog file changed" }, + { nt_status_nologon_interdomain_trust_account, "nologon interdomain trust account" }, + { nt_status_nologon_workstation_trust_account, "nologon workstation trust account" }, + { nt_status_nologon_server_trust_account, "nologon server trust account" }, + { nt_status_domain_trust_inconsistent, "domain trust inconsistent" }, + { nt_status_fs_driver_required, "fs driver required" }, + { nt_status_no_user_session_key, "no user session key" }, + { nt_status_user_session_deleted, "user session deleted" }, + { nt_status_resource_lang_not_found, "resource lang not found" }, + { nt_status_insuff_server_resources, "insuff server resources" }, + { nt_status_invalid_buffer_size, "invalid buffer size" }, + { nt_status_invalid_address_component, "invalid address component" }, + { nt_status_invalid_address_wildcard, "invalid address wildcard" }, + { nt_status_too_many_addresses, "too many addresses" }, + { nt_status_address_already_exists, "address already exists" }, + { nt_status_address_closed, "address closed" }, + { nt_status_connection_disconnected, "connection disconnected" }, + { nt_status_connection_reset, "connection reset" }, + { nt_status_too_many_nodes, "too many nodes" }, + { nt_status_transaction_aborted, "transaction aborted" }, + { nt_status_transaction_timed_out, "transaction timed out" }, + { nt_status_transaction_no_release, "transaction no release" }, + { nt_status_transaction_no_match, "transaction no match" }, + { nt_status_transaction_responded, "transaction responded" }, + { nt_status_transaction_invalid_id, "transaction invalid id" }, + { nt_status_transaction_invalid_type, "transaction invalid type" }, + { nt_status_not_server_session, "not server session" }, + { nt_status_not_client_session, "not client session" }, + { nt_status_cannot_load_registry_file, "cannot load registry file" }, + { nt_status_debug_attach_failed, "debug attach failed" }, + { nt_status_system_process_terminated, "system process terminated" }, + { nt_status_data_not_accepted, "data not accepted" }, + { nt_status_no_browser_servers_found, "no browser servers found" }, + { nt_status_vdm_hard_error, "vdm hard error" }, + { nt_status_driver_cancel_timeout, "driver cancel timeout" }, + { nt_status_reply_message_mismatch, "reply message mismatch" }, + { nt_status_mapped_alignment, "mapped alignment" }, + { nt_status_image_checksum_mismatch, "image checksum mismatch" }, + { nt_status_lost_writebehind_data, "lost writebehind data" }, + { nt_status_client_server_parameters_invalid, "client server parameters invalid" }, + { nt_status_password_must_change, "password must change" }, + { nt_status_not_found, "not found" }, + { nt_status_not_tiny_stream, "not tiny stream" }, + { nt_status_recovery_failure, "recovery failure" }, + { nt_status_stack_overflow_read, "stack overflow read" }, + { nt_status_fail_check, "fail check" }, + { nt_status_duplicate_objectid, "duplicate objectid" }, + { nt_status_objectid_exists, "objectid exists" }, + { nt_status_convert_to_large, "convert to large" }, { nt_status_retry, "retry" }, - { nt_status_found_out_of_scope, "found_out_of_scope" }, - { nt_status_allocate_bucket, "allocate_bucket" }, - { nt_status_propset_not_found, "propset_not_found" }, - { nt_status_marshall_overflow, "marshall_overflow" }, - { nt_status_invalid_variant, "invalid_variant" }, - { nt_status_domain_controller_not_found, "domain_controller_not_found" }, - { nt_status_account_locked_out, "account_locked_out" }, - { nt_status_handle_not_closable, "handle_not_closable" }, - { nt_status_connection_refused, "connection_refused" }, - { nt_status_graceful_disconnect, "graceful_disconnect" }, - { nt_status_address_already_associated, "address_already_associated" }, - { nt_status_address_not_associated, "address_not_associated" }, - { nt_status_connection_invalid, "connection_invalid" }, - { nt_status_connection_active, "connection_active" }, - { nt_status_network_unreachable, "network_unreachable" }, - { nt_status_host_unreachable, "host_unreachable" }, - { nt_status_protocol_unreachable, "protocol_unreachable" }, - { nt_status_port_unreachable, "port_unreachable" }, - { nt_status_request_aborted, "request_aborted" }, - { nt_status_connection_aborted, "connection_aborted" }, - { nt_status_bad_compression_buffer, "bad_compression_buffer" }, - { nt_status_user_mapped_file, "user_mapped_file" }, - { nt_status_audit_failed, "audit_failed" }, - { nt_status_timer_resolution_not_set, "timer_resolution_not_set" }, - { nt_status_connection_count_limit, "connection_count_limit" }, - { nt_status_login_time_restriction, "login_time_restriction" }, - { nt_status_login_wksta_restriction, "login_wksta_restriction" }, - { nt_status_image_mp_up_mismatch, "image_mp_up_mismatch" }, - { nt_status_insufficient_logon_info, "insufficient_logon_info" }, - { nt_status_bad_dll_entrypoint, "bad_dll_entrypoint" }, - { nt_status_bad_service_entrypoint, "bad_service_entrypoint" }, - { nt_status_lpc_reply_lost, "lpc_reply_lost" }, - { nt_status_ip_address_conflict1, "ip_address_conflict1" }, - { nt_status_ip_address_conflict2, "ip_address_conflict2" }, - { nt_status_registry_quota_limit, "registry_quota_limit" }, - { nt_status_path_not_covered, "path_not_covered" }, - { nt_status_no_callback_active, "no_callback_active" }, - { nt_status_license_quota_exceeded, "license_quota_exceeded" }, - { nt_status_pwd_too_short, "pwd_too_short" }, - { nt_status_pwd_too_recent, "pwd_too_recent" }, - { nt_status_pwd_history_conflict, "pwd_history_conflict" }, - { nt_status_plugplay_no_device, "plugplay_no_device" }, - { nt_status_unsupported_compression, "unsupported_compression" }, - { nt_status_invalid_hw_profile, "invalid_hw_profile" }, - { nt_status_invalid_plugplay_device_path, "invalid_plugplay_device_path" }, - { nt_status_driver_ordinal_not_found, "driver_ordinal_not_found" }, - { nt_status_driver_entrypoint_not_found, "driver_entrypoint_not_found" }, - { nt_status_resource_not_owned, "resource_not_owned" }, - { nt_status_too_many_links, "too_many_links" }, - { nt_status_quota_list_inconsistent, "quota_list_inconsistent" }, - { nt_status_file_is_offline, "file_is_offline" }, - //{ nt_status_notify_enum_dir, "notify_enum_dir" }, + { nt_status_found_out_of_scope, "found out of scope" }, + { nt_status_allocate_bucket, "allocate bucket" }, + { nt_status_propset_not_found, "propset not found" }, + { nt_status_marshall_overflow, "marshall overflow" }, + { nt_status_invalid_variant, "invalid variant" }, + { nt_status_domain_controller_not_found, "domain controller not found" }, + { nt_status_account_locked_out, "account locked out" }, + { nt_status_handle_not_closable, "handle not closable" }, + { nt_status_connection_refused, "connection refused" }, + { nt_status_graceful_disconnect, "graceful disconnect" }, + { nt_status_address_already_associated, "address already associated" }, + { nt_status_address_not_associated, "address not associated" }, + { nt_status_connection_invalid, "connection invalid" }, + { nt_status_connection_active, "connection active" }, + { nt_status_network_unreachable, "network unreachable" }, + { nt_status_host_unreachable, "host unreachable" }, + { nt_status_protocol_unreachable, "protocol unreachable" }, + { nt_status_port_unreachable, "port unreachable" }, + { nt_status_request_aborted, "request aborted" }, + { nt_status_connection_aborted, "connection aborted" }, + { nt_status_bad_compression_buffer, "bad compression buffer" }, + { nt_status_user_mapped_file, "user mapped file" }, + { nt_status_audit_failed, "audit failed" }, + { nt_status_timer_resolution_not_set, "timer resolution not set" }, + { nt_status_connection_count_limit, "connection count limit" }, + { nt_status_login_time_restriction, "login time restriction" }, + { nt_status_login_wksta_restriction, "login wksta restriction" }, + { nt_status_image_mp_up_mismatch, "image mp up mismatch" }, + { nt_status_insufficient_logon_info, "insufficient logon info" }, + { nt_status_bad_dll_entrypoint, "bad dll entrypoint" }, + { nt_status_bad_service_entrypoint, "bad service entrypoint" }, + { nt_status_lpc_reply_lost, "lpc reply lost" }, + { nt_status_ip_address_conflict1, "ip address conflict1" }, + { nt_status_ip_address_conflict2, "ip address conflict2" }, + { nt_status_registry_quota_limit, "registry quota limit" }, + { nt_status_path_not_covered, "path not covered" }, + { nt_status_no_callback_active, "no callback active" }, + { nt_status_license_quota_exceeded, "license quota exceeded" }, + { nt_status_pwd_too_short, "pwd too short" }, + { nt_status_pwd_too_recent, "pwd too recent" }, + { nt_status_pwd_history_conflict, "pwd history conflict" }, + { nt_status_plugplay_no_device, "plugplay no device" }, + { nt_status_unsupported_compression, "unsupported compression" }, + { nt_status_invalid_hw_profile, "invalid hw profile" }, + { nt_status_invalid_plugplay_device_path, "invalid plugplay device path" }, + { nt_status_driver_ordinal_not_found, "driver ordinal not found" }, + { nt_status_driver_entrypoint_not_found, "driver entrypoint not found" }, + { nt_status_resource_not_owned, "resource not owned" }, + { nt_status_too_many_links, "too many links" }, + { nt_status_quota_list_inconsistent, "quota list inconsistent" }, + { nt_status_file_is_offline, "file is offline" }, + //{ nt_status_notify_enum_dir, "notify enum dir" }, { -1, NULL } };