Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 1 | /* -*- 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 | |
tylerliu | 4889a78 | 2020-09-30 22:47:49 -0700 | [diff] [blame] | 21 | #include "new-renew-revoke.hpp" |
tylerliu | 50d679e | 2020-10-14 14:08:39 -0700 | [diff] [blame^] | 22 | #include "ndncert-common.hpp" |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 23 | #include <ndn-cxx/security/transform/base64-encode.hpp> |
| 24 | #include <ndn-cxx/security/transform/buffer-source.hpp> |
| 25 | #include <ndn-cxx/security/transform/stream-sink.hpp> |
| 26 | #include <ndn-cxx/util/logger.hpp> |
| 27 | |
| 28 | namespace ndn { |
| 29 | namespace ndncert { |
| 30 | |
Zhiyi Zhang | d61b4a8 | 2020-10-10 15:18:43 -0700 | [diff] [blame] | 31 | NDN_LOG_INIT(ndncert.encoding.new_renew_revoke); |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 32 | |
| 33 | Block |
tylerliu | a7bea66 | 2020-10-08 18:51:02 -0700 | [diff] [blame] | 34 | NEW_RENEW_REVOKE::encodeApplicationParameters(RequestType requestType, const std::string& ecdhPub, const security::Certificate& certRequest) |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 35 | { |
| 36 | Block request = makeEmptyBlock(tlv::ApplicationParameters); |
| 37 | std::stringstream ss; |
| 38 | try { |
| 39 | security::transform::bufferSource(certRequest.wireEncode().wire(), certRequest.wireEncode().size()) |
| 40 | >> security::transform::base64Encode(false) |
| 41 | >> security::transform::streamSink(ss); |
| 42 | } |
| 43 | catch (const security::transform::Error& e) { |
Zhiyi Zhang | d61b4a8 | 2020-10-10 15:18:43 -0700 | [diff] [blame] | 44 | NDN_LOG_ERROR("Cannot convert self-signed cert into BASE64 string " << e.what()); |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 45 | return request; |
| 46 | } |
| 47 | |
tylerliu | 50d679e | 2020-10-14 14:08:39 -0700 | [diff] [blame^] | 48 | request.push_back(makeStringBlock(tlv::EcdhPub, ecdhPub)); |
tylerliu | 4889a78 | 2020-09-30 22:47:49 -0700 | [diff] [blame] | 49 | if (requestType == RequestType::NEW || requestType == RequestType::RENEW) { |
tylerliu | 50d679e | 2020-10-14 14:08:39 -0700 | [diff] [blame^] | 50 | request.push_back(makeNestedBlock(tlv::CertRequest, certRequest)); |
tylerliu | 4889a78 | 2020-09-30 22:47:49 -0700 | [diff] [blame] | 51 | } else if (requestType == RequestType::REVOKE) { |
tylerliu | 50d679e | 2020-10-14 14:08:39 -0700 | [diff] [blame^] | 52 | request.push_back(makeNestedBlock(tlv::CertToRevoke, certRequest)); |
tylerliu | 4889a78 | 2020-09-30 22:47:49 -0700 | [diff] [blame] | 53 | } |
Suyong Won | 44d0cce | 2020-05-10 04:07:43 -0700 | [diff] [blame] | 54 | request.encode(); |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 55 | return request; |
| 56 | } |
| 57 | |
tylerliu | 0790bdb | 2020-10-02 00:50:51 -0700 | [diff] [blame] | 58 | void |
| 59 | NEW_RENEW_REVOKE::decodeApplicationParameters(const Block& payload, RequestType requestType, std::string& ecdhPub, |
tylerliu | a7bea66 | 2020-10-08 18:51:02 -0700 | [diff] [blame] | 60 | shared_ptr<security::Certificate>& clientCert) { |
tylerliu | 0790bdb | 2020-10-02 00:50:51 -0700 | [diff] [blame] | 61 | payload.parse(); |
| 62 | |
tylerliu | 50d679e | 2020-10-14 14:08:39 -0700 | [diff] [blame^] | 63 | ecdhPub = readString(payload.get(tlv::EcdhPub)); |
tylerliu | 0790bdb | 2020-10-02 00:50:51 -0700 | [diff] [blame] | 64 | Block requestPayload; |
| 65 | if (requestType == RequestType::NEW) { |
tylerliu | 50d679e | 2020-10-14 14:08:39 -0700 | [diff] [blame^] | 66 | requestPayload = payload.get(tlv::CertRequest); |
tylerliu | 0790bdb | 2020-10-02 00:50:51 -0700 | [diff] [blame] | 67 | } |
| 68 | else if (requestType == RequestType::REVOKE) { |
tylerliu | 50d679e | 2020-10-14 14:08:39 -0700 | [diff] [blame^] | 69 | requestPayload = payload.get(tlv::CertToRevoke); |
tylerliu | 0790bdb | 2020-10-02 00:50:51 -0700 | [diff] [blame] | 70 | } |
| 71 | requestPayload.parse(); |
| 72 | |
tylerliu | a7bea66 | 2020-10-08 18:51:02 -0700 | [diff] [blame] | 73 | security::Certificate cert = security::Certificate(requestPayload.get(tlv::Data)); |
Zhiyi Zhang | 3243728 | 2020-10-10 16:15:37 -0700 | [diff] [blame] | 74 | clientCert =std::make_shared<security::Certificate>(cert); |
tylerliu | 0790bdb | 2020-10-02 00:50:51 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 77 | Block |
tylerliu | 4889a78 | 2020-09-30 22:47:49 -0700 | [diff] [blame] | 78 | NEW_RENEW_REVOKE::encodeDataContent(const std::string& ecdhKey, const std::string& salt, |
tylerliu | 8704d03 | 2020-06-23 10:18:15 -0700 | [diff] [blame] | 79 | const CaState& request, |
tylerliu | 4889a78 | 2020-09-30 22:47:49 -0700 | [diff] [blame] | 80 | const std::list<std::string>& challenges) |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 81 | { |
| 82 | Block response = makeEmptyBlock(tlv::Content); |
tylerliu | 50d679e | 2020-10-14 14:08:39 -0700 | [diff] [blame^] | 83 | response.push_back(makeStringBlock(tlv::EcdhPub, ecdhKey)); |
| 84 | response.push_back(makeStringBlock(tlv::Salt, salt)); |
| 85 | response.push_back(makeStringBlock(tlv::RequestId, request.m_requestId)); |
| 86 | response.push_back(makeNonNegativeIntegerBlock(tlv::Status, static_cast<size_t>(request.m_status))); |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 87 | for (const auto& entry: challenges) { |
tylerliu | 50d679e | 2020-10-14 14:08:39 -0700 | [diff] [blame^] | 88 | response.push_back(makeStringBlock(tlv::Challenge, entry)); |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 89 | } |
Suyong Won | 44d0cce | 2020-05-10 04:07:43 -0700 | [diff] [blame] | 90 | response.encode(); |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 91 | return response; |
| 92 | } |
| 93 | |
tylerliu | 0790bdb | 2020-10-02 00:50:51 -0700 | [diff] [blame] | 94 | NEW_RENEW_REVOKE::DecodedData |
| 95 | NEW_RENEW_REVOKE::decodeDataContent(const Block& content) |
| 96 | { |
| 97 | content.parse(); |
tylerliu | 50d679e | 2020-10-14 14:08:39 -0700 | [diff] [blame^] | 98 | const auto& ecdhKey = readString(content.get(tlv::EcdhPub)); |
| 99 | const auto& salt = readString(content.get(tlv::Salt)); |
Zhiyi Zhang | 91f86ab | 2020-10-05 15:36:35 -0700 | [diff] [blame] | 100 | uint64_t saltInt = std::stoull(salt); |
tylerliu | 50d679e | 2020-10-14 14:08:39 -0700 | [diff] [blame^] | 101 | const auto& requestStatus = static_cast<Status>(readNonNegativeInteger(content.get(tlv::Status))); |
| 102 | const auto& requestId = readString(content.get(tlv::RequestId)); |
tylerliu | 0790bdb | 2020-10-02 00:50:51 -0700 | [diff] [blame] | 103 | std::list<std::string> challenges; |
| 104 | for (auto const& element : content.elements()) { |
tylerliu | 50d679e | 2020-10-14 14:08:39 -0700 | [diff] [blame^] | 105 | if (element.type() == tlv::Challenge) { |
tylerliu | 0790bdb | 2020-10-02 00:50:51 -0700 | [diff] [blame] | 106 | challenges.push_back(readString(element)); |
| 107 | } |
| 108 | } |
Zhiyi Zhang | 91f86ab | 2020-10-05 15:36:35 -0700 | [diff] [blame] | 109 | return DecodedData{ecdhKey, saltInt, requestId, requestStatus, challenges}; |
tylerliu | 0790bdb | 2020-10-02 00:50:51 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Zhiyi Zhang | e4891b7 | 2020-10-10 15:11:57 -0700 | [diff] [blame] | 112 | } // namespace ndncert |
| 113 | } // namespace ndn |