tree: c71eae0e49b06e2c9d98a41db13d8318465b7cf9 [path history] [tgz]
  1. core-collector/
  2. dbus/
  3. docs/
  4. init/
  5. proto/
  6. .project_alias
  7. 99-crash-reporter.rules
  8. anomaly_detector.cc
  9. anomaly_detector.h
  10. anomaly_detector_fuzzer.cc
  11. anomaly_detector_fuzzer.dict
  12. anomaly_detector_log_reader.cc
  13. anomaly_detector_log_reader.h
  14. anomaly_detector_log_reader_test.cc
  15. anomaly_detector_main.cc
  16. anomaly_detector_service.cc
  17. anomaly_detector_service.h
  18. anomaly_detector_test.cc
  19. anomaly_detector_test_utils.cc
  20. anomaly_detector_test_utils.h
  21. anomaly_detector_text_file_reader.cc
  22. anomaly_detector_text_file_reader.h
  23. anomaly_detector_text_file_reader_test.cc
  24. arc_collector.cc
  25. arc_collector.h
  26. arc_collector_test.cc
  27. arc_util.cc
  28. arc_util.h
  29. arc_util_test.cc
  30. arcvm_kernel_collector.cc
  31. arcvm_kernel_collector.h
  32. arcvm_kernel_collector_test.cc
  33. arcvm_native_collector.cc
  34. arcvm_native_collector.h
  35. arcvm_native_collector_test.cc
  36. bert_collector.cc
  37. bert_collector.h
  38. bert_collector_test.cc
  39. BUILD.gn
  40. chrome_collector.cc
  41. chrome_collector.h
  42. chrome_collector_fuzzer.cc
  43. chrome_collector_fuzzer.dict
  44. chrome_collector_test.cc
  45. constants.h
  46. crash_collector.cc
  47. crash_collector.h
  48. crash_collector_test.cc
  49. crash_collector_test.h
  50. crash_reporter.cc
  51. crash_reporter_failure_collector.cc
  52. crash_reporter_failure_collector.h
  53. crash_reporter_failure_collector_test.cc
  54. crash_reporter_logs.conf
  55. crash_reporter_logs_test.cc
  56. crash_reporter_parser.cc
  57. crash_reporter_parser.h
  58. crash_reporter_parser_test.cc
  59. crash_sender.cc
  60. crash_sender_base.cc
  61. crash_sender_base.h
  62. crash_sender_base_test.cc
  63. crash_sender_fuzzer.cc
  64. crash_sender_fuzzer.dict
  65. crash_sender_paths.h
  66. crash_sender_util.cc
  67. crash_sender_util.h
  68. crash_sender_util_test.cc
  69. crash_serializer.cc
  70. crash_serializer.h
  71. crash_serializer_main.cc
  72. crash_serializer_test.cc
  73. ec_collector.cc
  74. ec_collector.h
  75. ec_collector_test.cc
  76. ephemeral_crash_collector.cc
  77. ephemeral_crash_collector.h
  78. ephemeral_crash_collector_test.cc
  79. generic_failure_collector.cc
  80. generic_failure_collector.h
  81. generic_failure_collector_test.cc
  82. hold_lock_file.cc
  83. kernel_collector.cc
  84. kernel_collector.h
  85. kernel_collector_test.cc
  86. kernel_collector_test.h
  87. kernel_log_collector.sh
  88. kernel_warning_collector.cc
  89. kernel_warning_collector.h
  90. kernel_warning_collector_test.cc
  91. lock_file_tester.cc
  92. missed_crash_collector.cc
  93. missed_crash_collector.h
  94. missed_crash_collector_test.cc
  95. mount_failure_collector.cc
  96. mount_failure_collector.h
  97. mount_failure_collector_test.cc
  98. OWNERS
  99. paths.cc
  100. paths.h
  101. paths_test.cc
  102. README.md
  103. selinux_violation_collector.cc
  104. selinux_violation_collector.h
  105. selinux_violation_collector_test.cc
  106. TEST_AUDIT_LOG
  107. TEST_CHROME_CRASH_MATCH.txt
  108. TEST_CHROME_CRASH_MATCH_INTERLEAVED.txt
  109. TEST_CHROME_CRASH_MATCH_REVERSED.txt
  110. TEST_CR_CRASH
  111. TEST_IWLWIFI_DRIVER_ERROR
  112. TEST_IWLWIFI_LMAC
  113. TEST_IWLWIFI_LMAC_TWO_SPACE
  114. TEST_IWLWIFI_LMAC_UMAC
  115. TEST_MESSAGE_LOG
  116. TEST_SELINUX
  117. TEST_SERVICE_FAILURE
  118. TEST_SMMU_FAULT
  119. TEST_SUSPEND_FAILURE
  120. TEST_UPSTART_LOG
  121. test_util.cc
  122. test_util.h
  123. TEST_WARNING
  124. TEST_WARNING_HEADER
  125. TEST_WARNING_OLD
  126. TEST_WARNING_OLD_ARM64
  127. testrunner.cc
  128. udev_collector.cc
  129. udev_collector.h
  130. udev_collector_test.cc
  131. unclean_shutdown_collector.cc
  132. unclean_shutdown_collector.h
  133. unclean_shutdown_collector_test.cc
  134. user_collector.cc
  135. user_collector.h
  136. user_collector_base.cc
  137. user_collector_base.h
  138. user_collector_test.cc
  139. util.cc
  140. util.h
  141. util_test.cc
  142. vm_collector.cc
  143. vm_collector.h
  144. vm_support.cc
  145. vm_support.h
  146. vm_support_proper.cc
  147. vm_support_proper.h
