| OLD | NEW |
| 1 // Copyright (c) 2011 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 <aclapi.h> | 5 #include <aclapi.h> |
| 6 #include <sddl.h> | 6 #include <sddl.h> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "sandbox/src/restricted_token_utils.h" | 9 #include "sandbox/src/restricted_token_utils.h" |
| 10 | 10 |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/win/scoped_handle.h" | 12 #include "base/win/scoped_handle.h" |
| 13 #include "base/win/scoped_process_information.h" |
| 13 #include "base/win/windows_version.h" | 14 #include "base/win/windows_version.h" |
| 14 #include "sandbox/src/job.h" | 15 #include "sandbox/src/job.h" |
| 15 #include "sandbox/src/restricted_token.h" | 16 #include "sandbox/src/restricted_token.h" |
| 16 #include "sandbox/src/security_level.h" | 17 #include "sandbox/src/security_level.h" |
| 17 #include "sandbox/src/sid.h" | 18 #include "sandbox/src/sid.h" |
| 18 | 19 |
| 19 namespace sandbox { | 20 namespace sandbox { |
| 20 | 21 |
| 21 DWORD CreateRestrictedToken(HANDLE *token_handle, | 22 DWORD CreateRestrictedToken(HANDLE *token_handle, |
| 22 TokenLevel security_level, | 23 TokenLevel security_level, |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 impersonation_level, | 176 impersonation_level, |
| 176 INTEGRITY_LEVEL_LAST, | 177 INTEGRITY_LEVEL_LAST, |
| 177 IMPERSONATION); | 178 IMPERSONATION); |
| 178 if (ERROR_SUCCESS != err_code) { | 179 if (ERROR_SUCCESS != err_code) { |
| 179 return err_code; | 180 return err_code; |
| 180 } | 181 } |
| 181 base::win::ScopedHandle impersonation_token(impersonation_token_handle); | 182 base::win::ScopedHandle impersonation_token(impersonation_token_handle); |
| 182 | 183 |
| 183 // Start the process | 184 // Start the process |
| 184 STARTUPINFO startup_info = {0}; | 185 STARTUPINFO startup_info = {0}; |
| 185 PROCESS_INFORMATION process_info = {0}; | 186 base::win::ScopedProcessInformation process_info; |
| 186 | 187 |
| 187 if (!::CreateProcessAsUser(primary_token.Get(), | 188 if (!::CreateProcessAsUser(primary_token.Get(), |
| 188 NULL, // No application name. | 189 NULL, // No application name. |
| 189 command_line, | 190 command_line, |
| 190 NULL, // No security attribute. | 191 NULL, // No security attribute. |
| 191 NULL, // No thread attribute. | 192 NULL, // No thread attribute. |
| 192 FALSE, // Do not inherit handles. | 193 FALSE, // Do not inherit handles. |
| 193 CREATE_SUSPENDED | CREATE_BREAKAWAY_FROM_JOB, | 194 CREATE_SUSPENDED | CREATE_BREAKAWAY_FROM_JOB, |
| 194 NULL, // Use the environment of the caller. | 195 NULL, // Use the environment of the caller. |
| 195 NULL, // Use current directory of the caller. | 196 NULL, // Use current directory of the caller. |
| 196 &startup_info, | 197 &startup_info, |
| 197 &process_info)) { | 198 process_info.Receive())) { |
| 198 return ::GetLastError(); | 199 return ::GetLastError(); |
| 199 } | 200 } |
| 200 | 201 |
| 201 base::win::ScopedHandle thread_handle(process_info.hThread); | |
| 202 base::win::ScopedHandle process_handle(process_info.hProcess); | |
| 203 | |
| 204 // Change the token of the main thread of the new process for the | 202 // Change the token of the main thread of the new process for the |
| 205 // impersonation token with more rights. | 203 // impersonation token with more rights. |
| 206 if (!::SetThreadToken(&process_info.hThread, impersonation_token.Get())) { | 204 { |
| 207 ::TerminateProcess(process_handle.Get(), | 205 HANDLE temp_thread = process_info.thread_handle(); |
| 208 0); // exit code | 206 if (!::SetThreadToken(&temp_thread, impersonation_token.Get())) { |
| 209 return ::GetLastError(); | 207 ::TerminateProcess(process_info.process_handle(), |
| 208 0); // exit code |
| 209 return ::GetLastError(); |
| 210 } |
| 210 } | 211 } |
| 211 | 212 |
| 212 err_code = job.AssignProcessToJob(process_handle.Get()); | 213 err_code = job.AssignProcessToJob(process_info.process_handle()); |
| 213 if (ERROR_SUCCESS != err_code) { | 214 if (ERROR_SUCCESS != err_code) { |
| 214 ::TerminateProcess(process_handle.Get(), | 215 ::TerminateProcess(process_info.process_handle(), |
| 215 0); // exit code | 216 0); // exit code |
| 216 return ::GetLastError(); | 217 return ::GetLastError(); |
| 217 } | 218 } |
| 218 | 219 |
| 219 // Start the application | 220 // Start the application |
| 220 ::ResumeThread(thread_handle.Get()); | 221 ::ResumeThread(process_info.thread_handle()); |
| 221 | 222 |
| 222 (*job_handle_ret) = job.Detach(); | 223 (*job_handle_ret) = job.Detach(); |
| 223 | 224 |
| 224 return ERROR_SUCCESS; | 225 return ERROR_SUCCESS; |
| 225 } | 226 } |
| 226 | 227 |
| 227 DWORD SetObjectIntegrityLabel(HANDLE handle, SE_OBJECT_TYPE type, | 228 DWORD SetObjectIntegrityLabel(HANDLE handle, SE_OBJECT_TYPE type, |
| 228 const wchar_t* ace_access, | 229 const wchar_t* ace_access, |
| 229 const wchar_t* integrity_level_sid) { | 230 const wchar_t* integrity_level_sid) { |
| 230 // Build the SDDL string for the label. | 231 // Build the SDDL string for the label. |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 if (!::OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_DEFAULT, | 335 if (!::OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_DEFAULT, |
| 335 &token_handle)) | 336 &token_handle)) |
| 336 return ::GetLastError(); | 337 return ::GetLastError(); |
| 337 | 338 |
| 338 base::win::ScopedHandle token(token_handle); | 339 base::win::ScopedHandle token(token_handle); |
| 339 | 340 |
| 340 return SetTokenIntegrityLevel(token.Get(), integrity_level); | 341 return SetTokenIntegrityLevel(token.Get(), integrity_level); |
| 341 } | 342 } |
| 342 | 343 |
| 343 } // namespace sandbox | 344 } // namespace sandbox |
| OLD | NEW |