Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014 Regents of the University of California, |
| 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology |
| 9 | * |
| 10 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 11 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 12 | * |
| 13 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 14 | * of the GNU General Public License as published by the Free Software Foundation, |
| 15 | * either version 3 of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 18 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 19 | * PURPOSE. See the GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along with |
| 22 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 23 | **/ |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 24 | |
| 25 | #include "command-validator.hpp" |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 26 | #include "core/logger.hpp" |
| 27 | |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 28 | #include <ndn-cxx/util/io.hpp> |
| 29 | #include <ndn-cxx/security/identity-certificate.hpp> |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 30 | |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 31 | #include <boost/filesystem.hpp> |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 32 | #include <fstream> |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 33 | |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 34 | namespace nfd { |
| 35 | |
| 36 | NFD_LOG_INIT("CommandValidator"); |
| 37 | |
| 38 | CommandValidator::CommandValidator() |
| 39 | { |
| 40 | |
| 41 | } |
| 42 | |
| 43 | CommandValidator::~CommandValidator() |
| 44 | { |
| 45 | |
| 46 | } |
| 47 | |
| 48 | void |
| 49 | CommandValidator::setConfigFile(ConfigFile& configFile) |
| 50 | { |
| 51 | configFile.addSectionHandler("authorizations", |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 52 | bind(&CommandValidator::onConfig, this, _1, _2, _3)); |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | static inline void |
| 56 | aggregateErrors(std::stringstream& ss, const std::string& msg) |
| 57 | { |
| 58 | if (!ss.str().empty()) |
| 59 | { |
| 60 | ss << "\n"; |
| 61 | } |
| 62 | ss << msg; |
| 63 | } |
| 64 | |
| 65 | void |
| 66 | CommandValidator::onConfig(const ConfigSection& section, |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 67 | bool isDryRun, |
| 68 | const std::string& filename) |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 69 | { |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 70 | using namespace boost::filesystem; |
| 71 | |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 72 | const ConfigSection EMPTY_SECTION; |
| 73 | |
Alexander Afanasyev | 5959b01 | 2014-06-02 19:18:12 +0300 | [diff] [blame] | 74 | m_validator.reset(); |
| 75 | |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 76 | if (section.begin() == section.end()) |
| 77 | { |
| 78 | throw ConfigFile::Error("No authorize sections found"); |
| 79 | } |
| 80 | |
| 81 | std::stringstream dryRunErrors; |
| 82 | ConfigSection::const_iterator authIt; |
| 83 | for (authIt = section.begin(); authIt != section.end(); authIt++) |
| 84 | { |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 85 | std::string certfile; |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 86 | try |
| 87 | { |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 88 | certfile = authIt->second.get<std::string>("certfile"); |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 89 | } |
| 90 | catch (const std::runtime_error& e) |
| 91 | { |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 92 | std::string msg = "No certfile specified"; |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 93 | if (!isDryRun) |
| 94 | { |
| 95 | throw ConfigFile::Error(msg); |
| 96 | } |
| 97 | aggregateErrors(dryRunErrors, msg); |
| 98 | continue; |
| 99 | } |
| 100 | |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 101 | shared_ptr<ndn::IdentityCertificate> id; |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 102 | |
Yingdi Yu | c8f214c | 2014-04-29 20:39:37 -0700 | [diff] [blame] | 103 | if (certfile != "any") |
| 104 | { |
| 105 | path certfilePath = absolute(certfile, path(filename).parent_path()); |
| 106 | NFD_LOG_DEBUG("generated certfile path: " << certfilePath.native()); |
| 107 | |
| 108 | std::ifstream in; |
| 109 | in.open(certfilePath.c_str()); |
| 110 | if (!in.is_open()) |
| 111 | { |
| 112 | std::string msg = "Unable to open certificate file " + certfilePath.native(); |
| 113 | if (!isDryRun) |
| 114 | { |
| 115 | throw ConfigFile::Error(msg); |
| 116 | } |
| 117 | aggregateErrors(dryRunErrors, msg); |
| 118 | continue; |
| 119 | } |
| 120 | |
| 121 | try |
| 122 | { |
| 123 | id = ndn::io::load<ndn::IdentityCertificate>(in); |
| 124 | } |
| 125 | catch (const std::runtime_error& error) |
| 126 | { |
| 127 | // do nothing |
| 128 | } |
| 129 | |
| 130 | if (!static_cast<bool>(id)) { |
| 131 | std::string msg = "Malformed certificate file " + certfilePath.native(); |
| 132 | if (!isDryRun) |
| 133 | { |
| 134 | throw ConfigFile::Error(msg); |
| 135 | } |
| 136 | aggregateErrors(dryRunErrors, msg); |
| 137 | continue; |
Alexander Afanasyev | 5d2820d | 2014-04-24 00:10:31 -0700 | [diff] [blame] | 138 | } |
Alexander Afanasyev | 5d2820d | 2014-04-24 00:10:31 -0700 | [diff] [blame] | 139 | |
Yingdi Yu | c8f214c | 2014-04-29 20:39:37 -0700 | [diff] [blame] | 140 | in.close(); |
| 141 | } |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 142 | |
Yingdi Yu | c8f214c | 2014-04-29 20:39:37 -0700 | [diff] [blame] | 143 | std::string keyNameForLogging; |
| 144 | if (static_cast<bool>(id)) |
| 145 | keyNameForLogging = id->getPublicKeyName().toUri(); |
| 146 | else |
| 147 | { |
| 148 | keyNameForLogging = "wildcard"; |
| 149 | NFD_LOG_WARN("Wildcard identity is intended for demo purpose only and " << |
| 150 | "SHOULD NOT be used in production environment"); |
| 151 | } |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 152 | const ConfigSection* privileges = 0; |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 153 | try |
| 154 | { |
| 155 | privileges = &authIt->second.get_child("privileges"); |
| 156 | } |
| 157 | catch (const std::runtime_error& error) |
| 158 | { |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 159 | std::string msg = "No privileges section found for certificate file " + |
Yingdi Yu | c8f214c | 2014-04-29 20:39:37 -0700 | [diff] [blame] | 160 | certfile + " (" + keyNameForLogging + ")"; |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 161 | if (!isDryRun) |
| 162 | { |
| 163 | throw ConfigFile::Error(msg); |
| 164 | } |
| 165 | aggregateErrors(dryRunErrors, msg); |
| 166 | continue; |
| 167 | } |
| 168 | |
| 169 | if (privileges->begin() == privileges->end()) |
| 170 | { |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 171 | NFD_LOG_WARN("No privileges specified for certificate file " << certfile |
Yingdi Yu | c8f214c | 2014-04-29 20:39:37 -0700 | [diff] [blame] | 172 | << " (" << keyNameForLogging << ")"); |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | ConfigSection::const_iterator privIt; |
| 176 | for (privIt = privileges->begin(); privIt != privileges->end(); privIt++) |
| 177 | { |
| 178 | const std::string& privilegeName = privIt->first; |
| 179 | if (m_supportedPrivileges.find(privilegeName) != m_supportedPrivileges.end()) |
| 180 | { |
| 181 | NFD_LOG_INFO("Giving privilege \"" << privilegeName |
Yingdi Yu | c8f214c | 2014-04-29 20:39:37 -0700 | [diff] [blame] | 182 | << "\" to identity " << keyNameForLogging); |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 183 | if (!isDryRun) |
| 184 | { |
| 185 | const std::string regex = "^<localhost><nfd><" + privilegeName + ">"; |
Yingdi Yu | c8f214c | 2014-04-29 20:39:37 -0700 | [diff] [blame] | 186 | if (static_cast<bool>(id)) |
| 187 | m_validator.addInterestRule(regex, *id); |
| 188 | else |
| 189 | m_validator.addInterestBypassRule(regex); |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 190 | } |
| 191 | } |
| 192 | else |
| 193 | { |
| 194 | // Invalid configuration |
Yingdi Yu | c8f214c | 2014-04-29 20:39:37 -0700 | [diff] [blame] | 195 | std::string msg = "Invalid privilege \"" + privilegeName + |
| 196 | "\" for certificate file " + certfile + " (" + keyNameForLogging + ")"; |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 197 | if (!isDryRun) |
| 198 | { |
| 199 | throw ConfigFile::Error(msg); |
| 200 | } |
| 201 | aggregateErrors(dryRunErrors, msg); |
| 202 | } |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | if (!dryRunErrors.str().empty()) |
| 207 | { |
| 208 | throw ConfigFile::Error(dryRunErrors.str()); |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | void |
| 213 | CommandValidator::addSupportedPrivilege(const std::string& privilege) |
| 214 | { |
| 215 | if (m_supportedPrivileges.find(privilege) != m_supportedPrivileges.end()) |
| 216 | { |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 217 | throw CommandValidator::Error("Duplicated privilege: " + privilege); |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 218 | } |
| 219 | m_supportedPrivileges.insert(privilege); |
| 220 | } |
| 221 | |
| 222 | } // namespace nfd |