Skip to content

Commit e09f5ee

Browse files
Justin CohenCrashpad LUCI CQ
Justin Cohen
authored and
Crashpad LUCI CQ
committed
ios: Support UserStreamDataSources on iOS.
Adds a parameter to the iOS ProcessIntermediateDumps API to allow for post-crash user stream processing. Also moves user_stream_data_source.h to handler:common to avoid a dependency cycle on iOS. This will be used by gwp-asan. Change-Id: Ic528725276e3c4d284aef89a86cc86878a7af9b0 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/6340388 Reviewed-by: Joshua Peraza <[email protected]> Commit-Queue: Justin Cohen <[email protected]>
1 parent 04b11f9 commit e09f5ee

6 files changed

+57
-21
lines changed

client/crashpad_client.h

+7-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343

4444
#if BUILDFLAG(IS_IOS)
4545
#include "client/upload_behavior_ios.h"
46+
#include "handler/user_stream_data_source.h" // nogncheck
4647
#endif
4748

4849
namespace crashpad {
@@ -531,8 +532,13 @@ class CrashpadClient {
531532
//! \param[in] annotations Process annotations to set in each crash report.
532533
//! Useful when adding crash annotations detected on the next run after a
533534
//! crash but before upload.
535+
//! \param[in] user_stream_sources An optional vector containing the
536+
//! extensibility data sources to call on crash. Each time a minidump is
537+
//! created, the sources are called in turn. Any streams returned are
538+
//! added to the minidump.
534539
static void ProcessIntermediateDumps(
535-
const std::map<std::string, std::string>& annotations = {});
540+
const std::map<std::string, std::string>& annotations = {},
541+
const UserStreamDataSources* user_stream_sources = {});
536542

537543
//! \brief Requests that the handler convert a single intermediate dump at \a
538544
//! file generated by DumpWithoutCrashAndDeferProcessingAtPath into a

client/crashpad_client_ios.cc

+7-4
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,10 @@ class CrashHandler : public Thread,
153153
}
154154

155155
void ProcessIntermediateDumps(
156-
const std::map<std::string, std::string>& annotations) {
157-
in_process_handler_.ProcessIntermediateDumps(annotations);
156+
const std::map<std::string, std::string>& annotations,
157+
const UserStreamDataSources* user_stream_sources) {
158+
in_process_handler_.ProcessIntermediateDumps(annotations,
159+
user_stream_sources);
158160
}
159161

