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/prerender/prerender_manager.h"
16 #include "chrome/browser/prerender/prerender_manager_factory.h"
17 #include "chrome/browser/profiles/profile.h"
18 #include "chrome/browser/profiles/profile_manager.h"
19 #include "chrome/common/chrome_constants.h"
20 #include "chrome/common/chrome_switches.h"
21 #include "components/os_crypt/os_crypt.h"
22 #include "content/public/browser/browser_thread.h"
23 #include "content/public/browser/cookie_crypto_delegate.h"
24 #include "content/public/browser/cookie_store_factory.h"
25 #include "content/public/browser/notification_service.h"
26 #include "content/public/common/content_constants.h"
27 #include "extensions/common/constants.h"
29 using content::BrowserThread
;
33 class ChromeCookieMonsterDelegate
: public net::CookieMonsterDelegate
{
35 explicit ChromeCookieMonsterDelegate(Profile
* profile
)
37 base::Bind(&GetProfileOnUI
, g_browser_process
->profile_manager(),
39 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI
));
43 // net::CookieMonster::Delegate implementation.
44 virtual void OnCookieChanged(
45 const net::CanonicalCookie
& cookie
,
47 net::CookieMonster::Delegate::ChangeCause cause
) OVERRIDE
{
48 BrowserThread::PostTask(
49 BrowserThread::UI
, FROM_HERE
,
50 base::Bind(&ChromeCookieMonsterDelegate::OnCookieChangedAsyncHelper
,
51 this, cookie
, removed
, cause
));
54 virtual void OnLoaded() OVERRIDE
{
55 BrowserThread::PostTask(
56 BrowserThread::UI
, FROM_HERE
,
57 base::Bind(&ChromeCookieMonsterDelegate::OnLoadedAsyncHelper
,
62 virtual ~ChromeCookieMonsterDelegate() {}
64 static Profile
* GetProfileOnUI(ProfileManager
* profile_manager
,
66 if (profile_manager
->IsValidProfile(profile
))
71 void OnCookieChangedAsyncHelper(
72 const net::CanonicalCookie
& cookie
,
74 net::CookieMonster::Delegate::ChangeCause cause
) {
75 Profile
* profile
= profile_getter_
.Run();
77 ChromeCookieDetails
cookie_details(&cookie
, removed
, cause
);
78 content::NotificationService::current()->Notify(
79 chrome::NOTIFICATION_COOKIE_CHANGED
,
80 content::Source
<Profile
>(profile
),
81 content::Details
<ChromeCookieDetails
>(&cookie_details
));
85 void OnLoadedAsyncHelper() {
86 Profile
* profile
= profile_getter_
.Run();
88 prerender::PrerenderManager
* prerender_manager
=
89 prerender::PrerenderManagerFactory::GetForProfile(profile
);
90 if (prerender_manager
)
91 prerender_manager
->OnCookieStoreLoaded();
95 const base::Callback
<Profile
*(void)> profile_getter_
;
100 namespace chrome_browser_net
{
102 bool IsCookieRecordMode() {
103 const CommandLine
& command_line
= *CommandLine::ForCurrentProcess();
104 // Only allow Record Mode if we are in a Debug build or where we are running
105 // a cycle, and the user has limited control.
106 return command_line
.HasSwitch(switches::kRecordMode
) &&
107 chrome::kRecordModeEnabled
;
110 bool ShouldUseInMemoryCookiesAndCache() {
111 const CommandLine
& command_line
= *CommandLine::ForCurrentProcess();
112 return IsCookieRecordMode() ||
113 command_line
.HasSwitch(switches::kPlaybackMode
);
116 net::CookieMonsterDelegate
* CreateCookieDelegate(Profile
* profile
) {
117 return new EvictedDomainCookieCounter(
118 new ChromeCookieMonsterDelegate(profile
));
121 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
124 // Use the operating system's mechanisms to encrypt cookies before writing
125 // them to persistent store. Currently this only is done with desktop OS's
126 // because ChromeOS and Android already protect the entire profile contents.
128 // TODO(bcwhite): Enable on MACOSX -- requires all Cookie tests to call
129 // OSCrypt::UseMockKeychain or will hang waiting for user input.
130 class CookieOSCryptoDelegate
: public content::CookieCryptoDelegate
{
132 virtual bool EncryptString(const std::string
& plaintext
,
133 std::string
* ciphertext
) OVERRIDE
;
134 virtual bool DecryptString(const std::string
& ciphertext
,
135 std::string
* plaintext
) OVERRIDE
;
138 bool CookieOSCryptoDelegate::EncryptString(const std::string
& plaintext
,
139 std::string
* ciphertext
) {
140 return OSCrypt::EncryptString(plaintext
, ciphertext
);
143 bool CookieOSCryptoDelegate::DecryptString(const std::string
& ciphertext
,
144 std::string
* plaintext
) {
145 return OSCrypt::DecryptString(ciphertext
, plaintext
);
148 // Using a LazyInstance is safe here because this class is stateless and
149 // requires 0 initialization.
150 base::LazyInstance
<CookieOSCryptoDelegate
> g_cookie_crypto_delegate
=
151 LAZY_INSTANCE_INITIALIZER
;
155 content::CookieCryptoDelegate
* GetCookieCryptoDelegate() {
156 return g_cookie_crypto_delegate
.Pointer();
158 #else // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
159 content::CookieCryptoDelegate
* GetCookieCryptoDelegate() {
162 #endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
164 } // namespace chrome_browser_net