This source file includes following definitions.
- BuildBlacklist
- url_matcher_
- AddFilters
- Block
- Allow
- IsURLBlocked
- Size
- FilterToComponents
- CreateConditionSet
- FilterTakesPrecedence
- blacklist_
- ShutdownOnUIThread
- ScheduleUpdate
- Update
- UpdateOnIO
- SetBlacklist
- IsURLBlocked
- IsRequestBlocked
- RegisterProfilePrefs
#include "components/policy/core/browser/url_blacklist_manager.h"
#include "base/bind.h"
#include "base/files/file_path.h"
#include "base/location.h"
#include "base/message_loop/message_loop_proxy.h"
#include "base/prefs/pref_service.h"
#include "base/sequenced_task_runner.h"
#include "base/stl_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/task_runner_util.h"
#include "base/values.h"
#include "components/policy/core/common/policy_pref_names.h"
#include "components/user_prefs/pref_registry_syncable.h"
#include "net/base/load_flags.h"
#include "net/base/net_util.h"
#include "net/url_request/url_request.h"
using url_matcher::URLMatcher;
using url_matcher::URLMatcherCondition;
using url_matcher::URLMatcherConditionFactory;
using url_matcher::URLMatcherConditionSet;
using url_matcher::URLMatcherPortFilter;
using url_matcher::URLMatcherSchemeFilter;
namespace policy {
namespace {
const char kFileScheme[] = "file";
const size_t kMaxFiltersPerPolicy = 1000;
scoped_ptr<URLBlacklist> BuildBlacklist(
scoped_ptr<base::ListValue> block,
scoped_ptr<base::ListValue> allow,
URLBlacklist::SegmentURLCallback segment_url) {
scoped_ptr<URLBlacklist> blacklist(new URLBlacklist(segment_url));
blacklist->Block(block.get());
blacklist->Allow(allow.get());
return blacklist.Pass();
}
}
struct URLBlacklist::FilterComponents {
FilterComponents() : port(0), match_subdomains(true), allow(true) {}
~FilterComponents() {}
std::string scheme;
std::string host;
uint16 port;
std::string path;
bool match_subdomains;
bool allow;
};
URLBlacklist::URLBlacklist(SegmentURLCallback segment_url)
: segment_url_(segment_url), id_(0), url_matcher_(new URLMatcher) {}
URLBlacklist::~URLBlacklist() {}
void URLBlacklist::AddFilters(bool allow,
const base::ListValue* list) {
URLMatcherConditionSet::Vector all_conditions;
size_t size = std::min(kMaxFiltersPerPolicy, list->GetSize());
for (size_t i = 0; i < size; ++i) {
std::string pattern;
bool success = list->GetString(i, &pattern);
DCHECK(success);
FilterComponents components;
components.allow = allow;
if (!FilterToComponents(segment_url_, pattern, &components.scheme,
&components.host, &components.match_subdomains,
&components.port, &components.path)) {
LOG(ERROR) << "Invalid pattern " << pattern;
continue;
}
all_conditions.push_back(
CreateConditionSet(url_matcher_.get(), ++id_, components.scheme,
components.host, components.match_subdomains,
components.port, components.path));
filters_[id_] = components;
}
url_matcher_->AddConditionSets(all_conditions);
}
void URLBlacklist::Block(const base::ListValue* filters) {
AddFilters(false, filters);
}
void URLBlacklist::Allow(const base::ListValue* filters) {
AddFilters(true, filters);
}
bool URLBlacklist::IsURLBlocked(const GURL& url) const {
std::set<URLMatcherConditionSet::ID> matching_ids =
url_matcher_->MatchURL(url);
const FilterComponents* max = NULL;
for (std::set<URLMatcherConditionSet::ID>::iterator id = matching_ids.begin();
id != matching_ids.end(); ++id) {
std::map<int, FilterComponents>::const_iterator it = filters_.find(*id);
DCHECK(it != filters_.end());
const FilterComponents& filter = it->second;
if (!max || FilterTakesPrecedence(filter, *max))
max = &filter;
}
if (!max)
return false;
return !max->allow;
}
size_t URLBlacklist::Size() const {
return filters_.size();
}
bool URLBlacklist::FilterToComponents(SegmentURLCallback segment_url,
const std::string& filter,
std::string* scheme,
std::string* host,
bool* match_subdomains,
uint16* port,
std::string* path) {
url_parse::Parsed parsed;
if (segment_url(filter, &parsed) == kFileScheme) {
base::FilePath file_path;
if (!net::FileURLToFilePath(GURL(filter), &file_path))
return false;
*scheme = kFileScheme;
host->clear();
*match_subdomains = true;
*port = 0;
*path = (filter == "file://*") ? "" : file_path.AsUTF8Unsafe();
#if defined(FILE_PATH_USES_WIN_SEPARATORS)
std::replace(path->begin(), path->end(), '\\', '/');
*path = "/" + *path;
#endif
return true;
}
if (!parsed.host.is_nonempty())
return false;
if (parsed.scheme.is_nonempty())
scheme->assign(filter, parsed.scheme.begin, parsed.scheme.len);
else
scheme->clear();
host->assign(filter, parsed.host.begin, parsed.host.len);
if (*host == "*") {
host->clear();
*match_subdomains = true;
} else if ((*host)[0] == '.') {
host->erase(0, 1);
*match_subdomains = false;
} else {
url_canon::RawCanonOutputT<char> output;
url_canon::CanonHostInfo host_info;
url_canon::CanonicalizeHostVerbose(filter.c_str(), parsed.host,
&output, &host_info);
if (host_info.family == url_canon::CanonHostInfo::NEUTRAL) {
*host = "." + *host;
*match_subdomains = true;
} else {
*match_subdomains = false;
}
}
if (parsed.port.is_nonempty()) {
int int_port;
if (!base::StringToInt(filter.substr(parsed.port.begin, parsed.port.len),
&int_port)) {
return false;
}
if (int_port <= 0 || int_port > kuint16max)
return false;
*port = int_port;
} else {
*port = 0;
}
if (parsed.path.is_nonempty())
path->assign(filter, parsed.path.begin, parsed.path.len);
else
path->clear();
return true;
}
scoped_refptr<URLMatcherConditionSet> URLBlacklist::CreateConditionSet(
URLMatcher* url_matcher,
int id,
const std::string& scheme,
const std::string& host,
bool match_subdomains,
uint16 port,
const std::string& path) {
URLMatcherConditionFactory* condition_factory =
url_matcher->condition_factory();
std::set<URLMatcherCondition> conditions;
conditions.insert(match_subdomains ?
condition_factory->CreateHostSuffixPathPrefixCondition(host, path) :
condition_factory->CreateHostEqualsPathPrefixCondition(host, path));
scoped_ptr<URLMatcherSchemeFilter> scheme_filter;
if (!scheme.empty())
scheme_filter.reset(new URLMatcherSchemeFilter(scheme));
scoped_ptr<URLMatcherPortFilter> port_filter;
if (port != 0) {
std::vector<URLMatcherPortFilter::Range> ranges;
ranges.push_back(URLMatcherPortFilter::CreateRange(port));
port_filter.reset(new URLMatcherPortFilter(ranges));
}
return new URLMatcherConditionSet(id, conditions,
scheme_filter.Pass(), port_filter.Pass());
}
bool URLBlacklist::FilterTakesPrecedence(const FilterComponents& lhs,
const FilterComponents& rhs) {
if (lhs.match_subdomains && !rhs.match_subdomains)
return false;
if (!lhs.match_subdomains && rhs.match_subdomains)
return true;
size_t host_length = lhs.host.length();
size_t other_host_length = rhs.host.length();
if (host_length != other_host_length)
return host_length > other_host_length;
size_t path_length = lhs.path.length();
size_t other_path_length = rhs.path.length();
if (path_length != other_path_length)
return path_length > other_path_length;
if (lhs.allow && !rhs.allow)
return true;
return false;
}
URLBlacklistManager::URLBlacklistManager(
PrefService* pref_service,
const scoped_refptr<base::SequencedTaskRunner>& background_task_runner,
const scoped_refptr<base::SequencedTaskRunner>& io_task_runner,
URLBlacklist::SegmentURLCallback segment_url,
OverrideBlacklistCallback override_blacklist)
: ui_weak_ptr_factory_(this),
pref_service_(pref_service),
background_task_runner_(background_task_runner),
io_task_runner_(io_task_runner),
segment_url_(segment_url),
override_blacklist_(override_blacklist),
io_weak_ptr_factory_(this),
ui_task_runner_(base::MessageLoopProxy::current()),
blacklist_(new URLBlacklist(segment_url)) {
pref_change_registrar_.Init(pref_service_);
base::Closure callback = base::Bind(&URLBlacklistManager::ScheduleUpdate,
base::Unretained(this));
pref_change_registrar_.Add(policy_prefs::kUrlBlacklist, callback);
pref_change_registrar_.Add(policy_prefs::kUrlWhitelist, callback);
if (pref_service_->HasPrefPath(policy_prefs::kUrlBlacklist))
Update();
}
void URLBlacklistManager::ShutdownOnUIThread() {
DCHECK(ui_task_runner_->RunsTasksOnCurrentThread());
ui_weak_ptr_factory_.InvalidateWeakPtrs();
pref_change_registrar_.RemoveAll();
}
URLBlacklistManager::~URLBlacklistManager() {
}
void URLBlacklistManager::ScheduleUpdate() {
DCHECK(ui_task_runner_->RunsTasksOnCurrentThread());
ui_weak_ptr_factory_.InvalidateWeakPtrs();
ui_task_runner_->PostTask(
FROM_HERE,
base::Bind(&URLBlacklistManager::Update,
ui_weak_ptr_factory_.GetWeakPtr()));
}
void URLBlacklistManager::Update() {
DCHECK(ui_task_runner_->RunsTasksOnCurrentThread());
scoped_ptr<base::ListValue> block(
pref_service_->GetList(policy_prefs::kUrlBlacklist)->DeepCopy());
scoped_ptr<base::ListValue> allow(
pref_service_->GetList(policy_prefs::kUrlWhitelist)->DeepCopy());
io_task_runner_->PostTask(FROM_HERE,
base::Bind(&URLBlacklistManager::UpdateOnIO,
base::Unretained(this),
base::Passed(&block),
base::Passed(&allow)));
}
void URLBlacklistManager::UpdateOnIO(scoped_ptr<base::ListValue> block,
scoped_ptr<base::ListValue> allow) {
DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
base::PostTaskAndReplyWithResult(
background_task_runner_,
FROM_HERE,
base::Bind(&BuildBlacklist,
base::Passed(&block),
base::Passed(&allow),
segment_url_),
base::Bind(&URLBlacklistManager::SetBlacklist,
io_weak_ptr_factory_.GetWeakPtr()));
}
void URLBlacklistManager::SetBlacklist(scoped_ptr<URLBlacklist> blacklist) {
DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
blacklist_ = blacklist.Pass();
}
bool URLBlacklistManager::IsURLBlocked(const GURL& url) const {
DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
return blacklist_->IsURLBlocked(url);
}
bool URLBlacklistManager::IsRequestBlocked(
const net::URLRequest& request) const {
DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
#if !defined(OS_IOS)
int filter_flags = net::LOAD_MAIN_FRAME | net::LOAD_SUB_FRAME;
if ((request.load_flags() & filter_flags) == 0)
return false;
#endif
bool block = false;
if (override_blacklist_.Run(request.url(), &block))
return block;
return IsURLBlocked(request.url());
}
void URLBlacklistManager::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) {
registry->RegisterListPref(policy_prefs::kUrlBlacklist,
user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
registry->RegisterListPref(policy_prefs::kUrlWhitelist,
user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
}
}