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
|
/*
* Dibbler - a portable DHCPv6
*
* authors: Tomasz Mrugalski <thomson@klub.com.pl>
*
* released under GNU GPL v2 only licence
*
*/
#include <string.h>
#include <signal.h>
#include <stdlib.h>
#include "DHCPRelay.h"
#include "Portable.h"
#include "Logger.h"
#include "daemon.h"
using namespace std;
TDHCPRelay * ptr = 0;
/// the default working directory
std::string WORKDIR(DEFAULT_WORKDIR);
void signal_handler(int n) {
Log(Crit) << "Signal received. Shutting down." << LogEnd;
ptr->stop();
}
int status() {
pid_t pid = getServerPID();
if (pid==-1) {
cout << "Dibbler server: NOT RUNNING." << endl;
} else {
cout << "Dibbler server: RUNNING, pid=" << pid << endl;
}
pid = getClientPID();
if (pid==-1) {
cout << "Dibbler client: NOT RUNNING." << endl;
} else {
cout << "Dibbler client: RUNNING, pid=" << pid << endl;
}
pid = getRelayPID();
if (pid==-1) {
cout << "Dibbler relay : NOT RUNNING." << endl;
} else {
cout << "Dibbler relay : RUNNING, pid=" << pid << endl;
}
return (pid>0)? 0: -1;
}
int run() {
if (!init(RELPID_FILE, WORKDIR.c_str())) {
die(RELPID_FILE);
return -1;
}
TDHCPRelay relay(RELCONF_FILE);
ptr = &relay;
if (ptr->isDone()) {
die(RELPID_FILE);
return -1;
}
// connect signals
signal(SIGTERM, signal_handler);
signal(SIGINT, signal_handler);
ptr->run();
die(RELPID_FILE);
return 0;
}
int help() {
cout << "Usage:" << endl;
cout << " dibbler-relay ACTION" << endl
<< " ACTION = status|start|stop|install|uninstall|run" << endl
<< " status - show status and exit" << endl
<< " start - start installed service" << endl
<< " stop - stop installed service" << endl
<< " install - Not available in Linux/Unix systems." << endl
<< " uninstall - Not available in Linux/Unix systems." << endl
<< " run - run in the console" << endl
<< " help - displays usage info." << endl;
return 0;
}
int main(int argc, char * argv[])
{
char command[256];
int result=-1;
logStart("(RELAY, Linux port)", "Relay", RELLOG_FILE);
// parse command line parameters
if (argc>1) {
int len = strlen(argv[1])+1;
if (len > 255)
len = 255;
strncpy(command, argv[1], len);
} else {
memset(command,0,256);
}
if (!strncasecmp(command,"start",5) ) {
result = start(RELPID_FILE, WORKDIR.c_str());
} else
if (!strncasecmp(command,"run",3) ) {
result = run();
} else
if (!strncasecmp(command,"stop",4)) {
result = stop(RELPID_FILE);
} else
if (!strncasecmp(command,"status",6)) {
result = status();
} else
if (!strncasecmp(command,"help",4)) {
result = help();
} else
if (!strncasecmp(command,"install",7)) {
cout << "Function not available in Linux/Unix systems." << endl;
result = 0;
} else
if (!strncasecmp(command,"uninstall",9)) {
cout << "Function not available in Linux/Unix systems." << endl;
result = 0;
} else
{
help();
}
logEnd();
return result? EXIT_FAILURE: EXIT_SUCCESS;
}
|