160162
void ProcessIntermediateDump(
@@ -457,10 +459,11 @@ bool CrashpadClient::StartCrashpadInProcessHandler(
457459

458460
// static
459461
void CrashpadClient::ProcessIntermediateDumps(
460-
const std::map<std::string, std::string>& annotations) {
462+
const std::map<std::string, std::string>& annotations,
463+
const UserStreamDataSources* user_stream_sources) {
461464
CrashHandler* crash_handler = CrashHandler::Get();
462465
DCHECK(crash_handler);
463-
crash_handler->ProcessIntermediateDumps(annotations);
466+
crash_handler->ProcessIntermediateDumps(annotations, user_stream_sources);
464467
}
465468

466469
// static

client/ios_handler/in_process_handler.cc

+10-5
Original file line numberDiff line numberDiff line change
@@ -254,21 +254,23 @@ bool InProcessHandler::MoveIntermediateDumpAtPathToPending(
254254
return MoveFileOrDirectory(path, new_path_unlocked);
255255
}
256256
void InProcessHandler::ProcessIntermediateDumps(
257-
const std::map<std::string, std::string>& annotations) {
257+
const std::map<std::string, std::string>& annotations,
258+
const UserStreamDataSources* user_stream_sources) {
258259
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
259260

260261
for (auto& file : PendingFiles())
261-
ProcessIntermediateDump(file, annotations);
262+
ProcessIntermediateDump(file, annotations, user_stream_sources);
262263
}
263264

264265
void InProcessHandler::ProcessIntermediateDump(
265266
const base::FilePath& file,
266-
const std::map<std::string, std::string>& annotations) {
267+
const std::map<std::string, std::string>& annotations,
268+
const UserStreamDataSources* user_stream_sources) {
267269
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
268270

269271
ProcessSnapshotIOSIntermediateDump process_snapshot;
270272
if (process_snapshot.InitializeWithFilePath(file, annotations)) {
271-
SaveSnapshot(process_snapshot);
273+
SaveSnapshot(process_snapshot, user_stream_sources);
272274
}
273275
}
274276

@@ -320,7 +322,8 @@ void InProcessHandler::UpdatePruneAndUploadThreads(
320322
}
321323

322324
void InProcessHandler::SaveSnapshot(
323-
ProcessSnapshotIOSIntermediateDump& process_snapshot) {
325+
ProcessSnapshotIOSIntermediateDump& process_snapshot,
326+
const UserStreamDataSources* user_stream_sources) {
324327
std::unique_ptr<CrashReportDatabase::NewReport> new_report;
325328
CrashReportDatabase::OperationStatus database_status =
326329
database_->PrepareNewCrashReport(&new_report);
@@ -339,6 +342,8 @@ void InProcessHandler::SaveSnapshot(
339342

340343
MinidumpFileWriter minidump;
341344
minidump.InitializeFromSnapshot(&process_snapshot);
345+
AddUserExtensionStreams(user_stream_sources, &process_snapshot, &minidump);
346+
342347
if (!minidump.WriteEverything(new_report->Writer())) {
343348
Metrics::ExceptionCaptureResult(
344349
Metrics::CaptureResult::kMinidumpWriteFailed);

client/ios_handler/in_process_handler.h

+24-3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
#ifndef CRASHPAD_CLIENT_IOS_HANDLER_IN_PROCESS_IN_PROCESS_HANDLER_H_
16+
#define CRASHPAD_CLIENT_IOS_HANDLER_IN_PROCESS_IN_PROCESS_HANDLER_H_
17+
1518
#include <mach/mach.h>
1619
#include <stdint.h>
1720

@@ -26,6 +29,7 @@
2629
#include "client/ios_handler/prune_intermediate_dumps_and_crash_reports_thread.h"
2730
#include "client/upload_behavior_ios.h"
2831
#include "handler/crash_report_upload_thread.h"
32+
#include "handler/user_stream_data_source.h"
2933
#include "snapshot/ios/process_snapshot_ios_intermediate_dump.h"
3034
#include "util/ios/ios_intermediate_dump_writer.h"
3135
#include "util/ios/ios_system_data_collector.h"
@@ -159,17 +163,27 @@ class InProcessHandler {
159163
//! minidumps and trigger an upload if possible.
160164
//!
161165
//! \param[in] annotations Process annotations to set in each crash report.
166+
//! \param[in] user_stream_sources An optional vector containing the
167+
//! extensibility data sources to call on crash. Each time a minidump is
168+
//! created, the sources are called in turn. Any streams returned are
169+
//! added to the minidump.
162170
void ProcessIntermediateDumps(
163-
const std::map<std::string, std::string>& annotations);
171+
const std::map<std::string, std::string>& annotations,
172+
const UserStreamDataSources* user_stream_sources);
164173

165174
//! \brief Requests that the handler convert a specific intermediate dump into
166175
//! a minidump and trigger an upload if possible.
167176
//!
168177
//! \param[in] path Path to the specific intermediate dump.
169178
//! \param[in] annotations Process annotations to set in each crash report.
179+
//! \param[in] user_stream_sources An optional vector containing the
180+
//! extensibility data sources to call on crash. Each time a minidump is
181+
//! created, the sources are called in turn. Any streams returned are
182+
//! added to the minidump.
170183
void ProcessIntermediateDump(
171184
const base::FilePath& path,
172-
const std::map<std::string, std::string>& annotations = {});
185+
const std::map<std::string, std::string>& annotations = {},
186+
const UserStreamDataSources* user_stream_sources = {});
173187

174188
//! \brief Requests that the handler begin in-process uploading of any
175189
//! pending reports.
@@ -239,7 +253,12 @@ class InProcessHandler {
239253

240254
//! \brief Writes a minidump to the Crashpad database from the
241255
//! \a process_snapshot, and triggers the upload_thread_ if started.
242-
void SaveSnapshot(ProcessSnapshotIOSIntermediateDump& process_snapshot);
256+
//! \param[in] user_stream_sources An optional vector containing the
257+
//! extensibility data sources to call on crash. Each time a minidump is
258+
//! created, the sources are called in turn. Any streams returned are
259+
//! added to the minidump.
260+
void SaveSnapshot(ProcessSnapshotIOSIntermediateDump& process_snapshot,
261+
const UserStreamDataSources* user_stream_sources = {});
243262

244263
//! \brief Process a maximum of 20 pending intermediate dumps. Dumps named
245264
//! with our bundle id get first priority to prevent spamming.
@@ -284,3 +303,5 @@ class InProcessHandler {
284303

285304
} // namespace internal
286305
} // namespace crashpad
306+
307+
#endif // CRASHPAD_CLIENT_IOS_HANDLER_IN_PROCESS_IN_PROCESS_HANDLER_H_

client/ios_handler/in_process_handler_test.cc

+6-6
Original file line numberDiff line numberDiff line change
@@ -110,35 +110,35 @@ TEST_F(InProcessHandlerTest, TestPendingFileLimit) {
110110

111111
// Only process other app files.
112112
CreateFiles(0, 20);
113-
handler().ProcessIntermediateDumps({});
113+
handler().ProcessIntermediateDumps({}, {});
114114
VerifyRemainingFileCount(0, 0);
115115
ClearFiles();
116116

117117
// Only process our app files.
118118
CreateFiles(20, 20);
119-
handler().ProcessIntermediateDumps({});
119+
handler().ProcessIntermediateDumps({}, {});
120120
VerifyRemainingFileCount(0, 20);
121121
ClearFiles();
122122

123123
// Process all of our files and 10 remaining.
124124
CreateFiles(10, 30);
125-
handler().ProcessIntermediateDumps({});
125+
handler().ProcessIntermediateDumps({}, {});
126126
VerifyRemainingFileCount(0, 20);
127127
ClearFiles();
128128

129129
// Process 20 our files, leaving 10 remaining, and all other files remaining.
130130
CreateFiles(30, 10);
131-
handler().ProcessIntermediateDumps({});
131+
handler().ProcessIntermediateDumps({}, {});
132132
VerifyRemainingFileCount(10, 10);
133133
ClearFiles();
134134

135135
CreateFiles(0, 0);
136-
handler().ProcessIntermediateDumps({});
136+
handler().ProcessIntermediateDumps({}, {});
137137
VerifyRemainingFileCount(0, 0);
138138
ClearFiles();
139139

140140
CreateFiles(10, 0);
141-
handler().ProcessIntermediateDumps({});
141+
handler().ProcessIntermediateDumps({}, {});
142142
VerifyRemainingFileCount(0, 0);
143143
ClearFiles();
144144
}

handler/BUILD.gn

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ static_library("handler") {
2020
"handler_main.h",
2121
"prune_crash_reports_thread.cc",
2222
"prune_crash_reports_thread.h",
23-
"user_stream_data_source.cc",
24-
"user_stream_data_source.h",
2523
]
2624

2725
if (crashpad_is_mac) {
@@ -98,6 +96,8 @@ static_library("common") {
9896
"crash_report_upload_thread.h",
9997
"minidump_to_upload_parameters.cc",
10098
"minidump_to_upload_parameters.h",
99+
"user_stream_data_source.cc",
100+
"user_stream_data_source.h",
101101
]
102102
if (crashpad_is_apple) {
103103
sources += [
@@ -112,6 +112,7 @@ static_library("common") {
112112
]
113113
deps = [
114114
"../client:common",
115+
"../minidump",
115116
"../snapshot",
116117
"../util",
117118
"../util:net",

0 commit comments

Comments
 (0)