| /* |
| * Copyright (C) 2006, 2008, 2016 Apple Inc. All rights reserved. |
| * Copyright (C) 2009 Google Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR |
| * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #pragma once |
| |
| #include "CacheValidation.h" |
| #include "CertificateInfo.h" |
| #include "HTTPHeaderMap.h" |
| #include "NetworkLoadMetrics.h" |
| #include "ParsedContentRange.h" |
| #include <wtf/Box.h> |
| #include <wtf/Markable.h> |
| #include <wtf/URL.h> |
| #include <wtf/WallTime.h> |
| |
| namespace WebCore { |
| |
| class ResourceResponse; |
| |
| bool isScriptAllowedByNosniff(const ResourceResponse&); |
| |
| enum class UsedLegacyTLS : bool { No, Yes }; |
| static constexpr unsigned bitWidthOfUsedLegacyTLS = 1; |
| static_assert(static_cast<unsigned>(UsedLegacyTLS::Yes) <= ((1U << bitWidthOfUsedLegacyTLS) - 1)); |
| |
| // Do not use this class directly, use the class ResourceResponse instead |
| class ResourceResponseBase { |
| WTF_MAKE_FAST_ALLOCATED; |
| public: |
| enum class Type : uint8_t { Basic, Cors, Default, Error, Opaque, Opaqueredirect }; |
| static constexpr unsigned bitWidthOfType = 3; |
| enum class Tainting : uint8_t { Basic, Cors, Opaque, Opaqueredirect }; |
| static constexpr unsigned bitWidthOfTainting = 2; |
| |
| static bool isRedirectionStatusCode(int code) { return code == 301 || code == 302 || code == 303 || code == 307 || code == 308; } |
| |
| struct CrossThreadData { |
| CrossThreadData(const CrossThreadData&) = delete; |
| CrossThreadData& operator=(const CrossThreadData&) = delete; |
| CrossThreadData() = default; |
| CrossThreadData(CrossThreadData&&) = default; |
| |
| URL url; |
| String mimeType; |
| long long expectedContentLength; |
| String textEncodingName; |
| int httpStatusCode; |
| String httpStatusText; |
| String httpVersion; |
| HTTPHeaderMap httpHeaderFields; |
| Optional<NetworkLoadMetrics> networkLoadMetrics; |
| Type type; |
| Tainting tainting; |
| bool isRedirected; |
| bool isRangeRequested; |
| }; |
| |
| CrossThreadData crossThreadData() const; |
| static ResourceResponse fromCrossThreadData(CrossThreadData&&); |
| |
| bool isNull() const { return m_isNull; } |
| WEBCORE_EXPORT bool isHTTP() const; |
| WEBCORE_EXPORT bool isSuccessful() const; |
| |
| WEBCORE_EXPORT const URL& url() const; |
| WEBCORE_EXPORT void setURL(const URL&); |
| |
| WEBCORE_EXPORT const String& mimeType() const; |
| WEBCORE_EXPORT void setMimeType(const String& mimeType); |
| |
| WEBCORE_EXPORT long long expectedContentLength() const; |
| WEBCORE_EXPORT void setExpectedContentLength(long long expectedContentLength); |
| |
| WEBCORE_EXPORT const String& textEncodingName() const; |
| WEBCORE_EXPORT void setTextEncodingName(const String& name); |
| |
| WEBCORE_EXPORT int httpStatusCode() const; |
| WEBCORE_EXPORT void setHTTPStatusCode(int); |
| WEBCORE_EXPORT bool isRedirection() const; |
| |
| WEBCORE_EXPORT const String& httpStatusText() const; |
| WEBCORE_EXPORT void setHTTPStatusText(const String&); |
| |
| WEBCORE_EXPORT const String& httpVersion() const; |
| WEBCORE_EXPORT void setHTTPVersion(const String&); |
| WEBCORE_EXPORT bool isHTTP09() const; |
| |
| WEBCORE_EXPORT const HTTPHeaderMap& httpHeaderFields() const; |
| void setHTTPHeaderFields(HTTPHeaderMap&&); |
| |
| enum class SanitizationType { Redirection, RemoveCookies, CrossOriginSafe }; |
| WEBCORE_EXPORT void sanitizeHTTPHeaderFields(SanitizationType); |
| |
| String httpHeaderField(const String& name) const; |
| WEBCORE_EXPORT String httpHeaderField(HTTPHeaderName) const; |
| WEBCORE_EXPORT void setHTTPHeaderField(const String& name, const String& value); |
| WEBCORE_EXPORT void setHTTPHeaderField(HTTPHeaderName, const String& value); |
| |
| WEBCORE_EXPORT void addHTTPHeaderField(HTTPHeaderName, const String& value); |
| WEBCORE_EXPORT void addHTTPHeaderField(const String& name, const String& value); |
| |
| // Instead of passing a string literal to any of these functions, just use a HTTPHeaderName instead. |
| template<size_t length> String httpHeaderField(const char (&)[length]) const = delete; |
| template<size_t length> void setHTTPHeaderField(const char (&)[length], const String&) = delete; |
| template<size_t length> void addHTTPHeaderField(const char (&)[length], const String&) = delete; |
| |
| bool isMultipart() const { return mimeType() == "multipart/x-mixed-replace"; } |
| |
| WEBCORE_EXPORT bool isAttachment() const; |
| WEBCORE_EXPORT bool isAttachmentWithFilename() const; |
| WEBCORE_EXPORT String suggestedFilename() const; |
| WEBCORE_EXPORT static String sanitizeSuggestedFilename(const String&); |
| |
| WEBCORE_EXPORT void includeCertificateInfo() const; |
| const Optional<CertificateInfo>& certificateInfo() const { return m_certificateInfo; }; |
| bool usedLegacyTLS() const { return m_usedLegacyTLS == UsedLegacyTLS::Yes; } |
| void setUsedLegacyTLS(UsedLegacyTLS used) { m_usedLegacyTLS = used; } |
| |
| // These functions return parsed values of the corresponding response headers. |
| WEBCORE_EXPORT bool cacheControlContainsNoCache() const; |
| WEBCORE_EXPORT bool cacheControlContainsNoStore() const; |
| WEBCORE_EXPORT bool cacheControlContainsMustRevalidate() const; |
| WEBCORE_EXPORT bool cacheControlContainsImmutable() const; |
| WEBCORE_EXPORT bool hasCacheValidatorFields() const; |
| WEBCORE_EXPORT Optional<Seconds> cacheControlMaxAge() const; |
| WEBCORE_EXPORT Optional<Seconds> cacheControlStaleWhileRevalidate() const; |
| WEBCORE_EXPORT Optional<WallTime> date() const; |
| WEBCORE_EXPORT Optional<Seconds> age() const; |
| WEBCORE_EXPORT Optional<WallTime> expires() const; |
| WEBCORE_EXPORT Optional<WallTime> lastModified() const; |
| const ParsedContentRange& contentRange() const; |
| |
| enum class Source : uint8_t { Unknown, Network, DiskCache, DiskCacheAfterValidation, MemoryCache, MemoryCacheAfterValidation, ServiceWorker, ApplicationCache, DOMCache, InspectorOverride }; |
| static constexpr unsigned bitWidthOfSource = 4; |
| static_assert(static_cast<unsigned>(Source::InspectorOverride) <= ((1U << bitWidthOfSource) - 1)); |
| |
| WEBCORE_EXPORT Source source() const; |
| void setSource(Source source) |
| { |
| ASSERT(source != Source::Unknown); |
| m_source = source; |
| } |
| |
| // FIXME: This should be eliminated from ResourceResponse. |
| // Network loading metrics should be delivered via didFinishLoad |
| // and should not be part of the ResourceResponse. |
| const NetworkLoadMetrics* deprecatedNetworkLoadMetricsOrNull() const |
| { |
| if (m_networkLoadMetrics) |
| return m_networkLoadMetrics.get(); |
| return nullptr; |
| } |
| void setDeprecatedNetworkLoadMetrics(Box<NetworkLoadMetrics>&& metrics) |
| { |
| m_networkLoadMetrics = WTFMove(metrics); |
| } |
| |
| // The ResourceResponse subclass may "shadow" this method to provide platform-specific memory usage information |
| unsigned memoryUsage() const |
| { |
| // average size, mostly due to URL and Header Map strings |
| return 1280; |
| } |
| |
| WEBCORE_EXPORT void setType(Type); |
| Type type() const { return m_type; } |
| |
| void setRedirected(bool isRedirected) { m_isRedirected = isRedirected; } |
| bool isRedirected() const { return m_isRedirected; } |
| |
| void setTainting(Tainting tainting) { m_tainting = tainting; } |
| Tainting tainting() const { return m_tainting; } |
| |
| enum class PerformExposeAllHeadersCheck : uint8_t { Yes, No }; |
| static ResourceResponse filter(const ResourceResponse&, PerformExposeAllHeadersCheck); |
| |
| WEBCORE_EXPORT static ResourceResponse syntheticRedirectResponse(const URL& fromURL, const URL& toURL); |
| |
| static bool compare(const ResourceResponse&, const ResourceResponse&); |
| |
| template<class Encoder> void encode(Encoder&) const; |
| template<class Decoder> static bool decode(Decoder&, ResourceResponseBase&); |
| |
| bool isRangeRequested() const { return m_isRangeRequested; } |
| void setAsRangeRequested() { m_isRangeRequested = true; } |
| |
| protected: |
| enum InitLevel { |
| Uninitialized, |
| CommonFieldsOnly, |
| AllFields |
| }; |
| |
| WEBCORE_EXPORT ResourceResponseBase(); |
| WEBCORE_EXPORT ResourceResponseBase(const URL&, const String& mimeType, long long expectedLength, const String& textEncodingName); |
| |
| WEBCORE_EXPORT void lazyInit(InitLevel) const; |
| |
| // The ResourceResponse subclass should shadow these functions to lazily initialize platform specific fields |
| void platformLazyInit(InitLevel) { } |
| CertificateInfo platformCertificateInfo() const { return CertificateInfo(); }; |
| String platformSuggestedFileName() const { return String(); } |
| |
| static bool platformCompare(const ResourceResponse&, const ResourceResponse&) { return true; } |
| |
| private: |
| void parseCacheControlDirectives() const; |
| void updateHeaderParsedState(HTTPHeaderName); |
| void sanitizeHTTPHeaderFieldsAccordingToTainting(); |
| |
| protected: |
| URL m_url; |
| AtomString m_mimeType; |
| long long m_expectedContentLength { 0 }; |
| AtomString m_textEncodingName; |
| AtomString m_httpStatusText; |
| AtomString m_httpVersion; |
| HTTPHeaderMap m_httpHeaderFields; |
| Box<NetworkLoadMetrics> m_networkLoadMetrics; |
| |
| mutable Optional<CertificateInfo> m_certificateInfo; |
| |
| private: |
| mutable Markable<Seconds, Seconds::MarkableTraits> m_age; |
| mutable Markable<WallTime, WallTime::MarkableTraits> m_date; |
| mutable Markable<WallTime, WallTime::MarkableTraits> m_expires; |
| mutable Markable<WallTime, WallTime::MarkableTraits> m_lastModified; |
| mutable ParsedContentRange m_contentRange; |
| mutable CacheControlDirectives m_cacheControlDirectives; |
| |
| mutable bool m_haveParsedCacheControlHeader : 1; |
| mutable bool m_haveParsedAgeHeader : 1; |
| mutable bool m_haveParsedDateHeader : 1; |
| mutable bool m_haveParsedExpiresHeader : 1; |
| mutable bool m_haveParsedLastModifiedHeader : 1; |
| mutable bool m_haveParsedContentRangeHeader : 1; |
| bool m_isRedirected : 1; |
| bool m_isRangeRequested : 1; |
| protected: |
| bool m_isNull : 1; |
| unsigned m_initLevel : 3; // Controlled by ResourceResponse. |
| mutable UsedLegacyTLS m_usedLegacyTLS : bitWidthOfUsedLegacyTLS; |
| private: |
| Tainting m_tainting : bitWidthOfTainting; |
| Source m_source : bitWidthOfSource; |
| Type m_type : bitWidthOfType; |
| protected: |
| short m_httpStatusCode { 0 }; |
| }; |
| |
| inline bool operator==(const ResourceResponse& a, const ResourceResponse& b) { return ResourceResponseBase::compare(a, b); } |
| inline bool operator!=(const ResourceResponse& a, const ResourceResponse& b) { return !(a == b); } |
| |
| template<class Encoder> |
| void ResourceResponseBase::encode(Encoder& encoder) const |
| { |
| encoder << m_isNull; |
| if (m_isNull) |
| return; |
| lazyInit(AllFields); |
| |
| encoder << m_url; |
| encoder << m_mimeType; |
| encoder << static_cast<int64_t>(m_expectedContentLength); |
| encoder << m_textEncodingName; |
| encoder << m_httpStatusText; |
| encoder << m_httpVersion; |
| encoder << m_httpHeaderFields; |
| |
| // We don't want to put the networkLoadMetrics info |
| // into the disk cache, because we will never use the old info. |
| if constexpr (Encoder::isIPCEncoder) |
| encoder << m_networkLoadMetrics; |
| |
| encoder << m_httpStatusCode; |
| encoder << m_certificateInfo; |
| encoder.encodeEnum(m_source); |
| encoder.encodeEnum(m_type); |
| encoder.encodeEnum(m_tainting); |
| encoder << m_isRedirected; |
| UsedLegacyTLS usedLegacyTLS = m_usedLegacyTLS; |
| encoder << usedLegacyTLS; |
| encoder << m_isRangeRequested; |
| } |
| |
| template<class Decoder> |
| bool ResourceResponseBase::decode(Decoder& decoder, ResourceResponseBase& response) |
| { |
| ASSERT(response.m_isNull); |
| bool responseIsNull; |
| if (!decoder.decode(responseIsNull)) |
| return false; |
| if (responseIsNull) |
| return true; |
| |
| response.m_isNull = false; |
| |
| if (!decoder.decode(response.m_url)) |
| return false; |
| if (!decoder.decode(response.m_mimeType)) |
| return false; |
| int64_t expectedContentLength; |
| if (!decoder.decode(expectedContentLength)) |
| return false; |
| response.m_expectedContentLength = expectedContentLength; |
| if (!decoder.decode(response.m_textEncodingName)) |
| return false; |
| if (!decoder.decode(response.m_httpStatusText)) |
| return false; |
| if (!decoder.decode(response.m_httpVersion)) |
| return false; |
| if (!decoder.decode(response.m_httpHeaderFields)) |
| return false; |
| // The networkLoadMetrics info is only send over IPC and not stored in disk cache. |
| if constexpr (Decoder::isIPCDecoder) { |
| if (!decoder.decode(response.m_networkLoadMetrics)) |
| return false; |
| } |
| if (!decoder.decode(response.m_httpStatusCode)) |
| return false; |
| if (!decoder.decode(response.m_certificateInfo)) |
| return false; |
| Source source = Source::Unknown; |
| if (!decoder.decodeEnum(source)) |
| return false; |
| response.m_source = source; |
| Type type = Type::Default; |
| if (!decoder.decodeEnum(type)) |
| return false; |
| response.m_type = type; |
| Tainting tainting = Tainting::Basic; |
| if (!decoder.decodeEnum(tainting)) |
| return false; |
| response.m_tainting = tainting; |
| bool isRedirected = false; |
| if (!decoder.decode(isRedirected)) |
| return false; |
| response.m_isRedirected = isRedirected; |
| UsedLegacyTLS usedLegacyTLS = UsedLegacyTLS::No; |
| if (!decoder.decode(usedLegacyTLS)) |
| return false; |
| response.m_usedLegacyTLS = usedLegacyTLS; |
| bool isRangeRequested = false; |
| if (!decoder.decode(isRangeRequested)) |
| return false; |
| response.m_isRangeRequested = isRangeRequested; |
| |
| return true; |
| } |
| |
| } // namespace WebCore |