OLD | NEW |
1 // Copyright 2015 The Crashpad Authors. All rights reserved. | 1 // Copyright 2015 The Crashpad Authors. All rights reserved. |
2 // | 2 // |
3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
6 // | 6 // |
7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
8 // | 8 // |
9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 // See the License for the specific language governing permissions and | 12 // See the License for the specific language governing permissions and |
13 // limitations under the License. | 13 // limitations under the License. |
14 | 14 |
15 #include "snapshot/win/pe_image_annotations_reader.h" | 15 #include "snapshot/win/pe_image_annotations_reader.h" |
16 | 16 |
17 #include <stdlib.h> | 17 #include <stdlib.h> |
18 #include <string.h> | 18 #include <string.h> |
19 | 19 |
20 #include <map> | 20 #include <map> |
21 #include <string> | 21 #include <string> |
22 #include <vector> | 22 #include <vector> |
23 | 23 |
24 #include "base/basictypes.h" | 24 #include "base/basictypes.h" |
| 25 #include "base/files/file_path.h" |
25 #include "base/strings/utf_string_conversions.h" | 26 #include "base/strings/utf_string_conversions.h" |
26 #include "client/crashpad_info.h" | 27 #include "client/crashpad_info.h" |
27 #include "client/simple_string_dictionary.h" | 28 #include "client/simple_string_dictionary.h" |
28 #include "gtest/gtest.h" | 29 #include "gtest/gtest.h" |
29 #include "snapshot/win/pe_image_reader.h" | 30 #include "snapshot/win/pe_image_reader.h" |
30 #include "snapshot/win/process_reader_win.h" | 31 #include "snapshot/win/process_reader_win.h" |
| 32 #include "test/paths.h" |
| 33 #include "test/win/child_launcher.h" |
31 #include "test/win/win_multiprocess.h" | 34 #include "test/win/win_multiprocess.h" |
32 #include "util/file/file_io.h" | 35 #include "util/file/file_io.h" |
33 #include "util/win/process_info.h" | 36 #include "util/win/process_info.h" |
34 | 37 |
35 namespace crashpad { | 38 namespace crashpad { |
36 namespace test { | 39 namespace test { |
37 namespace { | 40 namespace { |
38 | 41 |
39 enum TestType { | 42 enum TestType { |
40 // Don't crash, just test the CrashpadInfo interface. | 43 // Don't crash, just test the CrashpadInfo interface. |
41 kDontCrash = 0, | 44 kDontCrash = 0, |
42 | 45 |
43 // The child process should crash by __debugbreak(). | 46 // The child process should crash by __debugbreak(). |
44 kCrashDebugBreak, | 47 kCrashDebugBreak, |
45 }; | 48 }; |
46 | 49 |
47 template <TestType Type> | 50 void TestAnnotationsOnCrash(TestType type, |
48 class TestPEImageAnnotationsReader final : public WinMultiprocess { | 51 const base::string16& directory_modification) { |
49 public: | 52 // Spawn a child process, passing it the pipe name to connect to. |
50 TestPEImageAnnotationsReader() {} | 53 base::FilePath test_executable = Paths::Executable(); |
51 ~TestPEImageAnnotationsReader() {} | 54 std::wstring child_test_executable = |
| 55 test_executable.DirName() |
| 56 .Append(directory_modification) |
| 57 .Append(test_executable.BaseName().RemoveFinalExtension().value() + |
| 58 L"_simple_annotations.exe") |
| 59 .value(); |
| 60 ChildLauncher child(child_test_executable, L""); |
| 61 child.Start(); |
52 | 62 |
53 private: | 63 // Wait for the child process to indicate that it's done setting up its |
54 // WinMultiprocess: | 64 // annotations via the CrashpadInfo interface. |
| 65 char c; |
| 66 CheckedReadFile(child.stdout_read_handle(), &c, sizeof(c)); |
55 | 67 |
56 void WinMultiprocessParent() override { | 68 ProcessReaderWin process_reader; |
57 ProcessReaderWin process_reader; | 69 ASSERT_TRUE(process_reader.Initialize(child.process_handle(), |
58 ASSERT_TRUE(process_reader.Initialize(ChildProcess(), | 70 ProcessSuspensionState::kRunning)); |
59 ProcessSuspensionState::kRunning)); | |
60 | 71 |
61 // Wait for the child process to indicate that it's done setting up its | 72 // Verify the "simple map" annotations set via the CrashpadInfo interface. |
62 // annotations via the CrashpadInfo interface. | 73 const std::vector<ProcessInfo::Module>& modules = process_reader.Modules(); |
63 char c; | 74 std::map<std::string, std::string> all_annotations_simple_map; |
64 CheckedReadFile(ReadPipeHandle(), &c, sizeof(c)); | 75 for (const ProcessInfo::Module& module : modules) { |
65 | 76 PEImageReader pe_image_reader; |
66 // Verify the "simple map" annotations set via the CrashpadInfo interface. | 77 pe_image_reader.Initialize(&process_reader, |
67 const std::vector<ProcessInfo::Module>& modules = process_reader.Modules(); | 78 module.dll_base, |
68 std::map<std::string, std::string> all_annotations_simple_map; | 79 module.size, |
69 for (const ProcessInfo::Module& module : modules) { | 80 base::UTF16ToUTF8(module.name)); |
70 PEImageReader pe_image_reader; | 81 PEImageAnnotationsReader module_annotations_reader( |
71 pe_image_reader.Initialize(&process_reader, | 82 &process_reader, &pe_image_reader, module.name); |
72 module.dll_base, | 83 std::map<std::string, std::string> module_annotations_simple_map = |
73 module.size, | 84 module_annotations_reader.SimpleMap(); |
74 base::UTF16ToUTF8(module.name)); | 85 all_annotations_simple_map.insert(module_annotations_simple_map.begin(), |
75 PEImageAnnotationsReader module_annotations_reader( | 86 module_annotations_simple_map.end()); |
76 &process_reader, &pe_image_reader, module.name); | |
77 std::map<std::string, std::string> module_annotations_simple_map = | |
78 module_annotations_reader.SimpleMap(); | |
79 all_annotations_simple_map.insert(module_annotations_simple_map.begin(), | |
80 module_annotations_simple_map.end()); | |
81 } | |
82 | |
83 EXPECT_GE(all_annotations_simple_map.size(), 5u); | |
84 EXPECT_EQ("crash", all_annotations_simple_map["#TEST# pad"]); | |
85 EXPECT_EQ("value", all_annotations_simple_map["#TEST# key"]); | |
86 EXPECT_EQ("y", all_annotations_simple_map["#TEST# x"]); | |
87 EXPECT_EQ("shorter", all_annotations_simple_map["#TEST# longer"]); | |
88 EXPECT_EQ("", all_annotations_simple_map["#TEST# empty_value"]); | |
89 | |
90 if (Type == kCrashDebugBreak) | |
91 SetExpectedChildExitCode(STATUS_BREAKPOINT); | |
92 | |
93 // Tell the child process to continue. | |
94 CheckedWriteFile(WritePipeHandle(), &c, sizeof(c)); | |
95 } | 87 } |
96 | 88 |
97 void WinMultiprocessChild() override { | 89 EXPECT_GE(all_annotations_simple_map.size(), 5u); |
98 CrashpadInfo* crashpad_info = CrashpadInfo::GetCrashpadInfo(); | 90 EXPECT_EQ("crash", all_annotations_simple_map["#TEST# pad"]); |
| 91 EXPECT_EQ("value", all_annotations_simple_map["#TEST# key"]); |
| 92 EXPECT_EQ("y", all_annotations_simple_map["#TEST# x"]); |
| 93 EXPECT_EQ("shorter", all_annotations_simple_map["#TEST# longer"]); |
| 94 EXPECT_EQ("", all_annotations_simple_map["#TEST# empty_value"]); |
99 | 95 |
100 // This is "leaked" to crashpad_info. | 96 // Tell the child process to continue. |
101 SimpleStringDictionary* simple_annotations = new SimpleStringDictionary(); | 97 DWORD expected_exit_code; |
102 simple_annotations->SetKeyValue("#TEST# pad", "break"); | 98 switch (type) { |
103 simple_annotations->SetKeyValue("#TEST# key", "value"); | 99 case kDontCrash: |
104 simple_annotations->SetKeyValue("#TEST# pad", "crash"); | 100 c = ' '; |
105 simple_annotations->SetKeyValue("#TEST# x", "y"); | 101 expected_exit_code = 0; |
106 simple_annotations->SetKeyValue("#TEST# longer", "shorter"); | 102 break; |
107 simple_annotations->SetKeyValue("#TEST# empty_value", ""); | 103 case kCrashDebugBreak: |
| 104 c = 'd'; |
| 105 expected_exit_code = STATUS_BREAKPOINT; |
| 106 break; |
| 107 default: |
| 108 FAIL(); |
| 109 } |
| 110 CheckedWriteFile(child.stdin_write_handle(), &c, sizeof(c)); |
108 | 111 |
109 crashpad_info->set_simple_annotations(simple_annotations); | 112 EXPECT_EQ(expected_exit_code, child.WaitForExit()); |
110 | 113 } |
111 // Tell the parent that the environment has been set up. | |
112 char c = '\0'; | |
113 CheckedWriteFile(WritePipeHandle(), &c, sizeof(c)); | |
114 | |
115 // Wait for the parent to indicate that it's safe to continue/crash. | |
116 CheckedReadFile(ReadPipeHandle(), &c, sizeof(c)); | |
117 | |
118 switch (Type) { | |
119 case kDontCrash: | |
120 break; | |
121 | |
122 case kCrashDebugBreak: | |
123 __debugbreak(); | |
124 break; | |
125 } | |
126 } | |
127 | |
128 DISALLOW_COPY_AND_ASSIGN(TestPEImageAnnotationsReader); | |
129 }; | |
130 | 114 |
131 TEST(PEImageAnnotationsReader, DontCrash) { | 115 TEST(PEImageAnnotationsReader, DontCrash) { |
132 WinMultiprocess::Run<TestPEImageAnnotationsReader<kDontCrash>>(); | 116 TestAnnotationsOnCrash(kDontCrash, FILE_PATH_LITERAL(".")); |
133 } | 117 } |
134 | 118 |
135 TEST(PEImageAnnotationsReader, CrashDebugBreak) { | 119 TEST(PEImageAnnotationsReader, CrashDebugBreak) { |
136 WinMultiprocess::Run<TestPEImageAnnotationsReader<kCrashDebugBreak>>(); | 120 TestAnnotationsOnCrash(kCrashDebugBreak, FILE_PATH_LITERAL(".")); |
137 } | 121 } |
138 | 122 |
| 123 #if defined(ARCH_CPU_64_BITS) |
| 124 TEST(PEImageAnnotationsReader, DontCrashWOW64) { |
| 125 #ifndef NDEBUG |
| 126 TestAnnotationsOnCrash(kDontCrash, FILE_PATH_LITERAL("..\\..\\out\\Debug")); |
| 127 #else |
| 128 TestAnnotationsOnCrash(kDontCrash, FILE_PATH_LITERAL("..\\..\\out\\Release")); |
| 129 #endif |
| 130 } |
| 131 |
| 132 TEST(PEImageAnnotationsReader, CrashDebugBreakWOW64) { |
| 133 #ifndef NDEBUG |
| 134 TestAnnotationsOnCrash(kCrashDebugBreak, |
| 135 FILE_PATH_LITERAL("..\\..\\out\\Debug")); |
| 136 #else |
| 137 TestAnnotationsOnCrash(kCrashDebugBreak, |
| 138 FILE_PATH_LITERAL("..\\..\\out\\Release")); |
| 139 #endif |
| 140 } |
| 141 #endif // ARCH_CPU_64_BITS |
| 142 |
139 } // namespace | 143 } // namespace |
140 } // namespace test | 144 } // namespace test |
141 } // namespace crashpad | 145 } // namespace crashpad |
OLD | NEW |