crash-reporter/README.md

Chromium OS Crash Reporter

This is the project for handling all crash related operations on the device. The intention is to be as low-overhead as possible while still maximizing the usefulness of crash reports and minimizing collection of any & all PII data.

For more background details, see the original design doc. This document focuses on the current state of the project.

Most bugs/features can be found via component:Internals>CrashReporting OS=Chrome.

Data Consent

No crashes get collected without explicit consent from the device owner. This is normally part of the OOBE setup flow. Consent is handled by the device owner and covers all users of that device. If no consent has been granted, then generally collectors will exit rather than do any further processing.

However, even if consent has been granted, there is one notable scenario where crash reports are still not uploaded -- guest mode. While system crashes are still collected (as they shouldn‘t have any user PII in them), browser and user crashes are not uploaded. This leads to a bit of a chicken & egg where real crashes in guest mode are not caught and uploaded for tracking, but we’re willing to accept that for the user privacy guarantees.

Crashes are technically collected, but because they are saved in the guest's informal profile, they are all automatically throw away on log out.

If consent is later revoked, we do not upload any crashes that had been queued.

For headless systems, the consent setting can be managed via metrics_client's -C and -D options.

Life Cycle

Setting up the crash reporter early in the boot process is tricky: before the encrypted stateful mount is setup, crash reporter does not have access to persistent storage to store crashes in. We run crash-reporter-early-init.conf early in the boot process to configure the kernel to pass crashes to us with an “early” flag to use a tmpfs path instead of a persistent location for storing crash reports.

After the encrypted stateful mount setup is complete, we run crash-reporter.conf which sets the crash path back to the persistent storage crash directory and initializes any system state that depends on it.

Then during boot, but not in the critical path, we run crash-boot-collect.conf to gather up any previous crashes in the system. For example, if the system had rebooted due to a kernel panic, or some firmware (like the EC) had crashed. This also includes crashes that occurred during early boot before persistent storage was available: such crashes are stored into /run/crash_reporter/crash and collected into /var/spool/crash once boot completes.

We background the anomaly_detector to monitor for system “anomalies” for which a notification mechanism is not available. This daemon operates by monitoring syslog messages via inotify. Depending on the anomaly, it generates crashes and D-Bus signals.

We also background the crash_sender service to periodically upload crashes. See Uploading Crashes for more details.

At this point, if no crashes occur, nothing ever happens! And of course, since we never have bugs, that's precisely what happens!

If a userland crash occurs that would trigger a coredump, the kernel will execute crash_reporter directly and pass in the coredump and some metadata. We process it directly and queue the report in the right crash directory. The exact processing steps depend on the specific collector involved, so see the Collectors section for more details. See Crash Report Storage for more details on queuing.

If a Chrome (browser) process crashes, crash_reporter will be called by the kernel, but we actually ignore things at that point. Instead, Chrome itself will take care of processing that crash report before calling crash_reporter with the final crash report for queuing.

