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
|
// Copyright 2014 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/supervised_user/experimental/supervised_user_async_url_checker.h"
#include <string>
#include "base/callback.h"
#include "base/json/json_reader.h"
#include "base/metrics/histogram.h"
#include "base/stl_util.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/time/time.h"
#include "base/values.h"
#include "components/google/core/browser/google_util.h"
#include "google_apis/google_api_keys.h"
#include "net/base/escape.h"
#include "net/base/load_flags.h"
#include "net/url_request/url_fetcher.h"
#include "net/url_request/url_request_context.h"
#include "url/url_constants.h"
using net::URLFetcher;
using net::URLFetcherDelegate;
using net::URLRequestContextGetter;
using net::URLRequestStatus;
namespace {
const char kQueryFormat[] = "https://www.googleapis.com/customsearch/v1"
"?cx=%s&key=%s&q=inurl%%3A%s";
const char kQuerySafeParam[] = "&safe=high";
const char kIdSearchInfo[] = "searchInformation";
const char kIdResultCount[] = "totalResults";
const char kIdResults[] = "items";
const char kIdResultURL[] = "link";
const size_t kDefaultCacheSize = 1000;
// Build a normalized version of |url| for comparisons. Sets the scheme to a
// common default and strips a leading "www." from the host.
GURL GetNormalizedURL(const GURL& url) {
GURL::Replacements replacements;
// Set scheme to http.
const std::string scheme(url::kHttpScheme);
replacements.SetSchemeStr(scheme);
// Strip leading "www." (if any).
const std::string www("www.");
std::string new_host;
if (StartsWithASCII(url.host(), www, true)) {
new_host = url.host().substr(www.size());
replacements.SetHostStr(new_host);
}
// Strip trailing slash (if any).
std::string new_path;
if (EndsWith(url.path(), "/", true)) {
new_path = url.path().substr(0, url.path().size() - 1);
replacements.SetPathStr(new_path);
}
return url.ReplaceComponents(replacements);
}
// Builds a URL for a web search for |url| (using the "inurl:" query parameter
// and a Custom Search Engine identified by |cx|, using the specified
// |api_key|). If |safe| is specified, enables the SafeSearch query parameter.
GURL BuildSearchURL(const std::string& cx,
const std::string& api_key,
const GURL& url,
bool safe) {
// Strip the scheme, so that we'll match any scheme.
std::string query = net::EscapeQueryParamValue(url.GetContent(), true);
std::string search_url = base::StringPrintf(
kQueryFormat,
cx.c_str(),
api_key.c_str(),
query.c_str());
if (safe)
search_url.append(kQuerySafeParam);
return GURL(search_url);
}
// Creates a URLFetcher for a Google web search for |url|. If |safe| is
// specified, enables SafeSearch for this request.
scoped_ptr<net::URLFetcher> CreateFetcher(
URLFetcherDelegate* delegate,
URLRequestContextGetter* context,
const std::string& cx,
const std::string& api_key,
const GURL& url,
bool safe) {
const int kSafeId = 0;
const int kUnsafeId = 1;
int id = safe ? kSafeId : kUnsafeId;
scoped_ptr<net::URLFetcher> fetcher(URLFetcher::Create(
id, BuildSearchURL(cx, api_key, url, safe), URLFetcher::GET, delegate));
fetcher->SetRequestContext(context);
fetcher->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES |
net::LOAD_DO_NOT_SAVE_COOKIES);
return fetcher.Pass();
}
// Checks whether the search |response| (in JSON format) contains an entry for
// the given |url|.
bool ResponseContainsURL(const std::string& response, const GURL& url) {
scoped_ptr<base::Value> value(base::JSONReader::Read(response));
const base::DictionaryValue* dict = NULL;
if (!value || !value->GetAsDictionary(&dict)) {
DLOG(WARNING) << "ResponseContainsURL failed to parse global dictionary";
return false;
}
const base::DictionaryValue* search_info_dict = NULL;
if (!dict->GetDictionary(kIdSearchInfo, &search_info_dict)) {
DLOG(WARNING) << "ResponseContainsURL failed to parse search information";
return false;
}
std::string result_count;
if (!search_info_dict->GetString(kIdResultCount, &result_count)) {
DLOG(WARNING) << "ResponseContainsURL failed to parse result count";
return false;
}
if (result_count == "0")
return false;
const base::ListValue* results_list = NULL;
if (!dict->GetList(kIdResults, &results_list)) {
DLOG(WARNING) << "ResponseContainsURL failed to parse list of results";
return false;
}
GURL url_normalized = GetNormalizedURL(url);
for (const base::Value* entry : *results_list) {
const base::DictionaryValue* result_dict = NULL;
if (!entry->GetAsDictionary(&result_dict)) {
DLOG(WARNING) << "ResponseContainsURL failed to parse result dictionary";
return false;
}
std::string result_url;
if (!result_dict->GetString(kIdResultURL, &result_url)) {
DLOG(WARNING) << "ResponseContainsURL failed to parse URL from result";
return false;
}
if (url_normalized == GetNormalizedURL(GURL(result_url)))
return true;
}
return false;
}
} // namespace
struct SupervisedUserAsyncURLChecker::Check {
Check(const GURL& url,
scoped_ptr<net::URLFetcher> fetcher_safe,
scoped_ptr<net::URLFetcher> fetcher_unsafe,
const CheckCallback& callback);
~Check();
GURL url;
scoped_ptr<net::URLFetcher> fetcher_safe;
scoped_ptr<net::URLFetcher> fetcher_unsafe;
std::vector<CheckCallback> callbacks;
bool safe_done;
bool unsafe_done;
base::Time start_time;
};
SupervisedUserAsyncURLChecker::Check::Check(
const GURL& url,
scoped_ptr<net::URLFetcher> fetcher_safe,
scoped_ptr<net::URLFetcher> fetcher_unsafe,
const CheckCallback& callback)
: url(url),
fetcher_safe(fetcher_safe.Pass()),
fetcher_unsafe(fetcher_unsafe.Pass()),
callbacks(1, callback),
safe_done(false),
unsafe_done(false),
start_time(base::Time::Now()) {
}
SupervisedUserAsyncURLChecker::Check::~Check() {}
SupervisedUserAsyncURLChecker::CheckResult::CheckResult(
SupervisedUserURLFilter::FilteringBehavior behavior, bool uncertain)
: behavior(behavior), uncertain(uncertain) {
}
SupervisedUserAsyncURLChecker::SupervisedUserAsyncURLChecker(
URLRequestContextGetter* context,
const std::string& cx)
: context_(context), cx_(cx), cache_(kDefaultCacheSize) {
}
SupervisedUserAsyncURLChecker::SupervisedUserAsyncURLChecker(
URLRequestContextGetter* context,
const std::string& cx,
size_t cache_size)
: context_(context), cx_(cx), cache_(cache_size) {
}
SupervisedUserAsyncURLChecker::~SupervisedUserAsyncURLChecker() {}
bool SupervisedUserAsyncURLChecker::CheckURL(const GURL& url,
const CheckCallback& callback) {
// TODO(treib): Hack: For now, allow all Google URLs to save search QPS. If we
// ever remove this, we should find a way to allow at least the NTP.
if (google_util::IsGoogleDomainUrl(url,
google_util::ALLOW_SUBDOMAIN,
google_util::ALLOW_NON_STANDARD_PORTS)) {
callback.Run(url, SupervisedUserURLFilter::ALLOW, false);
return true;
}
// TODO(treib): Hack: For now, allow all YouTube URLs since YouTube has its
// own Safety Mode anyway.
if (google_util::IsYoutubeDomainUrl(url,
google_util::ALLOW_SUBDOMAIN,
google_util::ALLOW_NON_STANDARD_PORTS)) {
callback.Run(url, SupervisedUserURLFilter::ALLOW, false);
return true;
}
auto cache_it = cache_.Get(url);
if (cache_it != cache_.end()) {
const CheckResult& result = cache_it->second;
DVLOG(1) << "Cache hit! " << url.spec() << " is "
<< (result.behavior == SupervisedUserURLFilter::BLOCK ? "NOT" : "")
<< " safe; certain: " << !result.uncertain;
callback.Run(url, result.behavior, result.uncertain);
return true;
}
// See if we already have a check in progress for this URL.
for (Check* check : checks_in_progress_) {
if (check->url == url) {
DVLOG(1) << "Adding to pending check for " << url.spec();
check->callbacks.push_back(callback);
return false;
}
}
DVLOG(1) << "Checking URL " << url;
std::string api_key = google_apis::GetSafeSitesAPIKey();
scoped_ptr<URLFetcher> fetcher_safe(
CreateFetcher(this, context_, cx_, api_key, url, true));
scoped_ptr<URLFetcher> fetcher_unsafe(
CreateFetcher(this, context_, cx_, api_key, url, false));
fetcher_safe->Start();
fetcher_unsafe->Start();
checks_in_progress_.push_back(
new Check(url, fetcher_safe.Pass(), fetcher_unsafe.Pass(), callback));
return false;
}
void SupervisedUserAsyncURLChecker::OnURLFetchComplete(
const net::URLFetcher* source) {
ScopedVector<Check>::iterator it = checks_in_progress_.begin();
bool is_safe_search_request = false;
while (it != checks_in_progress_.end()) {
if (source == (*it)->fetcher_safe.get()) {
is_safe_search_request = true;
(*it)->safe_done = true;
break;
} else if (source == (*it)->fetcher_unsafe.get()) {
(*it)->unsafe_done = true;
break;
}
++it;
}
DCHECK(it != checks_in_progress_.end());
Check* check = *it;
const URLRequestStatus& status = source->GetStatus();
if (!status.is_success()) {
DLOG(WARNING) << "URL request failed! Letting through...";
for (size_t i = 0; i < check->callbacks.size(); i++)
check->callbacks[i].Run(check->url, SupervisedUserURLFilter::ALLOW, true);
checks_in_progress_.erase(it);
return;
}
std::string response_body;
source->GetResponseAsString(&response_body);
bool url_in_search_result = ResponseContainsURL(response_body, check->url);
// We consider a URL as safe if it turns up in a safesearch query. To handle
// URLs that aren't in the search index at all, we also allows URLS that don't
// turn up even in a non-safesearch query.
SupervisedUserURLFilter::FilteringBehavior behavior =
SupervisedUserURLFilter::ALLOW;
bool uncertain = true;
if (is_safe_search_request) {
if (url_in_search_result) {
// Found the URL with safesearch, don't block.
DVLOG(1) << check->url.spec() << " is safe, allowing.";
behavior = SupervisedUserURLFilter::ALLOW;
uncertain = false;
} else if (check->unsafe_done) {
// Found the URL only without safesearch, block.
DVLOG(1) << check->url.spec() << " is NOT safe, blocking.";
behavior = SupervisedUserURLFilter::BLOCK;
uncertain = false;
} else {
// Didn't find the URL with safesearch, have to wait for non-safe result.
return;
}
} else {
if (!url_in_search_result) {
// Didn't find the URL even without safesearch, have to let through.
DVLOG(1) << check->url.spec() << " is unknown, allowing.";
behavior = SupervisedUserURLFilter::ALLOW;
uncertain = true;
} else if (check->safe_done) {
// Found the URL only without safesearch, block.
DVLOG(1) << check->url.spec() << " is NOT safe, blocking.";
behavior = SupervisedUserURLFilter::BLOCK;
uncertain = false;
} else {
// Found the URL without safesearch, wait for safe result.
return;
}
}
UMA_HISTOGRAM_TIMES("ManagedUsers.SafeSitesDelay",
base::Time::Now() - check->start_time);
cache_.Put(check->url, CheckResult(behavior, uncertain));
for (size_t i = 0; i < check->callbacks.size(); i++)
check->callbacks[i].Run(check->url, behavior, uncertain);
checks_in_progress_.erase(it);
}
|