X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=src%2Fodhcp6c.c;h=e4da1ab2767b36ef067e4cb314f413ff40f779c8;hb=61effec4509b2c0d6e3c0ee8b7ae0d318b08868e;hp=02f926aac3b00e7f6a4758e0344a4b54d3cc1168;hpb=dd5f1f8ca0a24d23dc426d6e89d9855a7b97fcec;p=odhcp6c.git diff --git a/src/odhcp6c.c b/src/odhcp6c.c index 02f926a..e4da1ab 100644 --- a/src/odhcp6c.c +++ b/src/odhcp6c.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include @@ -28,6 +29,7 @@ #include #include "odhcp6c.h" +#include "ra.h" static void sighandler(int signal); @@ -38,6 +40,8 @@ static uint8_t *state_data[_STATE_MAX] = {NULL}; static size_t state_len[_STATE_MAX] = {0}; static volatile int do_signal = 0; +static int urandom_fd = -1; +static bool bound = false; int main(_unused int argc, char* const argv[]) @@ -54,8 +58,8 @@ int main(_unused int argc, char* const argv[]) enum odhcp6c_ia_mode ia_na_mode = IA_MODE_TRY; bool help = false, daemonize = false; - int c, request_pd = 0, timeout = 0; - while ((c = getopt(argc, argv, "N:P:c:r:s:t:hdp:")) != -1) { + int c, request_pd = 0; + while ((c = getopt(argc, argv, "N:P:c:r:s:hdp:")) != -1) { switch (c) { case 'N': if (!strcmp(optarg, "force")) @@ -103,10 +107,6 @@ int main(_unused int argc, char* const argv[]) script = optarg; break; - case 't': - timeout = strtoul(optarg, NULL, 10); - break; - case 'd': daemonize = true; break; @@ -126,15 +126,16 @@ int main(_unused int argc, char* const argv[]) if (help || !ifname) return usage(); - if (init_dhcpv6(ifname, request_pd) || init_rtnetlink() || + 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); - signal(SIGALRM, sighandler); signal(SIGCHLD, sighandler); signal(SIGTERM, sighandler); signal(SIGUSR1, sighandler); @@ -175,8 +176,8 @@ int main(_unused int argc, char* const argv[]) odhcp6c_clear_state(STATE_SIP_IP); odhcp6c_clear_state(STATE_SIP_FQDN); dhcpv6_set_ia_na_mode(ia_na_mode); + bound = false; - alarm(timeout); do_signal = 0; int res = dhcpv6_request(DHCPV6_MSG_SOLICIT); @@ -194,14 +195,12 @@ int main(_unused int argc, char* const argv[]) else if (res > 0) script_call("informed"); - alarm(0); + bound = true; + if (dhcpv6_poll_reconfigure() > 0) script_call("informed"); } - if (do_signal == SIGALRM) - script_call("timeout"); - continue; } @@ -210,7 +209,7 @@ int main(_unused int argc, char* const argv[]) continue; script_call("bound"); - alarm(0); + bound = true; while (do_signal == 0 || do_signal == SIGUSR1) { // Renew Cycle @@ -265,19 +264,14 @@ int main(_unused int argc, char* const argv[]) odhcp6c_get_state(STATE_SERVER_ID, &server_id_len); // Add all prefixes to lost prefixes - odhcp6c_clear_state(STATE_IA_PD); - - if (do_signal == SIGALRM) - script_call("timeout"); - else - script_call("unbound"); - - // Remove assigned addresses - if (ia_na_len > 0) - dhcpv6_remove_addrs(); + bound = false; + script_call("unbound"); if (server_id_len > 0 && (ia_pd_len > 0 || ia_na_len > 0)) dhcpv6_request(DHCPV6_MSG_RELEASE); + + odhcp6c_clear_state(STATE_IA_NA); + odhcp6c_clear_state(STATE_IA_PD); } script_call("stopped"); @@ -295,7 +289,6 @@ static int usage(void) " -c Override client-ID (base-16 encoded)\n" " -r Options to be requested (comma-separated)\n" " -s