File: client_storage.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 (122 lines) | stat: -rw-r--r-- 3,884 bytes parent folder | download | duplicates (3)
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
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/policy/test_support/client_storage.h"

#include <array>

#include "base/check.h"
#include "base/containers/contains.h"
#include "base/strings/string_view_util.h"
#include "crypto/hash.h"

namespace policy {

ClientStorage::ClientInfo::ClientInfo() = default;

ClientStorage::ClientInfo::ClientInfo(
    const ClientStorage::ClientInfo& client_info) = default;

ClientStorage::ClientInfo& ClientStorage::ClientInfo::operator=(
    const ClientStorage::ClientInfo& client_info) = default;

ClientStorage::ClientInfo::ClientInfo(ClientStorage::ClientInfo&& client_info) =
    default;

ClientStorage::ClientInfo& ClientStorage::ClientInfo::operator=(
    ClientStorage::ClientInfo&& client_info) = default;

ClientStorage::ClientInfo::~ClientInfo() = default;

ClientStorage::ClientStorage() = default;

ClientStorage::ClientStorage(ClientStorage&& client_storage) = default;

ClientStorage& ClientStorage::operator=(ClientStorage&& client_storage) =
    default;

ClientStorage::~ClientStorage() = default;

void ClientStorage::RegisterClient(const ClientInfo& client_info) {
  CHECK(!client_info.device_id.empty());

  clients_[client_info.device_id] = client_info;
  registered_tokens_[client_info.device_token] = client_info.device_id;
}

bool ClientStorage::HasClient(const std::string& device_id) const {
  return clients_.find(device_id) != clients_.end();
}

const ClientStorage::ClientInfo& ClientStorage::GetClient(
    const std::string& device_id) const {
  const ClientInfo* const client_info = GetClientOrNull(device_id);
  CHECK(client_info);

  return *client_info;
}

const ClientStorage::ClientInfo* ClientStorage::GetClientOrNull(
    const std::string& device_id) const {
  auto it = clients_.find(device_id);
  return it == clients_.end() ? nullptr : &it->second;
}

const ClientStorage::ClientInfo* ClientStorage::LookupByStateKey(
    const std::string& state_key) const {
  for (auto const& [device_id, client_info] : clients_) {
    if (base::Contains(client_info.state_keys, state_key))
      return &client_info;
  }
  return nullptr;
}

bool ClientStorage::DeleteClient(const std::string& device_token) {
  auto it = registered_tokens_.find(device_token);
  if (it == registered_tokens_.end())
    return false;

  const std::string& device_id = it->second;
  DCHECK(!device_id.empty());
  auto it_clients = clients_.find(device_id);
  CHECK(it_clients != clients_.end());

  clients_.erase(it_clients, clients_.end());
  registered_tokens_.erase(it, registered_tokens_.end());
  return true;
}

size_t ClientStorage::GetNumberOfRegisteredClients() const {
  return clients_.size();
}

std::vector<std::string> ClientStorage::GetMatchingStateKeyHashes(
    uint64_t modulus,
    uint64_t remainder) const {
  std::vector<std::string> hashes;
  for (const auto& [device_id, client_info] : clients_) {
    for (const std::string& key : client_info.state_keys) {
      auto hash = crypto::hash::Sha256(key);
      uint64_t hash_remainder = 0;
      // Simulate long division in base 256, which allows us to interpret
      // individual chars in our hash as digits. We only care about the
      // remainder and hence do not compute the quotient in each iteration. This
      // assumes big-endian byte order.
      for (uint64_t digit : hash)
        hash_remainder = (hash_remainder * 256 + digit) % modulus;
      if (hash_remainder == remainder)
        hashes.emplace_back(base::as_string_view(hash));
    }
  }
  return hashes;
}

std::vector<ClientStorage::ClientInfo> ClientStorage::GetAllClients() {
  std::vector<ClientStorage::ClientInfo> result;
  for (const auto& [device_id, client_info] : clients_) {
    result.push_back(client_info);
  }
  return result;
}
}  // namespace policy