| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 #include "sandbox/win/src/handle_policy.h" | 5 #include "sandbox/win/src/handle_policy.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/win/scoped_handle.h" | 9 #include "base/win/scoped_handle.h" |
| 10 #include "sandbox/win/src/broker_services.h" | 10 #include "sandbox/win/src/broker_services.h" |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 CASE_INSENSITIVE)) { | 45 CASE_INSENSITIVE)) { |
| 46 return false; | 46 return false; |
| 47 } | 47 } |
| 48 if (!policy->AddRule(IPC_DUPLICATEHANDLEPROXY_TAG, &duplicate_rule)) { | 48 if (!policy->AddRule(IPC_DUPLICATEHANDLEPROXY_TAG, &duplicate_rule)) { |
| 49 return false; | 49 return false; |
| 50 } | 50 } |
| 51 return true; | 51 return true; |
| 52 } | 52 } |
| 53 | 53 |
| 54 DWORD HandlePolicy::DuplicateHandleProxyAction(EvalResult eval_result, | 54 DWORD HandlePolicy::DuplicateHandleProxyAction(EvalResult eval_result, |
| 55 const ClientInfo& client_info, | |
| 56 HANDLE source_handle, | 55 HANDLE source_handle, |
| 57 DWORD target_process_id, | 56 DWORD target_process_id, |
| 58 HANDLE* target_handle, | 57 HANDLE* target_handle, |
| 59 DWORD desired_access, | 58 DWORD desired_access, |
| 60 DWORD options) { | 59 DWORD options) { |
| 61 // The only action supported is ASK_BROKER which means duplicate the handle. | 60 // The only action supported is ASK_BROKER which means duplicate the handle. |
| 62 if (ASK_BROKER != eval_result) { | 61 if (ASK_BROKER != eval_result) { |
| 63 return ERROR_ACCESS_DENIED; | 62 return ERROR_ACCESS_DENIED; |
| 64 } | 63 } |
| 65 | 64 |
| 66 base::win::ScopedHandle remote_target_process; | 65 base::win::ScopedHandle remote_target_process; |
| 67 if (target_process_id != ::GetCurrentProcessId()) { | 66 if (target_process_id != ::GetCurrentProcessId()) { |
| 68 // Sandboxed children are dynamic, so we check that manually. | 67 // Sandboxed children are dynamic, so we check that manually. |
| 69 if (!BrokerServicesBase::GetInstance()->IsActiveTarget(target_process_id)) { | 68 if (!BrokerServicesBase::GetInstance()->IsActiveTarget(target_process_id)) { |
| 70 return ERROR_ACCESS_DENIED; | 69 return ERROR_ACCESS_DENIED; |
| 71 } | 70 } |
| 72 | 71 |
| 73 remote_target_process.Set(::OpenProcess(PROCESS_DUP_HANDLE, FALSE, | 72 remote_target_process.Set(::OpenProcess(PROCESS_DUP_HANDLE, FALSE, |
| 74 target_process_id)); | 73 target_process_id)); |
| 75 if (!remote_target_process.IsValid()) | 74 if (!remote_target_process.IsValid()) |
| 76 return ::GetLastError(); | 75 return ::GetLastError(); |
| 77 } | 76 } |
| 78 | 77 |
| 79 // If the policy didn't block us and we have no valid target, then the broker | 78 // If the policy didn't block us and we have no valid target, then the broker |
| 80 // (this process) is the valid target. | 79 // (this process) is the valid target. |
| 81 HANDLE target_process = remote_target_process.IsValid() ? | 80 HANDLE target_process = remote_target_process.IsValid() ? |
| 82 remote_target_process.Get() : ::GetCurrentProcess(); | 81 remote_target_process.Get() : ::GetCurrentProcess(); |
| 83 DWORD result = ERROR_SUCCESS; | 82 DWORD result = ERROR_SUCCESS; |
| 84 if (!::DuplicateHandle(client_info.process, source_handle, target_process, | 83 if (!::DuplicateHandle(::GetCurrentProcess(), source_handle, target_process, |
| 85 target_handle, desired_access, FALSE, | 84 target_handle, desired_access, FALSE, |
| 86 options)) { | 85 options)) { |
| 87 return ::GetLastError(); | 86 return ::GetLastError(); |
| 88 } | 87 } |
| 89 | 88 |
| 90 return ERROR_SUCCESS; | 89 return ERROR_SUCCESS; |
| 91 } | 90 } |
| 92 | 91 |
| 93 } // namespace sandbox | 92 } // namespace sandbox |
| 94 | 93 |
| OLD | NEW |