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
|
// Copyright (c) 2012 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/webdata/web_database.h"
#include <algorithm>
#include "chrome/browser/webdata/autofill_table.h"
#include "chrome/browser/webdata/keyword_table.h"
#include "chrome/browser/webdata/logins_table.h"
#include "chrome/browser/webdata/token_service_table.h"
#include "chrome/browser/webdata/web_apps_table.h"
#include "chrome/browser/webdata/web_intents_table.h"
#include "content/public/browser/notification_service.h"
#include "sql/statement.h"
#include "sql/transaction.h"
// Current version number. Note: when changing the current version number,
// corresponding changes must happen in the unit tests, and new migration test
// added. See |WebDatabaseMigrationTest::kCurrentTestedVersionNumber|.
// static
const int WebDatabase::kCurrentVersionNumber = 49;
namespace {
const int kCompatibleVersionNumber = 48;
// Change the version number and possibly the compatibility version of
// |meta_table_|.
void ChangeVersion(sql::MetaTable* meta_table,
int version_num,
bool update_compatible_version_num) {
meta_table->SetVersionNumber(version_num);
if (update_compatible_version_num) {
meta_table->SetCompatibleVersionNumber(
std::min(version_num, kCompatibleVersionNumber));
}
}
// Outputs the failed version number as a warning and always returns
// |sql::INIT_FAILURE|.
sql::InitStatus FailedMigrationTo(int version_num) {
LOG(WARNING) << "Unable to update web database to version "
<< version_num << ".";
NOTREACHED();
return sql::INIT_FAILURE;
}
} // namespace
WebDatabase::WebDatabase() {}
WebDatabase::~WebDatabase() {}
void WebDatabase::BeginTransaction() {
db_.BeginTransaction();
}
void WebDatabase::CommitTransaction() {
db_.CommitTransaction();
}
AutofillTable* WebDatabase::GetAutofillTable() {
return autofill_table_.get();
}
KeywordTable* WebDatabase::GetKeywordTable() {
return keyword_table_.get();
}
LoginsTable* WebDatabase::GetLoginsTable() {
return logins_table_.get();
}
TokenServiceTable* WebDatabase::GetTokenServiceTable() {
return token_service_table_.get();
}
WebAppsTable* WebDatabase::GetWebAppsTable() {
return web_apps_table_.get();
}
WebIntentsTable* WebDatabase::GetWebIntentsTable() {
return web_intents_table_.get();
}
sql::Connection* WebDatabase::GetSQLConnection() {
return &db_;
}
sql::InitStatus WebDatabase::Init(const base::FilePath& db_name,
const std::string& app_locale) {
// When running in unit tests, there is already a NotificationService object.
// Since only one can exist at a time per thread, check first.
if (!content::NotificationService::current())
notification_service_.reset(content::NotificationService::Create());
db_.set_error_histogram_name("Sqlite.Web.Error");
// We don't store that much data in the tables so use a small page size.
// This provides a large benefit for empty tables (which is very likely with
// the tables we create).
db_.set_page_size(2048);
// We shouldn't have much data and what access we currently have is quite
// infrequent. So we go with a small cache size.
db_.set_cache_size(32);
// Run the database in exclusive mode. Nobody else should be accessing the
// database while we're running, and this will give somewhat improved perf.
db_.set_exclusive_locking();
if (!db_.Open(db_name))
return sql::INIT_FAILURE;
// Initialize various tables
sql::Transaction transaction(&db_);
if (!transaction.Begin())
return sql::INIT_FAILURE;
// Version check.
if (!meta_table_.Init(&db_, kCurrentVersionNumber, kCompatibleVersionNumber))
return sql::INIT_FAILURE;
if (meta_table_.GetCompatibleVersionNumber() > kCurrentVersionNumber) {
LOG(WARNING) << "Web database is too new.";
return sql::INIT_TOO_NEW;
}
// Create the tables.
autofill_table_.reset(new AutofillTable(&db_, &meta_table_));
keyword_table_.reset(new KeywordTable(&db_, &meta_table_));
// TODO(mdm): We only really need the LoginsTable on Windows for IE7 password
// access, but for now, we still create it on all platforms since it deletes
// the old logins table. We can remove this after a while, e.g. in M22 or so.
logins_table_.reset(new LoginsTable(&db_, &meta_table_));
token_service_table_.reset(new TokenServiceTable(&db_, &meta_table_));
web_apps_table_.reset(new WebAppsTable(&db_, &meta_table_));
web_intents_table_.reset(new WebIntentsTable(&db_, &meta_table_));
// Initialize the tables.
if (!keyword_table_->Init() || !autofill_table_->Init() ||
!logins_table_->Init() || !web_apps_table_->Init() ||
!token_service_table_->Init() || !web_intents_table_->Init() ) {
LOG(WARNING) << "Unable to initialize the web database.";
return sql::INIT_FAILURE;
}
// If the file on disk is an older database version, bring it up to date.
// If the migration fails we return an error to caller and do not commit
// the migration.
sql::InitStatus migration_status = MigrateOldVersionsAsNeeded(app_locale);
if (migration_status != sql::INIT_OK)
return migration_status;
return transaction.Commit() ? sql::INIT_OK : sql::INIT_FAILURE;
}
sql::InitStatus WebDatabase::MigrateOldVersionsAsNeeded(
const std::string& app_locale) {
// Some malware used to lower the version number, causing migration to
// fail. Ensure the version number is at least as high as the compatible
// version number.
int current_version = std::max(meta_table_.GetVersionNumber(),
meta_table_.GetCompatibleVersionNumber());
if (current_version > meta_table_.GetVersionNumber())
ChangeVersion(&meta_table_, current_version, false);
// Migrate if necessary.
switch (current_version) {
// Versions 1 - 19 are unhandled. Version numbers greater than
// kCurrentVersionNumber should have already been weeded out by the caller.
default:
// When the version is too old, we return failure error code. The schema
// is too out of date to migrate.
// There should not be a released product that makes a database too old to
// migrate. If we do encounter such a legacy database, we will need a
// better solution to handle it (i.e., pop up a dialog to tell the user,
// erase all their prefs and start over, etc.).
LOG(WARNING) << "Web database version " << current_version <<
" is too old to handle.";
NOTREACHED();
return sql::INIT_FAILURE;
case 20:
if (!keyword_table_->MigrateToVersion21AutoGenerateKeywordColumn())
return FailedMigrationTo(21);
ChangeVersion(&meta_table_, 21, true);
// FALL THROUGH
case 21:
if (!autofill_table_->ClearAutofillEmptyValueElements())
return FailedMigrationTo(22);
ChangeVersion(&meta_table_, 22, false);
// FALL THROUGH
case 22:
if (!autofill_table_->MigrateToVersion23AddCardNumberEncryptedColumn())
return FailedMigrationTo(23);
ChangeVersion(&meta_table_, 23, false);
// FALL THROUGH
case 23:
if (!autofill_table_->MigrateToVersion24CleanupOversizedStringFields())
return FailedMigrationTo(24);
ChangeVersion(&meta_table_, 24, false);
// FALL THROUGH
case 24:
if (!keyword_table_->MigrateToVersion25AddLogoIDColumn())
return FailedMigrationTo(25);
ChangeVersion(&meta_table_, 25, true);
// FALL THROUGH
case 25:
if (!keyword_table_->MigrateToVersion26AddCreatedByPolicyColumn())
return FailedMigrationTo(26);
ChangeVersion(&meta_table_, 26, true);
// FALL THROUGH
case 26:
if (!autofill_table_->MigrateToVersion27UpdateLegacyCreditCards())
return FailedMigrationTo(27);
ChangeVersion(&meta_table_, 27, true);
// FALL THROUGH
case 27:
if (!keyword_table_->MigrateToVersion28SupportsInstantColumn())
return FailedMigrationTo(28);
ChangeVersion(&meta_table_, 28, true);
// FALL THROUGH
case 28:
if (!keyword_table_->MigrateToVersion29InstantURLToSupportsInstant())
return FailedMigrationTo(29);
ChangeVersion(&meta_table_, 29, true);
// FALL THROUGH
case 29:
if (!autofill_table_->MigrateToVersion30AddDateModifed())
return FailedMigrationTo(30);
ChangeVersion(&meta_table_, 30, true);
// FALL THROUGH
case 30:
if (!autofill_table_->MigrateToVersion31AddGUIDToCreditCardsAndProfiles())
return FailedMigrationTo(31);
ChangeVersion(&meta_table_, 31, true);
// FALL THROUGH
case 31:
if (!autofill_table_->MigrateToVersion32UpdateProfilesAndCreditCards())
return FailedMigrationTo(32);
ChangeVersion(&meta_table_, 32, true);
// FALL THROUGH
case 32:
if (!autofill_table_->MigrateToVersion33ProfilesBasedOnFirstName())
return FailedMigrationTo(33);
ChangeVersion(&meta_table_, 33, true);
// FALL THROUGH
case 33:
if (!autofill_table_->MigrateToVersion34ProfilesBasedOnCountryCode(
app_locale))
return FailedMigrationTo(34);
ChangeVersion(&meta_table_, 34, true);
// FALL THROUGH
case 34:
if (!autofill_table_->MigrateToVersion35GreatBritainCountryCodes())
return FailedMigrationTo(35);
ChangeVersion(&meta_table_, 35, true);
// FALL THROUGH
// Combine migrations 35 and 36. This is due to enhancements to the merge
// step when migrating profiles. The original migration from 35 to 36 did
// not merge profiles with identical addresses, but the migration from 36 to
// 37 does. The step from 35 to 36 should only happen on the Chrome 12 dev
// channel. Chrome 12 beta and release users will jump from 35 to 37
// directly getting the full benefits of the multi-valued merge as well as
// the culling of bad data.
case 35:
case 36:
if (!autofill_table_->MigrateToVersion37MergeAndCullOlderProfiles())
return FailedMigrationTo(37);
ChangeVersion(&meta_table_, 37, true);
// FALL THROUGH
case 37:
if (!keyword_table_->MigrateToVersion38AddLastModifiedColumn())
return FailedMigrationTo(38);
ChangeVersion(&meta_table_, 38, true);
// FALL THROUGH
case 38:
if (!keyword_table_->MigrateToVersion39AddSyncGUIDColumn())
return FailedMigrationTo(39);
ChangeVersion(&meta_table_, 39, true);
// FALL THROUGH
// Subsequent search engine backup migrations are merged into a single one.
case 39:
case 40:
case 41:
case 42:
case 43:
if (!keyword_table_->MigrateToVersion44AddDefaultSearchProviderBackup())
return FailedMigrationTo(44);
ChangeVersion(&meta_table_, 44, true);
// FALL THROUGH
case 44:
if (!keyword_table_->
MigrateToVersion45RemoveLogoIDAndAutogenerateColumns())
return FailedMigrationTo(45);
ChangeVersion(&meta_table_, 45, true);
// FALL THROUGH
case 45:
if (!web_intents_table_->MigrateToVersion46AddSchemeColumn())
return FailedMigrationTo(46);
ChangeVersion(&meta_table_, 46, true);
// FALL THROUGH
case 46:
if (!keyword_table_->MigrateToVersion47AddAlternateURLsColumn())
return FailedMigrationTo(47);
ChangeVersion(&meta_table_, 47, true);
// FALL THROUGH
case 47:
if (!keyword_table_->MigrateToVersion48RemoveKeywordsBackup())
return FailedMigrationTo(48);
ChangeVersion(&meta_table_, 48, true);
// FALL THROUGH
case 48:
if (!keyword_table_->
MigrateToVersion49AddSearchTermsReplacementKeyColumn())
return FailedMigrationTo(49);
ChangeVersion(&meta_table_, 49, true);
// FALL THROUGH
// Add successive versions here. Each should set the version number and
// compatible version number as appropriate, then fall through to the next
// case.
case kCurrentVersionNumber:
// No migration needed.
return sql::INIT_OK;
}
}
|