blob: a8af6933ec33ba4b9de2f9488c8c21cf712f9a89 [file] [log] [blame]
Zhiyi Zhang08e0e982017-03-01 10:10:42 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventod4496f72019-01-19 20:23:50 -05002/*
Tianyuan Yu13aac732022-03-03 20:59:54 -08003 * Copyright (c) 2017-2022, Regents of the University of California.
Zhiyi Zhang08e0e982017-03-01 10:10:42 -08004 *
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
21#include "ca-module.hpp"
Davide Pesavento0dc02012021-11-23 22:55:03 -050022
Zhiyi Zhang90c75782020-10-06 15:04:03 -070023#include <boost/asio.hpp>
Davide Pesaventod4496f72019-01-19 20:23:50 -050024#include <boost/asio/ip/tcp.hpp>
Davide Pesaventod4496f72019-01-19 20:23:50 -050025#include <boost/program_options/options_description.hpp>
26#include <boost/program_options/parsers.hpp>
27#include <boost/program_options/variables_map.hpp>
Davide Pesavento0d1d11c2022-04-11 22:11:34 -040028
tylerliu3ad68122020-10-17 12:10:34 -070029#include <chrono>
Zhiyi Zhangaa60c962021-01-22 10:57:41 -080030#include <deque>
Davide Pesavento0d1d11c2022-04-11 22:11:34 -040031#include <iostream>
Davide Pesavento0dc02012021-11-23 22:55:03 -050032
Zhiyi Zhang74c61142020-10-07 21:00:49 -070033#include <ndn-cxx/face.hpp>
34#include <ndn-cxx/security/key-chain.hpp>
Zhiyi Zhang08e0e982017-03-01 10:10:42 -080035
Davide Pesavento0d1d11c2022-04-11 22:11:34 -040036namespace ndncert::ca {
Zhiyi Zhang08e0e982017-03-01 10:10:42 -080037
Davide Pesavento0dc02012021-11-23 22:55:03 -050038static ndn::Face face;
39static ndn::KeyChain keyChain;
40static std::string repoHost = "localhost";
41static std::string repoPort = "7376";
Zhiyi Zhangaa60c962021-01-22 10:57:41 -080042const size_t MAX_CACHED_CERT_NUM = 100;
Zhiyi Zhang74c61142020-10-07 21:00:49 -070043
44static bool
Davide Pesavento0d1d11c2022-04-11 22:11:34 -040045writeDataToRepo(const Data& data)
46{
Zhiyi Zhang74c61142020-10-07 21:00:49 -070047 boost::asio::ip::tcp::iostream requestStream;
tylerliu99e72ac2020-10-17 12:28:56 -070048#if BOOST_VERSION >= 106600
tylerliu9ea1f762020-10-17 11:53:36 -070049 requestStream.expires_after(std::chrono::seconds(3));
50#else
tylerliu01e59632020-10-17 12:15:02 -070051 requestStream.expires_from_now(boost::posix_time::seconds(3));
tylerliu99e72ac2020-10-17 12:28:56 -070052#endif //BOOST_VERSION >= 106600
Zhiyi Zhang74c61142020-10-07 21:00:49 -070053 requestStream.connect(repoHost, repoPort);
54 if (!requestStream) {
Zhiyi Zhangaa60c962021-01-22 10:57:41 -080055 std::cerr << "ERROR: Cannot publish the certificate to repo-ng"
Zhiyi Zhang74c61142020-10-07 21:00:49 -070056 << " (" << requestStream.error().message() << ")" << std::endl;
57 return false;
58 }
59 requestStream.write(reinterpret_cast<const char*>(data.wireEncode().wire()),
60 data.wireEncode().size());
61 return true;
62}
Zhiyi Zhang90c75782020-10-06 15:04:03 -070063
64static void
65handleSignal(const boost::system::error_code& error, int signalNum)
66{
67 if (error) {
68 return;
69 }
70 const char* signalName = ::strsignal(signalNum);
71 std::cerr << "Exiting on signal ";
72 if (signalName == nullptr) {
73 std::cerr << signalNum;
74 }
75 else {
76 std::cerr << signalName;
77 }
78 std::cerr << std::endl;
79 face.getIoService().stop();
80 exit(1);
81}
82
Davide Pesaventod4496f72019-01-19 20:23:50 -050083static int
Zhiyi Zhang08e0e982017-03-01 10:10:42 -080084main(int argc, char* argv[])
85{
Zhiyi Zhang90c75782020-10-06 15:04:03 -070086 boost::asio::signal_set terminateSignals(face.getIoService());
87 terminateSignals.add(SIGINT);
88 terminateSignals.add(SIGTERM);
89 terminateSignals.async_wait(handleSignal);
90
Zhiyi Zhang840afd92020-10-21 13:24:08 -070091 std::string configFilePath(NDNCERT_SYSCONFDIR "/ndncert/ca.conf");
Davide Pesaventod4496f72019-01-19 20:23:50 -050092 bool wantRepoOut = false;
Zhiyi Zhang343cdfb2018-01-17 12:04:28 -080093
94 namespace po = boost::program_options;
Davide Pesaventod4496f72019-01-19 20:23:50 -050095 po::options_description optsDesc("Options");
96 optsDesc.add_options()
Zhiyi Zhang74c61142020-10-07 21:00:49 -070097 ("help,h", "print this help message and exit")
98 ("config-file,c", po::value<std::string>(&configFilePath)->default_value(configFilePath), "path to configuration file")
99 ("repo-output,r", po::bool_switch(&wantRepoOut), "when enabled, all issued certificates will be published to repo-ng")
100 ("repo-host,H", po::value<std::string>(&repoHost)->default_value(repoHost), "repo-ng host")
101 ("repo-port,P", po::value<std::string>(&repoPort)->default_value(repoPort), "repo-ng port");
Zhiyi Zhang343cdfb2018-01-17 12:04:28 -0800102
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800103 po::variables_map vm;
104 try {
Davide Pesaventod4496f72019-01-19 20:23:50 -0500105 po::store(po::parse_command_line(argc, argv, optsDesc), vm);
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800106 po::notify(vm);
107 }
Davide Pesaventod4496f72019-01-19 20:23:50 -0500108 catch (const po::error& e) {
109 std::cerr << "ERROR: " << e.what() << std::endl;
110 return 2;
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800111 }
Davide Pesaventod4496f72019-01-19 20:23:50 -0500112 catch (const boost::bad_any_cast& e) {
113 std::cerr << "ERROR: " << e.what() << std::endl;
114 return 2;
115 }
116
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800117 if (vm.count("help") != 0) {
Davide Pesaventod4496f72019-01-19 20:23:50 -0500118 std::cout << "Usage: " << argv[0] << " [options]\n"
119 << "\n"
120 << optsDesc;
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800121 return 0;
122 }
123
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800124 CaModule ca(face, keyChain, configFilePath);
Zhiyi Zhangaa60c962021-01-22 10:57:41 -0800125 std::deque<Data> cachedCertificates;
Zhiyi Zhang696cd042020-10-07 21:27:36 -0700126 auto profileData = ca.getCaProfileData();
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800127
Davide Pesaventod4496f72019-01-19 20:23:50 -0500128 if (wantRepoOut) {
Zhiyi Zhang696cd042020-10-07 21:27:36 -0700129 writeDataToRepo(profileData);
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -0700130 ca.setStatusUpdateCallback([&](const RequestState& request) {
tylerliu7b9185c2020-11-24 12:15:18 -0800131 if (request.status == Status::SUCCESS && request.requestType == RequestType::NEW) {
132 writeDataToRepo(request.cert);
Zhiyi Zhang74c61142020-10-07 21:00:49 -0700133 }
134 });
Zhiyi Zhang343cdfb2018-01-17 12:04:28 -0800135 }
Zhiyi Zhangd1d9f5a2020-10-05 18:04:23 -0700136 else {
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -0700137 ca.setStatusUpdateCallback([&](const RequestState& request) {
tylerliu7b9185c2020-11-24 12:15:18 -0800138 if (request.status == Status::SUCCESS && request.requestType == RequestType::NEW) {
Zhiyi Zhangaa60c962021-01-22 10:57:41 -0800139 cachedCertificates.push_front(request.cert);
140 if (cachedCertificates.size() > MAX_CACHED_CERT_NUM) {
141 cachedCertificates.pop_back();
142 }
Zhiyi Zhangb420e262020-10-05 20:34:54 -0700143 }
144 });
145 face.setInterestFilter(
Davide Pesavento0dc02012021-11-23 22:55:03 -0500146 ndn::InterestFilter(ca.getCaConf().caProfile.caPrefix),
147 [&](const auto&, const auto& interest) {
Zhiyi Zhangaa60c962021-01-22 10:57:41 -0800148 const auto& interestName = interest.getName();
149 if (interestName.isPrefixOf(profileData.getName())) {
150 face.put(profileData);
151 return;
152 }
153 for (const auto& item : cachedCertificates) {
Zhiyi Zhangd35bc5f2021-01-22 17:02:41 -0800154 if (interestName.isPrefixOf(item.getFullName())) {
Zhiyi Zhangaa60c962021-01-22 10:57:41 -0800155 face.put(item);
156 return;
157 }
Zhiyi Zhangb420e262020-10-05 20:34:54 -0700158 }
Zhiyi Zhangb420e262020-10-05 20:34:54 -0700159 });
Zhiyi Zhangd1d9f5a2020-10-05 18:04:23 -0700160 }
Zhiyi Zhang343cdfb2018-01-17 12:04:28 -0800161
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800162 face.processEvents();
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800163 return 0;
164}
165
Davide Pesavento0d1d11c2022-04-11 22:11:34 -0400166} // namespace ndncert::ca
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800167
168int
169main(int argc, char* argv[])
170{
Davide Pesavento0dc02012021-11-23 22:55:03 -0500171 return ndncert::ca::main(argc, argv);
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800172}