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

Unified Diff: components/certificate_transparency/log_proof_fetcher.h

Issue 1405293009: Certificate Transparency: Fetching consistency proofs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments Created 5 years 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/log_proof_fetcher.h
diff --git a/components/certificate_transparency/log_proof_fetcher.h b/components/certificate_transparency/log_proof_fetcher.h
index ba952e365d6f77177184a9c70648e2b9f6ef6b09..b7a6ab31ffeb8a4d117e0949a6456b7d29fc1526 100644
--- a/components/certificate_transparency/log_proof_fetcher.h
+++ b/components/certificate_transparency/log_proof_fetcher.h
@@ -5,14 +5,16 @@
#ifndef COMPONENTS_CERTIFICATE_TRANSPARENCY_LOG_PROOF_FETCHER_H_
#define COMPONENTS_CERTIFICATE_TRANSPARENCY_LOG_PROOF_FETCHER_H_
-#include <map>
+#include <stdint.h>
+
+#include <set>
#include <string>
+#include <vector>
#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
-#include "net/url_request/url_request.h"
namespace base {
class Value;
@@ -36,9 +38,13 @@ namespace certificate_transparency {
// Transparency logs using the URLRequestContext provided during the instance
// construction.
// Must outlive the provided URLRequestContext.
-class LogProofFetcher : public net::URLRequest::Delegate {
+class LogProofFetcher {
public:
- static const size_t kMaxLogResponseSizeInBytes = 600;
+ // Buffer size for log replies - currently the reply to
+ // get-consistency-proof is the biggest one this class handles. 1500 bytes
+ // should be enough to accommodate 31 proof nodes + JSON overhead, supporting
+ // trees with up to 100 million entries.
+ static const size_t kMaxLogResponseSizeInBytes = 1500;
// Callback for successful retrieval of Signed Tree Heads. Called
// with the log_id of the log the STH belogs to (as supplied by the caller
@@ -53,8 +59,16 @@ class LogProofFetcher : public net::URLRequest::Delegate {
using FetchFailedCallback = base::Callback<
void(const std::string& log_id, int net_error, int http_response_code)>;
+ // Callback for successful retrieval of consistency proofs between two
+ // STHs. Called with the log_id of the log the consistency belongs to (as
+ // supplied by the caller to FetchConsistencyProof) and the vector of
+ // proof nodes.
+ using ConsistencyProofFetchedCallback =
+ base::Callback<void(const std::string& log_id,
+ const std::vector<std::string>& consistency_proof)>;
+
explicit LogProofFetcher(net::URLRequestContext* request_context);
- ~LogProofFetcher() override;
+ ~LogProofFetcher();
// Fetch the latest Signed Tree Head from the log identified by |log_id|
// from |base_log_url|. The |log_id| will be passed into the callbacks to
@@ -73,44 +87,38 @@ class LogProofFetcher : public net::URLRequest::Delegate {
const SignedTreeHeadFetchedCallback& fetched_callback,
const FetchFailedCallback& failed_callback);
- // net::URLRequest::Delegate
- void OnResponseStarted(net::URLRequest* request) override;
- void OnReadCompleted(net::URLRequest* request, int bytes_read) override;
+ // Fetch a consistency proof between the Merkle trees identified by
+ // |old_tree_size| and |new_tree_size| of the log identified by |log_id|
+ // from |base_log_url|.
+ //
+ // See the documentation of FetchSignedTreeHead regarding request destruction
+ // and multiple requests to the same log.
+ void FetchConsistencyProof(
+ const GURL& base_log_url,
+ const std::string& log_id,
+ uint64_t old_tree_size,
+ uint64_t new_tree_size,
+ const ConsistencyProofFetchedCallback& fetched_callback,
+ const FetchFailedCallback& failed_callback);
private:
- struct FetchState;
- // Handles the final result of a URLRequest::Read call on |request|.
- // Returns true if another read should be started, false if the read
- // failed completely or we have to wait for OnResponseStarted to
- // be called.
- bool HandleReadResult(net::URLRequest* request,
- FetchState* params,
- int bytes_read);
-
- // Calls URLRequest::Read on |request| repeatedly, until HandleReadResult
- // indicates it should no longer be called. Usually this would be when there
- // is pending IO that requires waiting for OnResponseStarted to be called.
- void StartNextRead(net::URLRequest* request, FetchState* params);
-
- // Performs post-report cleanup.
- void RequestComplete(net::URLRequest* request);
- // Deletes the request and associated FetchState from the internal map.
- void CleanupRequest(net::URLRequest* request);
- // Invokes the failure callback with the supplied arguments, then cleans up
- // the request.
- void InvokeFailureCallback(net::URLRequest* request,
- int net_error,
- int http_response_code);
-
- // Callbacks for parsing the STH's JSON by the SafeJsonParser
- void OnSTHJsonParseSuccess(net::URLRequest* request,
- scoped_ptr<base::Value> parsed_json);
- void OnSTHJsonParseError(net::URLRequest* request, const std::string& error);
+ class LogResponseHandler;
+ class GetSTHLogResponseHandler;
+ class GetConsistencyProofLogResponseHandler;
+ class LogFetcher;
Ryan Sleevi 2016/01/12 22:15:01 You don't need the declarations on line 106-108, A
Eran Messeri 2016/01/18 15:50:56 Where should I declare these classes, then? These
+
+ // Starts the fetch (by delegating to the LogResponseHandler)
Ryan Sleevi 2016/01/12 22:15:01 typo: by delegating/by delegating/
Eran Messeri 2016/01/18 15:50:56 Done.
+ // and stores the |log_handler| in |inflight_fetches_| for later
+ // cleanup.
+ void StartFetch(const GURL& request_url, LogResponseHandler* log_handler);
+
+ // Callback for when the fetch was done (successfully or not).
+ // Deletes, and removes, the |log_handler| from the |inflight_fetches_|.
+ void OnFetchDone(LogResponseHandler* log_handler);
net::URLRequestContext* const request_context_;
- // Owns the contained requests, as well as FetchState.
- std::map<net::URLRequest*, FetchState*> inflight_requests_;
+ std::set<LogResponseHandler*> inflight_fetches_;
base::WeakPtrFactory<LogProofFetcher> weak_factory_;

Powered by Google App Engine
This is Rietveld 408576698