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 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
|
// Copyright 2023 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_PRELOADING_PREFETCH_PREFETCH_RESPONSE_READER_H_
#define CONTENT_BROWSER_PRELOADING_PREFETCH_PREFETCH_RESPONSE_READER_H_
#include "base/time/time.h"
#include "content/browser/preloading/prefetch/prefetch_data_pipe_tee.h"
#include "content/browser/preloading/prefetch/prefetch_streaming_url_loader_common_types.h"
#include "content/common/content_export.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "mojo/public/cpp/bindings/remote_set.h"
#include "net/http/http_cookie_indices.h"
#include "services/network/public/mojom/url_loader.mojom.h"
#include "services/network/public/mojom/url_response_head.mojom-forward.h"
namespace content {
class PrefetchStreamingURLLoader;
class ServiceWorkerClient;
class ServiceWorkerMainResourceHandle;
// `PrefetchResponseReader` stores the prefetched data needed for serving, and
// serves URLLoaderClients (`serving_url_loader_clients_`). One
// `PrefetchResponseReader` corresponds to one
// `PrefetchContainer::SinglePrefetch`, i.e. one redirect hop.
//
// A sequences of events are received from `PrefetchStreamingURLLoader` and
// served to each of `serving_url_loader_clients_`.
//
// `PrefetchResponseReader` is kept alive by:
// - `PrefetchContainer::SinglePrefetch::response_reader_`
// as long as `PrefetchContainer` is alive,
// - `PrefetchResponseReader::self_pointer_`
// while it is serving to its `mojom::URLLoaderClient`, or
// - The `PrefetchRequestHandler` returned by `CreateRequestHandler()`
// until it is called.
//
// TODO(crbug.com/40064891): Currently at most one client per
// `PrefetchResponseReader` is allowed due to other servablility conditions.
// Upcoming CLs will enable multiple clients/navigation requests per
// `PrefetchResponseReader` behind a flag.
class CONTENT_EXPORT PrefetchResponseReader final
: public network::mojom::URLLoader,
public base::RefCounted<PrefetchResponseReader> {
public:
// TODO(crbug.com/373553133): Stop using two different constructors once we
// find how we enable `is_reusable_` path.
explicit PrefetchResponseReader(bool is_reusable);
// For
// //content/browser/preloading/prefetch/prefetch_streaming_url_loader_unittest.cc
explicit PrefetchResponseReader();
void SetStreamingURLLoader(
base::WeakPtr<PrefetchStreamingURLLoader> streaming_url_loader);
base::WeakPtr<PrefetchStreamingURLLoader> GetStreamingLoader() const;
// Asynchronously release `self_pointer_` if eligible. Note that `this` might
// be still be kept alive by others even after that.
void MaybeReleaseSoonSelfPointer();
// Adds events from the methods with the same names in
// `PrefetchStreamingURLLoader` to `event_queue_` and existing
// `serving_url_loader_clients_`.
void OnReceiveEarlyHints(network::mojom::EarlyHintsPtr early_hints);
void OnReceiveResponse(
std::optional<PrefetchErrorOnResponseReceived> status,
network::mojom::URLResponseHeadPtr head,
mojo::ScopedDataPipeConsumerHandle body,
std::unique_ptr<ServiceWorkerMainResourceHandle> service_worker_handle);
void HandleRedirect(PrefetchRedirectStatus redirect_status,
const net::RedirectInfo& redirect_info,
network::mojom::URLResponseHeadPtr redirect_head);
void OnTransferSizeUpdated(int32_t transfer_size_diff);
void OnComplete(network::URLLoaderCompletionStatus completion_status);
// Creates a request handler to serve the response of the prefetch.
//
// `CreateRequestHandler()` is responsible for the final check for servability
// and can return a null PrefetchRequestHandler if the final check fails (even
// if `GetServableState()` previously returned `kServable`).
//
// The caller is responsible for:
// - Cookie-related checks and processing.
// For example, checking `HaveDefaultContextCookiesChanged()` is false and
// copying isolated cookies if needed.
// `PrefetchResponseReader::CreateRequestHandler()`,
// `PrefetchResponseReader::Servable()` nor
// `PrefetchContainer::GetServableState()` don't perform cookie-related
// checks.
// - Checking `Servable()`/`GetServableState()`.
// `cacheable_duration` is checked only there.
std::pair<PrefetchRequestHandler, base::WeakPtr<ServiceWorkerClient>>
CreateRequestHandler();
bool Servable(base::TimeDelta cacheable_duration) const;
bool IsWaitingForResponse() const;
std::optional<network::URLLoaderCompletionStatus> GetCompletionStatus()
const {
return completion_status_;
}
const network::mojom::URLResponseHead* GetHead() const { return head_.get(); }
// True if this response had Vary: Cookie (or Vary: *), and a Cookie-Indices
// header also applies.
bool VariesOnCookieIndices() const;
// True if the request cookies `cookies` match those originally used when the
// prefetch request was made, to the extent required by Cookie-Indices.
// Do not call this if |VariesOnCookieIndices()| returns false.
bool MatchesCookieIndices(
base::span<const std::pair<std::string, std::string>> cookies) const;
base::WeakPtr<PrefetchResponseReader> GetWeakPtr() {
return weak_ptr_factory_.GetWeakPtr();
}
bool is_reusable() const { return is_reusable_; }
private:
// Identifies a client in `serving_url_loader_clients_`.
using ServingUrlLoaderClientId = mojo::RemoteSetElementId;
friend class base::RefCounted<PrefetchResponseReader>;
~PrefetchResponseReader() override;
void BindAndStart(
mojo::ScopedDataPipeConsumerHandle body,
const network::ResourceRequest& resource_request,
mojo::PendingReceiver<network::mojom::URLLoader> receiver,
mojo::PendingRemote<network::mojom::URLLoaderClient> client);
// Adds an event to the queue.
// The callbacks are called in-order for each of
// `serving_url_loader_clients_`, regardless of whether events are added
// before or after clients are added.
using EventCallback = base::RepeatingCallback<void(ServingUrlLoaderClientId)>;
void AddEventToQueue(EventCallback callback);
// Sends all stored events in `event_queue_` to the client.
// Called when a new client (identified by `client_id_`) is added.
void RunEventQueue(ServingUrlLoaderClientId client_id);
// Helper functions to send the appropriate events to a client.
void ForwardCompletionStatus(ServingUrlLoaderClientId client_id);
void ForwardEarlyHints(const network::mojom::EarlyHintsPtr& early_hints,
ServingUrlLoaderClientId client_id);
void ForwardTransferSizeUpdate(int32_t transfer_size_diff,
ServingUrlLoaderClientId client_id);
void ForwardRedirect(const net::RedirectInfo& redirect_info,
const network::mojom::URLResponseHeadPtr&,
ServingUrlLoaderClientId client_id);
void ForwardResponse(ServingUrlLoaderClientId client_id);
// network::mojom::URLLoader
void FollowRedirect(
const std::vector<std::string>& removed_headers,
const net::HttpRequestHeaders& modified_headers,
const net::HttpRequestHeaders& modified_cors_exempt_headers,
const std::optional<GURL>& new_url) override;
void SetPriority(net::RequestPriority priority,
int32_t intra_priority_value) override;
void OnServingURLLoaderMojoDisconnect();
PrefetchStreamingURLLoaderStatus GetStatusForRecording() const;
// Stores info from the response head that will be needed later, before it is
// stored into `head_` (for non-redirect responses) or `event_queue_` (or
// redirect responses).
void StoreInfoFromResponseHead(const network::mojom::URLResponseHead& head);
// If true, the body is reusable with help of `PrefetchDataPipeTee`.
const bool is_reusable_;
// All URLLoader events are queued up here.
std::vector<EventCallback> event_queue_;
// The status of the event queue.
enum class EventQueueStatus {
kNotRunning,
kRunning,
};
EventQueueStatus event_queue_status_{EventQueueStatus::kNotRunning};
// Valid state transitions (which imply valid event sequences) are:
// - Redirect: `kStarted` -> `kRedirectHandled`
// - Non-redirect: `kStarted` -> `kResponseReceived` -> `kCompleted`
// - Failure: `kStarted` -> `kFailed`
// `kStarted` -> `kFailedRedirect`
// `kStarted` -> `kFailedResponseReceived` -> `kFailed`
// `kStarted` -> `kResponseReceived` -> `kFailed`
// Optional `OnReceiveEarlyHints()` and `OnTransferSizeUpdated()` events can
// be received in any non-final states.
enum class LoadState {
// Initial state, not yet receiving a redirect nor non-redirect response.
kStarted,
// [Final] A redirect response is received (`HandleRedirect()` is called).
// This is a final state because we always switch to a new
// `PrefetchResponseReader` on redirects.
kRedirectHandled,
// [servable] A non-redirect successful response is received
// (`OnReceiveResponse()` is called with `servable` = true).
kResponseReceived,
// A non-redirect failed response is received (`OnReceiveResponse()` is
// called with `servable` = false).
kFailedResponseReceived,
// [Final, servable] Successful completion (`OnComplete(net::OK)` is called
// after `kResponseReceived`.
kCompleted,
// [Final] Failed completion (`OnComplete()` is called, either with
// non-`net::OK`, or after `kFailedResponseReceived`).
kFailed,
// [Final] Failed redirects.
kFailedRedirect
};
// Always access/update through `load_state()` and
// `SetLoadStateAndAddEventToQueue()` below, to avoid unintentional state
// changes and missing related callbacks on state changes.
LoadState load_state_{LoadState::kStarted};
LoadState load_state() const { return load_state_; }
void SetLoadStateAndAddEventToQueue(LoadState new_load_state,
EventCallback callback);
// Used for UMA recording.
// TODO(crbug.com/40064891): we might want to adapt these flags and UMA
// semantics for multiple client settings, but so far we don't have any
// specific plans.
std::optional<PrefetchErrorOnResponseReceived> failure_reason_;
bool served_before_completion_{false};
bool served_after_completion_{false};
bool should_record_metrics_{true};
// If present, this includes the sorted and unique names of the cookies which
// were specified in the Cookie-Indices header, and a hash of their values as
// obtained from `net::HashCookieIndices`. This is not set unless the Vary
// header also specified Cookie (or *).
//
// As one quirk, we presently still don't vary on cookies if Vary is specified
// and Cookie-Indices isn't, both because that was the prior behavior and
// because doing so requires having the precise string value of the header
// (including whitespace).
struct CookieIndicesInfo {
CookieIndicesInfo();
~CookieIndicesInfo();
std::vector<std::string> cookie_names;
net::CookieIndicesHash expected_hash;
};
std::optional<CookieIndicesInfo> cookie_indices_;
// The prefetched data and metadata. Not set for a redirect response.
network::mojom::URLResponseHeadPtr head_;
// `body_` is set/used only when `!is_reusable_`.
mojo::ScopedDataPipeConsumerHandle body_;
// `body_tee_` is set/used only when `is_reusable_`.
scoped_refptr<PrefetchDataPipeTee> body_tee_;
std::optional<network::URLLoaderCompletionStatus> completion_status_;
// Recorded on `OnComplete` and used to check if the prefetch data is still
// fresh for use.
std::optional<base::TimeTicks> response_complete_time_;
// Only used temporarily to plumb the body `BindAndStart()` to
// `ForwardResponse()`.
mojo::ScopedDataPipeConsumerHandle forward_body_;
// The URL loader clients that will serve the prefetched data.
mojo::ReceiverSet<network::mojom::URLLoader> serving_url_loader_receivers_;
mojo::RemoteSet<network::mojom::URLLoaderClient> serving_url_loader_clients_;
// Set when this manages its own lifetime.
scoped_refptr<PrefetchResponseReader> self_pointer_;
base::WeakPtr<PrefetchStreamingURLLoader> streaming_url_loader_;
// TODO(https://crbug.com/40947546): Currently redirects are not supported for
// ServiceWorker-controlled prefetches and thus we don't care about alignment
// between `PrefetchResponseReader`, `PrefetchStreamingURLLoader` and
// `PrefetchContainer` in terms of `ServiceWorkerMainResourceHandle`.
std::unique_ptr<ServiceWorkerMainResourceHandle> service_worker_handle_;
base::WeakPtrFactory<PrefetchResponseReader> weak_ptr_factory_{this};
};
} // namespace content
#endif // CONTENT_BROWSER_PRELOADING_PREFETCH_PREFETCH_RESPONSE_READER_H_
|