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

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

Issue 10690058: Add sandbox support for Windows process mitigations (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 3 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 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 #ifndef SANDBOX_WIN_SRC_SANDBOX_POLICY_BASE_H_ 5 #ifndef SANDBOX_WIN_SRC_SANDBOX_POLICY_BASE_H_
6 #define SANDBOX_WIN_SRC_SANDBOX_POLICY_BASE_H_ 6 #define SANDBOX_WIN_SRC_SANDBOX_POLICY_BASE_H_
7 7
8 #include <windows.h> 8 #include <windows.h>
9 9
10 #include <list> 10 #include <list>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 uint32 ui_exceptions) OVERRIDE; 45 uint32 ui_exceptions) OVERRIDE;
46 virtual ResultCode SetAlternateDesktop(bool alternate_winstation) OVERRIDE; 46 virtual ResultCode SetAlternateDesktop(bool alternate_winstation) OVERRIDE;
47 virtual string16 GetAlternateDesktop() const OVERRIDE; 47 virtual string16 GetAlternateDesktop() const OVERRIDE;
48 virtual ResultCode CreateAlternateDesktop(bool alternate_winstation) OVERRIDE; 48 virtual ResultCode CreateAlternateDesktop(bool alternate_winstation) OVERRIDE;
49 virtual void DestroyAlternateDesktop() OVERRIDE; 49 virtual void DestroyAlternateDesktop() OVERRIDE;
50 virtual ResultCode SetIntegrityLevel(IntegrityLevel integrity_level) OVERRIDE; 50 virtual ResultCode SetIntegrityLevel(IntegrityLevel integrity_level) OVERRIDE;
51 virtual ResultCode SetDelayedIntegrityLevel( 51 virtual ResultCode SetDelayedIntegrityLevel(
52 IntegrityLevel integrity_level) OVERRIDE; 52 IntegrityLevel integrity_level) OVERRIDE;
53 virtual ResultCode SetAppContainer(const wchar_t* sid) OVERRIDE; 53 virtual ResultCode SetAppContainer(const wchar_t* sid) OVERRIDE;
54 virtual ResultCode SetCapability(const wchar_t* sid) OVERRIDE; 54 virtual ResultCode SetCapability(const wchar_t* sid) OVERRIDE;
55 virtual ResultCode SetProcessMitigations(uint64 flags) OVERRIDE;
rvargas (doing something else) 2012/09/08 02:23:32 There is a little something between calling this m
jschuh 2012/09/10 23:58:48 Done.
56 virtual uint64 GetProcessMitigations() OVERRIDE;
57 virtual ResultCode SetDelayedProcessMitigations(uint64 flags) OVERRIDE;
58 virtual uint64 GetDelayedProcessMitigations() OVERRIDE;
55 virtual void SetStrictInterceptions() OVERRIDE; 59 virtual void SetStrictInterceptions() OVERRIDE;
56 virtual ResultCode AddRule(SubSystem subsystem, Semantics semantics, 60 virtual ResultCode AddRule(SubSystem subsystem, Semantics semantics,
57 const wchar_t* pattern) OVERRIDE; 61 const wchar_t* pattern) OVERRIDE;
58 virtual ResultCode AddDllToUnload(const wchar_t* dll_name); 62 virtual ResultCode AddDllToUnload(const wchar_t* dll_name);
59 virtual ResultCode AddKernelObjectToClose(const char16* handle_type, 63 virtual ResultCode AddKernelObjectToClose(const char16* handle_type,
60 const char16* handle_name) OVERRIDE; 64 const char16* handle_name) OVERRIDE;
61 65
62 // Dispatcher: 66 // Dispatcher:
63 virtual Dispatcher* OnMessageReady(IPCParams* ipc, 67 virtual Dispatcher* OnMessageReady(IPCParams* ipc,
64 CallbackGeneric* callback) OVERRIDE; 68 CallbackGeneric* callback) OVERRIDE;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 TokenLevel initial_level_; 117 TokenLevel initial_level_;
114 JobLevel job_level_; 118 JobLevel job_level_;
115 uint32 ui_exceptions_; 119 uint32 ui_exceptions_;
116 bool use_alternate_desktop_; 120 bool use_alternate_desktop_;
117 bool use_alternate_winstation_; 121 bool use_alternate_winstation_;
118 // Helps the file system policy initialization. 122 // Helps the file system policy initialization.
119 bool file_system_init_; 123 bool file_system_init_;
120 bool relaxed_interceptions_; 124 bool relaxed_interceptions_;
121 IntegrityLevel integrity_level_; 125 IntegrityLevel integrity_level_;
122 IntegrityLevel delayed_integrity_level_; 126 IntegrityLevel delayed_integrity_level_;
127 uint64 mitigations_;
128 uint64 delayed_mitigations_;
123 // The array of objects that will answer IPC calls. 129 // The array of objects that will answer IPC calls.
124 Dispatcher* ipc_targets_[IPC_LAST_TAG]; 130 Dispatcher* ipc_targets_[IPC_LAST_TAG];
125 // Object in charge of generating the low level policy. 131 // Object in charge of generating the low level policy.
126 LowLevelPolicy* policy_maker_; 132 LowLevelPolicy* policy_maker_;
127 // Memory structure that stores the low level policy. 133 // Memory structure that stores the low level policy.
128 PolicyGlobal* policy_; 134 PolicyGlobal* policy_;
129 // The list of dlls to unload in the target process. 135 // The list of dlls to unload in the target process.
130 std::vector<string16> blacklisted_dlls_; 136 std::vector<string16> blacklisted_dlls_;
131 // This is a map of handle-types to names that we need to close in the 137 // This is a map of handle-types to names that we need to close in the
132 // target process. A null set means we need to close all handles of the 138 // target process. A null set means we need to close all handles of the
133 // given type. 139 // given type.
134 HandleCloser handle_closer_; 140 HandleCloser handle_closer_;
135 std::vector<string16> capabilities_; 141 std::vector<string16> capabilities_;
136 scoped_ptr<AppContainerAttributes> appcontainer_list_; 142 scoped_ptr<AppContainerAttributes> appcontainer_list_;
137 143
138 static HDESK alternate_desktop_handle_; 144 static HDESK alternate_desktop_handle_;
139 static HWINSTA alternate_winstation_handle_; 145 static HWINSTA alternate_winstation_handle_;
140 146
141 DISALLOW_COPY_AND_ASSIGN(PolicyBase); 147 DISALLOW_COPY_AND_ASSIGN(PolicyBase);
142 }; 148 };
143 149
144 } // namespace sandbox 150 } // namespace sandbox
145 151
146 #endif // SANDBOX_WIN_SRC_SANDBOX_POLICY_BASE_H_ 152 #endif // SANDBOX_WIN_SRC_SANDBOX_POLICY_BASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698