Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 635bf20 | 2017-03-09 21:57:34 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 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 | * The University of Memphis. |
| 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #include "command-authenticator.hpp" |
| 27 | #include "core/logger.hpp" |
| 28 | |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 29 | #include <ndn-cxx/tag.hpp> |
| 30 | #include <ndn-cxx/security/v2/certificate-fetcher-offline.hpp> |
| 31 | #include <ndn-cxx/security/v2/certificate-request.hpp> |
| 32 | #include <ndn-cxx/security/v2/validation-policy.hpp> |
| 33 | #include <ndn-cxx/security/v2/validation-policy-accept-all.hpp> |
| 34 | #include <ndn-cxx/security/v2/validation-policy-command-interest.hpp> |
| 35 | #include <ndn-cxx/security/v2/validator.hpp> |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 36 | #include <ndn-cxx/util/io.hpp> |
| 37 | |
| 38 | #include <boost/filesystem.hpp> |
| 39 | |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 40 | namespace sec2 = ndn::security::v2; |
| 41 | |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 42 | namespace nfd { |
| 43 | |
| 44 | NFD_LOG_INIT("CommandAuthenticator"); |
| 45 | // INFO: configuration change, etc |
| 46 | // DEBUG: per authentication request result |
| 47 | |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 48 | /** \brief an Interest tag to indicate command signer |
| 49 | */ |
| 50 | using SignerTag = ndn::SimpleTag<Name, 20>; |
| 51 | |
| 52 | /** \brief obtain signer from SignerTag attached to Interest, if available |
| 53 | */ |
| 54 | static ndn::optional<std::string> |
| 55 | getSignerFromTag(const Interest& interest) |
| 56 | { |
| 57 | shared_ptr<SignerTag> signerTag = interest.getTag<SignerTag>(); |
| 58 | if (signerTag == nullptr) { |
| 59 | return ndn::nullopt; |
| 60 | } |
| 61 | else { |
| 62 | return signerTag->get().toUri(); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | /** \brief a validation policy that only permits Interest signed by a trust anchor |
| 67 | */ |
| 68 | class CommandAuthenticatorValidationPolicy : public sec2::ValidationPolicy |
| 69 | { |
| 70 | public: |
| 71 | void |
| 72 | checkPolicy(const Interest& interest, const shared_ptr<sec2::ValidationState>& state, |
| 73 | const ValidationContinuation& continueValidation) final |
| 74 | { |
| 75 | Name klName = getKeyLocatorName(interest, *state); |
| 76 | if (!state->getOutcome()) { // already failed |
| 77 | return; |
| 78 | } |
| 79 | |
| 80 | // SignerTag must be placed on the 'original Interest' in ValidationState to be available for |
| 81 | // InterestValidationSuccessCallback. The 'interest' parameter refers to a different instance |
| 82 | // which is copied into 'original Interest'. |
| 83 | auto state1 = dynamic_pointer_cast<sec2::InterestValidationState>(state); |
| 84 | state1->getOriginalInterest().setTag(make_shared<SignerTag>(klName)); |
| 85 | |
| 86 | continueValidation(make_shared<sec2::CertificateRequest>(Interest(klName)), state); |
| 87 | } |
| 88 | |
| 89 | void |
| 90 | checkPolicy(const Data& data, const shared_ptr<sec2::ValidationState>& state, |
| 91 | const ValidationContinuation& continueValidation) final |
| 92 | { |
| 93 | // Non-certificate Data are not handled by CommandAuthenticator. |
| 94 | // Non-anchor certificates cannot be retrieved by offline fetcher. |
| 95 | BOOST_ASSERT_MSG(false, "Data should not be passed to this policy"); |
| 96 | } |
| 97 | }; |
| 98 | |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 99 | shared_ptr<CommandAuthenticator> |
| 100 | CommandAuthenticator::create() |
| 101 | { |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 102 | return shared_ptr<CommandAuthenticator>(new CommandAuthenticator); |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 105 | CommandAuthenticator::CommandAuthenticator() = default; |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 106 | |
| 107 | void |
| 108 | CommandAuthenticator::setConfigFile(ConfigFile& configFile) |
| 109 | { |
| 110 | configFile.addSectionHandler("authorizations", |
| 111 | bind(&CommandAuthenticator::processConfig, this, _1, _2, _3)); |
| 112 | } |
| 113 | |
| 114 | void |
| 115 | CommandAuthenticator::processConfig(const ConfigSection& section, bool isDryRun, const std::string& filename) |
| 116 | { |
| 117 | if (!isDryRun) { |
| 118 | NFD_LOG_INFO("clear-authorizations"); |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 119 | for (auto& kv : m_validators) { |
| 120 | kv.second = make_shared<sec2::Validator>( |
| 121 | make_unique<sec2::ValidationPolicyCommandInterest>(make_unique<CommandAuthenticatorValidationPolicy>()), |
| 122 | make_unique<sec2::CertificateFetcherOffline>()); |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 123 | } |
| 124 | } |
| 125 | |
| 126 | if (section.empty()) { |
| 127 | BOOST_THROW_EXCEPTION(ConfigFile::Error("'authorize' is missing under 'authorizations'")); |
| 128 | } |
| 129 | |
| 130 | int authSectionIndex = 0; |
| 131 | for (const auto& kv : section) { |
| 132 | if (kv.first != "authorize") { |
| 133 | BOOST_THROW_EXCEPTION(ConfigFile::Error( |
| 134 | "'" + kv.first + "' section is not permitted under 'authorizations'")); |
| 135 | } |
| 136 | const ConfigSection& authSection = kv.second; |
| 137 | |
| 138 | std::string certfile; |
| 139 | try { |
| 140 | certfile = authSection.get<std::string>("certfile"); |
| 141 | } |
| 142 | catch (const boost::property_tree::ptree_error&) { |
| 143 | BOOST_THROW_EXCEPTION(ConfigFile::Error( |
| 144 | "'certfile' is missing under authorize[" + to_string(authSectionIndex) + "]")); |
| 145 | } |
| 146 | |
| 147 | bool isAny = false; |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 148 | shared_ptr<sec2::Certificate> cert; |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 149 | if (certfile == "any") { |
| 150 | isAny = true; |
| 151 | NFD_LOG_WARN("'certfile any' is intended for demo purposes only and " |
| 152 | "SHOULD NOT be used in production environments"); |
| 153 | } |
| 154 | else { |
| 155 | using namespace boost::filesystem; |
| 156 | path certfilePath = absolute(certfile, path(filename).parent_path()); |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 157 | cert = ndn::io::load<sec2::Certificate>(certfilePath.string()); |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 158 | if (cert == nullptr) { |
| 159 | BOOST_THROW_EXCEPTION(ConfigFile::Error( |
| 160 | "cannot load certfile " + certfilePath.string() + |
| 161 | " for authorize[" + to_string(authSectionIndex) + "]")); |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | const ConfigSection* privSection = nullptr; |
| 166 | try { |
| 167 | privSection = &authSection.get_child("privileges"); |
| 168 | } |
| 169 | catch (const boost::property_tree::ptree_error&) { |
| 170 | BOOST_THROW_EXCEPTION(ConfigFile::Error( |
| 171 | "'privileges' is missing under authorize[" + to_string(authSectionIndex) + "]")); |
| 172 | } |
| 173 | |
| 174 | if (privSection->empty()) { |
| 175 | NFD_LOG_WARN("No privileges granted to certificate " << certfile); |
| 176 | } |
| 177 | for (const auto& kv : *privSection) { |
| 178 | const std::string& module = kv.first; |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 179 | auto found = m_validators.find(module); |
| 180 | if (found == m_validators.end()) { |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 181 | BOOST_THROW_EXCEPTION(ConfigFile::Error( |
| 182 | "unknown module '" + module + "' under authorize[" + to_string(authSectionIndex) + "]")); |
| 183 | } |
| 184 | |
| 185 | if (isDryRun) { |
| 186 | continue; |
| 187 | } |
| 188 | |
| 189 | if (isAny) { |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 190 | found->second = make_shared<sec2::Validator>(make_unique<sec2::ValidationPolicyAcceptAll>(), |
| 191 | make_unique<sec2::CertificateFetcherOffline>()); |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 192 | NFD_LOG_INFO("authorize module=" << module << " signer=any"); |
| 193 | } |
| 194 | else { |
Junxiao Shi | 16a3adf | 2017-05-26 17:38:51 +0000 | [diff] [blame] | 195 | const Name& keyName = cert->getKeyName(); |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 196 | sec2::Certificate certCopy = *cert; |
| 197 | found->second->loadAnchor(certfile, std::move(certCopy)); |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 198 | NFD_LOG_INFO("authorize module=" << module << " signer=" << keyName << |
| 199 | " certfile=" << certfile); |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | ++authSectionIndex; |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | ndn::mgmt::Authorization |
| 208 | CommandAuthenticator::makeAuthorization(const std::string& module, const std::string& verb) |
| 209 | { |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 210 | m_validators[module]; // declares module, so that privilege is recognized |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 211 | |
| 212 | auto self = this->shared_from_this(); |
| 213 | return [=] (const Name& prefix, const Interest& interest, |
| 214 | const ndn::mgmt::ControlParameters* params, |
| 215 | const ndn::mgmt::AcceptContinuation& accept, |
| 216 | const ndn::mgmt::RejectContinuation& reject) { |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 217 | shared_ptr<sec2::Validator> validator = self->m_validators.at(module); |
| 218 | validator->validate(interest, |
| 219 | [accept, validator] (const Interest& interest1) { |
| 220 | auto signer1 = getSignerFromTag(interest1); |
| 221 | BOOST_ASSERT(signer1 || // signer must be available unless 'certfile any' |
| 222 | dynamic_cast<sec2::ValidationPolicyAcceptAll*>(&validator->getPolicy()) != nullptr); |
| 223 | std::string signer = signer1.value_or("*"); |
| 224 | NFD_LOG_DEBUG("accept " << interest1.getName() << " signer=" << signer); |
| 225 | accept(signer); |
| 226 | }, |
| 227 | [reject] (const Interest& interest1, const sec2::ValidationError& err) { |
| 228 | NFD_LOG_DEBUG("reject " << interest1.getName() << " signer=" << |
| 229 | getSignerFromTag(interest1).value_or("?") << ' ' << err); |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 230 | |
Junxiao Shi | dbb6b3e | 2017-07-03 12:42:07 +0000 | [diff] [blame] | 231 | using ndn::mgmt::RejectReply; |
| 232 | RejectReply reply = RejectReply::STATUS403; |
| 233 | using ErrCode = sec2::ValidationError::Code; |
| 234 | switch (err.getCode()) { |
| 235 | case ErrCode::NO_SIGNATURE: |
| 236 | case ErrCode::INVALID_KEY_LOCATOR: |
| 237 | reply = RejectReply::SILENT; |
| 238 | break; |
| 239 | case ErrCode::POLICY_ERROR: |
| 240 | if (interest1.getName().size() < ndn::command_interest::MIN_SIZE) { // "name too short" |
| 241 | reply = RejectReply::SILENT; |
| 242 | } |
| 243 | break; |
| 244 | default: |
| 245 | break; |
| 246 | } |
| 247 | reject(reply); |
| 248 | }); |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 249 | }; |
| 250 | } |
| 251 | |
Junxiao Shi | d763127 | 2016-08-17 04:16:31 +0000 | [diff] [blame] | 252 | } // namespace nfd |