2015-08-13 06:19:11 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 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_dom_SRICheck_h
|
|
|
|
#define mozilla_dom_SRICheck_h
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
2015-11-30 17:54:40 +03:00
|
|
|
#include "nsICryptoHash.h"
|
2015-08-13 06:19:11 +03:00
|
|
|
|
2015-11-30 17:54:40 +03:00
|
|
|
class nsIChannel;
|
2015-10-07 21:27:19 +03:00
|
|
|
class nsIUnicharStreamLoader;
|
2016-09-08 04:59:40 +03:00
|
|
|
class nsIConsoleReportCollector;
|
2015-08-13 06:19:11 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2016-09-26 15:03:25 +03:00
|
|
|
class SRIMetadata;
|
|
|
|
|
2015-08-13 06:19:11 +03:00
|
|
|
class SRICheck final
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static const uint32_t MAX_METADATA_LENGTH = 24*1024;
|
|
|
|
static const uint32_t MAX_METADATA_TOKENS = 512;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse the multiple hashes specified in the integrity attribute and
|
|
|
|
* return the strongest supported hash.
|
|
|
|
*/
|
|
|
|
static nsresult IntegrityMetadata(const nsAString& aMetadataList,
|
2016-09-08 04:59:40 +03:00
|
|
|
const nsACString& aSourceFileURI,
|
|
|
|
nsIConsoleReportCollector* aReporter,
|
2015-08-13 06:19:11 +03:00
|
|
|
SRIMetadata* outMetadata);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process the integrity attribute of the element. A result of false
|
|
|
|
* must prevent the resource from loading.
|
|
|
|
*/
|
|
|
|
static nsresult VerifyIntegrity(const SRIMetadata& aMetadata,
|
2015-10-07 21:27:19 +03:00
|
|
|
nsIUnicharStreamLoader* aLoader,
|
2015-08-13 06:19:11 +03:00
|
|
|
const nsAString& aString,
|
2016-09-08 04:59:40 +03:00
|
|
|
const nsACString& aSourceFileURI,
|
|
|
|
nsIConsoleReportCollector* aReporter);
|
2015-08-13 06:19:11 +03:00
|
|
|
};
|
|
|
|
|
2015-11-30 17:54:40 +03:00
|
|
|
class SRICheckDataVerifier final
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SRICheckDataVerifier(const SRIMetadata& aMetadata,
|
2016-09-08 04:59:40 +03:00
|
|
|
const nsACString& aSourceFileURI,
|
|
|
|
nsIConsoleReportCollector* aReporter);
|
2015-11-30 17:54:40 +03:00
|
|
|
|
|
|
|
nsresult Update(uint32_t aStringLen, const uint8_t* aString);
|
|
|
|
nsresult Verify(const SRIMetadata& aMetadata, nsIChannel* aChannel,
|
2016-09-08 04:59:40 +03:00
|
|
|
const nsACString& aSourceFileURI,
|
|
|
|
nsIConsoleReportCollector* aReporter);
|
2015-11-30 17:54:40 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
nsCOMPtr<nsICryptoHash> mCryptoHash;
|
|
|
|
nsAutoCString mComputedHash;
|
|
|
|
size_t mBytesHashed;
|
|
|
|
int8_t mHashType;
|
|
|
|
bool mInvalidMetadata;
|
|
|
|
bool mComplete;
|
|
|
|
|
|
|
|
nsresult EnsureCryptoHash();
|
|
|
|
nsresult Finish();
|
|
|
|
nsresult VerifyHash(const SRIMetadata& aMetadata, uint32_t aHashIndex,
|
2016-09-08 04:59:40 +03:00
|
|
|
const nsACString& aSourceFileURI,
|
|
|
|
nsIConsoleReportCollector* aReporter);
|
2015-11-30 17:54:40 +03:00
|
|
|
};
|
|
|
|
|
2015-08-13 06:19:11 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SRICheck_h
|