1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/net/cookie_store_util.h"
8 #include "base/callback.h"
9 #include "base/command_line.h"
10 #include "base/lazy_instance.h"
11 #include "chrome/browser/browser_process.h"
12 #include "chrome/browser/chrome_notification_types.h"
13 #include "chrome/browser/net/chrome_cookie_notification_details.h"
14 #include "chrome/browser/net/evicted_domain_cookie_counter.h"
15 #include "chrome/browser/profiles/profile.h"
16 #include "chrome/browser/profiles/profile_manager.h"
17 #include "chrome/common/chrome_constants.h"
18 #include "chrome/common/chrome_switches.h"
19 #include "components/os_crypt/os_crypt.h"
20 #include "content/public/browser/browser_thread.h"
21 #include "content/public/browser/cookie_store_factory.h"
22 #include "content/public/browser/notification_service.h"
23 #include "content/public/common/content_constants.h"
24 #include "extensions/common/constants.h"
25 #include "net/extras/sqlite/cookie_crypto_delegate.h"
27 using content::BrowserThread
;
31 class ChromeCookieMonsterDelegate
: public net::CookieMonsterDelegate
{
33 explicit ChromeCookieMonsterDelegate(Profile
* profile
)
35 base::Bind(&GetProfileOnUI
, g_browser_process
->profile_manager(),
37 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI
));
41 // net::CookieMonster::Delegate implementation.
43 const net::CanonicalCookie
& cookie
,
45 net::CookieMonster::Delegate::ChangeCause cause
) override
{
46 BrowserThread::PostTask(
47 BrowserThread::UI
, FROM_HERE
,
48 base::Bind(&ChromeCookieMonsterDelegate::OnCookieChangedAsyncHelper
,
49 this, cookie
, removed
, cause
));
53 ~ChromeCookieMonsterDelegate() override
{}
55 static Profile
* GetProfileOnUI(ProfileManager
* profile_manager
,
57 if (profile_manager
->IsValidProfile(profile
))
62 void OnCookieChangedAsyncHelper(
63 const net::CanonicalCookie
& cookie
,
65 net::CookieMonster::Delegate::ChangeCause cause
) {
66 Profile
* profile
= profile_getter_
.Run();
68 ChromeCookieDetails
cookie_details(&cookie
, removed
, cause
);
69 content::NotificationService::current()->Notify(
70 chrome::NOTIFICATION_COOKIE_CHANGED
,
71 content::Source
<Profile
>(profile
),
72 content::Details
<ChromeCookieDetails
>(&cookie_details
));
76 const base::Callback
<Profile
*(void)> profile_getter_
;
81 namespace chrome_browser_net
{
83 net::CookieMonsterDelegate
* CreateCookieDelegate(Profile
* profile
) {
84 return new EvictedDomainCookieCounter(
85 new ChromeCookieMonsterDelegate(profile
));
88 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
91 // Use the operating system's mechanisms to encrypt cookies before writing
92 // them to persistent store. Currently this only is done with desktop OS's
93 // because ChromeOS and Android already protect the entire profile contents.
95 // TODO(bcwhite): Enable on MACOSX -- requires all Cookie tests to call
96 // OSCrypt::UseMockKeychain or will hang waiting for user input.
97 class CookieOSCryptoDelegate
: public net::CookieCryptoDelegate
{
99 bool EncryptString(const std::string
& plaintext
,
100 std::string
* ciphertext
) override
;
101 bool DecryptString(const std::string
& ciphertext
,
102 std::string
* plaintext
) override
;
105 bool CookieOSCryptoDelegate::EncryptString(const std::string
& plaintext
,
106 std::string
* ciphertext
) {
107 return OSCrypt::EncryptString(plaintext
, ciphertext
);
110 bool CookieOSCryptoDelegate::DecryptString(const std::string
& ciphertext
,
111 std::string
* plaintext
) {
112 return OSCrypt::DecryptString(ciphertext
, plaintext
);
115 // Using a LazyInstance is safe here because this class is stateless and
116 // requires 0 initialization.
117 base::LazyInstance
<CookieOSCryptoDelegate
> g_cookie_crypto_delegate
=
118 LAZY_INSTANCE_INITIALIZER
;
122 net::CookieCryptoDelegate
* GetCookieCryptoDelegate() {
123 return g_cookie_crypto_delegate
.Pointer();
125 #else // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
126 net::CookieCryptoDelegate
* GetCookieCryptoDelegate() {
129 #endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
131 } // namespace chrome_browser_net