blob: 6d3c260008c5eb467b611b6759beda06dbf2f080 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi476200b2017-10-05 12:16:27 +00002/*
Davide Pesavento78338c52020-04-20 23:00:02 -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"
Alexander Afanasyevd7db8bf2015-01-04 15:31:02 -080023#include "util.hpp"
Yingdi Yu8d7468f2014-02-21 14:49:45 -080024
Davide Pesaventob310efb2019-04-11 22:10:24 -040025#include "ndn-cxx/security/impl/openssl.hpp"
26
27#include <boost/scope_exit.hpp>
28
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080029namespace ndn {
30namespace ndnsec {
31
Yingdi Yub61f5402014-02-26 17:46:11 -080032int
Yingdi Yu8d7468f2014-02-21 14:49:45 -080033ndnsec_export(int argc, char** argv)
34{
Yingdi Yu8d7468f2014-02-21 14:49:45 -080035 namespace po = boost::program_options;
36
Alexander Afanasyev35109a12017-01-04 15:39:06 -080037 Name identityName;
Yingdi Yu8d7468f2014-02-21 14:49:45 -080038 std::string output;
Davide Pesaventob310efb2019-04-11 22:10:24 -040039 std::string password;
Yingdi Yu8d7468f2014-02-21 14:49:45 -080040
Davide Pesavento78338c52020-04-20 23:00:02 -040041 // ASan reports a stack-use-after-scope on armhf when
42 // BOOST_SCOPE_EXIT_ALL is used in place of BOOST_SCOPE_EXIT
Davide Pesaventob310efb2019-04-11 22:10:24 -040043 BOOST_SCOPE_EXIT(&password) {
44 OPENSSL_cleanse(&password.front(), password.size());
45 } BOOST_SCOPE_EXIT_END
46
47 po::options_description description(
48 "Usage: ndnsec export [-h] [-o FILE] [-P PASSPHRASE] [-i] IDENTITY\n"
49 "\n"
50 "Options");
Yingdi Yub61f5402014-02-26 17:46:11 -080051 description.add_options()
Davide Pesaventob310efb2019-04-11 22:10:24 -040052 ("help,h", "produce help message")
53 ("identity,i", po::value<Name>(&identityName), "name of the identity to export")
54 ("output,o", po::value<std::string>(&output)->default_value("-"),
55 "output file, '-' for stdout (the default)")
56 ("password,P", po::value<std::string>(&password),
57 "passphrase, will prompt if empty or not specified")
Yingdi Yu8d7468f2014-02-21 14:49:45 -080058 ;
59
60 po::positional_options_description p;
61 p.add("identity", 1);
62
63 po::variables_map vm;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070064 try {
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080065 po::store(po::command_line_parser(argc, argv).options(description).positional(p).run(), vm);
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070066 po::notify(vm);
67 }
68 catch (const std::exception& e) {
Davide Pesaventob310efb2019-04-11 22:10:24 -040069 std::cerr << "ERROR: " << e.what() << "\n\n"
70 << description << std::endl;
71 return 2;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070072 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -080073
Davide Pesaventob310efb2019-04-11 22:10:24 -040074 if (vm.count("help") > 0) {
75 std::cout << description << std::endl;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070076 return 0;
77 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -080078
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070079 if (vm.count("identity") == 0) {
Davide Pesaventob310efb2019-04-11 22:10:24 -040080 std::cerr << "ERROR: you must specify an identity" << std::endl;
81 return 2;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070082 }
Yingdi Yu64c3fb42014-02-26 17:30:04 -080083
Davide Pesaventob310efb2019-04-11 22:10:24 -040084 security::v2::KeyChain keyChain;
Yingdi Yu8d7468f2014-02-21 14:49:45 -080085
Davide Pesaventob310efb2019-04-11 22:10:24 -040086 auto id = keyChain.getPib().getIdentity(identityName);
87
88 if (password.empty()) {
89 int count = 3;
90 while (!getPassword(password, "Passphrase for the private key: ")) {
91 count--;
92 if (count <= 0) {
93 std::cerr << "ERROR: invalid password" << std::endl;
94 return 1;
Alexander Afanasyev35109a12017-01-04 15:39:06 -080095 }
96 }
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070097 }
Davide Pesaventob310efb2019-04-11 22:10:24 -040098
99 // TODO: export all certificates, selected key pair, selected certificate
100 auto safeBag = keyChain.exportSafeBag(id.getDefaultKey().getDefaultCertificate(),
101 password.data(), password.size());
102
103 if (output == "-")
104 io::save(*safeBag, std::cout);
105 else
106 io::save(*safeBag, output);
107
108 return 0;
Yingdi Yu8d7468f2014-02-21 14:49:45 -0800109}
110
Alexander Afanasyev82c359c2017-01-04 14:48:07 -0800111} // namespace ndnsec
112} // namespace ndn