Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | f3089c3 | 2021-05-25 21:28:21 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2021 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 7 | * 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 Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 20 | */ |
| 21 | |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 22 | #include "ndnsec.hpp" |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 23 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 24 | #include "ndn-cxx/util/logger.hpp" |
Davide Pesavento | 949075a | 2021-10-17 22:07:07 -0400 | [diff] [blame] | 25 | #include "ndn-cxx/util/logging.hpp" |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 26 | #include "ndn-cxx/version.hpp" |
Alexander Afanasyev | d7db8bf | 2015-01-04 15:31:02 -0800 | [diff] [blame] | 27 | |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 28 | #include <boost/exception/diagnostic_information.hpp> |
Davide Pesavento | f3089c3 | 2021-05-25 21:28:21 -0400 | [diff] [blame] | 29 | #include <boost/filesystem/path.hpp> |
Davide Pesavento | 25d4f1c | 2020-04-29 23:31:04 -0400 | [diff] [blame] | 30 | #include <iostream> |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 31 | |
| 32 | NDN_LOG_INIT(ndnsec); |
| 33 | |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 34 | const char NDNSEC_HELP_TEXT[] = R"STR(Usage: ndnsec COMMAND [OPTION]... |
| 35 | |
| 36 | Available 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 | |
| 52 | Try 'ndnsec COMMAND --help' for more information on each command.)STR"; |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 53 | |
Davide Pesavento | 97157b4 | 2021-05-27 21:00:43 -0400 | [diff] [blame] | 54 | const 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 Yu | 05842f2 | 2014-04-15 19:21:56 -0700 | [diff] [blame] | 62 | int |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 63 | main(int argc, char* argv[]) |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 64 | { |
Davide Pesavento | f3089c3 | 2021-05-25 21:28:21 -0400 | [diff] [blame] | 65 | 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 Pesavento | 97157b4 | 2021-05-27 21:00:43 -0400 | [diff] [blame] | 70 | 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 Pesavento | f3089c3 | 2021-05-25 21:28:21 -0400 | [diff] [blame] | 76 | } |
| 77 | else if (argc >= 2) { |
| 78 | command = argv[1]; |
| 79 | argc--; |
| 80 | argv++; |
| 81 | } |
| 82 | else { |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 83 | std::cerr << NDNSEC_HELP_TEXT << std::endl; |
| 84 | return 2; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 85 | } |
Davide Pesavento | 97157b4 | 2021-05-27 21:00:43 -0400 | [diff] [blame] | 86 | |
Davide Pesavento | f3089c3 | 2021-05-25 21:28:21 -0400 | [diff] [blame] | 87 | NDN_LOG_TRACE("Command: " << command); |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 88 | |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 89 | try { |
Davide Pesavento | f3089c3 | 2021-05-25 21:28:21 -0400 | [diff] [blame] | 90 | using namespace ndn::ndnsec; |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 91 | if (command == "help") { std::cout << NDNSEC_HELP_TEXT << std::endl; } |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 92 | else if (command == "version") { std::cout << NDN_CXX_VERSION_BUILD_STRING << std::endl; } |
Davide Pesavento | f3089c3 | 2021-05-25 21:28:21 -0400 | [diff] [blame] | 93 | 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 Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 105 | else { |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 106 | std::cerr << "ERROR: Unknown command '" << command << "'\n" |
| 107 | << "\n" |
| 108 | << NDNSEC_HELP_TEXT << std::endl; |
| 109 | return 2; |
Yingdi Yu | f8fc8de | 2014-02-25 15:45:39 -0800 | [diff] [blame] | 110 | } |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 111 | } |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 112 | catch (const std::exception& e) { |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 113 | std::cerr << "ERROR: " << e.what() << std::endl; |
| 114 | NDN_LOG_ERROR(boost::diagnostic_information(e)); |
Davide Pesavento | 949075a | 2021-10-17 22:07:07 -0400 | [diff] [blame] | 115 | ndn::util::Logging::flush(); |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 116 | return 1; |
| 117 | } |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 118 | |
| 119 | return 0; |
| 120 | } |