23 #include "../lp/tags.hpp" 24 #include "../util/logger.hpp" 38 return [] (
const Name& prefix,
51 , m_keyChain(keyChain)
52 , m_signingInfo(signingInfo)
53 , m_storage(m_face.getIoService(), imsCapacity)
59 std::vector<Name> topPrefixNames;
61 std::transform(m_topLevelPrefixes.begin(),
62 m_topLevelPrefixes.end(),
63 std::back_inserter(topPrefixNames),
64 [] (
const std::unordered_map<Name, TopPrefixEntry>::value_type& entry) {
65 return entry.second.topPrefix;
68 for (
auto&&
name : topPrefixNames) {
78 bool hasOverlap = std::any_of(m_topLevelPrefixes.begin(),
79 m_topLevelPrefixes.end(),
80 [&] (
const std::unordered_map<Name, TopPrefixEntry>::value_type& x) {
81 return x.first.isPrefixOf(prefix) || prefix.
isPrefixOf(x.first);
84 BOOST_THROW_EXCEPTION(std::out_of_range(
"Top-level Prefixes overlapped"));
87 TopPrefixEntry& topPrefixEntry = m_topLevelPrefixes[prefix];;
88 topPrefixEntry.topPrefix = prefix;
89 topPrefixEntry.wantRegister = wantRegister;
93 BOOST_THROW_EXCEPTION(std::runtime_error(reason));
95 topPrefixEntry.registerPrefixId =
99 for (
auto&& entry : m_handlers) {
100 Name fullPrefix = prefix;
101 fullPrefix.
append(entry.first);
103 const InterestFilterId* interestFilterId =
106 topPrefixEntry.interestFilters.push_back(interestFilterId);
113 auto it = m_topLevelPrefixes.find(prefix);
114 if (it == m_topLevelPrefixes.end()) {
118 const TopPrefixEntry& topPrefixEntry = it->second;
119 if (topPrefixEntry.wantRegister) {
120 m_face.
unregisterPrefix(topPrefixEntry.registerPrefixId, bind([]{}), bind([]{}));
123 for (
auto&& filter : topPrefixEntry.interestFilters) {
127 m_topLevelPrefixes.erase(it);
131 Dispatcher::isOverlappedWithOthers(
const PartialName& relPrefix)
133 bool hasOverlapWithHandlers =
134 std::any_of(m_handlers.begin(), m_handlers.end(),
135 [&] (
const HandlerMap::value_type& entry) {
136 return entry.first.isPrefixOf(relPrefix) || relPrefix.
isPrefixOf(entry.first);
138 bool hasOverlapWithStreams =
139 std::any_of(m_streams.begin(), m_streams.end(),
140 [&] (
const std::unordered_map<PartialName, uint64_t>::value_type& entry) {
141 return entry.first.isPrefixOf(relPrefix) || relPrefix.
isPrefixOf(entry.first);
144 return hasOverlapWithHandlers || hasOverlapWithStreams;
151 sendControlResponse(
ControlResponse(403,
"authorization rejected"), interest);
156 Dispatcher::queryStorage(
const Name& prefix,
const Interest& interest,
157 const InterestHandler& missContinuation)
159 auto data = m_storage.find(interest);
160 if (data ==
nullptr) {
162 missContinuation(prefix, interest);
171 Dispatcher::sendData(
const Name& dataName,
const Block& content,
const MetaInfo& metaInfo,
172 SendDestination option, time::milliseconds imsFresh)
174 shared_ptr<Data> data = make_shared<Data>(dataName);
175 data->setContent(content).setMetaInfo(metaInfo).setFreshnessPeriod(DEFAULT_FRESHNESS_PERIOD);
177 m_keyChain.
sign(*data, m_signingInfo);
179 if (option == SendDestination::IMS || option == SendDestination::FACE_AND_IMS) {
182 data->setTag(make_shared<lp::CachePolicyTag>(policy));
183 m_storage.insert(*data, imsFresh);
186 if (option == SendDestination::FACE || option == SendDestination::FACE_AND_IMS) {
192 Dispatcher::sendOnFace(
const Data& data)
203 Dispatcher::processControlCommandInterest(
const Name& prefix,
204 const Name& relPrefix,
206 const ControlParametersParser& parser,
208 const AuthorizationAcceptedCallback& accepted,
209 const AuthorizationRejectedCallback& rejected)
212 size_t parametersLoc = prefix.
size() + relPrefix.
size();
215 shared_ptr<ControlParameters> parameters;
217 parameters = parser(pc);
225 authorization(prefix, interest, parameters.get(), accept, reject);
229 Dispatcher::processAuthorizedControlCommandInterest(
const std::string& requester,
236 if (validateParams(*parameters)) {
237 handler(prefix, interest, *parameters,
238 bind(&Dispatcher::sendControlResponse,
this, _1, interest,
false));
241 sendControlResponse(
ControlResponse(400,
"failed in validating parameters"), interest);
263 if (!m_topLevelPrefixes.empty()) {
264 BOOST_THROW_EXCEPTION(std::domain_error(
"one or more top-level prefix has been added"));
267 if (isOverlappedWithOthers(relPrefix)) {
268 BOOST_THROW_EXCEPTION(std::out_of_range(
"relPrefix overlapped"));
271 AuthorizationAcceptedCallback accepted =
272 bind(&Dispatcher::processAuthorizedStatusDatasetInterest,
this,
273 _1, _2, _3, handler);
274 AuthorizationRejectedCallback rejected =
275 bind(&Dispatcher::afterAuthorizationRejected,
this, _1, _2);
278 InterestHandler missContinuation = bind(&Dispatcher::processStatusDatasetInterest,
this,
279 _1, _2, authorization, accepted, rejected);
280 m_handlers[relPrefix] = bind(&Dispatcher::queryStorage,
this, _1, _2, missContinuation);
284 Dispatcher::processStatusDatasetInterest(
const Name& prefix,
287 const AuthorizationAcceptedCallback& accepted,
288 const AuthorizationRejectedCallback& rejected)
291 bool endsWithVersionOrSegment = interestName.
size() >= 1 &&
292 (interestName[-1].isVersion() || interestName[-1].isSegment());
293 if (endsWithVersionOrSegment) {
299 authorization(prefix, interest,
nullptr, accept, reject);
303 Dispatcher::processAuthorizedStatusDatasetInterest(
const std::string& requester,
309 bind(&Dispatcher::sendStatusDatasetSegment,
this, _1, _2, _3, _4),
310 bind(&Dispatcher::sendControlResponse,
this, _1, interest,
true));
311 handler(prefix, interest, context);
315 Dispatcher::sendStatusDatasetSegment(
const Name& dataName,
const Block& content,
316 time::milliseconds imsFresh,
bool isFinalBlock)
320 auto destination = SendDestination::IMS;
321 if (dataName[-1].toSegment() == 0) {
322 destination = SendDestination::FACE_AND_IMS;
330 sendData(dataName, content, metaInfo, destination, imsFresh);
336 if (!m_topLevelPrefixes.empty()) {
337 BOOST_THROW_EXCEPTION(std::domain_error(
"one or more top-level prefix has been added"));
340 if (isOverlappedWithOthers(relPrefix)) {
341 BOOST_THROW_EXCEPTION(std::out_of_range(
"relPrefix overlaps with another relPrefix"));
345 InterestHandler missContinuation = bind([]{});
348 m_handlers[relPrefix] = bind(&Dispatcher::queryStorage,
this, _1, _2, missContinuation);
349 m_streams[relPrefix] = 0;
350 return bind(&Dispatcher::postNotification,
this, _1, relPrefix);
354 Dispatcher::postNotification(
const Block& notification,
const PartialName& relPrefix)
356 if (m_topLevelPrefixes.empty() || m_topLevelPrefixes.size() > 1) {
357 NDN_LOG_WARN(
"postNotification: no top-level prefix or too many top-level prefixes");
361 Name streamName(m_topLevelPrefixes.begin()->second.topPrefix);
362 streamName.
append(relPrefix);
367 sendData(streamName, notification,
MetaInfo(), SendDestination::FACE_AND_IMS,
368 DEFAULT_FRESHNESS_PERIOD);
represents a CachePolicy header field
Copyright (c) 2011-2015 Regents of the University of California.
indicates a producer generated NACK
std::function< void(const Block ¬ification)> PostNotification
a function to post a notification
represents a dispatcher on server side of NFD Management protocol
const Component & get(ssize_t i) const
Get the component at the given index.
RejectReply
indicate how to reply in case authorization is rejected
const RegisteredPrefixId * setInterestFilter(const InterestFilter &interestFilter, const InterestCallback &onInterest, const RegisterPrefixFailureCallback &onFailure, const security::SigningInfo &signingInfo=security::SigningInfo(), uint64_t flags=nfd::ROUTE_FLAG_CHILD_INHERIT)
Set InterestFilter to dispatch incoming matching interest to onInterest callback and register the fil...
reply with a ControlResponse where StatusCode is 403
CachePolicy & setPolicy(CachePolicyType policy)
set policy type code
The packet signing interface.
Class representing a wire element of NDN-TLV packet format.
represents an Interest packet
const Block & wireEncode() const
std::function< void(RejectReply act)> RejectContinuation
a function to be called if authorization is rejected
std::function< void(const std::string &requester)> AcceptContinuation
a function to be called if authorization is successful
void sign(Data &data, const SigningInfo ¶ms=DEFAULT_SIGNING_INFO)
Sign data according to the supplied signing information.
Authorization makeAcceptAllAuthorization()
Signing parameters passed to KeyChain.
void unregisterPrefix(const RegisteredPrefixId *registeredPrefixId, const UnregisterPrefixSuccessCallback &onSuccess, const UnregisterPrefixFailureCallback &onFailure)
Unregister prefix from RIB.
Dispatcher(Face &face, security::KeyChain &keyChain, const security::SigningInfo &signingInfo=security::SigningInfo(), size_t imsCapacity=256)
constructor
Name & appendSequenceNumber(uint64_t seqNo)
Append sequence number using NDN naming conventions.
#define NDN_LOG_INIT(name)
declare a log module
ndn::mgmt::ControlResponse ControlResponse
Provide a communication channel with local or remote NDN forwarder.
void addTopPrefix(const Name &prefix, bool wantRegister=true, const security::SigningInfo &signingInfo=security::SigningInfo())
add a top-level prefix
function< void(const Name &, const std::string &)> RegisterPrefixFailureCallback
Callback invoked when registerPrefix or setInterestFilter command fails.
Name abstraction to represent an absolute name.
bool isPrefixOf(const Name &name) const
Check if the N components of this name are the same as the first N components of the given name...
const time::milliseconds DEFAULT_FRESHNESS_PERIOD
void unsetInterestFilter(const RegisteredPrefixId *registeredPrefixId)
Remove the registered prefix entry with the registeredPrefixId.
base class for a struct that contains ControlCommand parameters
size_t size() const
Get the number of components.
Component holds a read-only name component value.
std::function< void(const Name &prefix, const Interest &interest, const ControlParameters ¶ms, const CommandContinuation &done)> ControlCommandHandler
a function to handle an authorized ControlCommand
void addStatusDataset(const PartialName &relPrefix, const Authorization &authorization, const StatusDatasetHandler &handler)
register a StatusDataset or a prefix under which StatusDatasets can be requested
std::function< bool(const ControlParameters ¶ms)> ValidateParameters
a function to validate input ControlParameters
Name & append(const uint8_t *value, size_t valueLength)
Append a new component, copying from value of length valueLength.
void removeTopPrefix(const Name &prefix)
remove a top-level prefix
#define NDN_LOG_ERROR(expression)
#define NDN_LOG_WARN(expression)
provides a context for generating response to a StatusDataset request
std::function< void(const Name &prefix, const Interest &interest, const ControlParameters *params, const AcceptContinuation &accept, const RejectContinuation &reject)> Authorization
a function that performs authorization
const RegisteredPrefixId * registerPrefix(const Name &prefix, const RegisterPrefixSuccessCallback &onSuccess, const RegisterPrefixFailureCallback &onFailure, const security::SigningInfo &signingInfo=security::SigningInfo(), uint64_t flags=nfd::ROUTE_FLAG_CHILD_INHERIT)
Register prefix with the connected NDN forwarder.
represents an error in TLV encoding or decoding
PostNotification addNotificationStream(const PartialName &relPrefix)
register a NotificationStream
void put(const Data &data)
Publish data packet.
const Name & getName() const
std::function< void(const Name &prefix, const Interest &interest, StatusDatasetContext &context)> StatusDatasetHandler
a function to handle a StatusDataset request