blob: 5bf1f69ea1178f1b5abf240d5cc83a6b2740fd8c [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_METRICS_UNSENT_LOG_STORE_H_
#define COMPONENTS_METRICS_UNSENT_LOG_STORE_H_
#include <stddef.h>
#include <memory>
#include <string>
#include <vector>
#include "base/gtest_prod_util.h"
#include "base/logging.h"
#include "base/memory/raw_ptr.h"
#include "base/metrics/histogram_base.h"
#include "base/values.h"
#include "components/metrics/log_store.h"
#include "components/metrics/metrics_log.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
class PrefService;
namespace metrics {
class UnsentLogStoreMetrics;
// Maintains a list of unsent logs that are written and restored from disk.
class UnsentLogStore : public LogStore {
public:
// Constructs an UnsentLogStore that stores data in |local_state| under the
// preference |log_data_pref_name|.
// Calling code is responsible for ensuring that the lifetime of |local_state|
// is longer than the lifetime of UnsentLogStore.
//
// The optional |metadata_pref_name| is the preference that is used to store
// the unsent logs info while the unset logs are persisted. That info will be
// recorded as UMA metrics in next browser startup.
//
// When saving logs to disk, stores either the first |min_log_count| logs, or
// at least |min_log_bytes| bytes of logs, whichever is greater.
//
// If the optional |max_log_size| parameter is non-zero, all logs larger than
// that limit will be skipped when writing to disk.
//
// |signing_key| is used to produce an HMAC-SHA256 signature of the logged
// data, which will be uploaded with the log and used to validate data
// integrity.
UnsentLogStore(std::unique_ptr<UnsentLogStoreMetrics> metrics,
PrefService* local_state,
const char* log_data_pref_name,
const char* metadata_pref_name,
size_t min_log_count,
size_t min_log_bytes,
size_t max_log_size,
const std::string& signing_key);
UnsentLogStore(const UnsentLogStore&) = delete;
UnsentLogStore& operator=(const UnsentLogStore&) = delete;
~UnsentLogStore() override;
// LogStore:
bool has_unsent_logs() const override;
bool has_staged_log() const override;
const std::string& staged_log() const override;
const std::string& staged_log_hash() const override;
const std::string& staged_log_signature() const override;
absl::optional<uint64_t> staged_log_user_id() const override;
void StageNextLog() override;
void DiscardStagedLog() override;
void MarkStagedLogAsSent() override;
void TrimAndPersistUnsentLogs() override;
void LoadPersistedUnsentLogs() override;
// Adds a UMA log to the list. |log_metadata| refers to metadata associated
// with the log.
void StoreLog(const std::string& log_data, const LogMetadata& log_metadata);
// Gets log data at the given index in the list.
const std::string& GetLogAtIndex(size_t index);
// Replaces the compressed log at |index| in the store with given log data and
// |log_metadata| reusing the same timestamp.
std::string ReplaceLogAtIndex(size_t index,
const std::string& new_log_data,
const LogMetadata& log_metadata);
// Deletes all logs, in memory and on disk.
void Purge();
// Returns the timestamp of the element in the front of the list.
const std::string& staged_log_timestamp() const;
// The number of elements currently stored.
size_t size() const { return list_.size(); }
// Computes the HMAC for |log_data| using the |signing_key| and returns a bool
// indicating whether the signing succeeded. The returned HMAC is written to
// the |signature|.
static bool ComputeHMACForLog(const std::string& log_data,
const std::string& signing_key,
std::string* signature);
private:
FRIEND_TEST_ALL_PREFIXES(UnsentLogStoreTest, UnsentLogMetadataMetrics);
// Keep the most recent logs which are smaller than |max_log_size_|.
// We keep at least |min_log_bytes_| and |min_log_count_| of logs before
// discarding older logs.
void TrimLogs();
// Writes the list of logs to |list|.
void WriteLogsToPrefList(base::Value* list) const;
// Reads the list of logs from |list|.
void ReadLogsFromPrefList(const base::Value& list);
// Writes the unsent log info to the |metadata_pref_name_| preference.
void WriteToMetricsPref(base::HistogramBase::Count unsent_samples_count,
base::HistogramBase::Count sent_samples_count,
size_t persisted_size) const;
// Records the info in |metadata_pref_name_| as UMA metrics.
void RecordMetaDataMetrics();
// An object for recording UMA metrics.
std::unique_ptr<UnsentLogStoreMetrics> metrics_;
// A weak pointer to the PrefService object to read and write the preference
// from. Calling code should ensure this object continues to exist for the
// lifetime of the UnsentLogStore object.
raw_ptr<PrefService> local_state_;
// The name of the preference to serialize logs to/from.
const char* log_data_pref_name_;
// The name of the preference to store the unsent logs info, it could be
// nullptr if the metadata isn't desired.
const char* metadata_pref_name_;
// We will keep at least this |min_log_count_| logs or |min_log_bytes_| bytes
// of logs, whichever is greater, when trimming logs. These apply after
// skipping logs greater than |max_log_size_|.
const size_t min_log_count_;
const size_t min_log_bytes_;
// Logs greater than this size will not be written to disk.
const size_t max_log_size_;
// Used to create a signature of log data, in order to verify reported data is
// authentic.
const std::string signing_key_;
struct LogInfo {
LogInfo();
LogInfo(const LogInfo& other);
~LogInfo();
// Initializes the members based on uncompressed |log_data|,
// |log_timestamp|, and |signing_key|. |log_data| is the uncompressed
// serialized log protobuf. A hash and a signature are computed from
// |log_data|. The signature is produced using |signing_key|. |log_data|
// will be compressed and stored in |compressed_log_data|. |log_timestamp|
// is stored as is. |log_metadata| is any optional metadata that will be
// attached to the log.
// |metrics| is the parent's metrics_ object, and should not be held.
void Init(UnsentLogStoreMetrics* metrics,
const std::string& log_data,
const std::string& log_timestamp,
const std::string& signing_key,
const LogMetadata& log_metadata);
// Compressed log data - a serialized protobuf that's been gzipped.
std::string compressed_log_data;
// The SHA1 hash of the log. Computed in Init and stored to catch errors
// from memory corruption.
std::string hash;
// The HMAC-SHA256 signature of the log, used to validate the log came from
// Chrome. It's computed in Init and stored, instead of computed on demand,
// to catch errors from memory corruption.
std::string signature;
// The timestamp of when the log was created as a time_t value.
std::string timestamp;
// Properties of the log.
LogMetadata log_metadata;
};
// A list of all of the stored logs, stored with SHA1 hashes to check for
// corruption while they are stored in memory.
std::vector<std::unique_ptr<LogInfo>> list_;
// The index and type of the log staged for upload. If nothing has been
// staged, the index will be -1.
int staged_log_index_;
// The total number of samples that have been sent from this LogStore.
base::HistogramBase::Count total_samples_sent_ = 0;
};
} // namespace metrics
#endif // COMPONENTS_METRICS_UNSENT_LOG_STORE_H_