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
3 // found in the LICENSE file.
5 #include "sandbox/win/src/named_pipe_policy.h"
9 #include "sandbox/win/src/ipc_tags.h"
10 #include "sandbox/win/src/policy_engine_opcodes.h"
11 #include "sandbox/win/src/policy_params.h"
12 #include "sandbox/win/src/sandbox_types.h"
16 // Creates a named pipe and duplicates the handle to 'target_process'. The
17 // remaining parameters are the same as CreateNamedPipeW().
18 HANDLE
CreateNamedPipeHelper(HANDLE target_process
, LPCWSTR pipe_name
,
19 DWORD open_mode
, DWORD pipe_mode
,
20 DWORD max_instances
, DWORD out_buffer_size
,
21 DWORD in_buffer_size
, DWORD default_timeout
,
22 LPSECURITY_ATTRIBUTES security_attributes
) {
23 HANDLE pipe
= ::CreateNamedPipeW(pipe_name
, open_mode
, pipe_mode
,
24 max_instances
, out_buffer_size
,
25 in_buffer_size
, default_timeout
,
27 if (INVALID_HANDLE_VALUE
== pipe
)
31 if (!::DuplicateHandle(::GetCurrentProcess(), pipe
,
32 target_process
, &new_pipe
,
34 DUPLICATE_CLOSE_SOURCE
| DUPLICATE_SAME_ACCESS
)) {
35 return INVALID_HANDLE_VALUE
;
45 bool NamedPipePolicy::GenerateRules(const wchar_t* name
,
46 TargetPolicy::Semantics semantics
,
47 LowLevelPolicy
* policy
) {
48 if (TargetPolicy::NAMEDPIPES_ALLOW_ANY
!= semantics
) {
51 PolicyRule
pipe(ASK_BROKER
);
52 if (!pipe
.AddStringMatch(IF
, NameBased::NAME
, name
, CASE_INSENSITIVE
)) {
55 if (!policy
->AddRule(IPC_CREATENAMEDPIPEW_TAG
, &pipe
)) {
61 DWORD
NamedPipePolicy::CreateNamedPipeAction(EvalResult eval_result
,
62 const ClientInfo
& client_info
,
63 const std::wstring
&name
,
64 DWORD open_mode
, DWORD pipe_mode
,
66 DWORD out_buffer_size
,
68 DWORD default_timeout
,
70 // The only action supported is ASK_BROKER which means create the pipe.
71 if (ASK_BROKER
!= eval_result
) {
72 return ERROR_ACCESS_DENIED
;
75 *pipe
= CreateNamedPipeHelper(client_info
.process
, name
.c_str(),
76 open_mode
, pipe_mode
, max_instances
,
77 out_buffer_size
, in_buffer_size
,
78 default_timeout
, NULL
);
80 if (INVALID_HANDLE_VALUE
== *pipe
)
81 return ERROR_ACCESS_DENIED
;
86 } // namespace sandbox