blob: 13e79061bf2e54e29aa7c43a71796144ce8776ed [file] [log] [blame]
#include <cstdlib>
#include <string>
#include <sstream>
#include <cstdio>
#include <ndn-cpp-dev/face.hpp>
#include <ndn-cpp-dev/security/key-chain.hpp>
#include <ndn-cpp-dev/security/identity-certificate.hpp>
#include <ndn-cpp-dev/util/scheduler.hpp>
#include "nlsr.hpp"
#include "nlsr_conf_processor.hpp"
#include "utility/nlsr_logger.hpp"
#include "security/nlsr_km.hpp"
#include "security/nlsr_cert_store.hpp"
#include "security/nlsr_cse.hpp"
#define THIS_FILE "nlsr.cpp"
namespace nlsr
{
using namespace ndn;
using namespace std;
void
Nlsr::nlsrRegistrationFailed(const ndn::Name& name)
{
cerr << "ERROR: Failed to register prefix in local hub's daemon" << endl;
getNlsrFace()->shutdown();
}
void
Nlsr::setInterestFilterNlsr(const string& name)
{
getNlsrFace()->setInterestFilter(name,
func_lib::bind(&InterestManager::processInterest, &m_im,
boost::ref(*this), _1, _2),
func_lib::bind(&Nlsr::nlsrRegistrationFailed, this, _1));
}
void
Nlsr::initialize()
{
src::logger lg;
m_confParam.buildRouterPrefix();
m_nlsrLogger.initNlsrLogger(m_confParam.getLogDir());
m_nlsrLsdb.setLsaRefreshTime(m_confParam.getLsaRefreshTime());
m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix());
m_fib.setEntryRefreshTime(2*m_confParam.getLsaRefreshTime());
if( ! m_km.initialize(m_confParam) )
{
std::cerr<<"Can not initiate/load certificate"<<endl;
BOOST_LOG(lg)<<" "<<THIS_FILE<<" "<<__LINE__<<": "<<"Certificate initiation"
<<" error";
}
m_sm.setSeqFileName(m_confParam.getSeqFileDir());
m_sm.initiateSeqNoFromFile();
/* debugging purpose start */
cout << m_confParam;
m_adl.printAdl();
m_npl.print();
/* debugging purpose end */
m_nlsrLsdb.buildAndInstallOwnNameLsa(boost::ref(*this));
m_nlsrLsdb.buildAndInstallOwnCorLsa(boost::ref(*this));
setInterestFilterNlsr(m_confParam.getRouterPrefix());
setInterestFilterNlsr(m_confParam.getChronosyncLsaPrefix()+
m_confParam.getRouterPrefix());
setInterestFilterNlsr(m_confParam.getRootKeyPrefix());
m_slh.setSyncPrefix(m_confParam.getChronosyncSyncPrefix());
m_slh.createSyncSocket(boost::ref(*this));
m_slh.publishKeyUpdate(m_km);
m_im.scheduleInfoInterest(boost::ref(*this),10);
}
void
Nlsr::startEventLoop()
{
m_io->run();
}
int
Nlsr::usage(const string& progname)
{
cout << "Usage: " << progname << " [OPTIONS...]"<<endl;
cout << " NDN routing...." << endl;
cout << " -d, --daemon Run in daemon mode" << endl;
cout << " -f, --config_file Specify configuration file name" <<endl;
cout << " -p, --api_port port where api client will connect" <<endl;
cout << " -h, --help Display this help message" << endl;
exit(EXIT_FAILURE);
}
} // namespace nlsr
using namespace nlsr;
int
main(int argc, char **argv)
{
src::logger lg;
nlsr::Nlsr nlsr_;
string programName(argv[0]);
nlsr_.setConfFileName("nlsr.conf");
int opt;
while ((opt = getopt(argc, argv, "df:p:h")) != -1)
{
switch (opt)
{
case 'f':
nlsr_.setConfFileName(optarg);
break;
case 'd':
nlsr_.setIsDaemonProcess(optarg);
break;
case 'p':
{
stringstream sst(optarg);
int ap;
sst>>ap;
nlsr_.setApiPort(ap);
}
break;
case 'h':
default:
nlsr_.usage(programName);
return EXIT_FAILURE;
}
}
ConfFileProcessor cfp(nlsr_.getConfFileName());
int res=cfp.processConfFile(nlsr_);
if ( res < 0 )
{
std::cerr<<"Error in configuration file processing! Exiting from NLSR"<<std::endl;
return EXIT_FAILURE;
}
nlsr_.initialize();
try
{
nlsr_.startEventLoop();
}
catch(std::exception &e)
{
std::cerr << "ERROR: " << e.what() << std::endl;
}
return EXIT_SUCCESS;
}