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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set sw=2 ts=8 et tw=80 : */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_net_InterceptedHttpChannel_h
#define mozilla_net_InterceptedHttpChannel_h
#include "HttpBaseChannel.h"
#include "nsIAsyncVerifyRedirectCallback.h"
#include "nsINetworkInterceptController.h"
#include "nsIInputStream.h"
#include "nsICacheInfoChannel.h"
#include "nsIThreadRetargetableRequest.h"
#include "nsIThreadRetargetableStreamListener.h"
namespace mozilla::net {
// This class represents an http channel that is being intercepted by a
// ServiceWorker. This means that when the channel is opened a FetchEvent
// will be fired on the ServiceWorker thread. The channel will complete
// depending on what the worker does. The options are:
//
// 1. If the ServiceWorker does not handle the FetchEvent or does not call
// FetchEvent.respondWith(), then the channel needs to fall back to a
// normal request. When this happens ResetInterception() is called and
// the channel will perform an internal redirect back to an nsHttpChannel.
//
// 2. If the ServiceWorker provides a Response to FetchEvent.respondWith()
// then the status, headers, and body must be synthesized. When
// FinishSynthesizedResponse() is called the synthesized data must be
// reported back to the channel listener. This is handled in a few
// different ways:
// a. If a redirect was synthesized, then we perform the redirect to
// a new nsHttpChannel. This new channel might trigger yet another
// interception.
// b. If a same-origin or CORS Response was synthesized, then we simply
// crate an nsInputStreamPump to process it and call back to the
// listener.
// c. If an opaque Response was synthesized, then we perform an internal
// redirect to a new InterceptedHttpChannel using the cross-origin URL.
// When this new channel is opened, it then creates a pump as in case
// (b). The extra redirect here is to make sure the various listeners
// treat the result as unsafe cross-origin data.
//
// 3. If an error occurs, such as the ServiceWorker passing garbage to
// FetchEvent.respondWith(), then CancelInterception() is called. This is
// handled the same as a normal nsIChannel::Cancel() call. We abort the
// channel and end up calling OnStopRequest() with an error code.
class InterceptedHttpChannel final
: public HttpBaseChannel,
public HttpAsyncAborter<InterceptedHttpChannel>,
public nsIInterceptedChannel,
public nsICacheInfoChannel,
public nsIAsyncVerifyRedirectCallback,
public nsIThreadRetargetableRequest,
public nsIThreadRetargetableStreamListener {
NS_DECL_ISUPPORTS_INHERITED
NS_DECL_NSIINTERCEPTEDCHANNEL
NS_DECL_NSICACHEINFOCHANNEL
NS_DECL_NSIASYNCVERIFYREDIRECTCALLBACK
NS_DECL_NSIREQUESTOBSERVER
NS_DECL_NSISTREAMLISTENER
NS_DECL_NSITHREADRETARGETABLEREQUEST
NS_DECL_NSITHREADRETARGETABLESTREAMLISTENER
private:
friend class HttpAsyncAborter<InterceptedHttpChannel>;
UniquePtr<nsHttpResponseHead> mSynthesizedResponseHead;
nsCOMPtr<nsIChannel> mRedirectChannel;
nsCOMPtr<nsIInputStream> mBodyReader;
nsCOMPtr<nsISupports> mReleaseHandle;
nsCOMPtr<nsIProgressEventSink> mProgressSink;
nsCOMPtr<nsIInterceptedBodyCallback> mBodyCallback;
nsCOMPtr<nsICacheInfoChannel> mSynthesizedCacheInfo;
RefPtr<nsInputStreamPump> mPump;
TimeStamp mInterceptedChannelCreationTimestamp;
// For the profiler markers
TimeStamp mLastStatusReported;
Atomic<int64_t> mProgress;
int64_t mProgressReported;
int64_t mSynthesizedStreamLength;
uint64_t mResumeStartPos;
nsCString mResumeEntityId;
nsString mStatusHost;
Atomic<bool> mCallingStatusAndProgress;
bool mInterceptionReset{false};
/**
* InterceptionTimeStamps is used to record the time stamps of the
* interception.
* The general usage:
* Step 1. Initialize the InterceptionTimeStamps;
* InterceptionTimeStamps::Init(channel);
* Step 2. Record time for each stage
* InterceptionTimeStamps::RecordTime(); or
* InterceptionTimeStamps::RecordTime(timeStamp);
* Step 3. Record time for the last stage with the final status
* InterceptionTimeStamps::RecordTime(InterceptionTimeStamps::Synthesized);
*/
class InterceptionTimeStamps final {
public:
// The possible status of the interception.
enum Status {
Created,
Initialized,
Synthesized,
Reset,
Redirected,
Canceled,
CanceledAfterSynthesized,
CanceledAfterReset,
CanceledAfterRedirected
};
InterceptionTimeStamps();
~InterceptionTimeStamps() = default;
/**
* Initialize with the given channel.
* This method should be called before any RecordTime().
*/
void Init(nsIChannel* aChannel);
/**
* Record the given time stamp for current stage. If there is no given time
* stamp, TimeStamp::Now() will be recorded.
* The current stage is auto moved to the next one.
*/
void RecordTime(TimeStamp&& aTimeStamp = TimeStamp::Now());
/**
* Record the given time stamp for the last stage(InterceptionFinish) and
* set the final status to the given status.
* If these is no given time stamp, TimeStamp::Now() will be recorded.
* Notice that this method is for the last stage, it calls SaveTimeStamps()
* to write data into telemetries.
*/
void RecordTime(Status&& aStatus,
TimeStamp&& aTimeStamp = TimeStamp::Now());
// The time stamp which the intercepted channel is created and async opend.
TimeStamp mInterceptionStart;
// The time stamp which the interception finishes.
TimeStamp mInterceptionFinish;
// The time stamp which the fetch event starts to be handled by fetch event
// handler.
TimeStamp mFetchHandlerStart;
// The time stamp which the fetch event handling finishes. It would the time
// which remote worker sends result back.
TimeStamp mFetchHandlerFinish;
private:
// The stage of interception.
enum Stage {
InterceptionStart,
FetchHandlerStart,
FetchHandlerFinish,
InterceptionFinish
} mStage;
// The final status of the interception.
Status mStatus;
bool mIsNonSubresourceRequest;
// The keys used for telemetries.
nsCString mKey;
nsCString mSubresourceKey;
void RecordTimeInternal(TimeStamp&& aTimeStamp);
// Generate the record keys with final status.
void GenKeysWithStatus(nsCString& aKey, nsCString& aSubresourceKey);
// Save the time stamps into telemetries.
void SaveTimeStamps();
};
InterceptionTimeStamps mTimeStamps;
InterceptedHttpChannel(PRTime aCreationTime,
const TimeStamp& aCreationTimestamp,
const TimeStamp& aAsyncOpenTimestamp);
~InterceptedHttpChannel() = default;
virtual void ReleaseListeners() override;
[[nodiscard]] virtual nsresult SetupReplacementChannel(
nsIURI* aURI, nsIChannel* aChannel, bool aPreserveMethod,
uint32_t aRedirectFlags) override;
void AsyncOpenInternal();
bool ShouldRedirect() const;
nsresult FollowSyntheticRedirect();
// If the response's URL is different from the request's then do a service
// worker redirect. If Response.redirected is false we do an internal
// redirect. Otherwise, if Response.redirect is true do a non-internal
// redirect so end consumers detect the redirected state.
nsresult RedirectForResponseURL(nsIURI* aResponseURI,
bool aResponseRedirected);
nsresult StartPump();
nsresult OpenRedirectChannel();
void MaybeCallStatusAndProgress();
void MaybeCallBodyCallback();
TimeStamp mServiceWorkerLaunchStart;
TimeStamp mServiceWorkerLaunchEnd;
public:
static already_AddRefed<InterceptedHttpChannel> CreateForInterception(
PRTime aCreationTime, const TimeStamp& aCreationTimestamp,
const TimeStamp& aAsyncOpenTimestamp);
static already_AddRefed<InterceptedHttpChannel> CreateForSynthesis(
const nsHttpResponseHead* aHead, nsIInputStream* aBody,
nsIInterceptedBodyCallback* aBodyCallback, PRTime aCreationTime,
const TimeStamp& aCreationTimestamp,
const TimeStamp& aAsyncOpenTimestamp);
NS_IMETHOD SetCanceledReason(const nsACString& aReason) override;
NS_IMETHOD GetCanceledReason(nsACString& aReason) override;
NS_IMETHOD CancelWithReason(nsresult status,
const nsACString& reason) override;
NS_IMETHOD
Cancel(nsresult aStatus) override;
NS_IMETHOD
Suspend(void) override;
NS_IMETHOD
Resume(void) override;
NS_IMETHOD
GetSecurityInfo(nsITransportSecurityInfo** aSecurityInfo) override;
NS_IMETHOD
AsyncOpen(nsIStreamListener* aListener) override;
NS_IMETHOD
LogBlockedCORSRequest(const nsAString& aMessage, const nsACString& aCategory,
bool aIsWarning) override;
NS_IMETHOD
LogMimeTypeMismatch(const nsACString& aMessageName, bool aWarning,
const nsAString& aURL,
const nsAString& aContentType) override;
NS_IMETHOD
GetIsAuthChannel(bool* aIsAuthChannel) override;
NS_IMETHOD
SetPriority(int32_t aPriority) override;
NS_IMETHOD
SetClassFlags(uint32_t aClassFlags) override;
NS_IMETHOD
ClearClassFlags(uint32_t flags) override;
NS_IMETHOD
AddClassFlags(uint32_t flags) override;
NS_IMETHOD
SetClassOfService(ClassOfService cos) override;
NS_IMETHOD
SetIncremental(bool incremental) override;
NS_IMETHOD
ResumeAt(uint64_t startPos, const nsACString& entityID) override;
NS_IMETHOD
SetEarlyHintObserver(nsIEarlyHintObserver* aObserver) override {
return NS_OK;
}
NS_IMETHOD SetWebTransportSessionEventListener(
WebTransportSessionEventListener* aListener) override {
return NS_OK;
}
NS_IMETHOD SetResponseOverride(
nsIReplacedHttpResponse* aReplacedHttpResponse) override {
return NS_OK;
}
NS_IMETHOD SetResponseStatus(uint32_t aStatus,
const nsACString& aStatusText) override {
return NS_OK;
}
NS_IMETHOD SetLaunchServiceWorkerStart(TimeStamp aTimeStamp) override;
NS_IMETHOD GetLaunchServiceWorkerStart(TimeStamp* aRetVal) override;
NS_IMETHOD SetLaunchServiceWorkerEnd(TimeStamp aTimeStamp) override;
NS_IMETHOD GetLaunchServiceWorkerEnd(TimeStamp* aRetVal) override;
NS_IMETHOD GetDispatchFetchEventStart(TimeStamp* aRetVal) override;
NS_IMETHOD GetDispatchFetchEventEnd(TimeStamp* aRetVal) override;
NS_IMETHOD GetHandleFetchEventStart(TimeStamp* aRetVal) override;
NS_IMETHOD GetHandleFetchEventEnd(TimeStamp* aRetVal) override;
void DoNotifyListenerCleanup() override;
void DoAsyncAbort(nsresult aStatus) override;
NS_IMETHOD GetDecompressDictionary(
DictionaryCacheEntry** aDictionary) override {
*aDictionary = nullptr;
return NS_OK;
}
NS_IMETHOD SetDecompressDictionary(
DictionaryCacheEntry* aDictionary) override {
return NS_OK;
}
};
} // namespace mozilla::net
#endif // mozilla_net_InterceptedHttpChannel_h
|