Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_NET_CERTIFICATE_ERROR_REPORTER_H_ | 5 #ifndef CHROME_BROWSER_NET_CERTIFICATE_ERROR_REPORTER_H_ |
| 6 #define CHROME_BROWSER_NET_CERTIFICATE_ERROR_REPORTER_H_ | 6 #define CHROME_BROWSER_NET_CERTIFICATE_ERROR_REPORTER_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "net/url_request/url_request.h" | 13 #include "net/url_request/url_request.h" |
| 14 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 15 | 15 |
| 16 namespace net { | 16 namespace net { |
| 17 class URLRequestContext; | 17 class URLRequestContext; |
| 18 class SSLInfo; | 18 class SSLInfo; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace chrome_browser_net { | 21 namespace chrome_browser_net { |
| 22 | 22 |
| 23 class CertLoggerRequest; | 23 class CertLoggerRequest; |
| 24 | 24 |
| 25 extern const char kExtendedReportingUploadUrl[]; | |
|
mattm
2015/03/25 00:19:14
can be removed too.
estark
2015/03/25 00:41:23
Done.
| |
| 26 | |
| 25 // Provides functionality for sending reports about invalid SSL | 27 // Provides functionality for sending reports about invalid SSL |
| 26 // certificate chains to a report collection server. | 28 // certificate chains to a report collection server. |
| 27 class CertificateErrorReporter : public net::URLRequest::Delegate { | 29 class CertificateErrorReporter : public net::URLRequest::Delegate { |
| 28 public: | 30 public: |
| 29 // These represent the types of reports that can be sent. | 31 // These represent the types of reports that can be sent. |
| 30 enum ReportType { | 32 enum ReportType { |
| 31 // A report of a certificate chain that failed a certificate pinning | 33 // A report of a certificate chain that failed a certificate pinning |
| 32 // check. | 34 // check. |
| 33 REPORT_TYPE_PINNING_VIOLATION, | 35 REPORT_TYPE_PINNING_VIOLATION, |
| 34 // A report for an invalid certificate chain that is being sent for | 36 // A report for an invalid certificate chain that is being sent for |
| 35 // a user who has opted-in to the extended reporting program. | 37 // a user who has opted-in to the extended reporting program. |
| 36 REPORT_TYPE_EXTENDED_REPORTING | 38 REPORT_TYPE_EXTENDED_REPORTING |
| 37 }; | 39 }; |
| 38 | 40 |
| 41 // Represents whether or not to send cookies along with reports sent | |
| 42 // to the server. | |
| 43 enum CookiesPreference { SEND_COOKIES, DO_NOT_SEND_COOKIES }; | |
| 44 | |
| 39 // Create a certificate error reporter that will send certificate | 45 // Create a certificate error reporter that will send certificate |
| 40 // error reports to |upload_url|, using |request_context| as the | 46 // error reports to |upload_url|, using |request_context| as the |
| 41 // context for the reports. | 47 // context for the reports. |cookies_preference| controls whether |
| 48 // cookies will be sent along with the reports. | |
| 42 CertificateErrorReporter(net::URLRequestContext* request_context, | 49 CertificateErrorReporter(net::URLRequestContext* request_context, |
| 43 const GURL& upload_url); | 50 const GURL& upload_url, |
| 51 CookiesPreference cookies_preference); | |
| 44 | 52 |
| 45 ~CertificateErrorReporter() override; | 53 ~CertificateErrorReporter() override; |
| 46 | 54 |
| 47 // Construct, serialize, and send a certificate reporter to the report | 55 // Construct, serialize, and send a certificate report to the report |
| 48 // collection server containing the |ssl_info| associated with a | 56 // collection server containing the |ssl_info| associated with a |
| 49 // connection to |hostname|. | 57 // connection to |hostname|. |
| 50 virtual void SendReport(ReportType type, | 58 virtual void SendReport(ReportType type, |
| 51 const std::string& hostname, | 59 const std::string& hostname, |
| 52 const net::SSLInfo& ssl_info); | 60 const net::SSLInfo& ssl_info); |
| 53 | 61 |
| 54 // net::URLRequest::Delegate | 62 // net::URLRequest::Delegate |
| 55 void OnResponseStarted(net::URLRequest* request) override; | 63 void OnResponseStarted(net::URLRequest* request) override; |
| 56 void OnReadCompleted(net::URLRequest* request, int bytes_read) override; | 64 void OnReadCompleted(net::URLRequest* request, int bytes_read) override; |
| 57 | 65 |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 72 | 80 |
| 73 // Performs post-report cleanup. | 81 // Performs post-report cleanup. |
| 74 void RequestComplete(net::URLRequest* request); | 82 void RequestComplete(net::URLRequest* request); |
| 75 | 83 |
| 76 net::URLRequestContext* const request_context_; | 84 net::URLRequestContext* const request_context_; |
| 77 const GURL upload_url_; | 85 const GURL upload_url_; |
| 78 | 86 |
| 79 // Owns the contained requests. | 87 // Owns the contained requests. |
| 80 std::set<net::URLRequest*> inflight_requests_; | 88 std::set<net::URLRequest*> inflight_requests_; |
| 81 | 89 |
| 90 CookiesPreference cookies_preference_; | |
| 91 | |
| 82 DISALLOW_COPY_AND_ASSIGN(CertificateErrorReporter); | 92 DISALLOW_COPY_AND_ASSIGN(CertificateErrorReporter); |
| 83 }; | 93 }; |
| 84 | 94 |
| 85 } // namespace chrome_browser_net | 95 } // namespace chrome_browser_net |
| 86 | 96 |
| 87 #endif // CHROME_BROWSER_NET_CERTIFICATE_ERROR_REPORTER_H_ | 97 #endif // CHROME_BROWSER_NET_CERTIFICATE_ERROR_REPORTER_H_ |
| OLD | NEW |