nfd::RibManager Class Referencefinal

Implements the RIB Management of NFD Management Protocol. More...

#include <daemon/mgmt/rib-manager.hpp>

+ Inheritance diagram for nfd::RibManager:
+ Collaboration diagram for nfd::RibManager:

Public Types

using SlAnnounceCallback = std::function< void(SlAnnounceResult res)>
 
enum class  SlAnnounceResult {
  OK ,
  ERROR ,
  VALIDATION_FAILURE ,
  EXPIRED ,
  NOT_FOUND
}
 
using SlFindAnnCallback = std::function< void(std::optional< ndn::PrefixAnnouncement >)>
 

Public Member Functions

 RibManager (rib::Rib &rib, ndn::Face &face, ndn::KeyChain &keyChain, ndn::nfd::Controller &nfdController, Dispatcher &dispatcher)
 
void applyLocalhostConfig (const ConfigSection &section, const std::string &filename)
 Apply localhost_security configuration. More...
 
void applyPaConfig (const ConfigSection &section, const std::string &filename)
 Apply prefix_announcement_validation configuration. More...
 
void disableLocalhop ()
 Disallow accepting commands on /localhop/nfd/rib prefix. More...
 
void enableLocalFields ()
 Enable NDNLP IncomingFaceId field in order to support self-registration commands. More...
 
void enableLocalhop (const ConfigSection &section, const std::string &filename)
 Apply localhop_security configuration and allow accepting commands on /localhop/nfd/rib prefix. More...
 
const std::string & getModule () const
 
void registerWithNfd ()
 Start accepting commands and dataset requests. More...
 
void slAnnounce (const ndn::PrefixAnnouncement &pa, uint64_t faceId, time::milliseconds maxLifetime, const SlAnnounceCallback &cb)
 Insert a route by prefix announcement from self-learning strategy. More...
 
void slFindAnn (const Name &name, const SlFindAnnCallback &cb) const
 Retrieve an outgoing prefix announcement for self-learning strategy. More...
 
void slRenew (const Name &name, uint64_t faceId, time::milliseconds maxLifetime, const SlAnnounceCallback &cb)
 Renew a route created by prefix announcement from self-learning strategy. More...
 

Static Public Attributes

static const Name LOCALHOP_TOP_PREFIX {"/localhop/nfd"}
 

Protected Types

using ControlCommandHandler = std::function< void(const ControlCommand &command, const Name &prefix, const Interest &interest, const ControlParameters &parameters, const ndn::mgmt::CommandContinuation done)>
 

Protected Member Functions

template<typename Command >
void registerCommandHandler (const std::string &verb, const ControlCommandHandler &handler)
 
ndn::mgmt::PostNotification registerNotificationStream (const std::string &verb)
 
void registerStatusDatasetHandler (const std::string &verb, const ndn::mgmt::StatusDatasetHandler &handler)
 

Static Protected Member Functions

static std::string extractSigner (const Interest &interest)
 Extracts the name from the KeyLocator of a ControlCommand request. More...
 

Detailed Description

Implements the RIB Management of NFD Management Protocol.

See also
https://redmine.named-data.net/projects/nfd/wiki/RibMgmt

Definition at line 49 of file rib-manager.hpp.

Member Typedef Documentation

◆ ControlCommandHandler

using nfd::ManagerBase::ControlCommandHandler = std::function<void(const ControlCommand& command, const Name& prefix, const Interest& interest, const ControlParameters& parameters, const ndn::mgmt::CommandContinuation done)>
protectedinherited

Definition at line 76 of file manager-base.hpp.

◆ SlAnnounceCallback

using nfd::RibManager::SlAnnounceCallback = std::function<void(SlAnnounceResult res)>

Definition at line 101 of file rib-manager.hpp.

◆ SlFindAnnCallback

using nfd::RibManager::SlFindAnnCallback = std::function<void(std::optional<ndn::PrefixAnnouncement>)>

Definition at line 102 of file rib-manager.hpp.

Member Enumeration Documentation

◆ SlAnnounceResult

Enumerator
OK 

RIB and FIB have been updated.

ERROR 

unspecified error

VALIDATION_FAILURE 

the announcement cannot be verified against the trust schema

EXPIRED 

the announcement has expired

NOT_FOUND 

route does not exist (slRenew only)

Definition at line 93 of file rib-manager.hpp.

Constructor & Destructor Documentation

◆ RibManager()

nfd::RibManager::RibManager ( rib::Rib rib,
ndn::Face &  face,
ndn::KeyChain &  keyChain,
ndn::nfd::Controller &  nfdController,
Dispatcher &  dispatcher 
)

Definition at line 49 of file rib-manager.cpp.

Member Function Documentation

◆ applyLocalhostConfig()

void nfd::RibManager::applyLocalhostConfig ( const ConfigSection section,
const std::string &  filename 
)

Apply localhost_security configuration.

Definition at line 71 of file rib-manager.cpp.

◆ applyPaConfig()

void nfd::RibManager::applyPaConfig ( const ConfigSection section,
const std::string &  filename 
)

Apply prefix_announcement_validation configuration.

Definition at line 90 of file rib-manager.cpp.

◆ disableLocalhop()

void nfd::RibManager::disableLocalhop ( )

