Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 478206e | 2017-10-15 00:22:35 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | 5afbb0b | 2018-01-01 17:24:18 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2018 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" |
Alexander Afanasyev | d7db8bf | 2015-01-04 15:31:02 -0800 | [diff] [blame] | 23 | #include "util.hpp" |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 24 | |
Davide Pesavento | 6d43393 | 2018-04-17 18:35:00 -0400 | [diff] [blame] | 25 | #if BOOST_VERSION < 106700 |
Davide Pesavento | 5afbb0b | 2018-01-01 17:24:18 -0500 | [diff] [blame] | 26 | #include <boost/date_time/posix_time/posix_time_duration.hpp> |
Davide Pesavento | 6d43393 | 2018-04-17 18:35:00 -0400 | [diff] [blame] | 27 | #endif // BOOST_VERSION < 106700 |
Davide Pesavento | 5afbb0b | 2018-01-01 17:24:18 -0500 | [diff] [blame] | 28 | |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 29 | namespace ndn { |
| 30 | namespace ndnsec { |
| 31 | |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 32 | int |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 33 | ndnsec_cert_dump(int argc, char** argv) |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 34 | { |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 35 | namespace po = boost::program_options; |
| 36 | |
| 37 | std::string name; |
| 38 | bool isKeyName = false; |
| 39 | bool isIdentityName = false; |
| 40 | bool isCertName = true; |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 41 | // bool isFileName = false; |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 42 | bool isPretty = false; |
| 43 | bool isStdOut = true; |
| 44 | bool isRepoOut = false; |
Yingdi Yu | ba8604d | 2014-10-13 19:03:12 -0700 | [diff] [blame] | 45 | std::string repoHost; |
| 46 | std::string repoPort; |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 47 | // bool isDnsOut = false; |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 48 | |
Yingdi Yu | ba8604d | 2014-10-13 19:03:12 -0700 | [diff] [blame] | 49 | po::options_description description("General Usage\n" |
| 50 | " ndnsec cert-dump [-h] [-p] [-d] [-r [-H repo-host] " |
| 51 | "[-P repo-port] ] [-i|k|f] name\n" |
| 52 | "General options"); |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 53 | description.add_options() |
Yingdi Yu | ba8604d | 2014-10-13 19:03:12 -0700 | [diff] [blame] | 54 | ("help,h", "produce help message") |
| 55 | ("pretty,p", "display certificate in human readable format") |
| 56 | ("identity,i", "treat the name parameter as identity name (e.g., /ndn/edu/ucla/alice") |
| 57 | ("key,k", "treat the name parameter as key name " |
| 58 | "(e.g., /ndn/edu/ucla/alice/ksk-123456789)") |
| 59 | ("file,f", "treat the name parameter as file name with base64 encoded certificate, " |
| 60 | "- for stdin") |
| 61 | ("repo-output,r", "publish the certificate to the repo-ng") |
| 62 | ("repo-host,H", po::value<std::string>(&repoHost)->default_value("localhost"), |
| 63 | "the repo host if repo-output is specified") |
| 64 | ("repo-port,P", po::value<std::string>(&repoPort)->default_value("7376"), |
| 65 | "the repo port if repo-output is specified") |
| 66 | // ("dns-output,d", "published the certificate to NDNS") |
| 67 | ("name,n", po::value<std::string>(&name), |
| 68 | "unless overridden with --identity or --key parameter, the certificate name, " |
| 69 | "for example, /ndn/edu/ucla/KEY/cs/alice/ksk-1234567890" |
| 70 | "/ID-CERT/%FD%FF%FF%FF%FF%FF%FF%FF") |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 71 | ; |
| 72 | |
| 73 | po::positional_options_description p; |
| 74 | p.add("name", 1); |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 75 | |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 76 | po::variables_map vm; |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 77 | try { |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 78 | po::store(po::command_line_parser(argc, argv).options(description).positional(p).run(), vm); |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 79 | po::notify(vm); |
| 80 | } |
| 81 | catch (const std::exception& e) { |
| 82 | std::cerr << "ERROR: " << e.what() << std::endl; |
| 83 | std::cerr << description << std::endl; |
| 84 | return 1; |
| 85 | } |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 86 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 87 | if (vm.count("help") != 0) { |
| 88 | std::cerr << description << std::endl; |
| 89 | return 0; |
| 90 | } |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 91 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 92 | if (vm.count("name") == 0) { |
| 93 | std::cerr << "identity_name must be specified" << std::endl; |
| 94 | std::cerr << description << std::endl; |
| 95 | return 1; |
| 96 | } |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 97 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 98 | if (vm.count("key") != 0) { |
| 99 | isCertName = false; |
| 100 | isKeyName = true; |
| 101 | } |
| 102 | else if (vm.count("identity") != 0) { |
| 103 | isCertName = false; |
| 104 | isIdentityName = true; |
| 105 | } |
| 106 | else if (vm.count("file") != 0) { |
| 107 | isCertName = false; |
| 108 | // isFileName = true; |
| 109 | } |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 110 | |
| 111 | if (vm.count("pretty") != 0) |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 112 | isPretty = true; |
| 113 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 114 | if (vm.count("repo-output") != 0) { |
| 115 | isRepoOut = true; |
| 116 | isStdOut = false; |
| 117 | } |
| 118 | else if (vm.count("dns-output") != 0) { |
| 119 | // isDnsOut = true; |
| 120 | isStdOut = false; |
| 121 | std::cerr << "Error: DNS output is not supported yet!" << std::endl; |
| 122 | return 1; |
| 123 | } |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 124 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 125 | if (isPretty && !isStdOut) { |
| 126 | std::cerr << "Error: pretty option can only be specified when other " |
| 127 | << "output option is specified" << std::endl; |
| 128 | return 1; |
| 129 | } |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 130 | |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 131 | security::v2::Certificate certificate; |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 132 | |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 133 | security::v2::KeyChain keyChain; |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 134 | |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 135 | try { |
| 136 | if (isIdentityName || isKeyName || isCertName) { |
| 137 | if (isIdentityName) { |
| 138 | certificate = keyChain.getPib() |
| 139 | .getIdentity(name) |
| 140 | .getDefaultKey() |
| 141 | .getDefaultCertificate(); |
| 142 | } |
| 143 | else if (isKeyName) { |
| 144 | certificate = keyChain.getPib() |
| 145 | .getIdentity(security::v2::extractIdentityFromKeyName(name)) |
| 146 | .getKey(name) |
| 147 | .getDefaultCertificate(); |
| 148 | } |
| 149 | else { |
| 150 | certificate = keyChain.getPib() |
| 151 | .getIdentity(security::v2::extractIdentityFromCertName(name)) |
| 152 | .getKey(security::v2::extractKeyNameFromCertName(name)) |
Junxiao Shi | 478206e | 2017-10-15 00:22:35 +0000 | [diff] [blame] | 153 | .getCertificate(name); |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 154 | } |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 155 | } |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 156 | else { |
| 157 | certificate = loadCertificate(name); |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 158 | } |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 159 | } |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 160 | catch (const security::Pib::Error& e) { |
| 161 | std::cerr << "ERROR: " << e.what() << std::endl; |
| 162 | return 1; |
| 163 | } |
| 164 | catch (const CannotLoadCertificate&) { |
| 165 | std::cerr << "Cannot load certificate from `" << name << "`" << std::endl; |
| 166 | return 1; |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 167 | } |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 168 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 169 | if (isPretty) { |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 170 | std::cout << certificate << std::endl; |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 171 | } |
| 172 | else { |
| 173 | if (isStdOut) { |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 174 | io::save(certificate, std::cout); |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 175 | return 0; |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 176 | } |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 177 | if (isRepoOut) { |
Davide Pesavento | 6d43393 | 2018-04-17 18:35:00 -0400 | [diff] [blame] | 178 | boost::asio::ip::tcp::iostream requestStream; |
| 179 | #if BOOST_VERSION >= 106700 |
| 180 | requestStream.expires_after(std::chrono::seconds(3)); |
| 181 | #else |
Davide Pesavento | 5afbb0b | 2018-01-01 17:24:18 -0500 | [diff] [blame] | 182 | requestStream.expires_from_now(boost::posix_time::seconds(3)); |
Davide Pesavento | 6d43393 | 2018-04-17 18:35:00 -0400 | [diff] [blame] | 183 | #endif // BOOST_VERSION >= 106700 |
Davide Pesavento | 5afbb0b | 2018-01-01 17:24:18 -0500 | [diff] [blame] | 184 | requestStream.connect(repoHost, repoPort); |
| 185 | if (!requestStream) { |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 186 | std::cerr << "fail to open the stream!" << std::endl; |
| 187 | return 1; |
| 188 | } |
Davide Pesavento | 5afbb0b | 2018-01-01 17:24:18 -0500 | [diff] [blame] | 189 | requestStream.write(reinterpret_cast<const char*>(certificate.wireEncode().wire()), |
| 190 | certificate.wireEncode().size()); |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 191 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 192 | return 0; |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 193 | } |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 194 | } |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 195 | return 0; |
| 196 | } |
| 197 | |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 198 | } // namespace ndnsec |
| 199 | } // namespace ndn |