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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
|
// Copyright (c) 2011 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.
#include "chrome/browser/policy/cloud_policy_cache.h"
#include <limits>
#include "base/file_util.h"
#include "base/logging.h"
#include "base/task.h"
#include "base/values.h"
#include "chrome/browser/browser_thread.h"
#include "chrome/browser/policy/proto/cloud_policy.pb.h"
#include "chrome/browser/policy/proto/device_management_backend.pb.h"
#include "chrome/browser/policy/proto/device_management_constants.h"
#include "chrome/browser/policy/proto/device_management_local.pb.h"
using google::protobuf::RepeatedField;
using google::protobuf::RepeatedPtrField;
// This CloudPolicyCache currently supports two protocols for the interaction
// with DMServer: the old "DevicePolicy" format, which is being used in the
// CrOS Pilot Program and will be deprecated afterwards, and the new
// "CloudPolicy" format, which will be used exclusively after the public launch
// of ChromeOS.
namespace policy {
// Decodes a CloudPolicySettings object into two maps with mandatory and
// recommended settings, respectively. The implementation is generated code
// in policy/cloud_policy_generated.cc.
void DecodePolicy(const em::CloudPolicySettings& policy,
PolicyMap* mandatory, PolicyMap* recommended);
// Saves policy information to a file.
class PersistPolicyTask : public Task {
public:
PersistPolicyTask(const FilePath& path,
const em::CloudPolicyResponse* cloud_policy_response,
const em::DevicePolicyResponse* device_policy_response,
const bool is_unmanaged)
: path_(path),
cloud_policy_response_(cloud_policy_response),
device_policy_response_(device_policy_response),
is_unmanaged_(is_unmanaged) {}
private:
// Task override.
virtual void Run();
const FilePath path_;
scoped_ptr<const em::CloudPolicyResponse> cloud_policy_response_;
scoped_ptr<const em::DevicePolicyResponse> device_policy_response_;
const bool is_unmanaged_;
};
void PersistPolicyTask::Run() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
std::string data;
em::CachedCloudPolicyResponse cached_policy;
if (cloud_policy_response_.get()) {
cached_policy.mutable_cloud_policy()->CopyFrom(*cloud_policy_response_);
} else if (device_policy_response_.get()) {
cached_policy.mutable_device_policy()->CopyFrom(*device_policy_response_);
cached_policy.set_timestamp(base::Time::NowFromSystemTime().ToTimeT());
}
if (is_unmanaged_) {
cached_policy.set_unmanaged(true);
cached_policy.set_timestamp(base::Time::NowFromSystemTime().ToTimeT());
}
if (!cached_policy.SerializeToString(&data)) {
LOG(WARNING) << "Failed to serialize policy data";
return;
}
int size = data.size();
if (file_util::WriteFile(path_, data.c_str(), size) != size) {
LOG(WARNING) << "Failed to write " << path_.value();
return;
}
}
CloudPolicyCache::CloudPolicyCache(
const FilePath& backing_file_path)
: backing_file_path_(backing_file_path),
device_policy_(new DictionaryValue),
fresh_policy_(false),
is_unmanaged_(false),
has_device_policy_(false) {
}
CloudPolicyCache::~CloudPolicyCache() {}
void CloudPolicyCache::LoadPolicyFromFile() {
// TODO(jkummerow): This method is doing file IO during browser startup. In
// the long run it would be better to delay this until the FILE thread exists.
if (!file_util::PathExists(backing_file_path_) || fresh_policy_) {
return;
}
// Read the protobuf from the file.
std::string data;
if (!file_util::ReadFileToString(backing_file_path_, &data)) {
LOG(WARNING) << "Failed to read policy data from "
<< backing_file_path_.value();
return;
}
em::CachedCloudPolicyResponse cached_response;
if (!cached_response.ParseFromArray(data.c_str(), data.size())) {
LOG(WARNING) << "Failed to parse policy data read from "
<< backing_file_path_.value();
return;
}
base::Time timestamp;
PolicyMap mandatory_policy;
PolicyMap recommended_policy;
is_unmanaged_ = cached_response.unmanaged();
if (is_unmanaged_ || cached_response.has_device_policy())
timestamp = base::Time::FromTimeT(cached_response.timestamp());
if (cached_response.has_cloud_policy()) {
DCHECK(!is_unmanaged_);
bool ok = DecodePolicyResponse(cached_response.cloud_policy(),
&mandatory_policy,
&recommended_policy,
×tamp);
if (!ok) {
LOG(WARNING) << "Decoding policy data failed.";
return;
}
}
if (timestamp > base::Time::NowFromSystemTime()) {
LOG(WARNING) << "Rejected policy data from " << backing_file_path_.value()
<< ", file is from the future.";
return;
}
// Swap in the new policy information.
if (is_unmanaged_) {
base::AutoLock lock(lock_);
last_policy_refresh_time_ = timestamp;
return;
} else if (cached_response.has_cloud_policy()) {
if (!fresh_policy_) {
base::AutoLock lock(lock_);
// The use of |Swap()| here makes sure that the old value in
// |mandatory_policy_| is deleted when |mandatory_policy| goes out of
// scope. (The same applies to |SetPolicy()| below.)
mandatory_policy_.Swap(&mandatory_policy);
recommended_policy_.Swap(&recommended_policy);
last_policy_refresh_time_ = timestamp;
has_device_policy_ = false;
}
} else if (cached_response.has_device_policy()) {
scoped_ptr<DictionaryValue> value(
DecodeDevicePolicy(cached_response.device_policy()));
if (!fresh_policy_) {
base::AutoLock lock(lock_);
device_policy_.reset(value.release());
last_policy_refresh_time_ = timestamp;
has_device_policy_ = true;
}
}
}
bool CloudPolicyCache::SetPolicy(const em::CloudPolicyResponse& policy) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
is_unmanaged_ = false;
base::Time timestamp;
PolicyMap mandatory_policy;
PolicyMap recommended_policy;
bool ok = DecodePolicyResponse(policy, &mandatory_policy, &recommended_policy,
×tamp);
if (!ok) {
// TODO(jkummerow): Signal error to PolicyProvider.
return false;
}
const bool new_policy_differs =
!mandatory_policy.Equals(mandatory_policy_) ||
!recommended_policy.Equals(recommended_policy_);
{
base::AutoLock lock(lock_);
mandatory_policy_.Swap(&mandatory_policy);
recommended_policy_.Swap(&recommended_policy);
fresh_policy_ = true;
last_policy_refresh_time_ = timestamp;
has_device_policy_ = false;
}
if (timestamp > base::Time::NowFromSystemTime() +
base::TimeDelta::FromMinutes(1)) {
LOG(WARNING) << "Server returned policy with timestamp from the future, "
"not persisting to disk.";
} else {
em::CloudPolicyResponse* policy_copy = new em::CloudPolicyResponse;
policy_copy->CopyFrom(policy);
BrowserThread::PostTask(
BrowserThread::FILE,
FROM_HERE,
new PersistPolicyTask(backing_file_path_, policy_copy, NULL, false));
}
return new_policy_differs;
}
bool CloudPolicyCache::SetDevicePolicy(const em::DevicePolicyResponse& policy) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
is_unmanaged_ = false;
DictionaryValue* value = DecodeDevicePolicy(policy);
const bool new_policy_differs = !(value->Equals(device_policy_.get()));
base::Time now(base::Time::NowFromSystemTime());
{
base::AutoLock lock(lock_);
device_policy_.reset(value);
fresh_policy_ = true;
last_policy_refresh_time_ = now;
has_device_policy_ = true;
}
em::DevicePolicyResponse* policy_copy = new em::DevicePolicyResponse;
policy_copy->CopyFrom(policy);
BrowserThread::PostTask(
BrowserThread::FILE,
FROM_HERE,
new PersistPolicyTask(backing_file_path_, NULL, policy_copy, false));
return new_policy_differs;
}
DictionaryValue* CloudPolicyCache::GetDevicePolicy() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
base::AutoLock lock(lock_);
return device_policy_->DeepCopy();
}
const PolicyMap* CloudPolicyCache::GetMandatoryPolicy() const {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
return &mandatory_policy_;
}
const PolicyMap* CloudPolicyCache::GetRecommendedPolicy() const {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
return &recommended_policy_;
}
void CloudPolicyCache::SetUnmanaged() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
is_unmanaged_ = true;
{
base::AutoLock lock(lock_);
mandatory_policy_.Clear();
recommended_policy_.Clear();
device_policy_.reset(new DictionaryValue);
last_policy_refresh_time_ = base::Time::NowFromSystemTime();
}
BrowserThread::PostTask(
BrowserThread::FILE,
FROM_HERE,
new PersistPolicyTask(backing_file_path_, NULL, NULL, true));
}
// static
bool CloudPolicyCache::DecodePolicyResponse(
const em::CloudPolicyResponse& policy_response,
PolicyMap* mandatory,
PolicyMap* recommended,
base::Time* timestamp) {
std::string data = policy_response.signed_response();
if (!VerifySignature(policy_response.signature(), data,
policy_response.certificate_chain())) {
LOG(WARNING) << "Failed to verify signature.";
return false;
}
em::SignedCloudPolicyResponse response;
if (!response.ParseFromArray(data.c_str(), data.size())) {
LOG(WARNING) << "Failed to parse SignedCloudPolicyResponse protobuf.";
return false;
}
// TODO(jkummerow): Verify response.device_token(). Needs final specification
// which token we're actually sending / expecting to get back.
// TODO(jkummerow): Store response.device_name(), if we decide to transfer
// it from the server to the client.
DCHECK(timestamp);
*timestamp = base::Time::FromTimeT(response.timestamp());
DecodePolicy(response.settings(), mandatory, recommended);
return true;
}
// static
bool CloudPolicyCache::VerifySignature(
const std::string& signature,
const std::string& data,
const RepeatedPtrField<std::string>& certificate_chain) {
// TODO(jkummerow): Implement this. Non-trivial because we want to do it
// for all platforms -> it's enough work to deserve its own CL.
// Don't forget to also verify the hostname of the server against the cert.
return true;
}
// static
Value* CloudPolicyCache::DecodeIntegerValue(google::protobuf::int64 value) {
if (value < std::numeric_limits<int>::min() ||
value > std::numeric_limits<int>::max()) {
LOG(WARNING) << "Integer value " << value
<< " out of numeric limits, ignoring.";
return NULL;
}
return Value::CreateIntegerValue(static_cast<int>(value));
}
// static
Value* CloudPolicyCache::DecodeValue(const em::GenericValue& value) {
if (!value.has_value_type())
return NULL;
switch (value.value_type()) {
case em::GenericValue::VALUE_TYPE_BOOL:
if (value.has_bool_value())
return Value::CreateBooleanValue(value.bool_value());
return NULL;
case em::GenericValue::VALUE_TYPE_INT64:
if (value.has_int64_value())
return DecodeIntegerValue(value.int64_value());
return NULL;
case em::GenericValue::VALUE_TYPE_STRING:
if (value.has_string_value())
return Value::CreateStringValue(value.string_value());
return NULL;
case em::GenericValue::VALUE_TYPE_DOUBLE:
if (value.has_double_value())
return Value::CreateDoubleValue(value.double_value());
return NULL;
case em::GenericValue::VALUE_TYPE_BYTES:
if (value.has_bytes_value()) {
std::string bytes = value.bytes_value();
return BinaryValue::CreateWithCopiedBuffer(bytes.c_str(), bytes.size());
}
return NULL;
case em::GenericValue::VALUE_TYPE_BOOL_ARRAY: {
ListValue* list = new ListValue;
RepeatedField<bool>::const_iterator i;
for (i = value.bool_array().begin(); i != value.bool_array().end(); ++i)
list->Append(Value::CreateBooleanValue(*i));
return list;
}
case em::GenericValue::VALUE_TYPE_INT64_ARRAY: {
ListValue* list = new ListValue;
RepeatedField<google::protobuf::int64>::const_iterator i;
for (i = value.int64_array().begin();
i != value.int64_array().end(); ++i) {
Value* int_value = DecodeIntegerValue(*i);
if (int_value)
list->Append(int_value);
}
return list;
}
case em::GenericValue::VALUE_TYPE_STRING_ARRAY: {
ListValue* list = new ListValue;
RepeatedPtrField<std::string>::const_iterator i;
for (i = value.string_array().begin();
i != value.string_array().end(); ++i)
list->Append(Value::CreateStringValue(*i));
return list;
}
case em::GenericValue::VALUE_TYPE_DOUBLE_ARRAY: {
ListValue* list = new ListValue;
RepeatedField<double>::const_iterator i;
for (i = value.double_array().begin();
i != value.double_array().end(); ++i)
list->Append(Value::CreateDoubleValue(*i));
return list;
}
default:
NOTREACHED() << "Unhandled value type";
}
return NULL;
}
// static
DictionaryValue* CloudPolicyCache::DecodeDevicePolicy(
const em::DevicePolicyResponse& policy) {
DictionaryValue* result = new DictionaryValue;
RepeatedPtrField<em::DevicePolicySetting>::const_iterator setting;
for (setting = policy.setting().begin();
setting != policy.setting().end();
++setting) {
// Wrong policy key? Skip.
if (setting->policy_key().compare(kChromeDevicePolicySettingKey) != 0)
continue;
// No policy value? Skip.
if (!setting->has_policy_value())
continue;
// Iterate through all the name-value pairs wrapped in |setting|.
const em::GenericSetting& policy_value(setting->policy_value());
RepeatedPtrField<em::GenericNamedValue>::const_iterator named_value;
for (named_value = policy_value.named_value().begin();
named_value != policy_value.named_value().end();
++named_value) {
if (named_value->has_value()) {
Value* decoded_value =
CloudPolicyCache::DecodeValue(named_value->value());
if (decoded_value)
result->Set(named_value->name(), decoded_value);
}
}
}
return result;
}
} // namespace policy
|