blob: ef6714697cc6f8459ece7259b9cb8e99c1343054 [file] [log] [blame]
Suyong Won19fba4d2020-05-09 13:39:46 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2017-2020, Regents of the University of California.
4 *
5 * This file is part of ndncert, a certificate management system based on NDN.
6 *
7 * ndncert is free software: you can redistribute it and/or modify it under the terms
8 * of the GNU General Public License as published by the Free Software Foundation, either
9 * version 3 of the License, or (at your option) any later version.
10 *
11 * ndncert is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License along with
16 * ndncert, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * See AUTHORS.md for complete list of ndncert authors and contributors.
19 */
20
Zhiyi Zhang8f1ade32020-10-14 16:42:57 -070021#include "new-renew-revoke-encoder.hpp"
Suyong Won19fba4d2020-05-09 13:39:46 -070022#include <ndn-cxx/security/transform/base64-encode.hpp>
23#include <ndn-cxx/security/transform/buffer-source.hpp>
24#include <ndn-cxx/security/transform/stream-sink.hpp>
Suyong Won19fba4d2020-05-09 13:39:46 -070025
26namespace ndn {
27namespace ndncert {
28
Zhiyi Zhangd61b4a82020-10-10 15:18:43 -070029NDN_LOG_INIT(ndncert.encoding.new_renew_revoke);
Suyong Won19fba4d2020-05-09 13:39:46 -070030
31Block
Zhiyi Zhang8f1ade32020-10-14 16:42:57 -070032NewRenewRevokeEncoder::encodeApplicationParameters(RequestType requestType, const std::string& ecdhPub, const security::Certificate& certRequest)
Suyong Won19fba4d2020-05-09 13:39:46 -070033{
Zhiyi Zhang8f1ade32020-10-14 16:42:57 -070034 Block request = makeEmptyBlock(ndn::tlv::ApplicationParameters);
Suyong Won19fba4d2020-05-09 13:39:46 -070035 std::stringstream ss;
36 try {
37 security::transform::bufferSource(certRequest.wireEncode().wire(), certRequest.wireEncode().size())
38 >> security::transform::base64Encode(false)
39 >> security::transform::streamSink(ss);
40 }
41 catch (const security::transform::Error& e) {
Zhiyi Zhangd61b4a82020-10-10 15:18:43 -070042 NDN_LOG_ERROR("Cannot convert self-signed cert into BASE64 string " << e.what());
Suyong Won19fba4d2020-05-09 13:39:46 -070043 return request;
44 }
45
tylerliu50d679e2020-10-14 14:08:39 -070046 request.push_back(makeStringBlock(tlv::EcdhPub, ecdhPub));
tylerliu4889a782020-09-30 22:47:49 -070047 if (requestType == RequestType::NEW || requestType == RequestType::RENEW) {
tylerliu50d679e2020-10-14 14:08:39 -070048 request.push_back(makeNestedBlock(tlv::CertRequest, certRequest));
tylerliu4889a782020-09-30 22:47:49 -070049 } else if (requestType == RequestType::REVOKE) {
tylerliu50d679e2020-10-14 14:08:39 -070050 request.push_back(makeNestedBlock(tlv::CertToRevoke, certRequest));
tylerliu4889a782020-09-30 22:47:49 -070051 }
Suyong Won44d0cce2020-05-10 04:07:43 -070052 request.encode();
Suyong Won19fba4d2020-05-09 13:39:46 -070053 return request;
54}
55
tylerliu0790bdb2020-10-02 00:50:51 -070056void
Zhiyi Zhang8f1ade32020-10-14 16:42:57 -070057NewRenewRevokeEncoder::decodeApplicationParameters(const Block& payload, RequestType requestType, std::string& ecdhPub,
Zhiyi Zhang8fdb36b2020-10-18 11:58:51 -070058 shared_ptr<security::Certificate>& clientCert)
59{
tylerliu0790bdb2020-10-02 00:50:51 -070060 payload.parse();
61
tylerliu50d679e2020-10-14 14:08:39 -070062 ecdhPub = readString(payload.get(tlv::EcdhPub));
tylerliu0790bdb2020-10-02 00:50:51 -070063 Block requestPayload;
64 if (requestType == RequestType::NEW) {
tylerliu50d679e2020-10-14 14:08:39 -070065 requestPayload = payload.get(tlv::CertRequest);
tylerliu0790bdb2020-10-02 00:50:51 -070066 }
67 else if (requestType == RequestType::REVOKE) {
tylerliu50d679e2020-10-14 14:08:39 -070068 requestPayload = payload.get(tlv::CertToRevoke);
tylerliu0790bdb2020-10-02 00:50:51 -070069 }
70 requestPayload.parse();
71
Zhiyi Zhang8f1ade32020-10-14 16:42:57 -070072 security::Certificate cert = security::Certificate(requestPayload.get(ndn::tlv::Data));
Zhiyi Zhang32437282020-10-10 16:15:37 -070073 clientCert =std::make_shared<security::Certificate>(cert);
tylerliu0790bdb2020-10-02 00:50:51 -070074}
75
Suyong Won19fba4d2020-05-09 13:39:46 -070076Block
Zhiyi Zhang8f1ade32020-10-14 16:42:57 -070077NewRenewRevokeEncoder::encodeDataContent(const std::string& ecdhKey, const std::string& salt,
Zhiyi Zhang8fdb36b2020-10-18 11:58:51 -070078 const CaState& request,
79 const std::list<std::string>& challenges)
Suyong Won19fba4d2020-05-09 13:39:46 -070080{
Zhiyi Zhang8f1ade32020-10-14 16:42:57 -070081 Block response = makeEmptyBlock(ndn::tlv::Content);
tylerliu50d679e2020-10-14 14:08:39 -070082 response.push_back(makeStringBlock(tlv::EcdhPub, ecdhKey));
83 response.push_back(makeStringBlock(tlv::Salt, salt));
Zhiyi Zhang8fdb36b2020-10-18 11:58:51 -070084 response.push_back(makeBinaryBlock(tlv::RequestId, request.m_requestId.data(), request.m_requestId.size()));
tylerliu50d679e2020-10-14 14:08:39 -070085 response.push_back(makeNonNegativeIntegerBlock(tlv::Status, static_cast<size_t>(request.m_status)));
Suyong Won19fba4d2020-05-09 13:39:46 -070086 for (const auto& entry: challenges) {
tylerliu50d679e2020-10-14 14:08:39 -070087 response.push_back(makeStringBlock(tlv::Challenge, entry));
Suyong Won19fba4d2020-05-09 13:39:46 -070088 }
Suyong Won44d0cce2020-05-10 04:07:43 -070089 response.encode();
Suyong Won19fba4d2020-05-09 13:39:46 -070090 return response;
91}
92
Zhiyi Zhang8f1ade32020-10-14 16:42:57 -070093NewRenewRevokeEncoder::DecodedData
94NewRenewRevokeEncoder::decodeDataContent(const Block& content)
tylerliu0790bdb2020-10-02 00:50:51 -070095{
96 content.parse();
tylerliu50d679e2020-10-14 14:08:39 -070097 const auto& ecdhKey = readString(content.get(tlv::EcdhPub));
98 const auto& salt = readString(content.get(tlv::Salt));
Zhiyi Zhang91f86ab2020-10-05 15:36:35 -070099 uint64_t saltInt = std::stoull(salt);
tylerliu50d679e2020-10-14 14:08:39 -0700100 const auto& requestStatus = static_cast<Status>(readNonNegativeInteger(content.get(tlv::Status)));
Zhiyi Zhang8fdb36b2020-10-18 11:58:51 -0700101 RequestID requestId;
102 std::memcpy(requestId.data(), content.get(tlv::RequestId).value(), content.get(tlv::RequestId).size());
tylerliu0790bdb2020-10-02 00:50:51 -0700103 std::list<std::string> challenges;
104 for (auto const& element : content.elements()) {
tylerliu50d679e2020-10-14 14:08:39 -0700105 if (element.type() == tlv::Challenge) {
tylerliu0790bdb2020-10-02 00:50:51 -0700106 challenges.push_back(readString(element));
107 }
108 }
Zhiyi Zhang91f86ab2020-10-05 15:36:35 -0700109 return DecodedData{ecdhKey, saltInt, requestId, requestStatus, challenges};
tylerliu0790bdb2020-10-02 00:50:51 -0700110}
111
Zhiyi Zhange4891b72020-10-10 15:11:57 -0700112} // namespace ndncert
113} // namespace ndn