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
|
// Copyright 2016 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 "components/safe_browsing_db/v4_get_hash_protocol_manager.h"
#include <utility>
#include "base/base64url.h"
#include "base/macros.h"
#include "base/memory/ptr_util.h"
#include "base/metrics/histogram_macros.h"
#include "base/stl_util.h"
#include "base/timer/timer.h"
#include "content/public/browser/browser_thread.h"
#include "net/base/load_flags.h"
#include "net/http/http_response_headers.h"
#include "net/http/http_status_code.h"
#include "net/url_request/url_fetcher.h"
#include "net/url_request/url_request_context_getter.h"
using base::Time;
using base::TimeDelta;
using content::BrowserThread;
namespace {
// Record a GetHash result.
void RecordGetHashResult(safe_browsing::V4OperationResult result) {
UMA_HISTOGRAM_ENUMERATION(
"SafeBrowsing.V4GetHash.Result", result,
safe_browsing::V4OperationResult::OPERATION_RESULT_MAX);
}
// Enumerate parsing failures for histogramming purposes. DO NOT CHANGE
// THE ORDERING OF THESE VALUES.
enum ParseResultType {
// Error parsing the protocol buffer from a string.
PARSE_FROM_STRING_ERROR = 0,
// A match in the response had an unexpected THREAT_ENTRY_TYPE.
UNEXPECTED_THREAT_ENTRY_TYPE_ERROR = 1,
// A match in the response had an unexpected THREAT_TYPE.
UNEXPECTED_THREAT_TYPE_ERROR = 2,
// A match in the response had an unexpected PLATFORM_TYPE.
UNEXPECTED_PLATFORM_TYPE_ERROR = 3,
// A match in the response contained no metadata where metadata was
// expected.
NO_METADATA_ERROR = 4,
// A match in the response contained a ThreatType that was inconsistent
// with the other matches.
INCONSISTENT_THREAT_TYPE_ERROR = 5,
// A match in the response contained a metadata, but the metadata is invalid.
UNEXPECTED_METADATA_VALUE_ERROR = 6,
// A match in the response had no information in the threat field.
NO_THREAT_ERROR = 7,
// Memory space for histograms is determined by the max. ALWAYS
// ADD NEW VALUES BEFORE THIS ONE.
PARSE_RESULT_TYPE_MAX = 8,
};
// Record parsing errors of a GetHash result.
void RecordParseGetHashResult(ParseResultType result_type) {
UMA_HISTOGRAM_ENUMERATION("SafeBrowsing.V4GetHash.Parse.Result", result_type,
PARSE_RESULT_TYPE_MAX);
}
// Enumerate full hash cache hits/misses for histogramming purposes.
// DO NOT CHANGE THE ORDERING OF THESE VALUES.
enum V4FullHashCacheResultType {
// Full hashes for which there is no cache hit.
FULL_HASH_CACHE_MISS = 0,
// Full hashes with a cache hit.
FULL_HASH_CACHE_HIT = 1,
// Full hashes with a negative cache hit.
FULL_HASH_NEGATIVE_CACHE_HIT = 2,
// Memory space for histograms is determined by the max. ALWAYS
// ADD NEW VALUES BEFORE THIS ONE.
FULL_HASH_CACHE_RESULT_MAX
};
// Record a full hash cache hit result.
void RecordV4FullHashCacheResult(V4FullHashCacheResultType result_type) {
UMA_HISTOGRAM_ENUMERATION("SafeBrowsing.V4GetHash.CacheHit.Result",
result_type, FULL_HASH_CACHE_RESULT_MAX);
}
// Enumerate GetHash hits/misses for histogramming purposes. DO NOT CHANGE THE
// ORDERING OF THESE VALUES.
enum V4GetHashCheckResultType {
// Successful responses which returned no full hashes.
GET_HASH_CHECK_EMPTY = 0,
// Successful responses for which one or more of the full hashes matched.
GET_HASH_CHECK_HIT = 1,
// Successful responses which weren't empty but have no matches.
GET_HASH_CHECK_MISS = 2,
// Memory space for histograms is determined by the max. ALWAYS
// ADD NEW VALUES BEFORE THIS ONE.
GET_HASH_CHECK_RESULT_MAX
};
// Record a GetHash hit result.
void RecordV4GetHashCheckResult(V4GetHashCheckResultType result_type) {
UMA_HISTOGRAM_ENUMERATION("SafeBrowsing.V4GetHash.Check.Result", result_type,
GET_HASH_CHECK_RESULT_MAX);
}
const char kPermission[] = "permission";
const char kPhaPatternType[] = "pha_pattern_type";
const char kMalwarePatternType[] = "malware_pattern_type";
const char kSePatternType[] = "se_pattern_type";
const char kLanding[] = "LANDING";
const char kDistribution[] = "DISTRIBUTION";
const char kSocialEngineeringAds[] = "SOCIAL_ENGINEERING_ADS";
const char kSocialEngineeringLanding[] = "SOCIAL_ENGINEERING_LANDING";
const char kPhishing[] = "PHISHING";
} // namespace
namespace safe_browsing {
// The default V4GetHashProtocolManagerFactory.
class V4GetHashProtocolManagerFactoryImpl
: public V4GetHashProtocolManagerFactory {
public:
V4GetHashProtocolManagerFactoryImpl() {}
~V4GetHashProtocolManagerFactoryImpl() override {}
std::unique_ptr<V4GetHashProtocolManager> CreateProtocolManager(
net::URLRequestContextGetter* request_context_getter,
const StoresToCheck& stores_to_check,
const V4ProtocolConfig& config) override {
return base::WrapUnique(new V4GetHashProtocolManager(
request_context_getter, stores_to_check, config));
}
private:
DISALLOW_COPY_AND_ASSIGN(V4GetHashProtocolManagerFactoryImpl);
};
// ----------------------------------------------------------------
CachedHashPrefixInfo::CachedHashPrefixInfo() {}
CachedHashPrefixInfo::CachedHashPrefixInfo(const CachedHashPrefixInfo& other) =
default;
CachedHashPrefixInfo::~CachedHashPrefixInfo() {}
// ----------------------------------------------------------------
FullHashCallbackInfo::FullHashCallbackInfo() {}
FullHashCallbackInfo::FullHashCallbackInfo(
const std::vector<FullHashInfo>& cached_full_hash_infos,
const std::vector<HashPrefix>& prefixes_requested,
std::unique_ptr<net::URLFetcher> fetcher,
const FullHashToStoreAndHashPrefixesMap&
full_hash_to_store_and_hash_prefixes,
const FullHashCallback& callback,
const base::Time& network_start_time)
: cached_full_hash_infos(cached_full_hash_infos),
callback(callback),
fetcher(std::move(fetcher)),
full_hash_to_store_and_hash_prefixes(
full_hash_to_store_and_hash_prefixes),
network_start_time(network_start_time),
prefixes_requested(prefixes_requested) {}
FullHashCallbackInfo::~FullHashCallbackInfo() {}
// ----------------------------------------------------------------
FullHashInfo::FullHashInfo(const FullHash& full_hash,
const ListIdentifier& list_id,
const base::Time& positive_expiry)
: full_hash(full_hash),
list_id(list_id),
positive_expiry(positive_expiry) {}
FullHashInfo::FullHashInfo(const FullHashInfo& other) = default;
FullHashInfo::~FullHashInfo() {}
bool FullHashInfo::operator==(const FullHashInfo& other) const {
return full_hash == other.full_hash && list_id == other.list_id &&
positive_expiry == other.positive_expiry && metadata == other.metadata;
}
bool FullHashInfo::operator!=(const FullHashInfo& other) const {
return !operator==(other);
}
// V4GetHashProtocolManager implementation --------------------------------
// static
V4GetHashProtocolManagerFactory* V4GetHashProtocolManager::factory_ = NULL;
// static
std::unique_ptr<V4GetHashProtocolManager> V4GetHashProtocolManager::Create(
net::URLRequestContextGetter* request_context_getter,
const StoresToCheck& stores_to_check,
const V4ProtocolConfig& config) {
if (!factory_)
factory_ = new V4GetHashProtocolManagerFactoryImpl();
return factory_->CreateProtocolManager(request_context_getter,
stores_to_check, config);
}
// static
void V4GetHashProtocolManager::RegisterFactory(
std::unique_ptr<V4GetHashProtocolManagerFactory> factory) {
if (factory_)
delete factory_;
factory_ = factory.release();
}
V4GetHashProtocolManager::V4GetHashProtocolManager(
net::URLRequestContextGetter* request_context_getter,
const StoresToCheck& stores_to_check,
const V4ProtocolConfig& config)
: gethash_error_count_(0),
gethash_back_off_mult_(1),
next_gethash_time_(Time::FromDoubleT(0)),
config_(config),
request_context_getter_(request_context_getter),
url_fetcher_id_(0),
clock_(new base::DefaultClock()) {
DCHECK(!stores_to_check.empty());
std::set<PlatformType> platform_types;
std::set<ThreatEntryType> threat_entry_types;
std::set<ThreatType> threat_types;
for (const ListIdentifier& store : stores_to_check) {
platform_types.insert(store.platform_type());
threat_entry_types.insert(store.threat_entry_type());
threat_types.insert(store.threat_type());
}
platform_types_.assign(platform_types.begin(), platform_types.end());
threat_entry_types_.assign(threat_entry_types.begin(),
threat_entry_types.end());
threat_types_.assign(threat_types.begin(), threat_types.end());
}
V4GetHashProtocolManager::~V4GetHashProtocolManager() {}
void V4GetHashProtocolManager::ClearCache() {
DCHECK(CalledOnValidThread());
full_hash_cache_.clear();
}
void V4GetHashProtocolManager::GetFullHashes(
const FullHashToStoreAndHashPrefixesMap&
full_hash_to_store_and_hash_prefixes,
FullHashCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(CalledOnValidThread());
DCHECK(!full_hash_to_store_and_hash_prefixes.empty());
std::vector<HashPrefix> prefixes_to_request;
std::vector<FullHashInfo> cached_full_hash_infos;
GetFullHashCachedResults(full_hash_to_store_and_hash_prefixes, Time::Now(),
&prefixes_to_request, &cached_full_hash_infos);
if (prefixes_to_request.empty()) {
// 100% cache hits (positive or negative) so we can call the callback right
// away.
callback.Run(cached_full_hash_infos);
return;
}
// We need to wait the minimum waiting duration, and if we are in backoff,
// we need to check if we're past the next allowed time. If we are, we can
// proceed with the request. If not, we are required to return empty results
// (i.e. just use the results from cache and potentially report an unsafe
// resource as safe).
if (clock_->Now() <= next_gethash_time_) {
if (gethash_error_count_) {
RecordGetHashResult(V4OperationResult::BACKOFF_ERROR);
} else {
RecordGetHashResult(V4OperationResult::MIN_WAIT_DURATION_ERROR);
}
callback.Run(cached_full_hash_infos);
return;
}
std::string req_base64 = GetHashRequest(prefixes_to_request);
GURL gethash_url;
net::HttpRequestHeaders headers;
GetHashUrlAndHeaders(req_base64, &gethash_url, &headers);
std::unique_ptr<net::URLFetcher> owned_fetcher = net::URLFetcher::Create(
url_fetcher_id_++, gethash_url, net::URLFetcher::GET, this);
net::URLFetcher* fetcher = owned_fetcher.get();
pending_hash_requests_[fetcher].reset(new FullHashCallbackInfo(
cached_full_hash_infos, prefixes_to_request, std::move(owned_fetcher),
full_hash_to_store_and_hash_prefixes, callback, clock_->Now()));
fetcher->SetExtraRequestHeaders(headers.ToString());
fetcher->SetLoadFlags(net::LOAD_DISABLE_CACHE);
fetcher->SetRequestContext(request_context_getter_.get());
fetcher->Start();
}
void V4GetHashProtocolManager::GetFullHashesWithApis(
const GURL& url,
ThreatMetadataForApiCallback api_callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(url.SchemeIs(url::kHttpScheme) || url.SchemeIs(url::kHttpsScheme));
std::vector<FullHash> full_hashes;
V4ProtocolManagerUtil::UrlToFullHashes(url.GetOrigin(), &full_hashes);
FullHashToStoreAndHashPrefixesMap full_hash_to_store_and_hash_prefixes;
for (const FullHash& full_hash : full_hashes) {
HashPrefix prefix;
bool result =
V4ProtocolManagerUtil::FullHashToSmallestHashPrefix(full_hash, &prefix);
DCHECK(result);
full_hash_to_store_and_hash_prefixes[full_hash].emplace_back(
GetChromeUrlApiId(), prefix);
}
GetFullHashes(full_hash_to_store_and_hash_prefixes,
base::Bind(&V4GetHashProtocolManager::OnFullHashForApi,
base::Unretained(this), api_callback, full_hashes));
}
void V4GetHashProtocolManager::GetFullHashCachedResults(
const FullHashToStoreAndHashPrefixesMap&
full_hash_to_store_and_hash_prefixes,
const Time& now,
std::vector<HashPrefix>* prefixes_to_request,
std::vector<FullHashInfo>* cached_full_hash_infos) const {
DCHECK(!full_hash_to_store_and_hash_prefixes.empty());
DCHECK(prefixes_to_request->empty());
DCHECK(cached_full_hash_infos->empty());
// Caching behavior is documented here:
// https://developers.google.com/safe-browsing/v4/caching#about-caching
//
// The cache operates as follows:
// Lookup:
// Case 1: The prefix is in the cache.
// Case a: The full hash is in the cache.
// Case i : The positive full hash result has not expired.
// The result is unsafe and we do not need to send a new
// request.
// Case ii: The positive full hash result has expired.
// We need to send a request for full hashes.
// Case b: The full hash is not in the cache.
// Case i : The negative cache entry has not expired.
// The result is still safe and we do not need to send a
// new request.
// Case ii: The negative cache entry has expired.
// We need to send a request for full hashes.
// Case 2: The prefix is not in the cache.
// We need to send a request for full hashes.
//
// Note on eviction:
// CachedHashPrefixInfo entries can be removed from the cache only when
// the negative cache expire time and the cache expire time of all full
// hash results for that prefix have expired.
// Individual full hash results can be removed from the prefix's
// cache entry if they expire AND their expire time is after the negative
// cache expire time.
std::unordered_set<HashPrefix> unique_prefixes_to_request;
for (const auto& it : full_hash_to_store_and_hash_prefixes) {
const FullHash& full_hash = it.first;
const StoreAndHashPrefixes& matched = it.second;
for (const StoreAndHashPrefix& matched_it : matched) {
const ListIdentifier& list_id = matched_it.list_id;
const HashPrefix& prefix = matched_it.hash_prefix;
auto prefix_entry = full_hash_cache_.find(prefix);
if (prefix_entry != full_hash_cache_.end()) {
// Case 1.
const CachedHashPrefixInfo& cached_prefix_info = prefix_entry->second;
bool found_full_hash = false;
for (const FullHashInfo& full_hash_info :
cached_prefix_info.full_hash_infos) {
if (full_hash_info.full_hash == full_hash &&
full_hash_info.list_id == list_id) {
// Case a.
found_full_hash = true;
if (full_hash_info.positive_expiry > now) {
// Case i.
cached_full_hash_infos->push_back(full_hash_info);
RecordV4FullHashCacheResult(FULL_HASH_CACHE_HIT);
} else {
// Case ii.
unique_prefixes_to_request.insert(prefix);
RecordV4FullHashCacheResult(FULL_HASH_CACHE_MISS);
}
break;
}
}
if (!found_full_hash) {
// Case b.
if (cached_prefix_info.negative_expiry > now) {
// Case i.
RecordV4FullHashCacheResult(FULL_HASH_NEGATIVE_CACHE_HIT);
} else {
// Case ii.
unique_prefixes_to_request.insert(prefix);
RecordV4FullHashCacheResult(FULL_HASH_CACHE_MISS);
}
}
} else {
// Case 2.
unique_prefixes_to_request.insert(prefix);
RecordV4FullHashCacheResult(FULL_HASH_CACHE_MISS);
}
}
}
prefixes_to_request->insert(prefixes_to_request->begin(),
unique_prefixes_to_request.begin(),
unique_prefixes_to_request.end());
}
std::string V4GetHashProtocolManager::GetHashRequest(
const std::vector<HashPrefix>& prefixes_to_request) {
DCHECK(!prefixes_to_request.empty());
FindFullHashesRequest req;
ThreatInfo* info = req.mutable_threat_info();
for (const PlatformType p : platform_types_) {
info->add_platform_types(p);
}
for (const ThreatEntryType tet : threat_entry_types_) {
info->add_threat_entry_types(tet);
}
for (const ThreatType tt : threat_types_) {
info->add_threat_types(tt);
}
for (const HashPrefix& prefix : prefixes_to_request) {
info->add_threat_entries()->set_hash(prefix);
}
V4ProtocolManagerUtil::SetClientInfoFromConfig(req.mutable_client(), config_);
// Serialize and Base64 encode.
std::string req_data, req_base64;
req.SerializeToString(&req_data);
base::Base64UrlEncode(req_data, base::Base64UrlEncodePolicy::INCLUDE_PADDING,
&req_base64);
return req_base64;
}
void V4GetHashProtocolManager::GetHashUrlAndHeaders(
const std::string& req_base64,
GURL* gurl,
net::HttpRequestHeaders* headers) const {
V4ProtocolManagerUtil::GetRequestUrlAndHeaders(req_base64, "fullHashes:find",
config_, gurl, headers);
}
void V4GetHashProtocolManager::HandleGetHashError(const Time& now) {
DCHECK(CalledOnValidThread());
TimeDelta next = V4ProtocolManagerUtil::GetNextBackOffInterval(
&gethash_error_count_, &gethash_back_off_mult_);
next_gethash_time_ = now + next;
}
void V4GetHashProtocolManager::OnFullHashForApi(
const ThreatMetadataForApiCallback& api_callback,
const std::vector<FullHash>& full_hashes,
const std::vector<FullHashInfo>& full_hash_infos) {
ThreatMetadata md;
for (const FullHashInfo& full_hash_info : full_hash_infos) {
DCHECK_EQ(GetChromeUrlApiId(), full_hash_info.list_id);
DCHECK(std::find(full_hashes.begin(), full_hashes.end(),
full_hash_info.full_hash) != full_hashes.end());
md.api_permissions.insert(full_hash_info.metadata.api_permissions.begin(),
full_hash_info.metadata.api_permissions.end());
}
api_callback.Run(md);
}
bool V4GetHashProtocolManager::ParseHashResponse(
const std::string& response_data,
std::vector<FullHashInfo>* full_hash_infos,
Time* negative_cache_expire) {
FindFullHashesResponse response;
if (!response.ParseFromString(response_data)) {
RecordParseGetHashResult(PARSE_FROM_STRING_ERROR);
return false;
}
// negative_cache_duration should always be set.
DCHECK(response.has_negative_cache_duration());
// Seconds resolution is good enough so we ignore the nanos field.
*negative_cache_expire =
clock_->Now() +
TimeDelta::FromSeconds(response.negative_cache_duration().seconds());
if (response.has_minimum_wait_duration()) {
// Seconds resolution is good enough so we ignore the nanos field.
next_gethash_time_ =
clock_->Now() +
TimeDelta::FromSeconds(response.minimum_wait_duration().seconds());
}
for (const ThreatMatch& match : response.matches()) {
if (!match.has_platform_type()) {
RecordParseGetHashResult(UNEXPECTED_PLATFORM_TYPE_ERROR);
return false;
}
if (!match.has_threat_entry_type()) {
RecordParseGetHashResult(UNEXPECTED_THREAT_ENTRY_TYPE_ERROR);
return false;
}
if (!match.has_threat_type()) {
RecordParseGetHashResult(UNEXPECTED_THREAT_TYPE_ERROR);
return false;
}
if (!match.has_threat()) {
RecordParseGetHashResult(NO_THREAT_ERROR);
return false;
}
ListIdentifier list_id(match.platform_type(), match.threat_entry_type(),
match.threat_type());
if (!base::ContainsValue(platform_types_, list_id.platform_type()) ||
!base::ContainsValue(threat_entry_types_,
list_id.threat_entry_type()) ||
!base::ContainsValue(threat_types_, list_id.threat_type())) {
// The server may send a ThreatMatch response for lists that we didn't ask
// for so ignore those ThreatMatch responses.
continue;
}
base::Time positive_expiry;
if (match.has_cache_duration()) {
// Seconds resolution is good enough so we ignore the nanos field.
positive_expiry = clock_->Now() + TimeDelta::FromSeconds(
match.cache_duration().seconds());
} else {
positive_expiry = clock_->Now() - base::TimeDelta::FromSeconds(1);
}
FullHashInfo full_hash_info(match.threat().hash(), list_id,
positive_expiry);
ParseMetadata(match, &full_hash_info.metadata);
full_hash_infos->push_back(full_hash_info);
}
return true;
}
// static
void V4GetHashProtocolManager::ParseMetadata(const ThreatMatch& match,
ThreatMetadata* metadata) {
// Different threat types will handle the metadata differently.
if (match.threat_type() == API_ABUSE) {
if (!match.has_platform_type() ||
match.platform_type() != CHROME_PLATFORM) {
RecordParseGetHashResult(UNEXPECTED_PLATFORM_TYPE_ERROR);
return;
}
if (!match.has_threat_entry_metadata()) {
RecordParseGetHashResult(NO_METADATA_ERROR);
return;
}
// For API Abuse, store a list of the returned permissions.
for (const ThreatEntryMetadata::MetadataEntry& m :
match.threat_entry_metadata().entries()) {
if (m.key() != kPermission) {
RecordParseGetHashResult(UNEXPECTED_METADATA_VALUE_ERROR);
return;
}
metadata->api_permissions.insert(m.value());
}
} else if (match.threat_type() == MALWARE_THREAT ||
match.threat_type() == POTENTIALLY_HARMFUL_APPLICATION) {
for (const ThreatEntryMetadata::MetadataEntry& m :
match.threat_entry_metadata().entries()) {
if (m.key() == kPhaPatternType || m.key() == kMalwarePatternType) {
if (m.value() == kLanding) {
metadata->threat_pattern_type = ThreatPatternType::MALWARE_LANDING;
break;
} else if (m.value() == kDistribution) {
metadata->threat_pattern_type =
ThreatPatternType::MALWARE_DISTRIBUTION;
break;
} else {
RecordParseGetHashResult(UNEXPECTED_METADATA_VALUE_ERROR);
return;
}
}
}
} else if (match.threat_type() == SOCIAL_ENGINEERING_PUBLIC) {
for (const ThreatEntryMetadata::MetadataEntry& m :
match.threat_entry_metadata().entries()) {
if (m.key() == kSePatternType) {
if (m.value() == kSocialEngineeringAds) {
metadata->threat_pattern_type =
ThreatPatternType::SOCIAL_ENGINEERING_ADS;
break;
} else if (m.value() == kSocialEngineeringLanding) {
metadata->threat_pattern_type =
ThreatPatternType::SOCIAL_ENGINEERING_LANDING;
break;
} else if (m.value() == kPhishing) {
metadata->threat_pattern_type = ThreatPatternType::PHISHING;
break;
} else {
RecordParseGetHashResult(UNEXPECTED_METADATA_VALUE_ERROR);
return;
}
}
}
} else if (match.has_threat_entry_metadata() &&
match.threat_entry_metadata().entries_size() > 1) {
RecordParseGetHashResult(UNEXPECTED_THREAT_TYPE_ERROR);
}
}
void V4GetHashProtocolManager::ResetGetHashErrors() {
gethash_error_count_ = 0;
gethash_back_off_mult_ = 1;
}
void V4GetHashProtocolManager::SetClockForTests(
std::unique_ptr<base::Clock> clock) {
clock_ = std::move(clock);
}
void V4GetHashProtocolManager::UpdateCache(
const std::vector<HashPrefix>& prefixes_requested,
const std::vector<FullHashInfo>& full_hash_infos,
const Time& negative_cache_expire) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
// If negative_cache_expire is null, don't cache the results since it's not
// clear till what time they should be considered valid.
if (negative_cache_expire.is_null()) {
return;
}
for (const HashPrefix& prefix : prefixes_requested) {
// Create or reset the cached result for this prefix.
CachedHashPrefixInfo& chpi = full_hash_cache_[prefix];
chpi.full_hash_infos.clear();
chpi.negative_expiry = negative_cache_expire;
for (const FullHashInfo& full_hash_info : full_hash_infos) {
if (V4ProtocolManagerUtil::FullHashMatchesHashPrefix(
full_hash_info.full_hash, prefix)) {
chpi.full_hash_infos.push_back(full_hash_info);
}
}
}
}
void V4GetHashProtocolManager::MergeResults(
const FullHashToStoreAndHashPrefixesMap&
full_hash_to_store_and_hash_prefixes,
const std::vector<FullHashInfo>& full_hash_infos,
std::vector<FullHashInfo>* merged_full_hash_infos) {
bool get_hash_hit = false;
for (const FullHashInfo& fhi : full_hash_infos) {
auto it = full_hash_to_store_and_hash_prefixes.find(fhi.full_hash);
if (full_hash_to_store_and_hash_prefixes.end() != it) {
for (const StoreAndHashPrefix& sahp : it->second) {
if (fhi.list_id == sahp.list_id) {
merged_full_hash_infos->push_back(fhi);
get_hash_hit = true;
break;
}
}
}
}
if (get_hash_hit) {
RecordV4GetHashCheckResult(GET_HASH_CHECK_HIT);
} else if (full_hash_infos.empty()) {
RecordV4GetHashCheckResult(GET_HASH_CHECK_EMPTY);
} else {
RecordV4GetHashCheckResult(GET_HASH_CHECK_MISS);
}
}
// net::URLFetcherDelegate implementation ----------------------------------
// SafeBrowsing request responses are handled here.
void V4GetHashProtocolManager::OnURLFetchComplete(
const net::URLFetcher* source) {
DCHECK(CalledOnValidThread());
DCHECK_CURRENTLY_ON(BrowserThread::IO);
PendingHashRequests::iterator it = pending_hash_requests_.find(source);
DCHECK(it != pending_hash_requests_.end()) << "Request not found";
int response_code = source->GetResponseCode();
net::URLRequestStatus status = source->GetStatus();
V4ProtocolManagerUtil::RecordHttpResponseOrErrorCode(
"SafeBrowsing.V4GetHash.Network.Result", status, response_code);
std::vector<FullHashInfo> full_hash_infos;
Time negative_cache_expire;
if (status.is_success() && response_code == net::HTTP_OK) {
RecordGetHashResult(V4OperationResult::STATUS_200);
ResetGetHashErrors();
std::string data;
source->GetResponseAsString(&data);
if (!ParseHashResponse(data, &full_hash_infos, &negative_cache_expire)) {
full_hash_infos.clear();
RecordGetHashResult(V4OperationResult::PARSE_ERROR);
}
} else {
HandleGetHashError(clock_->Now());
DVLOG(1) << "SafeBrowsing GetEncodedFullHashes request for: "
<< source->GetURL() << " failed with error: " << status.error()
<< " and response code: " << response_code;
if (status.status() == net::URLRequestStatus::FAILED) {
RecordGetHashResult(V4OperationResult::NETWORK_ERROR);
} else {
RecordGetHashResult(V4OperationResult::HTTP_ERROR);
}
}
const std::unique_ptr<FullHashCallbackInfo>& fhci = it->second;
UMA_HISTOGRAM_LONG_TIMES("SafeBrowsing.V4GetHash.Network.Time",
clock_->Now() - fhci->network_start_time);
UpdateCache(fhci->prefixes_requested, full_hash_infos, negative_cache_expire);
MergeResults(fhci->full_hash_to_store_and_hash_prefixes, full_hash_infos,
&fhci->cached_full_hash_infos);
fhci->callback.Run(fhci->cached_full_hash_infos);
pending_hash_requests_.erase(it);
}
#ifndef DEBUG
std::ostream& operator<<(std::ostream& os, const FullHashInfo& fhi) {
os << "{full_hash: " << fhi.full_hash << "; list_id: " << fhi.list_id
<< "; positive_expiry: " << fhi.positive_expiry
<< "; metadata.api_permissions.size(): "
<< fhi.metadata.api_permissions.size() << "}";
return os;
}
#endif
} // namespace safe_browsing
|