blob: a30875f8b2972d303e036352a2f95d72d6d22bb5 [file] [log] [blame]
Jiewen Tan870b29b2014-11-17 19:09:49 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Yumin Xia2c509c22017-02-09 14:37:36 -08002/*
3 * Copyright (c) 2014-2017, Regents of the University of California.
Jiewen Tan870b29b2014-11-17 19:09:49 -08004 *
5 * This file is part of NDNS (Named Data Networking Domain Name Service).
6 * See AUTHORS.md for complete list of NDNS authors and contributors.
7 *
8 * NDNS is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
11 *
12 * NDNS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * NDNS, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "mgmt/management-tool.hpp"
21#include "ndns-label.hpp"
22#include "logger.hpp"
23#include "config.hpp"
24
25#include <boost/program_options.hpp>
26#include <boost/filesystem.hpp>
27#include <string>
28
Yumin Xia99c821a2017-04-07 11:01:08 -070029NDNS_LOG_INIT("NdnsCreateZone")
30
Jiewen Tan870b29b2014-11-17 19:09:49 -080031int
32main(int argc, char* argv[])
33{
34 using std::string;
35 using namespace ndn;
36 ndn::ndns::log::init();
37 int cacheTtlInt = -1;
38 int certTtlInt = -1;
39 string zoneStr;
40 string parentStr;
41 string dskStr;
42 string kskStr;
Yumin Xia2c509c22017-02-09 14:37:36 -080043 string dkeyStr;
Jiewen Tan870b29b2014-11-17 19:09:49 -080044 string db;
45 try {
46 namespace po = boost::program_options;
47 po::variables_map vm;
48
49 po::options_description options("Generic Options");
50 options.add_options()
51 ("help,h", "print help message")
52 ("db,b", po::value<std::string>(&db), "Set the path of NDNS server database. "
53 "Default: " DEFAULT_DATABASE_PATH "/ndns.db")
54 ;
55
56 po::options_description config("Zone Options");
57 config.add_options()
58 ("cacheTtl,a", po::value<int>(&cacheTtlInt), "Set ttl of records of the zone and its "
Yumin Xia2c509c22017-02-09 14:37:36 -080059 "DSK CERT. Default: 3600 seconds")
Jiewen Tan870b29b2014-11-17 19:09:49 -080060 ("certTtl,e", po::value<int>(&certTtlInt), "Set ttl of DSK and KSK certificates. "
61 "Default: 365 days")
62 ("parent,p", po::value<std::string>(&parentStr), "Set the parent zone of the zone to be "
63 "created. Default: the zone's direct parent")
64 ("dsk,d", po::value<std::string>(&dskStr), "Set the name of DSK's certificate, "
65 "Default: generate new key and certificate")
66 ("ksk,k", po::value<std::string>(&kskStr), "Set the name of KSK's certificate, "
67 "Default: generate new key and certificate")
Yumin Xia2c509c22017-02-09 14:37:36 -080068 ("dkey,g", po::value<std::string>(&dkeyStr), "Set the name of DKEY's certificate, "
69 "Default: generate new key and certificate")
Jiewen Tan870b29b2014-11-17 19:09:49 -080070 ;
71
72 options.add(config);
73
74 po::options_description hidden("Hidden Options");
75 hidden.add_options()
76 ("zone", po::value<string>(&zoneStr), "name of the zone to be created")
77 ;
78 po::positional_options_description postion;
79 postion.add("zone", 1);
80
81 po::options_description cmdline_options;
82 cmdline_options.add(options).add(hidden);
83
84 // po::options_description config_file_options;
85 // config_file_options.add(config).add(hidden);
86
87 po::parsed_options parsed =
88 po::command_line_parser(argc, argv).options(cmdline_options).positional(postion).run();
89
90 po::store(parsed, vm);
91 po::notify(vm);
92
93 if (vm.count("help")) {
94 std::cout << "Usage: ndns-create-zone [-b db] zone [-a cacheTtl] [-e certTtl] [-p parent] "
Yumin Xia2c509c22017-02-09 14:37:36 -080095 "[-d dskCert] [-k kskCert] [-g dkeyCert]" << std::endl;
Jiewen Tan870b29b2014-11-17 19:09:49 -080096 std::cout << options << std::endl;
97 return 0;
98 }
99
100 if (vm.count("zone") == 0) {
101 std::cerr << "Error: zone must be specified" << std::endl;
102 return 1;
103 }
104 }
105 catch (const std::exception& ex) {
106 std::cerr << "Parameter Error: " << ex.what() << std::endl;
107 return 1;
108 }
109
110 try {
111 Name zone(zoneStr);
112 Name parent(parentStr);
113 if (!zone.empty() && parentStr.empty())
114 parent = zone.getPrefix(-1);
115
116 Name ksk(kskStr);
117 Name dsk(dskStr);
Yumin Xia2c509c22017-02-09 14:37:36 -0800118 Name dkey(dkeyStr);
Jiewen Tan870b29b2014-11-17 19:09:49 -0800119
120 time::seconds cacheTtl;
121 time::seconds certTtl;
122 if (cacheTtlInt == -1)
123 cacheTtl = ndns::DEFAULT_CACHE_TTL;
124 else
125 cacheTtl = time::seconds(cacheTtlInt);
126
127 if (certTtlInt == -1)
128 certTtl = ndns::DEFAULT_CERT_TTL;
129 else
130 certTtl = time::seconds(certTtlInt);
131
Yumin Xia2c509c22017-02-09 14:37:36 -0800132 KeyChain keyChain;
Alexander Afanasyevd6b3bda2014-11-25 17:33:58 -0800133 ndn::ndns::ManagementTool tool(db, keyChain);
Yumin Xia2c509c22017-02-09 14:37:36 -0800134 ndn::ndns::Zone createdZone = tool.createZone(zone, parent, cacheTtl, certTtl, ksk, dsk, dkey);
135 ndn::security::v2::Certificate dkeyCert = tool.getZoneDkey(createdZone);
Yumin Xia99c821a2017-04-07 11:01:08 -0700136 NDNS_LOG_INFO("Generated DKEY " << dkeyCert.getName());
Yumin Xia2c509c22017-02-09 14:37:36 -0800137 ndn::io::save(dkeyCert, std::cout);
Jiewen Tan870b29b2014-11-17 19:09:49 -0800138 }
139 catch (const std::exception& ex) {
140 std::cerr << "Error: " << ex.what() << std::endl;
141 return 1;
142 }
143}