-
Notifications
You must be signed in to change notification settings - Fork 19
/
real_device_policy_provider.h
249 lines (202 loc) · 9.38 KB
/
real_device_policy_provider.h
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
//
// Copyright (C) 2014 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#ifndef UPDATE_ENGINE_UPDATE_MANAGER_REAL_DEVICE_POLICY_PROVIDER_H_
#define UPDATE_ENGINE_UPDATE_MANAGER_REAL_DEVICE_POLICY_PROVIDER_H_
#include <memory>
#include <set>
#include <string>
#include <utility>
#include <brillo/message_loops/message_loop.h>
#include <gtest/gtest_prod.h> // for FRIEND_TEST
#include <policy/libpolicy.h>
#if USE_DBUS
#include <session_manager/dbus-proxies.h>
#endif // USE_DBUS
#include "update_engine/update_manager/device_policy_provider.h"
#include "update_engine/update_manager/generic_variables.h"
namespace chromeos_update_manager {
// |DevicePolicyProvider| concrete implementation.
class RealDevicePolicyProvider : public DevicePolicyProvider {
public:
#if USE_DBUS
RealDevicePolicyProvider(
std::unique_ptr<org::chromium::SessionManagerInterfaceProxyInterface>
session_manager_proxy,
policy::PolicyProvider* policy_provider)
: policy_provider_(policy_provider),
session_manager_proxy_(std::move(session_manager_proxy)) {}
#endif // USE_DBUS
explicit RealDevicePolicyProvider(policy::PolicyProvider* policy_provider)
: policy_provider_(policy_provider) {}
~RealDevicePolicyProvider();
// Initializes the provider and returns whether it succeeded.
bool Init();
Variable<bool>* var_device_policy_is_loaded() override {
return &var_device_policy_is_loaded_;
}
Variable<std::string>* var_release_channel() override {
return &var_release_channel_;
}
Variable<bool>* var_release_channel_delegated() override {
return &var_release_channel_delegated_;
}
Variable<std::string>* var_release_lts_tag() override {
return &var_release_lts_tag_;
}
Variable<bool>* var_update_disabled() override {
return &var_update_disabled_;
}
Variable<std::string>* var_target_version_prefix() override {
return &var_target_version_prefix_;
}
Variable<RollbackToTargetVersion>* var_rollback_to_target_version() override {
return &var_rollback_to_target_version_;
}
Variable<int>* var_rollback_allowed_milestones() override {
return &var_rollback_allowed_milestones_;
}
Variable<base::TimeDelta>* var_scatter_factor() override {
return &var_scatter_factor_;
}
Variable<std::set<chromeos_update_engine::ConnectionType>>*
var_allowed_connection_types_for_update() override {
return &var_allowed_connection_types_for_update_;
}
Variable<bool>* var_has_owner() override { return &var_has_owner_; }
Variable<bool>* var_http_downloads_enabled() override {
return &var_http_downloads_enabled_;
}
Variable<bool>* var_au_p2p_enabled() override { return &var_au_p2p_enabled_; }
Variable<bool>* var_allow_kiosk_app_control_chrome_version() override {
return &var_allow_kiosk_app_control_chrome_version_;
}
Variable<std::string>* var_auto_launched_kiosk_app_id() override {
return &var_auto_launched_kiosk_app_id_;
}
Variable<WeeklyTimeIntervalVector>* var_disallowed_time_intervals() override {
return &var_disallowed_time_intervals_;
}
Variable<ChannelDowngradeBehavior>* var_channel_downgrade_behavior()
override {
return &var_channel_downgrade_behavior_;
}
Variable<base::Version>* var_device_minimum_version() override {
return &var_device_minimum_version_;
}
Variable<std::string>* var_quick_fix_build_token() override {
return &var_quick_fix_build_token_;
}
private:
FRIEND_TEST(UmRealDevicePolicyProviderTest, RefreshScheduledTest);
FRIEND_TEST(UmRealDevicePolicyProviderTest, NonExistentDevicePolicyReloaded);
FRIEND_TEST(UmRealDevicePolicyProviderTest, ValuesUpdated);
FRIEND_TEST(UmRealDevicePolicyProviderTest, HasOwnerConverted);
// A static handler for the |PropertyChangedCompleted| signal from the session
// manager used as a callback.
void OnPropertyChangedCompletedSignal(const std::string& success);
// Called when the signal in |UpdateEngineLibcrosProxyResolvedInterface| is
// connected.
void OnSignalConnected(const std::string& interface_name,
const std::string& signal_name,
bool successful);
// Schedules a call to periodically refresh the device policy.
void RefreshDevicePolicyAndReschedule();
// Reloads the device policy and updates all the exposed variables.
void RefreshDevicePolicy();
// Updates the async variable |var| based on the result value of the method
// passed, which is a DevicePolicy getter method.
template <typename T>
void UpdateVariable(AsyncCopyVariable<T>* var,
bool (policy::DevicePolicy::*getter)(T*) const);
// Updates the async variable |var| based on the result value of the getter
// method passed, which is a wrapper getter on this class.
template <typename T>
void UpdateVariable(AsyncCopyVariable<T>* var,
bool (RealDevicePolicyProvider::*getter)(T*) const);
// Wrapper for |DevicePolicy::GetRollbackToTargetVersion()| that converts the
// result to |RollbackToTargetVersion|.
bool ConvertRollbackToTargetVersion(
RollbackToTargetVersion* rollback_to_target_version) const;
// Wrapper for |DevicePolicy::GetScatterFactorInSeconds()| that converts the
// result to a |base::TimeDelta|. It returns the same value as
// |GetScatterFactorInSeconds()|.
bool ConvertScatterFactor(base::TimeDelta* scatter_factor) const;
// Wrapper for |DevicePolicy::GetAllowedConnectionTypesForUpdate()| that
// converts the result to a set of |ConnectionType| elements instead of
// strings.
bool ConvertAllowedConnectionTypesForUpdate(
std::set<chromeos_update_engine::ConnectionType>* allowed_types) const;
// Wrapper for |DevicePolicy::GetUpdateTimeRestrictions()| that converts
// the |DevicePolicy::WeeklyTimeInterval| structs to |WeeklyTimeInterval|
// objects, which offer more functionality.
bool ConvertDisallowedTimeIntervals(
WeeklyTimeIntervalVector* disallowed_intervals_out) const;
// Wrapper for |DevicePolicy::GetOwner()| that converts the result to a
// boolean of whether the device has an owner. (Enterprise enrolled
// devices do not have an owner).
bool ConvertHasOwner(bool* has_owner) const;
// Wrapper for |DevicePolicy::GetChannelDowngradeBehavior| that converts the
// result to |ChannelDowngradeBehavior|.
bool ConvertChannelDowngradeBehavior(
ChannelDowngradeBehavior* channel_downgrade_behavior) const;
// Used for fetching information about the device policy.
policy::PolicyProvider* policy_provider_;
// Used to schedule refreshes of the device policy.
brillo::MessageLoop::TaskId scheduled_refresh_{
brillo::MessageLoop::kTaskIdNull};
#if USE_DBUS
// The DBus (mockable) session manager proxy.
std::unique_ptr<org::chromium::SessionManagerInterfaceProxyInterface>
session_manager_proxy_;
#endif // USE_DBUS
// Variable exposing whether the policy is loaded.
AsyncCopyVariable<bool> var_device_policy_is_loaded_{"policy_is_loaded",
false};
// Variables mapping the exposed methods from the |policy::DevicePolicy|.
AsyncCopyVariable<std::string> var_release_channel_{"release_channel"};
AsyncCopyVariable<bool> var_release_channel_delegated_{
"release_channel_delegated"};
AsyncCopyVariable<std::string> var_release_lts_tag_{"release_lts_tag"};
AsyncCopyVariable<bool> var_update_disabled_{"update_disabled"};
AsyncCopyVariable<std::string> var_target_version_prefix_{
"target_version_prefix"};
AsyncCopyVariable<RollbackToTargetVersion> var_rollback_to_target_version_{
"rollback_to_target_version"};
AsyncCopyVariable<int> var_rollback_allowed_milestones_{
"rollback_allowed_milestones"};
AsyncCopyVariable<base::TimeDelta> var_scatter_factor_{"scatter_factor"};
AsyncCopyVariable<std::set<chromeos_update_engine::ConnectionType>>
var_allowed_connection_types_for_update_{
"allowed_connection_types_for_update"};
AsyncCopyVariable<bool> var_has_owner_{"owner"};
AsyncCopyVariable<bool> var_http_downloads_enabled_{"http_downloads_enabled"};
AsyncCopyVariable<bool> var_au_p2p_enabled_{"au_p2p_enabled"};
AsyncCopyVariable<bool> var_allow_kiosk_app_control_chrome_version_{
"allow_kiosk_app_control_chrome_version"};
AsyncCopyVariable<WeeklyTimeIntervalVector> var_disallowed_time_intervals_{
"update_time_restrictions"};
AsyncCopyVariable<std::string> var_auto_launched_kiosk_app_id_{
"auto_launched_kiosk_app_id"};
AsyncCopyVariable<ChannelDowngradeBehavior> var_channel_downgrade_behavior_{
"channel_downgrade_behavior"};
AsyncCopyVariable<base::Version> var_device_minimum_version_{
"device_minimum_version"};
AsyncCopyVariable<std::string> var_quick_fix_build_token_{
"quick_fix_build_token"};
DISALLOW_COPY_AND_ASSIGN(RealDevicePolicyProvider);
};
} // namespace chromeos_update_manager
#endif // UPDATE_ENGINE_UPDATE_MANAGER_REAL_DEVICE_POLICY_PROVIDER_H_