blob: 697960ffaebfed30318d2717126a56fd3ad58fb8 [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/*
Alexander Afanasyev7838cfd2020-06-03 14:16:43 -04003 * Copyright (c) 2017-2020, 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"
Zhiyi Zhang90c75782020-10-06 15:04:03 -070022#include <boost/asio.hpp>
Davide Pesaventod4496f72019-01-19 20:23:50 -050023#include <boost/asio/ip/tcp.hpp>
Davide Pesaventod4496f72019-01-19 20:23:50 -050024#include <boost/program_options/options_description.hpp>
25#include <boost/program_options/parsers.hpp>
26#include <boost/program_options/variables_map.hpp>
Davide Pesaventod4496f72019-01-19 20:23:50 -050027#include <iostream>
tylerliu3ad68122020-10-17 12:10:34 -070028#include <chrono>
Zhiyi Zhangaa60c962021-01-22 10:57:41 -080029#include <deque>
Zhiyi Zhang74c61142020-10-07 21:00:49 -070030#include <ndn-cxx/face.hpp>
31#include <ndn-cxx/security/key-chain.hpp>
Zhiyi Zhang08e0e982017-03-01 10:10:42 -080032
33namespace ndn {
34namespace ndncert {
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -070035namespace ca {
Zhiyi Zhang08e0e982017-03-01 10:10:42 -080036
Zhiyi Zhang90c75782020-10-06 15:04:03 -070037Face face;
tylerliua7bea662020-10-08 18:51:02 -070038security::KeyChain keyChain;
Zhiyi Zhang74c61142020-10-07 21:00:49 -070039std::string repoHost = "localhost";
40std::string repoPort = "7376";
Zhiyi Zhangaa60c962021-01-22 10:57:41 -080041const size_t MAX_CACHED_CERT_NUM = 100;
Zhiyi Zhang74c61142020-10-07 21:00:49 -070042
43static bool
44writeDataToRepo(const Data& data) {
45 boost::asio::ip::tcp::iostream requestStream;
tylerliu99e72ac2020-10-17 12:28:56 -070046#if BOOST_VERSION >= 106600
tylerliu9ea1f762020-10-17 11:53:36 -070047 requestStream.expires_after(std::chrono::seconds(3));
48#else
tylerliu01e59632020-10-17 12:15:02 -070049 requestStream.expires_from_now(boost::posix_time::seconds(3));
tylerliu99e72ac2020-10-17 12:28:56 -070050#endif //BOOST_VERSION >= 106600
Zhiyi Zhang74c61142020-10-07 21:00:49 -070051 requestStream.connect(repoHost, repoPort);
52 if (!requestStream) {
Zhiyi Zhangaa60c962021-01-22 10:57:41 -080053 std::cerr << "ERROR: Cannot publish the certificate to repo-ng"
Zhiyi Zhang74c61142020-10-07 21:00:49 -070054 << " (" << requestStream.error().message() << ")" << std::endl;
55 return false;
56 }
57 requestStream.write(reinterpret_cast<const char*>(data.wireEncode().wire()),
58 data.wireEncode().size());
59 return true;
60}
Zhiyi Zhang90c75782020-10-06 15:04:03 -070061
62static void
63handleSignal(const boost::system::error_code& error, int signalNum)
64{
65 if (error) {
66 return;
67 }
68 const char* signalName = ::strsignal(signalNum);
69 std::cerr << "Exiting on signal ";
70 if (signalName == nullptr) {
71 std::cerr << signalNum;
72 }
73 else {
74 std::cerr << signalName;
75 }
76 std::cerr << std::endl;
77 face.getIoService().stop();
78 exit(1);
79}
80
Davide Pesaventod4496f72019-01-19 20:23:50 -050081static int
Zhiyi Zhang08e0e982017-03-01 10:10:42 -080082main(int argc, char* argv[])
83{
Zhiyi Zhang90c75782020-10-06 15:04:03 -070084 boost::asio::signal_set terminateSignals(face.getIoService());
85 terminateSignals.add(SIGINT);
86 terminateSignals.add(SIGTERM);
87 terminateSignals.async_wait(handleSignal);
88
Zhiyi Zhang840afd92020-10-21 13:24:08 -070089 std::string configFilePath(NDNCERT_SYSCONFDIR "/ndncert/ca.conf");
Davide Pesaventod4496f72019-01-19 20:23:50 -050090 bool wantRepoOut = false;
Zhiyi Zhang343cdfb2018-01-17 12:04:28 -080091
92 namespace po = boost::program_options;
Davide Pesaventod4496f72019-01-19 20:23:50 -050093 po::options_description optsDesc("Options");
94 optsDesc.add_options()
Zhiyi Zhang74c61142020-10-07 21:00:49 -070095 ("help,h", "print this help message and exit")
96 ("config-file,c", po::value<std::string>(&configFilePath)->default_value(configFilePath), "path to configuration file")
97 ("repo-output,r", po::bool_switch(&wantRepoOut), "when enabled, all issued certificates will be published to repo-ng")
98 ("repo-host,H", po::value<std::string>(&repoHost)->default_value(repoHost), "repo-ng host")
99 ("repo-port,P", po::value<std::string>(&repoPort)->default_value(repoPort), "repo-ng port");
Zhiyi Zhang343cdfb2018-01-17 12:04:28 -0800100
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800101 po::variables_map vm;
102 try {
Davide Pesaventod4496f72019-01-19 20:23:50 -0500103 po::store(po::parse_command_line(argc, argv, optsDesc), vm);
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800104 po::notify(vm);
105 }
Davide Pesaventod4496f72019-01-19 20:23:50 -0500106 catch (const po::error& e) {
107 std::cerr << "ERROR: " << e.what() << std::endl;
108 return 2;
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800109 }
Davide Pesaventod4496f72019-01-19 20:23:50 -0500110 catch (const boost::bad_any_cast& e) {
111 std::cerr << "ERROR: " << e.what() << std::endl;
112 return 2;
113 }
114
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800115 if (vm.count("help") != 0) {
Davide Pesaventod4496f72019-01-19 20:23:50 -0500116 std::cout << "Usage: " << argv[0] << " [options]\n"
117 << "\n"
118 << optsDesc;
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800119 return 0;
120 }
121
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800122 CaModule ca(face, keyChain, configFilePath);
Zhiyi Zhangaa60c962021-01-22 10:57:41 -0800123 std::deque<Data> cachedCertificates;
Zhiyi Zhang696cd042020-10-07 21:27:36 -0700124 auto profileData = ca.getCaProfileData();
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800125
Davide Pesaventod4496f72019-01-19 20:23:50 -0500126 if (wantRepoOut) {
Zhiyi Zhang696cd042020-10-07 21:27:36 -0700127 writeDataToRepo(profileData);
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -0700128 ca.setStatusUpdateCallback([&](const RequestState& request) {
tylerliu7b9185c2020-11-24 12:15:18 -0800129 if (request.status == Status::SUCCESS && request.requestType == RequestType::NEW) {
130 writeDataToRepo(request.cert);
Zhiyi Zhang74c61142020-10-07 21:00:49 -0700131 }
132 });
Zhiyi Zhang343cdfb2018-01-17 12:04:28 -0800133 }
Zhiyi Zhangd1d9f5a2020-10-05 18:04:23 -0700134 else {
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -0700135 ca.setStatusUpdateCallback([&](const RequestState& request) {
tylerliu7b9185c2020-11-24 12:15:18 -0800136 if (request.status == Status::SUCCESS && request.requestType == RequestType::NEW) {
Zhiyi Zhangaa60c962021-01-22 10:57:41 -0800137 cachedCertificates.push_front(request.cert);
138 if (cachedCertificates.size() > MAX_CACHED_CERT_NUM) {
139 cachedCertificates.pop_back();
140 }
Zhiyi Zhangb420e262020-10-05 20:34:54 -0700141 }
142 });
143 face.setInterestFilter(
Zhiyi Zhang44c6a352020-12-14 10:57:17 -0800144 InterestFilter(ca.getCaConf().caProfile.caPrefix),
Zhiyi Zhangb420e262020-10-05 20:34:54 -0700145 [&](const InterestFilter&, const Interest& interest) {
Zhiyi Zhangaa60c962021-01-22 10:57:41 -0800146 const auto& interestName = interest.getName();
147 if (interestName.isPrefixOf(profileData.getName())) {
148 face.put(profileData);
149 return;
150 }
151 for (const auto& item : cachedCertificates) {
Zhiyi Zhangd35bc5f2021-01-22 17:02:41 -0800152 if (interestName.isPrefixOf(item.getFullName())) {
Zhiyi Zhangaa60c962021-01-22 10:57:41 -0800153 face.put(item);
154 return;
155 }
Zhiyi Zhangb420e262020-10-05 20:34:54 -0700156 }
157 },
158 [](const Name&, const std::string& errorInfo) {
159 std::cerr << "ERROR: " << errorInfo << std::endl;
160 });
Zhiyi Zhangd1d9f5a2020-10-05 18:04:23 -0700161 }
Zhiyi Zhang343cdfb2018-01-17 12:04:28 -0800162
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800163 face.processEvents();
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800164 return 0;
165}
166
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -0700167} // namespace ca
Zhiyi Zhange4891b72020-10-10 15:11:57 -0700168} // namespace ndncert
169} // namespace ndn
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800170
171int
172main(int argc, char* argv[])
173{
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -0700174 return ndn::ndncert::ca::main(argc, argv);
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800175}