File: extension_telemetry_persister.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 (188 lines) | stat: -rw-r--r-- 6,761 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
// 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/safe_browsing/extension_telemetry/extension_telemetry_persister.h"

#include <sstream>

#include "base/files/file_util.h"
#include "base/functional/callback.h"
#include "base/logging.h"
#include "base/metrics/histogram_functions.h"
#include "base/path_service.h"
#include "base/strings/string_number_conversions.h"
#include "base/task/bind_post_task.h"
#include "base/task/thread_pool.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/chrome_paths.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"

namespace safe_browsing {

namespace {

using WriteReportTrigger = ExtensionTelemetryPersister::WriteReportTrigger;

// If a file is older than `kMaxFileAge` it will be deleted instead
// of read.
constexpr base::TimeDelta kMaxFileAge = base::Days(3);
// The initial index for the `read_index_` and the `write_index_`.
constexpr int kInitialWriteIndex = 0;
constexpr int kInitialReadIndex = -1;
constexpr char kPersistedFileNamePrefix[] = "CRXTelemetry_";
// `kMaxCacheSize` is based off of a 12 hour reporting interval with a 15
// minute write interval. This value is used to size the UMA metric,
// there are no plans for the persister to have a cache this large.
constexpr int kMaxCacheSize = 48;

void RecordWriteResult(bool success, WriteReportTrigger trigger) {
  std::string metric = "SafeBrowsing.ExtensionPersister.WriteResult";
  std::string suffix;
  switch (trigger) {
    case WriteReportTrigger::kAtWriteInterval:
      suffix = ".AtWriteInterval";
      break;
    case WriteReportTrigger::kAtShutdown:
      suffix = ".AtShutdown";
      break;
  }
  base::UmaHistogramBoolean(metric, success);
  base::UmaHistogramBoolean(metric + suffix, success);
}

void RecordReadResult(bool success) {
  base::UmaHistogramBoolean("SafeBrowsing.ExtensionPersister.ReadResult",
                            success);
}

void RecordPersistedFileSize(size_t size) {
  base::UmaHistogramCounts1M(
      "SafeBrowsing.ExtensionPersister.PersistedFileSize", size);
}

void RecordNumberOfFilesInCacheOnStartup(int cache_size) {
  // Add 1 to `kMaxCacheSize` to account for zero files in the cache.
  base::UmaHistogramExactLinear("SafeBrowsing.ExtensionPersister.CacheSize",
                                cache_size, kMaxCacheSize + 1);
}

void RecordAgedFileFound(bool found) {
  base::UmaHistogramBoolean("SafeBrowsing.ExtensionPersister.AgedFileFound",
                            found);
}
}  // namespace

ExtensionTelemetryPersister::~ExtensionTelemetryPersister() = default;

ExtensionTelemetryPersister::ExtensionTelemetryPersister(
    int max_num_files,
    base::FilePath profile_path)
    : dir_path_(profile_path), max_num_files_(max_num_files) {
  DCHECK(max_num_files <= kMaxCacheSize);
}

void ExtensionTelemetryPersister::PersisterInit() {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  // TODO(crbug.com/40225665): Remove old directory clean up code after
  // launch.
  base::FilePath old_dir;
  if (base::PathService::Get(chrome::DIR_USER_DATA, &old_dir)) {
    old_dir = old_dir.AppendASCII("CRXTelemetry");
    if (base::DirectoryExists(old_dir)) {
      base::DeletePathRecursively(old_dir);
    }
  }
  write_index_ = kInitialWriteIndex;
  read_index_ = kInitialReadIndex;
  dir_path_ = dir_path_.AppendASCII("CRXTelemetry");
  if (!base::DirectoryExists(dir_path_))
    base::CreateDirectory(dir_path_);
  while (
      base::PathExists(dir_path_.AppendASCII((
          kPersistedFileNamePrefix + base::NumberToString(read_index_ + 1)))) &&
      (read_index_ < max_num_files_ - 1)) {
    read_index_++;
  }
  write_index_ = (read_index_ + 1) % max_num_files_;
  initialization_complete_ = true;
  RecordNumberOfFilesInCacheOnStartup(read_index_);
}

void ExtensionTelemetryPersister::WriteReport(const std::string write_string,
                                              WriteReportTrigger trigger) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  if (initialization_complete_) {
    if (!base::DirectoryExists(dir_path_)) {
      base::CreateDirectory(dir_path_);
      write_index_ = kInitialWriteIndex;
      read_index_ = kInitialReadIndex;
    }
    base::FilePath path = dir_path_.AppendASCII(
        (kPersistedFileNamePrefix + base::NumberToString(write_index_)));
    bool success = base::WriteFile(path, write_string);
    if (success) {
      write_index_++;
      if (write_index_ - 1 > read_index_)
        read_index_ = write_index_ - 1;
      if (write_index_ >= max_num_files_)
        write_index_ = 0;
    }
    RecordWriteResult(success, trigger);
  }
}

std::string ExtensionTelemetryPersister::ReadReport() {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  if (!initialization_complete_ || read_index_ <= kInitialReadIndex) {
    return std::string();
  }
  bool read_success = false;
  std::string persisted_report;
  base::File::Info info;
  base::FilePath path = dir_path_.AppendASCII(
      (kPersistedFileNamePrefix + base::NumberToString(read_index_)));
  // Check file to see if it's older than `kMaxFileAge`,
  // if so, delete it and look for another file.
  while (base::PathExists(path) && base::DirectoryExists(dir_path_)) {
    // After reading a file, `write_index` is updated to make sure
    // it is `read_index_` + 1. Ensuring that anytime space is created in
    // the cache by a read, it is the next spot to be written to.
    read_index_--;
    write_index_ = read_index_ + 1;
    base::GetFileInfo(path, &info);
    if (info.creation_time + kMaxFileAge > base::Time::Now()) {
      RecordAgedFileFound(false);
      if (base::ReadFileToString(path, &persisted_report))
        read_success = true;
      RecordPersistedFileSize(info.size);
      // Delete the file on disk regardless of age or read success.
      DeleteFile(path);
      break;
    }
    DeleteFile(path);
    RecordAgedFileFound(true);
    path = dir_path_.AppendASCII(
        (kPersistedFileNamePrefix + base::NumberToString(read_index_)));
  }
  RecordReadResult(read_success);
  return persisted_report;
}

void ExtensionTelemetryPersister::ClearPersistedFiles() {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  write_index_ = kInitialWriteIndex;
  read_index_ = kInitialReadIndex;
  base::DeletePathRecursively(dir_path_);
}

int ExtensionTelemetryPersister::MaxFilesSupported() {
  return kMaxCacheSize;
}

bool ExtensionTelemetryPersister::DeleteFile(const base::FilePath path) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  return (base::PathExists(path) && base::DeleteFile(path));
}
}  // namespace safe_browsing