Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'v6.19-rc-part2-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6

Pull smb client fixes from Steve French:

- Fix incorrect error code defines

- Add missing error code definitions

- Add parenthesis around NT_STATUS code defines to fix checkpatch
warnings

- Remove some duplicated protocol definitions, moving to common code
shared by client and server

- Add missing protocol documentation reference (for change notify)

- Correct struct definition (for duplicate_extents_to_file_ex)

* tag 'v6.19-rc-part2-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6:
smb/client: remove DeviceType Flags and Device Characteristics definitions
smb: move File Attributes definitions into common/fscc.h
smb: update struct duplicate_extents_to_file_ex
smb: move file_notify_information to common/fscc.h
smb: move SMB2 Notify Action Flags into common/smb2pdu.h
smb: move notify completion filter flags into common/smb2pdu.h
smb/client: add parentheses to NT error code definitions containing bitwise OR operator
smb: add documentation references for smb2 change notify definitions
smb/client: add 4 NT error code definitions
smb/client: fix NT_STATUS_UNABLE_TO_FREE_VM value
smb/client: fix NT_STATUS_DEVICE_DOOR_OPEN value
smb/client: fix NT_STATUS_NO_DATA_DETECTED value

+581 -607
-65
fs/smb/client/cifspdu.h
··· 1357 1357 __u16 ByteCount; 1358 1358 /* __u8 Pad[3]; */ 1359 1359 } __packed TRANSACT_CHANGE_NOTIFY_RSP; 1360 - /* Completion Filter flags for Notify */ 1361 - #define FILE_NOTIFY_CHANGE_FILE_NAME 0x00000001 1362 - #define FILE_NOTIFY_CHANGE_DIR_NAME 0x00000002 1363 - #define FILE_NOTIFY_CHANGE_NAME 0x00000003 1364 - #define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x00000004 1365 - #define FILE_NOTIFY_CHANGE_SIZE 0x00000008 1366 - #define FILE_NOTIFY_CHANGE_LAST_WRITE 0x00000010 1367 - #define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x00000020 1368 - #define FILE_NOTIFY_CHANGE_CREATION 0x00000040 1369 - #define FILE_NOTIFY_CHANGE_EA 0x00000080 1370 - #define FILE_NOTIFY_CHANGE_SECURITY 0x00000100 1371 - #define FILE_NOTIFY_CHANGE_STREAM_NAME 0x00000200 1372 - #define FILE_NOTIFY_CHANGE_STREAM_SIZE 0x00000400 1373 - #define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800 1374 - 1375 - #define FILE_ACTION_ADDED 0x00000001 1376 - #define FILE_ACTION_REMOVED 0x00000002 1377 - #define FILE_ACTION_MODIFIED 0x00000003 1378 - #define FILE_ACTION_RENAMED_OLD_NAME 0x00000004 1379 - #define FILE_ACTION_RENAMED_NEW_NAME 0x00000005 1380 - #define FILE_ACTION_ADDED_STREAM 0x00000006 1381 - #define FILE_ACTION_REMOVED_STREAM 0x00000007 1382 - #define FILE_ACTION_MODIFIED_STREAM 0x00000008 1383 - 1384 - /* response contains array of the following structures */ 1385 - struct file_notify_information { 1386 - __le32 NextEntryOffset; 1387 - __le32 Action; 1388 - __le32 FileNameLength; 1389 - __u8 FileName[]; 1390 - } __packed; 1391 1360 1392 1361 struct cifs_quota_data { 1393 1362 __u32 rsrvd1; /* 0 */ ··· 2002 2033 2003 2034 2004 2035 #define CIFS_POSIX_EXTENSIONS 0x00000010 /* support for new QFSInfo */ 2005 - 2006 - /* DeviceType Flags */ 2007 - #define FILE_DEVICE_CD_ROM 0x00000002 2008 - #define FILE_DEVICE_CD_ROM_FILE_SYSTEM 0x00000003 2009 - #define FILE_DEVICE_DFS 0x00000006 2010 - #define FILE_DEVICE_DISK 0x00000007 2011 - #define FILE_DEVICE_DISK_FILE_SYSTEM 0x00000008 2012 - #define FILE_DEVICE_FILE_SYSTEM 0x00000009 2013 - #define FILE_DEVICE_NAMED_PIPE 0x00000011 2014 - #define FILE_DEVICE_NETWORK 0x00000012 2015 - #define FILE_DEVICE_NETWORK_FILE_SYSTEM 0x00000014 2016 - #define FILE_DEVICE_NULL 0x00000015 2017 - #define FILE_DEVICE_PARALLEL_PORT 0x00000016 2018 - #define FILE_DEVICE_PRINTER 0x00000018 2019 - #define FILE_DEVICE_SERIAL_PORT 0x0000001b 2020 - #define FILE_DEVICE_STREAMS 0x0000001e 2021 - #define FILE_DEVICE_TAPE 0x0000001f 2022 - #define FILE_DEVICE_TAPE_FILE_SYSTEM 0x00000020 2023 - #define FILE_DEVICE_VIRTUAL_DISK 0x00000024 2024 - #define FILE_DEVICE_NETWORK_REDIRECTOR 0x00000028 2025 - 2026 - /* Device Characteristics */ 2027 - #define FILE_REMOVABLE_MEDIA 0x00000001 2028 - #define FILE_READ_ONLY_DEVICE 0x00000002 2029 - #define FILE_FLOPPY_DISKETTE 0x00000004 2030 - #define FILE_WRITE_ONCE_MEDIA 0x00000008 2031 - #define FILE_REMOTE_DEVICE 0x00000010 2032 - #define FILE_DEVICE_IS_MOUNTED 0x00000020 2033 - #define FILE_VIRTUAL_VOLUME 0x00000040 2034 - #define FILE_DEVICE_SECURE_OPEN 0x00000100 2035 - #define FILE_CHARACTERISTIC_TS_DEVICE 0x00001000 2036 - #define FILE_CHARACTERISTIC_WEBDAV_DEVICE 0x00002000 2037 - #define FILE_PORTABLE_DEVICE 0x00004000 2038 - #define FILE_DEVICE_ALLOW_APPCONTAINER_TRAVERSAL 0x00020000 2039 2036 2040 2037 /******************************************************************************/ 2041 2038 /* QueryFileInfo/QueryPathinfo (also for SetPath/SetFile) data buffer formats */
+5
fs/smb/client/nterr.c
··· 13 13 14 14 const struct nt_err_code_struct nt_errs[] = { 15 15 {"NT_STATUS_OK", NT_STATUS_OK}, 16 + {"NT_STATUS_PENDING", NT_STATUS_PENDING}, 16 17 {"NT_STATUS_MEDIA_CHANGED", NT_STATUS_MEDIA_CHANGED}, 17 18 {"NT_STATUS_END_OF_MEDIA", NT_STATUS_END_OF_MEDIA}, 18 19 {"NT_STATUS_MEDIA_CHECK", NT_STATUS_MEDIA_CHECK}, ··· 545 544 {"NT_STATUS_DOMAIN_TRUST_INCONSISTENT", 546 545 NT_STATUS_DOMAIN_TRUST_INCONSISTENT}, 547 546 {"NT_STATUS_FS_DRIVER_REQUIRED", NT_STATUS_FS_DRIVER_REQUIRED}, 547 + {"NT_STATUS_INVALID_LOCK_RANGE", NT_STATUS_INVALID_LOCK_RANGE}, 548 548 {"NT_STATUS_NO_USER_SESSION_KEY", NT_STATUS_NO_USER_SESSION_KEY}, 549 549 {"NT_STATUS_USER_SESSION_DELETED", NT_STATUS_USER_SESSION_DELETED}, 550 550 {"NT_STATUS_RESOURCE_LANG_NOT_FOUND", ··· 677 675 NT_STATUS_QUOTA_LIST_INCONSISTENT}, 678 676 {"NT_STATUS_FILE_IS_OFFLINE", NT_STATUS_FILE_IS_OFFLINE}, 679 677 {"NT_STATUS_NOT_A_REPARSE_POINT", NT_STATUS_NOT_A_REPARSE_POINT}, 678 + {"NT_STATUS_NETWORK_SESSION_EXPIRED", NT_STATUS_NETWORK_SESSION_EXPIRED}, 680 679 {"NT_STATUS_NO_MORE_ENTRIES", NT_STATUS_NO_MORE_ENTRIES}, 681 680 {"NT_STATUS_MORE_ENTRIES", NT_STATUS_MORE_ENTRIES}, 682 681 {"NT_STATUS_SOME_UNMAPPED", NT_STATUS_SOME_UNMAPPED}, 683 682 {"NT_STATUS_NO_SUCH_JOB", NT_STATUS_NO_SUCH_JOB}, 683 + {"NT_STATUS_NO_PREAUTH_INTEGRITY_HASH_OVERLAP", 684 + NT_STATUS_NO_PREAUTH_INTEGRITY_HASH_OVERLAP}, 684 685 {NULL, 0} 685 686 };
+509 -505
fs/smb/client/nterr.h
··· 35 35 */ 36 36 37 37 #define NT_STATUS_OK 0x0000 38 + #define NT_STATUS_PENDING 0x0103 38 39 #define NT_STATUS_SOME_UNMAPPED 0x0107 39 40 #define NT_STATUS_BUFFER_OVERFLOW 0x80000005 40 41 #define NT_STATUS_NO_MORE_ENTRIES 0x8000001a 41 42 #define NT_STATUS_MEDIA_CHANGED 0x8000001c 42 43 #define NT_STATUS_END_OF_MEDIA 0x8000001e 43 44 #define NT_STATUS_MEDIA_CHECK 0x80000020 44 - #define NT_STATUS_NO_DATA_DETECTED 0x8000001c 45 + #define NT_STATUS_NO_DATA_DETECTED 0x80000022 45 46 #define NT_STATUS_STOPPED_ON_SYMLINK 0x8000002d 46 47 #define NT_STATUS_DEVICE_REQUIRES_CLEANING 0x80000288 47 - #define NT_STATUS_DEVICE_DOOR_OPEN 0x80000288 48 - #define NT_STATUS_UNSUCCESSFUL 0xC0000000 | 0x0001 49 - #define NT_STATUS_NOT_IMPLEMENTED 0xC0000000 | 0x0002 50 - #define NT_STATUS_INVALID_INFO_CLASS 0xC0000000 | 0x0003 51 - #define NT_STATUS_INFO_LENGTH_MISMATCH 0xC0000000 | 0x0004 52 - #define NT_STATUS_ACCESS_VIOLATION 0xC0000000 | 0x0005 53 - #define NT_STATUS_IN_PAGE_ERROR 0xC0000000 | 0x0006 54 - #define NT_STATUS_PAGEFILE_QUOTA 0xC0000000 | 0x0007 55 - #define NT_STATUS_INVALID_HANDLE 0xC0000000 | 0x0008 56 - #define NT_STATUS_BAD_INITIAL_STACK 0xC0000000 | 0x0009 57 - #define NT_STATUS_BAD_INITIAL_PC 0xC0000000 | 0x000a 58 - #define NT_STATUS_INVALID_CID 0xC0000000 | 0x000b 59 - #define NT_STATUS_TIMER_NOT_CANCELED 0xC0000000 | 0x000c 60 - #define NT_STATUS_INVALID_PARAMETER 0xC0000000 | 0x000d 61 - #define NT_STATUS_NO_SUCH_DEVICE 0xC0000000 | 0x000e 62 - #define NT_STATUS_NO_SUCH_FILE 0xC0000000 | 0x000f 63 - #define NT_STATUS_INVALID_DEVICE_REQUEST 0xC0000000 | 0x0010 64 - #define NT_STATUS_END_OF_FILE 0xC0000000 | 0x0011 65 - #define NT_STATUS_WRONG_VOLUME 0xC0000000 | 0x0012 66 - #define NT_STATUS_NO_MEDIA_IN_DEVICE 0xC0000000 | 0x0013 67 - #define NT_STATUS_UNRECOGNIZED_MEDIA 0xC0000000 | 0x0014 68 - #define NT_STATUS_NONEXISTENT_SECTOR 0xC0000000 | 0x0015 69 - #define NT_STATUS_MORE_PROCESSING_REQUIRED 0xC0000000 | 0x0016 70 - #define NT_STATUS_NO_MEMORY 0xC0000000 | 0x0017 71 - #define NT_STATUS_CONFLICTING_ADDRESSES 0xC0000000 | 0x0018 72 - #define NT_STATUS_NOT_MAPPED_VIEW 0xC0000000 | 0x0019 73 - #define NT_STATUS_UNABLE_TO_FREE_VM 0x80000000 | 0x001a 74 - #define NT_STATUS_UNABLE_TO_DELETE_SECTION 0xC0000000 | 0x001b 75 - #define NT_STATUS_INVALID_SYSTEM_SERVICE 0xC0000000 | 0x001c 76 - #define NT_STATUS_ILLEGAL_INSTRUCTION 0xC0000000 | 0x001d 77 - #define NT_STATUS_INVALID_LOCK_SEQUENCE 0xC0000000 | 0x001e 78 - #define NT_STATUS_INVALID_VIEW_SIZE 0xC0000000 | 0x001f 79 - #define NT_STATUS_INVALID_FILE_FOR_SECTION 0xC0000000 | 0x0020 80 - #define NT_STATUS_ALREADY_COMMITTED 0xC0000000 | 0x0021 81 - #define NT_STATUS_ACCESS_DENIED 0xC0000000 | 0x0022 82 - #define NT_STATUS_BUFFER_TOO_SMALL 0xC0000000 | 0x0023 83 - #define NT_STATUS_OBJECT_TYPE_MISMATCH 0xC0000000 | 0x0024 84 - #define NT_STATUS_NONCONTINUABLE_EXCEPTION 0xC0000000 | 0x0025 85 - #define NT_STATUS_INVALID_DISPOSITION 0xC0000000 | 0x0026 86 - #define NT_STATUS_UNWIND 0xC0000000 | 0x0027 87 - #define NT_STATUS_BAD_STACK 0xC0000000 | 0x0028 88 - #define NT_STATUS_INVALID_UNWIND_TARGET 0xC0000000 | 0x0029 89 - #define NT_STATUS_NOT_LOCKED 0xC0000000 | 0x002a 90 - #define NT_STATUS_PARITY_ERROR 0xC0000000 | 0x002b 91 - #define NT_STATUS_UNABLE_TO_DECOMMIT_VM 0xC0000000 | 0x002c 92 - #define NT_STATUS_NOT_COMMITTED 0xC0000000 | 0x002d 93 - #define NT_STATUS_INVALID_PORT_ATTRIBUTES 0xC0000000 | 0x002e 94 - #define NT_STATUS_PORT_MESSAGE_TOO_LONG 0xC0000000 | 0x002f 95 - #define NT_STATUS_INVALID_PARAMETER_MIX 0xC0000000 | 0x0030 96 - #define NT_STATUS_INVALID_QUOTA_LOWER 0xC0000000 | 0x0031 97 - #define NT_STATUS_DISK_CORRUPT_ERROR 0xC0000000 | 0x0032 98 - #define NT_STATUS_OBJECT_NAME_INVALID 0xC0000000 | 0x0033 99 - #define NT_STATUS_OBJECT_NAME_NOT_FOUND 0xC0000000 | 0x0034 100 - #define NT_STATUS_OBJECT_NAME_COLLISION 0xC0000000 | 0x0035 101 - #define NT_STATUS_HANDLE_NOT_WAITABLE 0xC0000000 | 0x0036 102 - #define NT_STATUS_PORT_DISCONNECTED 0xC0000000 | 0x0037 103 - #define NT_STATUS_DEVICE_ALREADY_ATTACHED 0xC0000000 | 0x0038 104 - #define NT_STATUS_OBJECT_PATH_INVALID 0xC0000000 | 0x0039 105 - #define NT_STATUS_OBJECT_PATH_NOT_FOUND 0xC0000000 | 0x003a 106 - #define NT_STATUS_OBJECT_PATH_SYNTAX_BAD 0xC0000000 | 0x003b 107 - #define NT_STATUS_DATA_OVERRUN 0xC0000000 | 0x003c 108 - #define NT_STATUS_DATA_LATE_ERROR 0xC0000000 | 0x003d 109 - #define NT_STATUS_DATA_ERROR 0xC0000000 | 0x003e 110 - #define NT_STATUS_CRC_ERROR 0xC0000000 | 0x003f 111 - #define NT_STATUS_SECTION_TOO_BIG 0xC0000000 | 0x0040 112 - #define NT_STATUS_PORT_CONNECTION_REFUSED 0xC0000000 | 0x0041 113 - #define NT_STATUS_INVALID_PORT_HANDLE 0xC0000000 | 0x0042 114 - #define NT_STATUS_SHARING_VIOLATION 0xC0000000 | 0x0043 115 - #define NT_STATUS_QUOTA_EXCEEDED 0xC0000000 | 0x0044 116 - #define NT_STATUS_INVALID_PAGE_PROTECTION 0xC0000000 | 0x0045 117 - #define NT_STATUS_MUTANT_NOT_OWNED 0xC0000000 | 0x0046 118 - #define NT_STATUS_SEMAPHORE_LIMIT_EXCEEDED 0xC0000000 | 0x0047 119 - #define NT_STATUS_PORT_ALREADY_SET 0xC0000000 | 0x0048 120 - #define NT_STATUS_SECTION_NOT_IMAGE 0xC0000000 | 0x0049 121 - #define NT_STATUS_SUSPEND_COUNT_EXCEEDED 0xC0000000 | 0x004a 122 - #define NT_STATUS_THREAD_IS_TERMINATING 0xC0000000 | 0x004b 123 - #define NT_STATUS_BAD_WORKING_SET_LIMIT 0xC0000000 | 0x004c 124 - #define NT_STATUS_INCOMPATIBLE_FILE_MAP 0xC0000000 | 0x004d 125 - #define NT_STATUS_SECTION_PROTECTION 0xC0000000 | 0x004e 126 - #define NT_STATUS_EAS_NOT_SUPPORTED 0xC0000000 | 0x004f 127 - #define NT_STATUS_EA_TOO_LARGE 0xC0000000 | 0x0050 128 - #define NT_STATUS_NONEXISTENT_EA_ENTRY 0xC0000000 | 0x0051 129 - #define NT_STATUS_NO_EAS_ON_FILE 0xC0000000 | 0x0052 130 - #define NT_STATUS_EA_CORRUPT_ERROR 0xC0000000 | 0x0053 131 - #define NT_STATUS_FILE_LOCK_CONFLICT 0xC0000000 | 0x0054 132 - #define NT_STATUS_LOCK_NOT_GRANTED 0xC0000000 | 0x0055 133 - #define NT_STATUS_DELETE_PENDING 0xC0000000 | 0x0056 134 - #define NT_STATUS_CTL_FILE_NOT_SUPPORTED 0xC0000000 | 0x0057 135 - #define NT_STATUS_UNKNOWN_REVISION 0xC0000000 | 0x0058 136 - #define NT_STATUS_REVISION_MISMATCH 0xC0000000 | 0x0059 137 - #define NT_STATUS_INVALID_OWNER 0xC0000000 | 0x005a 138 - #define NT_STATUS_INVALID_PRIMARY_GROUP 0xC0000000 | 0x005b 139 - #define NT_STATUS_NO_IMPERSONATION_TOKEN 0xC0000000 | 0x005c 140 - #define NT_STATUS_CANT_DISABLE_MANDATORY 0xC0000000 | 0x005d 141 - #define NT_STATUS_NO_LOGON_SERVERS 0xC0000000 | 0x005e 142 - #define NT_STATUS_NO_SUCH_LOGON_SESSION 0xC0000000 | 0x005f 143 - #define NT_STATUS_NO_SUCH_PRIVILEGE 0xC0000000 | 0x0060 144 - #define NT_STATUS_PRIVILEGE_NOT_HELD 0xC0000000 | 0x0061 145 - #define NT_STATUS_INVALID_ACCOUNT_NAME 0xC0000000 | 0x0062 146 - #define NT_STATUS_USER_EXISTS 0xC0000000 | 0x0063 147 - #define NT_STATUS_NO_SUCH_USER 0xC0000000 | 0x0064 148 - #define NT_STATUS_GROUP_EXISTS 0xC0000000 | 0x0065 149 - #define NT_STATUS_NO_SUCH_GROUP 0xC0000000 | 0x0066 150 - #define NT_STATUS_MEMBER_IN_GROUP 0xC0000000 | 0x0067 151 - #define NT_STATUS_MEMBER_NOT_IN_GROUP 0xC0000000 | 0x0068 152 - #define NT_STATUS_LAST_ADMIN 0xC0000000 | 0x0069 153 - #define NT_STATUS_WRONG_PASSWORD 0xC0000000 | 0x006a 154 - #define NT_STATUS_ILL_FORMED_PASSWORD 0xC0000000 | 0x006b 155 - #define NT_STATUS_PASSWORD_RESTRICTION 0xC0000000 | 0x006c 156 - #define NT_STATUS_LOGON_FAILURE 0xC0000000 | 0x006d 157 - #define NT_STATUS_ACCOUNT_RESTRICTION 0xC0000000 | 0x006e 158 - #define NT_STATUS_INVALID_LOGON_HOURS 0xC0000000 | 0x006f 159 - #define NT_STATUS_INVALID_WORKSTATION 0xC0000000 | 0x0070 160 - #define NT_STATUS_PASSWORD_EXPIRED 0xC0000000 | 0x0071 161 - #define NT_STATUS_ACCOUNT_DISABLED 0xC0000000 | 0x0072 162 - #define NT_STATUS_NONE_MAPPED 0xC0000000 | 0x0073 163 - #define NT_STATUS_TOO_MANY_LUIDS_REQUESTED 0xC0000000 | 0x0074 164 - #define NT_STATUS_LUIDS_EXHAUSTED 0xC0000000 | 0x0075 165 - #define NT_STATUS_INVALID_SUB_AUTHORITY 0xC0000000 | 0x0076 166 - #define NT_STATUS_INVALID_ACL 0xC0000000 | 0x0077 167 - #define NT_STATUS_INVALID_SID 0xC0000000 | 0x0078 168 - #define NT_STATUS_INVALID_SECURITY_DESCR 0xC0000000 | 0x0079 169 - #define NT_STATUS_PROCEDURE_NOT_FOUND 0xC0000000 | 0x007a 170 - #define NT_STATUS_INVALID_IMAGE_FORMAT 0xC0000000 | 0x007b 171 - #define NT_STATUS_NO_TOKEN 0xC0000000 | 0x007c 172 - #define NT_STATUS_BAD_INHERITANCE_ACL 0xC0000000 | 0x007d 173 - #define NT_STATUS_RANGE_NOT_LOCKED 0xC0000000 | 0x007e 174 - #define NT_STATUS_DISK_FULL 0xC0000000 | 0x007f 175 - #define NT_STATUS_SERVER_DISABLED 0xC0000000 | 0x0080 176 - #define NT_STATUS_SERVER_NOT_DISABLED 0xC0000000 | 0x0081 177 - #define NT_STATUS_TOO_MANY_GUIDS_REQUESTED 0xC0000000 | 0x0082 178 - #define NT_STATUS_GUIDS_EXHAUSTED 0xC0000000 | 0x0083 179 - #define NT_STATUS_INVALID_ID_AUTHORITY 0xC0000000 | 0x0084 180 - #define NT_STATUS_AGENTS_EXHAUSTED 0xC0000000 | 0x0085 181 - #define NT_STATUS_INVALID_VOLUME_LABEL 0xC0000000 | 0x0086 182 - #define NT_STATUS_SECTION_NOT_EXTENDED 0xC0000000 | 0x0087 183 - #define NT_STATUS_NOT_MAPPED_DATA 0xC0000000 | 0x0088 184 - #define NT_STATUS_RESOURCE_DATA_NOT_FOUND 0xC0000000 | 0x0089 185 - #define NT_STATUS_RESOURCE_TYPE_NOT_FOUND 0xC0000000 | 0x008a 186 - #define NT_STATUS_RESOURCE_NAME_NOT_FOUND 0xC0000000 | 0x008b 187 - #define NT_STATUS_ARRAY_BOUNDS_EXCEEDED 0xC0000000 | 0x008c 188 - #define NT_STATUS_FLOAT_DENORMAL_OPERAND 0xC0000000 | 0x008d 189 - #define NT_STATUS_FLOAT_DIVIDE_BY_ZERO 0xC0000000 | 0x008e 190 - #define NT_STATUS_FLOAT_INEXACT_RESULT 0xC0000000 | 0x008f 191 - #define NT_STATUS_FLOAT_INVALID_OPERATION 0xC0000000 | 0x0090 192 - #define NT_STATUS_FLOAT_OVERFLOW 0xC0000000 | 0x0091 193 - #define NT_STATUS_FLOAT_STACK_CHECK 0xC0000000 | 0x0092 194 - #define NT_STATUS_FLOAT_UNDERFLOW 0xC0000000 | 0x0093 195 - #define NT_STATUS_INTEGER_DIVIDE_BY_ZERO 0xC0000000 | 0x0094 196 - #define NT_STATUS_INTEGER_OVERFLOW 0xC0000000 | 0x0095 197 - #define NT_STATUS_PRIVILEGED_INSTRUCTION 0xC0000000 | 0x0096 198 - #define NT_STATUS_TOO_MANY_PAGING_FILES 0xC0000000 | 0x0097 199 - #define NT_STATUS_FILE_INVALID 0xC0000000 | 0x0098 200 - #define NT_STATUS_ALLOTTED_SPACE_EXCEEDED 0xC0000000 | 0x0099 201 - #define NT_STATUS_INSUFFICIENT_RESOURCES 0xC0000000 | 0x009a 202 - #define NT_STATUS_DFS_EXIT_PATH_FOUND 0xC0000000 | 0x009b 203 - #define NT_STATUS_DEVICE_DATA_ERROR 0xC0000000 | 0x009c 204 - #define NT_STATUS_DEVICE_NOT_CONNECTED 0xC0000000 | 0x009d 205 - #define NT_STATUS_DEVICE_POWER_FAILURE 0xC0000000 | 0x009e 206 - #define NT_STATUS_FREE_VM_NOT_AT_BASE 0xC0000000 | 0x009f 207 - #define NT_STATUS_MEMORY_NOT_ALLOCATED 0xC0000000 | 0x00a0 208 - #define NT_STATUS_WORKING_SET_QUOTA 0xC0000000 | 0x00a1 209 - #define NT_STATUS_MEDIA_WRITE_PROTECTED 0xC0000000 | 0x00a2 210 - #define NT_STATUS_DEVICE_NOT_READY 0xC0000000 | 0x00a3 211 - #define NT_STATUS_INVALID_GROUP_ATTRIBUTES 0xC0000000 | 0x00a4 212 - #define NT_STATUS_BAD_IMPERSONATION_LEVEL 0xC0000000 | 0x00a5 213 - #define NT_STATUS_CANT_OPEN_ANONYMOUS 0xC0000000 | 0x00a6 214 - #define NT_STATUS_BAD_VALIDATION_CLASS 0xC0000000 | 0x00a7 215 - #define NT_STATUS_BAD_TOKEN_TYPE 0xC0000000 | 0x00a8 216 - #define NT_STATUS_BAD_MASTER_BOOT_RECORD 0xC0000000 | 0x00a9 217 - #define NT_STATUS_INSTRUCTION_MISALIGNMENT 0xC0000000 | 0x00aa 218 - #define NT_STATUS_INSTANCE_NOT_AVAILABLE 0xC0000000 | 0x00ab 219 - #define NT_STATUS_PIPE_NOT_AVAILABLE 0xC0000000 | 0x00ac 220 - #define NT_STATUS_INVALID_PIPE_STATE 0xC0000000 | 0x00ad 221 - #define NT_STATUS_PIPE_BUSY 0xC0000000 | 0x00ae 222 - #define NT_STATUS_ILLEGAL_FUNCTION 0xC0000000 | 0x00af 223 - #define NT_STATUS_PIPE_DISCONNECTED 0xC0000000 | 0x00b0 224 - #define NT_STATUS_PIPE_CLOSING 0xC0000000 | 0x00b1 225 - #define NT_STATUS_PIPE_CONNECTED 0xC0000000 | 0x00b2 226 - #define NT_STATUS_PIPE_LISTENING 0xC0000000 | 0x00b3 227 - #define NT_STATUS_INVALID_READ_MODE 0xC0000000 | 0x00b4 228 - #define NT_STATUS_IO_TIMEOUT 0xC0000000 | 0x00b5 229 - #define NT_STATUS_FILE_FORCED_CLOSED 0xC0000000 | 0x00b6 230 - #define NT_STATUS_PROFILING_NOT_STARTED 0xC0000000 | 0x00b7 231 - #define NT_STATUS_PROFILING_NOT_STOPPED 0xC0000000 | 0x00b8 232 - #define NT_STATUS_COULD_NOT_INTERPRET 0xC0000000 | 0x00b9 233 - #define NT_STATUS_FILE_IS_A_DIRECTORY 0xC0000000 | 0x00ba 234 - #define NT_STATUS_NOT_SUPPORTED 0xC0000000 | 0x00bb 235 - #define NT_STATUS_REMOTE_NOT_LISTENING 0xC0000000 | 0x00bc 236 - #define NT_STATUS_DUPLICATE_NAME 0xC0000000 | 0x00bd 237 - #define NT_STATUS_BAD_NETWORK_PATH 0xC0000000 | 0x00be 238 - #define NT_STATUS_NETWORK_BUSY 0xC0000000 | 0x00bf 239 - #define NT_STATUS_DEVICE_DOES_NOT_EXIST 0xC0000000 | 0x00c0 240 - #define NT_STATUS_TOO_MANY_COMMANDS 0xC0000000 | 0x00c1 241 - #define NT_STATUS_ADAPTER_HARDWARE_ERROR 0xC0000000 | 0x00c2 242 - #define NT_STATUS_INVALID_NETWORK_RESPONSE 0xC0000000 | 0x00c3 243 - #define NT_STATUS_UNEXPECTED_NETWORK_ERROR 0xC0000000 | 0x00c4 244 - #define NT_STATUS_BAD_REMOTE_ADAPTER 0xC0000000 | 0x00c5 245 - #define NT_STATUS_PRINT_QUEUE_FULL 0xC0000000 | 0x00c6 246 - #define NT_STATUS_NO_SPOOL_SPACE 0xC0000000 | 0x00c7 247 - #define NT_STATUS_PRINT_CANCELLED 0xC0000000 | 0x00c8 248 - #define NT_STATUS_NETWORK_NAME_DELETED 0xC0000000 | 0x00c9 249 - #define NT_STATUS_NETWORK_ACCESS_DENIED 0xC0000000 | 0x00ca 250 - #define NT_STATUS_BAD_DEVICE_TYPE 0xC0000000 | 0x00cb 251 - #define NT_STATUS_BAD_NETWORK_NAME 0xC0000000 | 0x00cc 252 - #define NT_STATUS_TOO_MANY_NAMES 0xC0000000 | 0x00cd 253 - #define NT_STATUS_TOO_MANY_SESSIONS 0xC0000000 | 0x00ce 254 - #define NT_STATUS_SHARING_PAUSED 0xC0000000 | 0x00cf 255 - #define NT_STATUS_REQUEST_NOT_ACCEPTED 0xC0000000 | 0x00d0 256 - #define NT_STATUS_REDIRECTOR_PAUSED 0xC0000000 | 0x00d1 257 - #define NT_STATUS_NET_WRITE_FAULT 0xC0000000 | 0x00d2 258 - #define NT_STATUS_PROFILING_AT_LIMIT 0xC0000000 | 0x00d3 259 - #define NT_STATUS_NOT_SAME_DEVICE 0xC0000000 | 0x00d4 260 - #define NT_STATUS_FILE_RENAMED 0xC0000000 | 0x00d5 261 - #define NT_STATUS_VIRTUAL_CIRCUIT_CLOSED 0xC0000000 | 0x00d6 262 - #define NT_STATUS_NO_SECURITY_ON_OBJECT 0xC0000000 | 0x00d7 263 - #define NT_STATUS_CANT_WAIT 0xC0000000 | 0x00d8 264 - #define NT_STATUS_PIPE_EMPTY 0xC0000000 | 0x00d9 265 - #define NT_STATUS_CANT_ACCESS_DOMAIN_INFO 0xC0000000 | 0x00da 266 - #define NT_STATUS_CANT_TERMINATE_SELF 0xC0000000 | 0x00db 267 - #define NT_STATUS_INVALID_SERVER_STATE 0xC0000000 | 0x00dc 268 - #define NT_STATUS_INVALID_DOMAIN_STATE 0xC0000000 | 0x00dd 269 - #define NT_STATUS_INVALID_DOMAIN_ROLE 0xC0000000 | 0x00de 270 - #define NT_STATUS_NO_SUCH_DOMAIN 0xC0000000 | 0x00df 271 - #define NT_STATUS_DOMAIN_EXISTS 0xC0000000 | 0x00e0 272 - #define NT_STATUS_DOMAIN_LIMIT_EXCEEDED 0xC0000000 | 0x00e1 273 - #define NT_STATUS_OPLOCK_NOT_GRANTED 0xC0000000 | 0x00e2 274 - #define NT_STATUS_INVALID_OPLOCK_PROTOCOL 0xC0000000 | 0x00e3 275 - #define NT_STATUS_INTERNAL_DB_CORRUPTION 0xC0000000 | 0x00e4 276 - #define NT_STATUS_INTERNAL_ERROR 0xC0000000 | 0x00e5 277 - #define NT_STATUS_GENERIC_NOT_MAPPED 0xC0000000 | 0x00e6 278 - #define NT_STATUS_BAD_DESCRIPTOR_FORMAT 0xC0000000 | 0x00e7 279 - #define NT_STATUS_INVALID_USER_BUFFER 0xC0000000 | 0x00e8 280 - #define NT_STATUS_UNEXPECTED_IO_ERROR 0xC0000000 | 0x00e9 281 - #define NT_STATUS_UNEXPECTED_MM_CREATE_ERR 0xC0000000 | 0x00ea 282 - #define NT_STATUS_UNEXPECTED_MM_MAP_ERROR 0xC0000000 | 0x00eb 283 - #define NT_STATUS_UNEXPECTED_MM_EXTEND_ERR 0xC0000000 | 0x00ec 284 - #define NT_STATUS_NOT_LOGON_PROCESS 0xC0000000 | 0x00ed 285 - #define NT_STATUS_LOGON_SESSION_EXISTS 0xC0000000 | 0x00ee 286 - #define NT_STATUS_INVALID_PARAMETER_1 0xC0000000 | 0x00ef 287 - #define NT_STATUS_INVALID_PARAMETER_2 0xC0000000 | 0x00f0 288 - #define NT_STATUS_INVALID_PARAMETER_3 0xC0000000 | 0x00f1 289 - #define NT_STATUS_INVALID_PARAMETER_4 0xC0000000 | 0x00f2 290 - #define NT_STATUS_INVALID_PARAMETER_5 0xC0000000 | 0x00f3 291 - #define NT_STATUS_INVALID_PARAMETER_6 0xC0000000 | 0x00f4 292 - #define NT_STATUS_INVALID_PARAMETER_7 0xC0000000 | 0x00f5 293 - #define NT_STATUS_INVALID_PARAMETER_8 0xC0000000 | 0x00f6 294 - #define NT_STATUS_INVALID_PARAMETER_9 0xC0000000 | 0x00f7 295 - #define NT_STATUS_INVALID_PARAMETER_10 0xC0000000 | 0x00f8 296 - #define NT_STATUS_INVALID_PARAMETER_11 0xC0000000 | 0x00f9 297 - #define NT_STATUS_INVALID_PARAMETER_12 0xC0000000 | 0x00fa 298 - #define NT_STATUS_REDIRECTOR_NOT_STARTED 0xC0000000 | 0x00fb 299 - #define NT_STATUS_REDIRECTOR_STARTED 0xC0000000 | 0x00fc 300 - #define NT_STATUS_STACK_OVERFLOW 0xC0000000 | 0x00fd 301 - #define NT_STATUS_NO_SUCH_PACKAGE 0xC0000000 | 0x00fe 302 - #define NT_STATUS_BAD_FUNCTION_TABLE 0xC0000000 | 0x00ff 303 - #define NT_STATUS_DIRECTORY_NOT_EMPTY 0xC0000000 | 0x0101 304 - #define NT_STATUS_FILE_CORRUPT_ERROR 0xC0000000 | 0x0102 305 - #define NT_STATUS_NOT_A_DIRECTORY 0xC0000000 | 0x0103 306 - #define NT_STATUS_BAD_LOGON_SESSION_STATE 0xC0000000 | 0x0104 307 - #define NT_STATUS_LOGON_SESSION_COLLISION 0xC0000000 | 0x0105 308 - #define NT_STATUS_NAME_TOO_LONG 0xC0000000 | 0x0106 309 - #define NT_STATUS_FILES_OPEN 0xC0000000 | 0x0107 310 - #define NT_STATUS_CONNECTION_IN_USE 0xC0000000 | 0x0108 311 - #define NT_STATUS_MESSAGE_NOT_FOUND 0xC0000000 | 0x0109 312 - #define NT_STATUS_PROCESS_IS_TERMINATING 0xC0000000 | 0x010a 313 - #define NT_STATUS_INVALID_LOGON_TYPE 0xC0000000 | 0x010b 314 - #define NT_STATUS_NO_GUID_TRANSLATION 0xC0000000 | 0x010c 315 - #define NT_STATUS_CANNOT_IMPERSONATE 0xC0000000 | 0x010d 316 - #define NT_STATUS_IMAGE_ALREADY_LOADED 0xC0000000 | 0x010e 317 - #define NT_STATUS_ABIOS_NOT_PRESENT 0xC0000000 | 0x010f 318 - #define NT_STATUS_ABIOS_LID_NOT_EXIST 0xC0000000 | 0x0110 319 - #define NT_STATUS_ABIOS_LID_ALREADY_OWNED 0xC0000000 | 0x0111 320 - #define NT_STATUS_ABIOS_NOT_LID_OWNER 0xC0000000 | 0x0112 321 - #define NT_STATUS_ABIOS_INVALID_COMMAND 0xC0000000 | 0x0113 322 - #define NT_STATUS_ABIOS_INVALID_LID 0xC0000000 | 0x0114 323 - #define NT_STATUS_ABIOS_SELECTOR_NOT_AVAILABLE 0xC0000000 | 0x0115 324 - #define NT_STATUS_ABIOS_INVALID_SELECTOR 0xC0000000 | 0x0116 325 - #define NT_STATUS_NO_LDT 0xC0000000 | 0x0117 326 - #define NT_STATUS_INVALID_LDT_SIZE 0xC0000000 | 0x0118 327 - #define NT_STATUS_INVALID_LDT_OFFSET 0xC0000000 | 0x0119 328 - #define NT_STATUS_INVALID_LDT_DESCRIPTOR 0xC0000000 | 0x011a 329 - #define NT_STATUS_INVALID_IMAGE_NE_FORMAT 0xC0000000 | 0x011b 330 - #define NT_STATUS_RXACT_INVALID_STATE 0xC0000000 | 0x011c 331 - #define NT_STATUS_RXACT_COMMIT_FAILURE 0xC0000000 | 0x011d 332 - #define NT_STATUS_MAPPED_FILE_SIZE_ZERO 0xC0000000 | 0x011e 333 - #define NT_STATUS_TOO_MANY_OPENED_FILES 0xC0000000 | 0x011f 334 - #define NT_STATUS_CANCELLED 0xC0000000 | 0x0120 335 - #define NT_STATUS_CANNOT_DELETE 0xC0000000 | 0x0121 336 - #define NT_STATUS_INVALID_COMPUTER_NAME 0xC0000000 | 0x0122 337 - #define NT_STATUS_FILE_DELETED 0xC0000000 | 0x0123 338 - #define NT_STATUS_SPECIAL_ACCOUNT 0xC0000000 | 0x0124 339 - #define NT_STATUS_SPECIAL_GROUP 0xC0000000 | 0x0125 340 - #define NT_STATUS_SPECIAL_USER 0xC0000000 | 0x0126 341 - #define NT_STATUS_MEMBERS_PRIMARY_GROUP 0xC0000000 | 0x0127 342 - #define NT_STATUS_FILE_CLOSED 0xC0000000 | 0x0128 343 - #define NT_STATUS_TOO_MANY_THREADS 0xC0000000 | 0x0129 344 - #define NT_STATUS_THREAD_NOT_IN_PROCESS 0xC0000000 | 0x012a 345 - #define NT_STATUS_TOKEN_ALREADY_IN_USE 0xC0000000 | 0x012b 346 - #define NT_STATUS_PAGEFILE_QUOTA_EXCEEDED 0xC0000000 | 0x012c 347 - #define NT_STATUS_COMMITMENT_LIMIT 0xC0000000 | 0x012d 348 - #define NT_STATUS_INVALID_IMAGE_LE_FORMAT 0xC0000000 | 0x012e 349 - #define NT_STATUS_INVALID_IMAGE_NOT_MZ 0xC0000000 | 0x012f 350 - #define NT_STATUS_INVALID_IMAGE_PROTECT 0xC0000000 | 0x0130 351 - #define NT_STATUS_INVALID_IMAGE_WIN_16 0xC0000000 | 0x0131 352 - #define NT_STATUS_LOGON_SERVER_CONFLICT 0xC0000000 | 0x0132 353 - #define NT_STATUS_TIME_DIFFERENCE_AT_DC 0xC0000000 | 0x0133 354 - #define NT_STATUS_SYNCHRONIZATION_REQUIRED 0xC0000000 | 0x0134 355 - #define NT_STATUS_DLL_NOT_FOUND 0xC0000000 | 0x0135 356 - #define NT_STATUS_OPEN_FAILED 0xC0000000 | 0x0136 357 - #define NT_STATUS_IO_PRIVILEGE_FAILED 0xC0000000 | 0x0137 358 - #define NT_STATUS_ORDINAL_NOT_FOUND 0xC0000000 | 0x0138 359 - #define NT_STATUS_ENTRYPOINT_NOT_FOUND 0xC0000000 | 0x0139 360 - #define NT_STATUS_CONTROL_C_EXIT 0xC0000000 | 0x013a 361 - #define NT_STATUS_LOCAL_DISCONNECT 0xC0000000 | 0x013b 362 - #define NT_STATUS_REMOTE_DISCONNECT 0xC0000000 | 0x013c 363 - #define NT_STATUS_REMOTE_RESOURCES 0xC0000000 | 0x013d 364 - #define NT_STATUS_LINK_FAILED 0xC0000000 | 0x013e 365 - #define NT_STATUS_LINK_TIMEOUT 0xC0000000 | 0x013f 366 - #define NT_STATUS_INVALID_CONNECTION 0xC0000000 | 0x0140 367 - #define NT_STATUS_INVALID_ADDRESS 0xC0000000 | 0x0141 368 - #define NT_STATUS_DLL_INIT_FAILED 0xC0000000 | 0x0142 369 - #define NT_STATUS_MISSING_SYSTEMFILE 0xC0000000 | 0x0143 370 - #define NT_STATUS_UNHANDLED_EXCEPTION 0xC0000000 | 0x0144 371 - #define NT_STATUS_APP_INIT_FAILURE 0xC0000000 | 0x0145 372 - #define NT_STATUS_PAGEFILE_CREATE_FAILED 0xC0000000 | 0x0146 373 - #define NT_STATUS_NO_PAGEFILE 0xC0000000 | 0x0147 374 - #define NT_STATUS_INVALID_LEVEL 0xC0000000 | 0x0148 375 - #define NT_STATUS_WRONG_PASSWORD_CORE 0xC0000000 | 0x0149 376 - #define NT_STATUS_ILLEGAL_FLOAT_CONTEXT 0xC0000000 | 0x014a 377 - #define NT_STATUS_PIPE_BROKEN 0xC0000000 | 0x014b 378 - #define NT_STATUS_REGISTRY_CORRUPT 0xC0000000 | 0x014c 379 - #define NT_STATUS_REGISTRY_IO_FAILED 0xC0000000 | 0x014d 380 - #define NT_STATUS_NO_EVENT_PAIR 0xC0000000 | 0x014e 381 - #define NT_STATUS_UNRECOGNIZED_VOLUME 0xC0000000 | 0x014f 382 - #define NT_STATUS_SERIAL_NO_DEVICE_INITED 0xC0000000 | 0x0150 383 - #define NT_STATUS_NO_SUCH_ALIAS 0xC0000000 | 0x0151 384 - #define NT_STATUS_MEMBER_NOT_IN_ALIAS 0xC0000000 | 0x0152 385 - #define NT_STATUS_MEMBER_IN_ALIAS 0xC0000000 | 0x0153 386 - #define NT_STATUS_ALIAS_EXISTS 0xC0000000 | 0x0154 387 - #define NT_STATUS_LOGON_NOT_GRANTED 0xC0000000 | 0x0155 388 - #define NT_STATUS_TOO_MANY_SECRETS 0xC0000000 | 0x0156 389 - #define NT_STATUS_SECRET_TOO_LONG 0xC0000000 | 0x0157 390 - #define NT_STATUS_INTERNAL_DB_ERROR 0xC0000000 | 0x0158 391 - #define NT_STATUS_FULLSCREEN_MODE 0xC0000000 | 0x0159 392 - #define NT_STATUS_TOO_MANY_CONTEXT_IDS 0xC0000000 | 0x015a 393 - #define NT_STATUS_LOGON_TYPE_NOT_GRANTED 0xC0000000 | 0x015b 394 - #define NT_STATUS_NOT_REGISTRY_FILE 0xC0000000 | 0x015c 395 - #define NT_STATUS_NT_CROSS_ENCRYPTION_REQUIRED 0xC0000000 | 0x015d 396 - #define NT_STATUS_DOMAIN_CTRLR_CONFIG_ERROR 0xC0000000 | 0x015e 397 - #define NT_STATUS_FT_MISSING_MEMBER 0xC0000000 | 0x015f 398 - #define NT_STATUS_ILL_FORMED_SERVICE_ENTRY 0xC0000000 | 0x0160 399 - #define NT_STATUS_ILLEGAL_CHARACTER 0xC0000000 | 0x0161 400 - #define NT_STATUS_UNMAPPABLE_CHARACTER 0xC0000000 | 0x0162 401 - #define NT_STATUS_UNDEFINED_CHARACTER 0xC0000000 | 0x0163 402 - #define NT_STATUS_FLOPPY_VOLUME 0xC0000000 | 0x0164 403 - #define NT_STATUS_FLOPPY_ID_MARK_NOT_FOUND 0xC0000000 | 0x0165 404 - #define NT_STATUS_FLOPPY_WRONG_CYLINDER 0xC0000000 | 0x0166 405 - #define NT_STATUS_FLOPPY_UNKNOWN_ERROR 0xC0000000 | 0x0167 406 - #define NT_STATUS_FLOPPY_BAD_REGISTERS 0xC0000000 | 0x0168 407 - #define NT_STATUS_DISK_RECALIBRATE_FAILED 0xC0000000 | 0x0169 408 - #define NT_STATUS_DISK_OPERATION_FAILED 0xC0000000 | 0x016a 409 - #define NT_STATUS_DISK_RESET_FAILED 0xC0000000 | 0x016b 410 - #define NT_STATUS_SHARED_IRQ_BUSY 0xC0000000 | 0x016c 411 - #define NT_STATUS_FT_ORPHANING 0xC0000000 | 0x016d 412 - #define NT_STATUS_PARTITION_FAILURE 0xC0000000 | 0x0172 413 - #define NT_STATUS_INVALID_BLOCK_LENGTH 0xC0000000 | 0x0173 414 - #define NT_STATUS_DEVICE_NOT_PARTITIONED 0xC0000000 | 0x0174 415 - #define NT_STATUS_UNABLE_TO_LOCK_MEDIA 0xC0000000 | 0x0175 416 - #define NT_STATUS_UNABLE_TO_UNLOAD_MEDIA 0xC0000000 | 0x0176 417 - #define NT_STATUS_EOM_OVERFLOW 0xC0000000 | 0x0177 418 - #define NT_STATUS_NO_MEDIA 0xC0000000 | 0x0178 419 - #define NT_STATUS_NO_SUCH_MEMBER 0xC0000000 | 0x017a 420 - #define NT_STATUS_INVALID_MEMBER 0xC0000000 | 0x017b 421 - #define NT_STATUS_KEY_DELETED 0xC0000000 | 0x017c 422 - #define NT_STATUS_NO_LOG_SPACE 0xC0000000 | 0x017d 423 - #define NT_STATUS_TOO_MANY_SIDS 0xC0000000 | 0x017e 424 - #define NT_STATUS_LM_CROSS_ENCRYPTION_REQUIRED 0xC0000000 | 0x017f 425 - #define NT_STATUS_KEY_HAS_CHILDREN 0xC0000000 | 0x0180 426 - #define NT_STATUS_CHILD_MUST_BE_VOLATILE 0xC0000000 | 0x0181 427 - #define NT_STATUS_DEVICE_CONFIGURATION_ERROR 0xC0000000 | 0x0182 428 - #define NT_STATUS_DRIVER_INTERNAL_ERROR 0xC0000000 | 0x0183 429 - #define NT_STATUS_INVALID_DEVICE_STATE 0xC0000000 | 0x0184 430 - #define NT_STATUS_IO_DEVICE_ERROR 0xC0000000 | 0x0185 431 - #define NT_STATUS_DEVICE_PROTOCOL_ERROR 0xC0000000 | 0x0186 432 - #define NT_STATUS_BACKUP_CONTROLLER 0xC0000000 | 0x0187 433 - #define NT_STATUS_LOG_FILE_FULL 0xC0000000 | 0x0188 434 - #define NT_STATUS_TOO_LATE 0xC0000000 | 0x0189 435 - #define NT_STATUS_NO_TRUST_LSA_SECRET 0xC0000000 | 0x018a 436 - #define NT_STATUS_NO_TRUST_SAM_ACCOUNT 0xC0000000 | 0x018b 437 - #define NT_STATUS_TRUSTED_DOMAIN_FAILURE 0xC0000000 | 0x018c 438 - #define NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE 0xC0000000 | 0x018d 439 - #define NT_STATUS_EVENTLOG_FILE_CORRUPT 0xC0000000 | 0x018e 440 - #define NT_STATUS_EVENTLOG_CANT_START 0xC0000000 | 0x018f 441 - #define NT_STATUS_TRUST_FAILURE 0xC0000000 | 0x0190 442 - #define NT_STATUS_MUTANT_LIMIT_EXCEEDED 0xC0000000 | 0x0191 443 - #define NT_STATUS_NETLOGON_NOT_STARTED 0xC0000000 | 0x0192 444 - #define NT_STATUS_ACCOUNT_EXPIRED 0xC0000000 | 0x0193 445 - #define NT_STATUS_POSSIBLE_DEADLOCK 0xC0000000 | 0x0194 446 - #define NT_STATUS_NETWORK_CREDENTIAL_CONFLICT 0xC0000000 | 0x0195 447 - #define NT_STATUS_REMOTE_SESSION_LIMIT 0xC0000000 | 0x0196 448 - #define NT_STATUS_EVENTLOG_FILE_CHANGED 0xC0000000 | 0x0197 449 - #define NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT 0xC0000000 | 0x0198 450 - #define NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT 0xC0000000 | 0x0199 451 - #define NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT 0xC0000000 | 0x019a 452 - #define NT_STATUS_DOMAIN_TRUST_INCONSISTENT 0xC0000000 | 0x019b 453 - #define NT_STATUS_FS_DRIVER_REQUIRED 0xC0000000 | 0x019c 454 - #define NT_STATUS_NO_USER_SESSION_KEY 0xC0000000 | 0x0202 455 - #define NT_STATUS_USER_SESSION_DELETED 0xC0000000 | 0x0203 456 - #define NT_STATUS_RESOURCE_LANG_NOT_FOUND 0xC0000000 | 0x0204 457 - #define NT_STATUS_INSUFF_SERVER_RESOURCES 0xC0000000 | 0x0205 458 - #define NT_STATUS_INVALID_BUFFER_SIZE 0xC0000000 | 0x0206 459 - #define NT_STATUS_INVALID_ADDRESS_COMPONENT 0xC0000000 | 0x0207 460 - #define NT_STATUS_INVALID_ADDRESS_WILDCARD 0xC0000000 | 0x0208 461 - #define NT_STATUS_TOO_MANY_ADDRESSES 0xC0000000 | 0x0209 462 - #define NT_STATUS_ADDRESS_ALREADY_EXISTS 0xC0000000 | 0x020a 463 - #define NT_STATUS_ADDRESS_CLOSED 0xC0000000 | 0x020b 464 - #define NT_STATUS_CONNECTION_DISCONNECTED 0xC0000000 | 0x020c 465 - #define NT_STATUS_CONNECTION_RESET 0xC0000000 | 0x020d 466 - #define NT_STATUS_TOO_MANY_NODES 0xC0000000 | 0x020e 467 - #define NT_STATUS_TRANSACTION_ABORTED 0xC0000000 | 0x020f 468 - #define NT_STATUS_TRANSACTION_TIMED_OUT 0xC0000000 | 0x0210 469 - #define NT_STATUS_TRANSACTION_NO_RELEASE 0xC0000000 | 0x0211 470 - #define NT_STATUS_TRANSACTION_NO_MATCH 0xC0000000 | 0x0212 471 - #define NT_STATUS_TRANSACTION_RESPONDED 0xC0000000 | 0x0213 472 - #define NT_STATUS_TRANSACTION_INVALID_ID 0xC0000000 | 0x0214 473 - #define NT_STATUS_TRANSACTION_INVALID_TYPE 0xC0000000 | 0x0215 474 - #define NT_STATUS_NOT_SERVER_SESSION 0xC0000000 | 0x0216 475 - #define NT_STATUS_NOT_CLIENT_SESSION 0xC0000000 | 0x0217 476 - #define NT_STATUS_CANNOT_LOAD_REGISTRY_FILE 0xC0000000 | 0x0218 477 - #define NT_STATUS_DEBUG_ATTACH_FAILED 0xC0000000 | 0x0219 478 - #define NT_STATUS_SYSTEM_PROCESS_TERMINATED 0xC0000000 | 0x021a 479 - #define NT_STATUS_DATA_NOT_ACCEPTED 0xC0000000 | 0x021b 480 - #define NT_STATUS_NO_BROWSER_SERVERS_FOUND 0xC0000000 | 0x021c 481 - #define NT_STATUS_VDM_HARD_ERROR 0xC0000000 | 0x021d 482 - #define NT_STATUS_DRIVER_CANCEL_TIMEOUT 0xC0000000 | 0x021e 483 - #define NT_STATUS_REPLY_MESSAGE_MISMATCH 0xC0000000 | 0x021f 484 - #define NT_STATUS_MAPPED_ALIGNMENT 0xC0000000 | 0x0220 485 - #define NT_STATUS_IMAGE_CHECKSUM_MISMATCH 0xC0000000 | 0x0221 486 - #define NT_STATUS_LOST_WRITEBEHIND_DATA 0xC0000000 | 0x0222 487 - #define NT_STATUS_CLIENT_SERVER_PARAMETERS_INVALID 0xC0000000 | 0x0223 488 - #define NT_STATUS_PASSWORD_MUST_CHANGE 0xC0000000 | 0x0224 489 - #define NT_STATUS_NOT_FOUND 0xC0000000 | 0x0225 490 - #define NT_STATUS_NOT_TINY_STREAM 0xC0000000 | 0x0226 491 - #define NT_STATUS_RECOVERY_FAILURE 0xC0000000 | 0x0227 492 - #define NT_STATUS_STACK_OVERFLOW_READ 0xC0000000 | 0x0228 493 - #define NT_STATUS_FAIL_CHECK 0xC0000000 | 0x0229 494 - #define NT_STATUS_DUPLICATE_OBJECTID 0xC0000000 | 0x022a 495 - #define NT_STATUS_OBJECTID_EXISTS 0xC0000000 | 0x022b 496 - #define NT_STATUS_CONVERT_TO_LARGE 0xC0000000 | 0x022c 497 - #define NT_STATUS_RETRY 0xC0000000 | 0x022d 498 - #define NT_STATUS_FOUND_OUT_OF_SCOPE 0xC0000000 | 0x022e 499 - #define NT_STATUS_ALLOCATE_BUCKET 0xC0000000 | 0x022f 500 - #define NT_STATUS_PROPSET_NOT_FOUND 0xC0000000 | 0x0230 501 - #define NT_STATUS_MARSHALL_OVERFLOW 0xC0000000 | 0x0231 502 - #define NT_STATUS_INVALID_VARIANT 0xC0000000 | 0x0232 503 - #define NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND 0xC0000000 | 0x0233 504 - #define NT_STATUS_ACCOUNT_LOCKED_OUT 0xC0000000 | 0x0234 505 - #define NT_STATUS_HANDLE_NOT_CLOSABLE 0xC0000000 | 0x0235 506 - #define NT_STATUS_CONNECTION_REFUSED 0xC0000000 | 0x0236 507 - #define NT_STATUS_GRACEFUL_DISCONNECT 0xC0000000 | 0x0237 508 - #define NT_STATUS_ADDRESS_ALREADY_ASSOCIATED 0xC0000000 | 0x0238 509 - #define NT_STATUS_ADDRESS_NOT_ASSOCIATED 0xC0000000 | 0x0239 510 - #define NT_STATUS_CONNECTION_INVALID 0xC0000000 | 0x023a 511 - #define NT_STATUS_CONNECTION_ACTIVE 0xC0000000 | 0x023b 512 - #define NT_STATUS_NETWORK_UNREACHABLE 0xC0000000 | 0x023c 513 - #define NT_STATUS_HOST_UNREACHABLE 0xC0000000 | 0x023d 514 - #define NT_STATUS_PROTOCOL_UNREACHABLE 0xC0000000 | 0x023e 515 - #define NT_STATUS_PORT_UNREACHABLE 0xC0000000 | 0x023f 516 - #define NT_STATUS_REQUEST_ABORTED 0xC0000000 | 0x0240 517 - #define NT_STATUS_CONNECTION_ABORTED 0xC0000000 | 0x0241 518 - #define NT_STATUS_BAD_COMPRESSION_BUFFER 0xC0000000 | 0x0242 519 - #define NT_STATUS_USER_MAPPED_FILE 0xC0000000 | 0x0243 520 - #define NT_STATUS_AUDIT_FAILED 0xC0000000 | 0x0244 521 - #define NT_STATUS_TIMER_RESOLUTION_NOT_SET 0xC0000000 | 0x0245 522 - #define NT_STATUS_CONNECTION_COUNT_LIMIT 0xC0000000 | 0x0246 523 - #define NT_STATUS_LOGIN_TIME_RESTRICTION 0xC0000000 | 0x0247 524 - #define NT_STATUS_LOGIN_WKSTA_RESTRICTION 0xC0000000 | 0x0248 525 - #define NT_STATUS_IMAGE_MP_UP_MISMATCH 0xC0000000 | 0x0249 526 - #define NT_STATUS_INSUFFICIENT_LOGON_INFO 0xC0000000 | 0x0250 527 - #define NT_STATUS_BAD_DLL_ENTRYPOINT 0xC0000000 | 0x0251 528 - #define NT_STATUS_BAD_SERVICE_ENTRYPOINT 0xC0000000 | 0x0252 529 - #define NT_STATUS_LPC_REPLY_LOST 0xC0000000 | 0x0253 530 - #define NT_STATUS_IP_ADDRESS_CONFLICT1 0xC0000000 | 0x0254 531 - #define NT_STATUS_IP_ADDRESS_CONFLICT2 0xC0000000 | 0x0255 532 - #define NT_STATUS_REGISTRY_QUOTA_LIMIT 0xC0000000 | 0x0256 533 - #define NT_STATUS_PATH_NOT_COVERED 0xC0000000 | 0x0257 534 - #define NT_STATUS_NO_CALLBACK_ACTIVE 0xC0000000 | 0x0258 535 - #define NT_STATUS_LICENSE_QUOTA_EXCEEDED 0xC0000000 | 0x0259 536 - #define NT_STATUS_PWD_TOO_SHORT 0xC0000000 | 0x025a 537 - #define NT_STATUS_PWD_TOO_RECENT 0xC0000000 | 0x025b 538 - #define NT_STATUS_PWD_HISTORY_CONFLICT 0xC0000000 | 0x025c 539 - #define NT_STATUS_PLUGPLAY_NO_DEVICE 0xC0000000 | 0x025e 540 - #define NT_STATUS_UNSUPPORTED_COMPRESSION 0xC0000000 | 0x025f 541 - #define NT_STATUS_INVALID_HW_PROFILE 0xC0000000 | 0x0260 542 - #define NT_STATUS_INVALID_PLUGPLAY_DEVICE_PATH 0xC0000000 | 0x0261 543 - #define NT_STATUS_DRIVER_ORDINAL_NOT_FOUND 0xC0000000 | 0x0262 544 - #define NT_STATUS_DRIVER_ENTRYPOINT_NOT_FOUND 0xC0000000 | 0x0263 545 - #define NT_STATUS_RESOURCE_NOT_OWNED 0xC0000000 | 0x0264 546 - #define NT_STATUS_TOO_MANY_LINKS 0xC0000000 | 0x0265 547 - #define NT_STATUS_QUOTA_LIST_INCONSISTENT 0xC0000000 | 0x0266 548 - #define NT_STATUS_FILE_IS_OFFLINE 0xC0000000 | 0x0267 549 - #define NT_STATUS_NOT_A_REPARSE_POINT 0xC0000000 | 0x0275 550 - #define NT_STATUS_NO_SUCH_JOB 0xC0000000 | 0xEDE /* scheduler */ 48 + #define NT_STATUS_DEVICE_DOOR_OPEN 0x80000289 49 + #define NT_STATUS_UNSUCCESSFUL (0xC0000000 | 0x0001) 50 + #define NT_STATUS_NOT_IMPLEMENTED (0xC0000000 | 0x0002) 51 + #define NT_STATUS_INVALID_INFO_CLASS (0xC0000000 | 0x0003) 52 + #define NT_STATUS_INFO_LENGTH_MISMATCH (0xC0000000 | 0x0004) 53 + #define NT_STATUS_ACCESS_VIOLATION (0xC0000000 | 0x0005) 54 + #define NT_STATUS_IN_PAGE_ERROR (0xC0000000 | 0x0006) 55 + #define NT_STATUS_PAGEFILE_QUOTA (0xC0000000 | 0x0007) 56 + #define NT_STATUS_INVALID_HANDLE (0xC0000000 | 0x0008) 57 + #define NT_STATUS_BAD_INITIAL_STACK (0xC0000000 | 0x0009) 58 + #define NT_STATUS_BAD_INITIAL_PC (0xC0000000 | 0x000a) 59 + #define NT_STATUS_INVALID_CID (0xC0000000 | 0x000b) 60 + #define NT_STATUS_TIMER_NOT_CANCELED (0xC0000000 | 0x000c) 61 + #define NT_STATUS_INVALID_PARAMETER (0xC0000000 | 0x000d) 62 + #define NT_STATUS_NO_SUCH_DEVICE (0xC0000000 | 0x000e) 63 + #define NT_STATUS_NO_SUCH_FILE (0xC0000000 | 0x000f) 64 + #define NT_STATUS_INVALID_DEVICE_REQUEST (0xC0000000 | 0x0010) 65 + #define NT_STATUS_END_OF_FILE (0xC0000000 | 0x0011) 66 + #define NT_STATUS_WRONG_VOLUME (0xC0000000 | 0x0012) 67 + #define NT_STATUS_NO_MEDIA_IN_DEVICE (0xC0000000 | 0x0013) 68 + #define NT_STATUS_UNRECOGNIZED_MEDIA (0xC0000000 | 0x0014) 69 + #define NT_STATUS_NONEXISTENT_SECTOR (0xC0000000 | 0x0015) 70 + #define NT_STATUS_MORE_PROCESSING_REQUIRED (0xC0000000 | 0x0016) 71 + #define NT_STATUS_NO_MEMORY (0xC0000000 | 0x0017) 72 + #define NT_STATUS_CONFLICTING_ADDRESSES (0xC0000000 | 0x0018) 73 + #define NT_STATUS_NOT_MAPPED_VIEW (0xC0000000 | 0x0019) 74 + #define NT_STATUS_UNABLE_TO_FREE_VM (0xC0000000 | 0x001a) 75 + #define NT_STATUS_UNABLE_TO_DELETE_SECTION (0xC0000000 | 0x001b) 76 + #define NT_STATUS_INVALID_SYSTEM_SERVICE (0xC0000000 | 0x001c) 77 + #define NT_STATUS_ILLEGAL_INSTRUCTION (0xC0000000 | 0x001d) 78 + #define NT_STATUS_INVALID_LOCK_SEQUENCE (0xC0000000 | 0x001e) 79 + #define NT_STATUS_INVALID_VIEW_SIZE (0xC0000000 | 0x001f) 80 + #define NT_STATUS_INVALID_FILE_FOR_SECTION (0xC0000000 | 0x0020) 81 + #define NT_STATUS_ALREADY_COMMITTED (0xC0000000 | 0x0021) 82 + #define NT_STATUS_ACCESS_DENIED (0xC0000000 | 0x0022) 83 + #define NT_STATUS_BUFFER_TOO_SMALL (0xC0000000 | 0x0023) 84 + #define NT_STATUS_OBJECT_TYPE_MISMATCH (0xC0000000 | 0x0024) 85 + #define NT_STATUS_NONCONTINUABLE_EXCEPTION (0xC0000000 | 0x0025) 86 + #define NT_STATUS_INVALID_DISPOSITION (0xC0000000 | 0x0026) 87 + #define NT_STATUS_UNWIND (0xC0000000 | 0x0027) 88 + #define NT_STATUS_BAD_STACK (0xC0000000 | 0x0028) 89 + #define NT_STATUS_INVALID_UNWIND_TARGET (0xC0000000 | 0x0029) 90 + #define NT_STATUS_NOT_LOCKED (0xC0000000 | 0x002a) 91 + #define NT_STATUS_PARITY_ERROR (0xC0000000 | 0x002b) 92 + #define NT_STATUS_UNABLE_TO_DECOMMIT_VM (0xC0000000 | 0x002c) 93 + #define NT_STATUS_NOT_COMMITTED (0xC0000000 | 0x002d) 94 + #define NT_STATUS_INVALID_PORT_ATTRIBUTES (0xC0000000 | 0x002e) 95 + #define NT_STATUS_PORT_MESSAGE_TOO_LONG (0xC0000000 | 0x002f) 96 + #define NT_STATUS_INVALID_PARAMETER_MIX (0xC0000000 | 0x0030) 97 + #define NT_STATUS_INVALID_QUOTA_LOWER (0xC0000000 | 0x0031) 98 + #define NT_STATUS_DISK_CORRUPT_ERROR (0xC0000000 | 0x0032) 99 + #define NT_STATUS_OBJECT_NAME_INVALID (0xC0000000 | 0x0033) 100 + #define NT_STATUS_OBJECT_NAME_NOT_FOUND (0xC0000000 | 0x0034) 101 + #define NT_STATUS_OBJECT_NAME_COLLISION (0xC0000000 | 0x0035) 102 + #define NT_STATUS_HANDLE_NOT_WAITABLE (0xC0000000 | 0x0036) 103 + #define NT_STATUS_PORT_DISCONNECTED (0xC0000000 | 0x0037) 104 + #define NT_STATUS_DEVICE_ALREADY_ATTACHED (0xC0000000 | 0x0038) 105 + #define NT_STATUS_OBJECT_PATH_INVALID (0xC0000000 | 0x0039) 106 + #define NT_STATUS_OBJECT_PATH_NOT_FOUND (0xC0000000 | 0x003a) 107 + #define NT_STATUS_OBJECT_PATH_SYNTAX_BAD (0xC0000000 | 0x003b) 108 + #define NT_STATUS_DATA_OVERRUN (0xC0000000 | 0x003c) 109 + #define NT_STATUS_DATA_LATE_ERROR (0xC0000000 | 0x003d) 110 + #define NT_STATUS_DATA_ERROR (0xC0000000 | 0x003e) 111 + #define NT_STATUS_CRC_ERROR (0xC0000000 | 0x003f) 112 + #define NT_STATUS_SECTION_TOO_BIG (0xC0000000 | 0x0040) 113 + #define NT_STATUS_PORT_CONNECTION_REFUSED (0xC0000000 | 0x0041) 114 + #define NT_STATUS_INVALID_PORT_HANDLE (0xC0000000 | 0x0042) 115 + #define NT_STATUS_SHARING_VIOLATION (0xC0000000 | 0x0043) 116 + #define NT_STATUS_QUOTA_EXCEEDED (0xC0000000 | 0x0044) 117 + #define NT_STATUS_INVALID_PAGE_PROTECTION (0xC0000000 | 0x0045) 118 + #define NT_STATUS_MUTANT_NOT_OWNED (0xC0000000 | 0x0046) 119 + #define NT_STATUS_SEMAPHORE_LIMIT_EXCEEDED (0xC0000000 | 0x0047) 120 + #define NT_STATUS_PORT_ALREADY_SET (0xC0000000 | 0x0048) 121 + #define NT_STATUS_SECTION_NOT_IMAGE (0xC0000000 | 0x0049) 122 + #define NT_STATUS_SUSPEND_COUNT_EXCEEDED (0xC0000000 | 0x004a) 123 + #define NT_STATUS_THREAD_IS_TERMINATING (0xC0000000 | 0x004b) 124 + #define NT_STATUS_BAD_WORKING_SET_LIMIT (0xC0000000 | 0x004c) 125 + #define NT_STATUS_INCOMPATIBLE_FILE_MAP (0xC0000000 | 0x004d) 126 + #define NT_STATUS_SECTION_PROTECTION (0xC0000000 | 0x004e) 127 + #define NT_STATUS_EAS_NOT_SUPPORTED (0xC0000000 | 0x004f) 128 + #define NT_STATUS_EA_TOO_LARGE (0xC0000000 | 0x0050) 129 + #define NT_STATUS_NONEXISTENT_EA_ENTRY (0xC0000000 | 0x0051) 130 + #define NT_STATUS_NO_EAS_ON_FILE (0xC0000000 | 0x0052) 131 + #define NT_STATUS_EA_CORRUPT_ERROR (0xC0000000 | 0x0053) 132 + #define NT_STATUS_FILE_LOCK_CONFLICT (0xC0000000 | 0x0054) 133 + #define NT_STATUS_LOCK_NOT_GRANTED (0xC0000000 | 0x0055) 134 + #define NT_STATUS_DELETE_PENDING (0xC0000000 | 0x0056) 135 + #define NT_STATUS_CTL_FILE_NOT_SUPPORTED (0xC0000000 | 0x0057) 136 + #define NT_STATUS_UNKNOWN_REVISION (0xC0000000 | 0x0058) 137 + #define NT_STATUS_REVISION_MISMATCH (0xC0000000 | 0x0059) 138 + #define NT_STATUS_INVALID_OWNER (0xC0000000 | 0x005a) 139 + #define NT_STATUS_INVALID_PRIMARY_GROUP (0xC0000000 | 0x005b) 140 + #define NT_STATUS_NO_IMPERSONATION_TOKEN (0xC0000000 | 0x005c) 141 + #define NT_STATUS_CANT_DISABLE_MANDATORY (0xC0000000 | 0x005d) 142 + #define NT_STATUS_NO_LOGON_SERVERS (0xC0000000 | 0x005e) 143 + #define NT_STATUS_NO_SUCH_LOGON_SESSION (0xC0000000 | 0x005f) 144 + #define NT_STATUS_NO_SUCH_PRIVILEGE (0xC0000000 | 0x0060) 145 + #define NT_STATUS_PRIVILEGE_NOT_HELD (0xC0000000 | 0x0061) 146 + #define NT_STATUS_INVALID_ACCOUNT_NAME (0xC0000000 | 0x0062) 147 + #define NT_STATUS_USER_EXISTS (0xC0000000 | 0x0063) 148 + #define NT_STATUS_NO_SUCH_USER (0xC0000000 | 0x0064) 149 + #define NT_STATUS_GROUP_EXISTS (0xC0000000 | 0x0065) 150 + #define NT_STATUS_NO_SUCH_GROUP (0xC0000000 | 0x0066) 151 + #define NT_STATUS_MEMBER_IN_GROUP (0xC0000000 | 0x0067) 152 + #define NT_STATUS_MEMBER_NOT_IN_GROUP (0xC0000000 | 0x0068) 153 + #define NT_STATUS_LAST_ADMIN (0xC0000000 | 0x0069) 154 + #define NT_STATUS_WRONG_PASSWORD (0xC0000000 | 0x006a) 155 + #define NT_STATUS_ILL_FORMED_PASSWORD (0xC0000000 | 0x006b) 156 + #define NT_STATUS_PASSWORD_RESTRICTION (0xC0000000 | 0x006c) 157 + #define NT_STATUS_LOGON_FAILURE (0xC0000000 | 0x006d) 158 + #define NT_STATUS_ACCOUNT_RESTRICTION (0xC0000000 | 0x006e) 159 + #define NT_STATUS_INVALID_LOGON_HOURS (0xC0000000 | 0x006f) 160 + #define NT_STATUS_INVALID_WORKSTATION (0xC0000000 | 0x0070) 161 + #define NT_STATUS_PASSWORD_EXPIRED (0xC0000000 | 0x0071) 162 + #define NT_STATUS_ACCOUNT_DISABLED (0xC0000000 | 0x0072) 163 + #define NT_STATUS_NONE_MAPPED (0xC0000000 | 0x0073) 164 + #define NT_STATUS_TOO_MANY_LUIDS_REQUESTED (0xC0000000 | 0x0074) 165 + #define NT_STATUS_LUIDS_EXHAUSTED (0xC0000000 | 0x0075) 166 + #define NT_STATUS_INVALID_SUB_AUTHORITY (0xC0000000 | 0x0076) 167 + #define NT_STATUS_INVALID_ACL (0xC0000000 | 0x0077) 168 + #define NT_STATUS_INVALID_SID (0xC0000000 | 0x0078) 169 + #define NT_STATUS_INVALID_SECURITY_DESCR (0xC0000000 | 0x0079) 170 + #define NT_STATUS_PROCEDURE_NOT_FOUND (0xC0000000 | 0x007a) 171 + #define NT_STATUS_INVALID_IMAGE_FORMAT (0xC0000000 | 0x007b) 172 + #define NT_STATUS_NO_TOKEN (0xC0000000 | 0x007c) 173 + #define NT_STATUS_BAD_INHERITANCE_ACL (0xC0000000 | 0x007d) 174 + #define NT_STATUS_RANGE_NOT_LOCKED (0xC0000000 | 0x007e) 175 + #define NT_STATUS_DISK_FULL (0xC0000000 | 0x007f) 176 + #define NT_STATUS_SERVER_DISABLED (0xC0000000 | 0x0080) 177 + #define NT_STATUS_SERVER_NOT_DISABLED (0xC0000000 | 0x0081) 178 + #define NT_STATUS_TOO_MANY_GUIDS_REQUESTED (0xC0000000 | 0x0082) 179 + #define NT_STATUS_GUIDS_EXHAUSTED (0xC0000000 | 0x0083) 180 + #define NT_STATUS_INVALID_ID_AUTHORITY (0xC0000000 | 0x0084) 181 + #define NT_STATUS_AGENTS_EXHAUSTED (0xC0000000 | 0x0085) 182 + #define NT_STATUS_INVALID_VOLUME_LABEL (0xC0000000 | 0x0086) 183 + #define NT_STATUS_SECTION_NOT_EXTENDED (0xC0000000 | 0x0087) 184 + #define NT_STATUS_NOT_MAPPED_DATA (0xC0000000 | 0x0088) 185 + #define NT_STATUS_RESOURCE_DATA_NOT_FOUND (0xC0000000 | 0x0089) 186 + #define NT_STATUS_RESOURCE_TYPE_NOT_FOUND (0xC0000000 | 0x008a) 187 + #define NT_STATUS_RESOURCE_NAME_NOT_FOUND (0xC0000000 | 0x008b) 188 + #define NT_STATUS_ARRAY_BOUNDS_EXCEEDED (0xC0000000 | 0x008c) 189 + #define NT_STATUS_FLOAT_DENORMAL_OPERAND (0xC0000000 | 0x008d) 190 + #define NT_STATUS_FLOAT_DIVIDE_BY_ZERO (0xC0000000 | 0x008e) 191 + #define NT_STATUS_FLOAT_INEXACT_RESULT (0xC0000000 | 0x008f) 192 + #define NT_STATUS_FLOAT_INVALID_OPERATION (0xC0000000 | 0x0090) 193 + #define NT_STATUS_FLOAT_OVERFLOW (0xC0000000 | 0x0091) 194 + #define NT_STATUS_FLOAT_STACK_CHECK (0xC0000000 | 0x0092) 195 + #define NT_STATUS_FLOAT_UNDERFLOW (0xC0000000 | 0x0093) 196 + #define NT_STATUS_INTEGER_DIVIDE_BY_ZERO (0xC0000000 | 0x0094) 197 + #define NT_STATUS_INTEGER_OVERFLOW (0xC0000000 | 0x0095) 198 + #define NT_STATUS_PRIVILEGED_INSTRUCTION (0xC0000000 | 0x0096) 199 + #define NT_STATUS_TOO_MANY_PAGING_FILES (0xC0000000 | 0x0097) 200 + #define NT_STATUS_FILE_INVALID (0xC0000000 | 0x0098) 201 + #define NT_STATUS_ALLOTTED_SPACE_EXCEEDED (0xC0000000 | 0x0099) 202 + #define NT_STATUS_INSUFFICIENT_RESOURCES (0xC0000000 | 0x009a) 203 + #define NT_STATUS_DFS_EXIT_PATH_FOUND (0xC0000000 | 0x009b) 204 + #define NT_STATUS_DEVICE_DATA_ERROR (0xC0000000 | 0x009c) 205 + #define NT_STATUS_DEVICE_NOT_CONNECTED (0xC0000000 | 0x009d) 206 + #define NT_STATUS_DEVICE_POWER_FAILURE (0xC0000000 | 0x009e) 207 + #define NT_STATUS_FREE_VM_NOT_AT_BASE (0xC0000000 | 0x009f) 208 + #define NT_STATUS_MEMORY_NOT_ALLOCATED (0xC0000000 | 0x00a0) 209 + #define NT_STATUS_WORKING_SET_QUOTA (0xC0000000 | 0x00a1) 210 + #define NT_STATUS_MEDIA_WRITE_PROTECTED (0xC0000000 | 0x00a2) 211 + #define NT_STATUS_DEVICE_NOT_READY (0xC0000000 | 0x00a3) 212 + #define NT_STATUS_INVALID_GROUP_ATTRIBUTES (0xC0000000 | 0x00a4) 213 + #define NT_STATUS_BAD_IMPERSONATION_LEVEL (0xC0000000 | 0x00a5) 214 + #define NT_STATUS_CANT_OPEN_ANONYMOUS (0xC0000000 | 0x00a6) 215 + #define NT_STATUS_BAD_VALIDATION_CLASS (0xC0000000 | 0x00a7) 216 + #define NT_STATUS_BAD_TOKEN_TYPE (0xC0000000 | 0x00a8) 217 + #define NT_STATUS_BAD_MASTER_BOOT_RECORD (0xC0000000 | 0x00a9) 218 + #define NT_STATUS_INSTRUCTION_MISALIGNMENT (0xC0000000 | 0x00aa) 219 + #define NT_STATUS_INSTANCE_NOT_AVAILABLE (0xC0000000 | 0x00ab) 220 + #define NT_STATUS_PIPE_NOT_AVAILABLE (0xC0000000 | 0x00ac) 221 + #define NT_STATUS_INVALID_PIPE_STATE (0xC0000000 | 0x00ad) 222 + #define NT_STATUS_PIPE_BUSY (0xC0000000 | 0x00ae) 223 + #define NT_STATUS_ILLEGAL_FUNCTION (0xC0000000 | 0x00af) 224 + #define NT_STATUS_PIPE_DISCONNECTED (0xC0000000 | 0x00b0) 225 + #define NT_STATUS_PIPE_CLOSING (0xC0000000 | 0x00b1) 226 + #define NT_STATUS_PIPE_CONNECTED (0xC0000000 | 0x00b2) 227 + #define NT_STATUS_PIPE_LISTENING (0xC0000000 | 0x00b3) 228 + #define NT_STATUS_INVALID_READ_MODE (0xC0000000 | 0x00b4) 229 + #define NT_STATUS_IO_TIMEOUT (0xC0000000 | 0x00b5) 230 + #define NT_STATUS_FILE_FORCED_CLOSED (0xC0000000 | 0x00b6) 231 + #define NT_STATUS_PROFILING_NOT_STARTED (0xC0000000 | 0x00b7) 232 + #define NT_STATUS_PROFILING_NOT_STOPPED (0xC0000000 | 0x00b8) 233 + #define NT_STATUS_COULD_NOT_INTERPRET (0xC0000000 | 0x00b9) 234 + #define NT_STATUS_FILE_IS_A_DIRECTORY (0xC0000000 | 0x00ba) 235 + #define NT_STATUS_NOT_SUPPORTED (0xC0000000 | 0x00bb) 236 + #define NT_STATUS_REMOTE_NOT_LISTENING (0xC0000000 | 0x00bc) 237 + #define NT_STATUS_DUPLICATE_NAME (0xC0000000 | 0x00bd) 238 + #define NT_STATUS_BAD_NETWORK_PATH (0xC0000000 | 0x00be) 239 + #define NT_STATUS_NETWORK_BUSY (0xC0000000 | 0x00bf) 240 + #define NT_STATUS_DEVICE_DOES_NOT_EXIST (0xC0000000 | 0x00c0) 241 + #define NT_STATUS_TOO_MANY_COMMANDS (0xC0000000 | 0x00c1) 242 + #define NT_STATUS_ADAPTER_HARDWARE_ERROR (0xC0000000 | 0x00c2) 243 + #define NT_STATUS_INVALID_NETWORK_RESPONSE (0xC0000000 | 0x00c3) 244 + #define NT_STATUS_UNEXPECTED_NETWORK_ERROR (0xC0000000 | 0x00c4) 245 + #define NT_STATUS_BAD_REMOTE_ADAPTER (0xC0000000 | 0x00c5) 246 + #define NT_STATUS_PRINT_QUEUE_FULL (0xC0000000 | 0x00c6) 247 + #define NT_STATUS_NO_SPOOL_SPACE (0xC0000000 | 0x00c7) 248 + #define NT_STATUS_PRINT_CANCELLED (0xC0000000 | 0x00c8) 249 + #define NT_STATUS_NETWORK_NAME_DELETED (0xC0000000 | 0x00c9) 250 + #define NT_STATUS_NETWORK_ACCESS_DENIED (0xC0000000 | 0x00ca) 251 + #define NT_STATUS_BAD_DEVICE_TYPE (0xC0000000 | 0x00cb) 252 + #define NT_STATUS_BAD_NETWORK_NAME (0xC0000000 | 0x00cc) 253 + #define NT_STATUS_TOO_MANY_NAMES (0xC0000000 | 0x00cd) 254 + #define NT_STATUS_TOO_MANY_SESSIONS (0xC0000000 | 0x00ce) 255 + #define NT_STATUS_SHARING_PAUSED (0xC0000000 | 0x00cf) 256 + #define NT_STATUS_REQUEST_NOT_ACCEPTED (0xC0000000 | 0x00d0) 257 + #define NT_STATUS_REDIRECTOR_PAUSED (0xC0000000 | 0x00d1) 258 + #define NT_STATUS_NET_WRITE_FAULT (0xC0000000 | 0x00d2) 259 + #define NT_STATUS_PROFILING_AT_LIMIT (0xC0000000 | 0x00d3) 260 + #define NT_STATUS_NOT_SAME_DEVICE (0xC0000000 | 0x00d4) 261 + #define NT_STATUS_FILE_RENAMED (0xC0000000 | 0x00d5) 262 + #define NT_STATUS_VIRTUAL_CIRCUIT_CLOSED (0xC0000000 | 0x00d6) 263 + #define NT_STATUS_NO_SECURITY_ON_OBJECT (0xC0000000 | 0x00d7) 264 + #define NT_STATUS_CANT_WAIT (0xC0000000 | 0x00d8) 265 + #define NT_STATUS_PIPE_EMPTY (0xC0000000 | 0x00d9) 266 + #define NT_STATUS_CANT_ACCESS_DOMAIN_INFO (0xC0000000 | 0x00da) 267 + #define NT_STATUS_CANT_TERMINATE_SELF (0xC0000000 | 0x00db) 268 + #define NT_STATUS_INVALID_SERVER_STATE (0xC0000000 | 0x00dc) 269 + #define NT_STATUS_INVALID_DOMAIN_STATE (0xC0000000 | 0x00dd) 270 + #define NT_STATUS_INVALID_DOMAIN_ROLE (0xC0000000 | 0x00de) 271 + #define NT_STATUS_NO_SUCH_DOMAIN (0xC0000000 | 0x00df) 272 + #define NT_STATUS_DOMAIN_EXISTS (0xC0000000 | 0x00e0) 273 + #define NT_STATUS_DOMAIN_LIMIT_EXCEEDED (0xC0000000 | 0x00e1) 274 + #define NT_STATUS_OPLOCK_NOT_GRANTED (0xC0000000 | 0x00e2) 275 + #define NT_STATUS_INVALID_OPLOCK_PROTOCOL (0xC0000000 | 0x00e3) 276 + #define NT_STATUS_INTERNAL_DB_CORRUPTION (0xC0000000 | 0x00e4) 277 + #define NT_STATUS_INTERNAL_ERROR (0xC0000000 | 0x00e5) 278 + #define NT_STATUS_GENERIC_NOT_MAPPED (0xC0000000 | 0x00e6) 279 + #define NT_STATUS_BAD_DESCRIPTOR_FORMAT (0xC0000000 | 0x00e7) 280 + #define NT_STATUS_INVALID_USER_BUFFER (0xC0000000 | 0x00e8) 281 + #define NT_STATUS_UNEXPECTED_IO_ERROR (0xC0000000 | 0x00e9) 282 + #define NT_STATUS_UNEXPECTED_MM_CREATE_ERR (0xC0000000 | 0x00ea) 283 + #define NT_STATUS_UNEXPECTED_MM_MAP_ERROR (0xC0000000 | 0x00eb) 284 + #define NT_STATUS_UNEXPECTED_MM_EXTEND_ERR (0xC0000000 | 0x00ec) 285 + #define NT_STATUS_NOT_LOGON_PROCESS (0xC0000000 | 0x00ed) 286 + #define NT_STATUS_LOGON_SESSION_EXISTS (0xC0000000 | 0x00ee) 287 + #define NT_STATUS_INVALID_PARAMETER_1 (0xC0000000 | 0x00ef) 288 + #define NT_STATUS_INVALID_PARAMETER_2 (0xC0000000 | 0x00f0) 289 + #define NT_STATUS_INVALID_PARAMETER_3 (0xC0000000 | 0x00f1) 290 + #define NT_STATUS_INVALID_PARAMETER_4 (0xC0000000 | 0x00f2) 291 + #define NT_STATUS_INVALID_PARAMETER_5 (0xC0000000 | 0x00f3) 292 + #define NT_STATUS_INVALID_PARAMETER_6 (0xC0000000 | 0x00f4) 293 + #define NT_STATUS_INVALID_PARAMETER_7 (0xC0000000 | 0x00f5) 294 + #define NT_STATUS_INVALID_PARAMETER_8 (0xC0000000 | 0x00f6) 295 + #define NT_STATUS_INVALID_PARAMETER_9 (0xC0000000 | 0x00f7) 296 + #define NT_STATUS_INVALID_PARAMETER_10 (0xC0000000 | 0x00f8) 297 + #define NT_STATUS_INVALID_PARAMETER_11 (0xC0000000 | 0x00f9) 298 + #define NT_STATUS_INVALID_PARAMETER_12 (0xC0000000 | 0x00fa) 299 + #define NT_STATUS_REDIRECTOR_NOT_STARTED (0xC0000000 | 0x00fb) 300 + #define NT_STATUS_REDIRECTOR_STARTED (0xC0000000 | 0x00fc) 301 + #define NT_STATUS_STACK_OVERFLOW (0xC0000000 | 0x00fd) 302 + #define NT_STATUS_NO_SUCH_PACKAGE (0xC0000000 | 0x00fe) 303 + #define NT_STATUS_BAD_FUNCTION_TABLE (0xC0000000 | 0x00ff) 304 + #define NT_STATUS_DIRECTORY_NOT_EMPTY (0xC0000000 | 0x0101) 305 + #define NT_STATUS_FILE_CORRUPT_ERROR (0xC0000000 | 0x0102) 306 + #define NT_STATUS_NOT_A_DIRECTORY (0xC0000000 | 0x0103) 307 + #define NT_STATUS_BAD_LOGON_SESSION_STATE (0xC0000000 | 0x0104) 308 + #define NT_STATUS_LOGON_SESSION_COLLISION (0xC0000000 | 0x0105) 309 + #define NT_STATUS_NAME_TOO_LONG (0xC0000000 | 0x0106) 310 + #define NT_STATUS_FILES_OPEN (0xC0000000 | 0x0107) 311 + #define NT_STATUS_CONNECTION_IN_USE (0xC0000000 | 0x0108) 312 + #define NT_STATUS_MESSAGE_NOT_FOUND (0xC0000000 | 0x0109) 313 + #define NT_STATUS_PROCESS_IS_TERMINATING (0xC0000000 | 0x010a) 314 + #define NT_STATUS_INVALID_LOGON_TYPE (0xC0000000 | 0x010b) 315 + #define NT_STATUS_NO_GUID_TRANSLATION (0xC0000000 | 0x010c) 316 + #define NT_STATUS_CANNOT_IMPERSONATE (0xC0000000 | 0x010d) 317 + #define NT_STATUS_IMAGE_ALREADY_LOADED (0xC0000000 | 0x010e) 318 + #define NT_STATUS_ABIOS_NOT_PRESENT (0xC0000000 | 0x010f) 319 + #define NT_STATUS_ABIOS_LID_NOT_EXIST (0xC0000000 | 0x0110) 320 + #define NT_STATUS_ABIOS_LID_ALREADY_OWNED (0xC0000000 | 0x0111) 321 + #define NT_STATUS_ABIOS_NOT_LID_OWNER (0xC0000000 | 0x0112) 322 + #define NT_STATUS_ABIOS_INVALID_COMMAND (0xC0000000 | 0x0113) 323 + #define NT_STATUS_ABIOS_INVALID_LID (0xC0000000 | 0x0114) 324 + #define NT_STATUS_ABIOS_SELECTOR_NOT_AVAILABLE (0xC0000000 | 0x0115) 325 + #define NT_STATUS_ABIOS_INVALID_SELECTOR (0xC0000000 | 0x0116) 326 + #define NT_STATUS_NO_LDT (0xC0000000 | 0x0117) 327 + #define NT_STATUS_INVALID_LDT_SIZE (0xC0000000 | 0x0118) 328 + #define NT_STATUS_INVALID_LDT_OFFSET (0xC0000000 | 0x0119) 329 + #define NT_STATUS_INVALID_LDT_DESCRIPTOR (0xC0000000 | 0x011a) 330 + #define NT_STATUS_INVALID_IMAGE_NE_FORMAT (0xC0000000 | 0x011b) 331 + #define NT_STATUS_RXACT_INVALID_STATE (0xC0000000 | 0x011c) 332 + #define NT_STATUS_RXACT_COMMIT_FAILURE (0xC0000000 | 0x011d) 333 + #define NT_STATUS_MAPPED_FILE_SIZE_ZERO (0xC0000000 | 0x011e) 334 + #define NT_STATUS_TOO_MANY_OPENED_FILES (0xC0000000 | 0x011f) 335 + #define NT_STATUS_CANCELLED (0xC0000000 | 0x0120) 336 + #define NT_STATUS_CANNOT_DELETE (0xC0000000 | 0x0121) 337 + #define NT_STATUS_INVALID_COMPUTER_NAME (0xC0000000 | 0x0122) 338 + #define NT_STATUS_FILE_DELETED (0xC0000000 | 0x0123) 339 + #define NT_STATUS_SPECIAL_ACCOUNT (0xC0000000 | 0x0124) 340 + #define NT_STATUS_SPECIAL_GROUP (0xC0000000 | 0x0125) 341 + #define NT_STATUS_SPECIAL_USER (0xC0000000 | 0x0126) 342 + #define NT_STATUS_MEMBERS_PRIMARY_GROUP (0xC0000000 | 0x0127) 343 + #define NT_STATUS_FILE_CLOSED (0xC0000000 | 0x0128) 344 + #define NT_STATUS_TOO_MANY_THREADS (0xC0000000 | 0x0129) 345 + #define NT_STATUS_THREAD_NOT_IN_PROCESS (0xC0000000 | 0x012a) 346 + #define NT_STATUS_TOKEN_ALREADY_IN_USE (0xC0000000 | 0x012b) 347 + #define NT_STATUS_PAGEFILE_QUOTA_EXCEEDED (0xC0000000 | 0x012c) 348 + #define NT_STATUS_COMMITMENT_LIMIT (0xC0000000 | 0x012d) 349 + #define NT_STATUS_INVALID_IMAGE_LE_FORMAT (0xC0000000 | 0x012e) 350 + #define NT_STATUS_INVALID_IMAGE_NOT_MZ (0xC0000000 | 0x012f) 351 + #define NT_STATUS_INVALID_IMAGE_PROTECT (0xC0000000 | 0x0130) 352 + #define NT_STATUS_INVALID_IMAGE_WIN_16 (0xC0000000 | 0x0131) 353 + #define NT_STATUS_LOGON_SERVER_CONFLICT (0xC0000000 | 0x0132) 354 + #define NT_STATUS_TIME_DIFFERENCE_AT_DC (0xC0000000 | 0x0133) 355 + #define NT_STATUS_SYNCHRONIZATION_REQUIRED (0xC0000000 | 0x0134) 356 + #define NT_STATUS_DLL_NOT_FOUND (0xC0000000 | 0x0135) 357 + #define NT_STATUS_OPEN_FAILED (0xC0000000 | 0x0136) 358 + #define NT_STATUS_IO_PRIVILEGE_FAILED (0xC0000000 | 0x0137) 359 + #define NT_STATUS_ORDINAL_NOT_FOUND (0xC0000000 | 0x0138) 360 + #define NT_STATUS_ENTRYPOINT_NOT_FOUND (0xC0000000 | 0x0139) 361 + #define NT_STATUS_CONTROL_C_EXIT (0xC0000000 | 0x013a) 362 + #define NT_STATUS_LOCAL_DISCONNECT (0xC0000000 | 0x013b) 363 + #define NT_STATUS_REMOTE_DISCONNECT (0xC0000000 | 0x013c) 364 + #define NT_STATUS_REMOTE_RESOURCES (0xC0000000 | 0x013d) 365 + #define NT_STATUS_LINK_FAILED (0xC0000000 | 0x013e) 366 + #define NT_STATUS_LINK_TIMEOUT (0xC0000000 | 0x013f) 367 + #define NT_STATUS_INVALID_CONNECTION (0xC0000000 | 0x0140) 368 + #define NT_STATUS_INVALID_ADDRESS (0xC0000000 | 0x0141) 369 + #define NT_STATUS_DLL_INIT_FAILED (0xC0000000 | 0x0142) 370 + #define NT_STATUS_MISSING_SYSTEMFILE (0xC0000000 | 0x0143) 371 + #define NT_STATUS_UNHANDLED_EXCEPTION (0xC0000000 | 0x0144) 372 + #define NT_STATUS_APP_INIT_FAILURE (0xC0000000 | 0x0145) 373 + #define NT_STATUS_PAGEFILE_CREATE_FAILED (0xC0000000 | 0x0146) 374 + #define NT_STATUS_NO_PAGEFILE (0xC0000000 | 0x0147) 375 + #define NT_STATUS_INVALID_LEVEL (0xC0000000 | 0x0148) 376 + #define NT_STATUS_WRONG_PASSWORD_CORE (0xC0000000 | 0x0149) 377 + #define NT_STATUS_ILLEGAL_FLOAT_CONTEXT (0xC0000000 | 0x014a) 378 + #define NT_STATUS_PIPE_BROKEN (0xC0000000 | 0x014b) 379 + #define NT_STATUS_REGISTRY_CORRUPT (0xC0000000 | 0x014c) 380 + #define NT_STATUS_REGISTRY_IO_FAILED (0xC0000000 | 0x014d) 381 + #define NT_STATUS_NO_EVENT_PAIR (0xC0000000 | 0x014e) 382 + #define NT_STATUS_UNRECOGNIZED_VOLUME (0xC0000000 | 0x014f) 383 + #define NT_STATUS_SERIAL_NO_DEVICE_INITED (0xC0000000 | 0x0150) 384 + #define NT_STATUS_NO_SUCH_ALIAS (0xC0000000 | 0x0151) 385 + #define NT_STATUS_MEMBER_NOT_IN_ALIAS (0xC0000000 | 0x0152) 386 + #define NT_STATUS_MEMBER_IN_ALIAS (0xC0000000 | 0x0153) 387 + #define NT_STATUS_ALIAS_EXISTS (0xC0000000 | 0x0154) 388 + #define NT_STATUS_LOGON_NOT_GRANTED (0xC0000000 | 0x0155) 389 + #define NT_STATUS_TOO_MANY_SECRETS (0xC0000000 | 0x0156) 390 + #define NT_STATUS_SECRET_TOO_LONG (0xC0000000 | 0x0157) 391 + #define NT_STATUS_INTERNAL_DB_ERROR (0xC0000000 | 0x0158) 392 + #define NT_STATUS_FULLSCREEN_MODE (0xC0000000 | 0x0159) 393 + #define NT_STATUS_TOO_MANY_CONTEXT_IDS (0xC0000000 | 0x015a) 394 + #define NT_STATUS_LOGON_TYPE_NOT_GRANTED (0xC0000000 | 0x015b) 395 + #define NT_STATUS_NOT_REGISTRY_FILE (0xC0000000 | 0x015c) 396 + #define NT_STATUS_NT_CROSS_ENCRYPTION_REQUIRED (0xC0000000 | 0x015d) 397 + #define NT_STATUS_DOMAIN_CTRLR_CONFIG_ERROR (0xC0000000 | 0x015e) 398 + #define NT_STATUS_FT_MISSING_MEMBER (0xC0000000 | 0x015f) 399 + #define NT_STATUS_ILL_FORMED_SERVICE_ENTRY (0xC0000000 | 0x0160) 400 + #define NT_STATUS_ILLEGAL_CHARACTER (0xC0000000 | 0x0161) 401 + #define NT_STATUS_UNMAPPABLE_CHARACTER (0xC0000000 | 0x0162) 402 + #define NT_STATUS_UNDEFINED_CHARACTER (0xC0000000 | 0x0163) 403 + #define NT_STATUS_FLOPPY_VOLUME (0xC0000000 | 0x0164) 404 + #define NT_STATUS_FLOPPY_ID_MARK_NOT_FOUND (0xC0000000 | 0x0165) 405 + #define NT_STATUS_FLOPPY_WRONG_CYLINDER (0xC0000000 | 0x0166) 406 + #define NT_STATUS_FLOPPY_UNKNOWN_ERROR (0xC0000000 | 0x0167) 407 + #define NT_STATUS_FLOPPY_BAD_REGISTERS (0xC0000000 | 0x0168) 408 + #define NT_STATUS_DISK_RECALIBRATE_FAILED (0xC0000000 | 0x0169) 409 + #define NT_STATUS_DISK_OPERATION_FAILED (0xC0000000 | 0x016a) 410 + #define NT_STATUS_DISK_RESET_FAILED (0xC0000000 | 0x016b) 411 + #define NT_STATUS_SHARED_IRQ_BUSY (0xC0000000 | 0x016c) 412 + #define NT_STATUS_FT_ORPHANING (0xC0000000 | 0x016d) 413 + #define NT_STATUS_PARTITION_FAILURE (0xC0000000 | 0x0172) 414 + #define NT_STATUS_INVALID_BLOCK_LENGTH (0xC0000000 | 0x0173) 415 + #define NT_STATUS_DEVICE_NOT_PARTITIONED (0xC0000000 | 0x0174) 416 + #define NT_STATUS_UNABLE_TO_LOCK_MEDIA (0xC0000000 | 0x0175) 417 + #define NT_STATUS_UNABLE_TO_UNLOAD_MEDIA (0xC0000000 | 0x0176) 418 + #define NT_STATUS_EOM_OVERFLOW (0xC0000000 | 0x0177) 419 + #define NT_STATUS_NO_MEDIA (0xC0000000 | 0x0178) 420 + #define NT_STATUS_NO_SUCH_MEMBER (0xC0000000 | 0x017a) 421 + #define NT_STATUS_INVALID_MEMBER (0xC0000000 | 0x017b) 422 + #define NT_STATUS_KEY_DELETED (0xC0000000 | 0x017c) 423 + #define NT_STATUS_NO_LOG_SPACE (0xC0000000 | 0x017d) 424 + #define NT_STATUS_TOO_MANY_SIDS (0xC0000000 | 0x017e) 425 + #define NT_STATUS_LM_CROSS_ENCRYPTION_REQUIRED (0xC0000000 | 0x017f) 426 + #define NT_STATUS_KEY_HAS_CHILDREN (0xC0000000 | 0x0180) 427 + #define NT_STATUS_CHILD_MUST_BE_VOLATILE (0xC0000000 | 0x0181) 428 + #define NT_STATUS_DEVICE_CONFIGURATION_ERROR (0xC0000000 | 0x0182) 429 + #define NT_STATUS_DRIVER_INTERNAL_ERROR (0xC0000000 | 0x0183) 430 + #define NT_STATUS_INVALID_DEVICE_STATE (0xC0000000 | 0x0184) 431 + #define NT_STATUS_IO_DEVICE_ERROR (0xC0000000 | 0x0185) 432 + #define NT_STATUS_DEVICE_PROTOCOL_ERROR (0xC0000000 | 0x0186) 433 + #define NT_STATUS_BACKUP_CONTROLLER (0xC0000000 | 0x0187) 434 + #define NT_STATUS_LOG_FILE_FULL (0xC0000000 | 0x0188) 435 + #define NT_STATUS_TOO_LATE (0xC0000000 | 0x0189) 436 + #define NT_STATUS_NO_TRUST_LSA_SECRET (0xC0000000 | 0x018a) 437 + #define NT_STATUS_NO_TRUST_SAM_ACCOUNT (0xC0000000 | 0x018b) 438 + #define NT_STATUS_TRUSTED_DOMAIN_FAILURE (0xC0000000 | 0x018c) 439 + #define NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE (0xC0000000 | 0x018d) 440 + #define NT_STATUS_EVENTLOG_FILE_CORRUPT (0xC0000000 | 0x018e) 441 + #define NT_STATUS_EVENTLOG_CANT_START (0xC0000000 | 0x018f) 442 + #define NT_STATUS_TRUST_FAILURE (0xC0000000 | 0x0190) 443 + #define NT_STATUS_MUTANT_LIMIT_EXCEEDED (0xC0000000 | 0x0191) 444 + #define NT_STATUS_NETLOGON_NOT_STARTED (0xC0000000 | 0x0192) 445 + #define NT_STATUS_ACCOUNT_EXPIRED (0xC0000000 | 0x0193) 446 + #define NT_STATUS_POSSIBLE_DEADLOCK (0xC0000000 | 0x0194) 447 + #define NT_STATUS_NETWORK_CREDENTIAL_CONFLICT (0xC0000000 | 0x0195) 448 + #define NT_STATUS_REMOTE_SESSION_LIMIT (0xC0000000 | 0x0196) 449 + #define NT_STATUS_EVENTLOG_FILE_CHANGED (0xC0000000 | 0x0197) 450 + #define NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT (0xC0000000 | 0x0198) 451 + #define NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT (0xC0000000 | 0x0199) 452 + #define NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT (0xC0000000 | 0x019a) 453 + #define NT_STATUS_DOMAIN_TRUST_INCONSISTENT (0xC0000000 | 0x019b) 454 + #define NT_STATUS_FS_DRIVER_REQUIRED (0xC0000000 | 0x019c) 455 + #define NT_STATUS_INVALID_LOCK_RANGE (0xC0000000 | 0x01a1) 456 + #define NT_STATUS_NO_USER_SESSION_KEY (0xC0000000 | 0x0202) 457 + #define NT_STATUS_USER_SESSION_DELETED (0xC0000000 | 0x0203) 458 + #define NT_STATUS_RESOURCE_LANG_NOT_FOUND (0xC0000000 | 0x0204) 459 + #define NT_STATUS_INSUFF_SERVER_RESOURCES (0xC0000000 | 0x0205) 460 + #define NT_STATUS_INVALID_BUFFER_SIZE (0xC0000000 | 0x0206) 461 + #define NT_STATUS_INVALID_ADDRESS_COMPONENT (0xC0000000 | 0x0207) 462 + #define NT_STATUS_INVALID_ADDRESS_WILDCARD (0xC0000000 | 0x0208) 463 + #define NT_STATUS_TOO_MANY_ADDRESSES (0xC0000000 | 0x0209) 464 + #define NT_STATUS_ADDRESS_ALREADY_EXISTS (0xC0000000 | 0x020a) 465 + #define NT_STATUS_ADDRESS_CLOSED (0xC0000000 | 0x020b) 466 + #define NT_STATUS_CONNECTION_DISCONNECTED (0xC0000000 | 0x020c) 467 + #define NT_STATUS_CONNECTION_RESET (0xC0000000 | 0x020d) 468 + #define NT_STATUS_TOO_MANY_NODES (0xC0000000 | 0x020e) 469 + #define NT_STATUS_TRANSACTION_ABORTED (0xC0000000 | 0x020f) 470 + #define NT_STATUS_TRANSACTION_TIMED_OUT (0xC0000000 | 0x0210) 471 + #define NT_STATUS_TRANSACTION_NO_RELEASE (0xC0000000 | 0x0211) 472 + #define NT_STATUS_TRANSACTION_NO_MATCH (0xC0000000 | 0x0212) 473 + #define NT_STATUS_TRANSACTION_RESPONDED (0xC0000000 | 0x0213) 474 + #define NT_STATUS_TRANSACTION_INVALID_ID (0xC0000000 | 0x0214) 475 + #define NT_STATUS_TRANSACTION_INVALID_TYPE (0xC0000000 | 0x0215) 476 + #define NT_STATUS_NOT_SERVER_SESSION (0xC0000000 | 0x0216) 477 + #define NT_STATUS_NOT_CLIENT_SESSION (0xC0000000 | 0x0217) 478 + #define NT_STATUS_CANNOT_LOAD_REGISTRY_FILE (0xC0000000 | 0x0218) 479 + #define NT_STATUS_DEBUG_ATTACH_FAILED (0xC0000000 | 0x0219) 480 + #define NT_STATUS_SYSTEM_PROCESS_TERMINATED (0xC0000000 | 0x021a) 481 + #define NT_STATUS_DATA_NOT_ACCEPTED (0xC0000000 | 0x021b) 482 + #define NT_STATUS_NO_BROWSER_SERVERS_FOUND (0xC0000000 | 0x021c) 483 + #define NT_STATUS_VDM_HARD_ERROR (0xC0000000 | 0x021d) 484 + #define NT_STATUS_DRIVER_CANCEL_TIMEOUT (0xC0000000 | 0x021e) 485 + #define NT_STATUS_REPLY_MESSAGE_MISMATCH (0xC0000000 | 0x021f) 486 + #define NT_STATUS_MAPPED_ALIGNMENT (0xC0000000 | 0x0220) 487 + #define NT_STATUS_IMAGE_CHECKSUM_MISMATCH (0xC0000000 | 0x0221) 488 + #define NT_STATUS_LOST_WRITEBEHIND_DATA (0xC0000000 | 0x0222) 489 + #define NT_STATUS_CLIENT_SERVER_PARAMETERS_INVALID (0xC0000000 | 0x0223) 490 + #define NT_STATUS_PASSWORD_MUST_CHANGE (0xC0000000 | 0x0224) 491 + #define NT_STATUS_NOT_FOUND (0xC0000000 | 0x0225) 492 + #define NT_STATUS_NOT_TINY_STREAM (0xC0000000 | 0x0226) 493 + #define NT_STATUS_RECOVERY_FAILURE (0xC0000000 | 0x0227) 494 + #define NT_STATUS_STACK_OVERFLOW_READ (0xC0000000 | 0x0228) 495 + #define NT_STATUS_FAIL_CHECK (0xC0000000 | 0x0229) 496 + #define NT_STATUS_DUPLICATE_OBJECTID (0xC0000000 | 0x022a) 497 + #define NT_STATUS_OBJECTID_EXISTS (0xC0000000 | 0x022b) 498 + #define NT_STATUS_CONVERT_TO_LARGE (0xC0000000 | 0x022c) 499 + #define NT_STATUS_RETRY (0xC0000000 | 0x022d) 500 + #define NT_STATUS_FOUND_OUT_OF_SCOPE (0xC0000000 | 0x022e) 501 + #define NT_STATUS_ALLOCATE_BUCKET (0xC0000000 | 0x022f) 502 + #define NT_STATUS_PROPSET_NOT_FOUND (0xC0000000 | 0x0230) 503 + #define NT_STATUS_MARSHALL_OVERFLOW (0xC0000000 | 0x0231) 504 + #define NT_STATUS_INVALID_VARIANT (0xC0000000 | 0x0232) 505 + #define NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND (0xC0000000 | 0x0233) 506 + #define NT_STATUS_ACCOUNT_LOCKED_OUT (0xC0000000 | 0x0234) 507 + #define NT_STATUS_HANDLE_NOT_CLOSABLE (0xC0000000 | 0x0235) 508 + #define NT_STATUS_CONNECTION_REFUSED (0xC0000000 | 0x0236) 509 + #define NT_STATUS_GRACEFUL_DISCONNECT (0xC0000000 | 0x0237) 510 + #define NT_STATUS_ADDRESS_ALREADY_ASSOCIATED (0xC0000000 | 0x0238) 511 + #define NT_STATUS_ADDRESS_NOT_ASSOCIATED (0xC0000000 | 0x0239) 512 + #define NT_STATUS_CONNECTION_INVALID (0xC0000000 | 0x023a) 513 + #define NT_STATUS_CONNECTION_ACTIVE (0xC0000000 | 0x023b) 514 + #define NT_STATUS_NETWORK_UNREACHABLE (0xC0000000 | 0x023c) 515 + #define NT_STATUS_HOST_UNREACHABLE (0xC0000000 | 0x023d) 516 + #define NT_STATUS_PROTOCOL_UNREACHABLE (0xC0000000 | 0x023e) 517 + #define NT_STATUS_PORT_UNREACHABLE (0xC0000000 | 0x023f) 518 + #define NT_STATUS_REQUEST_ABORTED (0xC0000000 | 0x0240) 519 + #define NT_STATUS_CONNECTION_ABORTED (0xC0000000 | 0x0241) 520 + #define NT_STATUS_BAD_COMPRESSION_BUFFER (0xC0000000 | 0x0242) 521 + #define NT_STATUS_USER_MAPPED_FILE (0xC0000000 | 0x0243) 522 + #define NT_STATUS_AUDIT_FAILED (0xC0000000 | 0x0244) 523 + #define NT_STATUS_TIMER_RESOLUTION_NOT_SET (0xC0000000 | 0x0245) 524 + #define NT_STATUS_CONNECTION_COUNT_LIMIT (0xC0000000 | 0x0246) 525 + #define NT_STATUS_LOGIN_TIME_RESTRICTION (0xC0000000 | 0x0247) 526 + #define NT_STATUS_LOGIN_WKSTA_RESTRICTION (0xC0000000 | 0x0248) 527 + #define NT_STATUS_IMAGE_MP_UP_MISMATCH (0xC0000000 | 0x0249) 528 + #define NT_STATUS_INSUFFICIENT_LOGON_INFO (0xC0000000 | 0x0250) 529 + #define NT_STATUS_BAD_DLL_ENTRYPOINT (0xC0000000 | 0x0251) 530 + #define NT_STATUS_BAD_SERVICE_ENTRYPOINT (0xC0000000 | 0x0252) 531 + #define NT_STATUS_LPC_REPLY_LOST (0xC0000000 | 0x0253) 532 + #define NT_STATUS_IP_ADDRESS_CONFLICT1 (0xC0000000 | 0x0254) 533 + #define NT_STATUS_IP_ADDRESS_CONFLICT2 (0xC0000000 | 0x0255) 534 + #define NT_STATUS_REGISTRY_QUOTA_LIMIT (0xC0000000 | 0x0256) 535 + #define NT_STATUS_PATH_NOT_COVERED (0xC0000000 | 0x0257) 536 + #define NT_STATUS_NO_CALLBACK_ACTIVE (0xC0000000 | 0x0258) 537 + #define NT_STATUS_LICENSE_QUOTA_EXCEEDED (0xC0000000 | 0x0259) 538 + #define NT_STATUS_PWD_TOO_SHORT (0xC0000000 | 0x025a) 539 + #define NT_STATUS_PWD_TOO_RECENT (0xC0000000 | 0x025b) 540 + #define NT_STATUS_PWD_HISTORY_CONFLICT (0xC0000000 | 0x025c) 541 + #define NT_STATUS_PLUGPLAY_NO_DEVICE (0xC0000000 | 0x025e) 542 + #define NT_STATUS_UNSUPPORTED_COMPRESSION (0xC0000000 | 0x025f) 543 + #define NT_STATUS_INVALID_HW_PROFILE (0xC0000000 | 0x0260) 544 + #define NT_STATUS_INVALID_PLUGPLAY_DEVICE_PATH (0xC0000000 | 0x0261) 545 + #define NT_STATUS_DRIVER_ORDINAL_NOT_FOUND (0xC0000000 | 0x0262) 546 + #define NT_STATUS_DRIVER_ENTRYPOINT_NOT_FOUND (0xC0000000 | 0x0263) 547 + #define NT_STATUS_RESOURCE_NOT_OWNED (0xC0000000 | 0x0264) 548 + #define NT_STATUS_TOO_MANY_LINKS (0xC0000000 | 0x0265) 549 + #define NT_STATUS_QUOTA_LIST_INCONSISTENT (0xC0000000 | 0x0266) 550 + #define NT_STATUS_FILE_IS_OFFLINE (0xC0000000 | 0x0267) 551 + #define NT_STATUS_NOT_A_REPARSE_POINT (0xC0000000 | 0x0275) 552 + #define NT_STATUS_NETWORK_SESSION_EXPIRED (0xC0000000 | 0x035c) 553 + #define NT_STATUS_NO_SUCH_JOB (0xC0000000 | 0xEDE) /* scheduler */ 554 + #define NT_STATUS_NO_PREAUTH_INTEGRITY_HASH_OVERLAP (0xC0000000 | 0x5D0000) 551 555 552 556 #endif /* _NTERR_H */
+56
fs/smb/common/fscc.h
··· 145 145 } __packed FILE_SYSTEM_DEVICE_INFO; /* device info level 0x104 */ 146 146 147 147 /* 148 + * File Attributes 149 + * See MS-FSCC 2.6 150 + */ 151 + #define FILE_ATTRIBUTE_READONLY 0x00000001 152 + #define FILE_ATTRIBUTE_HIDDEN 0x00000002 153 + #define FILE_ATTRIBUTE_SYSTEM 0x00000004 154 + #define FILE_ATTRIBUTE_DIRECTORY 0x00000010 155 + #define FILE_ATTRIBUTE_ARCHIVE 0x00000020 156 + #define FILE_ATTRIBUTE_NORMAL 0x00000080 157 + #define FILE_ATTRIBUTE_TEMPORARY 0x00000100 158 + #define FILE_ATTRIBUTE_SPARSE_FILE 0x00000200 159 + #define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400 160 + #define FILE_ATTRIBUTE_COMPRESSED 0x00000800 161 + #define FILE_ATTRIBUTE_OFFLINE 0x00001000 162 + #define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000 163 + #define FILE_ATTRIBUTE_ENCRYPTED 0x00004000 164 + #define FILE_ATTRIBUTE_INTEGRITY_STREAM 0x00008000 165 + #define FILE_ATTRIBUTE_NO_SCRUB_DATA 0x00020000 166 + #define FILE_ATTRIBUTE_MASK (FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_HIDDEN | \ 167 + FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_DIRECTORY | \ 168 + FILE_ATTRIBUTE_ARCHIVE | FILE_ATTRIBUTE_NORMAL | \ 169 + FILE_ATTRIBUTE_TEMPORARY | FILE_ATTRIBUTE_SPARSE_FILE | \ 170 + FILE_ATTRIBUTE_REPARSE_POINT | FILE_ATTRIBUTE_COMPRESSED | \ 171 + FILE_ATTRIBUTE_OFFLINE | FILE_ATTRIBUTE_NOT_CONTENT_INDEXED | \ 172 + FILE_ATTRIBUTE_ENCRYPTED | FILE_ATTRIBUTE_INTEGRITY_STREAM | \ 173 + FILE_ATTRIBUTE_NO_SCRUB_DATA) 174 + 175 + #define FILE_ATTRIBUTE_READONLY_LE cpu_to_le32(FILE_ATTRIBUTE_READONLY) 176 + #define FILE_ATTRIBUTE_HIDDEN_LE cpu_to_le32(FILE_ATTRIBUTE_HIDDEN) 177 + #define FILE_ATTRIBUTE_SYSTEM_LE cpu_to_le32(FILE_ATTRIBUTE_SYSTEM) 178 + #define FILE_ATTRIBUTE_DIRECTORY_LE cpu_to_le32(FILE_ATTRIBUTE_DIRECTORY) 179 + #define FILE_ATTRIBUTE_ARCHIVE_LE cpu_to_le32(FILE_ATTRIBUTE_ARCHIVE) 180 + #define FILE_ATTRIBUTE_NORMAL_LE cpu_to_le32(FILE_ATTRIBUTE_NORMAL) 181 + #define FILE_ATTRIBUTE_TEMPORARY_LE cpu_to_le32(FILE_ATTRIBUTE_TEMPORARY) 182 + #define FILE_ATTRIBUTE_SPARSE_FILE_LE cpu_to_le32(FILE_ATTRIBUTE_SPARSE_FILE) 183 + #define FILE_ATTRIBUTE_REPARSE_POINT_LE cpu_to_le32(FILE_ATTRIBUTE_REPARSE_POINT) 184 + #define FILE_ATTRIBUTE_COMPRESSED_LE cpu_to_le32(FILE_ATTRIBUTE_COMPRESSED) 185 + #define FILE_ATTRIBUTE_OFFLINE_LE cpu_to_le32(FILE_ATTRIBUTE_OFFLINE) 186 + #define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED_LE cpu_to_le32(FILE_ATTRIBUTE_NOT_CONTENT_INDEXED) 187 + #define FILE_ATTRIBUTE_ENCRYPTED_LE cpu_to_le32(FILE_ATTRIBUTE_ENCRYPTED) 188 + #define FILE_ATTRIBUTE_INTEGRITY_STREAM_LE cpu_to_le32(FILE_ATTRIBUTE_INTEGRITY_STREAM) 189 + #define FILE_ATTRIBUTE_NO_SCRUB_DATA_LE cpu_to_le32(FILE_ATTRIBUTE_NO_SCRUB_DATA) 190 + #define FILE_ATTRIBUTE_MASK_LE cpu_to_le32(FILE_ATTRIBUTE_MASK) 191 + 192 + /* 193 + * Response contains array of the following structures 194 + * See MS-FSCC 2.7.1 195 + */ 196 + struct file_notify_information { 197 + __le32 NextEntryOffset; 198 + __le32 Action; 199 + __le32 FileNameLength; 200 + __u8 FileName[]; 201 + } __packed; 202 + 203 + /* 148 204 * See POSIX Extensions to MS-FSCC 2.3.2.1 149 205 * Link: https://gitlab.com/samba-team/smb3-posix-spec/-/blob/master/fscc_posix_extensions.md 150 206 */
+11 -37
fs/smb/common/smb2pdu.h
··· 991 991 /* notify completion filter flags. See MS-FSCC 2.6 and MS-SMB2 2.2.35 */ 992 992 #define FILE_NOTIFY_CHANGE_FILE_NAME 0x00000001 993 993 #define FILE_NOTIFY_CHANGE_DIR_NAME 0x00000002 994 + #define FILE_NOTIFY_CHANGE_NAME 0x00000003 994 995 #define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x00000004 995 996 #define FILE_NOTIFY_CHANGE_SIZE 0x00000008 996 997 #define FILE_NOTIFY_CHANGE_LAST_WRITE 0x00000010 ··· 1003 1002 #define FILE_NOTIFY_CHANGE_STREAM_SIZE 0x00000400 1004 1003 #define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800 1005 1004 1006 - /* SMB2 Notify Action Flags */ 1005 + /* 1006 + * SMB2 Notify Action Flags 1007 + * See MS-FSCC 2.7.1 1008 + */ 1007 1009 #define FILE_ACTION_ADDED 0x00000001 1008 1010 #define FILE_ACTION_REMOVED 0x00000002 1009 1011 #define FILE_ACTION_MODIFIED 0x00000003 ··· 1016 1012 #define FILE_ACTION_REMOVED_STREAM 0x00000007 1017 1013 #define FILE_ACTION_MODIFIED_STREAM 0x00000008 1018 1014 #define FILE_ACTION_REMOVED_BY_DELETE 0x00000009 1015 + #define FILE_ACTION_ID_NOT_TUNNELLED 0x0000000A 1016 + #define FILE_ACTION_TUNNELLED_ID_COLLISION 0x0000000B 1019 1017 1018 + /* See MS-SMB2 2.2.35 */ 1020 1019 struct smb2_change_notify_req { 1021 1020 struct smb2_hdr hdr; 1022 1021 __le16 StructureSize; ··· 1031 1024 __u32 Reserved; 1032 1025 } __packed; 1033 1026 1027 + /* See MS-SMB2 2.2.36 */ 1034 1028 struct smb2_change_notify_rsp { 1035 1029 struct smb2_hdr hdr; 1036 1030 __le16 StructureSize; /* Must be 9 */ ··· 1071 1063 #define IL_IDENTIFICATION cpu_to_le32(0x00000001) 1072 1064 #define IL_IMPERSONATION cpu_to_le32(0x00000002) 1073 1065 #define IL_DELEGATE cpu_to_le32(0x00000003) 1074 - 1075 - /* File Attributes */ 1076 - #define FILE_ATTRIBUTE_READONLY 0x00000001 1077 - #define FILE_ATTRIBUTE_HIDDEN 0x00000002 1078 - #define FILE_ATTRIBUTE_SYSTEM 0x00000004 1079 - #define FILE_ATTRIBUTE_DIRECTORY 0x00000010 1080 - #define FILE_ATTRIBUTE_ARCHIVE 0x00000020 1081 - #define FILE_ATTRIBUTE_NORMAL 0x00000080 1082 - #define FILE_ATTRIBUTE_TEMPORARY 0x00000100 1083 - #define FILE_ATTRIBUTE_SPARSE_FILE 0x00000200 1084 - #define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400 1085 - #define FILE_ATTRIBUTE_COMPRESSED 0x00000800 1086 - #define FILE_ATTRIBUTE_OFFLINE 0x00001000 1087 - #define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000 1088 - #define FILE_ATTRIBUTE_ENCRYPTED 0x00004000 1089 - #define FILE_ATTRIBUTE_INTEGRITY_STREAM 0x00008000 1090 - #define FILE_ATTRIBUTE_NO_SCRUB_DATA 0x00020000 1091 - #define FILE_ATTRIBUTE__MASK 0x00007FB7 1092 - 1093 - #define FILE_ATTRIBUTE_READONLY_LE cpu_to_le32(0x00000001) 1094 - #define FILE_ATTRIBUTE_HIDDEN_LE cpu_to_le32(0x00000002) 1095 - #define FILE_ATTRIBUTE_SYSTEM_LE cpu_to_le32(0x00000004) 1096 - #define FILE_ATTRIBUTE_DIRECTORY_LE cpu_to_le32(0x00000010) 1097 - #define FILE_ATTRIBUTE_ARCHIVE_LE cpu_to_le32(0x00000020) 1098 - #define FILE_ATTRIBUTE_NORMAL_LE cpu_to_le32(0x00000080) 1099 - #define FILE_ATTRIBUTE_TEMPORARY_LE cpu_to_le32(0x00000100) 1100 - #define FILE_ATTRIBUTE_SPARSE_FILE_LE cpu_to_le32(0x00000200) 1101 - #define FILE_ATTRIBUTE_REPARSE_POINT_LE cpu_to_le32(0x00000400) 1102 - #define FILE_ATTRIBUTE_COMPRESSED_LE cpu_to_le32(0x00000800) 1103 - #define FILE_ATTRIBUTE_OFFLINE_LE cpu_to_le32(0x00001000) 1104 - #define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED_LE cpu_to_le32(0x00002000) 1105 - #define FILE_ATTRIBUTE_ENCRYPTED_LE cpu_to_le32(0x00004000) 1106 - #define FILE_ATTRIBUTE_INTEGRITY_STREAM_LE cpu_to_le32(0x00008000) 1107 - #define FILE_ATTRIBUTE_NO_SCRUB_DATA_LE cpu_to_le32(0x00020000) 1108 - #define FILE_ATTRIBUTE_MASK_LE cpu_to_le32(0x00007FB7) 1109 1066 1110 1067 /* Desired Access Flags */ 1111 1068 #define FILE_READ_DATA_LE cpu_to_le32(0x00000001) ··· 1510 1537 __le64 ByteCount; /* Bytes to be copied */ 1511 1538 } __packed; 1512 1539 1513 - /* See MS-FSCC 2.3.8 */ 1540 + /* See MS-FSCC 2.3.9 */ 1514 1541 #define DUPLICATE_EXTENTS_DATA_EX_SOURCE_ATOMIC 0x00000001 1515 1542 struct duplicate_extents_to_file_ex { 1543 + __le64 StructureSize; /* MUST be set to 0x30 */ 1516 1544 __u64 PersistentFileHandle; /* source file handle, opaque endianness */ 1517 1545 __u64 VolatileFileHandle; 1518 1546 __le64 SourceFileOffset;