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

Unified Diff: net/http/http_response_info.cc

Issue 88643002: SignedCertificateTimestamp storing & serialization code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@erans_patches
Patch Set: remove a spurious content:: Created 7 years, 1 month 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: net/http/http_response_info.cc
diff --git a/net/http/http_response_info.cc b/net/http/http_response_info.cc
index 7ca844a50f5090835cc42f2ff47c6a06d3d42286..bd7817a34fac13f89f9e01a614a2d7e49a57e833 100644
--- a/net/http/http_response_info.cc
+++ b/net/http/http_response_info.cc
@@ -10,6 +10,7 @@
#include "net/base/auth.h"
#include "net/base/io_buffer.h"
#include "net/base/net_errors.h"
+#include "net/cert/signed_certificate_timestamp.h"
#include "net/cert/x509_certificate.h"
#include "net/http/http_response_headers.h"
#include "net/ssl/ssl_cert_request_info.h"
@@ -87,6 +88,9 @@ enum {
// This bit is set if the request has http authentication.
RESPONSE_INFO_USE_HTTP_AUTHENTICATION = 1 << 19,
+ // This bit is set if ssl_info has SCTs.
+ RESPONSE_INFO_HAS_SIGNED_CERTIFICATE_TIMESTAMPS = 1 << 20,
+
// TODO(darin): Add other bits to indicate alternate request methods.
// For now, we don't support storing those.
};
@@ -207,6 +211,22 @@ bool HttpResponseInfo::InitFromPickle(const Pickle& pickle,
ssl_info.connection_status = connection_status;
}
+ if (flags & RESPONSE_INFO_HAS_SIGNED_CERTIFICATE_TIMESTAMPS) {
+ int num_scts;
+ if (!pickle.ReadInt(&iter, &num_scts))
+ return false;
+ for (int i = 0; i < num_scts; ++i) {
+ scoped_refptr<ct::SignedCertificateTimestamp> sct(
+ ct::SignedCertificateTimestamp::CreateFromPickle(&iter));
+ uint16 status;
+ if (!sct.get() || !pickle.ReadUInt16(&iter, &status))
+ return false;
+ ssl_info.signed_certificate_timestamps.push_back(
+ SignedCertificateTimestampAndStatus(
+ sct, static_cast<ct::SCTVerifyStatus>(status)));
+ }
+ }
+
// Read vary-data
if (flags & RESPONSE_INFO_HAS_VARY_DATA) {
if (!vary_data.InitFromPickle(pickle, &iter))
@@ -286,6 +306,8 @@ void HttpResponseInfo::Persist(Pickle* pickle,
flags |= RESPONSE_INFO_HAS_CONNECTION_INFO;
if (did_use_http_auth)
flags |= RESPONSE_INFO_USE_HTTP_AUTHENTICATION;
+ if (!ssl_info.signed_certificate_timestamps.empty())
+ flags |= RESPONSE_INFO_HAS_SIGNED_CERTIFICATE_TIMESTAMPS;
pickle->WriteInt(flags);
pickle->WriteInt64(request_time.ToInternalValue());
@@ -313,6 +335,15 @@ void HttpResponseInfo::Persist(Pickle* pickle,
pickle->WriteInt(ssl_info.security_bits);
if (ssl_info.connection_status != 0)
pickle->WriteInt(ssl_info.connection_status);
+ if (ssl_info.signed_certificate_timestamps.size() > 0) {
+ pickle->WriteInt(!ssl_info.signed_certificate_timestamps.empty());
wtc 2013/11/28 01:28:02 1. BUG: the argument to pickle->WriteInt() should
alcutter 2013/11/28 12:08:19 Blimey ! O_O Good catch, thank you. Done.
wtc 2013/11/28 16:15:07 I learned a new word today. Thanks :-)
+ for (SignedCertificateTimestampAndStatusList::const_iterator it =
+ ssl_info.signed_certificate_timestamps.begin(); it !=
+ ssl_info.signed_certificate_timestamps.end(); ++it) {
+ it->sct_->Persist(pickle);
+ pickle->WriteUInt16(it->status_);
+ }
+ }
}
if (vary_data.is_valid())

Powered by Google App Engine
This is Rietveld 408576698