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.
5 #include "sandbox/win/src/sandbox_policy_base.h"
9 #include "base/basictypes.h"
10 #include "base/callback.h"
11 #include "base/logging.h"
12 #include "base/win/windows_version.h"
13 #include "sandbox/win/src/app_container.h"
14 #include "sandbox/win/src/filesystem_dispatcher.h"
15 #include "sandbox/win/src/filesystem_policy.h"
16 #include "sandbox/win/src/handle_dispatcher.h"
17 #include "sandbox/win/src/handle_policy.h"
18 #include "sandbox/win/src/job.h"
19 #include "sandbox/win/src/interception.h"
20 #include "sandbox/win/src/process_mitigations.h"
21 #include "sandbox/win/src/named_pipe_dispatcher.h"
22 #include "sandbox/win/src/named_pipe_policy.h"
23 #include "sandbox/win/src/policy_broker.h"
24 #include "sandbox/win/src/policy_engine_processor.h"
25 #include "sandbox/win/src/policy_low_level.h"
26 #include "sandbox/win/src/process_mitigations_win32k_dispatcher.h"
27 #include "sandbox/win/src/process_mitigations_win32k_policy.h"
28 #include "sandbox/win/src/process_thread_dispatcher.h"
29 #include "sandbox/win/src/process_thread_policy.h"
30 #include "sandbox/win/src/registry_dispatcher.h"
31 #include "sandbox/win/src/registry_policy.h"
32 #include "sandbox/win/src/restricted_token_utils.h"
33 #include "sandbox/win/src/sandbox_policy.h"
34 #include "sandbox/win/src/sync_dispatcher.h"
35 #include "sandbox/win/src/sync_policy.h"
36 #include "sandbox/win/src/target_process.h"
37 #include "sandbox/win/src/window.h"
41 // The standard windows size for one memory page.
42 const size_t kOneMemPage
= 4096;
43 // The IPC and Policy shared memory sizes.
44 const size_t kIPCMemSize
= kOneMemPage
* 2;
45 const size_t kPolMemSize
= kOneMemPage
* 14;
47 // Helper function to allocate space (on the heap) for policy.
48 sandbox::PolicyGlobal
* MakeBrokerPolicyMemory() {
49 const size_t kTotalPolicySz
= kPolMemSize
;
50 sandbox::PolicyGlobal
* policy
= static_cast<sandbox::PolicyGlobal
*>
51 (::operator new(kTotalPolicySz
));
53 memset(policy
, 0, kTotalPolicySz
);
54 policy
->data_size
= kTotalPolicySz
- sizeof(sandbox::PolicyGlobal
);
58 bool IsInheritableHandle(HANDLE handle
) {
61 if (handle
== INVALID_HANDLE_VALUE
)
63 // File handles (FILE_TYPE_DISK) and pipe handles are known to be
64 // inheritable. Console handles (FILE_TYPE_CHAR) are not
65 // inheritable via PROC_THREAD_ATTRIBUTE_HANDLE_LIST.
66 DWORD handle_type
= GetFileType(handle
);
67 return handle_type
== FILE_TYPE_DISK
|| handle_type
== FILE_TYPE_PIPE
;
74 SANDBOX_INTERCEPT IntegrityLevel g_shared_delayed_integrity_level
;
75 SANDBOX_INTERCEPT MitigationFlags g_shared_delayed_mitigations
;
77 // Initializes static members.
78 HWINSTA
PolicyBase::alternate_winstation_handle_
= NULL
;
79 HDESK
PolicyBase::alternate_desktop_handle_
= NULL
;
80 IntegrityLevel
PolicyBase::alternate_desktop_integrity_level_label_
=
81 INTEGRITY_LEVEL_SYSTEM
;
83 PolicyBase::PolicyBase()
85 lockdown_level_(USER_LOCKDOWN
),
86 initial_level_(USER_LOCKDOWN
),
87 job_level_(JOB_LOCKDOWN
),
90 use_alternate_desktop_(false),
91 use_alternate_winstation_(false),
92 file_system_init_(false),
93 relaxed_interceptions_(true),
94 stdout_handle_(INVALID_HANDLE_VALUE
),
95 stderr_handle_(INVALID_HANDLE_VALUE
),
96 integrity_level_(INTEGRITY_LEVEL_LAST
),
97 delayed_integrity_level_(INTEGRITY_LEVEL_LAST
),
99 delayed_mitigations_(0),
102 ::InitializeCriticalSection(&lock_
);
103 // Initialize the IPC dispatcher array.
104 memset(&ipc_targets_
, NULL
, sizeof(ipc_targets_
));
105 Dispatcher
* dispatcher
= NULL
;
107 dispatcher
= new FilesystemDispatcher(this);
108 ipc_targets_
[IPC_NTCREATEFILE_TAG
] = dispatcher
;
109 ipc_targets_
[IPC_NTOPENFILE_TAG
] = dispatcher
;
110 ipc_targets_
[IPC_NTSETINFO_RENAME_TAG
] = dispatcher
;
111 ipc_targets_
[IPC_NTQUERYATTRIBUTESFILE_TAG
] = dispatcher
;
112 ipc_targets_
[IPC_NTQUERYFULLATTRIBUTESFILE_TAG
] = dispatcher
;
114 dispatcher
= new NamedPipeDispatcher(this);
115 ipc_targets_
[IPC_CREATENAMEDPIPEW_TAG
] = dispatcher
;
117 dispatcher
= new ThreadProcessDispatcher(this);
118 ipc_targets_
[IPC_NTOPENTHREAD_TAG
] = dispatcher
;
119 ipc_targets_
[IPC_NTOPENPROCESS_TAG
] = dispatcher
;
120 ipc_targets_
[IPC_CREATEPROCESSW_TAG
] = dispatcher
;
121 ipc_targets_
[IPC_NTOPENPROCESSTOKEN_TAG
] = dispatcher
;
122 ipc_targets_
[IPC_NTOPENPROCESSTOKENEX_TAG
] = dispatcher
;
124 dispatcher
= new SyncDispatcher(this);
125 ipc_targets_
[IPC_CREATEEVENT_TAG
] = dispatcher
;
126 ipc_targets_
[IPC_OPENEVENT_TAG
] = dispatcher
;
128 dispatcher
= new RegistryDispatcher(this);
129 ipc_targets_
[IPC_NTCREATEKEY_TAG
] = dispatcher
;
130 ipc_targets_
[IPC_NTOPENKEY_TAG
] = dispatcher
;
132 dispatcher
= new HandleDispatcher(this);
133 ipc_targets_
[IPC_DUPLICATEHANDLEPROXY_TAG
] = dispatcher
;
135 dispatcher
= new ProcessMitigationsWin32KDispatcher(this);
136 ipc_targets_
[IPC_GDI_GDIDLLINITIALIZE_TAG
] = dispatcher
;
137 ipc_targets_
[IPC_GDI_GETSTOCKOBJECT_TAG
] = dispatcher
;
138 ipc_targets_
[IPC_USER_REGISTERCLASSW_TAG
] = dispatcher
;
141 PolicyBase::~PolicyBase() {
142 TargetSet::iterator it
;
143 for (it
= targets_
.begin(); it
!= targets_
.end(); ++it
) {
144 TargetProcess
* target
= (*it
);
147 delete ipc_targets_
[IPC_NTCREATEFILE_TAG
];
148 delete ipc_targets_
[IPC_CREATENAMEDPIPEW_TAG
];
149 delete ipc_targets_
[IPC_NTOPENTHREAD_TAG
];
150 delete ipc_targets_
[IPC_CREATEEVENT_TAG
];
151 delete ipc_targets_
[IPC_NTCREATEKEY_TAG
];
152 delete ipc_targets_
[IPC_DUPLICATEHANDLEPROXY_TAG
];
153 delete policy_maker_
;
155 ::DeleteCriticalSection(&lock_
);
158 void PolicyBase::AddRef() {
159 ::InterlockedIncrement(&ref_count
);
162 void PolicyBase::Release() {
163 if (0 == ::InterlockedDecrement(&ref_count
))
167 ResultCode
PolicyBase::SetTokenLevel(TokenLevel initial
, TokenLevel lockdown
) {
168 if (initial
< lockdown
) {
169 return SBOX_ERROR_BAD_PARAMS
;
171 initial_level_
= initial
;
172 lockdown_level_
= lockdown
;
176 TokenLevel
PolicyBase::GetInitialTokenLevel() const {
177 return initial_level_
;
180 TokenLevel
PolicyBase::GetLockdownTokenLevel() const{
181 return lockdown_level_
;
184 ResultCode
PolicyBase::SetJobLevel(JobLevel job_level
, uint32 ui_exceptions
) {
185 if (memory_limit_
&& job_level
== JOB_NONE
) {
186 return SBOX_ERROR_BAD_PARAMS
;
188 job_level_
= job_level
;
189 ui_exceptions_
= ui_exceptions
;
193 ResultCode
PolicyBase::SetJobMemoryLimit(size_t memory_limit
) {
194 if (memory_limit
&& job_level_
== JOB_NONE
) {
195 return SBOX_ERROR_BAD_PARAMS
;
197 memory_limit_
= memory_limit
;
201 ResultCode
PolicyBase::SetAlternateDesktop(bool alternate_winstation
) {
202 use_alternate_desktop_
= true;
203 use_alternate_winstation_
= alternate_winstation
;
204 return CreateAlternateDesktop(alternate_winstation
);
207 base::string16
PolicyBase::GetAlternateDesktop() const {
208 // No alternate desktop or winstation. Return an empty string.
209 if (!use_alternate_desktop_
&& !use_alternate_winstation_
) {
210 return base::string16();
213 // The desktop and winstation should have been created by now.
214 // If we hit this scenario, it means that the user ignored the failure
215 // during SetAlternateDesktop, so we ignore it here too.
216 if (use_alternate_desktop_
&& !alternate_desktop_handle_
) {
217 return base::string16();
219 if (use_alternate_winstation_
&& (!alternate_desktop_handle_
||
220 !alternate_winstation_handle_
)) {
221 return base::string16();
224 return GetFullDesktopName(alternate_winstation_handle_
,
225 alternate_desktop_handle_
);
228 ResultCode
PolicyBase::CreateAlternateDesktop(bool alternate_winstation
) {
229 if (alternate_winstation
) {
230 // Previously called with alternate_winstation = false?
231 if (!alternate_winstation_handle_
&& alternate_desktop_handle_
)
232 return SBOX_ERROR_UNSUPPORTED
;
234 // Check if it's already created.
235 if (alternate_winstation_handle_
&& alternate_desktop_handle_
)
238 DCHECK(!alternate_winstation_handle_
);
239 // Create the window station.
240 ResultCode result
= CreateAltWindowStation(&alternate_winstation_handle_
);
241 if (SBOX_ALL_OK
!= result
)
244 // Verify that everything is fine.
245 if (!alternate_winstation_handle_
||
246 GetWindowObjectName(alternate_winstation_handle_
).empty())
247 return SBOX_ERROR_CANNOT_CREATE_DESKTOP
;
249 // Create the destkop.
250 result
= CreateAltDesktop(alternate_winstation_handle_
,
251 &alternate_desktop_handle_
);
252 if (SBOX_ALL_OK
!= result
)
255 // Verify that everything is fine.
256 if (!alternate_desktop_handle_
||
257 GetWindowObjectName(alternate_desktop_handle_
).empty())
258 return SBOX_ERROR_CANNOT_CREATE_DESKTOP
;
260 // Previously called with alternate_winstation = true?
261 if (alternate_winstation_handle_
)
262 return SBOX_ERROR_UNSUPPORTED
;
264 // Check if it already exists.
265 if (alternate_desktop_handle_
)
268 // Create the destkop.
269 ResultCode result
= CreateAltDesktop(NULL
, &alternate_desktop_handle_
);
270 if (SBOX_ALL_OK
!= result
)
273 // Verify that everything is fine.
274 if (!alternate_desktop_handle_
||
275 GetWindowObjectName(alternate_desktop_handle_
).empty())
276 return SBOX_ERROR_CANNOT_CREATE_DESKTOP
;
282 void PolicyBase::DestroyAlternateDesktop() {
283 if (alternate_desktop_handle_
) {
284 ::CloseDesktop(alternate_desktop_handle_
);
285 alternate_desktop_handle_
= NULL
;
288 if (alternate_winstation_handle_
) {
289 ::CloseWindowStation(alternate_winstation_handle_
);
290 alternate_winstation_handle_
= NULL
;
294 ResultCode
PolicyBase::SetIntegrityLevel(IntegrityLevel integrity_level
) {
295 integrity_level_
= integrity_level
;
299 IntegrityLevel
PolicyBase::GetIntegrityLevel() const {
300 return integrity_level_
;
303 ResultCode
PolicyBase::SetDelayedIntegrityLevel(
304 IntegrityLevel integrity_level
) {
305 delayed_integrity_level_
= integrity_level
;
309 ResultCode
PolicyBase::SetAppContainer(const wchar_t* sid
) {
310 if (base::win::OSInfo::GetInstance()->version() < base::win::VERSION_WIN8
)
313 // Windows refuses to work with an impersonation token for a process inside
314 // an AppContainer. If the caller wants to use a more privileged initial
315 // token, or if the lockdown level will prevent the process from starting,
316 // we have to fail the operation.
317 if (lockdown_level_
< USER_LIMITED
|| lockdown_level_
!= initial_level_
)
318 return SBOX_ERROR_CANNOT_INIT_APPCONTAINER
;
320 DCHECK(!appcontainer_list_
.get());
321 appcontainer_list_
.reset(new AppContainerAttributes
);
322 ResultCode rv
= appcontainer_list_
->SetAppContainer(sid
, capabilities_
);
323 if (rv
!= SBOX_ALL_OK
)
329 ResultCode
PolicyBase::SetCapability(const wchar_t* sid
) {
330 capabilities_
.push_back(sid
);
334 ResultCode
PolicyBase::SetProcessMitigations(
335 MitigationFlags flags
) {
336 if (!CanSetProcessMitigationsPreStartup(flags
))
337 return SBOX_ERROR_BAD_PARAMS
;
338 mitigations_
= flags
;
342 MitigationFlags
PolicyBase::GetProcessMitigations() {
346 ResultCode
PolicyBase::SetDelayedProcessMitigations(
347 MitigationFlags flags
) {
348 if (!CanSetProcessMitigationsPostStartup(flags
))
349 return SBOX_ERROR_BAD_PARAMS
;
350 delayed_mitigations_
= flags
;
354 MitigationFlags
PolicyBase::GetDelayedProcessMitigations() const {
355 return delayed_mitigations_
;
358 void PolicyBase::SetStrictInterceptions() {
359 relaxed_interceptions_
= false;
362 ResultCode
PolicyBase::SetStdoutHandle(HANDLE handle
) {
363 if (!IsInheritableHandle(handle
))
364 return SBOX_ERROR_BAD_PARAMS
;
365 stdout_handle_
= handle
;
369 ResultCode
PolicyBase::SetStderrHandle(HANDLE handle
) {
370 if (!IsInheritableHandle(handle
))
371 return SBOX_ERROR_BAD_PARAMS
;
372 stderr_handle_
= handle
;
376 ResultCode
PolicyBase::AddRule(SubSystem subsystem
,
378 const wchar_t* pattern
) {
379 ResultCode result
= AddRuleInternal(subsystem
, semantics
, pattern
);
380 LOG_IF(ERROR
, result
!= SBOX_ALL_OK
) << "Failed to add sandbox rule."
381 << " error = " << result
382 << ", subsystem = " << subsystem
383 << ", semantics = " << semantics
384 << ", pattern = '" << pattern
<< "'";
388 ResultCode
PolicyBase::AddDllToUnload(const wchar_t* dll_name
) {
389 blacklisted_dlls_
.push_back(dll_name
);
393 ResultCode
PolicyBase::AddKernelObjectToClose(const base::char16
* handle_type
,
394 const base::char16
* handle_name
) {
395 return handle_closer_
.AddHandle(handle_type
, handle_name
);
398 // When an IPC is ready in any of the targets we get called. We manage an array
399 // of IPC dispatchers which are keyed on the IPC tag so we normally delegate
400 // to the appropriate dispatcher unless we can handle the IPC call ourselves.
401 Dispatcher
* PolicyBase::OnMessageReady(IPCParams
* ipc
,
402 CallbackGeneric
* callback
) {
404 static const IPCParams ping1
= {IPC_PING1_TAG
, UINT32_TYPE
};
405 static const IPCParams ping2
= {IPC_PING2_TAG
, INOUTPTR_TYPE
};
407 if (ping1
.Matches(ipc
) || ping2
.Matches(ipc
)) {
408 *callback
= reinterpret_cast<CallbackGeneric
>(
409 static_cast<Callback1
>(&PolicyBase::Ping
));
413 Dispatcher
* dispatch
= GetDispatcher(ipc
->ipc_tag
);
418 return dispatch
->OnMessageReady(ipc
, callback
);
421 // Delegate to the appropriate dispatcher.
422 bool PolicyBase::SetupService(InterceptionManager
* manager
, int service
) {
423 if (IPC_PING1_TAG
== service
|| IPC_PING2_TAG
== service
)
426 Dispatcher
* dispatch
= GetDispatcher(service
);
431 return dispatch
->SetupService(manager
, service
);
434 ResultCode
PolicyBase::MakeJobObject(HANDLE
* job
) {
435 if (job_level_
!= JOB_NONE
) {
436 // Create the windows job object.
438 DWORD result
= job_obj
.Init(job_level_
, NULL
, ui_exceptions_
,
440 if (ERROR_SUCCESS
!= result
) {
441 return SBOX_ERROR_GENERIC
;
443 *job
= job_obj
.Detach();
450 ResultCode
PolicyBase::MakeTokens(HANDLE
* initial
, HANDLE
* lockdown
) {
451 // Create the 'naked' token. This will be the permanent token associated
452 // with the process and therefore with any thread that is not impersonating.
453 DWORD result
= CreateRestrictedToken(lockdown
, lockdown_level_
,
454 integrity_level_
, PRIMARY
);
455 if (ERROR_SUCCESS
!= result
)
456 return SBOX_ERROR_GENERIC
;
458 // If we're launching on the alternate desktop we need to make sure the
459 // integrity label on the object is no higher than the sandboxed process's
460 // integrity level. So, we lower the label on the desktop process if it's
461 // not already low enough for our process.
462 if (alternate_desktop_handle_
&& use_alternate_desktop_
&&
463 integrity_level_
!= INTEGRITY_LEVEL_LAST
&&
464 alternate_desktop_integrity_level_label_
< integrity_level_
&&
465 base::win::OSInfo::GetInstance()->version() >= base::win::VERSION_VISTA
) {
466 // Integrity label enum is reversed (higher level is a lower value).
467 static_assert(INTEGRITY_LEVEL_SYSTEM
< INTEGRITY_LEVEL_UNTRUSTED
,
468 "Integrity level ordering reversed.");
469 result
= SetObjectIntegrityLabel(alternate_desktop_handle_
,
472 GetIntegrityLevelString(integrity_level_
));
473 if (ERROR_SUCCESS
!= result
)
474 return SBOX_ERROR_GENERIC
;
476 alternate_desktop_integrity_level_label_
= integrity_level_
;
479 if (appcontainer_list_
.get() && appcontainer_list_
->HasAppContainer()) {
480 // Windows refuses to work with an impersonation token. See SetAppContainer
481 // implementation for more details.
482 if (lockdown_level_
< USER_LIMITED
|| lockdown_level_
!= initial_level_
)
483 return SBOX_ERROR_CANNOT_INIT_APPCONTAINER
;
485 *initial
= INVALID_HANDLE_VALUE
;
489 // Create the 'better' token. We use this token as the one that the main
490 // thread uses when booting up the process. It should contain most of
491 // what we need (before reaching main( ))
492 result
= CreateRestrictedToken(initial
, initial_level_
,
493 integrity_level_
, IMPERSONATION
);
494 if (ERROR_SUCCESS
!= result
) {
495 ::CloseHandle(*lockdown
);
496 return SBOX_ERROR_GENERIC
;
501 const AppContainerAttributes
* PolicyBase::GetAppContainer() const {
502 if (!appcontainer_list_
.get() || !appcontainer_list_
->HasAppContainer())
505 return appcontainer_list_
.get();
508 bool PolicyBase::AddTarget(TargetProcess
* target
) {
510 policy_maker_
->Done();
512 if (!ApplyProcessMitigationsToSuspendedProcess(target
->Process(),
517 if (!SetupAllInterceptions(target
))
520 if (!SetupHandleCloser(target
))
523 // Initialize the sandbox infrastructure for the target.
524 if (ERROR_SUCCESS
!= target
->Init(this, policy_
, kIPCMemSize
, kPolMemSize
))
527 g_shared_delayed_integrity_level
= delayed_integrity_level_
;
528 ResultCode ret
= target
->TransferVariable(
529 "g_shared_delayed_integrity_level",
530 &g_shared_delayed_integrity_level
,
531 sizeof(g_shared_delayed_integrity_level
));
532 g_shared_delayed_integrity_level
= INTEGRITY_LEVEL_LAST
;
533 if (SBOX_ALL_OK
!= ret
)
536 // Add in delayed mitigations and pseudo-mitigations enforced at startup.
537 g_shared_delayed_mitigations
= delayed_mitigations_
|
538 FilterPostStartupProcessMitigations(mitigations_
);
539 if (!CanSetProcessMitigationsPostStartup(g_shared_delayed_mitigations
))
542 ret
= target
->TransferVariable("g_shared_delayed_mitigations",
543 &g_shared_delayed_mitigations
,
544 sizeof(g_shared_delayed_mitigations
));
545 g_shared_delayed_mitigations
= 0;
546 if (SBOX_ALL_OK
!= ret
)
549 AutoLock
lock(&lock_
);
550 targets_
.push_back(target
);
554 bool PolicyBase::OnJobEmpty(HANDLE job
) {
555 AutoLock
lock(&lock_
);
556 TargetSet::iterator it
;
557 for (it
= targets_
.begin(); it
!= targets_
.end(); ++it
) {
558 if ((*it
)->Job() == job
)
561 if (it
== targets_
.end()) {
564 TargetProcess
* target
= *it
;
570 EvalResult
PolicyBase::EvalPolicy(int service
,
571 CountedParameterSetBase
* params
) {
572 if (NULL
!= policy_
) {
573 if (NULL
== policy_
->entry
[service
]) {
574 // There is no policy for this particular service. This is not a big
578 for (int i
= 0; i
< params
->count
; i
++) {
579 if (!params
->parameters
[i
].IsValid()) {
584 PolicyProcessor
pol_evaluator(policy_
->entry
[service
]);
585 PolicyResult result
= pol_evaluator
.Evaluate(kShortEval
,
588 if (POLICY_MATCH
== result
) {
589 return pol_evaluator
.GetAction();
591 DCHECK(POLICY_ERROR
!= result
);
597 HANDLE
PolicyBase::GetStdoutHandle() {
598 return stdout_handle_
;
601 HANDLE
PolicyBase::GetStderrHandle() {
602 return stderr_handle_
;
605 // We service IPC_PING_TAG message which is a way to test a round trip of the
606 // IPC subsystem. We receive a integer cookie and we are expected to return the
607 // cookie times two (or three) and the current tick count.
608 bool PolicyBase::Ping(IPCInfo
* ipc
, void* arg1
) {
609 switch (ipc
->ipc_tag
) {
610 case IPC_PING1_TAG
: {
611 IPCInt
ipc_int(arg1
);
612 uint32 cookie
= ipc_int
.As32Bit();
613 ipc
->return_info
.extended_count
= 2;
614 ipc
->return_info
.extended
[0].unsigned_int
= ::GetTickCount();
615 ipc
->return_info
.extended
[1].unsigned_int
= 2 * cookie
;
618 case IPC_PING2_TAG
: {
619 CountedBuffer
* io_buffer
= reinterpret_cast<CountedBuffer
*>(arg1
);
620 if (sizeof(uint32
) != io_buffer
->Size())
623 uint32
* cookie
= reinterpret_cast<uint32
*>(io_buffer
->Buffer());
624 *cookie
= (*cookie
) * 3;
627 default: return false;
631 Dispatcher
* PolicyBase::GetDispatcher(int ipc_tag
) {
632 if (ipc_tag
>= IPC_LAST_TAG
|| ipc_tag
<= IPC_UNUSED_TAG
)
635 return ipc_targets_
[ipc_tag
];
638 bool PolicyBase::SetupAllInterceptions(TargetProcess
* target
) {
639 InterceptionManager
manager(target
, relaxed_interceptions_
);
642 for (int i
= 0; i
< IPC_LAST_TAG
; i
++) {
643 if (policy_
->entry
[i
] && !ipc_targets_
[i
]->SetupService(&manager
, i
))
648 if (!blacklisted_dlls_
.empty()) {
649 std::vector
<base::string16
>::iterator it
= blacklisted_dlls_
.begin();
650 for (; it
!= blacklisted_dlls_
.end(); ++it
) {
651 manager
.AddToUnloadModules(it
->c_str());
655 if (!SetupBasicInterceptions(&manager
))
658 if (!manager
.InitializeInterceptions())
661 // Finally, setup imports on the target so the interceptions can work.
662 return SetupNtdllImports(target
);
665 bool PolicyBase::SetupHandleCloser(TargetProcess
* target
) {
666 return handle_closer_
.InitializeTargetHandles(target
);
669 ResultCode
PolicyBase::AddRuleInternal(SubSystem subsystem
,
671 const wchar_t* pattern
) {
672 if (NULL
== policy_
) {
673 policy_
= MakeBrokerPolicyMemory();
675 policy_maker_
= new LowLevelPolicy(policy_
);
676 DCHECK(policy_maker_
);
681 if (!file_system_init_
) {
682 if (!FileSystemPolicy::SetInitialRules(policy_maker_
))
683 return SBOX_ERROR_BAD_PARAMS
;
684 file_system_init_
= true;
686 if (!FileSystemPolicy::GenerateRules(pattern
, semantics
, policy_maker_
)) {
688 return SBOX_ERROR_BAD_PARAMS
;
693 if (!SyncPolicy::GenerateRules(pattern
, semantics
, policy_maker_
)) {
695 return SBOX_ERROR_BAD_PARAMS
;
699 case SUBSYS_PROCESS
: {
700 if (lockdown_level_
< USER_INTERACTIVE
&&
701 TargetPolicy::PROCESS_ALL_EXEC
== semantics
) {
702 // This is unsupported. This is a huge security risk to give full access
703 // to a process handle.
704 return SBOX_ERROR_UNSUPPORTED
;
706 if (!ProcessPolicy::GenerateRules(pattern
, semantics
, policy_maker_
)) {
708 return SBOX_ERROR_BAD_PARAMS
;
712 case SUBSYS_NAMED_PIPES
: {
713 if (!NamedPipePolicy::GenerateRules(pattern
, semantics
, policy_maker_
)) {
715 return SBOX_ERROR_BAD_PARAMS
;
719 case SUBSYS_REGISTRY
: {
720 if (!RegistryPolicy::GenerateRules(pattern
, semantics
, policy_maker_
)) {
722 return SBOX_ERROR_BAD_PARAMS
;
726 case SUBSYS_HANDLES
: {
727 if (!HandlePolicy::GenerateRules(pattern
, semantics
, policy_maker_
)) {
729 return SBOX_ERROR_BAD_PARAMS
;
734 case SUBSYS_WIN32K_LOCKDOWN
: {
735 if (!ProcessMitigationsWin32KLockdownPolicy::GenerateRules(
736 pattern
, semantics
, policy_maker_
)) {
738 return SBOX_ERROR_BAD_PARAMS
;
743 default: { return SBOX_ERROR_UNSUPPORTED
; }
749 } // namespace sandbox