blob: 131751f86c3f7afc47ba1816f9e62dded7da0891 [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/win/scoped_handle.h"
#include "build/build_config.h"
#include "sandbox/win/src/sandbox.h"
#include "sandbox/win/src/sandbox_factory.h"
#include "sandbox/win/src/target_services.h"
#include "sandbox/win/tests/common/controller.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace sandbox {
// Loads and or unloads a DLL passed in the second parameter of argv.
// The first parameter of argv is 'L' = load, 'U' = unload or 'B' for both.
SBOX_TESTS_COMMAND int UseOneDLL(int argc, wchar_t** argv) {
if (argc != 2)
return SBOX_TEST_FAILED_TO_RUN_TEST;
int rv = SBOX_TEST_FAILED_TO_RUN_TEST;
wchar_t option = (argv[0])[0];
if ((option == L'L') || (option == L'B')) {
HMODULE module1 = ::LoadLibraryW(argv[1]);
rv = (!module1) ? SBOX_TEST_FAILED : SBOX_TEST_SUCCEEDED;
}
if ((option == L'U') || (option == L'B')) {
HMODULE module2 = ::GetModuleHandleW(argv[1]);
rv = ::FreeLibrary(module2) ? SBOX_TEST_SUCCEEDED : SBOX_TEST_FAILED;
}
return rv;
}
// Opens the current executable's path.
SBOX_TESTS_COMMAND int OpenExecutablePath(int argc, wchar_t** argv) {
WCHAR full_path[MAX_PATH];
if (!::GetModuleFileName(nullptr, full_path, MAX_PATH))
return SBOX_TEST_FIRST_ERROR;
if (::GetFileAttributes(full_path) == INVALID_FILE_ATTRIBUTES)
return SBOX_TEST_FAILED;
return SBOX_TEST_SUCCEEDED;
}
std::unique_ptr<TestRunner> BaselineAvicapRunner() {
auto runner = std::make_unique<TestRunner>();
runner->SetTestState(BEFORE_REVERT);
runner->SetTimeout(2000);
// Add a file rule, because that ensures that the interception agent has
// more than one item in its internal table.
runner->AllowFileAccess(FileSemantics::kAllowReadonly, L"\\??\\*.exe");
return runner;
}
// Fails on Windows ARM64: https://crbug.com/905526
#if defined(ARCH_CPU_ARM64)
#define MAYBE_BaselineAvicapDll DISABLED_BaselineAvicapDll
#else
#define MAYBE_BaselineAvicapDll BaselineAvicapDll
#endif
TEST(UnloadDllTest, MAYBE_BaselineAvicapDll) {
auto runner = BaselineAvicapRunner();
// Note for the puzzled: avicap32.dll is a 64-bit dll in 64-bit versions of
// windows so this test and the others just work.
EXPECT_EQ(SBOX_TEST_SUCCEEDED, runner->RunTest(L"UseOneDLL L avicap32.dll"));
runner = BaselineAvicapRunner();
EXPECT_EQ(SBOX_TEST_SUCCEEDED, runner->RunTest(L"UseOneDLL B avicap32.dll"));
}
std::unique_ptr<TestRunner> UnloadAvicapNoPatchingRunner() {
auto runner = std::make_unique<TestRunner>();
runner->SetTestState(BEFORE_REVERT);
runner->SetTimeout(2000);
runner->GetPolicy()->GetConfig()->AddDllToUnload(L"avicap32.dll");
return runner;
}
TEST(UnloadDllTest, UnloadAviCapDllNoPatching) {
auto runner = UnloadAvicapNoPatchingRunner();
EXPECT_EQ(SBOX_TEST_FAILED, runner->RunTest(L"UseOneDLL L avicap32.dll"));
runner = UnloadAvicapNoPatchingRunner();
EXPECT_EQ(SBOX_TEST_FAILED, runner->RunTest(L"UseOneDLL B avicap32.dll"));
}
std::unique_ptr<TestRunner> UnloadAvicapWithPatchingRunner() {
auto runner = std::make_unique<TestRunner>();
runner->SetTestState(BEFORE_REVERT);
runner->SetTimeout(2000);
runner->GetPolicy()->GetConfig()->AddDllToUnload(L"avicap32.dll");
// Add a couple of rules that ensures that the interception agent add EAT
// patching on the client which makes sure that the unload dll record does
// not interact badly with them.
runner->AllowFileAccess(FileSemantics::kAllowReadonly, L"\\??\\*.exe");
runner->AllowFileAccess(FileSemantics::kAllowReadonly, L"\\??\\*.log");
return runner;
}
TEST(UnloadDllTest, UnloadAviCapDllWithPatching) {
auto runner = UnloadAvicapWithPatchingRunner();
EXPECT_EQ(SBOX_TEST_FAILED, runner->RunTest(L"UseOneDLL L avicap32.dll"));
runner = UnloadAvicapWithPatchingRunner();
runner->SetTestState(AFTER_REVERT);
EXPECT_EQ(SBOX_TEST_SUCCEEDED, runner->RunTest(L"OpenExecutablePath"));
}
} // namespace sandbox