blob: 84313e755dd209b88cb320152b22d0830c295223 [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 Zhangb041d442020-10-22 21:57:11 -070021#include "detail/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
Suyong Won19fba4d2020-05-09 13:39:46 -070029Block
Zhiyi Zhangf22ae242020-11-17 10:51:15 -080030requesttlv::encodeApplicationParameters(RequestType requestType, const std::vector<uint8_t>& ecdhPub,
Zhiyi Zhangbed854c2020-10-20 18:25:35 -070031 const security::Certificate& certRequest)
Suyong Won19fba4d2020-05-09 13:39:46 -070032{
tylerliu1f480be2020-11-10 13:02:53 -080033 Block request(ndn::tlv::ApplicationParameters);
Zhiyi Zhangbed854c2020-10-20 18:25:35 -070034 request.push_back(makeBinaryBlock(tlv::EcdhPub, ecdhPub.data(), ecdhPub.size()));
tylerliu4889a782020-09-30 22:47:49 -070035 if (requestType == RequestType::NEW || requestType == RequestType::RENEW) {
tylerliu50d679e2020-10-14 14:08:39 -070036 request.push_back(makeNestedBlock(tlv::CertRequest, certRequest));
tylerliu6563f932020-10-30 11:13:38 -070037 }
38 else if (requestType == RequestType::REVOKE) {
tylerliu50d679e2020-10-14 14:08:39 -070039 request.push_back(makeNestedBlock(tlv::CertToRevoke, certRequest));
tylerliu4889a782020-09-30 22:47:49 -070040 }
Suyong Won44d0cce2020-05-10 04:07:43 -070041 request.encode();
Suyong Won19fba4d2020-05-09 13:39:46 -070042 return request;
43}
44
tylerliu0790bdb2020-10-02 00:50:51 -070045void
Zhiyi Zhangf22ae242020-11-17 10:51:15 -080046requesttlv::decodeApplicationParameters(const Block& payload, RequestType requestType,
Zhiyi Zhangbed854c2020-10-20 18:25:35 -070047 std::vector<uint8_t>& ecdhPub,
Zhiyi Zhang8fdb36b2020-10-18 11:58:51 -070048 shared_ptr<security::Certificate>& clientCert)
49{
tylerliu0790bdb2020-10-02 00:50:51 -070050 payload.parse();
51
Zhiyi Zhangbed854c2020-10-20 18:25:35 -070052 const auto& ecdhBlock = payload.get(tlv::EcdhPub);
53 ecdhPub.resize(ecdhBlock.value_size());
54 std::memcpy(ecdhPub.data(), ecdhBlock.value(), ecdhBlock.value_size());
55
tylerliu0790bdb2020-10-02 00:50:51 -070056 Block requestPayload;
57 if (requestType == RequestType::NEW) {
tylerliu50d679e2020-10-14 14:08:39 -070058 requestPayload = payload.get(tlv::CertRequest);
tylerliu0790bdb2020-10-02 00:50:51 -070059 }
60 else if (requestType == RequestType::REVOKE) {
tylerliu50d679e2020-10-14 14:08:39 -070061 requestPayload = payload.get(tlv::CertToRevoke);
tylerliu0790bdb2020-10-02 00:50:51 -070062 }
63 requestPayload.parse();
64
Zhiyi Zhang8f1ade32020-10-14 16:42:57 -070065 security::Certificate cert = security::Certificate(requestPayload.get(ndn::tlv::Data));
Zhiyi Zhang32437282020-10-10 16:15:37 -070066 clientCert =std::make_shared<security::Certificate>(cert);
tylerliu0790bdb2020-10-02 00:50:51 -070067}
68
Suyong Won19fba4d2020-05-09 13:39:46 -070069Block
Zhiyi Zhangf22ae242020-11-17 10:51:15 -080070requesttlv::encodeDataContent(const std::vector<uint8_t>& ecdhKey, const std::array<uint8_t, 32>& salt,
Zhiyi Zhangc9ada1b2020-10-29 19:13:15 -070071 const RequestId& requestId, const Status& status,
tylerliuf2e6bb52020-12-13 13:23:05 -080072 const std::vector<std::string>& challenges)
Suyong Won19fba4d2020-05-09 13:39:46 -070073{
tylerliu1f480be2020-11-10 13:02:53 -080074 Block response(ndn::tlv::Content);
Zhiyi Zhangbed854c2020-10-20 18:25:35 -070075 response.push_back(makeBinaryBlock(tlv::EcdhPub, ecdhKey.data(), ecdhKey.size()));
Zhiyi Zhangc9f9fac2020-10-18 19:51:51 -070076 response.push_back(makeBinaryBlock(tlv::Salt, salt.data(), salt.size()));
Zhiyi Zhang121aae62020-10-26 13:44:33 -070077 response.push_back(makeBinaryBlock(tlv::RequestId, requestId.data(), requestId.size()));
78 response.push_back(makeNonNegativeIntegerBlock(tlv::Status, static_cast<size_t>(status)));
Suyong Won19fba4d2020-05-09 13:39:46 -070079 for (const auto& entry: challenges) {
tylerliu50d679e2020-10-14 14:08:39 -070080 response.push_back(makeStringBlock(tlv::Challenge, entry));
Suyong Won19fba4d2020-05-09 13:39:46 -070081 }
Suyong Won44d0cce2020-05-10 04:07:43 -070082 response.encode();
Suyong Won19fba4d2020-05-09 13:39:46 -070083 return response;
84}
85
Zhiyi Zhangbed854c2020-10-20 18:25:35 -070086std::list<std::string>
Zhiyi Zhangf22ae242020-11-17 10:51:15 -080087requesttlv::decodeDataContent(const Block& content, std::vector<uint8_t>& ecdhKey,
Zhiyi Zhangc9ada1b2020-10-29 19:13:15 -070088 std::array<uint8_t, 32>& salt, RequestId& requestId, Status& status)
tylerliu0790bdb2020-10-02 00:50:51 -070089{
90 content.parse();
tylerliubb630362020-11-10 11:31:35 -080091 status = statusFromBlock(content.get(tlv::Status));
Zhiyi Zhangbed854c2020-10-20 18:25:35 -070092
93 const auto& ecdhBlock = content.get(tlv::EcdhPub);
94 ecdhKey.resize(ecdhBlock.value_size());
95 std::memcpy(ecdhKey.data(), ecdhBlock.value(), ecdhBlock.value_size());
Zhiyi Zhangc9f9fac2020-10-18 19:51:51 -070096
97 const auto& saltBlock = content.get(tlv::Salt);
Zhiyi Zhangc9f9fac2020-10-18 19:51:51 -070098 std::memcpy(salt.data(), saltBlock.value(), saltBlock.value_size());
99
100 const auto& requestIdBlock = content.get(tlv::RequestId);
Zhiyi Zhangc9f9fac2020-10-18 19:51:51 -0700101 std::memcpy(requestId.data(), requestIdBlock.value(), requestIdBlock.value_size());
102
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 Zhangbed854c2020-10-20 18:25:35 -0700109 return challenges;
tylerliu0790bdb2020-10-02 00:50:51 -0700110}
111
Zhiyi Zhange4891b72020-10-10 15:11:57 -0700112} // namespace ndncert
113} // namespace ndn