blob: 55fee8dcfd3be5bb9fb2621549a7cd86439db809 [file] [log] [blame]
Chris Sosae4a86032010-06-16 17:08:34 -07001// Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Ken Mixter777484c2010-07-23 16:22:44 -07005#ifndef _CRASH_REPORTER_USER_COLLECTOR_H_
6#define _CRASH_REPORTER_USER_COLLECTOR_H_
Chris Sosae4a86032010-06-16 17:08:34 -07007
8#include <string>
Ken Mixter2953c3a2010-10-18 14:42:20 -07009#include <vector>
Chris Sosae4a86032010-06-16 17:08:34 -070010
Ken Mixter03403162010-08-18 15:23:16 -070011#include "crash-reporter/crash_collector.h"
Ken Mixter777484c2010-07-23 16:22:44 -070012#include "gtest/gtest_prod.h" // for FRIEND_TEST
Chris Sosae4a86032010-06-16 17:08:34 -070013
14class FilePath;
Ken Mixter03403162010-08-18 15:23:16 -070015class SystemLogging;
Chris Sosae4a86032010-06-16 17:08:34 -070016
17// User crash collector.
Ken Mixter03403162010-08-18 15:23:16 -070018class UserCollector : public CrashCollector {
Chris Sosae4a86032010-06-16 17:08:34 -070019 public:
Chris Sosae4a86032010-06-16 17:08:34 -070020 UserCollector();
21
22 // Initialize the user crash collector for detection of crashes,
23 // given a crash counting function, the path to this executable,
24 // metrics collection enabled oracle, and system logger facility.
Ken Mixter777484c2010-07-23 16:22:44 -070025 // Crash detection/reporting is not enabled until Enable is called.
26 // |generate_diagnostics| is used to indicate whether or not to try
27 // to generate a minidump from crashes.
Chris Sosae4a86032010-06-16 17:08:34 -070028 void Initialize(CountCrashFunction count_crash,
29 const std::string &our_path,
30 IsFeedbackAllowedFunction is_metrics_allowed,
Ken Mixter777484c2010-07-23 16:22:44 -070031 bool generate_diagnostics);
Chris Sosae4a86032010-06-16 17:08:34 -070032
33 virtual ~UserCollector();
34
35 // Enable collection.
36 bool Enable() { return SetUpInternal(true); }
37
38 // Disable collection.
39 bool Disable() { return SetUpInternal(false); }
40
Ken Mixter777484c2010-07-23 16:22:44 -070041 // Handle a specific user crash. Returns true on success.
Ken Mixter1b8fe012011-01-25 13:33:05 -080042 bool HandleCrash(const std::string &crash_attributes,
43 const char *force_exec);
Chris Sosae4a86032010-06-16 17:08:34 -070044
45 // Set (override the default) core file pattern.
46 void set_core_pattern_file(const std::string &pattern) {
47 core_pattern_file_ = pattern;
48 }
49
Ken Mixterc49dbd42010-12-14 17:44:11 -080050 // Set (override the default) core pipe limit file.
51 void set_core_pipe_limit_file(const std::string &path) {
52 core_pipe_limit_file_ = path;
53 }
54
Chris Sosae4a86032010-06-16 17:08:34 -070055 private:
56 friend class UserCollectorTest;
Ken Mixter777484c2010-07-23 16:22:44 -070057 FRIEND_TEST(UserCollectorTest, CopyOffProcFilesBadPath);
58 FRIEND_TEST(UserCollectorTest, CopyOffProcFilesBadPid);
59 FRIEND_TEST(UserCollectorTest, CopyOffProcFilesOK);
Ken Mixterd49d3622011-02-09 18:23:00 -080060 FRIEND_TEST(UserCollectorTest, GetExecutableBaseNameFromPid);
Ken Mixter777484c2010-07-23 16:22:44 -070061 FRIEND_TEST(UserCollectorTest, GetIdFromStatus);
62 FRIEND_TEST(UserCollectorTest, GetProcessPath);
63 FRIEND_TEST(UserCollectorTest, GetSymlinkTarget);
64 FRIEND_TEST(UserCollectorTest, GetUserInfoFromName);
Ken Mixter1b8fe012011-01-25 13:33:05 -080065 FRIEND_TEST(UserCollectorTest, ParseCrashAttributes);
Ken Mixter5d3a1a22011-03-16 12:47:20 -070066 FRIEND_TEST(UserCollectorTest, ShouldDumpChromeOverridesDeveloperImage);
67 FRIEND_TEST(UserCollectorTest, ShouldDumpDeveloperImageOverridesConsent);
68 FRIEND_TEST(UserCollectorTest, ShouldDumpUseConsentProductionImage);
Ken Mixter777484c2010-07-23 16:22:44 -070069
70 // Enumeration to pass to GetIdFromStatus. Must match the order
71 // that the kernel lists IDs in the status file.
72 enum IdKind {
73 kIdReal = 0, // uid and gid
74 kIdEffective = 1, // euid and egid
75 kIdSet = 2, // suid and sgid
76 kIdFileSystem = 3, // fsuid and fsgid
77 kIdMax
78 };
Chris Sosae4a86032010-06-16 17:08:34 -070079
Ken Mixter2953c3a2010-10-18 14:42:20 -070080 static const int kForkProblem = 255;
81
Chris Sosae4a86032010-06-16 17:08:34 -070082 std::string GetPattern(bool enabled) const;
83 bool SetUpInternal(bool enabled);
84
Ken Mixter777484c2010-07-23 16:22:44 -070085 FilePath GetProcessPath(pid_t pid);
86 bool GetSymlinkTarget(const FilePath &symlink,
87 FilePath *target);
88 bool GetExecutableBaseNameFromPid(uid_t pid,
89 std::string *base_name);
90 bool GetIdFromStatus(const char *prefix,
91 IdKind kind,
92 const std::string &status_contents,
93 int *id);
Ken Mixter207694d2010-10-28 15:42:37 -070094
95 void LogCollectionError(const std::string &error_message);
96 void EnqueueCollectionErrorLog(pid_t pid, const std::string &exec_name);
97
Ken Mixter777484c2010-07-23 16:22:44 -070098 bool CopyOffProcFiles(pid_t pid, const FilePath &process_map);
Ken Mixter777484c2010-07-23 16:22:44 -070099 // Determines the crash directory for given pid based on pid's owner,
100 // and creates the directory if necessary with appropriate permissions.
101 // Returns true whether or not directory needed to be created, false on
102 // any failure.
103 bool GetCreatedCrashDirectory(pid_t pid,
Ken Mixter207694d2010-10-28 15:42:37 -0700104 FilePath *crash_file_path,
105 bool *out_of_capacity);
Ken Mixter777484c2010-07-23 16:22:44 -0700106 bool CopyStdinToCoreFile(const FilePath &core_path);
Ken Mixter207694d2010-10-28 15:42:37 -0700107 bool RunCoreToMinidump(const FilePath &core_path,
108 const FilePath &procfs_directory,
109 const FilePath &minidump_path,
110 const FilePath &temp_directory);
111 bool ConvertCoreToMinidump(pid_t pid,
112 const FilePath &container_dir,
113 const FilePath &core_path,
114 const FilePath &minidump_path);
115 bool ConvertAndEnqueueCrash(int pid, const std::string &exec_name,
116 bool *out_of_capacity);
Ken Mixter1b8fe012011-01-25 13:33:05 -0800117 bool ParseCrashAttributes(const std::string &crash_attributes,
118 pid_t *pid, int *signal,
119 std::string *kernel_supplied_name);
Michael Krebs538ecbf2011-07-27 14:13:22 -0700120
121 // Returns true if we should consider ourselves to be running on a
122 // developer image.
123 bool IsDeveloperImage();
124 // Returns true if chrome crashes should be ignored.
125 bool ShouldIgnoreChromeCrashes();
Ken Mixter5d3a1a22011-03-16 12:47:20 -0700126 bool ShouldDump(bool has_owner_consent,
127 bool is_developer,
Michael Krebs538ecbf2011-07-27 14:13:22 -0700128 bool ignore_chrome_crashes,
Ken Mixter5d3a1a22011-03-16 12:47:20 -0700129 const std::string &exec,
130 std::string *reason);
Ken Mixter777484c2010-07-23 16:22:44 -0700131
132 bool generate_diagnostics_;
Chris Sosae4a86032010-06-16 17:08:34 -0700133 std::string core_pattern_file_;
Ken Mixterc49dbd42010-12-14 17:44:11 -0800134 std::string core_pipe_limit_file_;
Chris Sosae4a86032010-06-16 17:08:34 -0700135 std::string our_path_;
136 bool initialized_;
Ken Mixter777484c2010-07-23 16:22:44 -0700137
138 static const char *kUserId;
139 static const char *kGroupId;
Chris Sosae4a86032010-06-16 17:08:34 -0700140};
141
Ken Mixter777484c2010-07-23 16:22:44 -0700142#endif // _CRASH_REPORTER_USER_COLLECTOR_H_