| // Copyright 2018 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef CONTENT_BROWSER_WEB_PACKAGE_WEB_PACKAGE_LOADER_H_ |
| #define CONTENT_BROWSER_WEB_PACKAGE_WEB_PACKAGE_LOADER_H_ |
| |
| #include "base/optional.h" |
| #include "content/common/content_export.h" |
| #include "mojo/public/cpp/bindings/binding.h" |
| #include "mojo/public/cpp/system/simple_watcher.h" |
| #include "net/ssl/ssl_info.h" |
| #include "net/url_request/redirect_info.h" |
| #include "services/network/public/cpp/net_adapters.h" |
| #include "services/network/public/mojom/url_loader.mojom.h" |
| #include "url/origin.h" |
| |
| namespace net { |
| class SourceStream; |
| } // namespace net |
| |
| namespace content { |
| |
| class SharedURLLoaderFactory; |
| class SignedExchangeHandler; |
| class SignedExchangeHandlerFactory; |
| class URLLoaderThrottle; |
| class SourceStreamToDataPipe; |
| |
| // WebPackageLoader handles an origin-signed HTTP exchange response. It is |
| // created when a WebPackageRequestHandler recieves an origin-signed HTTP |
| // exchange response, and is owned by the handler until the StartLoaderCallback |
| // of WebPackageRequestHandler::StartResponse is called. After that, it is |
| // owned by the URLLoader mojo endpoint. |
| class WebPackageLoader final : public network::mojom::URLLoaderClient, |
| public network::mojom::URLLoader { |
| public: |
| using URLLoaderThrottlesGetter = base::RepeatingCallback< |
| std::vector<std::unique_ptr<content::URLLoaderThrottle>>()>; |
| |
| WebPackageLoader(const network::ResourceResponseHead& original_response, |
| network::mojom::URLLoaderClientPtr forwarding_client, |
| network::mojom::URLLoaderClientEndpointsPtr endpoints, |
| url::Origin request_initiator, |
| uint32_t url_loader_options, |
| scoped_refptr<SharedURLLoaderFactory> url_loader_factory, |
| URLLoaderThrottlesGetter url_loader_throttles_getter); |
| ~WebPackageLoader() override; |
| |
| // network::mojom::URLLoaderClient implementation |
| // Only OnStartLoadingResponseBody() and OnComplete() are called. |
| void OnReceiveResponse( |
| const network::ResourceResponseHead& response_head, |
| const base::Optional<net::SSLInfo>& ssl_info, |
| network::mojom::DownloadedTempFilePtr downloaded_file) override; |
| void OnReceiveRedirect( |
| const net::RedirectInfo& redirect_info, |
| const network::ResourceResponseHead& response_head) override; |
| void OnDataDownloaded(int64_t data_len, int64_t encoded_data_len) override; |
| void OnUploadProgress(int64_t current_position, |
| int64_t total_size, |
| OnUploadProgressCallback ack_callback) override; |
| void OnReceiveCachedMetadata(const std::vector<uint8_t>& data) override; |
| void OnTransferSizeUpdated(int32_t transfer_size_diff) override; |
| void OnStartLoadingResponseBody( |
| mojo::ScopedDataPipeConsumerHandle body) override; |
| void OnComplete(const network::URLLoaderCompletionStatus& status) override; |
| |
| // network::mojom::URLLoader implementation |
| void FollowRedirect() override; |
| void ProceedWithResponse() override; |
| void SetPriority(net::RequestPriority priority, |
| int intra_priority_value) override; |
| void PauseReadingBodyFromNet() override; |
| void ResumeReadingBodyFromNet() override; |
| |
| void ConnectToClient(network::mojom::URLLoaderClientPtr client); |
| |
| // Set nullptr to reset the mocking. |
| CONTENT_EXPORT static void SetSignedExchangeHandlerFactoryForTest( |
| SignedExchangeHandlerFactory* factory); |
| |
| private: |
| class ResponseTimingInfo; |
| |
| // Called from |signed_exchange_handler_| when it finds an origin-signed HTTP |
| // exchange. |
| void OnHTTPExchangeFound( |
| net::Error error, |
| const GURL& request_url, |
| const std::string& request_method, |
| const network::ResourceResponseHead& resource_response, |
| std::unique_ptr<net::SourceStream> payload_stream, |
| base::Optional<net::SSLInfo> ssl_info); |
| |
| void FinishReadingBody(int result); |
| |
| // This timing info is used to create a dummy redirect response. |
| std::unique_ptr<const ResponseTimingInfo> original_response_timing_info_; |
| |
| // This client is alive until OnHTTPExchangeFound() is called. |
| network::mojom::URLLoaderClientPtr forwarding_client_; |
| |
| // This |url_loader_| is the pointer of the network URL loader. |
| network::mojom::URLLoaderPtr url_loader_; |
| // This binding connects |this| with the network URL loader. |
| mojo::Binding<network::mojom::URLLoaderClient> url_loader_client_binding_; |
| |
| // This is pending until connected by ConnectToClient(). |
| network::mojom::URLLoaderClientPtr client_; |
| |
| // This URLLoaderClientRequest is used by ConnectToClient() to connect |
| // |client_|. |
| network::mojom::URLLoaderClientRequest pending_client_request_; |
| |
| std::unique_ptr<SignedExchangeHandler> signed_exchange_handler_; |
| std::unique_ptr<SourceStreamToDataPipe> body_data_pipe_adapter_; |
| |
| // Kept around until ProceedWithResponse is called. |
| mojo::ScopedDataPipeConsumerHandle pending_body_consumer_; |
| |
| url::Origin request_initiator_; |
| const uint32_t url_loader_options_; |
| scoped_refptr<SharedURLLoaderFactory> url_loader_factory_; |
| URLLoaderThrottlesGetter url_loader_throttles_getter_; |
| |
| base::Optional<net::SSLInfo> ssl_info_; |
| |
| base::WeakPtrFactory<WebPackageLoader> weak_factory_; |
| |
| DISALLOW_COPY_AND_ASSIGN(WebPackageLoader); |
| }; |
| |
| } // namespace content |
| |
| #endif // CONTENT_BROWSER_WEB_PACKAGE_WEB_PACKAGE_LOADER_H_ |