OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "sandbox/win/src/registry_interception.h" | 5 #include "sandbox/win/src/registry_interception.h" |
6 | 6 |
7 #include "sandbox/win/src/crosscall_client.h" | 7 #include "sandbox/win/src/crosscall_client.h" |
8 #include "sandbox/win/src/ipc_tags.h" | 8 #include "sandbox/win/src/ipc_tags.h" |
9 #include "sandbox/win/src/sandbox_factory.h" | 9 #include "sandbox/win/src/sandbox_factory.h" |
10 #include "sandbox/win/src/sandbox_nt_util.h" | 10 #include "sandbox/win/src/sandbox_nt_util.h" |
| 11 #include "sandbox/win/src/sandbox_utils.h" |
11 #include "sandbox/win/src/sharedmem_ipc_client.h" | 12 #include "sandbox/win/src/sharedmem_ipc_client.h" |
12 #include "sandbox/win/src/target_services.h" | 13 #include "sandbox/win/src/target_services.h" |
13 | 14 |
14 namespace sandbox { | 15 namespace sandbox { |
15 | 16 |
16 NTSTATUS WINAPI TargetNtCreateKey(NtCreateKeyFunction orig_CreateKey, | 17 NTSTATUS WINAPI TargetNtCreateKey(NtCreateKeyFunction orig_CreateKey, |
17 PHANDLE key, ACCESS_MASK desired_access, | 18 PHANDLE key, ACCESS_MASK desired_access, |
18 POBJECT_ATTRIBUTES object_attributes, | 19 POBJECT_ATTRIBUTES object_attributes, |
19 ULONG title_index, PUNICODE_STRING class_name, | 20 ULONG title_index, PUNICODE_STRING class_name, |
20 ULONG create_options, PULONG disposition) { | 21 ULONG create_options, PULONG disposition) { |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 // We do not support open_options at this time. The 2 current known values | 168 // We do not support open_options at this time. The 2 current known values |
168 // are REG_OPTION_CREATE_LINK, to open a symbolic link, and | 169 // are REG_OPTION_CREATE_LINK, to open a symbolic link, and |
169 // REG_OPTION_BACKUP_RESTORE to open the key with special privileges. | 170 // REG_OPTION_BACKUP_RESTORE to open the key with special privileges. |
170 if (NT_SUCCESS(status) || open_options != 0) | 171 if (NT_SUCCESS(status) || open_options != 0) |
171 return status; | 172 return status; |
172 | 173 |
173 return CommonNtOpenKey(status, key, desired_access, object_attributes); | 174 return CommonNtOpenKey(status, key, desired_access, object_attributes); |
174 } | 175 } |
175 | 176 |
176 } // namespace sandbox | 177 } // namespace sandbox |
OLD | NEW |