Reporting
Reporting is a central mechanism for sending out-of-band error reports to origins from various other components (e.g. HTTP Public Key Pinning, Interventions, or Content Security Policy could potentially use it).
The parts of it that are exposed to the web platform are specified in the draft spec. This document assumes that you've read that one.
Reporting in Chromium
Reporting is implemented as part of the network stack in Chromium, such that it can be used by other parts of the network stack (e.g. HPKP) or by non-browser embedders as well as by Chromium.
Almost all of Reporting lives in //net/reporting; there is a small
amount of code in //chrome/browser/net to set up Reporting in
profiles and provide a persistent store for reports and endpoints
across browser restarts.
Inside //net
-
The top-level class is the
ReportingService. This lives in theURLRequestContext, and provides the high-level operations used by other parts of//netand other components: queueing reports, handling configuration headers, clearing browsing data, and so on.-
Within
ReportingServicelivesReportingContext, which in turn contains the inner workings of Reporting, spread across several classes:-
The
ReportingCachestores undelivered reports and unexpired endpoint configurations. -
The
ReportingHeaderParserparsesReport-To:headers and updates theCacheaccordingly. -
The
ReportingDeliveryAgentreads reports from theCache, decides which endpoints to deliver them to, and attempts to do so. It uses a couple of helper classes:-
The
ReportingUploaderdoes the low-level work of delivering reports: accepts a URL and JSON from theDeliveryAgent, creates aURLRequest, and parses the result. -
The
ReportingEndpointManagerkeeps track of which endpoints are in use, and manages exponential backoff (usingBackoffEntry) for failing endpoints.
-
-
The
ReportingGarbageCollectorperiodically examines theCacheand removes reports that have remained undelivered for too long, or that have failed delivery too many times. -
The
ReportingSerializerreads theCacheand serializes it into abase::Valuefor persistent storage (in Chromium, as a pref); it can also deserialize a serializedValueback into theCache. -
The
ReportingBrowsingDataRemoverexamines theCacheupon request and removes browsing data (reports and endpoints) of selected types and origins.
-
-
Outside //net
-
In
*ProfileImplIOData*::InitializeInternal, theReportingServiceis created and set in theURLRequestContext, where the net stack can use it.(There is currently no interface to Reporting besides "hop over to the IO thread and poke the
ReportingServicein your favoriteURLRequestContext", but that should change as various components need to queue reports.) -
ChromeReportingDelegateimplementsReportingDelegateand plumbs the persistent data interface into prefs. It lives in//chrome/browser/net.