Some hardware devices can trigger errors via udev, so we have a udev rules file to trigger crash_reporter based on those.

Source File Conventions

Each collector has a xxx_collector.cc and xxx_collector.h module.

The standalone programs (e.g. crash_reporter and crash_sender) have their own modules.

All unittests are named xxx_test.cc and contain tests for the corresponding xxx.cc files.

All init related scripts live in the init/ directory.

The core_collector program is kept separate because it‘s otherwise completely standalone and doesn’t share any code.

That covers pretty much all the files in here.

Init Scripts

Here is a brief summary of each init script we provide. More details on each can be found in the sections below.

Initialization

This section is triggered via the crash-reporter.conf init script.

We want to initialize boot collection as early as possible so as to minimize the time frame for crashes that we'd miss otherwise. Currently we initialize during boot-services and after syslog. This is because the crash_reporter code will use syslog for output/errors of its own, even during early init.

This means any userland crashes that occur before this point will be lost. Some non-exhaustive but significant highlights:

  • All code in chromeos_startup.
  • The syslog daemon.
  • Any other boot-services that run in parallel (e.g. dbus).

The init step itself should be fairly quick as it only initializes internal state paths (e.g. under /run and /var), and it configures the various /proc and /sys paths that the kernel has setup. Most notably, this is responsible for writing /proc/sys/kernel/core_pattern which tells the kernel to execute us whenever a crash is detected.

For more details, see the core(5) man page.

We could improve early boot collection by writing a standalone & simple collector that doesn't use syslog and saves basic report to /run. This would be active until we do the full init step described here. The reports would then be collected by the crash-boot-collect.conf step.

Crash Report Storage

We store reports in a couple of different places.

  • /var/spool/crash/: Non-user (i.e. system) queued reports.

  • /home/chronos/<user_hash>/crash/: User-specific queued reports. Used when invoked as the user (e.g. by Chrome as chronos while logged in).

  • /home/chronos/crash: Crashes from the chronos user when not logged in, for instance, if Chrome crashes while not logged in.

    When on a test build, all user crashes are written to /home/chronos/crash instead of /home/chronos/<user_hash>/crash/. This avoids having crashes become inaccessible if a test logs the user out.
  • /mnt/stateful_partition/unencrypted/preserve/crash: Crashes found early in the boot process (before /var/spool/crash is available) are stored here.

  • /home/root/<user_hash>/crash-reporter/: User-specific queued reports. Used when invoked as root (e.g. by the kernel to handle crashes for processes that were running as chronos).

    The /home/root/... support is in progress. See https://chromium-review.googlesource.com/1155107 for more details.

These directories are only written to by the crash-reporter at collection time. The crash_sender program will also delete reports after it uploads them.

These directories are only read by the crash_sender program for uploading, and by feedback reports. Test frameworks (e.g. autotest, tast) also offload crash reports, but we don't need to provide special consideration for those.

We enforce a limit of about 32 crashes per spool directory. This is to avoid filling up the underlying storage especially if a daemon goes into a crash loop and generates a lot of crashes quickly.

Collectors

crash_reporter is composed of a number of collectors. Each of these are responsible for actual crash collection and processing. Since these are a large topic by themselves, we have a Collectors doc.

Supplementary Data Collection

Every collector produces a unique name of sorts which is then looked up in the crash_reporter_logs.conf file. For example, user_collector uses the program's base file name, while udev_collector constructs a more complicated format to make it easier to match unique events.

The value of that setting is an arbitrary shell script which is then executed. The output is captured and automatically attached to the corresponding report.

This is most useful to collect data from device or program specific paths that otherwise would not be collected. For example, for kernel wifi driver warnings, we'll dump some of the low level PCI register state for those specific pieces of hardware.

The output of this snippet should be kept small as there are size limits to report uploads, and to minimize PII data leaking in.

This file should be moved to /etc/crash-reporter/logs.conf.

Metrics

Metric collection is currently being evaluated for their usefulness. As it stands currently, metrics are still in the codebase, but ultimately disabled just before being collected.

See https://crbug.com/754850 for more details.

If we re-enable the metrics, then we‘ll fill out this section of the doc. If we delete the code entirely, then we’ll delete this section too.

