2015-03-11 17:07:11 -04:00
|
|
|
|
// Copyright 2015 The Crashpad Authors. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
//
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#include "snapshot/crashpad_info_client_options.h"
|
2015-03-11 17:07:11 -04:00
|
|
|
|
|
|
|
|
|
#include "base/files/file_path.h"
|
2016-01-06 12:22:50 -05:00
|
|
|
|
#include "base/macros.h"
|
2015-05-01 15:49:35 -07:00
|
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#include "build/build_config.h"
|
2015-03-11 17:07:11 -04:00
|
|
|
|
#include "client/crashpad_info.h"
|
|
|
|
|
#include "gtest/gtest.h"
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#include "test/errors.h"
|
test: Move util/test to its own top-level directory, test.
After 9e79ea1da719, it no longer makes sense for crashpad_util_test_lib
to “hide” in util/util_test.gyp. All of util/test is moved to its own
top-level directory, test, which all other test code is allowed to
depend on. test, too, is allowed to depend on all other non-test code.
In a future change, when crashpad_util_test_lib gains a dependency on
crashpad_client, it won’t look so weird for something in util (even
though it’s in util/test) to depend on something in client, because the
thing that needs to depend on client will live in test, not util.
BUG=crashpad:33
R=scottmg@chromium.org
Review URL: https://codereview.chromium.org/1051533002
2015-03-31 17:44:14 -04:00
|
|
|
|
#include "test/paths.h"
|
2015-03-11 17:07:11 -04:00
|
|
|
|
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
|
#include <dlfcn.h>
|
|
|
|
|
#include "snapshot/mac/process_snapshot_mac.h"
|
|
|
|
|
#elif defined(OS_WIN)
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
#include "snapshot/win/process_snapshot_win.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-03-11 17:07:11 -04:00
|
|
|
|
namespace crashpad {
|
|
|
|
|
namespace test {
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
TEST(CrashpadInfoClientOptions, TriStateFromCrashpadInfo) {
|
|
|
|
|
EXPECT_EQ(TriState::kUnset,
|
|
|
|
|
CrashpadInfoClientOptions::TriStateFromCrashpadInfo(0));
|
|
|
|
|
EXPECT_EQ(TriState::kEnabled,
|
|
|
|
|
CrashpadInfoClientOptions::TriStateFromCrashpadInfo(1));
|
|
|
|
|
EXPECT_EQ(TriState::kDisabled,
|
|
|
|
|
CrashpadInfoClientOptions::TriStateFromCrashpadInfo(2));
|
|
|
|
|
|
|
|
|
|
// These will produce log messages but should result in kUnset being returned.
|
|
|
|
|
EXPECT_EQ(TriState::kUnset,
|
|
|
|
|
CrashpadInfoClientOptions::TriStateFromCrashpadInfo(3));
|
|
|
|
|
EXPECT_EQ(TriState::kUnset,
|
|
|
|
|
CrashpadInfoClientOptions::TriStateFromCrashpadInfo(4));
|
|
|
|
|
EXPECT_EQ(TriState::kUnset,
|
|
|
|
|
CrashpadInfoClientOptions::TriStateFromCrashpadInfo(0xff));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class ScopedUnsetCrashpadInfoOptions {
|
|
|
|
|
public:
|
|
|
|
|
explicit ScopedUnsetCrashpadInfoOptions(CrashpadInfo* crashpad_info)
|
|
|
|
|
: crashpad_info_(crashpad_info) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~ScopedUnsetCrashpadInfoOptions() {
|
|
|
|
|
crashpad_info_->set_crashpad_handler_behavior(TriState::kUnset);
|
|
|
|
|
crashpad_info_->set_system_crash_reporter_forwarding(TriState::kUnset);
|
2016-01-14 15:12:28 -08:00
|
|
|
|
crashpad_info_->set_gather_indirectly_referenced_memory(TriState::kUnset);
|
2015-03-11 17:07:11 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
CrashpadInfo* crashpad_info_;
|
|
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ScopedUnsetCrashpadInfoOptions);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
TEST(CrashpadInfoClientOptions, OneModule) {
|
|
|
|
|
// Make sure that the initial state has all values unset.
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#if defined(OS_MACOSX)
|
2015-03-11 17:07:11 -04:00
|
|
|
|
ProcessSnapshotMac process_snapshot;
|
|
|
|
|
ASSERT_TRUE(process_snapshot.Initialize(mach_task_self()));
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#elif defined(OS_WIN)
|
|
|
|
|
ProcessSnapshotWin process_snapshot;
|
2015-10-15 13:18:08 -07:00
|
|
|
|
ASSERT_TRUE(process_snapshot.Initialize(
|
|
|
|
|
GetCurrentProcess(), ProcessSuspensionState::kRunning, 0));
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#else
|
|
|
|
|
#error Port.
|
|
|
|
|
#endif // OS_MACOSX
|
2015-03-11 17:07:11 -04:00
|
|
|
|
|
|
|
|
|
CrashpadInfoClientOptions options;
|
|
|
|
|
process_snapshot.GetCrashpadOptions(&options);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.crashpad_handler_behavior);
|
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.system_crash_reporter_forwarding);
|
2016-01-14 15:12:28 -08:00
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.gather_indirectly_referenced_memory);
|
2015-03-11 17:07:11 -04:00
|
|
|
|
|
|
|
|
|
CrashpadInfo* crashpad_info = CrashpadInfo::GetCrashpadInfo();
|
|
|
|
|
ASSERT_TRUE(crashpad_info);
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
ScopedUnsetCrashpadInfoOptions unset(crashpad_info);
|
|
|
|
|
|
|
|
|
|
crashpad_info->set_crashpad_handler_behavior(TriState::kEnabled);
|
|
|
|
|
|
|
|
|
|
process_snapshot.GetCrashpadOptions(&options);
|
|
|
|
|
EXPECT_EQ(TriState::kEnabled, options.crashpad_handler_behavior);
|
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.system_crash_reporter_forwarding);
|
2016-01-14 15:12:28 -08:00
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.gather_indirectly_referenced_memory);
|
2015-03-11 17:07:11 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
ScopedUnsetCrashpadInfoOptions unset(crashpad_info);
|
|
|
|
|
|
|
|
|
|
crashpad_info->set_system_crash_reporter_forwarding(TriState::kDisabled);
|
|
|
|
|
|
|
|
|
|
process_snapshot.GetCrashpadOptions(&options);
|
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.crashpad_handler_behavior);
|
|
|
|
|
EXPECT_EQ(TriState::kDisabled, options.system_crash_reporter_forwarding);
|
2016-01-14 15:12:28 -08:00
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.gather_indirectly_referenced_memory);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
ScopedUnsetCrashpadInfoOptions unset(crashpad_info);
|
|
|
|
|
|
|
|
|
|
crashpad_info->set_gather_indirectly_referenced_memory(TriState::kEnabled);
|
|
|
|
|
|
|
|
|
|
process_snapshot.GetCrashpadOptions(&options);
|
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.crashpad_handler_behavior);
|
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.system_crash_reporter_forwarding);
|
|
|
|
|
EXPECT_EQ(TriState::kEnabled, options.gather_indirectly_referenced_memory);
|
2015-03-11 17:07:11 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#if defined(OS_POSIX)
|
|
|
|
|
using DlHandle = void*;
|
|
|
|
|
#elif defined(OS_WIN)
|
|
|
|
|
using DlHandle = HMODULE;
|
|
|
|
|
#endif // OS_POSIX
|
|
|
|
|
|
2015-03-11 17:07:11 -04:00
|
|
|
|
class ScopedDlHandle {
|
|
|
|
|
public:
|
2015-05-01 13:48:23 -07:00
|
|
|
|
explicit ScopedDlHandle(DlHandle dl_handle)
|
2015-03-11 17:07:11 -04:00
|
|
|
|
: dl_handle_(dl_handle) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~ScopedDlHandle() {
|
|
|
|
|
if (dl_handle_) {
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#if defined(OS_POSIX)
|
2015-03-11 17:07:11 -04:00
|
|
|
|
if (dlclose(dl_handle_) != 0) {
|
|
|
|
|
LOG(ERROR) << "dlclose: " << dlerror();
|
|
|
|
|
}
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#elif defined(OS_WIN)
|
|
|
|
|
if (!FreeLibrary(dl_handle_))
|
|
|
|
|
PLOG(ERROR) << "FreeLibrary";
|
|
|
|
|
#endif // OS_POSIX
|
2015-03-11 17:07:11 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool valid() const { return dl_handle_ != nullptr; }
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
T LookUpSymbol(const char* symbol_name) {
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#if defined(OS_POSIX)
|
2015-03-11 17:07:11 -04:00
|
|
|
|
return reinterpret_cast<T>(dlsym(dl_handle_, symbol_name));
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#elif defined(OS_WIN)
|
|
|
|
|
return reinterpret_cast<T>(GetProcAddress(dl_handle_, symbol_name));
|
|
|
|
|
#endif // OS_POSIX
|
2015-03-11 17:07:11 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
2015-05-01 13:48:23 -07:00
|
|
|
|
DlHandle dl_handle_;
|
2015-03-11 17:07:11 -04:00
|
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ScopedDlHandle);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
TEST(CrashpadInfoClientOptions, TwoModules) {
|
|
|
|
|
// Open the module, which has its own CrashpadInfo structure.
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
|
const base::FilePath::StringType kDlExtension = FILE_PATH_LITERAL(".so");
|
|
|
|
|
#elif defined(OS_WIN)
|
|
|
|
|
const base::FilePath::StringType kDlExtension = FILE_PATH_LITERAL(".dll");
|
|
|
|
|
#endif
|
|
|
|
|
base::FilePath module_path = Paths::Executable().DirName().Append(
|
|
|
|
|
FILE_PATH_LITERAL("crashpad_snapshot_test_module") + kDlExtension);
|
|
|
|
|
#if defined(OS_MACOSX)
|
2015-03-11 17:07:11 -04:00
|
|
|
|
ScopedDlHandle dl_handle(
|
|
|
|
|
dlopen(module_path.value().c_str(), RTLD_LAZY | RTLD_LOCAL));
|
|
|
|
|
ASSERT_TRUE(dl_handle.valid()) << "dlopen " << module_path.value() << ": "
|
|
|
|
|
<< dlerror();
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#elif defined(OS_WIN)
|
|
|
|
|
ScopedDlHandle dl_handle(LoadLibrary(module_path.value().c_str()));
|
2015-05-01 15:49:35 -07:00
|
|
|
|
ASSERT_TRUE(dl_handle.valid())
|
|
|
|
|
<< "LoadLibrary " << base::UTF16ToUTF8(module_path.value()) << ": "
|
|
|
|
|
<< ErrorMessage();
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#else
|
|
|
|
|
#error Port.
|
|
|
|
|
#endif // OS_MACOSX
|
2015-03-11 17:07:11 -04:00
|
|
|
|
|
|
|
|
|
// Get the function pointer from the module. This wraps GetCrashpadInfo(), but
|
|
|
|
|
// because it runs in the module, it returns the remote module’s CrashpadInfo
|
|
|
|
|
// structure.
|
|
|
|
|
CrashpadInfo* (*TestModule_GetCrashpadInfo)() =
|
|
|
|
|
dl_handle.LookUpSymbol<CrashpadInfo* (*)()>("TestModule_GetCrashpadInfo");
|
|
|
|
|
ASSERT_TRUE(TestModule_GetCrashpadInfo);
|
|
|
|
|
|
|
|
|
|
// Make sure that the initial state has all values unset.
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#if defined(OS_MACOSX)
|
2015-03-11 17:07:11 -04:00
|
|
|
|
ProcessSnapshotMac process_snapshot;
|
|
|
|
|
ASSERT_TRUE(process_snapshot.Initialize(mach_task_self()));
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#elif defined(OS_WIN)
|
|
|
|
|
ProcessSnapshotWin process_snapshot;
|
2015-10-15 13:18:08 -07:00
|
|
|
|
ASSERT_TRUE(process_snapshot.Initialize(
|
|
|
|
|
GetCurrentProcess(), ProcessSuspensionState::kRunning, 0));
|
2015-05-01 13:48:23 -07:00
|
|
|
|
#else
|
|
|
|
|
#error Port.
|
|
|
|
|
#endif // OS_MACOSX
|
2015-03-11 17:07:11 -04:00
|
|
|
|
|
|
|
|
|
CrashpadInfoClientOptions options;
|
|
|
|
|
process_snapshot.GetCrashpadOptions(&options);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.crashpad_handler_behavior);
|
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.system_crash_reporter_forwarding);
|
2016-01-14 15:12:28 -08:00
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.gather_indirectly_referenced_memory);
|
2015-03-11 17:07:11 -04:00
|
|
|
|
|
|
|
|
|
// Get both CrashpadInfo structures.
|
|
|
|
|
CrashpadInfo* local_crashpad_info = CrashpadInfo::GetCrashpadInfo();
|
|
|
|
|
ASSERT_TRUE(local_crashpad_info);
|
|
|
|
|
|
|
|
|
|
CrashpadInfo* remote_crashpad_info = TestModule_GetCrashpadInfo();
|
|
|
|
|
ASSERT_TRUE(remote_crashpad_info);
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
ScopedUnsetCrashpadInfoOptions unset_local(local_crashpad_info);
|
|
|
|
|
ScopedUnsetCrashpadInfoOptions unset_remote(remote_crashpad_info);
|
|
|
|
|
|
|
|
|
|
// When only one module sets a value, it applies to the entire process.
|
|
|
|
|
remote_crashpad_info->set_crashpad_handler_behavior(TriState::kEnabled);
|
|
|
|
|
|
|
|
|
|
process_snapshot.GetCrashpadOptions(&options);
|
|
|
|
|
EXPECT_EQ(TriState::kEnabled, options.crashpad_handler_behavior);
|
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.system_crash_reporter_forwarding);
|
2016-01-14 15:12:28 -08:00
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.gather_indirectly_referenced_memory);
|
2015-03-11 17:07:11 -04:00
|
|
|
|
|
|
|
|
|
// When more than one module sets a value, the first one in the module list
|
|
|
|
|
// applies to the process. The local module should appear before the remote
|
|
|
|
|
// module, because the local module loaded the remote module.
|
|
|
|
|
local_crashpad_info->set_crashpad_handler_behavior(TriState::kDisabled);
|
|
|
|
|
|
|
|
|
|
process_snapshot.GetCrashpadOptions(&options);
|
|
|
|
|
EXPECT_EQ(TriState::kDisabled, options.crashpad_handler_behavior);
|
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.system_crash_reporter_forwarding);
|
2016-01-14 15:12:28 -08:00
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.gather_indirectly_referenced_memory);
|
2015-03-11 17:07:11 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
ScopedUnsetCrashpadInfoOptions unset_local(local_crashpad_info);
|
|
|
|
|
ScopedUnsetCrashpadInfoOptions unset_remote(remote_crashpad_info);
|
|
|
|
|
|
|
|
|
|
// When only one module sets a value, it applies to the entire process.
|
|
|
|
|
remote_crashpad_info->set_system_crash_reporter_forwarding(
|
|
|
|
|
TriState::kDisabled);
|
|
|
|
|
|
|
|
|
|
process_snapshot.GetCrashpadOptions(&options);
|
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.crashpad_handler_behavior);
|
|
|
|
|
EXPECT_EQ(TriState::kDisabled, options.system_crash_reporter_forwarding);
|
2016-01-14 15:12:28 -08:00
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.gather_indirectly_referenced_memory);
|
2015-03-11 17:07:11 -04:00
|
|
|
|
|
|
|
|
|
// When more than one module sets a value, the first one in the module list
|
|
|
|
|
// applies to the process. The local module should appear before the remote
|
|
|
|
|
// module, because the local module loaded the remote module.
|
|
|
|
|
local_crashpad_info->set_system_crash_reporter_forwarding(
|
|
|
|
|
TriState::kEnabled);
|
|
|
|
|
|
|
|
|
|
process_snapshot.GetCrashpadOptions(&options);
|
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.crashpad_handler_behavior);
|
|
|
|
|
EXPECT_EQ(TriState::kEnabled, options.system_crash_reporter_forwarding);
|
2016-01-14 15:12:28 -08:00
|
|
|
|
EXPECT_EQ(TriState::kUnset, options.gather_indirectly_referenced_memory);
|
2015-03-11 17:07:11 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
} // namespace test
|
|
|
|
|
} // namespace crashpad
|