1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_InternalRequest_h
8 #define mozilla_dom_InternalRequest_h
10 #include "mozilla/dom/HeadersBinding.h"
11 #include "mozilla/dom/InternalHeaders.h"
12 #include "mozilla/dom/RequestBinding.h"
13 #include "mozilla/dom/SafeRefPtr.h"
14 #include "mozilla/LoadTainting.h"
15 #include "mozilla/UniquePtr.h"
17 #include "nsIChannelEventSink.h"
18 #include "nsIInputStream.h"
19 #include "nsISupportsImpl.h"
21 # include "nsIURLParser.h"
22 # include "nsNetCID.h"
23 # include "nsServiceManagerUtils.h"
35 * The mapping of RequestDestination and nsContentPolicyType is currently as the
38 * RequestDestination| nsContentPolicyType
39 * ------------------+--------------------
40 * "audio" | TYPE_INTERNAL_AUDIO
41 * "audioworklet" | TYPE_INTERNAL_AUDIOWORKLET
42 * "document" | TYPE_DOCUMENT
43 * "embed" | TYPE_INTERNAL_EMBED
44 * "font" | TYPE_FONT, TYPE_INTERNAL_FONT_PRELOAD
45 * "frame" | TYPE_INTERNAL_FRAME
46 * "iframe" | TYPE_SUBDOCUMENT, TYPE_INTERNAL_IFRAME
47 * "image" | TYPE_INTERNAL_IMAGE, TYPE_INTERNAL_IMAGE_PRELOAD,
48 * | TYPE_IMAGE, TYPE_INTERNAL_IMAGE_FAVICON, TYPE_IMAGESET
49 * "manifest" | TYPE_WEB_MANIFEST
50 * "object" | TYPE_INTERNAL_OBJECT, TYPE_OBJECT
51 * "paintworklet" | TYPE_INTERNAL_PAINTWORKLET
52 * "report" | TYPE_CSP_REPORT
53 * "script" | TYPE_INTERNAL_SCRIPT, TYPE_INTERNAL_SCRIPT_PRELOAD,
54 * | TYPE_INTERNAL_MODULE, TYPE_INTERNAL_MODULE_PRELOAD,
56 * | TYPE_INTERNAL_SERVICE_WORKER,
57 * | TYPE_INTERNAL_WORKER_IMPORT_SCRIPTS,
58 * | TYPE_INTERNAL_CHROMEUTILS_COMPILED_SCRIPT
59 * | TYPE_INTERNAL_FRAME_MESSAGEMANAGER_SCRIPT
60 * "sharedworker" | TYPE_INTERNAL_SHARED_WORKER
61 * "serviceworker" | The spec lists this as a valid value for the enum,
62 * | however it is impossible to observe a request with this
63 * | destination value.
64 * "style" | TYPE_INTERNAL_STYLESHEET,
65 * | TYPE_INTERNAL_STYLESHEET_PRELOAD,
67 * "track" | TYPE_INTERNAL_TRACK
68 * "video" | TYPE_INTERNAL_VIDEO
69 * "worker" | TYPE_INTERNAL_WORKER
71 * "" | Default for everything else.
75 class IPCInternalRequest
;
78 #define kFETCH_CLIENT_REFERRER_STR "about:client"
79 class InternalRequest final
: public AtomicSafeRefCounted
<InternalRequest
> {
83 MOZ_DECLARE_REFCOUNTED_TYPENAME(InternalRequest
)
84 InternalRequest(const nsACString
& aURL
, const nsACString
& aFragment
);
85 InternalRequest(const nsACString
& aURL
, const nsACString
& aFragment
,
86 const nsACString
& aMethod
,
87 already_AddRefed
<InternalHeaders
> aHeaders
,
88 RequestCache aCacheMode
, RequestMode aMode
,
89 RequestRedirect aRequestRedirect
,
90 RequestCredentials aRequestCredentials
,
91 const nsAString
& aReferrer
, ReferrerPolicy aReferrerPolicy
,
92 nsContentPolicyType aContentPolicyType
,
93 const nsAString
& aIntegrity
);
95 explicit InternalRequest(const IPCInternalRequest
& aIPCRequest
);
97 SafeRefPtr
<InternalRequest
> Clone();
99 void GetMethod(nsCString
& aMethod
) const { aMethod
.Assign(mMethod
); }
101 void SetMethod(const nsACString
& aMethod
) { mMethod
.Assign(aMethod
); }
103 bool HasSimpleMethod() const {
104 return mMethod
.LowerCaseEqualsASCII("get") ||
105 mMethod
.LowerCaseEqualsASCII("post") ||
106 mMethod
.LowerCaseEqualsASCII("head");
108 // GetURL should get the request's current url with fragment. A request has
109 // an associated current url. It is a pointer to the last fetch URL in
110 // request's url list.
111 void GetURL(nsACString
& aURL
) const {
112 aURL
.Assign(GetURLWithoutFragment());
113 if (GetFragment().IsEmpty()) {
116 aURL
.AppendLiteral("#");
117 aURL
.Append(GetFragment());
120 const nsCString
& GetURLWithoutFragment() const {
121 MOZ_RELEASE_ASSERT(!mURLList
.IsEmpty(),
122 "Internal Request's urlList should not be empty.");
124 return mURLList
.LastElement();
127 // A safe guard for ensuring that request's URL is only allowed to be set in a
128 // sw internal redirect.
129 void SetURLForInternalRedirect(const uint32_t aFlag
, const nsACString
& aURL
,
130 const nsACString
& aFragment
) {
131 // Only check in debug build to prevent it from being used unexpectedly.
132 MOZ_ASSERT(aFlag
& nsIChannelEventSink::REDIRECT_INTERNAL
);
134 return SetURL(aURL
, aFragment
);
137 // AddURL should append the url into url list.
138 // Normally we strip the fragment from the URL in Request::Constructor and
139 // pass the fragment as the second argument into it.
140 // If a fragment is present in the URL it must be stripped and passed in
142 void AddURL(const nsACString
& aURL
, const nsACString
& aFragment
) {
143 MOZ_ASSERT(!aURL
.IsEmpty());
144 MOZ_ASSERT(!aURL
.Contains('#'));
146 mURLList
.AppendElement(aURL
);
148 mFragment
.Assign(aFragment
);
150 // Get the URL list without their fragments.
151 void GetURLListWithoutFragment(nsTArray
<nsCString
>& aURLList
) {
152 aURLList
.Assign(mURLList
);
154 void GetReferrer(nsAString
& aReferrer
) const { aReferrer
.Assign(mReferrer
); }
156 void SetReferrer(const nsAString
& aReferrer
) {
158 bool validReferrer
= false;
159 if (aReferrer
.IsEmpty() ||
160 aReferrer
.EqualsLiteral(kFETCH_CLIENT_REFERRER_STR
)) {
161 validReferrer
= true;
163 nsCOMPtr
<nsIURLParser
> parser
= do_GetService(NS_STDURLPARSER_CONTRACTID
);
165 NS_WARNING("Could not get parser to validate URL!");
169 uint32_t authorityPos
;
170 int32_t authorityLen
;
174 NS_ConvertUTF16toUTF8
ref(aReferrer
);
176 parser
->ParseURL(ref
.get(), ref
.Length(), &schemePos
, &schemeLen
,
177 &authorityPos
, &authorityLen
, &pathPos
, &pathLen
);
179 NS_WARNING("Invalid referrer URL!");
180 } else if (schemeLen
< 0 || authorityLen
< 0) {
181 NS_WARNING("Invalid referrer URL!");
183 validReferrer
= true;
188 MOZ_ASSERT(validReferrer
);
191 mReferrer
.Assign(aReferrer
);
194 ReferrerPolicy
ReferrerPolicy_() const { return mReferrerPolicy
; }
196 void SetReferrerPolicy(ReferrerPolicy aReferrerPolicy
) {
197 mReferrerPolicy
= aReferrerPolicy
;
200 ReferrerPolicy
GetEnvironmentReferrerPolicy() const {
201 return mEnvironmentReferrerPolicy
;
204 void SetEnvironmentReferrerPolicy(ReferrerPolicy aReferrerPolicy
) {
205 mEnvironmentReferrerPolicy
= aReferrerPolicy
;
208 bool SkipServiceWorker() const { return mSkipServiceWorker
; }
210 void SetSkipServiceWorker() { mSkipServiceWorker
= true; }
212 bool SkipWasmCaching() const { return mSkipWasmCaching
; }
214 void SetSkipWasmCaching() { mSkipWasmCaching
= true; }
216 bool IsSynchronous() const { return mSynchronous
; }
218 RequestMode
Mode() const { return mMode
; }
220 void SetMode(RequestMode aMode
) { mMode
= aMode
; }
222 RequestCredentials
GetCredentialsMode() const { return mCredentialsMode
; }
224 void SetCredentialsMode(RequestCredentials aCredentialsMode
) {
225 mCredentialsMode
= aCredentialsMode
;
228 LoadTainting
GetResponseTainting() const { return mResponseTainting
; }
230 void MaybeIncreaseResponseTainting(LoadTainting aTainting
) {
231 if (aTainting
> mResponseTainting
) {
232 mResponseTainting
= aTainting
;
236 RequestCache
GetCacheMode() const { return mCacheMode
; }
238 void SetCacheMode(RequestCache aCacheMode
) { mCacheMode
= aCacheMode
; }
240 RequestRedirect
GetRedirectMode() const { return mRedirectMode
; }
242 void SetRedirectMode(RequestRedirect aRedirectMode
) {
243 mRedirectMode
= aRedirectMode
;
246 const nsString
& GetIntegrity() const { return mIntegrity
; }
248 void SetIntegrity(const nsAString
& aIntegrity
) {
249 mIntegrity
.Assign(aIntegrity
);
252 bool MozErrors() const { return mMozErrors
; }
254 void SetMozErrors() { mMozErrors
= true; }
256 const nsCString
& GetFragment() const { return mFragment
; }
258 nsContentPolicyType
ContentPolicyType() const { return mContentPolicyType
; }
259 void SetContentPolicyType(nsContentPolicyType aContentPolicyType
);
261 void OverrideContentPolicyType(nsContentPolicyType aContentPolicyType
);
263 RequestDestination
Destination() const {
264 return MapContentPolicyTypeToRequestDestination(mContentPolicyType
);
267 bool UnsafeRequest() const { return mUnsafeRequest
; }
269 void SetUnsafeRequest() { mUnsafeRequest
= true; }
271 InternalHeaders
* Headers() const { return mHeaders
; }
273 void SetHeaders(InternalHeaders
* aHeaders
) {
274 MOZ_ASSERT(aHeaders
);
278 void SetBody(nsIInputStream
* aStream
, int64_t aBodyLength
) {
279 // A request's body may not be reset once set.
280 MOZ_ASSERT_IF(aStream
, !mBodyStream
);
281 mBodyStream
= aStream
;
282 mBodyLength
= aBodyLength
;
285 // Will return the original stream!
286 // Use a tee or copy if you don't want to erase the original.
287 void GetBody(nsIInputStream
** aStream
, int64_t* aBodyLength
= nullptr) const {
288 nsCOMPtr
<nsIInputStream
> s
= mBodyStream
;
292 *aBodyLength
= mBodyLength
;
296 void SetBodyBlobURISpec(nsACString
& aBlobURISpec
) {
297 mBodyBlobURISpec
= aBlobURISpec
;
300 const nsACString
& BodyBlobURISpec() const { return mBodyBlobURISpec
; }
302 void SetBodyLocalPath(nsAString
& aLocalPath
) { mBodyLocalPath
= aLocalPath
; }
304 const nsAString
& BodyLocalPath() const { return mBodyLocalPath
; }
306 // The global is used as the client for the new object.
307 SafeRefPtr
<InternalRequest
> GetRequestConstructorCopy(
308 nsIGlobalObject
* aGlobal
, ErrorResult
& aRv
) const;
310 bool IsNavigationRequest() const;
312 bool IsWorkerRequest() const;
314 bool IsClientRequest() const;
316 void MaybeSkipCacheIfPerformingRevalidation();
318 bool IsContentPolicyTypeOverridden() const {
319 return mContentPolicyTypeOverridden
;
322 static RequestMode
MapChannelToRequestMode(nsIChannel
* aChannel
);
324 static RequestCredentials
MapChannelToRequestCredentials(
325 nsIChannel
* aChannel
);
327 // Takes ownership of the principal info.
328 void SetPrincipalInfo(UniquePtr
<mozilla::ipc::PrincipalInfo
> aPrincipalInfo
);
330 const UniquePtr
<mozilla::ipc::PrincipalInfo
>& GetPrincipalInfo() const {
331 return mPrincipalInfo
;
334 const nsCString
& GetPreferredAlternativeDataType() const {
335 return mPreferredAlternativeDataType
;
338 void SetPreferredAlternativeDataType(const nsACString
& aDataType
) {
339 mPreferredAlternativeDataType
= aDataType
;
344 InternalRequest(const InternalRequest
& aOther
) = delete;
346 void SetEmbedderPolicy(nsILoadInfo::CrossOriginEmbedderPolicy aPolicy
) {
347 mEmbedderPolicy
= aPolicy
;
350 nsILoadInfo::CrossOriginEmbedderPolicy
GetEmbedderPolicy() const {
351 return mEmbedderPolicy
;
355 struct ConstructorGuard
{};
358 // Does not copy mBodyStream. Use fallible Clone() for complete copy.
359 InternalRequest(const InternalRequest
& aOther
, ConstructorGuard
);
362 // Map the content policy type to the associated fetch destination, as defined
363 // by the spec at https://fetch.spec.whatwg.org/#concept-request-destination.
364 // Note that while the HTML spec for the "Link" element and its "as" attribute
365 // (https://html.spec.whatwg.org/#attr-link-as) reuse fetch's definition of
367 static RequestDestination
MapContentPolicyTypeToRequestDestination(
368 nsContentPolicyType aContentPolicyType
);
370 static bool IsNavigationContentPolicy(nsContentPolicyType aContentPolicyType
);
372 static bool IsWorkerContentPolicy(nsContentPolicyType aContentPolicyType
);
374 // It should only be called while there is a service-worker-internal-redirect.
375 void SetURL(const nsACString
& aURL
, const nsACString
& aFragment
) {
376 MOZ_ASSERT(!aURL
.IsEmpty());
377 MOZ_ASSERT(!aURL
.Contains('#'));
378 MOZ_ASSERT(mURLList
.Length() > 0);
380 mURLList
.LastElement() = aURL
;
381 mFragment
.Assign(aFragment
);
385 // mURLList: a list of one or more fetch URLs
386 nsTArray
<nsCString
> mURLList
;
387 RefPtr
<InternalHeaders
> mHeaders
;
388 nsCString mBodyBlobURISpec
;
389 nsString mBodyLocalPath
;
390 nsCOMPtr
<nsIInputStream
> mBodyStream
;
393 nsCString mPreferredAlternativeDataType
;
395 nsContentPolicyType mContentPolicyType
;
397 // Empty string: no-referrer
398 // "about:client": client (default)
401 ReferrerPolicy mReferrerPolicy
;
403 // This will be used for request created from Window or Worker contexts
404 // In case there's no Referrer Policy in Request, this will be passed to
406 ReferrerPolicy mEnvironmentReferrerPolicy
;
408 RequestCredentials mCredentialsMode
;
409 LoadTainting mResponseTainting
= LoadTainting::Basic
;
410 RequestCache mCacheMode
;
411 RequestRedirect mRedirectMode
;
413 bool mMozErrors
= false;
415 bool mSkipServiceWorker
= false;
416 bool mSkipWasmCaching
= false;
417 bool mSynchronous
= false;
418 bool mUnsafeRequest
= false;
419 bool mUseURLCredentials
= false;
420 // This is only set when Request.overrideContentPolicyType() has been set.
421 // It is illegal to pass such a Request object to a fetch() method unless
422 // if the caller has chrome privileges.
423 bool mContentPolicyTypeOverridden
= false;
424 nsILoadInfo::CrossOriginEmbedderPolicy mEmbedderPolicy
=
425 nsILoadInfo::EMBEDDER_POLICY_NULL
;
427 UniquePtr
<mozilla::ipc::PrincipalInfo
> mPrincipalInfo
;
431 } // namespace mozilla
433 #endif // mozilla_dom_InternalRequest_h