Uploading Crashes

The crash_sender program is responsible for uploading reports to the server. It tries to be unobtrusive in a number of ways:

  • Runs at most once an hour.
  • Limits the crashes uploaded in any 24 hour window to no more than 24 MB (compressed) or 32 reports, whichever comes last.
  • Adds a random delay between [0..600] seconds before each report upload.

While there are multiple local crash queues, these are global limits.

Before we upload any report, we check to see if consent is still granted. This way we stop uploading reports right away if things change.

We also check if the network is online before uploading a crash report and stop uploading reports until the next run of crash_sender if we are offline.

If an upload fails for any reason (flaky network, system going to sleep, etc...), then the report is left in the local queue and retried later.

We attempt to upload the oldest reports first to minimize them going stale.

Network proxies are respected; see the Proxies section for more details.

After a report has been successfully uploaded, we add details to the /var/log/chrome/Crash Reports/uploads.log file. This is used by Chrome itself in its internal chrome://crashes page to provide crash information to the user. The exact format of this file is controlled by Chrome. Here are just some of the files involved:

Our management of uploads.log lags behind other platforms. Once crash_sender is converted to C++, we can re-evaluate improving this. See https://crbug.com/275910 for more details.

Manually Uploading

At runtime, there are a few different ways one can trigger uploading. Since crash_sender has internal locking, you don't have to worry about any of these methods clobbering or racing with any other crash component.

  • People can run crash_sender directly as root (when in developer mode). You may need to pass --dev.
  • crosh has a upload_crashes command to trigger immediately.
  • The chrome://crashes page has a “Start Uploading” link.
Currently we disable crash uploading while in guest mode, but this is only to avoid uploading any browser or user crashes saved in the guest's profile. We should be able to improve this by still uploading system crashes.

Viewing

Once these crashes are uploaded, where do they go you might wonder? By default, they're sent to the Google Crash Server. For obvious privacy reasons, this server is only accessible to Google employees, and even then not all employees have access, only ones that need it to debug.

Proxies

Network information is managed by Chrome because they are often distributed via PAC files which are written in JavaScript and executed on the device. We'd rather not have to spin up our own JS VM to execute these snippets.

This is where the [list_proxies] tool comes in. It's a simple front end to sending queries to Chrome via D-Bus and then printing the results to stdout. This info can then be exported or passed to tools like curl.

For Chromeless devices, this presents a bit of a challenge.

Filesystem Paths

We won't cover (in depth) files covered by these topics:

Otherwise, this should be an exhaustive list of paths on the filesystem that this project uses in any fashion.

Persistent Paths (/var)

These paths are guaranteed to persist across boots.

  • /var/lib/crash_reporter/: Non-volatile state we need across reboots. Currently we use to cache previous OS details so we can correctly attribute previous kernel crashes to the previous OS version that was running.

  • /var/lib/crash_reporter/pending_clean_shutdown: Used by the unclean_shutdown_collector.

  • /var/lib/crash_sender/: Non-volatile state that crash_sender maintains. Used to keep track of how many reports have been uploaded (and when) so we can regulate our limits. Do not add any additional files to this directory or it will break timestamp calculations. Add additional state information to the ‘state’ subdirectory instead. Currently we store a ‘client_id’ in the ‘state’ subdirectory for maintaining a persistent device identifier for coalescing crash reports by device. This ID should never be used for any other purpose.

  • /var/log/messages: anomaly_detector monitors this (read-only).

  • /var/log/chrome/Crash Reports/uploads.log: crash_sender updates this after every crash it uploads. See Uploading Crashes for more details.

These spool dirs are covered in detail in Crash Report Storage.

  • /var/spool/crash/: System crash reports.
  • /home/chronos/<user_hash>/crash/: User-specific queued reports.
  • /home/root/<user_hash>/crash-reporter/: User-specific queued reports.

Boot Clean Paths (/run)

These paths are guaranteed to be reset at every boot, so we only store active runtime details here.

  • /run/crash_reporter/: Used by all crash-reporter tools (i.e. both crash_reporter and crash_sender) for runtime state. This should be moved to /run/crash-reporter/ as the project name.
  • /run/lock/crash_sender: Used by crash_sender to guarantee only one upload instance is active at a time.

