summaryrefslogtreecommitdiffstats
path: root/chrome/browser/net/certificate_error_reporter.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/net/certificate_error_reporter.h')
-rw-r--r--chrome/browser/net/certificate_error_reporter.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/chrome/browser/net/certificate_error_reporter.h b/chrome/browser/net/certificate_error_reporter.h
index 3c20ec1..cba431f 100644
--- a/chrome/browser/net/certificate_error_reporter.h
+++ b/chrome/browser/net/certificate_error_reporter.h
@@ -21,6 +21,7 @@ class SSLInfo;
namespace chrome_browser_net {
class CertLoggerRequest;
+class EncryptedCertLoggerRequest;
// Provides functionality for sending reports about invalid SSL
// certificate chains to a report collection server.
@@ -48,6 +49,13 @@ class CertificateErrorReporter : public net::URLRequest::Delegate {
const GURL& upload_url,
CookiesPreference cookies_preference);
+ // Allows tests to use a server public key with known private key.
+ CertificateErrorReporter(net::URLRequestContext* request_context,
+ const GURL& upload_url,
+ CookiesPreference cookies_preference,
+ const uint8 server_public_key[32],
+ const uint32 server_public_key_version);
+
~CertificateErrorReporter() override;
// Construct, serialize, and send a certificate report to the report
@@ -58,6 +66,11 @@ class CertificateErrorReporter : public net::URLRequest::Delegate {
// responsible for enforcing any preconditions (such as obtaining user
// opt-in, only sending reports for certain hostnames, checking for
// incognito mode, etc.).
+ //
+ // On some platforms (but not all), CertificateErrorReporter can use
+ // an HTTP endpoint to send encrypted extended reporting reports. On
+ // unsupported platforms, callers must send extended reporting reports
+ // over SSL.
virtual void SendReport(ReportType type,
const std::string& hostname,
const net::SSLInfo& ssl_info);
@@ -66,6 +79,16 @@ class CertificateErrorReporter : public net::URLRequest::Delegate {
void OnResponseStarted(net::URLRequest* request) override;
void OnReadCompleted(net::URLRequest* request, int bytes_read) override;
+ // Callers can use this method to determine if sending reports over
+ // HTTP is supported.
+ static bool IsHttpUploadUrlSupported();
+
+ // Used by tests.
+ static bool DecryptCertificateErrorReport(
+ const uint8 server_private_key[32],
+ const EncryptedCertLoggerRequest& encrypted_report,
+ CertLoggerRequest* decrypted_report);
+
private:
// Create a URLRequest with which to send a certificate report to the
// server.
@@ -76,6 +99,8 @@ class CertificateErrorReporter : public net::URLRequest::Delegate {
// collection server.
void SendCertLoggerRequest(const CertLoggerRequest& request);
+ void SendSerializedRequest(const std::string& serialized_request);
+
// Populate the CertLoggerRequest for a report.
static void BuildReport(const std::string& hostname,
const net::SSLInfo& ssl_info,
@@ -92,6 +117,9 @@ class CertificateErrorReporter : public net::URLRequest::Delegate {
CookiesPreference cookies_preference_;
+ const uint8* server_public_key_;
+ const uint32 server_public_key_version_;
+
DISALLOW_COPY_AND_ASSIGN(CertificateErrorReporter);
};