OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_CHROMEOS_H_ |
6 #define CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_CHROMEOS_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/callback.h" | 11 #include "base/callback_forward.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "base/memory/weak_ptr.h" | |
15 #include "base/threading/thread_checker.h" | |
16 #include "chrome/browser/chromeos/settings/device_settings_service.h" | 14 #include "chrome/browser/chromeos/settings/device_settings_service.h" |
17 #include "chromeos/dbus/session_manager_client.h" | 15 #include "chromeos/dbus/session_manager_client.h" |
18 #include "components/keyed_service/core/keyed_service.h" | 16 #include "components/keyed_service/core/keyed_service.h" |
19 #include "components/ownership/owner_key_util.h" | 17 #include "components/ownership/owner_key_util.h" |
| 18 #include "components/ownership/owner_settings_service.h" |
20 #include "content/public/browser/notification_observer.h" | 19 #include "content/public/browser/notification_observer.h" |
21 #include "content/public/browser/notification_registrar.h" | 20 #include "content/public/browser/notification_registrar.h" |
22 | 21 |
23 class Profile; | 22 class Profile; |
24 | 23 |
| 24 namespace ownership { |
| 25 class OwnerKeyUtil; |
| 26 } |
| 27 |
25 namespace chromeos { | 28 namespace chromeos { |
26 | 29 |
27 class SessionManagerOperation; | 30 class SessionManagerOperation; |
28 | 31 |
29 // This class reloads owner key from profile NSS slots. | 32 // The class is a profile-keyed service which holds public/private |
| 33 // keypair corresponds to a profile. The keypair is reloaded automatically when |
| 34 // profile is created and TPM token is ready. Note that the private part of a |
| 35 // key can be loaded only for the owner. |
30 // | 36 // |
31 // TODO (ygorshenin@): move write path for device settings here | 37 // TODO (ygorshenin@): move write path for device settings here |
32 // (crbug.com/230018). | 38 // (crbug.com/230018). |
33 class OwnerSettingsService : public DeviceSettingsService::PrivateKeyDelegate, | 39 class OwnerSettingsServiceChromeOS : public ownership::OwnerSettingsService, |
34 public KeyedService, | 40 public content::NotificationObserver, |
35 public content::NotificationObserver, | 41 public SessionManagerClient::Observer { |
36 public SessionManagerClient::Observer { | |
37 public: | 42 public: |
38 virtual ~OwnerSettingsService(); | 43 virtual ~OwnerSettingsServiceChromeOS(); |
39 | |
40 base::WeakPtr<OwnerSettingsService> as_weak_ptr() { | |
41 return weak_factory_.GetWeakPtr(); | |
42 } | |
43 | 44 |
44 void OnTPMTokenReady(bool tpm_token_enabled); | 45 void OnTPMTokenReady(bool tpm_token_enabled); |
45 | 46 |
46 // DeviceSettingsService::PrivateKeyDelegate implementation: | 47 // ownership::OwnerSettingsService implementation: |
47 virtual bool IsOwner() OVERRIDE; | 48 virtual void SignAndStorePolicyAsync( |
48 virtual void IsOwnerAsync(const IsOwnerCallback& callback) OVERRIDE; | |
49 virtual bool AssembleAndSignPolicyAsync( | |
50 scoped_ptr<enterprise_management::PolicyData> policy, | 49 scoped_ptr<enterprise_management::PolicyData> policy, |
51 const AssembleAndSignPolicyCallback& callback) OVERRIDE; | |
52 virtual void SignAndStoreAsync( | |
53 scoped_ptr<enterprise_management::ChromeDeviceSettingsProto> settings, | |
54 const base::Closure& callback) OVERRIDE; | |
55 virtual void SetManagementSettingsAsync( | |
56 enterprise_management::PolicyData::ManagementMode management_mode, | |
57 const std::string& request_token, | |
58 const std::string& device_id, | |
59 const base::Closure& callback) OVERRIDE; | 50 const base::Closure& callback) OVERRIDE; |
60 | 51 |
61 // NotificationObserver implementation: | 52 // NotificationObserver implementation: |
62 virtual void Observe(int type, | 53 virtual void Observe(int type, |
63 const content::NotificationSource& source, | 54 const content::NotificationSource& source, |
64 const content::NotificationDetails& details) OVERRIDE; | 55 const content::NotificationDetails& details) OVERRIDE; |
65 | 56 |
66 // SessionManagerClient::Observer: | 57 // SessionManagerClient::Observer: |
67 virtual void OwnerKeySet(bool success) OVERRIDE; | 58 virtual void OwnerKeySet(bool success) OVERRIDE; |
68 | 59 |
69 // Checks if the user is the device owner, without the user profile having to | 60 // Checks if the user is the device owner, without the user profile having to |
70 // been initialized. Should be used only if login state is in safe mode. | 61 // been initialized. Should be used only if login state is in safe mode. |
71 static void IsOwnerForSafeModeAsync( | 62 static void IsOwnerForSafeModeAsync( |
72 const std::string& user_hash, | 63 const std::string& user_hash, |
73 const scoped_refptr<ownership::OwnerKeyUtil>& owner_key_util, | 64 const scoped_refptr<ownership::OwnerKeyUtil>& owner_key_util, |
74 const IsOwnerCallback& callback); | 65 const IsOwnerCallback& callback); |
75 | 66 |
76 static void SetDeviceSettingsServiceForTesting( | 67 static void SetDeviceSettingsServiceForTesting( |
77 DeviceSettingsService* device_settings_service); | 68 DeviceSettingsService* device_settings_service); |
78 | 69 |
79 private: | 70 private: |
80 friend class OwnerSettingsServiceFactory; | 71 friend class OwnerSettingsServiceChromeOSFactory; |
81 | 72 |
82 OwnerSettingsService( | 73 OwnerSettingsServiceChromeOS( |
83 Profile* profile, | 74 Profile* profile, |
84 const scoped_refptr<ownership::OwnerKeyUtil>& owner_key_util); | 75 const scoped_refptr<ownership::OwnerKeyUtil>& owner_key_util); |
85 | 76 |
86 // Reloads private key from profile's NSS slots. Responds via call | 77 // OwnerSettingsService protected interface overrides: |
87 // to OnPrivateKeyLoaded(). | |
88 void ReloadPrivateKey(); | |
89 | 78 |
90 // Called when ReloadPrivateKey() completes it's work. | 79 // Reloads private key from profile's NSS slots, responds via |callback|. |
91 void OnPrivateKeyLoaded(scoped_refptr<ownership::PublicKey> public_key, | 80 virtual void ReloadKeypairImpl(const base::Callback< |
92 scoped_refptr<ownership::PrivateKey> private_key); | 81 void(const scoped_refptr<ownership::PublicKey>& public_key, |
| 82 const scoped_refptr<ownership::PrivateKey>& private_key)>& callback) |
| 83 OVERRIDE; |
93 | 84 |
94 // Puts request to perform sign-and-store operation in the queue. | 85 // Possibly notifies DeviceSettingsService that owner's keypair is loaded. |
95 void EnqueueSignAndStore(scoped_ptr<enterprise_management::PolicyData> policy, | 86 virtual void OnPostKeypairLoadedActions() OVERRIDE; |
96 const base::Closure& callback); | |
97 | 87 |
98 // Performs next operation in the queue. | 88 // Performs next operation in the queue. |
99 void StartNextOperation(); | 89 void StartNextOperation(); |
100 | 90 |
101 // Called when sign-and-store operation completes it's work. | 91 // Called when sign-and-store operation completes it's work. |
102 void HandleCompletedOperation(const base::Closure& callback, | 92 void HandleCompletedOperation(const base::Closure& callback, |
103 SessionManagerOperation* operation, | 93 SessionManagerOperation* operation, |
104 DeviceSettingsService::Status status); | 94 DeviceSettingsService::Status status); |
105 | 95 |
106 // Called when it's not possible to store settings. | |
107 void HandleError(DeviceSettingsService::Status status, | |
108 const base::Closure& callback); | |
109 | |
110 // Returns testing instance of OwnerKeyUtil when it's set, otherwise | |
111 // returns |owner_key_util_|. | |
112 scoped_refptr<ownership::OwnerKeyUtil> GetOwnerKeyUtil(); | |
113 | |
114 // Returns testing instance of DeviceSettingsService when it's set, | |
115 // otherwise returns pointer to a singleton instance, when it's | |
116 // initialized. | |
117 DeviceSettingsService* GetDeviceSettingsService(); | |
118 | |
119 // Profile this service instance belongs to. | 96 // Profile this service instance belongs to. |
120 Profile* profile_; | 97 Profile* profile_; |
121 | 98 |
122 // User ID this service instance belongs to. | 99 // User ID this service instance belongs to. |
123 std::string user_id_; | 100 std::string user_id_; |
124 | 101 |
125 scoped_refptr<ownership::PublicKey> public_key_; | |
126 | |
127 scoped_refptr<ownership::PrivateKey> private_key_; | |
128 | |
129 scoped_refptr<ownership::OwnerKeyUtil> owner_key_util_; | |
130 | |
131 std::vector<IsOwnerCallback> pending_is_owner_callbacks_; | |
132 | |
133 // Whether profile still needs to be initialized. | 102 // Whether profile still needs to be initialized. |
134 bool waiting_for_profile_creation_; | 103 bool waiting_for_profile_creation_; |
135 | 104 |
136 // Whether TPM token still needs to be initialized. | 105 // Whether TPM token still needs to be initialized. |
137 bool waiting_for_tpm_token_; | 106 bool waiting_for_tpm_token_; |
138 | 107 |
139 // The queue of pending sign-and-store operations. The first operation on the | 108 // The queue of pending sign-and-store operations. The first operation on the |
140 // queue is currently active; it gets removed and destroyed once it completes. | 109 // queue is currently active; it gets removed and destroyed once it completes. |
141 std::deque<SessionManagerOperation*> pending_operations_; | 110 std::deque<SessionManagerOperation*> pending_operations_; |
142 | 111 |
143 content::NotificationRegistrar registrar_; | 112 content::NotificationRegistrar registrar_; |
144 | 113 |
145 base::ThreadChecker thread_checker_; | 114 base::WeakPtrFactory<OwnerSettingsServiceChromeOS> weak_factory_; |
146 | 115 |
147 base::WeakPtrFactory<OwnerSettingsService> weak_factory_; | 116 DISALLOW_COPY_AND_ASSIGN(OwnerSettingsServiceChromeOS); |
148 | |
149 DISALLOW_COPY_AND_ASSIGN(OwnerSettingsService); | |
150 }; | 117 }; |
151 | 118 |
152 } // namespace chromeos | 119 } // namespace chromeos |
153 | 120 |
154 #endif // CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_H_ | 121 #endif // CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_CHROMEOS_H_ |
OLD | NEW |