OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/user_prefs/tracked/pref_hash_store_impl.h" | 5 #include "components/user_prefs/tracked/pref_hash_store_impl.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/metrics/histogram.h" | 12 #include "base/metrics/histogram_macros.h" |
13 #include "components/user_prefs/tracked/device_id.h" | |
13 #include "components/user_prefs/tracked/hash_store_contents.h" | 14 #include "components/user_prefs/tracked/hash_store_contents.h" |
14 | 15 |
16 namespace { | |
17 | |
18 // Returns a deterministic ID for this machine. | |
19 std::string GenerateDeviceId() { | |
20 std::string device_id; | |
21 MachineIdStatus status = GetDeterministicMachineSpecificId(&device_id); | |
22 // TODO(proberge): Remove this histogram once we validate that machine id | |
23 // generation is not flaky. | |
24 UMA_HISTOGRAM_ENUMERATION("Settings.MachineIdGenerationStatus", status, | |
gab
2017/01/19 18:52:05
I don't think we want to report not implemented, i
proberge
2017/01/19 20:42:59
Done.
| |
25 MachineIdStatus::NUM_STATUS); | |
26 | |
27 if (status == MachineIdStatus::SUCCESS) | |
28 return device_id; | |
29 | |
30 #if defined(OS_WIN) || defined(OS_MACOSX) | |
gab
2017/01/19 18:52:05
Use MachineIdStatus::NOT_IMPLEMENTED vs FAILURE in
proberge
2017/01/19 20:42:59
Done.
| |
31 // On Windows and MacOSX we need a machine id to validate and sign | |
32 // preferences. | |
33 DCHECK("Failed to generate machine specific id for tracked preferences."); | |
gab
2017/01/19 18:52:05
To generate a DCHECK message you need to use << (r
proberge
2017/01/19 20:42:59
doh! Good catch.
Removed the DCHECK for now.
| |
34 #endif | |
35 return std::string(); | |
36 } | |
37 | |
38 } // namespace | |
39 | |
15 class PrefHashStoreImpl::PrefHashStoreTransactionImpl | 40 class PrefHashStoreImpl::PrefHashStoreTransactionImpl |
16 : public PrefHashStoreTransaction { | 41 : public PrefHashStoreTransaction { |
17 public: | 42 public: |
18 // Constructs a PrefHashStoreTransactionImpl which can use the private | 43 // Constructs a PrefHashStoreTransactionImpl which can use the private |
19 // members of its |outer| PrefHashStoreImpl. | 44 // members of its |outer| PrefHashStoreImpl. |
20 PrefHashStoreTransactionImpl(PrefHashStoreImpl* outer, | 45 PrefHashStoreTransactionImpl(PrefHashStoreImpl* outer, |
21 HashStoreContents* storage); | 46 HashStoreContents* storage); |
22 ~PrefHashStoreTransactionImpl() override; | 47 ~PrefHashStoreTransactionImpl() override; |
23 | 48 |
24 // PrefHashStoreTransaction implementation. | 49 // PrefHashStoreTransaction implementation. |
(...skipping 17 matching lines...) Expand all Loading... | |
42 PrefHashStoreImpl* outer_; | 67 PrefHashStoreImpl* outer_; |
43 HashStoreContents* contents_; | 68 HashStoreContents* contents_; |
44 | 69 |
45 bool super_mac_valid_; | 70 bool super_mac_valid_; |
46 bool super_mac_dirty_; | 71 bool super_mac_dirty_; |
47 | 72 |
48 DISALLOW_COPY_AND_ASSIGN(PrefHashStoreTransactionImpl); | 73 DISALLOW_COPY_AND_ASSIGN(PrefHashStoreTransactionImpl); |
49 }; | 74 }; |
50 | 75 |
51 PrefHashStoreImpl::PrefHashStoreImpl(const std::string& seed, | 76 PrefHashStoreImpl::PrefHashStoreImpl(const std::string& seed, |
52 const std::string& device_id, | 77 const std::string& legacy_device_id, |
53 bool use_super_mac) | 78 bool use_super_mac) |
54 : pref_hash_calculator_(seed, device_id), use_super_mac_(use_super_mac) { | 79 : pref_hash_calculator_(seed, GenerateDeviceId(), legacy_device_id), |
55 } | 80 use_super_mac_(use_super_mac) {} |
56 | 81 |
57 PrefHashStoreImpl::~PrefHashStoreImpl() { | 82 PrefHashStoreImpl::~PrefHashStoreImpl() { |
58 } | 83 } |
59 | 84 |
60 std::unique_ptr<PrefHashStoreTransaction> PrefHashStoreImpl::BeginTransaction( | 85 std::unique_ptr<PrefHashStoreTransaction> PrefHashStoreImpl::BeginTransaction( |
61 HashStoreContents* storage) { | 86 HashStoreContents* storage) { |
62 return std::unique_ptr<PrefHashStoreTransaction>( | 87 return std::unique_ptr<PrefHashStoreTransaction>( |
63 new PrefHashStoreTransactionImpl(this, std::move(storage))); | 88 new PrefHashStoreTransactionImpl(this, std::move(storage))); |
64 } | 89 } |
65 | 90 |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
282 bool PrefHashStoreImpl::PrefHashStoreTransactionImpl::IsSuperMACValid() const { | 307 bool PrefHashStoreImpl::PrefHashStoreTransactionImpl::IsSuperMACValid() const { |
283 return super_mac_valid_; | 308 return super_mac_valid_; |
284 } | 309 } |
285 | 310 |
286 bool PrefHashStoreImpl::PrefHashStoreTransactionImpl::StampSuperMac() { | 311 bool PrefHashStoreImpl::PrefHashStoreTransactionImpl::StampSuperMac() { |
287 if (!outer_->use_super_mac_ || super_mac_valid_) | 312 if (!outer_->use_super_mac_ || super_mac_valid_) |
288 return false; | 313 return false; |
289 super_mac_dirty_ = true; | 314 super_mac_dirty_ = true; |
290 return true; | 315 return true; |
291 } | 316 } |
OLD | NEW |