Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: sandbox/win/src/interceptors_64.h

Issue 1851213002: Remove sandbox on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix nacl compile issues Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sandbox/win/src/interceptors.h ('k') | sandbox/win/src/interceptors_64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 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.
4
5 #include "sandbox/win/src/nt_internals.h"
6 #include "sandbox/win/src/sandbox_types.h"
7
8 #ifndef SANDBOX_SRC_INTERCEPTORS_64_H_
9 #define SANDBOX_SRC_INTERCEPTORS_64_H_
10
11 namespace sandbox {
12
13 extern "C" {
14
15 // Interception of NtMapViewOfSection on the child process.
16 // It should never be called directly. This function provides the means to
17 // detect dlls being loaded, so we can patch them if needed.
18 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtMapViewOfSection64(
19 HANDLE section, HANDLE process, PVOID *base, ULONG_PTR zero_bits,
20 SIZE_T commit_size, PLARGE_INTEGER offset, PSIZE_T view_size,
21 SECTION_INHERIT inherit, ULONG allocation_type, ULONG protect);
22
23 // Interception of NtUnmapViewOfSection on the child process.
24 // It should never be called directly. This function provides the means to
25 // detect dlls being unloaded, so we can clean up our interceptions.
26 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtUnmapViewOfSection64(HANDLE process,
27 PVOID base);
28
29 // -----------------------------------------------------------------------
30 // Interceptors without IPC.
31
32 // Interception of NtSetInformationThread on the child process.
33 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtSetInformationThread64(
34 HANDLE thread, NT_THREAD_INFORMATION_CLASS thread_info_class,
35 PVOID thread_information, ULONG thread_information_bytes);
36
37 // Interception of NtOpenThreadToken on the child process.
38 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtOpenThreadToken64(
39 HANDLE thread, ACCESS_MASK desired_access, BOOLEAN open_as_self,
40 PHANDLE token);
41
42 // Interception of NtOpenThreadTokenEx on the child process.
43 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtOpenThreadTokenEx64(
44 HANDLE thread, ACCESS_MASK desired_access, BOOLEAN open_as_self,
45 ULONG handle_attributes, PHANDLE token);
46
47 // -----------------------------------------------------------------------
48 // Interceptors handled by the file system dispatcher.
49
50 // Interception of NtCreateFile on the child process.
51 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtCreateFile64(
52 PHANDLE file, ACCESS_MASK desired_access,
53 POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status,
54 PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG sharing,
55 ULONG disposition, ULONG options, PVOID ea_buffer, ULONG ea_length);
56
57 // Interception of NtOpenFile on the child process.
58 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtOpenFile64(
59 PHANDLE file, ACCESS_MASK desired_access,
60 POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status,
61 ULONG sharing, ULONG options);
62
63 // Interception of NtQueryAtttributesFile on the child process.
64 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtQueryAttributesFile64(
65 POBJECT_ATTRIBUTES object_attributes,
66 PFILE_BASIC_INFORMATION file_attributes);
67
68 // Interception of NtQueryFullAtttributesFile on the child process.
69 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtQueryFullAttributesFile64(
70 POBJECT_ATTRIBUTES object_attributes,
71 PFILE_NETWORK_OPEN_INFORMATION file_attributes);
72
73 // Interception of NtSetInformationFile on the child process.
74 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtSetInformationFile64(
75 HANDLE file, PIO_STATUS_BLOCK io_status, PVOID file_information,
76 ULONG length, FILE_INFORMATION_CLASS file_information_class);
77
78 // -----------------------------------------------------------------------
79 // Interceptors handled by the named pipe dispatcher.
80
81 // Interception of CreateNamedPipeW in kernel32.dll
82 SANDBOX_INTERCEPT HANDLE WINAPI TargetCreateNamedPipeW64(
83 LPCWSTR pipe_name, DWORD open_mode, DWORD pipe_mode, DWORD max_instance,
84 DWORD out_buffer_size, DWORD in_buffer_size, DWORD default_timeout,
85 LPSECURITY_ATTRIBUTES security_attributes);
86
87 // -----------------------------------------------------------------------
88 // Interceptors handled by the process-thread dispatcher.
89
90 // Interception of NtOpenThread on the child process.
91 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtOpenThread64(
92 PHANDLE thread, ACCESS_MASK desired_access,
93 POBJECT_ATTRIBUTES object_attributes, PCLIENT_ID client_id);
94
95 // Interception of NtOpenProcess on the child process.
96 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtOpenProcess64(
97 PHANDLE process, ACCESS_MASK desired_access,
98 POBJECT_ATTRIBUTES object_attributes, PCLIENT_ID client_id);
99
100 // Interception of NtOpenProcessToken on the child process.
101 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtOpenProcessToken64(
102 HANDLE process, ACCESS_MASK desired_access, PHANDLE token);
103
104 // Interception of NtOpenProcessTokenEx on the child process.
105 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtOpenProcessTokenEx64(
106 HANDLE process, ACCESS_MASK desired_access, ULONG handle_attributes,
107 PHANDLE token);
108
109 // Interception of CreateProcessW in kernel32.dll.
110 SANDBOX_INTERCEPT BOOL WINAPI TargetCreateProcessW64(
111 LPCWSTR application_name, LPWSTR command_line,
112 LPSECURITY_ATTRIBUTES process_attributes,
113 LPSECURITY_ATTRIBUTES thread_attributes, BOOL inherit_handles, DWORD flags,
114 LPVOID environment, LPCWSTR current_directory, LPSTARTUPINFOW startup_info,
115 LPPROCESS_INFORMATION process_information);
116
117 // Interception of CreateProcessA in kernel32.dll.
118 SANDBOX_INTERCEPT BOOL WINAPI TargetCreateProcessA64(
119 LPCSTR application_name, LPSTR command_line,
120 LPSECURITY_ATTRIBUTES process_attributes,
121 LPSECURITY_ATTRIBUTES thread_attributes, BOOL inherit_handles, DWORD flags,
122 LPVOID environment, LPCSTR current_directory, LPSTARTUPINFOA startup_info,
123 LPPROCESS_INFORMATION process_information);
124
125 // Interception of CreateThread in kernel32.dll.
126 SANDBOX_INTERCEPT HANDLE WINAPI
127 TargetCreateThread64(LPSECURITY_ATTRIBUTES thread_attributes,
128 SIZE_T stack_size,
129 LPTHREAD_START_ROUTINE start_address,
130 PVOID parameter,
131 DWORD creation_flags,
132 LPDWORD thread_id);
133
134 // -----------------------------------------------------------------------
135 // Interceptors handled by the registry dispatcher.
136
137 // Interception of NtCreateKey on the child process.
138 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtCreateKey64(
139 PHANDLE key, ACCESS_MASK desired_access,
140 POBJECT_ATTRIBUTES object_attributes, ULONG title_index,
141 PUNICODE_STRING class_name, ULONG create_options, PULONG disposition);
142
143 // Interception of NtOpenKey on the child process.
144 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtOpenKey64(
145 PHANDLE key, ACCESS_MASK desired_access,
146 POBJECT_ATTRIBUTES object_attributes);
147
148 // Interception of NtOpenKeyEx on the child process.
149 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtOpenKeyEx64(
150 PHANDLE key, ACCESS_MASK desired_access,
151 POBJECT_ATTRIBUTES object_attributes, ULONG open_options);
152
153 // -----------------------------------------------------------------------
154 // Interceptors handled by the sync dispatcher.
155
156 // Interception of NtCreateEvent/NtOpenEvent on the child process.
157 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtCreateEvent64(
158 PHANDLE event_handle, ACCESS_MASK desired_access,
159 POBJECT_ATTRIBUTES object_attributes, EVENT_TYPE event_type,
160 BOOLEAN initial_state);
161
162 SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtOpenEvent64(
163 PHANDLE event_handle, ACCESS_MASK desired_access,
164 POBJECT_ATTRIBUTES object_attributes);
165
166 // -----------------------------------------------------------------------
167 // Interceptors handled by the process mitigations win32k lockdown code.
168
169 // Interceptor for the GdiDllInitialize function.
170 SANDBOX_INTERCEPT BOOL WINAPI TargetGdiDllInitialize64(
171 HANDLE dll,
172 DWORD reason);
173
174 // Interceptor for the GetStockObject function.
175 SANDBOX_INTERCEPT HGDIOBJ WINAPI TargetGetStockObject64(int object);
176
177 // Interceptor for the RegisterClassW function.
178 SANDBOX_INTERCEPT ATOM WINAPI TargetRegisterClassW64(const WNDCLASS* wnd_class);
179
180 } // extern "C"
181
182 } // namespace sandbox
183
184 #endif // SANDBOX_SRC_INTERCEPTORS_64_H_
OLDNEW
« no previous file with comments | « sandbox/win/src/interceptors.h ('k') | sandbox/win/src/interceptors_64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698