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 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// A policy for storing activity log data to a database that performs
// aggregation to reduce the size of the database. The database layout is
// nearly the same as FullStreamUIPolicy, which stores a complete log, with a
// few changes:
// - a "count" column is added to track how many log records were merged
// together into this row
// - the "time" column measures the most recent time that the current row was
// updated
// When writing a record, if a row already exists where all other columns
// (extension_id, action_type, api_name, args, urls, etc.) all match, and the
// previous time falls within today (the current time), then the count field on
// the old row is incremented. Otherwise, a new row is written.
//
// For many text columns, repeated strings are compressed by moving string
// storage to a separate table ("string_ids") and storing only an identifier in
// the logging table. For example, if the api_name_x column contained the
// value 4 and the string_ids table contained a row with primary key 4 and
// value 'tabs.query', then the api_name field should be taken to have the
// value 'tabs.query'. Each column ending with "_x" is compressed in this way.
// All lookups are to the string_ids table, except for the page_url_x and
// arg_url_x columns, which are converted via the url_ids table (this
// separation of URL values is to help simplify history clearing).
//
// The activitylog_uncompressed view allows for simpler reading of the activity
// log contents with identifiers already translated to string values.
#include "chrome/browser/extensions/activity_log/counting_policy.h"
#include <stddef.h>
#include <map>
#include <string>
#include <vector>
#include "base/files/file_path.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/json/json_reader.h"
#include "base/json/json_string_value_serializer.h"
#include "base/memory/ptr_util.h"
#include "base/memory/scoped_refptr.h"
#include "base/strings/cstring_view.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "chrome/browser/extensions/activity_log/activity_log_task_runner.h"
#include "chrome/common/chrome_constants.h"
#include "sql/statement.h"
#include "sql/transaction.h"
namespace {
using extensions::Action;
// Delay between cleaning passes (to delete old action records) through the
// database.
constexpr base::TimeDelta kCleaningDelay = base::Hours(12);
// We should log the arguments to these API calls. Be careful when
// constructing this allowlist to not keep arguments that might compromise
// privacy by logging too much data to the activity log.
//
// TODO(mvrable): The contents of this allowlist should be reviewed and
// expanded as needed.
struct ApiList {
Action::ActionType type;
const char* name;
};
const ApiList kAlwaysLog[] = {
{Action::ACTION_API_CALL, "bookmarks.create"},
{Action::ACTION_API_CALL, "bookmarks.update"},
{Action::ACTION_API_CALL, "cookies.get"},
{Action::ACTION_API_CALL, "cookies.getAll"},
{Action::ACTION_API_CALL, "extension.connect"},
{Action::ACTION_API_CALL, "extension.sendMessage"},
{Action::ACTION_API_CALL, "fileSystem.chooseEntry"},
{Action::ACTION_API_CALL, "socket.bind"},
{Action::ACTION_API_CALL, "socket.connect"},
{Action::ACTION_API_CALL, "socket.create"},
{Action::ACTION_API_CALL, "socket.listen"},
{Action::ACTION_API_CALL, "tabs.executeScript"},
{Action::ACTION_API_CALL, "tabs.insertCSS"},
{Action::ACTION_API_CALL, "types.ChromeSetting.clear"},
{Action::ACTION_API_CALL, "types.ChromeSetting.get"},
{Action::ACTION_API_CALL, "types.ChromeSetting.set"},
{Action::ACTION_CONTENT_SCRIPT, ""},
{Action::ACTION_DOM_ACCESS, "Document.createElement"},
{Action::ACTION_DOM_ACCESS, "Document.createElementNS"},
};
// Columns in the main database table. See the file-level comment for a
// discussion of how data is stored and the meanings of the _x columns.
constexpr base::cstring_view kTableContentFields[] = {
"count", "extension_id_x", "time", "action_type", "api_name_x",
"args_x", "page_url_x", "page_title_x", "arg_url_x", "other_x"};
constexpr base::cstring_view kTableFieldTypes[] = {"INTEGER NOT NULL DEFAULT 1",
"INTEGER NOT NULL",
"INTEGER",
"INTEGER",
"INTEGER",
"INTEGER",
"INTEGER",
"INTEGER",
"INTEGER",
"INTEGER"};
// Miscellaneous SQL commands for initializing the database; these should be
// idempotent.
constexpr char kPolicySetupDropView[] =
// The activitylog_uncompressed view performs string lookups for simpler
// access to the log data.
"DROP VIEW IF EXISTS activitylog_uncompressed";
constexpr char kPolicySetupCreateView[] =
"CREATE VIEW activitylog_uncompressed AS\n"
"SELECT count,\n"
" x1.value AS extension_id,\n"
" time,\n"
" action_type,\n"
" x2.value AS api_name,\n"
" x3.value AS args,\n"
" x4.value AS page_url,\n"
" x5.value AS page_title,\n"
" x6.value AS arg_url,\n"
" x7.value AS other,\n"
" activitylog_compressed.rowid AS activity_id\n"
"FROM activitylog_compressed\n"
" LEFT JOIN string_ids AS x1 ON (x1.id = extension_id_x)\n"
" LEFT JOIN string_ids AS x2 ON (x2.id = api_name_x)\n"
" LEFT JOIN string_ids AS x3 ON (x3.id = args_x)\n"
" LEFT JOIN url_ids AS x4 ON (x4.id = page_url_x)\n"
" LEFT JOIN string_ids AS x5 ON (x5.id = page_title_x)\n"
" LEFT JOIN url_ids AS x6 ON (x6.id = arg_url_x)\n"
" LEFT JOIN string_ids AS x7 ON (x7.id = other_x)";
constexpr char kPolicySetupCreateIndex[] =
// An index on all fields except count and time: all the fields that aren't
// changed when incrementing a count. This should accelerate finding the
// rows to update (at worst several rows will need to be checked to find
// the one in the right time range).
"CREATE INDEX IF NOT EXISTS activitylog_compressed_index\n"
"ON activitylog_compressed(extension_id_x, action_type, api_name_x,\n"
" args_x, page_url_x, page_title_x, arg_url_x, other_x)";
// SQL statements to clean old, unused entries out of the string and URL id
// tables.
constexpr char kStringTableCleanup[] =
"DELETE FROM string_ids WHERE id NOT IN\n"
"(SELECT extension_id_x FROM activitylog_compressed\n"
" WHERE extension_id_x IS NOT NULL\n"
" UNION SELECT api_name_x FROM activitylog_compressed\n"
" WHERE api_name_x IS NOT NULL\n"
" UNION SELECT args_x FROM activitylog_compressed\n"
" WHERE args_x IS NOT NULL\n"
" UNION SELECT page_title_x FROM activitylog_compressed\n"
" WHERE page_title_x IS NOT NULL\n"
" UNION SELECT other_x FROM activitylog_compressed\n"
" WHERE other_x IS NOT NULL)";
constexpr char kUrlTableCleanup[] =
"DELETE FROM url_ids WHERE id NOT IN\n"
"(SELECT page_url_x FROM activitylog_compressed\n"
" WHERE page_url_x IS NOT NULL\n"
" UNION SELECT arg_url_x FROM activitylog_compressed\n"
" WHERE arg_url_x IS NOT NULL)";
} // namespace
namespace extensions {
const char CountingPolicy::kReadViewName[] = "activitylog_uncompressed";
CountingPolicy::CountingPolicy(Profile* profile)
: ActivityLogDatabasePolicy(
profile,
base::FilePath(chrome::kExtensionActivityLogFilename)),
string_table_("string_ids"),
url_table_("url_ids"),
retention_time_(base::Hours(60)) {
for (auto log : kAlwaysLog) {
api_arg_allowlist_.insert(std::make_pair(log.type, log.name));
}
}
CountingPolicy::~CountingPolicy() = default;
bool CountingPolicy::InitDatabase(sql::Database* db) {
if (!string_table_.Initialize(db))
return false;
if (!url_table_.Initialize(db))
return false;
// Create the unified activity log entry table.
if (!ActivityDatabase::InitializeTable(db, "activitylog_compressed",
kTableContentFields,
kTableFieldTypes)) {
return false;
}
// Create a view for easily accessing the uncompressed form of the data, and
// any necessary indexes if needed.
return db->Execute(kPolicySetupDropView) &&
db->Execute(kPolicySetupCreateView) &&
db->Execute(kPolicySetupCreateIndex);
}
void CountingPolicy::ProcessAction(scoped_refptr<Action> action) {
ScheduleAndForget(this, &CountingPolicy::QueueAction, action);
}
void CountingPolicy::QueueAction(scoped_refptr<Action> action) {
if (activity_database()->is_db_valid()) {
action = action->Clone();
Util::StripPrivacySensitiveFields(action);
Util::StripArguments(api_arg_allowlist_, action);
// If the current action falls on a different date than the ones in the
// queue, flush the queue out now to prevent any false merging (actions
// from different days being merged).
base::Time new_date = action->time().LocalMidnight();
if (new_date != queued_actions_date_)
activity_database()->AdviseFlush(ActivityDatabase::kFlushImmediately);
queued_actions_date_ = new_date;
auto queued_entry = queued_actions_.find(action);
if (queued_entry == queued_actions_.end()) {
queued_actions_[action] = 1;
} else {
// Update the timestamp in the key to be the latest time seen. Modifying
// the time is safe since that field is not involved in key comparisons
// in the map.
using std::max;
queued_entry->first->set_time(
max(queued_entry->first->time(), action->time()));
queued_entry->second++;
}
activity_database()->AdviseFlush(queued_actions_.size());
}
}
bool CountingPolicy::FlushDatabase(sql::Database* db) {
// Columns that must match exactly for database rows to be coalesced.
static const char* const matched_columns[] = {
"extension_id_x", "action_type", "api_name_x", "args_x", "page_url_x",
"page_title_x", "arg_url_x", "other_x"};
ActionQueue queue;
queue.swap(queued_actions_);
// Whether to clean old records out of the activity log database. Do this
// much less frequently than database flushes since it is expensive, but
// always check on the first database flush (since there might be a large
// amount of data to clear).
bool clean_database = (last_database_cleaning_time_.is_null() ||
Now() - last_database_cleaning_time_ > kCleaningDelay);
if (queue.empty() && !clean_database)
return true;
sql::Transaction transaction(db);
if (!transaction.Begin())
return false;
// Adding an Action to the database is a two step process that depends on
// whether the count on an existing row can be incremented or a new row needs
// to be inserted.
// 1. Run the query in locate_str to search for a row which matches and can
// have the count incremented.
// 2a. If found, increment the count using kUpdateSql and the rowid found in
// step 1, or
// 2b. If not found, insert a new row using insert_str.
std::string locate_str =
"SELECT rowid FROM activitylog_compressed"
" WHERE time >= ? AND time < ?";
std::string insert_str = "INSERT INTO activitylog_compressed(count, time";
static constexpr char kUpdateSql[] =
"UPDATE activitylog_compressed"
" SET count = count + ?, time = max(?, time)"
" WHERE rowid = ?";
for (const auto* column : matched_columns) {
locate_str =
base::StringPrintf("%s AND %s IS ?", locate_str.c_str(), column);
insert_str = base::StringPrintf("%s, %s", insert_str.c_str(), column);
}
insert_str += ") VALUES (?, ?";
for (size_t i = 0; i < std::size(matched_columns); i++) {
insert_str += ", ?";
}
locate_str += " ORDER BY time DESC LIMIT 1";
insert_str += ")";
for (auto& [action, count] : queue) {
base::Time day_start = action->time().LocalMidnight();
base::Time next_day = Util::AddDays(day_start, 1);
// The contents in values must match up with fields in matched_columns. A
// value of -1 is used to encode a null database value.
int64_t id;
std::vector<int64_t> matched_values;
if (!string_table_.StringToInt(db, action->extension_id(), &id))
return false;
matched_values.push_back(id);
matched_values.push_back(static_cast<int>(action->action_type()));
if (!string_table_.StringToInt(db, action->api_name(), &id))
return false;
matched_values.push_back(id);
if (action->args()) {
std::string args = Util::Serialize(action->args());
// TODO(mvrable): For now, truncate long argument lists. This is a
// workaround for excessively-long values coming from DOM logging. When
// the V8ValueConverter is fixed to return more reasonable values, we can
// drop the truncation.
if (args.length() > 10000) {
args = "[\"<too_large>\"]";
}
if (!string_table_.StringToInt(db, args, &id))
return false;
matched_values.push_back(id);
} else {
matched_values.push_back(-1);
}
std::string page_url_string = action->SerializePageUrl();
if (!page_url_string.empty()) {
if (!url_table_.StringToInt(db, page_url_string, &id))
return false;
matched_values.push_back(id);
} else {
matched_values.push_back(-1);
}
// TODO(mvrable): Create a title_table_?
if (!action->page_title().empty()) {
if (!string_table_.StringToInt(db, action->page_title(), &id))
return false;
matched_values.push_back(id);
} else {
matched_values.push_back(-1);
}
std::string arg_url_string = action->SerializeArgUrl();
if (!arg_url_string.empty()) {
if (!url_table_.StringToInt(db, arg_url_string, &id))
return false;
matched_values.push_back(id);
} else {
matched_values.push_back(-1);
}
if (action->other()) {
if (!string_table_.StringToInt(db, Util::Serialize(action->other()), &id))
return false;
matched_values.push_back(id);
} else {
matched_values.push_back(-1);
}
// Search for a matching row for this action whose count can be
// incremented.
sql::Statement locate_statement(
db->GetCachedStatement(sql::StatementID(SQL_FROM_HERE), locate_str));
locate_statement.BindTime(0, day_start);
locate_statement.BindTime(1, next_day);
for (size_t j = 0; j < matched_values.size(); j++) {
// A call to BindNull when matched_values contains -1 is likely not
// necessary as parameters default to null before they are explicitly
// bound. But to be completely clear, and in case a cached statement
// ever comes with some values already bound, we bind all parameters
// (even null ones) explicitly.
if (matched_values[j] == -1)
locate_statement.BindNull(j + 2);
else
locate_statement.BindInt64(j + 2, matched_values[j]);
}
if (locate_statement.Step()) {
// A matching row was found. Update the count and time.
int64_t rowid = locate_statement.ColumnInt64(0);
sql::Statement update_statement(
db->GetCachedStatement(sql::StatementID(SQL_FROM_HERE), kUpdateSql));
update_statement.BindInt(0, count);
update_statement.BindTime(1, action->time());
update_statement.BindInt64(2, rowid);
if (!update_statement.Run())
return false;
} else if (locate_statement.Succeeded()) {
// No matching row was found, so we need to insert one.
sql::Statement insert_statement(
db->GetCachedStatement(sql::StatementID(SQL_FROM_HERE), insert_str));
insert_statement.BindInt(0, count);
insert_statement.BindTime(1, action->time());
for (size_t j = 0; j < matched_values.size(); j++) {
if (matched_values[j] == -1)
insert_statement.BindNull(j + 2);
else
insert_statement.BindInt64(j + 2, matched_values[j]);
}
if (!insert_statement.Run())
return false;
} else {
// Database error.
return false;
}
}
if (clean_database) {
base::Time cutoff = (Now() - retention_time()).LocalMidnight();
if (!CleanOlderThan(db, cutoff))
return false;
last_database_cleaning_time_ = Now();
}
if (!transaction.Commit())
return false;
return true;
}
std::unique_ptr<Action::ActionVector> CountingPolicy::DoReadFilteredData(
const std::string& extension_id,
const Action::ActionType type,
const std::string& api_name,
const std::string& page_url,
const std::string& arg_url,
const int days_ago) {
DCHECK(GetActivityLogTaskRunner()->RunsTasksInCurrentSequence());
// Ensure data is flushed to the database first so that we query over all
// data.
activity_database()->AdviseFlush(ActivityDatabase::kFlushImmediately);
std::unique_ptr<Action::ActionVector> actions(new Action::ActionVector());
sql::Database* db = GetDatabaseConnection();
if (!db)
return actions;
// Build up the query based on which parameters were specified.
std::string where_str;
std::string where_next;
if (!extension_id.empty()) {
where_str += "extension_id=?";
where_next = " AND ";
}
if (!api_name.empty()) {
where_str += where_next + "api_name LIKE ?";
where_next = " AND ";
}
if (type != Action::ACTION_ANY) {
where_str += where_next + "action_type=?";
where_next = " AND ";
}
if (!page_url.empty()) {
where_str += where_next + "page_url LIKE ?";
where_next = " AND ";
}
if (!arg_url.empty()) {
where_str += where_next + "arg_url LIKE ?";
where_next = " AND ";
}
if (days_ago >= 0)
where_str += where_next + "time BETWEEN ? AND ?";
std::string query_str = base::StringPrintf(
"SELECT extension_id,time, action_type, api_name, args, page_url,"
"page_title, arg_url, other, count, activity_id FROM %s %s %s ORDER BY "
"count DESC, time DESC LIMIT 300",
kReadViewName,
where_str.empty() ? "" : "WHERE",
where_str.c_str());
sql::Statement query(db->GetUniqueStatement(query_str));
int i = -1;
if (!extension_id.empty())
query.BindString(++i, extension_id);
if (!api_name.empty())
query.BindString(++i, api_name + "%");
if (type != Action::ACTION_ANY)
query.BindInt(++i, static_cast<int>(type));
if (!page_url.empty())
query.BindString(++i, page_url + "%");
if (!arg_url.empty())
query.BindString(++i, arg_url + "%");
if (days_ago >= 0) {
int64_t early_bound;
int64_t late_bound;
Util::ComputeDatabaseTimeBounds(Now(), days_ago, &early_bound, &late_bound);
query.BindInt64(++i, early_bound);
query.BindInt64(++i, late_bound);
}
// Execute the query and get results.
while (query.is_valid() && query.Step()) {
auto action = base::MakeRefCounted<Action>(
query.ColumnString(0), query.ColumnTime(1),
static_cast<Action::ActionType>(query.ColumnInt(2)),
query.ColumnString(3), query.ColumnInt64(10));
if (query.GetColumnType(4) != sql::ColumnType::kNull) {
std::optional<base::Value> parsed_value =
base::JSONReader::Read(query.ColumnStringView(4));
if (parsed_value && parsed_value->is_list()) {
action->set_args(std::move(*parsed_value).TakeList());
}
}
action->ParsePageUrl(query.ColumnString(5));
action->set_page_title(query.ColumnString(6));
action->ParseArgUrl(query.ColumnString(7));
if (query.GetColumnType(8) != sql::ColumnType::kNull) {
std::optional<base::Value> parsed_value =
base::JSONReader::Read(query.ColumnStringView(8));
if (parsed_value && parsed_value->is_dict()) {
action->set_other(std::move(*parsed_value).TakeDict());
}
}
action->set_count(query.ColumnInt(9));
actions->push_back(action);
}
return actions;
}
void CountingPolicy::DoRemoveActions(const std::vector<int64_t>& action_ids) {
if (action_ids.empty())
return;
sql::Database* db = GetDatabaseConnection();
if (!db) {
LOG(ERROR) << "Unable to connect to database";
return;
}
// Flush data first so the activity removal affects queued-up data as well.
activity_database()->AdviseFlush(ActivityDatabase::kFlushImmediately);
sql::Transaction transaction(db);
if (!transaction.Begin())
return;
sql::Statement statement(db->GetCachedStatement(
sql::StatementID(SQL_FROM_HERE),
"DELETE FROM activitylog_compressed WHERE rowid = ?"));
for (long action_id : action_ids) {
statement.Reset(true);
statement.BindInt64(0, action_id);
if (!statement.Run()) {
LOG(ERROR) << "Removing activities from database failed: "
<< statement.GetSQLStatement();
break;
}
}
CleanStringTables(db);
if (!transaction.Commit()) {
LOG(ERROR) << "Removing activities from database failed";
}
}
void CountingPolicy::DoRemoveURLs(const std::vector<GURL>& restrict_urls) {
sql::Database* db = GetDatabaseConnection();
if (!db) {
LOG(ERROR) << "Unable to connect to database";
return;
}
// Flush data first so the URL clearing affects queued-up data as well.
activity_database()->AdviseFlush(ActivityDatabase::kFlushImmediately);
// If no restrictions then then all URLs need to be removed.
if (restrict_urls.empty()) {
sql::Statement statement(db->GetCachedStatement(
sql::StatementID(SQL_FROM_HERE),
"UPDATE activitylog_compressed SET "
"page_url_x=NULL,page_title_x=NULL,arg_url_x=NULL"));
if (!statement.Run()) {
LOG(ERROR) << "Removing all URLs from database failed: "
<< statement.GetSQLStatement();
return;
}
}
// If URLs are specified then restrict to only those URLs.
for (const auto& url : restrict_urls) {
int64_t url_id;
if (!url.is_valid() || !url_table_.StringToInt(db, url.spec(), &url_id)) {
continue;
}
// Remove any that match the page_url.
sql::Statement statement(db->GetCachedStatement(
sql::StatementID(SQL_FROM_HERE),
"UPDATE activitylog_compressed SET page_url_x=NULL,page_title_x=NULL "
"WHERE page_url_x IS ?"));
statement.BindInt64(0, url_id);
if (!statement.Run()) {
LOG(ERROR) << "Removing page URL from database failed: "
<< statement.GetSQLStatement();
return;
}
// Remove any that match the arg_url.
statement.Assign(
db->GetCachedStatement(sql::StatementID(SQL_FROM_HERE),
"UPDATE activitylog_compressed SET "
"arg_url_x=NULL WHERE arg_url_x IS ?"));
statement.BindInt64(0, url_id);
if (!statement.Run()) {
LOG(ERROR) << "Removing arg URL from database failed: "
<< statement.GetSQLStatement();
return;
}
}
// Clean up unused strings from the strings and urls table to really delete
// the urls and page titles. Should be called even if an error occured when
// removing a URL as there may some things to clean up.
CleanStringTables(db);
}
void CountingPolicy::DoRemoveExtensionData(const std::string& extension_id) {
if (extension_id.empty())
return;
sql::Database* db = GetDatabaseConnection();
if (!db) {
LOG(ERROR) << "Unable to connect to database";
return;
}
// Make sure any queued in memory are sent to the database before cleaning.
activity_database()->AdviseFlush(ActivityDatabase::kFlushImmediately);
sql::Statement statement(db->GetCachedStatement(
sql::StatementID(SQL_FROM_HERE),
"DELETE FROM activitylog_compressed WHERE extension_id_x=?"));
int64_t id;
if (string_table_.StringToInt(db, extension_id, &id)) {
statement.BindInt64(0, id);
} else {
// If the string isn't listed, that means we never recorded anything about
// the extension so there's no deletion to do.
statement.Clear();
return;
}
if (!statement.Run()) {
LOG(ERROR) << "Removing URLs for extension "
<< extension_id << "from database failed: "
<< statement.GetSQLStatement();
}
CleanStringTables(db);
}
void CountingPolicy::DoDeleteDatabase() {
sql::Database* db = GetDatabaseConnection();
if (!db) {
LOG(ERROR) << "Unable to connect to database";
return;
}
queued_actions_.clear();
// Not wrapped in a transaction because a late failure shouldn't undo a
// previous deletion.
sql::Statement statement(db->GetCachedStatement(
sql::StatementID(SQL_FROM_HERE), "DELETE FROM activitylog_compressed"));
if (!statement.Run()) {
LOG(ERROR) << "Deleting the database failed: "
<< statement.GetSQLStatement();
return;
}
statement.Clear();
string_table_.ClearCache();
statement.Assign(db->GetCachedStatement(sql::StatementID(SQL_FROM_HERE),
"DELETE FROM string_ids"));
if (!statement.Run()) {
LOG(ERROR) << "Deleting the database failed: "
<< statement.GetSQLStatement();
return;
}
statement.Clear();
url_table_.ClearCache();
statement.Assign(db->GetCachedStatement(sql::StatementID(SQL_FROM_HERE),
"DELETE FROM url_ids"));
if (!statement.Run()) {
LOG(ERROR) << "Deleting the database failed: "
<< statement.GetSQLStatement();
return;
}
statement.Clear();
statement.Assign(db->GetCachedStatement(sql::StatementID(SQL_FROM_HERE),
"VACUUM"));
if (!statement.Run()) {
LOG(ERROR) << "Vacuuming the database failed: "
<< statement.GetSQLStatement();
}
}
void CountingPolicy::ReadFilteredData(
const std::string& extension_id,
const Action::ActionType type,
const std::string& api_name,
const std::string& page_url,
const std::string& arg_url,
const int days_ago,
base::OnceCallback<void(std::unique_ptr<Action::ActionVector>)> callback) {
GetActivityLogTaskRunner()->PostTaskAndReplyWithResult(
FROM_HERE,
base::BindOnce(&CountingPolicy::DoReadFilteredData,
base::Unretained(this), extension_id, type, api_name,
page_url, arg_url, days_ago),
std::move(callback));
}
void CountingPolicy::RemoveActions(const std::vector<int64_t>& action_ids) {
ScheduleAndForget(this, &CountingPolicy::DoRemoveActions, action_ids);
}
void CountingPolicy::RemoveURLs(const std::vector<GURL>& restrict_urls) {
ScheduleAndForget(this, &CountingPolicy::DoRemoveURLs, restrict_urls);
}
void CountingPolicy::RemoveExtensionData(const std::string& extension_id) {
ScheduleAndForget(this, &CountingPolicy::DoRemoveExtensionData, extension_id);
}
void CountingPolicy::DeleteDatabase() {
ScheduleAndForget(this, &CountingPolicy::DoDeleteDatabase);
}
void CountingPolicy::OnDatabaseFailure() {
queued_actions_.clear();
}
void CountingPolicy::OnDatabaseClose() {
delete this;
}
// Cleans old records from the activity log database.
bool CountingPolicy::CleanOlderThan(sql::Database* db,
const base::Time& cutoff) {
sql::Statement cleaner(db->GetCachedStatement(
sql::StatementID(SQL_FROM_HERE),
"DELETE FROM activitylog_compressed WHERE time < ?"));
cleaner.BindTime(0, cutoff);
if (!cleaner.Run())
return false;
return CleanStringTables(db);
}
// Cleans unused interned strings from the database. This should be run after
// deleting rows from the main log table to clean out stale values.
bool CountingPolicy::CleanStringTables(sql::Database* db) {
sql::Statement cleaner1(db->GetCachedStatement(
sql::StatementID(SQL_FROM_HERE), kStringTableCleanup));
if (!cleaner1.Run())
return false;
if (db->GetLastChangeCount() > 0)
string_table_.ClearCache();
sql::Statement cleaner2(db->GetCachedStatement(
sql::StatementID(SQL_FROM_HERE), kUrlTableCleanup));
if (!cleaner2.Run())
return false;
if (db->GetLastChangeCount() > 0)
url_table_.ClearCache();
return true;
}
void CountingPolicy::Close() {
ScheduleAndForget(activity_database(), &ActivityDatabase::Close);
}
} // namespace extensions
|