tree: dd9d30e24dd191817a0c6349c97bd1ef49b91627 [path history] [tgz]
  1. README.md
  2. reporting_browsing_data_remover.cc
  3. reporting_browsing_data_remover.h
  4. reporting_browsing_data_remover_unittest.cc
  5. reporting_cache.cc
  6. reporting_cache.h
  7. reporting_cache_unittest.cc
  8. reporting_client.cc
  9. reporting_client.h
  10. reporting_context.cc
  11. reporting_context.h
  12. reporting_delegate.cc
  13. reporting_delegate.h
  14. reporting_delivery_agent.cc
  15. reporting_delivery_agent.h
  16. reporting_delivery_agent_unittest.cc
  17. reporting_endpoint_manager.cc
  18. reporting_endpoint_manager.h
  19. reporting_endpoint_manager_unittest.cc
  20. reporting_garbage_collector.cc
  21. reporting_garbage_collector.h
  22. reporting_garbage_collector_unittest.cc
  23. reporting_header_parser.cc
  24. reporting_header_parser.h
  25. reporting_header_parser_fuzzer.cc
  26. reporting_header_parser_unittest.cc
  27. reporting_network_change_observer.cc
  28. reporting_network_change_observer.h
  29. reporting_network_change_observer_unittest.cc
  30. reporting_observer.cc
  31. reporting_observer.h
  32. reporting_policy.cc
  33. reporting_policy.h
  34. reporting_policy.proto
  35. reporting_report.cc
  36. reporting_report.h
  37. reporting_service.cc
  38. reporting_service.h
  39. reporting_service_unittest.cc
  40. reporting_test_util.cc
  41. reporting_test_util.h
  42. reporting_uploader.cc
  43. reporting_uploader.h
  44. reporting_uploader_unittest.cc
net/reporting/README.md

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 the URLRequestContext, and provides the high-level operations used by other parts of //net and other components: queueing reports, handling configuration headers, clearing browsing data, and so on.

    • Within ReportingService lives ReportingContext, which in turn contains the inner workings of Reporting, spread across several classes:

      • The ReportingCache stores undelivered reports and unexpired endpoint configurations.

      • The ReportingHeaderParser parses Report-To: headers and updates the Cache accordingly.

      • The ReportingDeliveryAgent reads reports from the Cache, decides which endpoints to deliver them to, and attempts to do so. It uses a couple of helper classes:

        • The ReportingUploader does the low-level work of delivering reports: accepts a URL and JSON from the DeliveryAgent, creates a URLRequest, and parses the result.

        • The ReportingEndpointManager keeps track of which endpoints are in use, and manages exponential backoff (using BackoffEntry) for failing endpoints.

      • The ReportingGarbageCollector periodically examines the Cache and removes reports that have remained undelivered for too long, or that have failed delivery too many times.

      • The ReportingSerializer reads the Cache and serializes it into a base::Value for persistent storage (in Chromium, as a pref); it can also deserialize a serialized Value back into the Cache.

      • The ReportingBrowsingDataRemover examines the Cache upon request and removes browsing data (reports and endpoints) of selected types and origins.

Outside //net

  • In *ProfileImplIOData*::InitializeInternal, the ReportingService is created and set in the URLRequestContext, where the net stack can use it.

    (There is currently no interface to Reporting besides “hop over to the IO thread and poke the ReportingService in your favorite URLRequestContext”, but that should change as various components need to queue reports.)

  • ChromeReportingDelegate implements ReportingDelegate and plumbs the persistent data interface into prefs. It lives in //chrome/browser/net.