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
|
// Copyright (c) 2010 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/file_based_policy_provider.h"
#include <set>
#include "base/logging.h"
#include "base/message_loop.h"
#include "base/task.h"
#include "base/utf_string_conversions.h"
#include "base/values.h"
#include "chrome/browser/browser_thread.h"
#include "chrome/common/json_value_serializer.h"
namespace policy {
// Amount of time we wait for the files on disk to settle before trying to load
// it. This alleviates the problem of reading partially written files and allows
// to batch quasi-simultaneous changes.
const int kSettleIntervalSeconds = 5;
// The time interval for rechecking policy. This is our fallback in case the
// file path watch fails or doesn't report a change.
const int kReloadIntervalMinutes = 15;
// FileBasedPolicyProvider implementation:
FileBasedPolicyProvider::Delegate::~Delegate() {
}
FileBasedPolicyProvider::Delegate::Delegate(const FilePath& config_file_path)
: config_file_path_(config_file_path) {
}
FileBasedPolicyProvider::FileBasedPolicyProvider(
const ConfigurationPolicyProvider::PolicyDefinitionList* policy_list,
FileBasedPolicyProvider::Delegate* delegate)
: ConfigurationPolicyProvider(policy_list) {
loader_ = new FileBasedPolicyLoader(AsWeakPtr(),
delegate,
kSettleIntervalSeconds,
kReloadIntervalMinutes);
watcher_ = new FileBasedPolicyWatcher;
watcher_->Init(loader_.get());
}
FileBasedPolicyProvider::~FileBasedPolicyProvider() {
loader_->Stop();
}
bool FileBasedPolicyProvider::Provide(
ConfigurationPolicyStoreInterface* store) {
scoped_ptr<DictionaryValue> policy(loader_->GetPolicy());
DCHECK(policy.get());
DecodePolicyValueTree(policy.get(), store);
return true;
}
// FileBasedPolicyLoader implementation:
FileBasedPolicyLoader::FileBasedPolicyLoader(
base::WeakPtr<ConfigurationPolicyProvider> provider,
FileBasedPolicyProvider::Delegate* delegate,
int settle_interval_seconds,
int reload_interval_minutes)
: delegate_(delegate),
provider_(provider),
origin_loop_(MessageLoop::current()),
reload_task_(NULL),
settle_interval_seconds_(settle_interval_seconds),
reload_interval_minutes_(reload_interval_minutes) {
// Force an initial load, so GetPolicy() works.
policy_.reset(delegate_->Load());
DCHECK(policy_.get());
}
void FileBasedPolicyLoader::Stop() {
if (!BrowserThread::CurrentlyOn(BrowserThread::FILE)) {
BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
NewRunnableMethod(this, &FileBasedPolicyLoader::Stop));
return;
}
if (reload_task_) {
reload_task_->Cancel();
reload_task_ = NULL;
}
}
void FileBasedPolicyLoader::Reload() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
// Check the directory time in order to see whether a reload is required.
base::TimeDelta delay;
base::Time now = base::Time::Now();
if (!IsSafeToReloadPolicy(now, &delay)) {
ScheduleReloadTask(delay);
return;
}
// Load the policy definitions.
scoped_ptr<DictionaryValue> new_policy(delegate_->Load());
// Check again in case the directory has changed while reading it.
if (!IsSafeToReloadPolicy(now, &delay)) {
ScheduleReloadTask(delay);
return;
}
// Replace policy definition.
bool changed = false;
{
AutoLock lock(lock_);
changed = !policy_->Equals(new_policy.get());
policy_.reset(new_policy.release());
}
// There's a change, report it!
if (changed) {
VLOG(0) << "Policy reload from " << config_file_path().value()
<< " succeeded.";
origin_loop_->PostTask(FROM_HERE,
NewRunnableMethod(this, &FileBasedPolicyLoader::NotifyPolicyChanged));
}
// As a safeguard in case the file watcher fails, schedule a reload task
// that'll make us recheck after a reasonable interval.
ScheduleReloadTask(base::TimeDelta::FromMinutes(reload_interval_minutes_));
}
DictionaryValue* FileBasedPolicyLoader::GetPolicy() {
AutoLock lock(lock_);
return static_cast<DictionaryValue*>(policy_->DeepCopy());
}
void FileBasedPolicyLoader::OnFilePathChanged(const FilePath& path) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
Reload();
}
void FileBasedPolicyLoader::OnError() {
LOG(ERROR) << "FilePathWatcher on " << config_file_path().value()
<< " failed.";
}
FileBasedPolicyLoader::~FileBasedPolicyLoader() {
}
bool FileBasedPolicyLoader::IsSafeToReloadPolicy(const base::Time& now,
base::TimeDelta* delay) {
DCHECK(delay);
// A null modification time indicates there's no data.
base::Time last_modification(delegate_->GetLastModification());
if (last_modification.is_null())
return true;
// If there was a change since the last recorded modification, wait some more.
base::TimeDelta settleInterval(
base::TimeDelta::FromSeconds(settle_interval_seconds_));
if (last_modification != last_modification_file_) {
last_modification_file_ = last_modification;
last_modification_clock_ = now;
*delay = settleInterval;
return false;
}
// Check whether the settle interval has elapsed.
base::TimeDelta age = now - last_modification_clock_;
if (age < settleInterval) {
*delay = settleInterval - age;
return false;
}
return true;
}
void FileBasedPolicyLoader::ScheduleReloadTask(const base::TimeDelta& delay) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
if (reload_task_)
reload_task_->Cancel();
reload_task_ =
NewRunnableMethod(this, &FileBasedPolicyLoader::ReloadFromTask);
BrowserThread::PostDelayedTask(BrowserThread::FILE, FROM_HERE, reload_task_,
delay.InMilliseconds());
}
void FileBasedPolicyLoader::NotifyPolicyChanged() {
DCHECK_EQ(origin_loop_, MessageLoop::current());
if (provider_)
provider_->NotifyStoreOfPolicyChange();
}
void FileBasedPolicyLoader::ReloadFromTask() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
// Drop the reference to the reload task, since the task might be the only
// referer that keeps us alive, so we should not Cancel() it.
reload_task_ = NULL;
Reload();
}
// FileBasedPolicyWatcher implementation:
FileBasedPolicyWatcher::FileBasedPolicyWatcher() {
}
void FileBasedPolicyWatcher::Init(FileBasedPolicyLoader* loader) {
// Initialization can happen early when the file thread is not yet available.
// So post a task to ourselves on the UI thread which will run after threading
// is up and schedule watch initialization on the file thread.
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
NewRunnableMethod(this,
&FileBasedPolicyWatcher::InitWatcher,
scoped_refptr<FileBasedPolicyLoader>(loader)));
}
FileBasedPolicyWatcher::~FileBasedPolicyWatcher() {
}
void FileBasedPolicyWatcher::InitWatcher(
const scoped_refptr<FileBasedPolicyLoader>& loader) {
if (!BrowserThread::CurrentlyOn(BrowserThread::FILE)) {
BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
NewRunnableMethod(this, &FileBasedPolicyWatcher::InitWatcher, loader));
return;
}
if (!loader->config_file_path().empty() &&
!watcher_.Watch(loader->config_file_path(), loader.get()))
loader->OnError();
// There might have been changes to the directory in the time between
// construction of the loader and initialization of the watcher. Call reload
// to detect if that is the case.
loader->Reload();
}
} // namespace policy
|