X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=src%2Fodhcp6c.c;h=88f2ae5c7228c1b51e5781fdeb075c4ed4dc99a8;hb=920fda0ef9da478202fc330cc887e1ef3d703925;hp=50404afe85ec519c326eeef6e0b862ebb4fda2e1;hpb=e8b07f018cbdf8f2a08f93af46904e7ffb9eb123;p=odhcp6c.git diff --git a/src/odhcp6c.c b/src/odhcp6c.c index 50404af..88f2ae5 100644 --- a/src/odhcp6c.c +++ b/src/odhcp6c.c @@ -46,8 +46,6 @@ static bool bound = false, allow_slaac_only = true, release = true; int main(_unused int argc, char* const argv[]) { - openlog("odhcp6c", LOG_PERROR | LOG_PID, LOG_DAEMON); - // Allocate ressources const char *pidfile = NULL; const char *script = "/usr/sbin/odhcp6c-update"; @@ -58,8 +56,9 @@ int main(_unused int argc, char* const argv[]) enum odhcp6c_ia_mode ia_na_mode = IA_MODE_TRY; bool help = false, daemonize = false; + int logopt = LOG_PID; int c, request_pd = 0; - while ((c = getopt(argc, argv, "SN:P:c:r:s:khdp:")) != -1) { + while ((c = getopt(argc, argv, "SN:P:c:r:s:khedp:")) != -1) { switch (c) { case 'S': allow_slaac_only = false; @@ -89,7 +88,7 @@ int main(_unused int argc, char* const argv[]) buf[0] = 0; buf[1] = DHCPV6_OPT_CLIENTID; buf[2] = 0; - buf[4] = l; + buf[3] = l; odhcp6c_add_state(STATE_CLIENT_ID, buf, l + 4); } else { help = true; @@ -116,6 +115,10 @@ int main(_unused int argc, char* const argv[]) release = false; break; + case 'e': + logopt |= LOG_PERROR; + break; + case 'd': daemonize = true; break; @@ -130,18 +133,12 @@ int main(_unused int argc, char* const argv[]) } } + openlog("odhcp6c", logopt, LOG_DAEMON); const char *ifname = argv[optind]; if (help || !ifname) return usage(); - if ((urandom_fd = open("/dev/urandom", O_CLOEXEC | O_RDONLY)) < 0 || - init_dhcpv6(ifname, request_pd) || ra_init(ifname) || - script_init(script, ifname)) { - syslog(LOG_ERR, "failed to initialize: %s", strerror(errno)); - return 3; - } - signal(SIGIO, sighandler); signal(SIGHUP, sighandler); signal(SIGINT, sighandler); @@ -150,6 +147,13 @@ int main(_unused int argc, char* const argv[]) signal(SIGUSR1, sighandler); signal(SIGUSR2, sighandler); + if ((urandom_fd = open("/dev/urandom", O_CLOEXEC | O_RDONLY)) < 0 || + init_dhcpv6(ifname, request_pd) || ra_init(ifname) || + script_init(script, ifname)) { + syslog(LOG_ERR, "failed to initialize: %s", strerror(errno)); + return 3; + } + if (daemonize) { openlog("odhcp6c", LOG_PID, LOG_DAEMON); // Disable LOG_PERROR if (daemon(0, 0)) { @@ -313,6 +317,7 @@ static int usage(void) "\nInvocation options:\n" " -p Set pidfile (/var/run/6relayd.pid)\n" " -d Daemonize\n" + " -e Write logmessages to stderr\n" //" -v Increase logging verbosity\n" " -h Show this help\n\n"; write(STDERR_FILENO, buf, sizeof(buf));