blob: e731b5c0ab11cb7330562a1bdb69a884279835fa [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento19442812018-11-23 14:00:04 -05002/*
Davide Pesaventof3089c32021-05-25 21:28:21 -04003 * Copyright (c) 2013-2021 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"
Davide Pesavento19442812018-11-23 14:00:04 -050023
Davide Pesavento7e780642018-11-24 15:51:34 -050024#include "ndn-cxx/util/logger.hpp"
Davide Pesavento949075a2021-10-17 22:07:07 -040025#include "ndn-cxx/util/logging.hpp"
Davide Pesavento7e780642018-11-24 15:51:34 -050026#include "ndn-cxx/version.hpp"
Alexander Afanasyevd7db8bf2015-01-04 15:31:02 -080027
Davide Pesaventofa995ac2019-03-27 23:44:46 -040028#include <boost/exception/diagnostic_information.hpp>
Davide Pesaventof3089c32021-05-25 21:28:21 -040029#include <boost/filesystem/path.hpp>
Davide Pesavento25d4f1c2020-04-29 23:31:04 -040030#include <iostream>
Alexander Afanasyev35109a12017-01-04 15:39:06 -080031
32NDN_LOG_INIT(ndnsec);
33
Davide Pesaventofa995ac2019-03-27 23:44:46 -040034const char NDNSEC_HELP_TEXT[] = R"STR(Usage: ndnsec COMMAND [OPTION]...
35
36Available commands:
37 help Print this help text
38 version Print program version
39 list List all known identities/keys/certificates
40 get-default Show the default identity/key/certificate
41 set-default Change the default identity/key/certificate
42 delete Delete an identity/key/certificate
43 key-gen Generate a key for an identity
44 sign-req Generate a certificate signing request
45 cert-gen Create a certificate for an identity
46 cert-dump Export a certificate
47 cert-install Import a certificate from a file
48 export Export an identity as a SafeBag
49 import Import an identity from a SafeBag
50 unlock-tpm Unlock the TPM
51
52Try 'ndnsec COMMAND --help' for more information on each command.)STR";
Yingdi Yu8d7468f2014-02-21 14:49:45 -080053
Davide Pesavento97157b42021-05-27 21:00:43 -040054const std::map<std::string, std::string> deprecatedCommands{
55 {"certgen", "cert-gen"},
56 {"dump-certificate", "cert-dump"},
57 {"install-cert", "cert-install"},
58 {"keygen", "key-gen"},
59 {"ls-identity", "list"},
60};
61
Yingdi Yu05842f22014-04-15 19:21:56 -070062int
Davide Pesaventofa995ac2019-03-27 23:44:46 -040063main(int argc, char* argv[])
Yingdi Yu8d7468f2014-02-21 14:49:45 -080064{
Davide Pesaventof3089c32021-05-25 21:28:21 -040065 boost::filesystem::path p(argv[0]);
66 std::string basename(p.filename().string());
67 std::string command;
68 if (basename.rfind("ndnsec-", 0) == 0) {
69 command = basename.substr(std::strlen("ndnsec-"));
Davide Pesavento97157b42021-05-27 21:00:43 -040070 auto it = deprecatedCommands.find(command);
71 if (it != deprecatedCommands.end()) {
72 std::cerr << "DEPRECATION NOTICE: ndnsec-" << it->first << " is deprecated. "
73 << "Please use 'ndnsec " << it->second << "' instead.\n";
74 command = it->second;
75 }
Davide Pesaventof3089c32021-05-25 21:28:21 -040076 }
77 else if (argc >= 2) {
78 command = argv[1];
79 argc--;
80 argv++;
81 }
82 else {
Davide Pesaventofa995ac2019-03-27 23:44:46 -040083 std::cerr << NDNSEC_HELP_TEXT << std::endl;
84 return 2;
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080085 }
Davide Pesavento97157b42021-05-27 21:00:43 -040086
Davide Pesaventof3089c32021-05-25 21:28:21 -040087 NDN_LOG_TRACE("Command: " << command);
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080088
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080089 try {
Davide Pesaventof3089c32021-05-25 21:28:21 -040090 using namespace ndn::ndnsec;
Davide Pesaventofa995ac2019-03-27 23:44:46 -040091 if (command == "help") { std::cout << NDNSEC_HELP_TEXT << std::endl; }
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080092 else if (command == "version") { std::cout << NDN_CXX_VERSION_BUILD_STRING << std::endl; }
Davide Pesaventof3089c32021-05-25 21:28:21 -040093 else if (command == "list") { return ndnsec_list(argc, argv); }
94 else if (command == "get-default") { return ndnsec_get_default(argc, argv); }
95 else if (command == "set-default") { return ndnsec_set_default(argc, argv); }
96 else if (command == "delete") { return ndnsec_delete(argc, argv); }
97 else if (command == "key-gen") { return ndnsec_key_gen(argc, argv); }
98 else if (command == "sign-req") { return ndnsec_sign_req(argc, argv); }
99 else if (command == "cert-gen") { return ndnsec_cert_gen(argc, argv); }
100 else if (command == "cert-dump") { return ndnsec_cert_dump(argc, argv); }
101 else if (command == "cert-install") { return ndnsec_cert_install(argc, argv); }
102 else if (command == "export") { return ndnsec_export(argc, argv); }
103 else if (command == "import") { return ndnsec_import(argc, argv); }
104 else if (command == "unlock-tpm") { return ndnsec_unlock_tpm(argc, argv); }
Alexander Afanasyev82c359c2017-01-04 14:48:07 -0800105 else {
Davide Pesaventofa995ac2019-03-27 23:44:46 -0400106 std::cerr << "ERROR: Unknown command '" << command << "'\n"
107 << "\n"
108 << NDNSEC_HELP_TEXT << std::endl;
109 return 2;
Yingdi Yuf8fc8de2014-02-25 15:45:39 -0800110 }
Alexander Afanasyev82c359c2017-01-04 14:48:07 -0800111 }
Alexander Afanasyev35109a12017-01-04 15:39:06 -0800112 catch (const std::exception& e) {
Davide Pesaventofa995ac2019-03-27 23:44:46 -0400113 std::cerr << "ERROR: " << e.what() << std::endl;
114 NDN_LOG_ERROR(boost::diagnostic_information(e));
Davide Pesavento949075a2021-10-17 22:07:07 -0400115 ndn::util::Logging::flush();
Alexander Afanasyev82c359c2017-01-04 14:48:07 -0800116 return 1;
117 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -0800118
119 return 0;
120}