716cb28430
* chore: bump chromium in DEPS to 1e9f9a24aa12bea9cf194a82a7e249bd1242ec4f * chore: update patches * Make WebContents' theme color a base::Optional<SkColor> https://chromium-review.googlesource.com/c/chromium/src/+/1540022 * update autofill patch for incorrect header includes * Move Shell messages to web_test and rename to BlinkTest. https://chromium-review.googlesource.com/c/chromium/src/+/1525181 * Make PlatformNotificationServiceImpl a KeyedService. https://chromium-review.googlesource.com/c/chromium/src/+/1336150 * Move MediaPlayerId to its own file. https://chromium-review.googlesource.com/c/chromium/src/+/1547057 * Remove net/base/completion_callback.h, which is no longer used https://chromium-review.googlesource.com/c/chromium/src/+/1552821 * AW NS: support file scheme cookies https://chromium-review.googlesource.com/c/chromium/src/+/1533486 * Remove SecurityInfo and adapt remaining consumers https://chromium-review.googlesource.com/c/chromium/src/+/1509455 * Remove deprecated type-specific number to string conversion functions https://chromium-review.googlesource.com/c/chromium/src/+/1545881 * DevTools: Adding new performance histograms for launch of top 4 tools https://chromium-review.googlesource.com/c/chromium/src/+/1506388 * Update include paths for //base/hash/hash.h https://chromium-review.googlesource.com/c/chromium/src/+/1544630 * build: Disable ensure_gn_version gclient hook for mac CI checkout * update patches * use maybe version of v8::String::NewFromTwoByte * bump appveyor image version * fix mac ci hopefully * Convert enum to enum class for MenuAnchorPosition https://chromium-review.googlesource.com/c/chromium/src/+/1530508 * use maybe version of ToObject * RenderViewHost::GetProcess is no longer const * Unrefcount AuthChallengeInfo https://chromium-review.googlesource.com/c/chromium/src/+/1550631 * MenuButtonController takes Button rather than MenuButton https://chromium-review.googlesource.com/c/chromium/src/+/1500935 * add //ui/views_bridge_mac to deps to fix link error * forward declare views::Button in atom::MenuDelegate * more v8 patches * base/{=> hash}/md5.h https://chromium-review.googlesource.com/c/chromium/src/+/1535124 * gfx::{PlatformFontWin => win}::* https://chromium-review.googlesource.com/c/chromium/src/+/1534178 * fix v8 patches * [base] Rename TaskScheduler to ThreadPool https://chromium-review.googlesource.com/c/chromium/src/+/1561552 * use internal_config_base for bytecode_builtins_list_generator avoids windows link errors * FIXME: temporarily disable v8/breakpad integration * FIXME: temporarily disable prevent-will-redirect test * FIXME: disable neon on aarch64 pending crbug.com/953815 * update to account for WebCursor refactor https://chromium-review.googlesource.com/c/chromium/src/+/1562755 * enable stack dumping on appveyor * Revert "FIXME: disable neon on aarch64 pending crbug.com/953815" This reverts commit 57f082026be3d83069f2a2814684abf4dc9e7b53. * fix: remove const qualifiers to match upstream * fix: remove const qualifiers to match upstream in cc files as well * don't throw an error when testing if an object is an object * use non-deprecated Buffer constructor * Remove net::CookieSameSite::DEFAULT_MODE enum value https://chromium-review.googlesource.com/c/chromium/src/+/1567955 * depend on modded dbus-native to work around buffer deprecation https://github.com/sidorares/dbus-native/pull/262 * revert clang roll to fix arm build on linux * fixup! depend on modded dbus-native to work around buffer deprecation need more coffee * update coffee-script * robustify verify-mksnapshot w.r.t. command-line parameters * Revert "robustify verify-mksnapshot w.r.t. command-line parameters" This reverts commit a49af01411f684f6025528d604895c3696e0bc57. * fix mksnapshot by matching args * update patches * TMP: enable rdp on appveyor * Changed ContentBrowserClient::CreateQuotaPermissionContext() to return scoped_refptr. https://chromium-review.googlesource.com/c/chromium/src/+/1569376 * Make content::ResourceType an enum class. https://chromium-review.googlesource.com/c/chromium/src/+/1569345 * fixup! Make content::ResourceType an enum class. * turn off rdp * use net::CompletionRepeatingCallback instead of base::Callback<void(int)> * remove disable_ensure_gn_version_gclient_hook.patch * copy repeating callback instead of std::move * fix lint * add completion_repeating_callback.h include
407 lines
14 KiB
C++
407 lines
14 KiB
C++
// Copyright (c) 2015 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "atom/browser/api/atom_api_cookies.h"
|
|
|
|
#include <memory>
|
|
#include <utility>
|
|
|
|
#include "atom/browser/atom_browser_context.h"
|
|
#include "atom/browser/cookie_change_notifier.h"
|
|
#include "atom/common/native_mate_converters/callback.h"
|
|
#include "atom/common/native_mate_converters/gurl_converter.h"
|
|
#include "atom/common/native_mate_converters/value_converter.h"
|
|
#include "base/task/post_task.h"
|
|
#include "base/time/time.h"
|
|
#include "base/values.h"
|
|
#include "content/public/browser/browser_context.h"
|
|
#include "content/public/browser/browser_task_traits.h"
|
|
#include "content/public/browser/browser_thread.h"
|
|
#include "native_mate/dictionary.h"
|
|
#include "native_mate/object_template_builder.h"
|
|
#include "net/cookies/canonical_cookie.h"
|
|
#include "net/cookies/cookie_store.h"
|
|
#include "net/cookies/cookie_util.h"
|
|
#include "net/url_request/url_request_context.h"
|
|
#include "net/url_request/url_request_context_getter.h"
|
|
|
|
using content::BrowserThread;
|
|
|
|
namespace mate {
|
|
|
|
template <>
|
|
struct Converter<atom::api::Cookies::Error> {
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
atom::api::Cookies::Error val) {
|
|
if (val == atom::api::Cookies::SUCCESS)
|
|
return v8::Null(isolate);
|
|
else
|
|
return v8::Exception::Error(StringToV8(isolate, "Setting cookie failed"));
|
|
}
|
|
};
|
|
|
|
template <>
|
|
struct Converter<net::CanonicalCookie> {
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
const net::CanonicalCookie& val) {
|
|
mate::Dictionary dict(isolate, v8::Object::New(isolate));
|
|
dict.Set("name", val.Name());
|
|
dict.Set("value", val.Value());
|
|
dict.Set("domain", val.Domain());
|
|
dict.Set("hostOnly", net::cookie_util::DomainIsHostOnly(val.Domain()));
|
|
dict.Set("path", val.Path());
|
|
dict.Set("secure", val.IsSecure());
|
|
dict.Set("httpOnly", val.IsHttpOnly());
|
|
dict.Set("session", !val.IsPersistent());
|
|
if (val.IsPersistent())
|
|
dict.Set("expirationDate", val.ExpiryDate().ToDoubleT());
|
|
return dict.GetHandle();
|
|
}
|
|
};
|
|
|
|
template <>
|
|
struct Converter<network::mojom::CookieChangeCause> {
|
|
static v8::Local<v8::Value> ToV8(
|
|
v8::Isolate* isolate,
|
|
const network::mojom::CookieChangeCause& val) {
|
|
switch (val) {
|
|
case network::mojom::CookieChangeCause::INSERTED:
|
|
case network::mojom::CookieChangeCause::EXPLICIT:
|
|
return mate::StringToV8(isolate, "explicit");
|
|
case network::mojom::CookieChangeCause::OVERWRITE:
|
|
return mate::StringToV8(isolate, "overwrite");
|
|
case network::mojom::CookieChangeCause::EXPIRED:
|
|
return mate::StringToV8(isolate, "expired");
|
|
case network::mojom::CookieChangeCause::EVICTED:
|
|
return mate::StringToV8(isolate, "evicted");
|
|
case network::mojom::CookieChangeCause::EXPIRED_OVERWRITE:
|
|
return mate::StringToV8(isolate, "expired-overwrite");
|
|
default:
|
|
return mate::StringToV8(isolate, "unknown");
|
|
}
|
|
}
|
|
};
|
|
|
|
} // namespace mate
|
|
|
|
namespace atom {
|
|
|
|
namespace api {
|
|
|
|
namespace {
|
|
|
|
// Returns whether |domain| matches |filter|.
|
|
bool MatchesDomain(std::string filter, const std::string& domain) {
|
|
// Add a leading '.' character to the filter domain if it doesn't exist.
|
|
if (net::cookie_util::DomainIsHostOnly(filter))
|
|
filter.insert(0, ".");
|
|
|
|
std::string sub_domain(domain);
|
|
// Strip any leading '.' character from the input cookie domain.
|
|
if (!net::cookie_util::DomainIsHostOnly(sub_domain))
|
|
sub_domain = sub_domain.substr(1);
|
|
|
|
// Now check whether the domain argument is a subdomain of the filter domain.
|
|
for (sub_domain.insert(0, "."); sub_domain.length() >= filter.length();) {
|
|
if (sub_domain == filter)
|
|
return true;
|
|
const size_t next_dot = sub_domain.find('.', 1); // Skip over leading dot.
|
|
sub_domain.erase(0, next_dot);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// Returns whether |cookie| matches |filter|.
|
|
bool MatchesCookie(const base::DictionaryValue* filter,
|
|
const net::CanonicalCookie& cookie) {
|
|
std::string str;
|
|
bool b;
|
|
if (filter->GetString("name", &str) && str != cookie.Name())
|
|
return false;
|
|
if (filter->GetString("path", &str) && str != cookie.Path())
|
|
return false;
|
|
if (filter->GetString("domain", &str) && !MatchesDomain(str, cookie.Domain()))
|
|
return false;
|
|
if (filter->GetBoolean("secure", &b) && b != cookie.IsSecure())
|
|
return false;
|
|
if (filter->GetBoolean("session", &b) && b != !cookie.IsPersistent())
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
// Helper to returns the CookieStore.
|
|
inline net::CookieStore* GetCookieStore(
|
|
scoped_refptr<net::URLRequestContextGetter> getter) {
|
|
return getter->GetURLRequestContext()->cookie_store();
|
|
}
|
|
|
|
// Remove cookies from |list| not matching |filter|, and pass it to |callback|.
|
|
void FilterCookies(std::unique_ptr<base::DictionaryValue> filter,
|
|
util::Promise promise,
|
|
const net::CookieList& list,
|
|
const net::CookieStatusList& excluded_list) {
|
|
net::CookieList result;
|
|
for (const auto& cookie : list) {
|
|
if (MatchesCookie(filter.get(), cookie))
|
|
result.push_back(cookie);
|
|
}
|
|
|
|
base::PostTaskWithTraits(
|
|
FROM_HERE, {BrowserThread::UI},
|
|
base::BindOnce(util::Promise::ResolvePromise<const net::CookieList&>,
|
|
std::move(promise), std::move(result)));
|
|
}
|
|
|
|
// Receives cookies matching |filter| in IO thread.
|
|
void GetCookiesOnIO(scoped_refptr<net::URLRequestContextGetter> getter,
|
|
std::unique_ptr<base::DictionaryValue> filter,
|
|
util::Promise promise) {
|
|
std::string url;
|
|
filter->GetString("url", &url);
|
|
|
|
auto filtered_callback =
|
|
base::BindOnce(FilterCookies, std::move(filter), std::move(promise));
|
|
|
|
// Empty url will match all url cookies.
|
|
if (url.empty())
|
|
GetCookieStore(getter)->GetAllCookiesAsync(std::move(filtered_callback));
|
|
else
|
|
GetCookieStore(getter)->GetAllCookiesForURLAsync(
|
|
GURL(url), std::move(filtered_callback));
|
|
}
|
|
|
|
// Removes cookie with |url| and |name| in IO thread.
|
|
void RemoveCookieOnIO(scoped_refptr<net::URLRequestContextGetter> getter,
|
|
const GURL& url,
|
|
const std::string& name,
|
|
util::Promise promise) {
|
|
net::CookieDeletionInfo cookie_info;
|
|
cookie_info.url = url;
|
|
cookie_info.name = name;
|
|
GetCookieStore(getter)->DeleteAllMatchingInfoAsync(
|
|
std::move(cookie_info),
|
|
base::BindOnce(
|
|
[](util::Promise promise, uint32_t num_deleted) {
|
|
util::Promise::ResolveEmptyPromise(std::move(promise));
|
|
},
|
|
std::move(promise)));
|
|
}
|
|
|
|
// Callback of SetCookie.
|
|
void OnSetCookie(util::Promise promise,
|
|
net::CanonicalCookie::CookieInclusionStatus status) {
|
|
std::string errmsg;
|
|
switch (status) {
|
|
case net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_HTTP_ONLY:
|
|
errmsg = "Failed to create httponly cookie";
|
|
break;
|
|
case net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_SECURE_ONLY:
|
|
errmsg = "Cannot create a secure cookie from an insecure URL";
|
|
break;
|
|
case net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_FAILURE_TO_STORE:
|
|
errmsg = "Failed to parse cookie";
|
|
break;
|
|
case net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_INVALID_DOMAIN:
|
|
errmsg = "Failed to get cookie domain";
|
|
break;
|
|
case net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_INVALID_PREFIX:
|
|
errmsg = "Failed because the cookie violated prefix rules.";
|
|
break;
|
|
case net::CanonicalCookie::CookieInclusionStatus::
|
|
EXCLUDE_NONCOOKIEABLE_SCHEME:
|
|
errmsg = "Cannot set cookie for current scheme";
|
|
break;
|
|
case net::CanonicalCookie::CookieInclusionStatus::INCLUDE:
|
|
errmsg = "";
|
|
break;
|
|
default:
|
|
errmsg = "Setting cookie failed";
|
|
break;
|
|
}
|
|
if (errmsg.empty()) {
|
|
base::PostTaskWithTraits(
|
|
FROM_HERE, {BrowserThread::UI},
|
|
base::BindOnce(util::Promise::ResolveEmptyPromise, std::move(promise)));
|
|
} else {
|
|
base::PostTaskWithTraits(
|
|
FROM_HERE, {BrowserThread::UI},
|
|
base::BindOnce(util::Promise::RejectPromise, std::move(promise),
|
|
std::move(errmsg)));
|
|
}
|
|
}
|
|
|
|
// Flushes cookie store in IO thread.
|
|
void FlushCookieStoreOnIOThread(
|
|
scoped_refptr<net::URLRequestContextGetter> getter,
|
|
util::Promise promise) {
|
|
GetCookieStore(getter)->FlushStore(
|
|
base::BindOnce(util::Promise::ResolveEmptyPromise, std::move(promise)));
|
|
}
|
|
|
|
// Sets cookie with |details| in IO thread.
|
|
void SetCookieOnIO(scoped_refptr<net::URLRequestContextGetter> getter,
|
|
std::unique_ptr<base::DictionaryValue> details,
|
|
util::Promise promise) {
|
|
std::string url_string, name, value, domain, path;
|
|
bool secure = false;
|
|
bool http_only = false;
|
|
double creation_date;
|
|
double expiration_date;
|
|
double last_access_date;
|
|
details->GetString("url", &url_string);
|
|
details->GetString("name", &name);
|
|
details->GetString("value", &value);
|
|
details->GetString("domain", &domain);
|
|
details->GetString("path", &path);
|
|
details->GetBoolean("secure", &secure);
|
|
details->GetBoolean("httpOnly", &http_only);
|
|
|
|
base::Time creation_time;
|
|
if (details->GetDouble("creationDate", &creation_date)) {
|
|
creation_time = (creation_date == 0)
|
|
? base::Time::UnixEpoch()
|
|
: base::Time::FromDoubleT(creation_date);
|
|
}
|
|
|
|
base::Time expiration_time;
|
|
if (details->GetDouble("expirationDate", &expiration_date)) {
|
|
expiration_time = (expiration_date == 0)
|
|
? base::Time::UnixEpoch()
|
|
: base::Time::FromDoubleT(expiration_date);
|
|
}
|
|
|
|
base::Time last_access_time;
|
|
if (details->GetDouble("lastAccessDate", &last_access_date)) {
|
|
last_access_time = (last_access_date == 0)
|
|
? base::Time::UnixEpoch()
|
|
: base::Time::FromDoubleT(last_access_date);
|
|
}
|
|
|
|
GURL url(url_string);
|
|
std::unique_ptr<net::CanonicalCookie> canonical_cookie(
|
|
net::CanonicalCookie::CreateSanitizedCookie(
|
|
url, name, value, domain, path, creation_time, expiration_time,
|
|
last_access_time, secure, http_only,
|
|
net::CookieSameSite::NO_RESTRICTION, net::COOKIE_PRIORITY_DEFAULT));
|
|
auto completion_callback = base::BindOnce(OnSetCookie, std::move(promise));
|
|
if (!canonical_cookie || !canonical_cookie->IsCanonical()) {
|
|
std::move(completion_callback)
|
|
.Run(net::CanonicalCookie::CookieInclusionStatus::
|
|
EXCLUDE_FAILURE_TO_STORE);
|
|
return;
|
|
}
|
|
if (url.is_empty()) {
|
|
std::move(completion_callback)
|
|
.Run(net::CanonicalCookie::CookieInclusionStatus::
|
|
EXCLUDE_INVALID_DOMAIN);
|
|
return;
|
|
}
|
|
if (name.empty()) {
|
|
std::move(completion_callback)
|
|
.Run(net::CanonicalCookie::CookieInclusionStatus::
|
|
EXCLUDE_FAILURE_TO_STORE);
|
|
return;
|
|
}
|
|
net::CookieOptions options;
|
|
if (http_only) {
|
|
options.set_include_httponly();
|
|
}
|
|
GetCookieStore(getter)->SetCanonicalCookieAsync(
|
|
std::move(canonical_cookie), url.scheme(), options,
|
|
std::move(completion_callback));
|
|
}
|
|
|
|
} // namespace
|
|
|
|
Cookies::Cookies(v8::Isolate* isolate, AtomBrowserContext* browser_context)
|
|
: browser_context_(browser_context) {
|
|
Init(isolate);
|
|
cookie_change_subscription_ =
|
|
browser_context_->cookie_change_notifier()->RegisterCookieChangeCallback(
|
|
base::Bind(&Cookies::OnCookieChanged, base::Unretained(this)));
|
|
}
|
|
|
|
Cookies::~Cookies() {}
|
|
|
|
v8::Local<v8::Promise> Cookies::Get(const base::DictionaryValue& filter) {
|
|
util::Promise promise(isolate());
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
|
|
auto copy = base::DictionaryValue::From(
|
|
base::Value::ToUniquePtrValue(filter.Clone()));
|
|
auto* getter = browser_context_->GetRequestContext();
|
|
base::PostTaskWithTraits(
|
|
FROM_HERE, {BrowserThread::IO},
|
|
base::BindOnce(GetCookiesOnIO, base::RetainedRef(getter), std::move(copy),
|
|
std::move(promise)));
|
|
|
|
return handle;
|
|
}
|
|
|
|
v8::Local<v8::Promise> Cookies::Remove(const GURL& url,
|
|
const std::string& name) {
|
|
util::Promise promise(isolate());
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
|
|
auto* getter = browser_context_->GetRequestContext();
|
|
base::PostTaskWithTraits(
|
|
FROM_HERE, {BrowserThread::IO},
|
|
base::BindOnce(RemoveCookieOnIO, base::RetainedRef(getter), url, name,
|
|
std::move(promise)));
|
|
|
|
return handle;
|
|
}
|
|
|
|
v8::Local<v8::Promise> Cookies::Set(const base::DictionaryValue& details) {
|
|
util::Promise promise(isolate());
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
|
|
auto copy = base::DictionaryValue::From(
|
|
base::Value::ToUniquePtrValue(details.Clone()));
|
|
auto* getter = browser_context_->GetRequestContext();
|
|
base::PostTaskWithTraits(
|
|
FROM_HERE, {BrowserThread::IO},
|
|
base::BindOnce(SetCookieOnIO, base::RetainedRef(getter), std::move(copy),
|
|
std::move(promise)));
|
|
|
|
return handle;
|
|
}
|
|
|
|
v8::Local<v8::Promise> Cookies::FlushStore() {
|
|
util::Promise promise(isolate());
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
|
|
auto* getter = browser_context_->GetRequestContext();
|
|
base::PostTaskWithTraits(
|
|
FROM_HERE, {BrowserThread::IO},
|
|
base::BindOnce(FlushCookieStoreOnIOThread, base::RetainedRef(getter),
|
|
std::move(promise)));
|
|
|
|
return handle;
|
|
}
|
|
|
|
void Cookies::OnCookieChanged(const CookieDetails* details) {
|
|
Emit("changed", *(details->cookie), details->cause, details->removed);
|
|
}
|
|
|
|
// static
|
|
mate::Handle<Cookies> Cookies::Create(v8::Isolate* isolate,
|
|
AtomBrowserContext* browser_context) {
|
|
return mate::CreateHandle(isolate, new Cookies(isolate, browser_context));
|
|
}
|
|
|
|
// static
|
|
void Cookies::BuildPrototype(v8::Isolate* isolate,
|
|
v8::Local<v8::FunctionTemplate> prototype) {
|
|
prototype->SetClassName(mate::StringToV8(isolate, "Cookies"));
|
|
mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
|
|
.SetMethod("get", &Cookies::Get)
|
|
.SetMethod("remove", &Cookies::Remove)
|
|
.SetMethod("set", &Cookies::Set)
|
|
.SetMethod("flushStore", &Cookies::FlushStore);
|
|
}
|
|
|
|
} // namespace api
|
|
|
|
} // namespace atom
|