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
|
// Copyright (c) 2013 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/invalidation/ticl_invalidation_service.h"
#include "base/command_line.h"
#include "base/metrics/histogram.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/invalidation/invalidation_service_util.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/about_signin_internals.h"
#include "chrome/browser/signin/about_signin_internals_factory.h"
#include "chrome/browser/signin/profile_oauth2_token_service.h"
#include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
#include "chrome/browser/signin/signin_manager.h"
#include "content/public/browser/notification_service.h"
#include "google_apis/gaia/gaia_constants.h"
#include "sync/notifier/gcm_network_channel_delegate.h"
#include "sync/notifier/invalidator.h"
#include "sync/notifier/invalidator_state.h"
#include "sync/notifier/non_blocking_invalidator.h"
static const char* kOAuth2Scopes[] = {
GaiaConstants::kGoogleTalkOAuth2Scope
};
static const net::BackoffEntry::Policy kRequestAccessTokenBackoffPolicy = {
// Number of initial errors (in sequence) to ignore before applying
// exponential back-off rules.
0,
// Initial delay for exponential back-off in ms.
2000,
// Factor by which the waiting time will be multiplied.
2,
// Fuzzing percentage. ex: 10% will spread requests randomly
// between 90%-100% of the calculated time.
0.2, // 20%
// Maximum amount of time we are willing to delay our request in ms.
// TODO(pavely): crbug.com/246686 ProfileSyncService should retry
// RequestAccessToken on connection state change after backoff
1000 * 3600 * 4, // 4 hours.
// Time to keep an entry from being discarded even when it
// has no significant state, -1 to never discard.
-1,
// Don't use initial delay unless the last request was an error.
false,
};
namespace invalidation {
TiclInvalidationService::TiclInvalidationService(
SigninManagerBase* signin,
ProfileOAuth2TokenService* oauth2_token_service,
Profile* profile)
: OAuth2TokenService::Consumer("ticl_invalidation"),
profile_(profile),
signin_manager_(signin),
oauth2_token_service_(oauth2_token_service),
invalidator_registrar_(new syncer::InvalidatorRegistrar()),
request_access_token_backoff_(&kRequestAccessTokenBackoffPolicy) {
}
TiclInvalidationService::~TiclInvalidationService() {
DCHECK(CalledOnValidThread());
}
void TiclInvalidationService::Init() {
DCHECK(CalledOnValidThread());
invalidator_storage_.reset(new InvalidatorStorage(profile_->GetPrefs()));
if (invalidator_storage_->GetInvalidatorClientId().empty()) {
// This also clears any existing state. We can't reuse old invalidator
// state with the new ID anyway.
invalidator_storage_->SetInvalidatorClientId(GenerateInvalidatorClientId());
}
if (IsReadyToStart()) {
StartInvalidator(PUSH_CLIENT_CHANNEL);
}
notification_registrar_.Add(this,
chrome::NOTIFICATION_GOOGLE_SIGNED_OUT,
content::Source<Profile>(profile_));
oauth2_token_service_->AddObserver(this);
}
void TiclInvalidationService::InitForTest(syncer::Invalidator* invalidator) {
// Here we perform the equivalent of Init() and StartInvalidator(), but with
// some minor changes to account for the fact that we're injecting the
// invalidator.
invalidator_.reset(invalidator);
invalidator_->RegisterHandler(this);
invalidator_->UpdateRegisteredIds(
this,
invalidator_registrar_->GetAllRegisteredIds());
}
void TiclInvalidationService::RegisterInvalidationHandler(
syncer::InvalidationHandler* handler) {
DCHECK(CalledOnValidThread());
DVLOG(2) << "Registering an invalidation handler";
invalidator_registrar_->RegisterHandler(handler);
}
void TiclInvalidationService::UpdateRegisteredInvalidationIds(
syncer::InvalidationHandler* handler,
const syncer::ObjectIdSet& ids) {
DCHECK(CalledOnValidThread());
DVLOG(2) << "Registering ids: " << ids.size();
invalidator_registrar_->UpdateRegisteredIds(handler, ids);
if (invalidator_) {
invalidator_->UpdateRegisteredIds(
this,
invalidator_registrar_->GetAllRegisteredIds());
}
}
void TiclInvalidationService::UnregisterInvalidationHandler(
syncer::InvalidationHandler* handler) {
DCHECK(CalledOnValidThread());
DVLOG(2) << "Unregistering";
invalidator_registrar_->UnregisterHandler(handler);
if (invalidator_) {
invalidator_->UpdateRegisteredIds(
this,
invalidator_registrar_->GetAllRegisteredIds());
}
}
syncer::InvalidatorState TiclInvalidationService::GetInvalidatorState() const {
DCHECK(CalledOnValidThread());
if (invalidator_) {
DVLOG(2) << "GetInvalidatorState returning "
<< invalidator_->GetInvalidatorState();
return invalidator_->GetInvalidatorState();
} else {
DVLOG(2) << "Invalidator currently stopped";
return syncer::TRANSIENT_INVALIDATION_ERROR;
}
}
std::string TiclInvalidationService::GetInvalidatorClientId() const {
DCHECK(CalledOnValidThread());
return invalidator_storage_->GetInvalidatorClientId();
}
void TiclInvalidationService::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
DCHECK(CalledOnValidThread());
DCHECK_EQ(type, chrome::NOTIFICATION_GOOGLE_SIGNED_OUT);
Logout();
}
void TiclInvalidationService::RequestAccessToken() {
// Only one active request at a time.
if (access_token_request_ != NULL)
return;
request_access_token_retry_timer_.Stop();
OAuth2TokenService::ScopeSet oauth2_scopes;
for (size_t i = 0; i < arraysize(kOAuth2Scopes); i++)
oauth2_scopes.insert(kOAuth2Scopes[i]);
// Invalidate previous token, otherwise token service will return the same
// token again.
const std::string& account_id = oauth2_token_service_->GetPrimaryAccountId();
oauth2_token_service_->InvalidateToken(account_id,
oauth2_scopes,
access_token_);
access_token_.clear();
access_token_request_ = oauth2_token_service_->StartRequest(account_id,
oauth2_scopes,
this);
}
void TiclInvalidationService::OnGetTokenSuccess(
const OAuth2TokenService::Request* request,
const std::string& access_token,
const base::Time& expiration_time) {
DCHECK_EQ(access_token_request_, request);
access_token_request_.reset();
// Reset backoff time after successful response.
request_access_token_backoff_.Reset();
access_token_ = access_token;
if (!IsStarted() && IsReadyToStart()) {
StartInvalidator(PUSH_CLIENT_CHANNEL);
} else {
UpdateInvalidatorCredentials();
}
}
void TiclInvalidationService::OnGetTokenFailure(
const OAuth2TokenService::Request* request,
const GoogleServiceAuthError& error) {
DCHECK_EQ(access_token_request_, request);
DCHECK_NE(error.state(), GoogleServiceAuthError::NONE);
access_token_request_.reset();
switch (error.state()) {
case GoogleServiceAuthError::CONNECTION_FAILED:
case GoogleServiceAuthError::SERVICE_UNAVAILABLE: {
// Transient error. Retry after some time.
request_access_token_backoff_.InformOfRequest(false);
request_access_token_retry_timer_.Start(
FROM_HERE,
request_access_token_backoff_.GetTimeUntilRelease(),
base::Bind(&TiclInvalidationService::RequestAccessToken,
base::Unretained(this)));
break;
}
case GoogleServiceAuthError::SERVICE_ERROR:
case GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS: {
invalidator_registrar_->UpdateInvalidatorState(
syncer::INVALIDATION_CREDENTIALS_REJECTED);
break;
}
default: {
// We have no way to notify the user of this. Do nothing.
}
}
}
void TiclInvalidationService::OnRefreshTokenAvailable(
const std::string& account_id) {
if (oauth2_token_service_->GetPrimaryAccountId() == account_id) {
if (!IsStarted() && IsReadyToStart()) {
StartInvalidator(PUSH_CLIENT_CHANNEL);
}
}
}
void TiclInvalidationService::OnRefreshTokenRevoked(
const std::string& account_id) {
if (oauth2_token_service_->GetPrimaryAccountId() == account_id) {
access_token_.clear();
if (IsStarted()) {
UpdateInvalidatorCredentials();
}
}
}
void TiclInvalidationService::OnInvalidatorStateChange(
syncer::InvalidatorState state) {
if (state == syncer::INVALIDATION_CREDENTIALS_REJECTED) {
// This may be due to normal OAuth access token expiration. If so, we must
// fetch a new one using our refresh token. Resetting the invalidator's
// access token will not reset the invalidator's exponential backoff, so
// it's safe to try to update the token every time we receive this signal.
//
// We won't be receiving any invalidations while the refresh is in progress,
// we set our state to TRANSIENT_INVALIDATION_ERROR. If the credentials
// really are invalid, the refresh request should fail and
// OnGetTokenFailure() will put us into a INVALIDATION_CREDENTIALS_REJECTED
// state.
invalidator_registrar_->UpdateInvalidatorState(
syncer::TRANSIENT_INVALIDATION_ERROR);
RequestAccessToken();
} else {
invalidator_registrar_->UpdateInvalidatorState(state);
}
}
void TiclInvalidationService::OnIncomingInvalidation(
const syncer::ObjectIdInvalidationMap& invalidation_map) {
invalidator_registrar_->DispatchInvalidationsToHandlers(invalidation_map);
}
void TiclInvalidationService::Shutdown() {
DCHECK(CalledOnValidThread());
oauth2_token_service_->RemoveObserver(this);
if (IsStarted()) {
StopInvalidator();
}
invalidator_storage_.reset();
invalidator_registrar_.reset();
}
bool TiclInvalidationService::IsReadyToStart() {
if (profile_->IsManaged()) {
DVLOG(2) << "Not starting TiclInvalidationService: User is managed.";
return false;
}
if (signin_manager_->GetAuthenticatedUsername().empty()) {
DVLOG(2) << "Not starting TiclInvalidationService: User is not signed in.";
return false;
}
if (!oauth2_token_service_) {
DVLOG(2)
<< "Not starting TiclInvalidationService: "
<< "OAuth2TokenService unavailable.";
return false;
}
if (!oauth2_token_service_->RefreshTokenIsAvailable(
oauth2_token_service_->GetPrimaryAccountId())) {
DVLOG(2)
<< "Not starting TiclInvalidationServce: Waiting for refresh token.";
return false;
}
return true;
}
bool TiclInvalidationService::IsStarted() {
return invalidator_.get() != NULL;
}
void TiclInvalidationService::StartInvalidator(
InvalidationNetworkChannel network_channel) {
DCHECK(CalledOnValidThread());
DCHECK(!invalidator_);
DCHECK(invalidator_storage_);
DCHECK(!invalidator_storage_->GetInvalidatorClientId().empty());
if (access_token_.empty()) {
DVLOG(1)
<< "TiclInvalidationService: "
<< "Deferring start until we have an access token.";
RequestAccessToken();
return;
}
syncer::NetworkChannelCreator network_channel_creator;
switch (network_channel) {
case PUSH_CLIENT_CHANNEL: {
notifier::NotifierOptions options =
ParseNotifierOptions(*CommandLine::ForCurrentProcess());
options.request_context_getter = profile_->GetRequestContext();
options.auth_mechanism = "X-OAUTH2";
DCHECK_EQ(notifier::NOTIFICATION_SERVER, options.notification_method);
network_channel_creator =
syncer::NonBlockingInvalidator::MakePushClientChannelCreator(options);
break;
}
case GCM_NETWORK_CHANNEL: {
// TODO(pavely): Pass NULL pointer for now. When GCMNetworkChannelDelegate
// is implemented it will be instantiated and passed here.
scoped_ptr<syncer::GCMNetworkChannelDelegate> delegate;
network_channel_creator =
syncer::NonBlockingInvalidator::MakeGCMNetworkChannelCreator(
profile_->GetRequestContext(),
delegate.Pass());
break;
}
default: {
NOTREACHED();
return;
}
}
invalidator_.reset(new syncer::NonBlockingInvalidator(
network_channel_creator,
invalidator_storage_->GetInvalidatorClientId(),
invalidator_storage_->GetSavedInvalidations(),
invalidator_storage_->GetBootstrapData(),
syncer::WeakHandle<syncer::InvalidationStateTracker>(
invalidator_storage_->AsWeakPtr()),
content::GetUserAgent(GURL()),
profile_->GetRequestContext()));
UpdateInvalidatorCredentials();
invalidator_->RegisterHandler(this);
invalidator_->UpdateRegisteredIds(
this,
invalidator_registrar_->GetAllRegisteredIds());
}
void TiclInvalidationService::UpdateInvalidatorCredentials() {
std::string email = signin_manager_->GetAuthenticatedUsername();
DCHECK(!email.empty()) << "Expected user to be signed in.";
DVLOG(2) << "UpdateCredentials: " << email;
invalidator_->UpdateCredentials(email, access_token_);
}
void TiclInvalidationService::StopInvalidator() {
DCHECK(invalidator_);
invalidator_->UnregisterHandler(this);
invalidator_.reset();
}
void TiclInvalidationService::Logout() {
access_token_request_.reset();
request_access_token_retry_timer_.Stop();
if (IsStarted()) {
StopInvalidator();
}
// This service always expects to have a valid invalidator storage.
// So we must not only clear the old one, but also start a new one.
invalidator_storage_->Clear();
invalidator_storage_.reset(new InvalidatorStorage(profile_->GetPrefs()));
invalidator_storage_->SetInvalidatorClientId(GenerateInvalidatorClientId());
}
} // namespace invalidation
|