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
|
// 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/sync/glue/password_change_processor.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/password_manager/password_store.h"
#include "chrome/browser/password_manager/password_store_change.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/sync/glue/password_model_associator.h"
#include "chrome/browser/sync/profile_sync_service.h"
#include "chrome/browser/sync/protocol/password_specifics.pb.h"
#include "chrome/common/notification_service.h"
#include "chrome/common/notification_type.h"
#include "webkit/glue/password_form.h"
namespace browser_sync {
PasswordChangeProcessor::PasswordChangeProcessor(
PasswordModelAssociator* model_associator,
PasswordStore* password_store,
UnrecoverableErrorHandler* error_handler)
: ChangeProcessor(error_handler),
model_associator_(model_associator),
password_store_(password_store),
observing_(false),
expected_loop_(MessageLoop::current()) {
DCHECK(model_associator);
DCHECK(error_handler);
#if defined(OS_MACOSX)
DCHECK(!ChromeThread::CurrentlyOn(ChromeThread::UI));
#else
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::DB));
#endif
StartObserving();
}
PasswordChangeProcessor::~PasswordChangeProcessor() {
DCHECK(expected_loop_ == MessageLoop::current());
}
void PasswordChangeProcessor::Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
DCHECK(expected_loop_ == MessageLoop::current());
DCHECK(NotificationType::LOGINS_CHANGED == type);
if (!observing_)
return;
DCHECK(running());
sync_api::WriteTransaction trans(share_handle());
sync_api::ReadNode password_root(&trans);
if (!password_root.InitByTagLookup(kPasswordTag)) {
error_handler()->OnUnrecoverableError(FROM_HERE,
"Server did not create the top-level password node. "
"We might be running against an out-of-date server.");
return;
}
PasswordStoreChangeList* changes =
Details<PasswordStoreChangeList>(details).ptr();
for (PasswordStoreChangeList::iterator change = changes->begin();
change != changes->end(); ++change) {
std::string tag = PasswordModelAssociator::MakeTag(change->form());
switch (change->type()) {
case PasswordStoreChange::ADD: {
sync_api::WriteNode sync_node(&trans);
if (!sync_node.InitUniqueByCreation(syncable::PASSWORDS,
password_root, tag)) {
error_handler()->OnUnrecoverableError(FROM_HERE,
"Failed to create password sync node.");
return;
}
PasswordModelAssociator::WriteToSyncNode(change->form(), &sync_node);
model_associator_->Associate(&tag, sync_node.GetId());
break;
}
case PasswordStoreChange::UPDATE: {
sync_api::WriteNode sync_node(&trans);
int64 sync_id = model_associator_->GetSyncIdFromChromeId(tag);
if (sync_api::kInvalidId == sync_id) {
error_handler()->OnUnrecoverableError(FROM_HERE,
"Unexpected notification for: ");
return;
} else {
if (!sync_node.InitByIdLookup(sync_id)) {
error_handler()->OnUnrecoverableError(FROM_HERE,
"Password node lookup failed.");
return;
}
}
PasswordModelAssociator::WriteToSyncNode(change->form(), &sync_node);
break;
}
case PasswordStoreChange::REMOVE: {
sync_api::WriteNode sync_node(&trans);
int64 sync_id = model_associator_->GetSyncIdFromChromeId(tag);
if (sync_api::kInvalidId == sync_id) {
error_handler()->OnUnrecoverableError(FROM_HERE,
"Unexpected notification");
return;
} else {
if (!sync_node.InitByIdLookup(sync_id)) {
error_handler()->OnUnrecoverableError(FROM_HERE,
"Password node lookup failed.");
return;
}
model_associator_->Disassociate(sync_node.GetId());
sync_node.Remove();
}
break;
}
}
}
}
void PasswordChangeProcessor::ApplyChangesFromSyncModel(
const sync_api::BaseTransaction* trans,
const sync_api::SyncManager::ChangeRecord* changes,
int change_count) {
DCHECK(expected_loop_ == MessageLoop::current());
if (!running())
return;
StopObserving();
sync_api::ReadNode password_root(trans);
if (!password_root.InitByTagLookup(kPasswordTag)) {
error_handler()->OnUnrecoverableError(FROM_HERE,
"Password root node lookup failed.");
return;
}
PasswordModelAssociator::PasswordVector new_passwords;
PasswordModelAssociator::PasswordVector updated_passwords;
PasswordModelAssociator::PasswordVector deleted_passwords;
for (int i = 0; i < change_count; ++i) {
sync_api::ReadNode sync_node(trans);
if (!sync_node.InitByIdLookup(changes[i].id)) {
error_handler()->OnUnrecoverableError(FROM_HERE,
"Password node lookup failed.");
return;
}
// Check that the changed node is a child of the passwords folder.
DCHECK(password_root.GetId() == sync_node.GetParentId());
DCHECK(syncable::PASSWORDS == sync_node.GetModelType());
const sync_pb::PasswordSpecificsData& password_data =
sync_node.GetPasswordSpecifics();
webkit_glue::PasswordForm password;
PasswordModelAssociator::CopyPassword(password_data,
&password);
if (sync_api::SyncManager::ChangeRecord::ACTION_ADD == changes[i].action) {
new_passwords.push_back(password);
} else if (sync_api::SyncManager::ChangeRecord::ACTION_DELETE ==
changes[i].action) {
deleted_passwords.push_back(password);
} else {
DCHECK(sync_api::SyncManager::ChangeRecord::ACTION_UPDATE ==
changes[i].action);
updated_passwords.push_back(password);
}
}
if (!model_associator_->WriteToPasswordStore(&new_passwords,
&updated_passwords,
&deleted_passwords)) {
error_handler()->OnUnrecoverableError(FROM_HERE, "Error writing passwords");
return;
}
StartObserving();
}
void PasswordChangeProcessor::StartImpl(Profile* profile) {
DCHECK(expected_loop_ == MessageLoop::current());
observing_ = true;
}
void PasswordChangeProcessor::StopImpl() {
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
observing_ = false;
}
void PasswordChangeProcessor::StartObserving() {
DCHECK(expected_loop_ == MessageLoop::current());
notification_registrar_.Add(this,
NotificationType::LOGINS_CHANGED,
NotificationService::AllSources());
}
void PasswordChangeProcessor::StopObserving() {
DCHECK(expected_loop_ == MessageLoop::current());
notification_registrar_.Remove(this,
NotificationType::LOGINS_CHANGED,
NotificationService::AllSources());
}
} // namespace browser_sync
|