Disallow accepting commands on /localhop/nfd/rib prefix.

Definition at line 84 of file rib-manager.cpp.

◆ enableLocalFields()

void nfd::RibManager::enableLocalFields ( )

Enable NDNLP IncomingFaceId field in order to support self-registration commands.

Definition at line 112 of file rib-manager.cpp.

◆ enableLocalhop()

void nfd::RibManager::enableLocalhop ( const ConfigSection section,
const std::string &  filename 
)

Apply localhop_security configuration and allow accepting commands on /localhop/nfd/rib prefix.

Definition at line 77 of file rib-manager.cpp.

◆ extractSigner()

std::string nfd::ManagerBase::extractSigner ( const Interest &  interest)
staticprotectedinherited

Extracts the name from the KeyLocator of a ControlCommand request.

This is called after the signature has been validated. Returns an empty string if SignatureInfo or KeyLocator are missing or malformed.

Definition at line 62 of file manager-base.cpp.

◆ getModule()

const std::string& nfd::ManagerBase::getModule ( ) const
inlineinherited

Definition at line 60 of file manager-base.hpp.

◆ registerCommandHandler()

template<typename Command >
void nfd::ManagerBase::registerCommandHandler ( const std::string &  verb,
const ControlCommandHandler handler 
)
protectedinherited

Definition at line 150 of file manager-base.hpp.

◆ registerNotificationStream()

ndn::mgmt::PostNotification nfd::ManagerBase::registerNotificationStream ( const std::string &  verb)
protectedinherited

Definition at line 56 of file manager-base.cpp.

◆ registerStatusDatasetHandler()

void nfd::ManagerBase::registerStatusDatasetHandler ( const std::string &  verb,
const ndn::mgmt::StatusDatasetHandler &  handler 
)
protectedinherited

Definition at line 47 of file manager-base.cpp.

◆ registerWithNfd()

void nfd::RibManager::registerWithNfd ( )

Start accepting commands and dataset requests.

Definition at line 96 of file rib-manager.cpp.

◆ slAnnounce()

void nfd::RibManager::slAnnounce ( const ndn::PrefixAnnouncement &  pa,
uint64_t  faceId,
time::milliseconds  maxLifetime,
const SlAnnounceCallback cb 
)

Insert a route by prefix announcement from self-learning strategy.

Parameters
paA prefix announcement. It must contain the Data.
faceIdFace on which the announcement arrives.
maxLifetimeMaximum route lifetime as imposed by self-learning strategy.
cbCallback to receive the operation result.

If pa passes validation and is unexpired, inserts or replaces a route for the announced name and faceId whose lifetime is set to the earlier of now+maxLifetime or prefix announcement expiration time, updates FIB, and invokes cb with SlAnnounceResult::OK. In case pa expires when validation completes, invokes cb with SlAnnounceResult::EXPIRED. If pa cannot be verified by the trust schema given in rib.localhop_security config key, or the relevant config has not been loaded via enableLocalHop, invokes cb with SlAnnounceResult::VALIDATION_FAILURE.

Self-learning strategy invokes this method after receiving a Data carrying a prefix announcement.

Definition at line 354 of file rib-manager.cpp.

◆ slFindAnn()

void nfd::RibManager::slFindAnn ( const Name &  name,
const SlFindAnnCallback cb 
) const

Retrieve an outgoing prefix announcement for self-learning strategy.

Parameters
nameData name.
cbCallback to receive a prefix announcement that announces a prefix of name, or nullopt if no RIB entry is found by longest-prefix-match of name.

Self-learning strategy invokes this method before sending a Data in reply to a discovery Interest, so as to attach a prefix announcement onto that Data.

Bug:
In current implementation, if an slAnnounce operation is in progress, slFindAnn does not wait for that operation to complete and its result reflects the prior RIB state.

Definition at line 404 of file rib-manager.cpp.

◆ slRenew()

void nfd::RibManager::slRenew ( const Name &  name,
uint64_t  faceId,
time::milliseconds  maxLifetime,
const SlAnnounceCallback cb 
)

Renew a route created by prefix announcement from self-learning strategy.

Parameters
nameData name, for finding RIB entry by longest-prefix-match.
faceIdNexthop face.
maxLifetimeMaximum route lifetime as imposed by self-learning strategy.
cbCallback to receive the operation result.

If the specified route exists, prolongs its lifetime to the earlier of now+maxLifetime or prefix announcement expiration time, and invokes cb with SlAnnounceResult::OK. If the prefix announcement has expired, invokes cb with SlAnnounceResult::EXPIRED. If the route is not found, invokes cb with SlAnnounceResult::NOT_FOUND.

Self-learning strategy invokes this method after an Interest forwarded via a learned route is satisfied.

Bug:
In current implementation, if an slAnnounce operation is in progress to create a Route or replace a prefix announcement, slRenew could fail because Route does not exist in existing RIB, or overwrite the new prefix announcement with an old one.

Definition at line 379 of file rib-manager.cpp.

Member Data Documentation

◆ LOCALHOP_TOP_PREFIX

const Name nfd::RibManager::LOCALHOP_TOP_PREFIX {"/localhop/nfd"}
inlinestatic

Definition at line 243 of file rib-manager.hpp.