Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(817)

Unified Diff: sandbox/win/src/process_policy_test.cc

Issue 1225183003: CreateThread interception, to use CreateRemoteThread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: load GetThreadId dynamically Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sandbox/win/src/ipc_tags.h ('k') | sandbox/win/src/process_thread_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/src/process_policy_test.cc
diff --git a/sandbox/win/src/process_policy_test.cc b/sandbox/win/src/process_policy_test.cc
index 44effa36354b247bd84a339343c5aa8131a927f3..4130f8bbd02177687dd056e16b8788a3c7616ac2 100644
--- a/sandbox/win/src/process_policy_test.cc
+++ b/sandbox/win/src/process_policy_test.cc
@@ -10,6 +10,7 @@
#include "base/win/scoped_handle.h"
#include "base/win/scoped_process_information.h"
#include "base/win/windows_version.h"
+#include "sandbox/win/src/process_thread_interception.h"
#include "sandbox/win/src/sandbox.h"
#include "sandbox/win/src/sandbox_factory.h"
#include "sandbox/win/src/sandbox_policy.h"
@@ -258,6 +259,68 @@ SBOX_TESTS_COMMAND int Process_OpenToken(int argc, wchar_t **argv) {
return SBOX_TEST_FAILED;
}
+// Generate a event name, used to test thread creation.
+std::wstring GenerateEventName(DWORD pid) {
+ wchar_t buff[30] = {0};
+ int res = swprintf_s(buff, sizeof(buff) / sizeof(buff[0]),
+ L"ProcessPolicyTest_%08x", pid);
+ if (-1 != res) {
+ return std::wstring(buff);
+ }
+ return std::wstring();
+}
+
+// This is the function that is called when testing thread creation.
+// It is expected to set an event that the caller is waiting on.
+DWORD TestThreadFunc(LPVOID lpdwThreadParam) {
+ std::wstring event_name = GenerateEventName((DWORD)lpdwThreadParam);
+ if (!event_name.length()) {
+ return 1;
+ }
+ HANDLE event = ::OpenEvent(EVENT_ALL_ACCESS | EVENT_MODIFY_STATE, FALSE,
+ event_name.c_str());
+ if (!event) {
+ return 1;
+ }
+ if (!SetEvent(event)) {
+ return 1;
+ }
+ return 0;
+}
+
+SBOX_TESTS_COMMAND int Process_CreateThread(int argc, wchar_t** argv) {
+ DWORD pid = ::GetCurrentProcessId();
+ std::wstring event_name = GenerateEventName(pid);
+ if (!event_name.length()) {
+ return SBOX_TEST_FAILED;
+ }
+ HANDLE event = ::CreateEvent(NULL, TRUE, FALSE, event_name.c_str());
+
+ if (!event) {
+ return SBOX_TEST_FAILED;
+ }
+
+ DWORD thread_id = 0;
+ HANDLE thread = NULL;
+ thread = ::CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&TestThreadFunc,
+ (LPVOID)pid, 0, &thread_id);
+
+ if (!thread) {
+ return SBOX_TEST_FAILED;
+ }
+ if (!thread_id) {
+ return SBOX_TEST_FAILED;
+ }
+
+ if (WaitForSingleObject(thread, INFINITE) != WAIT_OBJECT_0) {
+ return SBOX_TEST_FAILED;
+ }
+ if (WaitForSingleObject(event, INFINITE) != WAIT_OBJECT_0) {
Will Harris 2015/09/17 23:08:00 nit: consider adding a test for return code of 0 b
liamjm (20p) 2015/10/19 20:17:43 Done.
+ return SBOX_TEST_FAILED;
+ }
+ return SBOX_TEST_SUCCEEDED;
+}
+
TEST(ProcessPolicyTest, TestAllAccess) {
// Check if the "all access" rule fails to be added when the token is too
// powerful.
@@ -382,4 +445,41 @@ TEST(ProcessPolicyTest, TestGetProcessTokenMaxAccessNoJob) {
runner.RunTest(L"Process_GetChildProcessToken findstr.exe"));
}
+// This tests that the CreateThread works with CSRSS not locked down.
+// In other words, that the interception passes through OK.
+TEST(ProcessPolicyTest, TestCreateThreadWithCsrss) {
+ TestRunner runner(JOB_NONE, USER_INTERACTIVE, USER_INTERACTIVE);
+ EXPECT_EQ(SBOX_TEST_SUCCEEDED, runner.RunTest(L"Process_CreateThread"));
+}
+
+// This tests that the CreateThread works with CSRSS locked down.
+// In other words, that the interception correctly works.
+TEST(ProcessPolicyTest, TestCreateThreadWithoutCsrss) {
+ TestRunner runner(JOB_NONE, USER_INTERACTIVE, USER_INTERACTIVE);
+
+ EXPECT_TRUE(runner.AddRule(TargetPolicy::SUBSYS_PROCESS,
+ TargetPolicy::PROCESS_MIN_EXEC,
+ L"this is not important"));
+
+ EXPECT_EQ(SBOX_TEST_SUCCEEDED, runner.RunTest(L"Process_CreateThread"));
+}
+
+// This tests that our CreateThread interceptors works when called directly.
+TEST(ProcessPolicyTest, TestCreateThreadOutsideSandbox) {
+ DWORD pid = ::GetCurrentProcessId();
+ std::wstring event_name = GenerateEventName(pid);
+ ASSERT_STRNE(NULL, event_name.c_str());
+ HANDLE event = ::CreateEvent(NULL, TRUE, FALSE, event_name.c_str());
+ EXPECT_NE(int(event), NULL);
Will Harris 2015/09/17 23:08:00 EXPECT_NE(NULL, event);
liamjm (20p) 2015/10/19 20:17:43 Done.
+
+ DWORD thread_id = 0;
+ HANDLE thread = NULL;
+ thread = TargetCreateThread(::CreateThread, NULL, 0,
+ (LPTHREAD_START_ROUTINE)&TestThreadFunc,
+ (LPVOID)pid, 0, &thread_id);
+ EXPECT_NE(int(thread), NULL);
Will Harris 2015/09/17 23:08:00 EXPECT_EQ(NULL, thread);
liamjm (20p) 2015/10/19 20:17:43 Done.
+ EXPECT_EQ(WAIT_OBJECT_0, WaitForSingleObject(thread, INFINITE));
+ EXPECT_EQ(WAIT_OBJECT_0, WaitForSingleObject(event, INFINITE));
+}
+
} // namespace sandbox
« no previous file with comments | « sandbox/win/src/ipc_tags.h ('k') | sandbox/win/src/process_thread_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698