File: system_state_data_collector.cc

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (303 lines) | stat: -rw-r--r-- 12,549 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/support_tool/ash/system_state_data_collector.h"

#include <algorithm>
#include <array>
#include <map>
#include <optional>
#include <set>
#include <string>
#include <utility>
#include <vector>

#include "base/barrier_closure.h"
#include "base/containers/contains.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/functional/callback_forward.h"
#include "base/memory/scoped_refptr.h"
#include "base/sequence_checker.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/task_traits.h"
#include "base/task/thread_pool.h"
#include "chrome/browser/support_tool/data_collector.h"
#include "chromeos/ash/components/cryptohome/cryptohome_parameters.h"
#include "chromeos/ash/components/dbus/debug_daemon/debug_daemon_client.h"
#include "components/feedback/redaction_tool/pii_types.h"
#include "components/feedback/redaction_tool/redaction_tool.h"
#include "components/user_manager/user.h"
#include "components/user_manager/user_manager.h"
#include "third_party/cros_system_api/dbus/debugd/dbus-constants.h"

namespace {

// List of debugd entries to exclude from the results.
constexpr std::array<const char*, 2> kExcludeList = {
    // Network devices and services are collected by `ShillDataCollector` so we
    // exclude them from the output.
    "network-devices",
    "network-services",
};

// Adds the contents of `map_to_merge` into `target_map` and returns a set of
// keys in `map_to_merge`.
std::set<redaction::PIIType> MergePIIMapsAndGetPIITypes(PIIMap& target_map,
                                                       PIIMap& map_to_merge) {
  std::set<redaction::PIIType> keys;
  for (auto& pii_data : map_to_merge) {
    target_map[pii_data.first].insert(pii_data.second.begin(),
                                      pii_data.second.end());
    keys.insert(pii_data.first);
  }
  return keys;
}

// Creates the directory on `target_path` if it doesn't exist and writes entries
// in `system_logs` to file in `target_path`. Returns true on success.
bool WriteLogFiles(std::map<std::string, std::string> system_logs,
                   base::FilePath target_path) {
  if (!base::CreateDirectory(target_path))
    return false;
  bool success = true;
  for (auto [log_name, logs] : system_logs) {
    if (!base::WriteFile(target_path.Append(log_name).AddExtensionASCII(".txt"),
                         logs))
      success = false;
  }
  return success;
}

std::string GetErrorMessage(const std::vector<std::string>& errors) {
  return base::StringPrintf("SystemStateDataCollector had following errors: %s",
                            base::JoinString(errors, ", ").c_str());
}

}  // namespace

SystemStateDataCollector::SystemLog::SystemLog(
    std::string log,
    std::set<redaction::PIIType> detected_pii_types)
    : log(log), detected_pii_types(std::move(detected_pii_types)) {}
SystemStateDataCollector::SystemLog::~SystemLog() = default;
SystemStateDataCollector::SystemLog::SystemLog(const SystemLog& other) =
    default;

SystemStateDataCollector::SystemStateDataCollector() = default;
SystemStateDataCollector::~SystemStateDataCollector() = default;

const std::vector<std::string> SystemStateDataCollector::GetExtraLogNames() {
  const std::vector<std::string> kExtraLogs = {"netstat"};
  return kExtraLogs;
}

std::string SystemStateDataCollector::GetName() const {
  return "System State Data Collector";
}

std::string SystemStateDataCollector::GetDescription() const {
  return "Collect various system logs and reports for ChromeOS devices and "
         "writes them to them to separate files.";
}

const PIIMap& SystemStateDataCollector::GetDetectedPII() {
  return pii_map_;
}

