blob: 3b4f9cf4ad69c45d2978ac1e14209cd156d5d880 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi478206e2017-10-15 00:22:35 +00002/*
Davide Pesavento25d9c9f2024-06-23 15:10:05 -04003 * Copyright (c) 2013-2024 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library 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 Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Yingdi Yu8d7468f2014-02-21 14:49:45 -080020 */
21
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080022#include "ndnsec.hpp"
Alexander Afanasyevd7db8bf2015-01-04 15:31:02 -080023#include "util.hpp"
Yingdi Yu8d7468f2014-02-21 14:49:45 -080024
Davide Pesaventob310efb2019-04-11 22:10:24 -040025#include <boost/asio/ip/tcp.hpp>
Davide Pesavento5afbb0b2018-01-01 17:24:18 -050026
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040027namespace ndn::ndnsec {
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080028
Yingdi Yu8d7468f2014-02-21 14:49:45 -080029int
Yingdi Yub61f5402014-02-26 17:46:11 -080030ndnsec_cert_dump(int argc, char** argv)
Yingdi Yu8d7468f2014-02-21 14:49:45 -080031{
Yingdi Yu8d7468f2014-02-21 14:49:45 -080032 namespace po = boost::program_options;
33
34 std::string name;
Yingdi Yu8d7468f2014-02-21 14:49:45 -080035 bool isIdentityName = false;
Davide Pesaventob310efb2019-04-11 22:10:24 -040036 bool isKeyName = false;
37 bool isFileName = false;
Yingdi Yu8d7468f2014-02-21 14:49:45 -080038 bool isPretty = false;
Yingdi Yu8d7468f2014-02-21 14:49:45 -080039 bool isRepoOut = false;
Yingdi Yuba8604d2014-10-13 19:03:12 -070040 std::string repoHost;
41 std::string repoPort;
Yingdi Yu8d7468f2014-02-21 14:49:45 -080042
Davide Pesaventob310efb2019-04-11 22:10:24 -040043 po::options_description description(
44 "Usage: ndnsec cert-dump [-h] [-p] [-r [-H HOST] [-P PORT]] [-i|-k|-f] [-n] NAME\n"
45 "\n"
Davide Pesavento25d9c9f2024-06-23 15:10:05 -040046 "Display a certificate from a file or the local PIB.\n"
47 "\n"
Davide Pesaventob310efb2019-04-11 22:10:24 -040048 "Options");
Yingdi Yub61f5402014-02-26 17:46:11 -080049 description.add_options()
Davide Pesaventob310efb2019-04-11 22:10:24 -040050 ("help,h", "produce help message")
51 ("pretty,p", po::bool_switch(&isPretty), "display certificate in human readable format")
52 ("identity,i", po::bool_switch(&isIdentityName),
53 "treat the NAME argument as an identity name (e.g., /ndn/edu/ucla/alice)")
54 ("key,k", po::bool_switch(&isKeyName),
55 "treat the NAME argument as a key name (e.g., /ndn/edu/ucla/alice/ksk-123456789)")
56 ("file,f", po::bool_switch(&isFileName),
57 "treat the NAME argument as the name of a file containing a base64-encoded "
58 "certificate, '-' for stdin")
59 ("name,n", po::value<std::string>(&name),
60 "unless overridden by -i/-k/-f, the name of the certificate to be exported "
61 "(e.g., /ndn/edu/ucla/KEY/cs/alice/ksk-1234567890/ID-CERT/%FD%FF%FF%FF%FF%FF%FF%FF)")
62 ("repo-output,r", po::bool_switch(&isRepoOut),
Zhiyi Zhang4c68b6e2020-04-20 16:13:21 -070063 "publish the certificate into an NDN repo instance")
Davide Pesaventob310efb2019-04-11 22:10:24 -040064 ("repo-host,H", po::value<std::string>(&repoHost)->default_value("localhost"),
65 "repo hostname if --repo-output is specified")
66 ("repo-port,P", po::value<std::string>(&repoPort)->default_value("7376"),
67 "repo port number if --repo-output is specified")
Yingdi Yu8d7468f2014-02-21 14:49:45 -080068 ;
69
70 po::positional_options_description p;
71 p.add("name", 1);
Yingdi Yu8d7468f2014-02-21 14:49:45 -080072
Yingdi Yub61f5402014-02-26 17:46:11 -080073 po::variables_map vm;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070074 try {
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080075 po::store(po::command_line_parser(argc, argv).options(description).positional(p).run(), vm);
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070076 po::notify(vm);
77 }
78 catch (const std::exception& e) {
Davide Pesaventob310efb2019-04-11 22:10:24 -040079 std::cerr << "ERROR: " << e.what() << "\n\n"
80 << description << std::endl;
81 return 2;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070082 }
Yingdi Yub61f5402014-02-26 17:46:11 -080083
Davide Pesaventob310efb2019-04-11 22:10:24 -040084 if (vm.count("help") > 0) {
85 std::cout << description << std::endl;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070086 return 0;
87 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -080088
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070089 if (vm.count("name") == 0) {
Davide Pesaventob310efb2019-04-11 22:10:24 -040090 std::cerr << "ERROR: you must specify a name" << std::endl;
91 return 2;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070092 }
Yingdi Yub61f5402014-02-26 17:46:11 -080093
Junxiao Shibc2e78e2020-05-20 15:01:08 -060094 int nIsNameOptions = isIdentityName + isKeyName + isFileName;
95 if (nIsNameOptions > 1) {
Davide Pesaventob310efb2019-04-11 22:10:24 -040096 std::cerr << "ERROR: at most one of '--identity', '--key', "
97 "or '--file' may be specified" << std::endl;
98 return 2;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070099 }
Yingdi Yub61f5402014-02-26 17:46:11 -0800100
Davide Pesaventob310efb2019-04-11 22:10:24 -0400101 if (isPretty && isRepoOut) {
102 std::cerr << "ERROR: '--pretty' is incompatible with '--repo-output'" << std::endl;
103 return 2;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -0700104 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -0800105
Davide Pesaventof2cae612021-03-24 18:47:05 -0400106 security::Certificate certificate;
Junxiao Shibc2e78e2020-05-20 15:01:08 -0600107 if (isFileName) {
Davide Pesavento949075a2021-10-17 22:07:07 -0400108 certificate = loadFromFile<security::Certificate>(name);
Alexander Afanasyev35109a12017-01-04 15:39:06 -0800109 }
Junxiao Shibc2e78e2020-05-20 15:01:08 -0600110 else {
Davide Pesaventof2cae612021-03-24 18:47:05 -0400111 KeyChain keyChain;
Junxiao Shibc2e78e2020-05-20 15:01:08 -0600112 certificate = getCertificateFromPib(keyChain.getPib(), name,
113 isIdentityName, isKeyName, nIsNameOptions == 0);
Alexander Afanasyev2fa59392016-07-29 17:24:23 -0700114 }
Yingdi Yub61f5402014-02-26 17:46:11 -0800115
Alexander Afanasyev2fa59392016-07-29 17:24:23 -0700116 if (isPretty) {
Alexander Afanasyev35109a12017-01-04 15:39:06 -0800117 std::cout << certificate << std::endl;
Davide Pesaventob310efb2019-04-11 22:10:24 -0400118 return 0;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -0700119 }
Yingdi Yub61f5402014-02-26 17:46:11 -0800120
Davide Pesaventob310efb2019-04-11 22:10:24 -0400121 if (isRepoOut) {
122 boost::asio::ip::tcp::iostream requestStream;
Davide Pesaventob310efb2019-04-11 22:10:24 -0400123 requestStream.expires_after(std::chrono::seconds(10));
Davide Pesaventob310efb2019-04-11 22:10:24 -0400124 requestStream.connect(repoHost, repoPort);
125 if (!requestStream) {
126 std::cerr << "ERROR: Failed to connect to repo instance" << std::endl;
127 return 1;
Yingdi Yu8d7468f2014-02-21 14:49:45 -0800128 }
Davide Pesavento258d51a2022-02-27 21:26:28 -0500129 requestStream.write(reinterpret_cast<const char*>(certificate.wireEncode().data()),
Davide Pesaventob310efb2019-04-11 22:10:24 -0400130 certificate.wireEncode().size());
131 return 0;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -0700132 }
Davide Pesaventob310efb2019-04-11 22:10:24 -0400133
134 io::save(certificate, std::cout);
135
Yingdi Yu8d7468f2014-02-21 14:49:45 -0800136 return 0;
137}
138
Davide Pesavento47ce2ee2023-05-09 01:33:33 -0400139} // namespace ndn::ndnsec