1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
/*
* Dibbler - a portable DHCPv6
*
* authors: Tomasz Mrugalski <thomson@klub.com.pl>
* Marek Senderski <msend@o2.pl>
*
* released under GNU GPL v2 licence
*
* $Id: DHCPServer.cpp,v 1.30 2008-08-17 22:41:43 thomson Exp $
*/
#include "DHCPServer.h"
#include "AddrClient.h"
#include "Logger.h"
volatile int serviceShutdown;
TDHCPServer::TDHCPServer(string config)
{
serviceShutdown = 0;
srand(now());
this->IsDone = false;
this->IfaceMgr = new TSrvIfaceMgr(SRVIFACEMGR_FILE);
if ( this->IfaceMgr->isDone() ) {
Log(Crit) << "Fatal error during IfaceMgr initialization." << LogEnd;
this->IsDone = true;
return;
}
this->IfaceMgr->dump();
this->AddrMgr = new TSrvAddrMgr(SRVADDRMGR_FILE);
if ( this->AddrMgr->isDone() ) {
Log(Crit) << "Fatal error during IfaceMgr initialization." << LogEnd;
this->IsDone = true;
return;
}
this->AddrMgr->dump();
this->CfgMgr = new TSrvCfgMgr(IfaceMgr, config, SRVCFGMGR_FILE);
if ( this->CfgMgr->isDone() ) {
Log(Crit) << "Fatal error during CfgMgr initialization." << LogEnd;
this->IsDone = true;
return;
}
this->CfgMgr->dump();
this->TransMgr = new TSrvTransMgr(IfaceMgr, AddrMgr, CfgMgr, SRVTRANSMGR_FILE);
if ( this->TransMgr->isDone() ) {
Log(Crit) << "Fatal error during TransMgr initialization." << LogEnd;
this->IsDone = true;
return;
}
this->IfaceMgr->dump(); // dump it once more (important, if relay interfaces were added)
this->TransMgr->dump();
TransMgr->setContext(TransMgr);
}
void TDHCPServer::run()
{
bool silent = false;
while ( (!this->isDone()) && (!TransMgr->isDone()) ) {
if (serviceShutdown)
TransMgr->shutdown();
TransMgr->doDuties();
unsigned int timeout = TransMgr->getTimeout();
if (timeout == 0) timeout = 1;
if (serviceShutdown) timeout = 0;
if (!silent)
Log(Notice) << "Accepting connections. Next event in " << timeout
<< " second(s)." << LogEnd;
#ifdef WIN32
// There's no easy way to break select, so just don't sleep for too long.
if (timeout>5) {
silent = true;
timeout = 5;
}
#endif
SmartPtr<TSrvMsg> msg=IfaceMgr->select(timeout);
if (!msg)
continue;
silent = false;
int iface = msg->getIface();
SmartPtr<TIfaceIface> ptrIface;
ptrIface = IfaceMgr->getIfaceByID(iface);
Log(Notice) << "Received " << msg->getName() << " on " << ptrIface->getName()
<< "/" << iface << hex << ",TransID=0x" << msg->getTransID()
<< dec << ", " << msg->countOption() << " opts:";
SmartPtr<TOpt> ptrOpt;
msg->firstOption();
while (ptrOpt = msg->getOption() )
Log(Cont) << " " << ptrOpt->getOptType();
Log(Cont) << ", " << msg->getRelayCount() << " relay(s)." << LogEnd;
if (CfgMgr->stateless() && ( (msg->getType()!=INFORMATION_REQUEST_MSG) &&
(msg->getType()!=RELAY_FORW_MSG))) {
Log(Warning)
<< "Stateful configuration related message received while running in the stateless mode. Message ignored."
<< LogEnd;
continue;
}
TransMgr->relayMsg(msg);
}
Log(Notice) << "Bye bye." << LogEnd;
}
bool TDHCPServer::isDone() {
return IsDone;
}
bool TDHCPServer::checkPrivileges() {
// FIXME: check privileges
return true;
}
void TDHCPServer::stop() {
serviceShutdown = 1;
Log(Warning) << "Service SHUTDOWN." << LogEnd;
}
void TDHCPServer::setWorkdir(std::string workdir) {
if (this->CfgMgr) {
this->CfgMgr->setWorkdir(workdir);
this->CfgMgr->dump();
}
}
TDHCPServer::~TDHCPServer()
{
if (TransMgr)
TransMgr->setContext(0);
this->TransMgr = 0;
this->AddrMgr = 0;
this->CfgMgr = 0;
this->IfaceMgr = 0;
}
|