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 | 25d4f1c | 2020-04-29 23:31:04 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2020 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" |
| 25 | #include "ndn-cxx/version.hpp" |
Alexander Afanasyev | d7db8bf | 2015-01-04 15:31:02 -0800 | [diff] [blame] | 26 | |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 27 | #include <boost/exception/diagnostic_information.hpp> |
Davide Pesavento | 25d4f1c | 2020-04-29 23:31:04 -0400 | [diff] [blame] | 28 | #include <iostream> |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 29 | |
| 30 | NDN_LOG_INIT(ndnsec); |
| 31 | |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 32 | const char NDNSEC_HELP_TEXT[] = R"STR(Usage: ndnsec COMMAND [OPTION]... |
| 33 | |
| 34 | Available commands: |
| 35 | help Print this help text |
| 36 | version Print program version |
| 37 | list List all known identities/keys/certificates |
| 38 | get-default Show the default identity/key/certificate |
| 39 | set-default Change the default identity/key/certificate |
| 40 | delete Delete an identity/key/certificate |
| 41 | key-gen Generate a key for an identity |
| 42 | sign-req Generate a certificate signing request |
| 43 | cert-gen Create a certificate for an identity |
| 44 | cert-dump Export a certificate |
| 45 | cert-install Import a certificate from a file |
| 46 | export Export an identity as a SafeBag |
| 47 | import Import an identity from a SafeBag |
| 48 | unlock-tpm Unlock the TPM |
| 49 | |
| 50 | Try 'ndnsec COMMAND --help' for more information on each command.)STR"; |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 51 | |
Yingdi Yu | 05842f2 | 2014-04-15 19:21:56 -0700 | [diff] [blame] | 52 | int |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 53 | main(int argc, char* argv[]) |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 54 | { |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 55 | if (argc < 2) { |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 56 | std::cerr << NDNSEC_HELP_TEXT << std::endl; |
| 57 | return 2; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | using namespace ndn::ndnsec; |
| 61 | |
| 62 | std::string command(argv[1]); |
| 63 | try { |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 64 | if (command == "help") { std::cout << NDNSEC_HELP_TEXT << std::endl; } |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 65 | else if (command == "version") { std::cout << NDN_CXX_VERSION_BUILD_STRING << std::endl; } |
| 66 | else if (command == "list") { return ndnsec_list(argc - 1, argv + 1); } |
| 67 | else if (command == "get-default") { return ndnsec_get_default(argc - 1, argv + 1); } |
| 68 | else if (command == "set-default") { return ndnsec_set_default(argc - 1, argv + 1); } |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 69 | else if (command == "delete") { return ndnsec_delete(argc - 1, argv + 1); } |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 70 | else if (command == "key-gen") { return ndnsec_key_gen(argc - 1, argv + 1); } |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 71 | else if (command == "sign-req") { return ndnsec_sign_req(argc - 1, argv + 1); } |
| 72 | else if (command == "cert-gen") { return ndnsec_cert_gen(argc - 1, argv + 1); } |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 73 | else if (command == "cert-dump") { return ndnsec_cert_dump(argc - 1, argv + 1); } |
| 74 | else if (command == "cert-install") { return ndnsec_cert_install(argc - 1, argv + 1); } |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 75 | else if (command == "export") { return ndnsec_export(argc - 1, argv + 1); } |
| 76 | else if (command == "import") { return ndnsec_import(argc - 1, argv + 1); } |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 77 | else if (command == "unlock-tpm") { return ndnsec_unlock_tpm(argc - 1, argv + 1); } |
| 78 | else { |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 79 | std::cerr << "ERROR: Unknown command '" << command << "'\n" |
| 80 | << "\n" |
| 81 | << NDNSEC_HELP_TEXT << std::endl; |
| 82 | return 2; |
Yingdi Yu | f8fc8de | 2014-02-25 15:45:39 -0800 | [diff] [blame] | 83 | } |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 84 | } |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 85 | catch (const std::exception& e) { |
Davide Pesavento | fa995ac | 2019-03-27 23:44:46 -0400 | [diff] [blame] | 86 | std::cerr << "ERROR: " << e.what() << std::endl; |
| 87 | NDN_LOG_ERROR(boost::diagnostic_information(e)); |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 88 | return 1; |
| 89 | } |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 90 | |
| 91 | return 0; |
| 92 | } |