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
|
// Copyright 2014 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 THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_SUBRESOURCE_INTEGRITY_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_SUBRESOURCE_INTEGRITY_H_
#include "base/gtest_prod_util.h"
#include "third_party/blink/renderer/platform/loader/fetch/integrity_metadata.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/wtf/allocator.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"
namespace blink {
class KURL;
class Resource;
class PLATFORM_EXPORT SubresourceIntegrity final {
STATIC_ONLY(SubresourceIntegrity);
public:
class PLATFORM_EXPORT ReportInfo final {
public:
enum class UseCounterFeature {
kSRIElementWithMatchingIntegrityAttribute,
kSRIElementWithNonMatchingIntegrityAttribute,
kSRIElementIntegrityAttributeButIneligible,
kSRIElementWithUnparsableIntegrityAttribute,
kSRISignatureCheck,
kSRISignatureSuccess,
};
void AddUseCount(UseCounterFeature);
void AddConsoleErrorMessage(const String&);
void Clear();
const Vector<UseCounterFeature>& UseCounts() const { return use_counts_; }
const Vector<String>& ConsoleErrorMessages() const {
return console_error_messages_;
}
private:
Vector<UseCounterFeature> use_counts_;
Vector<String> console_error_messages_;
};
enum IntegrityParseResult {
kIntegrityParseValidResult,
kIntegrityParseNoValidResult
};
// Determine which SRI features to support when parsing integrity attributes.
enum class IntegrityFeatures {
kDefault, // Default: All sha* hash codes.
kSignatures // Also support the ed25519 signature scheme.
};
// The version with the IntegrityMetadataSet passed as the first argument
// assumes that the integrity attribute has already been parsed, and the
// IntegrityMetadataSet represents the result of that parsing.
static bool CheckSubresourceIntegrity(const IntegrityMetadataSet&,
const char* content,
size_t content_size,
const KURL& resource_url,
const Resource&,
ReportInfo&);
static bool CheckSubresourceIntegrity(const String&,
IntegrityFeatures,
const char* content,
size_t content_size,
const KURL& resource_url,
ReportInfo&);
// The IntegrityMetadataSet arguments are out parameters which contain the
// set of all valid, parsed metadata from |attribute|.
static IntegrityParseResult ParseIntegrityAttribute(
const WTF::String& attribute,
IntegrityFeatures,
IntegrityMetadataSet&);
static IntegrityParseResult ParseIntegrityAttribute(
const WTF::String& attribute,
IntegrityFeatures,
IntegrityMetadataSet&,
ReportInfo*);
private:
friend class SubresourceIntegrityTest;
FRIEND_TEST_ALL_PREFIXES(SubresourceIntegrityTest, Parsing);
FRIEND_TEST_ALL_PREFIXES(SubresourceIntegrityTest, ParseAlgorithm);
FRIEND_TEST_ALL_PREFIXES(SubresourceIntegrityTest, ParseHeader);
FRIEND_TEST_ALL_PREFIXES(SubresourceIntegrityTest, Prioritization);
FRIEND_TEST_ALL_PREFIXES(SubresourceIntegrityTest, FindBestAlgorithm);
FRIEND_TEST_ALL_PREFIXES(SubresourceIntegrityTest,
GetCheckFunctionForAlgorithm);
// The core implementation for all CheckSubresoureIntegrity functions.
static bool CheckSubresourceIntegrityImpl(const IntegrityMetadataSet&,
const char*,
size_t,
const KURL& resource_url,
const String integrity_header,
ReportInfo&);
enum AlgorithmParseResult {
kAlgorithmValid,
kAlgorithmUnparsable,
kAlgorithmUnknown
};
static IntegrityAlgorithm FindBestAlgorithm(const IntegrityMetadataSet&);
typedef bool (*CheckFunction)(const IntegrityMetadata&,
const char*,
size_t,
const String&);
static CheckFunction GetCheckFunctionForAlgorithm(IntegrityAlgorithm);
static bool CheckSubresourceIntegrityDigest(const IntegrityMetadata&,
const char*,
size_t,
const String& integrity_header);
static bool CheckSubresourceIntegritySignature(
const IntegrityMetadata&,
const char*,
size_t,
const String& integrity_header);
static AlgorithmParseResult ParseAttributeAlgorithm(const UChar*& begin,
const UChar* end,
IntegrityFeatures,
IntegrityAlgorithm&);
static AlgorithmParseResult ParseIntegrityHeaderAlgorithm(
const UChar*& begin,
const UChar* end,
IntegrityAlgorithm&);
typedef std::pair<const char*, IntegrityAlgorithm> AlgorithmPrefixPair;
static AlgorithmParseResult ParseAlgorithmPrefix(
const UChar*& string_position,
const UChar* string_end,
const AlgorithmPrefixPair* prefix_table,
size_t prefix_table_size,
IntegrityAlgorithm&);
static bool ParseDigest(const UChar*& begin,
const UChar* end,
String& digest);
};
} // namespace blink
#endif
|