]> git.decadent.org.uk Git - odhcp6c.git/blobdiff - src/odhcp6c.c
Remove timeout feature
[odhcp6c.git] / src / odhcp6c.c
index 9126986ca7a2ed4b53ca5dc107e9ad7772ddd865..4e50758c1aee91775f53f73959998eb0cfa9cc5c 100644 (file)
@@ -31,8 +31,6 @@
 
 
 static void sighandler(int signal);
-static int sysctl_interface(const char *ifname, const char *option,
-               const char *data);
 static int usage(void);
 
 
@@ -55,14 +53,10 @@ int main(_unused int argc, char* const argv[])
        uint16_t opttype;
        enum odhcp6c_ia_mode ia_na_mode = IA_MODE_TRY;
 
-       bool help = false, daemonize = false, reset = false;
-       int c, request_pd = 0, timeout = 0;
-       while ((c = getopt(argc, argv, "RN:P:c:r:s:t:hdp:")) != -1) {
+       bool help = false, daemonize = false;
+       int c, request_pd = 0;
+       while ((c = getopt(argc, argv, "N:P:c:r:s:hdp:")) != -1) {
                switch (c) {
-               case 'R':
-                       reset = true;
-                       break;
-
                case 'N':
                        if (!strcmp(optarg, "force"))
                                ia_na_mode = IA_MODE_FORCE;
@@ -109,10 +103,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;
@@ -140,19 +130,11 @@ int main(_unused int argc, char* const argv[])
 
        signal(SIGHUP, sighandler);
        signal(SIGINT, sighandler);
-       signal(SIGALRM, sighandler);
        signal(SIGCHLD, sighandler);
        signal(SIGTERM, sighandler);
        signal(SIGUSR1, sighandler);
        signal(SIGUSR2, sighandler);
 
-       // Configure interface to accept RA
-       if (reset) {
-               sysctl_interface(ifname, "disable_ipv6", "1");
-               sysctl_interface(ifname, "accept_ra", "2");
-               sysctl_interface(ifname, "disable_ipv6", "0");
-       }
-
        if (daemonize) {
                openlog("odhcp6c", LOG_PID, LOG_DAEMON); // Disable LOG_PERROR
                if (daemon(0, 0)) {
@@ -177,14 +159,18 @@ int main(_unused int argc, char* const argv[])
                }
        }
 
+       script_call("started");
+
        while (do_signal != SIGTERM) { // Main logic
                odhcp6c_clear_state(STATE_SERVER_ID);
                odhcp6c_clear_state(STATE_SERVER_CAND);
                odhcp6c_clear_state(STATE_IA_PD);
-               odhcp6c_clear_state(STATE_IA_PD_LOST);
+               odhcp6c_clear_state(STATE_SNTP_IP);
+               odhcp6c_clear_state(STATE_SNTP_FQDN);
+               odhcp6c_clear_state(STATE_SIP_IP);
+               odhcp6c_clear_state(STATE_SIP_FQDN);
                dhcpv6_set_ia_na_mode(ia_na_mode);
 
-               alarm(timeout);
                do_signal = 0;
                int res = dhcpv6_request(DHCPV6_MSG_SOLICIT);
 
@@ -202,14 +188,10 @@ int main(_unused int argc, char* const argv[])
                                else if (res > 0)
                                        script_call("informed");
 
-                               alarm(0);
                                if (dhcpv6_poll_reconfigure() > 0)
                                        script_call("informed");
                        }
 
-                       if (do_signal == SIGALRM)
-                               script_call("timeout");
-
                        continue;
                }
 
@@ -218,7 +200,6 @@ int main(_unused int argc, char* const argv[])
                        continue;
 
                script_call("bound");
-               alarm(0);
 
                while (do_signal == 0 || do_signal == SIGUSR1) {
                        // Renew Cycle
@@ -268,18 +249,13 @@ int main(_unused int argc, char* const argv[])
 
 
                size_t ia_pd_len, ia_na_len, server_id_len;
-               uint8_t *ia_pd = odhcp6c_get_state(STATE_IA_PD, &ia_pd_len);
+               odhcp6c_get_state(STATE_IA_PD, &ia_pd_len);
                odhcp6c_get_state(STATE_IA_NA, &ia_na_len);
                odhcp6c_get_state(STATE_SERVER_ID, &server_id_len);
 
                // Add all prefixes to lost prefixes
-               odhcp6c_add_state(STATE_IA_PD_LOST, ia_pd, ia_pd_len);
                odhcp6c_clear_state(STATE_IA_PD);
-
-               if (do_signal == SIGALRM)
-                       script_call("timeout");
-               else
-                       script_call("unbound");
+               script_call("unbound");
 
                // Remove assigned addresses
                if (ia_na_len > 0)
@@ -289,6 +265,7 @@ int main(_unused int argc, char* const argv[])
                        dhcpv6_request(DHCPV6_MSG_RELEASE);
        }
 
+       script_call("stopped");
        return 0;
 }
 
@@ -303,7 +280,6 @@ static int usage(void)
        "       -c <clientid>   Override client-ID (base-16 encoded)\n"
        "       -r <options>    Options to be requested (comma-separated)\n"
        "       -s <script>     Status update script (/usr/sbin/odhcp6c-update)\n"
-       "       -t <timeout>    Request timeout after which the script is called\n"
        "\nInvocation options:\n"
        "       -p <pidfile>    Set pidfile (/var/run/6relayd.pid)\n"
        "       -d              Daemonize\n"
@@ -315,7 +291,7 @@ static int usage(void)
 
 
 // Don't want to pull-in librt and libpthread just for a monotonic clock...
-uint64_t adhc6c_get_milli_time(void)
+uint64_t odhcp6c_get_milli_time(void)
 {
        struct timespec t = {0, 0};
        syscall(SYS_clock_gettime, CLOCK_MONOTONIC, &t);
@@ -328,7 +304,6 @@ static uint8_t* odhcp6c_resize_state(enum odhcp6c_state state, ssize_t len)
        if (len == 0)
                return state_data[state] + state_len[state];
 
-       syslog(LOG_WARNING, "state_reisze: %i %i %i", (int)state, (int)state_len[state], (int)len);
        uint8_t *n = realloc(state_data[state], state_len[state] + len);
        if (n || state_len[state] + len == 0) {
                state_data[state] = n;
@@ -391,21 +366,6 @@ void* odhcp6c_get_state(enum odhcp6c_state state, size_t *len)
 }
 
 
-static int sysctl_interface(const char *ifname, const char *option,
-               const char *data)
-{
-       char pathbuf[64];
-       const char *sysctl_pattern = "/proc/sys/net/ipv6/conf/%s/%s";
-       snprintf(pathbuf, sizeof(pathbuf), sysctl_pattern, ifname, option);
-
-       int fd = open(pathbuf, O_WRONLY);
-       int written = write(fd, data, strlen(data));
-       close(fd);
-
-       return (written > 0) ? 0 : -1;
-}
-
-
 static void sighandler(int signal)
 {
        if (signal == SIGCHLD)
@@ -414,8 +374,6 @@ static void sighandler(int signal)
                do_signal = SIGUSR1;
        else if (signal == SIGUSR2)
                do_signal = SIGUSR2;
-       else if (signal == SIGALRM)
-               do_signal = SIGALRM;
        else
                do_signal = SIGTERM;
 }