Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2017-2020, Regents of the University of California. |
| 4 | * |
| 5 | * This file is part of ndncert, a certificate management system based on NDN. |
| 6 | * |
| 7 | * ndncert is free software: you can redistribute it and/or modify it under the terms |
| 8 | * of the GNU General Public License as published by the Free Software Foundation, either |
| 9 | * version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndncert 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 General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License along with |
| 16 | * ndncert, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 17 | * |
| 18 | * See AUTHORS.md for complete list of ndncert authors and contributors. |
| 19 | */ |
| 20 | |
| 21 | #include "configuration.hpp" |
| 22 | #include "challenge-module.hpp" |
| 23 | #include <ndn-cxx/util/io.hpp> |
| 24 | #include <boost/filesystem.hpp> |
| 25 | |
| 26 | namespace ndn { |
| 27 | namespace ndncert { |
| 28 | |
| 29 | void |
| 30 | CaConfigItem::parse(const JsonSection& configJson) |
| 31 | { |
| 32 | // CA prefix |
| 33 | m_caPrefix = Name(configJson.get(CONFIG_CA_PREFIX, "")); |
| 34 | if (m_caPrefix.empty()) { |
| 35 | BOOST_THROW_EXCEPTION(std::runtime_error("Cannot parse ca-prefix from the config file")); |
| 36 | } |
| 37 | // CA info |
| 38 | m_caInfo = configJson.get(CONFIG_CA_INFO, ""); |
| 39 | // CA max validity period |
| 40 | m_maxValidityPeriod = time::seconds(configJson.get(CONFIG_MAX_VALIDITY_PERIOD, 86400)); |
| 41 | // CA max suffix length |
| 42 | m_maxSuffixLength = configJson.get_optional<size_t>(CONFIG_MAX_SUFFIX_LENGTH); |
| 43 | // probe parameter keys |
| 44 | m_probeParameterKeys.clear(); |
| 45 | auto probeParametersJson = configJson.get_child_optional(CONFIG_PROBE_PARAMETERS); |
| 46 | if (probeParametersJson) { |
| 47 | for (const auto item : *probeParametersJson) { |
| 48 | auto probeParameter = item.second.get(CONFIG_PROBE_PARAMETER, ""); |
| 49 | probeParameter = boost::algorithm::to_lower_copy(probeParameter); |
| 50 | if (probeParameter == "") { |
| 51 | BOOST_THROW_EXCEPTION(std::runtime_error("Probe parameter key cannot be empty.")); |
| 52 | } |
| 53 | m_probeParameterKeys.push_back(probeParameter); |
| 54 | } |
| 55 | } |
| 56 | // supported challenges |
| 57 | m_supportedChallenges.clear(); |
| 58 | auto challengeListJson = configJson.get_child_optional(CONFIG_SUPPORTED_CHALLENGES); |
| 59 | if (challengeListJson) { |
| 60 | for (const auto item : *challengeListJson) { |
| 61 | auto challengeType = item.second.get(CONFIG_CHALLENGE, ""); |
| 62 | challengeType = boost::algorithm::to_lower_copy(challengeType); |
| 63 | if (challengeType == "") { |
| 64 | BOOST_THROW_EXCEPTION(std::runtime_error("Challenge type canont be empty.")); |
| 65 | } |
| 66 | if (!ChallengeModule::isChallengeSupported(challengeType)) { |
| 67 | BOOST_THROW_EXCEPTION(std::runtime_error("Challenge " + challengeType + " is not supported.")); |
| 68 | } |
| 69 | m_supportedChallenges.push_back(challengeType); |
| 70 | } |
| 71 | } |
| 72 | // anchor certificate |
| 73 | m_cert = nullptr; |
Zhiyi Zhang | fde5011 | 2020-10-01 16:36:33 -0700 | [diff] [blame^] | 74 | auto certificateStr = configJson.get(CONFIG_CERTIFICATE, ""); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 75 | if (certificateStr != "") { |
| 76 | std::istringstream ss(certificateStr); |
| 77 | m_cert = io::load<security::v2::Certificate>(ss); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | JsonSection |
| 82 | CaConfigItem::toJson() const |
| 83 | { |
| 84 | JsonSection caItem; |
| 85 | caItem.put(CONFIG_CA_PREFIX, m_caPrefix.toUri()); |
| 86 | caItem.put(CONFIG_CA_INFO, m_caInfo); |
| 87 | caItem.put(CONFIG_MAX_VALIDITY_PERIOD, m_maxValidityPeriod.count()); |
| 88 | caItem.put(CONFIG_MAX_SUFFIX_LENGTH, m_maxSuffixLength); |
| 89 | if (!m_probeParameterKeys.empty()) { |
| 90 | JsonSection probeParametersJson; |
| 91 | for (const auto& key : m_probeParameterKeys) { |
| 92 | JsonSection keyJson; |
| 93 | keyJson.put(CONFIG_PROBE_PARAMETER, key); |
| 94 | probeParametersJson.push_back(std::make_pair("", keyJson)); |
| 95 | } |
| 96 | caItem.add_child("", probeParametersJson); |
| 97 | } |
| 98 | if (!m_supportedChallenges.empty()) { |
| 99 | JsonSection challengeListJson; |
| 100 | for (const auto& challenge : m_supportedChallenges) { |
| 101 | JsonSection challengeJson; |
| 102 | challengeJson.put(CONFIG_CHALLENGE, challenge); |
| 103 | challengeListJson.push_back(std::make_pair("", challengeJson)); |
| 104 | } |
| 105 | caItem.add_child("", challengeListJson); |
| 106 | } |
| 107 | if (m_cert != nullptr) { |
| 108 | std::stringstream ss; |
| 109 | io::save(*m_cert, ss); |
| 110 | caItem.put("certificate", ss.str()); |
| 111 | } |
| 112 | return caItem; |
| 113 | } |
| 114 | |
| 115 | void |
| 116 | CaConfig::load(const std::string& fileName) |
| 117 | { |
| 118 | JsonSection configJson; |
| 119 | try { |
| 120 | boost::property_tree::read_json(fileName, configJson); |
| 121 | } |
| 122 | catch (const std::exception& error) { |
| 123 | BOOST_THROW_EXCEPTION(std::runtime_error("Failed to parse configuration file " + fileName + ", " + error.what())); |
| 124 | } |
| 125 | if (configJson.begin() == configJson.end()) { |
| 126 | BOOST_THROW_EXCEPTION(std::runtime_error("No JSON configuration found in file: " + fileName)); |
| 127 | } |
| 128 | m_caItem.parse(configJson); |
| 129 | if (m_caItem.m_supportedChallenges.size() == 0) { |
| 130 | BOOST_THROW_EXCEPTION(std::runtime_error("At least one challenge should be specified.")); |
| 131 | } |
Zhiyi Zhang | fde5011 | 2020-10-01 16:36:33 -0700 | [diff] [blame^] | 132 | // parse redirection section if appears |
| 133 | m_redirection = boost::none; |
| 134 | auto redirectionItems = configJson.get_child_optional(CONFIG_REDIRECTION); |
| 135 | if (redirectionItems) { |
| 136 | for (const auto item : *redirectionItems) { |
| 137 | auto caPrefixStr = item.second.get(CONFIG_CA_PREFIX, ""); |
| 138 | auto caCertStr = item.second.get(CONFIG_CERTIFICATE, ""); |
| 139 | if (caPrefixStr == "" || caCertStr == "") { |
| 140 | BOOST_THROW_EXCEPTION(std::runtime_error("Redirect-to item's ca-prefix or certificate cannot be empty.")); |
| 141 | } |
| 142 | std::istringstream ss(caCertStr); |
| 143 | auto caCert = io::load<security::v2::Certificate>(ss); |
| 144 | if (!m_redirection) { |
| 145 | m_redirection = RedirectionItems(); |
| 146 | } |
| 147 | m_redirection->push_back(std::make_tuple(Name(caPrefixStr), caCert)); |
| 148 | } |
| 149 | } |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | void |
| 153 | ClientConfig::load(const std::string& fileName) |
| 154 | { |
| 155 | JsonSection configJson; |
| 156 | try { |
| 157 | boost::property_tree::read_json(fileName, configJson); |
| 158 | } |
| 159 | catch (const std::exception& error) { |
| 160 | BOOST_THROW_EXCEPTION(std::runtime_error("Failed to parse configuration file " + fileName + ", " + error.what())); |
| 161 | } |
| 162 | if (configJson.begin() == configJson.end()) { |
| 163 | BOOST_THROW_EXCEPTION(std::runtime_error("No JSON configuration found in file: " + fileName)); |
| 164 | } |
| 165 | load(configJson); |
| 166 | } |
| 167 | |
| 168 | void |
| 169 | ClientConfig::load(const JsonSection& configSection) |
| 170 | { |
| 171 | m_caItems.clear(); |
| 172 | auto caList = configSection.get_child("ca-list"); |
| 173 | for (auto item : caList) { |
| 174 | CaConfigItem caItem; |
| 175 | caItem.parse(item.second); |
| 176 | if (caItem.m_cert == nullptr) { |
| 177 | BOOST_THROW_EXCEPTION(std::runtime_error("No CA certificate is loaded from JSON configuration.")); |
| 178 | } |
| 179 | m_caItems.push_back(std::move(caItem)); |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | void |
| 184 | ClientConfig::save(const std::string& fileName) const |
| 185 | { |
| 186 | JsonSection configJson; |
| 187 | for (const auto& caItem : m_caItems) { |
| 188 | configJson.push_back(std::make_pair("", caItem.toJson())); |
| 189 | } |
| 190 | std::stringstream ss; |
| 191 | boost::property_tree::write_json(ss, configJson); |
| 192 | std::ofstream configFile; |
| 193 | configFile.open(fileName); |
| 194 | configFile << ss.str(); |
| 195 | configFile.close(); |
| 196 | } |
| 197 | |
| 198 | void |
| 199 | ClientConfig::removeCaItem(const Name& caName) |
| 200 | { |
| 201 | m_caItems.remove_if([&](const CaConfigItem& item) { return item.m_caPrefix == caName; }); |
| 202 | } |
| 203 | |
| 204 | } // namespace ndncert |
| 205 | } // namespace ndn |