blob: 9c8e64e126adc40dcef85af4a1ef3b04d6e8f0a7 [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"
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 Pesaventof3089c32021-05-25 21:28:21 -040028#include <boost/filesystem/path.hpp>
Davide Pesavento25d4f1c2020-04-29 23:31:04 -040029#include <iostream>
Alexander Afanasyev35109a12017-01-04 15:39:06 -080030
31NDN_LOG_INIT(ndnsec);
32
Davide Pesaventofa995ac2019-03-27 23:44:46 -040033const char NDNSEC_HELP_TEXT[] = R"STR(Usage: ndnsec COMMAND [OPTION]...
34
35Available commands:
36 help Print this help text
37 version Print program version
38 list List all known identities/keys/certificates
39 get-default Show the default identity/key/certificate
40 set-default Change the default identity/key/certificate
41 delete Delete an identity/key/certificate
42 key-gen Generate a key for an identity
43 sign-req Generate a certificate signing request
44 cert-gen Create a certificate for an identity
45 cert-dump Export a certificate
46 cert-install Import a certificate from a file
47 export Export an identity as a SafeBag
48 import Import an identity from a SafeBag
49 unlock-tpm Unlock the TPM
50
51Try 'ndnsec COMMAND --help' for more information on each command.)STR";
Yingdi Yu8d7468f2014-02-21 14:49:45 -080052
Yingdi Yu05842f22014-04-15 19:21:56 -070053int
Davide Pesaventofa995ac2019-03-27 23:44:46 -040054main(int argc, char* argv[])
Yingdi Yu8d7468f2014-02-21 14:49:45 -080055{
Davide Pesaventof3089c32021-05-25 21:28:21 -040056 boost::filesystem::path p(argv[0]);
57 std::string basename(p.filename().string());
58 std::string command;
59 if (basename.rfind("ndnsec-", 0) == 0) {
60 command = basename.substr(std::strlen("ndnsec-"));
61 }
62 else if (argc >= 2) {
63 command = argv[1];
64 argc--;
65 argv++;
66 }
67 else {
Davide Pesaventofa995ac2019-03-27 23:44:46 -040068 std::cerr << NDNSEC_HELP_TEXT << std::endl;
69 return 2;
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080070 }
Davide Pesaventof3089c32021-05-25 21:28:21 -040071 NDN_LOG_TRACE("Command: " << command);
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080072
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080073 try {
Davide Pesaventof3089c32021-05-25 21:28:21 -040074 using namespace ndn::ndnsec;
Davide Pesaventofa995ac2019-03-27 23:44:46 -040075 if (command == "help") { std::cout << NDNSEC_HELP_TEXT << std::endl; }
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080076 else if (command == "version") { std::cout << NDN_CXX_VERSION_BUILD_STRING << std::endl; }
Davide Pesaventof3089c32021-05-25 21:28:21 -040077 else if (command == "list") { return ndnsec_list(argc, argv); }
78 else if (command == "get-default") { return ndnsec_get_default(argc, argv); }
79 else if (command == "set-default") { return ndnsec_set_default(argc, argv); }
80 else if (command == "delete") { return ndnsec_delete(argc, argv); }
81 else if (command == "key-gen") { return ndnsec_key_gen(argc, argv); }
82 else if (command == "sign-req") { return ndnsec_sign_req(argc, argv); }
83 else if (command == "cert-gen") { return ndnsec_cert_gen(argc, argv); }
84 else if (command == "cert-dump") { return ndnsec_cert_dump(argc, argv); }
85 else if (command == "cert-install") { return ndnsec_cert_install(argc, argv); }
86 else if (command == "export") { return ndnsec_export(argc, argv); }
87 else if (command == "import") { return ndnsec_import(argc, argv); }
88 else if (command == "unlock-tpm") { return ndnsec_unlock_tpm(argc, argv); }
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080089 else {
Davide Pesaventofa995ac2019-03-27 23:44:46 -040090 std::cerr << "ERROR: Unknown command '" << command << "'\n"
91 << "\n"
92 << NDNSEC_HELP_TEXT << std::endl;
93 return 2;
Yingdi Yuf8fc8de2014-02-25 15:45:39 -080094 }
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080095 }
Alexander Afanasyev35109a12017-01-04 15:39:06 -080096 catch (const std::exception& e) {
Davide Pesaventofa995ac2019-03-27 23:44:46 -040097 std::cerr << "ERROR: " << e.what() << std::endl;
98 NDN_LOG_ERROR(boost::diagnostic_information(e));
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080099 return 1;
100 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -0800101
102 return 0;
103}