OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 #ifndef SANDBOX_SRC_HANDLE_POLICY_H__ |
| 6 #define SANDBOX_SRC_HANDLE_POLICY_H__ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/basictypes.h" |
| 11 #include "sandbox/src/crosscall_server.h" |
| 12 #include "sandbox/src/nt_internals.h" |
| 13 #include "sandbox/src/policy_low_level.h" |
| 14 #include "sandbox/src/sandbox_policy.h" |
| 15 |
| 16 namespace sandbox { |
| 17 |
| 18 enum EvalResult; |
| 19 |
| 20 // This class centralizes most of the knowledge related to handle policy |
| 21 class HandlePolicy { |
| 22 public: |
| 23 // Creates the required low-level policy rules to evaluate a high-level |
| 24 // policy rule for handles, in particular open or create actions. |
| 25 static bool GenerateRules(const wchar_t* name, |
| 26 TargetPolicy::Semantics semantics, |
| 27 LowLevelPolicy* policy); |
| 28 |
| 29 // Processes a 'TargetPolicy::DuplicateHandle()' request from the target. |
| 30 static DWORD DuplicateHandleProxyAction(EvalResult eval_result, |
| 31 const ClientInfo& client_info, |
| 32 HANDLE source_handle, |
| 33 DWORD target_process_id, |
| 34 HANDLE* target_handle, |
| 35 DWORD desired_access, |
| 36 BOOL inherit_handle, |
| 37 DWORD options); |
| 38 }; |
| 39 |
| 40 } // namespace sandbox |
| 41 |
| 42 #endif // SANDBOX_SRC_HANDLE_POLICY_H__ |
| 43 |
OLD | NEW |