1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
7 #include "sandbox/win/src/policy_broker.h"
9 #include "base/logging.h"
10 #include "base/win/pe_image.h"
11 #include "base/win/windows_version.h"
12 #include "sandbox/win/src/interception.h"
13 #include "sandbox/win/src/interceptors.h"
14 #include "sandbox/win/src/policy_target.h"
15 #include "sandbox/win/src/process_thread_interception.h"
16 #include "sandbox/win/src/sandbox.h"
17 #include "sandbox/win/src/sandbox_nt_types.h"
18 #include "sandbox/win/src/sandbox_types.h"
19 #include "sandbox/win/src/target_process.h"
21 // This code executes on the broker side, as a callback from the policy on the
22 // target side (the child).
26 // This is the list of all imported symbols from ntdll.dll.
27 SANDBOX_INTERCEPT NtExports g_nt
;
29 #define INIT_GLOBAL_NT(member) \
30 g_nt.member = reinterpret_cast<Nt##member##Function>( \
31 ntdll_image.GetProcAddress("Nt" #member)); \
32 if (NULL == g_nt.member) \
35 #define INIT_GLOBAL_RTL(member) \
36 g_nt.member = reinterpret_cast<member##Function>( \
37 ntdll_image.GetProcAddress(#member)); \
38 if (NULL == g_nt.member) \
41 bool SetupNtdllImports(TargetProcess
*child
) {
42 HMODULE ntdll
= ::GetModuleHandle(kNtdllName
);
43 base::win::PEImage
ntdll_image(ntdll
);
45 // Bypass purify's interception.
46 wchar_t* loader_get
= reinterpret_cast<wchar_t*>(
47 ntdll_image
.GetProcAddress("LdrGetDllHandle"));
49 GetModuleHandleEx(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS
|
50 GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT
,
54 INIT_GLOBAL_NT(AllocateVirtualMemory
);
55 INIT_GLOBAL_NT(Close
);
56 INIT_GLOBAL_NT(DuplicateObject
);
57 INIT_GLOBAL_NT(FreeVirtualMemory
);
58 INIT_GLOBAL_NT(MapViewOfSection
);
59 INIT_GLOBAL_NT(ProtectVirtualMemory
);
60 INIT_GLOBAL_NT(QueryInformationProcess
);
61 INIT_GLOBAL_NT(QueryObject
);
62 INIT_GLOBAL_NT(QuerySection
);
63 INIT_GLOBAL_NT(QueryVirtualMemory
);
64 INIT_GLOBAL_NT(UnmapViewOfSection
);
66 INIT_GLOBAL_RTL(RtlAllocateHeap
);
67 INIT_GLOBAL_RTL(RtlAnsiStringToUnicodeString
);
68 INIT_GLOBAL_RTL(RtlCompareUnicodeString
);
69 INIT_GLOBAL_RTL(RtlCreateHeap
);
70 INIT_GLOBAL_RTL(RtlCreateUserThread
);
71 INIT_GLOBAL_RTL(RtlDestroyHeap
);
72 INIT_GLOBAL_RTL(RtlFreeHeap
);
73 INIT_GLOBAL_RTL(_strnicmp
);
74 INIT_GLOBAL_RTL(strlen
);
75 INIT_GLOBAL_RTL(wcslen
);
76 INIT_GLOBAL_RTL(memcpy
);
79 // Verify that the structure is fully initialized.
80 for (size_t i
= 0; i
< sizeof(g_nt
)/sizeof(void*); i
++)
81 DCHECK(reinterpret_cast<char**>(&g_nt
)[i
]);
83 return (SBOX_ALL_OK
== child
->TransferVariable("g_nt", &g_nt
, sizeof(g_nt
)));
87 #undef INIT_GLOBAL_RTL
89 bool SetupBasicInterceptions(InterceptionManager
* manager
) {
90 // Interceptions provided by process_thread_policy, without actual policy.
91 if (!INTERCEPT_NT(manager
, NtOpenThread
, OPEN_TREAD_ID
, 20) ||
92 !INTERCEPT_NT(manager
, NtOpenProcess
, OPEN_PROCESS_ID
, 20) ||
93 !INTERCEPT_NT(manager
, NtOpenProcessToken
, OPEN_PROCESS_TOKEN_ID
, 16))
96 // Interceptions with neither policy nor IPC.
97 if (!INTERCEPT_NT(manager
, NtSetInformationThread
, SET_INFORMATION_THREAD_ID
,
99 !INTERCEPT_NT(manager
, NtOpenThreadToken
, OPEN_THREAD_TOKEN_ID
, 20))
102 if (base::win::GetVersion() >= base::win::VERSION_XP
) {
103 // Bug 27218: We don't have dispatch for some x64 syscalls.
104 // This one is also provided by process_thread_policy.
105 if (!INTERCEPT_NT(manager
, NtOpenProcessTokenEx
, OPEN_PROCESS_TOKEN_EX_ID
,
109 return INTERCEPT_NT(manager
, NtOpenThreadTokenEx
, OPEN_THREAD_TOKEN_EX_ID
,
116 } // namespace sandbox