These are used to communicate with metrics_daemon.

  • /run/metrics/external/crash-reporter/kernel-crash-detected: Used by crash_reporter to signal the metrics_daemon that a kernel crash occurred. Also used by integration tests to verify this functionality.
  • /run/metrics/external/crash-reporter/unclean-shutdown-detected: Used by crash_reporter to signal the metrics_daemon that an unclean shutdown occurred. Also used by integration tests to verify this functionality.

This is used to communicate with powerd.

  • /run/crash_reporter/boot-collector-done: Used by crash_reporter to signal the powerd that boot collector has successfully completed per-boot crash collection. Also used by integration tests that rely on the boot collector.
This poor man's IPC with /run files was done historically because the crash-reporter.conf init and crash-boot-collect.conf were one script that always executed early and before metrics_daemon started. However, now we can make crash-boot-collect.conf wait for metrics_daemon, we should be able to switch to its more standard existing IPC methods.

Test-related paths

  • /var/lib/crash_sender_paused: Used by integration tests to pause crash_sender. This should be moved to /run/crash_reporter/crash_sender_paused.
  • /var/spool/crash/mock-consent: Used by integration tests to persist mock consent across reboots. This file should be created with a small number greater than 0 (like 2). It will be deleted after that number of reboots.
  • /var/spool/crash/crash-test-in-progress: Used by integration tests to persist crash test in progress state across reboots. This file should be created with a small number greater than 0 (like 2). It will be deleted after that number of reboots.
  • /run/crash_reporter/crash-test-in-progress: Used by integration tests to tell tools they are being exercised by an integration test that tests the crash system itself and to adjust their behavior accordingly.
  • /run/crash_reporter/mock-crash-sending: Used by integration tests to tell crash_sender to mock out the actual upload for testing purposes.
  • /run/crash_reporter/mock-consent: Used by integration tests to tell the crash system to act as if the user had given consent for crashes to be collected and uploaded.
  • /run/crash_reporter/filter-in: Used by integration tests to tell the crash_reporter to ignore invocations unless the command line contains the contents of this file as a substring.
  • /mnt/stateful_partition/etc/collect_chrome_crashes: Used by tast tests to let crash_reporter collect browser crashes directly (normally it ignores them and lets Chrome handle things). This should be moved to /run/crash-reporter/collect_chrome_crashes.

Temporary Paths (/tmp)

The /tmp/ usage by tools would normally be quite concerning due to the ease of predictable file names, but crash_reporter and crash_sender both execute in a minijail with a unique empty /tmp/ mount (and automatically freed on exit). That mount is visible only to the active process (and its children), so other processes in the system won‘t be able to inject content. This doesn’t mean the /tmp/ usage shouldn't be improved, but it at least mitigates collisions (accidental or otherwise).

  • /tmp/crash_reporter/<pid>/: crash_reporter writes intermediate data here for the <pid> that just crashed.
  • /tmp/crash_sender.XXXXXX/: crash_sender holds intermediate upload report status here and is cleared after every run.
  • /tmp/: core_collector writes intermediate /proc files directly here.

Other Paths

Here's any other random paths we handle.

  • /root/.leave_core: Normally crash_reporter will delete the large coredumps after converting them to minidumps. When this file exists, coredumps are saved in the spool dir too. Created on dev images automatically. This should be moved to /etc/crash-reporter/leave-core, and duplicated in /run/crash-reporter/ so people don't have to modify the rootfs.

Crash Report Format

Each crash report has a .meta file with a unique basename. The .meta file is a simple key-value store read by crash_sender. Each collector will generate this, and any supplemental files will use that same basename with other extensions. e.g. The main crash image will be a minidump but with a .dmp extension. Supplemental log files will have a .log extension.

However, crash_sender doesn't care about that. The .meta file will have keys that point to those files directly.

Symbol Handling

The uploaded crashes are only minidumps (and related metadata). Actual stack walking and symbolification happens on the server. The symbols themselves are generated by CrOS builders.

For more details, see the Symbols document.

Security

Since these tools often run as root and work with untrusted data, security is a big concern. Check out security.md for more details.

Developing & Testing

For tips for hacking on this project, check out hacking.md.

Breakpad Tools

We use a bunch of tools from Google Breakpad. Check out the their docs for more details (especially on minidumps).