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 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
|
/* -*- indent-tabs-mode: nil -*- */
#include "proto/cert_serializer.h"
#include <glog/logging.h>
#include <math.h>
#include <string>
#include "proto/ct.pb.h"
#include "proto/serializer.h"
using cert_trans::serialization::SerializeResult;
using cert_trans::serialization::DeserializeResult;
using cert_trans::serialization::WriteFixedBytes;
using cert_trans::serialization::WriteList;
using cert_trans::serialization::WriteUint;
using cert_trans::serialization::WriteVarBytes;
using ct::DigitallySigned;
using ct::LogEntry;
using ct::LogEntryType_IsValid;
using ct::MerkleTreeLeaf;
using ct::PrecertChainEntry;
using ct::SignedCertificateTimestamp;
using ct::SignedCertificateTimestampList;
using ct::SthExtension;
using ct::SctExtension;
using ct::X509ChainEntry;
using google::protobuf::RepeatedPtrField;
using std::string;
const size_t kMaxCertificateLength = (1 << 24) - 1;
const size_t kMaxCertificateChainLength = (1 << 24) - 1;
SerializeResult CheckCertificateFormat(const string& cert) {
if (cert.empty()) {
return SerializeResult::EMPTY_CERTIFICATE;
}
if (cert.size() > kMaxCertificateLength) {
return SerializeResult::CERTIFICATE_TOO_LONG;
}
return SerializeResult::OK;
}
string CertV1LeafData(const LogEntry& entry) {
switch (entry.type()) {
// TODO(mhs): Because there is no X509_ENTRY_V2 we have to assume that
// whichever of the cert fields is set defines the entry type. In other
// words this is V2 if it has a CertInfo. Might be possible
// to pass the type when the code that calls this is updated for V2.
case ct::X509_ENTRY:
CHECK(!entry.x509_entry().has_cert_info())
<< "Attempting to use a V1 serializer with a V2 LogEntry.";
CHECK(entry.x509_entry().has_leaf_certificate())
<< "Missing leaf certificate";
return entry.x509_entry().leaf_certificate();
case ct::PRECERT_ENTRY:
CHECK(!entry.x509_entry().has_cert_info())
<< "Attempting to use a V1 serializer with a V2 LogEntry.";
CHECK(entry.precert_entry().pre_cert().has_tbs_certificate())
<< "Missing tbs certificate.";
return entry.precert_entry().pre_cert().tbs_certificate();
default:
break;
}
LOG(FATAL) << "Invalid entry type " << entry.type();
}
SerializeResult SerializeV1CertSCTSignatureInput(uint64_t timestamp,
const string& certificate,
const string& extensions,
string* result) {
SerializeResult res = CheckCertificateFormat(certificate);
if (res != SerializeResult::OK) {
return res;
}
res = CheckExtensionsFormat(extensions);
if (res != SerializeResult::OK) {
return res;
}
WriteUint(ct::V1, Serializer::kVersionLengthInBytes, result);
WriteUint(ct::CERTIFICATE_TIMESTAMP, Serializer::kSignatureTypeLengthInBytes,
result);
WriteUint(timestamp, Serializer::kTimestampLengthInBytes, result);
WriteUint(ct::X509_ENTRY, Serializer::kLogEntryTypeLengthInBytes, result);
WriteVarBytes(certificate, kMaxCertificateLength, result);
WriteVarBytes(extensions, Serializer::kMaxExtensionsLength, result);
return SerializeResult::OK;
}
SerializeResult SerializeV1PrecertSCTSignatureInput(
uint64_t timestamp, const string& issuer_key_hash,
const string& tbs_certificate, const string& extensions, string* result) {
SerializeResult res = CheckCertificateFormat(tbs_certificate);
if (res != SerializeResult::OK) {
return res;
}
res = CheckKeyHashFormat(issuer_key_hash);
if (res != SerializeResult::OK) {
return res;
}
res = CheckExtensionsFormat(extensions);
if (res != SerializeResult::OK) {
return res;
}
result->clear();
WriteUint(ct::V1, Serializer::kVersionLengthInBytes, result);
WriteUint(ct::CERTIFICATE_TIMESTAMP, Serializer::kSignatureTypeLengthInBytes,
result);
WriteUint(timestamp, Serializer::kTimestampLengthInBytes, result);
WriteUint(ct::PRECERT_ENTRY, Serializer::kLogEntryTypeLengthInBytes, result);
WriteFixedBytes(issuer_key_hash, result);
WriteVarBytes(tbs_certificate, kMaxCertificateLength, result);
WriteVarBytes(extensions, Serializer::kMaxExtensionsLength, result);
return SerializeResult::OK;
}
SerializeResult SerializeV1SCTSignatureInput(
const SignedCertificateTimestamp& sct, const LogEntry& entry,
string* result) {
if (sct.version() != ct::V1) {
return SerializeResult::UNSUPPORTED_VERSION;
}
result->clear();
switch (entry.type()) {
case ct::X509_ENTRY:
return SerializeV1CertSCTSignatureInput(
sct.timestamp(), entry.x509_entry().leaf_certificate(),
sct.extensions(), result);
case ct::PRECERT_ENTRY:
return SerializeV1PrecertSCTSignatureInput(
sct.timestamp(), entry.precert_entry().pre_cert().issuer_key_hash(),
entry.precert_entry().pre_cert().tbs_certificate(), sct.extensions(),
result);
default:
return SerializeResult::INVALID_ENTRY_TYPE;
}
}
SerializeResult SerializeV1CertSCTMerkleTreeLeaf(uint64_t timestamp,
const string& certificate,
const string& extensions,
string* result) {
SerializeResult res = CheckCertificateFormat(certificate);
if (res != SerializeResult::OK) {
return res;
}
res = CheckExtensionsFormat(extensions);
if (res != SerializeResult::OK) {
return res;
}
result->clear();
WriteUint(ct::V1, Serializer::kVersionLengthInBytes, result);
WriteUint(ct::TIMESTAMPED_ENTRY, Serializer::kMerkleLeafTypeLengthInBytes,
result);
WriteUint(timestamp, Serializer::kTimestampLengthInBytes, result);
WriteUint(ct::X509_ENTRY, Serializer::kLogEntryTypeLengthInBytes, result);
WriteVarBytes(certificate, kMaxCertificateLength, result);
WriteVarBytes(extensions, Serializer::kMaxExtensionsLength, result);
return SerializeResult::OK;
}
SerializeResult SerializeV1PrecertSCTMerkleTreeLeaf(
uint64_t timestamp, const string& issuer_key_hash,
const string& tbs_certificate, const string& extensions, string* result) {
SerializeResult res = CheckCertificateFormat(tbs_certificate);
if (res != SerializeResult::OK) {
return res;
}
res = CheckKeyHashFormat(issuer_key_hash);
if (res != SerializeResult::OK) {
return res;
}
res = CheckExtensionsFormat(extensions);
if (res != SerializeResult::OK) {
return res;
}
result->clear();
WriteUint(ct::V1, Serializer::kVersionLengthInBytes, result);
WriteUint(ct::TIMESTAMPED_ENTRY, Serializer::kMerkleLeafTypeLengthInBytes,
result);
WriteUint(timestamp, Serializer::kTimestampLengthInBytes, result);
WriteUint(ct::PRECERT_ENTRY, Serializer::kLogEntryTypeLengthInBytes, result);
WriteFixedBytes(issuer_key_hash, result);
WriteVarBytes(tbs_certificate, kMaxCertificateLength, result);
WriteVarBytes(extensions, Serializer::kMaxExtensionsLength, result);
return SerializeResult::OK;
}
SerializeResult SerializeV1SCTMerkleTreeLeaf(
const ct::SignedCertificateTimestamp& sct, const ct::LogEntry& entry,
string* result) {
if (sct.version() != ct::V1) {
return SerializeResult::UNSUPPORTED_VERSION;
}
result->clear();
switch (entry.type()) {
case ct::X509_ENTRY:
return SerializeV1CertSCTMerkleTreeLeaf(
sct.timestamp(), entry.x509_entry().leaf_certificate(),
sct.extensions(), result);
case ct::PRECERT_ENTRY:
return SerializeV1PrecertSCTMerkleTreeLeaf(
sct.timestamp(), entry.precert_entry().pre_cert().issuer_key_hash(),
entry.precert_entry().pre_cert().tbs_certificate(), sct.extensions(),
result);
default:
break;
}
return SerializeResult::INVALID_ENTRY_TYPE;
}
DeserializeResult DeserializeV1SCTMerkleTreeLeaf(TLSDeserializer* des,
MerkleTreeLeaf* leaf) {
CHECK_NOTNULL(des);
CHECK_NOTNULL(leaf);
unsigned int version;
if (!des->ReadUint(Serializer::kVersionLengthInBytes, &version)) {
return DeserializeResult::INPUT_TOO_SHORT;
}
if (version != ct::V1) {
return DeserializeResult::UNSUPPORTED_VERSION;
}
leaf->set_version(ct::V1);
unsigned int type;
if (!des->ReadUint(Serializer::kMerkleLeafTypeLengthInBytes, &type)) {
return DeserializeResult::INPUT_TOO_SHORT;
}
if (type != ct::TIMESTAMPED_ENTRY) {
return DeserializeResult::UNKNOWN_LEAF_TYPE;
}
leaf->set_type(ct::TIMESTAMPED_ENTRY);
ct::TimestampedEntry* const entry = leaf->mutable_timestamped_entry();
uint64_t timestamp;
if (!des->ReadUint(Serializer::kTimestampLengthInBytes, ×tamp)) {
return DeserializeResult::INPUT_TOO_SHORT;
}
entry->set_timestamp(timestamp);
unsigned int entry_type;
if (!des->ReadUint(Serializer::kLogEntryTypeLengthInBytes, &entry_type)) {
return DeserializeResult::INPUT_TOO_SHORT;
}
CHECK(LogEntryType_IsValid(entry_type));
entry->set_entry_type(static_cast<ct::LogEntryType>(entry_type));
switch (entry_type) {
case ct::X509_ENTRY: {
string x509;
if (!des->ReadVarBytes(kMaxCertificateLength, &x509)) {
return DeserializeResult::INPUT_TOO_SHORT;
}
entry->mutable_signed_entry()->set_x509(x509);
return des->ReadExtensions(entry);
}
case ct::PRECERT_ENTRY: {
string issuer_key_hash;
if (!des->ReadFixedBytes(32, &issuer_key_hash)) {
return DeserializeResult::INPUT_TOO_SHORT;
}
entry->mutable_signed_entry()->mutable_precert()->set_issuer_key_hash(
issuer_key_hash);
string tbs_certificate;
if (!des->ReadVarBytes(kMaxCertificateLength, &tbs_certificate)) {
return DeserializeResult::INPUT_TOO_SHORT;
}
entry->mutable_signed_entry()->mutable_precert()->set_tbs_certificate(
tbs_certificate);
return des->ReadExtensions(entry);
}
}
LOG(FATAL) << "entry_type: " << entry_type;
return DeserializeResult::UNKNOWN_LOGENTRY_TYPE;
}
// ----------------- V2 cert stuff ------------------------
string CertV2LeafData(const LogEntry& entry) {
switch (entry.type()) {
// TODO(mhs): Because there is no X509_ENTRY_V2 we have to assume that
// whichever of the cert fields is set defines the entry type. In other
// words this is V2 if it has a CertInfo. Might be possible
// to pass the type when the code that calls this is updated for V2.
case ct::X509_ENTRY:
CHECK(!entry.x509_entry().has_leaf_certificate());
CHECK(entry.x509_entry().has_cert_info());
CHECK(entry.x509_entry().cert_info().has_tbs_certificate())
<< "Missing V2 leaf certificate";
return entry.x509_entry().cert_info().tbs_certificate();
case ct::PRECERT_ENTRY_V2:
// Must not have both v1 and v2 entries set
CHECK(!entry.precert_entry().has_pre_cert());
CHECK(entry.precert_entry().cert_info().has_tbs_certificate())
<< "Missing tbs certificate (V2)";
return entry.precert_entry().cert_info().tbs_certificate();
default:
break;
}
LOG(FATAL) << "Invalid entry type " << entry.type();
}
// static
SerializeResult SerializeV2CertSCTSignatureInput(
uint64_t timestamp, const string& issuer_key_hash,
const string& tbs_certificate,
const RepeatedPtrField<ct::SctExtension>& sct_extension, string* result) {
SerializeResult res = CheckCertificateFormat(tbs_certificate);
if (res != SerializeResult::OK) {
return res;
}
res = CheckSctExtensionsFormat(sct_extension);
if (res != SerializeResult::OK) {
return res;
}
result->clear();
WriteUint(ct::V2, Serializer::kVersionLengthInBytes, result);
WriteUint(ct::CERTIFICATE_TIMESTAMP, Serializer::kSignatureTypeLengthInBytes,
result);
WriteUint(timestamp, Serializer::kTimestampLengthInBytes, result);
WriteUint(ct::X509_ENTRY, Serializer::kLogEntryTypeLengthInBytes, result);
WriteFixedBytes(issuer_key_hash, result);
WriteVarBytes(tbs_certificate, kMaxCertificateLength, result);
WriteSctExtension(sct_extension, result);
return SerializeResult::OK;
}
// static
SerializeResult SerializeV2PrecertSCTSignatureInput(
uint64_t timestamp, const string& issuer_key_hash,
const string& tbs_certificate,
const RepeatedPtrField<ct::SctExtension>& sct_extension, string* result) {
SerializeResult res = CheckCertificateFormat(tbs_certificate);
if (res != SerializeResult::OK) {
return res;
}
res = CheckSctExtensionsFormat(sct_extension);
if (res != SerializeResult::OK) {
return res;
}
result->clear();
WriteUint(ct::V2, Serializer::kVersionLengthInBytes, result);
WriteUint(ct::CERTIFICATE_TIMESTAMP, Serializer::kSignatureTypeLengthInBytes,
result);
WriteUint(timestamp, Serializer::kTimestampLengthInBytes, result);
WriteUint(ct::PRECERT_ENTRY_V2, Serializer::kLogEntryTypeLengthInBytes,
result);
WriteFixedBytes(issuer_key_hash, result);
WriteVarBytes(tbs_certificate, kMaxCertificateLength, result);
WriteSctExtension(sct_extension, result);
return SerializeResult::OK;
}
// static
SerializeResult SerializeV2SCTSignatureInput(
const SignedCertificateTimestamp& sct, const LogEntry& entry,
string* result) {
if (sct.version() != ct::V2) {
return SerializeResult::UNSUPPORTED_VERSION;
}
result->clear();
switch (entry.type()) {
case ct::X509_ENTRY:
return SerializeV2CertSCTSignatureInput(
sct.timestamp(), entry.x509_entry().cert_info().issuer_key_hash(),
entry.x509_entry().cert_info().tbs_certificate(),
sct.sct_extension(), result);
case ct::PRECERT_ENTRY_V2:
return SerializeV2PrecertSCTSignatureInput(
sct.timestamp(), entry.precert_entry().cert_info().issuer_key_hash(),
entry.precert_entry().cert_info().tbs_certificate(),
sct.sct_extension(), result);
default:
break;
}
return SerializeResult::INVALID_ENTRY_TYPE;
}
SerializeResult SerializeV2CertSCTMerkleTreeLeaf(
uint64_t timestamp, const string& issuer_key_hash,
const string& tbs_certificate,
const RepeatedPtrField<SctExtension>& sct_extension, string* result) {
SerializeResult res = CheckCertificateFormat(tbs_certificate);
if (res != SerializeResult::OK) {
return res;
}
res = CheckSctExtensionsFormat(sct_extension);
if (res != SerializeResult::OK) {
return res;
}
result->clear();
WriteUint(ct::V2, Serializer::kVersionLengthInBytes, result);
WriteUint(ct::TIMESTAMPED_ENTRY, Serializer::kMerkleLeafTypeLengthInBytes,
result);
WriteUint(timestamp, Serializer::kTimestampLengthInBytes, result);
WriteUint(ct::X509_ENTRY, Serializer::kLogEntryTypeLengthInBytes, result);
WriteFixedBytes(issuer_key_hash, result);
WriteVarBytes(tbs_certificate, kMaxCertificateLength, result);
WriteSctExtension(sct_extension, result);
return SerializeResult::OK;
}
SerializeResult SerializeV2PrecertSCTMerkleTreeLeaf(
uint64_t timestamp, const string& issuer_key_hash,
const string& tbs_certificate,
const google::protobuf::RepeatedPtrField<ct::SctExtension>& sct_extension,
string* result) {
SerializeResult res = CheckCertificateFormat(tbs_certificate);
if (res != SerializeResult::OK) {
return res;
}
res = CheckKeyHashFormat(issuer_key_hash);
if (res != SerializeResult::OK) {
return res;
}
res = CheckSctExtensionsFormat(sct_extension);
if (res != SerializeResult::OK) {
return res;
}
result->clear();
WriteUint(ct::V2, Serializer::kVersionLengthInBytes, result);
WriteUint(ct::TIMESTAMPED_ENTRY, Serializer::kMerkleLeafTypeLengthInBytes,
result);
WriteUint(timestamp, Serializer::kTimestampLengthInBytes, result);
WriteUint(ct::PRECERT_ENTRY_V2, Serializer::kLogEntryTypeLengthInBytes,
result);
WriteFixedBytes(issuer_key_hash, result);
WriteVarBytes(tbs_certificate, kMaxCertificateLength, result);
WriteSctExtension(sct_extension, result);
return SerializeResult::OK;
}
SerializeResult SerializeV2SCTMerkleTreeLeaf(
const ct::SignedCertificateTimestamp& sct, const ct::LogEntry& entry,
string* result) {
CHECK_EQ(ct::V2, sct.version());
result->clear();
switch (entry.type()) {
case ct::X509_ENTRY:
return SerializeV2CertSCTMerkleTreeLeaf(
sct.timestamp(), entry.x509_entry().cert_info().issuer_key_hash(),
entry.x509_entry().cert_info().tbs_certificate(),
sct.sct_extension(), result);
case ct::PRECERT_ENTRY_V2:
return SerializeV2PrecertSCTMerkleTreeLeaf(
sct.timestamp(), entry.precert_entry().cert_info().issuer_key_hash(),
entry.precert_entry().cert_info().tbs_certificate(),
sct.sct_extension(), result);
default:
break;
}
return SerializeResult::INVALID_ENTRY_TYPE;
}
DeserializeResult DeserializeV2SCTMerkleTreeLeaf(TLSDeserializer* des,
MerkleTreeLeaf* leaf) {
CHECK_NOTNULL(des);
CHECK_NOTNULL(leaf);
unsigned int version;
if (!des->ReadUint(Serializer::kVersionLengthInBytes, &version)) {
return DeserializeResult::INPUT_TOO_SHORT;
}
if (version != ct::V2) {
return DeserializeResult::UNSUPPORTED_VERSION;
}
leaf->set_version(ct::V2);
unsigned int type;
if (!des->ReadUint(Serializer::kMerkleLeafTypeLengthInBytes, &type)) {
return DeserializeResult::INPUT_TOO_SHORT;
}
if (type != ct::TIMESTAMPED_ENTRY) {
return DeserializeResult::UNKNOWN_LEAF_TYPE;
}
leaf->set_type(ct::TIMESTAMPED_ENTRY);
ct::TimestampedEntry* const entry = leaf->mutable_timestamped_entry();
uint64_t timestamp;
if (!des->ReadUint(Serializer::kTimestampLengthInBytes, ×tamp)) {
return DeserializeResult::INPUT_TOO_SHORT;
}
entry->set_timestamp(timestamp);
unsigned int entry_type;
if (!des->ReadUint(Serializer::kLogEntryTypeLengthInBytes, &entry_type)) {
return DeserializeResult::INPUT_TOO_SHORT;
}
CHECK(LogEntryType_IsValid(entry_type));
entry->set_entry_type(static_cast<ct::LogEntryType>(entry_type));
switch (entry_type) {
// In V2 both X509 and Precert entries use CertInfo
case ct::X509_ENTRY:
case ct::PRECERT_ENTRY_V2: {
string issuer_key_hash;
if (!des->ReadFixedBytes(32, &issuer_key_hash)) {
return DeserializeResult::INPUT_TOO_SHORT;
}
entry->mutable_signed_entry()->mutable_cert_info()->set_issuer_key_hash(
issuer_key_hash);
string tbs_certificate;
if (!des->ReadVarBytes(kMaxCertificateLength, &tbs_certificate)) {
return DeserializeResult::INPUT_TOO_SHORT;
}
entry->mutable_signed_entry()->mutable_cert_info()->set_tbs_certificate(
tbs_certificate);
return des->ReadExtensions(entry);
}
case ct::UNKNOWN_ENTRY_TYPE: {
// handled below.
break;
}
}
LOG(FATAL) << "entry_type: " << entry_type;
return DeserializeResult::UNKNOWN_LOGENTRY_TYPE;
}
void ConfigureSerializerForV1CT() {
Serializer::ConfigureV1(CertV1LeafData, SerializeV1SCTSignatureInput,
SerializeV1SCTMerkleTreeLeaf);
Deserializer::Configure(DeserializeV1SCTMerkleTreeLeaf);
}
void ConfigureSerializerForV2CT() {
Serializer::ConfigureV2(CertV2LeafData, SerializeV2SCTSignatureInput,
SerializeV2SCTMerkleTreeLeaf);
Deserializer::Configure(DeserializeV2SCTMerkleTreeLeaf);
}
SerializeResult SerializeX509Chain(const ct::X509ChainEntry& entry,
std::string* result) {
return SerializeX509ChainV1(entry.certificate_chain(), result);
}
SerializeResult SerializeX509ChainV1(const repeated_string& certificate_chain,
std::string* result) {
return Serializer::SerializeList(certificate_chain, kMaxCertificateLength,
kMaxCertificateChainLength, result);
}
SerializeResult SerializePrecertChainEntry(const ct::PrecertChainEntry& entry,
std::string* result) {
return SerializePrecertChainEntry(entry.pre_certificate(),
entry.precertificate_chain(), result);
}
SerializeResult SerializePrecertChainEntry(
const std::string& pre_certificate,
const repeated_string& precertificate_chain, std::string* result) {
if (pre_certificate.size() > kMaxCertificateLength) {
return SerializeResult::CERTIFICATE_TOO_LONG;
}
if (pre_certificate.empty()) {
return SerializeResult::EMPTY_CERTIFICATE;
}
result->clear();
WriteVarBytes(pre_certificate, kMaxCertificateLength, result);
SerializeResult res = WriteList(precertificate_chain, kMaxCertificateLength,
kMaxCertificateChainLength, result);
if (res != SerializeResult::OK) {
result->clear();
return res;
}
return SerializeResult::OK;
}
SerializeResult SerializeV1SignedCertEntryWithType(
const std::string& leaf_certificate, std::string* result) {
SerializeResult res = CheckCertificateFormat(leaf_certificate);
if (res != SerializeResult::OK) {
return res;
}
result->clear();
WriteUint(ct::X509_ENTRY, Serializer::kLogEntryTypeLengthInBytes, result);
WriteVarBytes(leaf_certificate, kMaxCertificateLength, result);
return SerializeResult::OK;
}
SerializeResult SerializeV1SignedPrecertEntryWithType(
const std::string& issuer_key_hash, const std::string& tbs_certificate,
std::string* result) {
SerializeResult res = CheckCertificateFormat(tbs_certificate);
if (res != SerializeResult::OK) {
return res;
}
res = CheckKeyHashFormat(issuer_key_hash);
if (res != SerializeResult::OK) {
return res;
}
result->clear();
WriteUint(ct::PRECERT_ENTRY, Serializer::kLogEntryTypeLengthInBytes, result);
WriteFixedBytes(issuer_key_hash, result);
WriteVarBytes(tbs_certificate, kMaxCertificateLength, result);
return SerializeResult::OK;
}
// static
DeserializeResult DeserializeX509Chain(const std::string& in,
X509ChainEntry* x509_chain_entry) {
// Empty list is ok.
x509_chain_entry->clear_certificate_chain();
return Deserializer::DeserializeList(
in, kMaxCertificateChainLength, kMaxCertificateLength,
x509_chain_entry->mutable_certificate_chain());
}
// static
DeserializeResult DeserializePrecertChainEntry(
const std::string& in, ct::PrecertChainEntry* precert_chain_entry) {
TLSDeserializer deserializer(in);
if (!deserializer.ReadVarBytes(
kMaxCertificateLength,
precert_chain_entry->mutable_pre_certificate())) {
return DeserializeResult::INPUT_TOO_SHORT;
}
precert_chain_entry->clear_precertificate_chain();
DeserializeResult res = deserializer.ReadList(
kMaxCertificateChainLength, kMaxCertificateLength,
precert_chain_entry->mutable_precertificate_chain());
if (res != DeserializeResult::OK) {
return res;
}
if (!deserializer.ReachedEnd()) {
return DeserializeResult::INPUT_TOO_LONG;
}
return DeserializeResult::OK;
}
|