Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(803)

Unified Diff: kernel_collector.cc

Issue 6599022: Add ARM support (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/crash-reporter.git@master
Patch Set: Tidied up architecture variations Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « kernel_collector.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: kernel_collector.cc
diff --git a/kernel_collector.cc b/kernel_collector.cc
index 652e7ff3a0d5875ca5e9d92f63161d03328d4000..43af81c8ba5d9e29fabd719966cd0e04b63df9c8 100644
--- a/kernel_collector.cc
+++ b/kernel_collector.cc
@@ -19,11 +19,24 @@ static const int kMaxHumanStringLength = 40;
static const char kPreservedDumpPath[] = "/sys/kernel/debug/preserved/kcrash";
const uid_t kRootUid = 0;
// Time in seconds from the final kernel log message for a call stack
-// to count towards the signature of the kcrash.
+// to count towards the not be gesignature of the kcrash.
Michael Krebs 2011/03/29 02:20:18 Was this an intentional comment change?
sjg 2011/04/01 20:04:15 Nope. It seems to be gone now so must have been a
static const int kSignatureTimestampWindow = 2;
// Kernel log timestamp regular expression.
static const std::string kTimestampRegex("^<.*>\\[\\s*(\\d+\\.\\d+)\\]");
+/*
+ * For ARM we see:
+ * "<5>[ 39.458982] PC is at write_breakme+0xd0/0x1b4"
+ * For x86:
+ * "<0>[ 37.474699] EIP: [<790ed488>] write_breakme+0x80/0x108 \
+ * SS:ESP 0068:e9dd3efc
+ */
+static const std::string pcRegex[KernelCollector::archCount] = {
Michael Krebs 2011/03/29 02:20:18 I believe using std::string is not normally allowe
+ " PC is at ([^\\+ ]+).*",
+ " EIP: \\[<.*>\\] ([^\\+ ]+).*", // X86 uses EIP for the program counter
+ " Unsupported architecture"
Michael Krebs 2011/03/29 02:20:18 If it's an unknown architecture, it might be bette
sjg 2011/04/01 20:04:15 Have added a warning in the constructor and a test
+};
+
KernelCollector::KernelCollector()
: is_enabled_(false),
preserved_dump_path_(kPreservedDumpPath) {
@@ -90,11 +103,19 @@ void KernelCollector::ProcessStackTrace(
unsigned *hash,
float *last_stack_timestamp) {
pcrecpp::RE line_re("(.+)", pcrecpp::MULTILINE());
- pcrecpp::RE stack_trace_start_re(kTimestampRegex + " Call Trace:$");
+ pcrecpp::RE stack_trace_start_re(kTimestampRegex +
+ " (Call Trace|Backtrace):$");
// Match lines such as the following and grab out "error_code".
- // <4>[ 6066.849504] [<7937bcee>] error_code+0x66/0x6c
+ // <4>[ 6066.849504] [<7937bcee>] ? error_code+0x66/0x6c
+ // The ? may or may not be present
+
+ // For ARM:
+ // <4>[ 3498.731164] [<c0057220>] (__bug+0x20/0x2c) from [<c018062c>]
+ // (write_breakme+0xdc/0x1bc)
pcrecpp::RE stack_entry_re(kTimestampRegex +
- " \\[<.*>\\]([\\s\\?]+)([^\\+ ]+)");
+ "\\s+\\[<[[:xdigit:]]+>\\]" // Matches " [<7937bcee>]"
+ "([\\s\\?(]+)" // Matches " ? ("
+ "([^\\+ )]+)"); // Matches until \ + space )
std::string line;
std::string hashable;
@@ -137,14 +158,28 @@ void KernelCollector::ProcessStackTrace(
}
}
+enum KernelCollector::ArchKind KernelCollector::GetArch(void)
+{
+#if defined(COMPILER_GCC) && defined(ARCH_CPU_ARM_FAMILY)
+ return archArm;
+#elif defined(COMPILER_GCC) && defined(ARCH_CPU_X86_FAMILY)
+ return archX86;
+#else
+ return archUnknown;
+#endif
+}
+
bool KernelCollector::FindCrashingFunction(
- pcrecpp::StringPiece kernel_dump,
- bool print_diagnostics,
- float stack_trace_timestamp,
- std::string *crashing_function) {
- pcrecpp::RE eip_re(kTimestampRegex + " EIP: \\[<.*>\\] ([^\\+ ]+).*",
- pcrecpp::MULTILINE());
+ pcrecpp::StringPiece kernel_dump,
+ bool print_diagnostics,
+ float stack_trace_timestamp,
+ std::string *crashing_function) {
float timestamp = 0;
+
+ // Use the correct regex for this architecture.
+ pcrecpp::RE eip_re(kTimestampRegex + pcRegex[GetArch()],
Michael Krebs 2011/03/29 02:20:18 This very well may be okay (I'm new to what the st
sjg 2011/04/01 20:04:15 I would hope that the compiler will complain if yo
Michael Krebs 2011/04/05 00:43:56 My concern was more like what Ken just mentioned..
+ pcrecpp::MULTILINE());
+
while (eip_re.FindAndConsume(&kernel_dump, &timestamp, crashing_function)) {
if (print_diagnostics) {
printf("@%f: found crashing function %s\n",
« no previous file with comments | « kernel_collector.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698