blob: a11459d01a5547d1979e04c010f8a06db17b24f2 [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 Pesaventob310efb2019-04-11 22:10:24 -04003 * Copyright (c) 2013-2019 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 Pesaventob310efb2019-04-11 22:10:24 -040041 BOOST_SCOPE_EXIT(&password) {
42 OPENSSL_cleanse(&password.front(), password.size());
43 } BOOST_SCOPE_EXIT_END
44
45 po::options_description description(
46 "Usage: ndnsec export [-h] [-o FILE] [-P PASSPHRASE] [-i] IDENTITY\n"
47 "\n"
48 "Options");
Yingdi Yub61f5402014-02-26 17:46:11 -080049 description.add_options()
Davide Pesaventob310efb2019-04-11 22:10:24 -040050 ("help,h", "produce help message")
51 ("identity,i", po::value<Name>(&identityName), "name of the identity to export")
52 ("output,o", po::value<std::string>(&output)->default_value("-"),
53 "output file, '-' for stdout (the default)")
54 ("password,P", po::value<std::string>(&password),
55 "passphrase, will prompt if empty or not specified")
Yingdi Yu8d7468f2014-02-21 14:49:45 -080056 ;
57
58 po::positional_options_description p;
59 p.add("identity", 1);
60
61 po::variables_map vm;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070062 try {
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080063 po::store(po::command_line_parser(argc, argv).options(description).positional(p).run(), vm);
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070064 po::notify(vm);
65 }
66 catch (const std::exception& e) {
Davide Pesaventob310efb2019-04-11 22:10:24 -040067 std::cerr << "ERROR: " << e.what() << "\n\n"
68 << description << std::endl;
69 return 2;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070070 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -080071
Davide Pesaventob310efb2019-04-11 22:10:24 -040072 if (vm.count("help") > 0) {
73 std::cout << description << std::endl;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070074 return 0;
75 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -080076
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070077 if (vm.count("identity") == 0) {
Davide Pesaventob310efb2019-04-11 22:10:24 -040078 std::cerr << "ERROR: you must specify an identity" << std::endl;
79 return 2;
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070080 }
Yingdi Yu64c3fb42014-02-26 17:30:04 -080081
Davide Pesaventob310efb2019-04-11 22:10:24 -040082 security::v2::KeyChain keyChain;
Yingdi Yu8d7468f2014-02-21 14:49:45 -080083
Davide Pesaventob310efb2019-04-11 22:10:24 -040084 auto id = keyChain.getPib().getIdentity(identityName);
85
86 if (password.empty()) {
87 int count = 3;
88 while (!getPassword(password, "Passphrase for the private key: ")) {
89 count--;
90 if (count <= 0) {
91 std::cerr << "ERROR: invalid password" << std::endl;
92 return 1;
Alexander Afanasyev35109a12017-01-04 15:39:06 -080093 }
94 }
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070095 }
Davide Pesaventob310efb2019-04-11 22:10:24 -040096
97 // TODO: export all certificates, selected key pair, selected certificate
98 auto safeBag = keyChain.exportSafeBag(id.getDefaultKey().getDefaultCertificate(),
99 password.data(), password.size());
100
101 if (output == "-")
102 io::save(*safeBag, std::cout);
103 else
104 io::save(*safeBag, output);
105
106 return 0;
Yingdi Yu8d7468f2014-02-21 14:49:45 -0800107}
108
Alexander Afanasyev82c359c2017-01-04 14:48:07 -0800109} // namespace ndnsec
110} // namespace ndn