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_set_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 | |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 33 | Name name; |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 34 | bool wantSetDefaultKey = false; |
| 35 | bool wantSetDefaultCert = false; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 36 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 37 | po::options_description description( |
| 38 | "Usage: ndnsec set-default [-h] [-k|-c] [-n] NAME\n" |
| 39 | "\n" |
| 40 | "Options"); |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 41 | description.add_options() |
| 42 | ("help,h", "produce help message") |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 43 | ("name,n", po::value<Name>(&name), "the identity/key/certificate name to set") |
| 44 | ("default-key,k", po::bool_switch(&wantSetDefaultKey), "set default key of the identity") |
| 45 | ("default-cert,c", po::bool_switch(&wantSetDefaultCert), "set default certificate of the key") |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 46 | ; |
| 47 | |
| 48 | po::positional_options_description p; |
| 49 | p.add("name", 1); |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 50 | |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 51 | po::variables_map vm; |
| 52 | try { |
| 53 | po::store(po::command_line_parser(argc, argv).options(description).positional(p).run(), vm); |
| 54 | po::notify(vm); |
| 55 | } |
| 56 | catch (const std::exception& e) { |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 57 | std::cerr << "ERROR: " << e.what() << "\n\n" |
| 58 | << description << std::endl; |
| 59 | return 2; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 60 | } |
| 61 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 62 | if (vm.count("help") > 0) { |
| 63 | std::cout << description << std::endl; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 64 | return 0; |
| 65 | } |
| 66 | |
| 67 | if (vm.count("name") == 0) { |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 68 | std::cerr << "ERROR: you must specify a name" << std::endl; |
| 69 | return 2; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 70 | } |
| 71 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 72 | if (wantSetDefaultKey && wantSetDefaultCert) { |
| 73 | std::cerr << "ERROR: cannot specify both '--default-key' and '--default-cert'" << std::endl; |
| 74 | return 2; |
| 75 | } |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 76 | |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 77 | security::v2::KeyChain keyChain; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 78 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 79 | if (wantSetDefaultKey) { |
| 80 | auto identity = keyChain.getPib().getIdentity(security::v2::extractIdentityFromKeyName(name)); |
| 81 | auto key = identity.getKey(name); |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 82 | keyChain.setDefaultKey(identity, key); |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 83 | } |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 84 | else if (wantSetDefaultCert) { |
| 85 | auto identity = keyChain.getPib().getIdentity(security::v2::extractIdentityFromCertName(name)); |
| 86 | auto key = identity.getKey(security::v2::extractKeyNameFromCertName(name)); |
| 87 | auto cert = key.getCertificate(name); |
Alexander Afanasyev | 35109a1 | 2017-01-04 15:39:06 -0800 | [diff] [blame] | 88 | keyChain.setDefaultCertificate(key, cert); |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 89 | } |
| 90 | else { |
| 91 | auto identity = keyChain.getPib().getIdentity(name); |
| 92 | keyChain.setDefaultIdentity(identity); |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 93 | } |
| 94 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 95 | return 0; |
Alexander Afanasyev | 82c359c | 2017-01-04 14:48:07 -0800 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | } // namespace ndnsec |
| 99 | } // namespace ndn |