blob: c0be01bc00b01ba55d6fe1db51b52e20925d6c7b [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 Pesavento25d4f1c2020-04-29 23:31:04 -04003 * Copyright (c) 2013-2020 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"
25#include "ndn-cxx/version.hpp"
Alexander Afanasyevd7db8bf2015-01-04 15:31:02 -080026
Davide Pesaventofa995ac2019-03-27 23:44:46 -040027#include <boost/exception/diagnostic_information.hpp>
Davide Pesavento25d4f1c2020-04-29 23:31:04 -040028#include <iostream>
Alexander Afanasyev35109a12017-01-04 15:39:06 -080029
30NDN_LOG_INIT(ndnsec);
31
Davide Pesaventofa995ac2019-03-27 23:44:46 -040032const char NDNSEC_HELP_TEXT[] = R"STR(Usage: ndnsec COMMAND [OPTION]...
33
34Available 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
50Try 'ndnsec COMMAND --help' for more information on each command.)STR";
Yingdi Yu8d7468f2014-02-21 14:49:45 -080051
Yingdi Yu05842f22014-04-15 19:21:56 -070052int
Davide Pesaventofa995ac2019-03-27 23:44:46 -040053main(int argc, char* argv[])
Yingdi Yu8d7468f2014-02-21 14:49:45 -080054{
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080055 if (argc < 2) {
Davide Pesaventofa995ac2019-03-27 23:44:46 -040056 std::cerr << NDNSEC_HELP_TEXT << std::endl;
57 return 2;
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080058 }
59
60 using namespace ndn::ndnsec;
61
62 std::string command(argv[1]);
63 try {
Davide Pesaventofa995ac2019-03-27 23:44:46 -040064 if (command == "help") { std::cout << NDNSEC_HELP_TEXT << std::endl; }
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080065 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 Pesaventofa995ac2019-03-27 23:44:46 -040069 else if (command == "delete") { return ndnsec_delete(argc - 1, argv + 1); }
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080070 else if (command == "key-gen") { return ndnsec_key_gen(argc - 1, argv + 1); }
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080071 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 Afanasyev82c359c2017-01-04 14:48:07 -080073 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 Afanasyev82c359c2017-01-04 14:48:07 -080075 else if (command == "export") { return ndnsec_export(argc - 1, argv + 1); }
76 else if (command == "import") { return ndnsec_import(argc - 1, argv + 1); }
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080077 else if (command == "unlock-tpm") { return ndnsec_unlock_tpm(argc - 1, argv + 1); }
78 else {
Davide Pesaventofa995ac2019-03-27 23:44:46 -040079 std::cerr << "ERROR: Unknown command '" << command << "'\n"
80 << "\n"
81 << NDNSEC_HELP_TEXT << std::endl;
82 return 2;
Yingdi Yuf8fc8de2014-02-25 15:45:39 -080083 }
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080084 }
Alexander Afanasyev35109a12017-01-04 15:39:06 -080085 catch (const std::exception& e) {
Davide Pesaventofa995ac2019-03-27 23:44:46 -040086 std::cerr << "ERROR: " << e.what() << std::endl;
87 NDN_LOG_ERROR(boost::diagnostic_information(e));
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080088 return 1;
89 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -080090
91 return 0;
92}