void SystemStateDataCollector::CollectDataAndDetectPII(
    DataCollectorDoneCallback on_data_collected_callback,
    scoped_refptr<base::SequencedTaskRunner> task_runner_for_redaction_tool,
    scoped_refptr<redaction::RedactionToolContainer> redaction_tool_container) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  data_collector_done_callback_ = std::move(on_data_collected_callback);

  base::RepeatingClosure get_log_barrier_closure = base::BarrierClosure(
      GetExtraLogNames().size(),
      base::BindOnce(&SystemStateDataCollector::OnGotAllExtraLogs,
                     weak_ptr_factory_.GetWeakPtr(),
                     task_runner_for_redaction_tool, redaction_tool_container));

  ash::DebugDaemonClient* debugd_client = ash::DebugDaemonClient::Get();

  for (const auto& extra_log : GetExtraLogNames()) {
    // `debugd_client` will run the callback on original thread (see
    // dbus/object_proxy.h for more details).
    debugd_client->GetLog(extra_log,
                          base::BindOnce(&SystemStateDataCollector::OnGetLog,
                                         weak_ptr_factory_.GetWeakPtr(),
                                         get_log_barrier_closure, extra_log));
  }
}

void SystemStateDataCollector::OnGetLog(base::RepeatingClosure barrier_closure,
                                        std::string log_name,
                                        std::optional<std::string> log) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  if (!log) {
    get_log_errors_.push_back(base::StringPrintf(
        "Couldn't get '%s' logs from GetLog call to debugd", log_name.c_str()));
    std::move(barrier_closure).Run();
    return;
  }
  system_logs_.emplace(log_name, SystemLog(log.value(), {}));
  std::move(barrier_closure).Run();
}

void SystemStateDataCollector::OnGotAllExtraLogs(
    scoped_refptr<base::SequencedTaskRunner> task_runner_for_redaction_tool,
    scoped_refptr<redaction::RedactionToolContainer> redaction_tool_container) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);

  ash::DebugDaemonClient* debugd_client = ash::DebugDaemonClient::Get();

  const user_manager::User* user =
      user_manager::UserManager::Get()->GetActiveUser();

  // The list of log types that we request from debugd.
  const std::vector<debugd::FeedbackLogType> included_log_types = {
      debugd::FeedbackLogType::ARC_BUG_REPORT,
      debugd::FeedbackLogType::CONNECTIVITY_REPORT,
      debugd::FeedbackLogType::VERBOSE_COMMAND_LOGS,
      debugd::FeedbackLogType::COMMAND_LOGS,
      debugd::FeedbackLogType::FEEDBACK_LOGS,
      debugd::FeedbackLogType::BLUETOOTH_BQR,
      debugd::FeedbackLogType::LSB_RELEASE_INFO,
      debugd::FeedbackLogType::PERF_DATA,
      debugd::FeedbackLogType::OS_RELEASE_INFO};

  // DBus operations on Chromium is run on UI thread (see
  // https://chromium.googlesource.com/chromiumos/docs/+/master/dbus_in_chrome.md#using-system-daemons_d_bus-services).
  // `debugd_client` will run the callback on original thread (see
  // dbus/object_proxy.h for more details).
  debugd_client->GetFeedbackLogs(
      cryptohome::CreateAccountIdentifierFromAccountId(
          user ? user->GetAccountId() : EmptyAccountId()),
      included_log_types,
      base::BindOnce(&SystemStateDataCollector::OnGetFeedbackLogs,
                     weak_ptr_factory_.GetWeakPtr(),
                     task_runner_for_redaction_tool, redaction_tool_container));
}

void SystemStateDataCollector::OnGetFeedbackLogs(
    scoped_refptr<base::SequencedTaskRunner> task_runner_for_redaction_tool,
    scoped_refptr<redaction::RedactionToolContainer> redaction_tool_container,
    bool success,
    const std::map<std::string, std::string>& logs) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);

  for (const auto& [log_name, log] : logs) {
    // Don't include `kExcludeList` in the output.
    if (base::Contains(kExcludeList, log_name))
      continue;
    system_logs_.emplace(log_name, SystemLog(log, {}));
  }

  if (!success)
    get_log_errors_.push_back(
        "Couldn't get logs from GetFeedbackLogs call to debugd");

  task_runner_for_redaction_tool->PostTaskAndReplyWithResult(
      FROM_HERE,
      base::BindOnce(&SystemStateDataCollector::DetectPII, system_logs_,
                     redaction_tool_container),
      base::BindOnce(&SystemStateDataCollector::OnPIIDetected,
                     weak_ptr_factory_.GetWeakPtr()));
}

