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/src/registry_interception.h" | 5 #include "sandbox/win/src/registry_interception.h" |
6 | 6 |
7 #include "sandbox/src/crosscall_client.h" | 7 #include "sandbox/win/src/crosscall_client.h" |
8 #include "sandbox/src/ipc_tags.h" | 8 #include "sandbox/win/src/ipc_tags.h" |
9 #include "sandbox/src/sandbox_factory.h" | 9 #include "sandbox/win/src/sandbox_factory.h" |
10 #include "sandbox/src/sandbox_nt_util.h" | 10 #include "sandbox/win/src/sandbox_nt_util.h" |
11 #include "sandbox/src/sharedmem_ipc_client.h" | 11 #include "sandbox/win/src/sharedmem_ipc_client.h" |
12 #include "sandbox/src/target_services.h" | 12 #include "sandbox/win/src/target_services.h" |
13 | 13 |
14 namespace sandbox { | 14 namespace sandbox { |
15 | 15 |
16 NTSTATUS WINAPI TargetNtCreateKey(NtCreateKeyFunction orig_CreateKey, | 16 NTSTATUS WINAPI TargetNtCreateKey(NtCreateKeyFunction orig_CreateKey, |
17 PHANDLE key, ACCESS_MASK desired_access, | 17 PHANDLE key, ACCESS_MASK desired_access, |
18 POBJECT_ATTRIBUTES object_attributes, | 18 POBJECT_ATTRIBUTES object_attributes, |
19 ULONG title_index, PUNICODE_STRING class_name, | 19 ULONG title_index, PUNICODE_STRING class_name, |
20 ULONG create_options, PULONG disposition) { | 20 ULONG create_options, PULONG disposition) { |
21 // Check if the process can create it first. | 21 // Check if the process can create it first. |
22 NTSTATUS status = orig_CreateKey(key, desired_access, object_attributes, | 22 NTSTATUS status = orig_CreateKey(key, desired_access, object_attributes, |
(...skipping 144 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 | 167 // 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 | 168 // are REG_OPTION_CREATE_LINK, to open a symbolic link, and |
169 // REG_OPTION_BACKUP_RESTORE to open the key with special privileges. | 169 // REG_OPTION_BACKUP_RESTORE to open the key with special privileges. |
170 if (NT_SUCCESS(status) || open_options != 0) | 170 if (NT_SUCCESS(status) || open_options != 0) |
171 return status; | 171 return status; |
172 | 172 |
173 return CommonNtOpenKey(status, key, desired_access, object_attributes); | 173 return CommonNtOpenKey(status, key, desired_access, object_attributes); |
174 } | 174 } |
175 | 175 |
176 } // namespace sandbox | 176 } // namespace sandbox |
OLD | NEW |