Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(629)

Unified Diff: components/certificate_transparency/tree_state_tracker.h

Issue 1845113003: Certificate Transparency: Start tracking logs' state (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments, test improvement Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/certificate_transparency/tree_state_tracker.h
diff --git a/components/certificate_transparency/tree_state_tracker.h b/components/certificate_transparency/tree_state_tracker.h
new file mode 100644
index 0000000000000000000000000000000000000000..eb138dc18f421f84202ae998f805b756d435edb9
--- /dev/null
+++ b/components/certificate_transparency/tree_state_tracker.h
@@ -0,0 +1,73 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_CERTIFICATE_TRANSPARENCY_TREE_STATE_TRACKER_H_
+#define COMPONENTS_CERTIFICATE_TRANSPARENCY_TREE_STATE_TRACKER_H_
+
+#include <map>
+#include <memory>
+#include <string>
+#include <vector>
+
+#include "base/memory/ref_counted.h"
+#include "net/cert/ct_verifier.h"
+#include "net/cert/sth_observer.h"
+
+namespace net {
+class CTLogVerifier;
+class X509Certificate;
+
+namespace ct {
+struct SignedCertificateTimestamp;
+struct SignedTreeHead;
+} // namespace ct
+
+} // namespace net
+
+namespace certificate_transparency {
+class SingleTreeTracker;
+
+// Starting point for handling observed Certificate Transparency data in
+// a particular browsing session.
+// This class receives notifications of new Signed Tree Heads (STHs) and
+// verified Signed Certificate Timestamps (SCTs) and delegates them to
+// the SingleTreeTracker tracking the CT log they relate to.
+// TODO(eranm): Export the inclusion check status of SCTs+Certs so it can
+// be used in the DevTools Security panel, for example - crbug.com/506227
+class TreeStateTracker : public net::CTVerifier::Observer,
+ public net::ct::STHObserver {
+ public:
+ // Track the set of logs provided in |ct_logs|. An instance of this class
+ // only tracks the logs provided in the constructor. The implementation
+ // is based on the assumption that the list of recognized logs does not change
+ // during the object's life time.
+ // Observed STHs from logs not in this list will be simply ignored.
+ // As the assumption is that all recognized logs are known during creation
+ // time, there's a CHECK in OnSCTVerified that the verified SCT is from
+ // one of the logs in the list provided during construction.
Ryan Sleevi 2016/05/18 16:58:19 Better, but not quite - now that's documenting the
Eran Messeri 2016/05/19 12:35:00 I understand the asymmetry problem of CHECK-failin
Ryan Sleevi 2016/05/19 17:20:56 That's one approach, but the other I think makes i
+ explicit TreeStateTracker(
+ std::vector<scoped_refptr<const net::CTLogVerifier>> ct_logs);
+ ~TreeStateTracker() override;
+
+ // net::ct::CTVerifier::Observer implementation.
+ // Delegates to the tree tracker corresponding to the log that issued the SCT.
+ // Must only be called with SCTs from logs present during construction.
Ryan Sleevi 2016/05/18 16:58:19 Happy to drop 55/61 in light of the ctor comment.
Eran Messeri 2016/05/19 12:35:00 Done.
+ void OnSCTVerified(net::X509Certificate* cert,
+ const net::ct::SignedCertificateTimestamp* sct) override;
+
+ // net::ct::STHObserver implementation.
+ // Delegates to the tree tracker corresponding to the log that issued the STH.
+ // Does nothing if the STH is from a log not present during construction.
+ void NewSTHObserved(const net::ct::SignedTreeHead& sth) override;
+
+ private:
+ // Holds the SingleTreeTracker for each log
+ std::map<std::string, std::unique_ptr<SingleTreeTracker>> tree_trackers_;
+
+ DISALLOW_COPY_AND_ASSIGN(TreeStateTracker);
+};
+
+} // namespace certificate_transparency
+
+#endif // COMPONENTS_CERTIFICATE_TRANSPARENCY_TREE_STATE_TRACKER_H_

Powered by Google App Engine
This is Rietveld 408576698