void SystemStateDataCollector::OnPIIDetected(
    std::pair<PIIMap, std::map<std::string, SystemLog>> detection_result) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  pii_map_ = std::move(detection_result.first);
  system_logs_ = std::move(detection_result.second);
  if (!get_log_errors_.empty()) {
    SupportToolError error = {SupportToolErrorCode::kDataCollectorError,
                              GetErrorMessage(get_log_errors_)};
    std::move(data_collector_done_callback_).Run(std::move(error));
    return;
  }
  std::move(data_collector_done_callback_).Run(/*error=*/std::nullopt);
}

void SystemStateDataCollector::ExportCollectedDataWithPII(
    std::set<redaction::PIIType> pii_types_to_keep,
    base::FilePath target_directory,
    scoped_refptr<base::SequencedTaskRunner> task_runner_for_redaction_tool,
    scoped_refptr<redaction::RedactionToolContainer> redaction_tool_container,
    DataCollectorDoneCallback on_exported_callback) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  base::FilePath target_path =
      target_directory.Append(FILE_PATH_LITERAL("chromeos_system_state"));
  task_runner_for_redaction_tool->PostTaskAndReplyWithResult(
      FROM_HERE,
      base::BindOnce(&SystemStateDataCollector::RedactPII,
                     std::move(system_logs_), pii_types_to_keep,
                     redaction_tool_container),
      base::BindOnce(&SystemStateDataCollector::OnPIIRedacted,
                     weak_ptr_factory_.GetWeakPtr(), target_path,
                     std::move(on_exported_callback)));
}

void SystemStateDataCollector::OnPIIRedacted(
    base::FilePath target_directory,
    DataCollectorDoneCallback on_exported_callback,
    std::map<std::string, std::string> redacted_logs) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  base::ThreadPool::PostTaskAndReplyWithResult(
      FROM_HERE, {base::MayBlock()},
      base::BindOnce(&WriteLogFiles, redacted_logs, target_directory),
      base::BindOnce(&SystemStateDataCollector::OnFilesWritten,
                     weak_ptr_factory_.GetWeakPtr(),
                     std::move(on_exported_callback)));
}

void SystemStateDataCollector::OnFilesWritten(
    DataCollectorDoneCallback on_exported_callback,
    bool success) {
  if (!success) {
    SupportToolError error = {
        SupportToolErrorCode::kDataCollectorError,
        "SystemStateDataCollector failed on exporting system reports."};
    std::move(on_exported_callback).Run(error);
    return;
  }
  std::move(on_exported_callback).Run(/*error=*/std::nullopt);
}

// static
std::pair<PIIMap, std::map<std::string, SystemStateDataCollector::SystemLog>>
SystemStateDataCollector::DetectPII(
    std::map<std::string, SystemStateDataCollector::SystemLog> system_logs,
    scoped_refptr<redaction::RedactionToolContainer> redaction_tool_container) {
  redaction::RedactionTool* redaction_tool = redaction_tool_container->Get();
  PIIMap detected_pii;
  // Detect PII in all entries in `logs` and add the detected
  // PII to `detected_pii`.
  for (auto& [log_name, system_log] : system_logs) {
    PIIMap pii_in_logs = redaction_tool->Detect(system_log.log);
    system_log.detected_pii_types =
        MergePIIMapsAndGetPIITypes(detected_pii, pii_in_logs);
  }
  return {std::move(detected_pii), std::move(system_logs)};
}

std::map<std::string, std::string> SystemStateDataCollector::RedactPII(
    std::map<std::string, SystemStateDataCollector::SystemLog> system_logs,
    std::set<redaction::PIIType> pii_types_to_keep,
    scoped_refptr<redaction::RedactionToolContainer> redaction_tool_container) {
  redaction::RedactionTool* redaction_tool = redaction_tool_container->Get();
  std::map<std::string, std::string> redacted_logs;
  for (auto [log_name, system_log] : system_logs) {
    redacted_logs[log_name] =
        std::includes(pii_types_to_keep.begin(), pii_types_to_keep.end(),
                      system_log.detected_pii_types.begin(),
                      system_log.detected_pii_types.end())
            ? system_log.log
            : redaction_tool->RedactAndKeepSelected(system_log.log,
                                                    pii_types_to_keep);
  }
  return redacted_logs;
}