blob: 9f24ba3d0828c025c517574d17c475285b3511e8 [file] [log] [blame]
Junxiao Shid7631272016-08-17 04:16:31 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventod96744d2018-02-03 19:16:07 -05002/*
Davide Pesaventob7bfcb92022-05-22 23:55:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shid7631272016-08-17 04:16:31 +00004 * 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"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040027#include "common/logger.hpp"
Junxiao Shid7631272016-08-17 04:16:31 +000028
Junxiao Shidbb6b3e2017-07-03 12:42:07 +000029#include <ndn-cxx/tag.hpp>
Alexander Afanasyeva1583702020-06-03 13:55:45 -040030#include <ndn-cxx/security/certificate-fetcher-offline.hpp>
31#include <ndn-cxx/security/certificate-request.hpp>
32#include <ndn-cxx/security/validation-policy.hpp>
33#include <ndn-cxx/security/validation-policy-accept-all.hpp>
34#include <ndn-cxx/security/validation-policy-command-interest.hpp>
Junxiao Shid7631272016-08-17 04:16:31 +000035#include <ndn-cxx/util/io.hpp>
36
37#include <boost/filesystem.hpp>
38
Alexander Afanasyeva1583702020-06-03 13:55:45 -040039namespace security = ndn::security;
Junxiao Shidbb6b3e2017-07-03 12:42:07 +000040
Junxiao Shid7631272016-08-17 04:16:31 +000041namespace nfd {
42
Davide Pesaventoa3148082018-04-12 18:21:54 -040043NFD_LOG_INIT(CommandAuthenticator);
Junxiao Shid7631272016-08-17 04:16:31 +000044// INFO: configuration change, etc
45// DEBUG: per authentication request result
46
Junxiao Shidbb6b3e2017-07-03 12:42:07 +000047/** \brief an Interest tag to indicate command signer
48 */
49using SignerTag = ndn::SimpleTag<Name, 20>;
50
51/** \brief obtain signer from SignerTag attached to Interest, if available
52 */
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040053static std::optional<std::string>
Junxiao Shidbb6b3e2017-07-03 12:42:07 +000054getSignerFromTag(const Interest& interest)
55{
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040056 auto signerTag = interest.getTag<SignerTag>();
Junxiao Shidbb6b3e2017-07-03 12:42:07 +000057 if (signerTag == nullptr) {
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040058 return std::nullopt;
Junxiao Shidbb6b3e2017-07-03 12:42:07 +000059 }
60 else {
61 return signerTag->get().toUri();
62 }
63}
64
65/** \brief a validation policy that only permits Interest signed by a trust anchor
66 */
Davide Pesavento3db98072021-03-09 23:03:27 -050067class CommandAuthenticatorValidationPolicy final : public security::ValidationPolicy
Junxiao Shidbb6b3e2017-07-03 12:42:07 +000068{
69public:
70 void
Alexander Afanasyeva1583702020-06-03 13:55:45 -040071 checkPolicy(const Interest& interest, const shared_ptr<security::ValidationState>& state,
Junxiao Shidbb6b3e2017-07-03 12:42:07 +000072 const ValidationContinuation& continueValidation) final
73 {
74 Name klName = getKeyLocatorName(interest, *state);
75 if (!state->getOutcome()) { // already failed
76 return;
77 }
78
79 // SignerTag must be placed on the 'original Interest' in ValidationState to be available for
80 // InterestValidationSuccessCallback. The 'interest' parameter refers to a different instance
81 // which is copied into 'original Interest'.
Alexander Afanasyeva1583702020-06-03 13:55:45 -040082 auto state1 = dynamic_pointer_cast<security::InterestValidationState>(state);
Junxiao Shidbb6b3e2017-07-03 12:42:07 +000083 state1->getOriginalInterest().setTag(make_shared<SignerTag>(klName));
84
Davide Pesavento22085362021-03-18 22:08:03 -040085 continueValidation(make_shared<security::CertificateRequest>(klName), state);
Junxiao Shidbb6b3e2017-07-03 12:42:07 +000086 }
87
88 void
Davide Pesavento3db98072021-03-09 23:03:27 -050089 checkPolicy(const Data&, const shared_ptr<security::ValidationState>&,
90 const ValidationContinuation&) final
Junxiao Shidbb6b3e2017-07-03 12:42:07 +000091 {
92 // Non-certificate Data are not handled by CommandAuthenticator.
93 // Non-anchor certificates cannot be retrieved by offline fetcher.
94 BOOST_ASSERT_MSG(false, "Data should not be passed to this policy");
95 }
96};
97
Junxiao Shid7631272016-08-17 04:16:31 +000098shared_ptr<CommandAuthenticator>
99CommandAuthenticator::create()
100{
Junxiao Shidbb6b3e2017-07-03 12:42:07 +0000101 return shared_ptr<CommandAuthenticator>(new CommandAuthenticator);
Junxiao Shid7631272016-08-17 04:16:31 +0000102}
103
Junxiao Shidbb6b3e2017-07-03 12:42:07 +0000104CommandAuthenticator::CommandAuthenticator() = default;
Junxiao Shid7631272016-08-17 04:16:31 +0000105
106void
107CommandAuthenticator::setConfigFile(ConfigFile& configFile)
108{
Davide Pesavento412c9822021-07-02 00:21:05 -0400109 configFile.addSectionHandler("authorizations", [this] (auto&&... args) {
110 processConfig(std::forward<decltype(args)>(args)...);
111 });
Junxiao Shid7631272016-08-17 04:16:31 +0000112}
113
114void
115CommandAuthenticator::processConfig(const ConfigSection& section, bool isDryRun, const std::string& filename)
116{
117 if (!isDryRun) {
Davide Pesavento22085362021-03-18 22:08:03 -0400118 NFD_LOG_DEBUG("resetting authorizations");
Junxiao Shidbb6b3e2017-07-03 12:42:07 +0000119 for (auto& kv : m_validators) {
Alexander Afanasyeva1583702020-06-03 13:55:45 -0400120 kv.second = make_shared<security::Validator>(
121 make_unique<security::ValidationPolicyCommandInterest>(make_unique<CommandAuthenticatorValidationPolicy>()),
122 make_unique<security::CertificateFetcherOffline>());
Junxiao Shid7631272016-08-17 04:16:31 +0000123 }
124 }
125
126 if (section.empty()) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500127 NDN_THROW(ConfigFile::Error("'authorize' is missing under 'authorizations'"));
Junxiao Shid7631272016-08-17 04:16:31 +0000128 }
129
130 int authSectionIndex = 0;
Davide Pesavento20cafa82022-07-25 01:15:03 -0400131 for (const auto& [sectionName, authSection] : section) {
132 if (sectionName != "authorize") {
133 NDN_THROW(ConfigFile::Error("'" + sectionName + "' section is not permitted under 'authorizations'"));
Junxiao Shid7631272016-08-17 04:16:31 +0000134 }
Junxiao Shid7631272016-08-17 04:16:31 +0000135
136 std::string certfile;
137 try {
138 certfile = authSection.get<std::string>("certfile");
139 }
140 catch (const boost::property_tree::ptree_error&) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500141 NDN_THROW(ConfigFile::Error("'certfile' is missing under authorize[" +
142 to_string(authSectionIndex) + "]"));
Junxiao Shid7631272016-08-17 04:16:31 +0000143 }
144
145 bool isAny = false;
Alexander Afanasyeva1583702020-06-03 13:55:45 -0400146 shared_ptr<security::Certificate> cert;
Junxiao Shid7631272016-08-17 04:16:31 +0000147 if (certfile == "any") {
148 isAny = true;
149 NFD_LOG_WARN("'certfile any' is intended for demo purposes only and "
150 "SHOULD NOT be used in production environments");
151 }
152 else {
153 using namespace boost::filesystem;
154 path certfilePath = absolute(certfile, path(filename).parent_path());
Alexander Afanasyeva1583702020-06-03 13:55:45 -0400155 cert = ndn::io::load<security::Certificate>(certfilePath.string());
Junxiao Shid7631272016-08-17 04:16:31 +0000156 if (cert == nullptr) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500157 NDN_THROW(ConfigFile::Error("cannot load certfile " + certfilePath.string() +
158 " for authorize[" + to_string(authSectionIndex) + "]"));
Junxiao Shid7631272016-08-17 04:16:31 +0000159 }
160 }
161
162 const ConfigSection* privSection = nullptr;
163 try {
164 privSection = &authSection.get_child("privileges");
165 }
166 catch (const boost::property_tree::ptree_error&) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500167 NDN_THROW(ConfigFile::Error("'privileges' is missing under authorize[" +
168 to_string(authSectionIndex) + "]"));
Junxiao Shid7631272016-08-17 04:16:31 +0000169 }
170
171 if (privSection->empty()) {
172 NFD_LOG_WARN("No privileges granted to certificate " << certfile);
173 }
174 for (const auto& kv : *privSection) {
175 const std::string& module = kv.first;
Junxiao Shidbb6b3e2017-07-03 12:42:07 +0000176 auto found = m_validators.find(module);
177 if (found == m_validators.end()) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500178 NDN_THROW(ConfigFile::Error("unknown module '" + module +
179 "' under authorize[" + to_string(authSectionIndex) + "]"));
Junxiao Shid7631272016-08-17 04:16:31 +0000180 }
181
182 if (isDryRun) {
183 continue;
184 }
185
186 if (isAny) {
Alexander Afanasyeva1583702020-06-03 13:55:45 -0400187 found->second = make_shared<security::Validator>(make_unique<security::ValidationPolicyAcceptAll>(),
188 make_unique<security::CertificateFetcherOffline>());
Junxiao Shid7631272016-08-17 04:16:31 +0000189 NFD_LOG_INFO("authorize module=" << module << " signer=any");
190 }
191 else {
Junxiao Shi16a3adf2017-05-26 17:38:51 +0000192 const Name& keyName = cert->getKeyName();
Alexander Afanasyeva1583702020-06-03 13:55:45 -0400193 security::Certificate certCopy = *cert;
Junxiao Shidbb6b3e2017-07-03 12:42:07 +0000194 found->second->loadAnchor(certfile, std::move(certCopy));
Davide Pesavento19779d82019-02-14 13:40:04 -0500195 NFD_LOG_INFO("authorize module=" << module << " signer=" << keyName << " certfile=" << certfile);
Junxiao Shid7631272016-08-17 04:16:31 +0000196 }
197 }
198
199 ++authSectionIndex;
200 }
201}
202
203ndn::mgmt::Authorization
204CommandAuthenticator::makeAuthorization(const std::string& module, const std::string& verb)
205{
Junxiao Shidbb6b3e2017-07-03 12:42:07 +0000206 m_validators[module]; // declares module, so that privilege is recognized
Junxiao Shid7631272016-08-17 04:16:31 +0000207
208 auto self = this->shared_from_this();
Davide Pesaventod96744d2018-02-03 19:16:07 -0500209 return [=] (const Name&, const Interest& interest,
210 const ndn::mgmt::ControlParameters*,
Junxiao Shid7631272016-08-17 04:16:31 +0000211 const ndn::mgmt::AcceptContinuation& accept,
212 const ndn::mgmt::RejectContinuation& reject) {
Davide Pesaventod96744d2018-02-03 19:16:07 -0500213 auto validator = self->m_validators.at(module);
Davide Pesavento22085362021-03-18 22:08:03 -0400214
Davide Pesaventod96744d2018-02-03 19:16:07 -0500215 auto successCb = [accept, validator] (const Interest& interest1) {
216 auto signer1 = getSignerFromTag(interest1);
217 BOOST_ASSERT(signer1 || // signer must be available unless 'certfile any'
Alexander Afanasyeva1583702020-06-03 13:55:45 -0400218 dynamic_cast<security::ValidationPolicyAcceptAll*>(&validator->getPolicy()) != nullptr);
Davide Pesaventod96744d2018-02-03 19:16:07 -0500219 std::string signer = signer1.value_or("*");
220 NFD_LOG_DEBUG("accept " << interest1.getName() << " signer=" << signer);
221 accept(signer);
222 };
Davide Pesavento22085362021-03-18 22:08:03 -0400223
Alexander Afanasyeva1583702020-06-03 13:55:45 -0400224 auto failureCb = [reject] (const Interest& interest1, const security::ValidationError& err) {
Davide Pesaventod96744d2018-02-03 19:16:07 -0500225 using ndn::mgmt::RejectReply;
226 RejectReply reply = RejectReply::STATUS403;
227 switch (err.getCode()) {
Alexander Afanasyeva1583702020-06-03 13:55:45 -0400228 case security::ValidationError::NO_SIGNATURE:
229 case security::ValidationError::INVALID_KEY_LOCATOR:
Davide Pesaventod96744d2018-02-03 19:16:07 -0500230 reply = RejectReply::SILENT;
231 break;
Alexander Afanasyeva1583702020-06-03 13:55:45 -0400232 case security::ValidationError::POLICY_ERROR:
Davide Pesaventod96744d2018-02-03 19:16:07 -0500233 if (interest1.getName().size() < ndn::command_interest::MIN_SIZE) { // "name too short"
234 reply = RejectReply::SILENT;
Junxiao Shidbb6b3e2017-07-03 12:42:07 +0000235 }
Davide Pesaventod96744d2018-02-03 19:16:07 -0500236 break;
237 }
238 NFD_LOG_DEBUG("reject " << interest1.getName() << " signer=" <<
239 getSignerFromTag(interest1).value_or("?") << " reason=" << err);
240 reject(reply);
241 };
242
243 if (validator) {
244 validator->validate(interest, successCb, failureCb);
245 }
246 else {
247 NFD_LOG_DEBUG("reject " << interest.getName() << " signer=" <<
248 getSignerFromTag(interest).value_or("?") << " reason=Unauthorized");
249 reject(ndn::mgmt::RejectReply::STATUS403);
250 }
Junxiao Shid7631272016-08-17 04:16:31 +0000251 };
252}
253
Junxiao Shid7631272016-08-17 04:16:31 +0000254} // namespace nfd