Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013-2019 Regents of the University of California. |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 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. |
| 20 | */ |
| 21 | |
| 22 | #include "ndnsec.hpp" |
| 23 | #include "util.hpp" |
| 24 | |
| 25 | namespace ndn { |
| 26 | namespace ndnsec { |
| 27 | |
| 28 | int |
| 29 | ndnsec_get_default(int argc, char** argv) |
| 30 | { |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 31 | namespace po = boost::program_options; |
| 32 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 33 | bool wantDefaultKey = false; |
| 34 | bool wantDefaultCert = false; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 35 | bool isQuiet = false; |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 36 | Name identityName; |
| 37 | Name keyName; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 38 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 39 | po::options_description description( |
| 40 | "Usage: ndnsec get-default [-h] [-k|-c] [-i ID|-K KEY] [-q]\n" |
| 41 | "\n" |
| 42 | "Options"); |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 43 | description.add_options() |
| 44 | ("help,h", "produce help message") |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 45 | ("default-key,k", po::bool_switch(&wantDefaultKey), "show default key, instead of identity") |
| 46 | ("default-cert,c", po::bool_switch(&wantDefaultCert), "show default certificate, instead of identity") |
| 47 | ("identity,i", po::value<Name>(&identityName), "target identity") |
| 48 | ("key,K", po::value<Name>(&keyName), "target key") |
| 49 | ("quiet,q", po::bool_switch(&isQuiet), "do not print trailing newline") |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 50 | ; |
| 51 | |
| 52 | po::variables_map vm; |
| 53 | try { |
| 54 | po::store(po::parse_command_line(argc, argv, description), vm); |
| 55 | po::notify(vm); |
| 56 | } |
| 57 | catch (const std::exception& e) { |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 58 | std::cerr << "ERROR: " << e.what() << "\n\n" |
| 59 | << description << std::endl; |
| 60 | return 2; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 61 | } |
| 62 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 63 | if (vm.count("help") > 0) { |
| 64 | std::cout << description << std::endl; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 65 | return 0; |
| 66 | } |
| 67 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 68 | if (wantDefaultKey && wantDefaultCert) { |
| 69 | std::cerr << "ERROR: cannot specify both '--default-key' and '--default-cert'" << std::endl; |
| 70 | return 2; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 71 | } |
| 72 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 73 | if (vm.count("identity") && vm.count("key")) { |
| 74 | std::cerr << "ERROR: cannot specify both '--identity' and '--key'" << std::endl; |
| 75 | return 2; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 76 | } |
| 77 | |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 78 | security::v2::KeyChain keyChain; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 79 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 80 | if (vm.count("key") > 0) { |
| 81 | if (wantDefaultCert) { |
| 82 | auto cert = keyChain.getPib() |
| 83 | .getIdentity(security::v2::extractIdentityFromKeyName(keyName)) |
| 84 | .getKey(keyName) |
| 85 | .getDefaultCertificate(); |
| 86 | std::cout << cert.getName(); |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 87 | if (!isQuiet) { |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 88 | std::cout << std::endl; |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 89 | } |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 90 | return 0; |
| 91 | } |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 92 | return 2; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 93 | } |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 94 | else if (vm.count("identity") > 0) { |
| 95 | auto key = keyChain.getPib() |
| 96 | .getIdentity(identityName) |
| 97 | .getDefaultKey(); |
| 98 | if (wantDefaultKey) { |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 99 | std::cout << key.getName(); |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 100 | if (!isQuiet) |
| 101 | std::cout << std::endl; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 102 | return 0; |
| 103 | } |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 104 | if (wantDefaultCert) { |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 105 | std::cout << key.getDefaultCertificate().getName(); |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 106 | if (!isQuiet) |
| 107 | std::cout << std::endl; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 108 | return 0; |
| 109 | } |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 110 | return 2; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 111 | } |
| 112 | else { |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 113 | auto identity = keyChain.getPib() |
| 114 | .getDefaultIdentity(); |
| 115 | if (wantDefaultKey) { |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 116 | std::cout << identity.getDefaultKey().getName(); |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 117 | } |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 118 | else if (wantDefaultCert) { |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 119 | std::cout << identity.getDefaultKey().getDefaultCertificate().getName(); |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 120 | } |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 121 | else { |
| 122 | std::cout << identity.getName(); |
| 123 | } |
| 124 | if (!isQuiet) |
| 125 | std::cout << std::endl; |
| 126 | return 0; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 127 | } |
| 128 | } |
| 129 | |
| 130 | } // namespace ndnsec |
| 131 | } // namespace ndn |