blob: 8a17c28f5651afb491cd0e254fdec3b1c378d91c [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 Zhang74c61142020-10-07 21:00:49 -070029#include <ndn-cxx/face.hpp>
30#include <ndn-cxx/security/key-chain.hpp>
Zhiyi Zhang08e0e982017-03-01 10:10:42 -080031
32namespace ndn {
33namespace ndncert {
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -070034namespace ca {
Zhiyi Zhang08e0e982017-03-01 10:10:42 -080035
Zhiyi Zhang90c75782020-10-06 15:04:03 -070036Face face;
tylerliua7bea662020-10-08 18:51:02 -070037security::KeyChain keyChain;
Zhiyi Zhang74c61142020-10-07 21:00:49 -070038std::string repoHost = "localhost";
39std::string repoPort = "7376";
40
41static bool
42writeDataToRepo(const Data& data) {
43 boost::asio::ip::tcp::iostream requestStream;
tylerliu99e72ac2020-10-17 12:28:56 -070044#if BOOST_VERSION >= 106600
tylerliu9ea1f762020-10-17 11:53:36 -070045 requestStream.expires_after(std::chrono::seconds(3));
46#else
tylerliu01e59632020-10-17 12:15:02 -070047 requestStream.expires_from_now(boost::posix_time::seconds(3));
tylerliu99e72ac2020-10-17 12:28:56 -070048#endif //BOOST_VERSION >= 106600
Zhiyi Zhang74c61142020-10-07 21:00:49 -070049 requestStream.connect(repoHost, repoPort);
50 if (!requestStream) {
51 std::cerr << "ERROR: Cannot publish certificate to repo-ng"
52 << " (" << requestStream.error().message() << ")" << std::endl;
53 return false;
54 }
55 requestStream.write(reinterpret_cast<const char*>(data.wireEncode().wire()),
56 data.wireEncode().size());
57 return true;
58}
Zhiyi Zhang90c75782020-10-06 15:04:03 -070059
60static void
61handleSignal(const boost::system::error_code& error, int signalNum)
62{
63 if (error) {
64 return;
65 }
66 const char* signalName = ::strsignal(signalNum);
67 std::cerr << "Exiting on signal ";
68 if (signalName == nullptr) {
69 std::cerr << signalNum;
70 }
71 else {
72 std::cerr << signalName;
73 }
74 std::cerr << std::endl;
75 face.getIoService().stop();
76 exit(1);
77}
78
Davide Pesaventod4496f72019-01-19 20:23:50 -050079static int
Zhiyi Zhang08e0e982017-03-01 10:10:42 -080080main(int argc, char* argv[])
81{
Zhiyi Zhang90c75782020-10-06 15:04:03 -070082 boost::asio::signal_set terminateSignals(face.getIoService());
83 terminateSignals.add(SIGINT);
84 terminateSignals.add(SIGTERM);
85 terminateSignals.async_wait(handleSignal);
86
Zhiyi Zhang840afd92020-10-21 13:24:08 -070087 std::string configFilePath(NDNCERT_SYSCONFDIR "/ndncert/ca.conf");
Davide Pesaventod4496f72019-01-19 20:23:50 -050088 bool wantRepoOut = false;
Zhiyi Zhang343cdfb2018-01-17 12:04:28 -080089
90 namespace po = boost::program_options;
Davide Pesaventod4496f72019-01-19 20:23:50 -050091 po::options_description optsDesc("Options");
92 optsDesc.add_options()
Zhiyi Zhang74c61142020-10-07 21:00:49 -070093 ("help,h", "print this help message and exit")
94 ("config-file,c", po::value<std::string>(&configFilePath)->default_value(configFilePath), "path to configuration file")
95 ("repo-output,r", po::bool_switch(&wantRepoOut), "when enabled, all issued certificates will be published to repo-ng")
96 ("repo-host,H", po::value<std::string>(&repoHost)->default_value(repoHost), "repo-ng host")
97 ("repo-port,P", po::value<std::string>(&repoPort)->default_value(repoPort), "repo-ng port");
Zhiyi Zhang343cdfb2018-01-17 12:04:28 -080098
Zhiyi Zhang08e0e982017-03-01 10:10:42 -080099 po::variables_map vm;
100 try {
Davide Pesaventod4496f72019-01-19 20:23:50 -0500101 po::store(po::parse_command_line(argc, argv, optsDesc), vm);
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800102 po::notify(vm);
103 }
Davide Pesaventod4496f72019-01-19 20:23:50 -0500104 catch (const po::error& e) {
105 std::cerr << "ERROR: " << e.what() << std::endl;
106 return 2;
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800107 }
Davide Pesaventod4496f72019-01-19 20:23:50 -0500108 catch (const boost::bad_any_cast& e) {
109 std::cerr << "ERROR: " << e.what() << std::endl;
110 return 2;
111 }
112
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800113 if (vm.count("help") != 0) {
Davide Pesaventod4496f72019-01-19 20:23:50 -0500114 std::cout << "Usage: " << argv[0] << " [options]\n"
115 << "\n"
116 << optsDesc;
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800117 return 0;
118 }
119
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800120 CaModule ca(face, keyChain, configFilePath);
Zhiyi Zhang74c61142020-10-07 21:00:49 -0700121 std::map<Name, Data> cachedCertificates;
Zhiyi Zhang696cd042020-10-07 21:27:36 -0700122 auto profileData = ca.getCaProfileData();
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800123
Davide Pesaventod4496f72019-01-19 20:23:50 -0500124 if (wantRepoOut) {
Zhiyi Zhang696cd042020-10-07 21:27:36 -0700125 writeDataToRepo(profileData);
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -0700126 ca.setStatusUpdateCallback([&](const RequestState& request) {
tylerliu7b9185c2020-11-24 12:15:18 -0800127 if (request.status == Status::SUCCESS && request.requestType == RequestType::NEW) {
128 writeDataToRepo(request.cert);
Zhiyi Zhang74c61142020-10-07 21:00:49 -0700129 }
130 });
Zhiyi Zhang343cdfb2018-01-17 12:04:28 -0800131 }
Zhiyi Zhangd1d9f5a2020-10-05 18:04:23 -0700132 else {
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -0700133 ca.setStatusUpdateCallback([&](const RequestState& request) {
tylerliu7b9185c2020-11-24 12:15:18 -0800134 if (request.status == Status::SUCCESS && request.requestType == RequestType::NEW) {
135 cachedCertificates[request.cert.getName()] = request.cert;
Zhiyi Zhangb420e262020-10-05 20:34:54 -0700136 }
137 });
Zhiyi Zhang696cd042020-10-07 21:27:36 -0700138 cachedCertificates[profileData.getName()] = profileData;
Zhiyi Zhangb420e262020-10-05 20:34:54 -0700139 face.setInterestFilter(
Zhiyi Zhang44c6a352020-12-14 10:57:17 -0800140 InterestFilter(ca.getCaConf().caProfile.caPrefix),
Zhiyi Zhangb420e262020-10-05 20:34:54 -0700141 [&](const InterestFilter&, const Interest& interest) {
142 auto search = cachedCertificates.find(interest.getName());
143 if (search != cachedCertificates.end()) {
144 face.put(search->second);
145 }
146 },
147 [](const Name&, const std::string& errorInfo) {
148 std::cerr << "ERROR: " << errorInfo << std::endl;
149 });
Zhiyi Zhangd1d9f5a2020-10-05 18:04:23 -0700150 }
Zhiyi Zhang343cdfb2018-01-17 12:04:28 -0800151
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800152 face.processEvents();
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800153 return 0;
154}
155
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -0700156} // namespace ca
Zhiyi Zhange4891b72020-10-10 15:11:57 -0700157} // namespace ndncert
158} // namespace ndn
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800159
160int
161main(int argc, char* argv[])
162{
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -0700163 return ndn::ndncert::ca::main(argc, argv);
Zhiyi Zhang08e0e982017-03-01 10:10:42 -0800164}