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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_COOKIE_STORE_COOKIE_STORE_MANAGER_H_
#define CONTENT_BROWSER_COOKIE_STORE_COOKIE_STORE_MANAGER_H_
#include <memory>
#include <string>
#include <vector>
#include "base/containers/linked_list.h"
#include "base/containers/span.h"
#include "base/functional/callback.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/sequence_checker.h"
#include "base/thread_annotations.h"
#include "content/browser/cookie_store/cookie_change_subscription.h"
#include "content/browser/cookie_store/cookie_store_host.h"
#include "content/browser/service_worker/service_worker_context_core_observer.h"
#include "content/common/content_export.h"
#include "mojo/public/cpp/bindings/message.h"
#include "mojo/public/cpp/bindings/unique_receiver_set.h"
#include "third_party/blink/public/mojom/cookie_store/cookie_store.mojom.h"
#include "url/origin.h"
class GURL;
namespace blink {
class StorageKey;
} // namespace blink
namespace content {
class ServiceWorkerContextWrapper;
class ServiceWorkerRegistration;
// Manages cookie change subscriptions for a StoragePartition's service workers.
//
// Subscriptions are stored along with their associated service worker
// registrations in ServiceWorkerStorage, as user data. When a service worker is
// unregistered, its cookie change subscriptions are removed. The storage method
// (user data) is an implementation detail. Callers should not rely on it, as
// the storage method may change in the future.
//
// Instances of this class must be accessed exclusively on the UI thread,
// because they call into ServiceWorkerContextWrapper methods that are
// restricted to that thread.
class CONTENT_EXPORT CookieStoreManager
: public ServiceWorkerContextCoreObserver,
public network::mojom::CookieChangeListener {
public:
// Creates a CookieStoreManager with an empty in-memory subscription database.
//
// The in-memory subscription database must be populated with data from disk,
// by calling ReadAllSubscriptions().
explicit CookieStoreManager(
scoped_refptr<ServiceWorkerContextWrapper> service_worker_context);
CookieStoreManager(const CookieStoreManager&) = delete;
CookieStoreManager& operator=(const CookieStoreManager&) = delete;
~CookieStoreManager() override;
// Creates a mojo connection to a service worker.
//
// This is called when service workers use the Cookie Store API to subscribe
// to cookie changes or obtain the list of cookie changes.
void BindReceiver(mojo::PendingReceiver<blink::mojom::CookieStore> receiver,
const blink::StorageKey& storage_key);
// Starts loading the on-disk subscription data.
//
// Returns after scheduling the work. The callback is called with a boolean
// that indicates if the load operation succeeded.
//
// It is safe to call all the other CookieStoreManager methods during the
// loading operation. The CookieStoreManager has well-defined semantics if
// loading fails, so it is not necessary to handle loading errors.
void LoadAllSubscriptions(base::OnceCallback<void(bool)> callback);
// Processes cookie changes from a network service instance.
void ListenToCookieChanges(network::mojom::NetworkContext* network_context,
base::OnceCallback<void(bool)> callback);
// blink::mojom::CookieStore implementation
void AddSubscriptions(
int64_t service_worker_registration_id,
const blink::StorageKey& storage_key,
std::vector<blink::mojom::CookieChangeSubscriptionPtr> mojo_subscriptions,
mojo::ReportBadMessageCallback bad_message_callback,
blink::mojom::CookieStore::AddSubscriptionsCallback callback);
void RemoveSubscriptions(
int64_t service_worker_registration_id,
const blink::StorageKey& storage_key,
std::vector<blink::mojom::CookieChangeSubscriptionPtr> mojo_subscriptions,
mojo::ReportBadMessageCallback bad_message_callback,
blink::mojom::CookieStore::RemoveSubscriptionsCallback callback);
void GetSubscriptions(
int64_t service_worker_registration_id,
const blink::StorageKey& storage_key,
mojo::ReportBadMessageCallback bad_message_callback,
blink::mojom::CookieStore::GetSubscriptionsCallback callback);
// ServiceWorkerContextCoreObserver
void OnRegistrationDeleted(int64_t service_worker_registration_id,
const GURL& pattern,
const blink::StorageKey& key) override;
void OnStorageWiped() override;
// ::network::mojom::CookieChangeListener
void OnCookieChange(const net::CookieChangeInfo& change) override;
// Routes a mojo receiver from a Frame to the CookieStoreManager.
static void BindReceiverForFrame(
RenderFrameHost* render_frame_host,
mojo::PendingReceiver<blink::mojom::CookieStore> receiver);
// Routes a mojo receiver from a Service Worker to the CookieStoreManager.
static void BindReceiverForWorker(
const ServiceWorkerVersionBaseInfo& info,
mojo::PendingReceiver<blink::mojom::CookieStore> receiver);
private:
// Updates internal state with the result of loading disk subscription data.
//
// Called exactly once.
void ProcessOnDiskSubscriptions(
base::OnceCallback<void(bool)> load_callback,
const std::vector<std::pair<int64_t, std::string>>& user_data,
blink::ServiceWorkerStatusCode status);
// Runs all the callbacks waiting for on-disk subscription data.
//
// Called exactly once, after on-disk subcriptions have been loaded.
void DidLoadAllSubscriptions(bool succeeded,
base::OnceCallback<void(bool)> load_callback);
// Updates on-disk subscription data for a registration.
void StoreSubscriptions(
int64_t service_worker_registration_id,
const blink::StorageKey& storage_key,
const std::vector<std::unique_ptr<CookieChangeSubscription>>&
subscriptions,
base::OnceCallback<void(bool)> callback);
// Starts sending cookie change events to a service worker.
//
// All subscriptions must belong to the same service worker registration. This
// method is not idempotent.
void ActivateSubscriptions(
base::span<const std::unique_ptr<CookieChangeSubscription>>
subscriptions);
// Stops sending cookie change events to a service worker.
//
// All subscriptions must belong to the same service worker registration. This
// method is not idempotent.
void DeactivateSubscriptions(
base::span<const std::unique_ptr<CookieChangeSubscription>>
subscriptions);
// Sends a cookie change to interested service workers.
//
// Must only be called after the on-disk subscription data is successfully
// loaded.
void DispatchCookieChange(const net::CookieChangeInfo& change);
// Sends a cookie change event to one service worker.
void DispatchChangeEvent(
scoped_refptr<ServiceWorkerRegistration> registration,
const net::CookieChangeInfo& change);
// Called after a service worker was started so it can get a cookie change.
void DidStartWorkerForChangeEvent(
scoped_refptr<ServiceWorkerRegistration> registration,
const net::CookieChangeInfo& change,
blink::ServiceWorkerStatusCode start_worker_status);
// Instances of this class are currently bound to the UI thread, because they
// call ServiceWorkerContextWrapper methods that are restricted to that
// thread. However, the class implementation itself is thread-friendly, so it
// only checks that methods are called on the same sequence.
SEQUENCE_CHECKER(sequence_checker_);
// Used to efficiently implement OnRegistrationDeleted().
//
// When a service worker registration is removed from the system, the
// CookieStoreManager needs to remove all the cookie change subscriptions
// associated with the registration. Looking up the registration ID in the
// |subscriptions_by_registration_| map is done in O(1) time, and then each
// subscription is removed from a LinkedList in |subscription_by_url_key_| in
// O(1) time.
std::unordered_map<int64_t,
std::vector<std::unique_ptr<CookieChangeSubscription>>>
subscriptions_by_registration_ GUARDED_BY_CONTEXT(sequence_checker_);
// Used to efficiently implement DispatchCookieChange().
//
// When a cookie change notification comes from the network service, the
// CookieStoreManager needs to dispatch events to the workers with relevant
// subscriptions. |subscriptions_by_url_key_| indexes change subscriptions
// according to the eTLD+1 of the subscription's scope URL, so each cookie
// change only needs to be checked against the subscriptions of the service
// workers in the same eTLD+1. The reduction in work is signficant, given that
// checking whether a subscription matches a cookie isn't very cheap.
//
// The current implementation's performance profile could have been achieved
// with a map from eTLD+1 to registration IDs, which would not have required
// linked lists. However, the current approach is more amenable to future
// optimizations, such as partitioning by (eTLD+1, cookie name).
std::map<std::string, base::LinkedList<CookieChangeSubscription>>
subscriptions_by_url_key_ GUARDED_BY_CONTEXT(sequence_checker_);
// Used to look up and modify service worker registration data.
const scoped_refptr<ServiceWorkerContextWrapper> service_worker_context_
GUARDED_BY_CONTEXT(sequence_checker_);
// Tracks the open mojo pipes created by CreateService().
//
// Each pipe is associated with the CookieStoreHost instance that it is
// connected to. When the pipe is closed, the UniqueReceiverSet automatically
// deletes the CookieStoreHost.
mojo::UniqueReceiverSet<blink::mojom::CookieStore> receivers_
GUARDED_BY_CONTEXT(sequence_checker_);
// Used to receive cookie changes from the network service.
mojo::Remote<::network::mojom::CookieManager> cookie_manager_
GUARDED_BY_CONTEXT(sequence_checker_);
mojo::Receiver<::network::mojom::CookieChangeListener>
cookie_change_listener_receiver_ GUARDED_BY_CONTEXT(sequence_checker_){
this};
// The service worker registration user data key for subscription data.
//
// All the subscriptions associated with a registration are stored in a single
// user data entry whose key is |registration_user_data_key_|, and whose value
// is a serialized CookieChangeSubscriptionsProto.
const std::string registration_user_data_key_;
// Called after all subscriptions have been loaded.
//
// Callbacks can assume that |done_loading_subscriptions_| is true
// and |succeeded_loading_subscriptions_| is set. If the latter is true,
// |subscriptions_by_registration_| and |subscriptions_by_url_key_| will also
// be populated.
std::vector<base::OnceClosure> subscriptions_loaded_callbacks_
GUARDED_BY_CONTEXT(sequence_checker_);
// Set to true once all subscriptions have been loaded.
bool done_loading_subscriptions_ GUARDED_BY_CONTEXT(sequence_checker_) =
false;
// Only defined when |done_loading_subscriptions_| is true.
bool succeeded_loading_subscriptions_ GUARDED_BY_CONTEXT(sequence_checker_) =
false;
// Supports having the manager destroyed while waiting for disk I/O.
base::WeakPtrFactory<CookieStoreManager> weak_factory_
GUARDED_BY_CONTEXT(sequence_checker_){this};
};
} // namespace content
#endif // CONTENT_BROWSER_COOKIE_STORE_COOKIE_STORE_MANAGER_H_
|