1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
|
#include "server/handler.h"
#include <gflags/gflags.h>
#include <glog/logging.h>
#include <stdint.h>
#include <stdlib.h>
#include <algorithm>
#include <algorithm>
#include <functional>
#include <memory>
#include <mutex>
#include <string>
#include <vector>
#include "log/cert.h"
#include "log/cert_checker.h"
#include "log/cluster_state_controller.h"
#include "log/log_lookup.h"
#include "log/logged_entry.h"
#include "monitoring/latency.h"
#include "monitoring/monitoring.h"
#include "server/json_output.h"
#include "server/proxy.h"
#include "util/json_wrapper.h"
#include "util/thread_pool.h"
namespace libevent = cert_trans::libevent;
using cert_trans::Counter;
using cert_trans::HttpHandler;
using cert_trans::Latency;
using cert_trans::LoggedEntry;
using cert_trans::Proxy;
using cert_trans::ScopedLatency;
using ct::ShortMerkleAuditProof;
using ct::SignedCertificateTimestamp;
using ct::SignedTreeHead;
using std::bind;
using std::chrono::milliseconds;
using std::chrono::seconds;
using std::lock_guard;
using std::make_shared;
using std::multimap;
using std::min;
using std::mutex;
using std::placeholders::_1;
using std::string;
using std::unique_ptr;
using std::vector;
DEFINE_int32(max_leaf_entries_per_response, 1000,
"maximum number of entries to put in the response of a "
"get-entries request");
namespace {
static Latency<milliseconds, string> http_server_request_latency_ms(
"total_http_server_request_latency_ms", "path",
"Total request latency in ms broken down by path");
} // namespace
HttpHandler::HttpHandler(LogLookup* log_lookup, const ReadOnlyDatabase* db,
const ClusterStateController* controller,
ThreadPool* pool, libevent::Base* event_base,
StalenessTracker* staleness_tracker)
: log_lookup_(CHECK_NOTNULL(log_lookup)),
db_(CHECK_NOTNULL(db)),
controller_(CHECK_NOTNULL(controller)),
proxy_(nullptr),
pool_(CHECK_NOTNULL(pool)),
event_base_(CHECK_NOTNULL(event_base)),
staleness_tracker_(CHECK_NOTNULL(staleness_tracker)) {
}
HttpHandler::~HttpHandler() {
}
void StatsHandlerInterceptor(const string& path,
const libevent::HttpServer::HandlerCallback& cb,
evhttp_request* req) {
ScopedLatency total_http_server_request_latency(
http_server_request_latency_ms.GetScopedLatency(path));
cb(req);
}
void HttpHandler::AddEntryReply(evhttp_request* req,
const util::Status& add_status,
const SignedCertificateTimestamp& sct) const {
if (!add_status.ok() &&
add_status.CanonicalCode() != util::error::ALREADY_EXISTS) {
VLOG(1) << "error adding chain: " << add_status;
const int response_code(add_status.CanonicalCode() ==
util::error::RESOURCE_EXHAUSTED
? HTTP_SERVUNAVAIL
: HTTP_BADREQUEST);
return SendJsonError(event_base_, req, response_code,
add_status.error_message());
}
JsonObject json_reply;
json_reply.Add("sct_version", static_cast<int64_t>(0));
json_reply.AddBase64("id", sct.id().key_id());
json_reply.Add("timestamp", sct.timestamp());
json_reply.Add("extensions", "");
json_reply.Add("signature", sct.signature());
SendJsonReply(event_base_, req, HTTP_OK, json_reply);
}
void HttpHandler::ProxyInterceptor(
const libevent::HttpServer::HandlerCallback& local_handler,
evhttp_request* request) {
VLOG(2) << "Running proxy interceptor...";
// TODO(alcutter): We can be a bit smarter about when to proxy off
// the request - being stale wrt to the current serving STH doesn't
// automatically mean we're unable to answer this request.
if (staleness_tracker_->IsNodeStale()) {
// Can't do this on the libevent thread since it can block on the lock in
// ClusterStatusController::GetFreshNodes().
pool_->Add(bind(&Proxy::ProxyRequest, proxy_, request));
} else {
local_handler(request);
}
}
void HttpHandler::AddProxyWrappedHandler(
libevent::HttpServer* server, const string& path,
const libevent::HttpServer::HandlerCallback& local_handler) {
const libevent::HttpServer::HandlerCallback stats_handler(
bind(&StatsHandlerInterceptor, path, local_handler, _1));
CHECK(server->AddHandler(path, bind(&HttpHandler::ProxyInterceptor, this,
stats_handler, _1)));
}
void HttpHandler::Add(libevent::HttpServer* server) {
CHECK_NOTNULL(server);
// TODO(pphaneuf): An optional prefix might be nice?
// TODO(pphaneuf): Find out which methods are CPU intensive enough
// that they should be spun off to the thread pool.
AddProxyWrappedHandler(server, "/ct/v1/get-entries",
bind(&HttpHandler::GetEntries, this, _1));
AddProxyWrappedHandler(server, "/ct/v1/get-proof-by-hash",
bind(&HttpHandler::GetProof, this, _1));
AddProxyWrappedHandler(server, "/ct/v1/get-sth",
bind(&HttpHandler::GetSTH, this, _1));
AddProxyWrappedHandler(server, "/ct/v1/get-sth-consistency",
bind(&HttpHandler::GetConsistency, this, _1));
// Now add any sub-class handlers.
AddHandlers(server);
}
void HttpHandler::SetProxy(Proxy* proxy) {
LOG_IF(FATAL, proxy_) << "Attempting to re-add a Proxy.";
proxy_ = CHECK_NOTNULL(proxy);
}
void HttpHandler::GetEntries(evhttp_request* req) const {
if (evhttp_request_get_command(req) != EVHTTP_REQ_GET) {
return SendJsonError(event_base_, req, HTTP_BADMETHOD,
"Method not allowed.");
}
const libevent::QueryParams query(libevent::ParseQuery(req));
const int64_t start(libevent::GetIntParam(query, "start"));
if (start < 0) {
return SendJsonError(event_base_, req, HTTP_BADREQUEST,
"Missing or invalid \"start\" parameter.");
}
int64_t end(libevent::GetIntParam(query, "end"));
if (end < start) {
return SendJsonError(event_base_, req, HTTP_BADREQUEST,
"Missing or invalid \"end\" parameter.");
}
// Limit the number of entries returned in a single request.
end = std::min(end, start + FLAGS_max_leaf_entries_per_response);
// Sekrit parameter to indicate that SCTs should be included too.
// This is non-standard, and is only used internally by other log nodes when
// "following" nodes with more data.
const bool include_scts(libevent::GetBoolParam(query, "include_scts"));
BlockingGetEntries(req, start, end, include_scts);
}
void HttpHandler::GetProof(evhttp_request* req) const {
if (evhttp_request_get_command(req) != EVHTTP_REQ_GET) {
return SendJsonError(event_base_, req, HTTP_BADMETHOD,
"Method not allowed.");
}
const libevent::QueryParams query(libevent::ParseQuery(req));
string b64_hash;
if (!libevent::GetParam(query, "hash", &b64_hash)) {
return SendJsonError(event_base_, req, HTTP_BADREQUEST,
"Missing or invalid \"hash\" parameter.");
}
const string hash(util::FromBase64(b64_hash.c_str()));
if (hash.empty()) {
return SendJsonError(event_base_, req, HTTP_BADREQUEST,
"Invalid \"hash\" parameter.");
}
const int64_t tree_size(libevent::GetIntParam(query, "tree_size"));
if (tree_size < 0 ||
static_cast<int64_t>(tree_size) > log_lookup_->GetSTH().tree_size()) {
return SendJsonError(event_base_, req, HTTP_BADREQUEST,
"Missing or invalid \"tree_size\" parameter.");
}
ShortMerkleAuditProof proof;
if (log_lookup_->AuditProof(hash, tree_size, &proof) != LogLookup::OK) {
return SendJsonError(event_base_, req, HTTP_BADREQUEST,
"Couldn't find hash.");
}
JsonArray json_audit;
for (int i = 0; i < proof.path_node_size(); ++i) {
json_audit.AddBase64(proof.path_node(i));
}
JsonObject json_reply;
json_reply.Add("leaf_index", proof.leaf_index());
json_reply.Add("audit_path", json_audit);
SendJsonReply(event_base_, req, HTTP_OK, json_reply);
}
void HttpHandler::GetSTH(evhttp_request* req) const {
if (evhttp_request_get_command(req) != EVHTTP_REQ_GET) {
return SendJsonError(event_base_, req, HTTP_BADMETHOD,
"Method not allowed.");
}
const SignedTreeHead& sth(log_lookup_->GetSTH());
VLOG(2) << "SignedTreeHead:\n" << sth.DebugString();
JsonObject json_reply;
json_reply.Add("tree_size", sth.tree_size());
json_reply.Add("timestamp", sth.timestamp());
json_reply.AddBase64("sha256_root_hash", sth.sha256_root_hash());
json_reply.Add("tree_head_signature", sth.signature());
VLOG(2) << "GetSTH:\n" << json_reply.DebugString();
SendJsonReply(event_base_, req, HTTP_OK, json_reply);
}
void HttpHandler::GetConsistency(evhttp_request* req) const {
if (evhttp_request_get_command(req) != EVHTTP_REQ_GET) {
return SendJsonError(event_base_, req, HTTP_BADMETHOD,
"Method not allowed.");
}
const libevent::QueryParams query(libevent::ParseQuery(req));
const int64_t first(libevent::GetIntParam(query, "first"));
if (first < 0) {
return SendJsonError(event_base_, req, HTTP_BADREQUEST,
"Missing or invalid \"first\" parameter.");
}
const int64_t second(libevent::GetIntParam(query, "second"));
if (second < first) {
return SendJsonError(event_base_, req, HTTP_BADREQUEST,
"Missing or invalid \"second\" parameter.");
}
const vector<string> consistency(
log_lookup_->ConsistencyProof(first, second));
JsonArray json_cons;
for (vector<string>::const_iterator it = consistency.begin();
it != consistency.end(); ++it) {
json_cons.AddBase64(*it);
}
JsonObject json_reply;
json_reply.Add("consistency", json_cons);
SendJsonReply(event_base_, req, HTTP_OK, json_reply);
}
void HttpHandler::BlockingGetEntries(evhttp_request* req, int64_t start,
int64_t end, bool include_scts) const {
JsonArray json_entries;
auto it(db_->ScanEntries(start));
for (int64_t i = start; i <= end; ++i) {
LoggedEntry entry;
if (!it->GetNextEntry(&entry) || entry.sequence_number() != i) {
break;
}
string leaf_input;
string extra_data;
string sct_data;
if (!entry.SerializeForLeaf(&leaf_input) ||
!entry.SerializeExtraData(&extra_data) ||
(include_scts &&
Serializer::SerializeSCT(entry.sct(), &sct_data) !=
cert_trans::serialization::SerializeResult::OK)) {
LOG(WARNING) << "Failed to serialize entry @ " << i << ":\n"
<< entry.DebugString();
return SendJsonError(event_base_, req, HTTP_INTERNAL,
"Serialization failed.");
}
JsonObject json_entry;
json_entry.AddBase64("leaf_input", leaf_input);
json_entry.AddBase64("extra_data", extra_data);
if (include_scts) {
// This is non-standard, and currently only used by other SuperDuper log
// nodes when "following" to fetch data from each other:
json_entry.AddBase64("sct", sct_data);
}
json_entries.Add(&json_entry);
}
if (json_entries.Length() < 1) {
return SendJsonError(event_base_, req, HTTP_BADREQUEST,
"Entry not found.");
}
JsonObject json_reply;
json_reply.Add("entries", json_entries);
SendJsonReply(event_base_, req, HTTP_OK, json_reply);
}
|