Chromium Code Reviews
|
| 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" | |
|
rvargas (doing something else)
2012/03/27 00:35:33
remove
jschuh
2012/03/27 01:36:19
Done.
| |
| 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 | |
|
rvargas (doing something else)
2012/03/27 00:35:33
nit: Period at the end.
jschuh
2012/03/27 01:36:19
Done.
| |
| 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. | |
|
rvargas (doing something else)
2012/03/27 00:35:33
open and create?
jschuh
2012/03/27 01:36:19
Done.
| |
| 25 static bool GenerateRules(const wchar_t* name, | |
|
rvargas (doing something else)
2012/03/27 00:35:33
Somewhere there should be stated that this name is
jschuh
2012/03/27 01:36:19
Changed the variable to type_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 |