X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=src%2Fodhcp6c.c;h=6da604728c4f330d446e10c5c0e941c6ce529d65;hb=eb0b01e94374774609c31ab4508d8cfca8a400e1;hp=d70546b366ed4c7ebd47c554922d9ea27cd6860c;hpb=feec1ad5767b977ce47e6738930c99c22ba0ce9c;p=odhcp6c.git diff --git a/src/odhcp6c.c b/src/odhcp6c.c index d70546b..6da6047 100644 --- a/src/odhcp6c.c +++ b/src/odhcp6c.c @@ -27,6 +27,7 @@ #include #include #include +#include #include "odhcp6c.h" #include "ra.h" @@ -42,6 +43,7 @@ static size_t state_len[_STATE_MAX] = {0}; static volatile int do_signal = 0; static int urandom_fd = -1, allow_slaac_only = 0; static bool bound = false, release = true; +static time_t last_update = 0; int main(_unused int argc, char* const argv[]) @@ -54,11 +56,12 @@ int main(_unused int argc, char* const argv[]) char *optpos; uint16_t opttype; enum odhcp6c_ia_mode ia_na_mode = IA_MODE_TRY; + static struct in6_addr ifid = IN6ADDR_ANY_INIT; bool help = false, daemonize = false; int logopt = LOG_PID; int c, request_pd = 0; - while ((c = getopt(argc, argv, "S::N:P:c:r:s:khedp:")) != -1) { + while ((c = getopt(argc, argv, "S::N:P:c:i:r:s:khedp:")) != -1) { switch (c) { case 'S': allow_slaac_only = (optarg) ? atoi(optarg) : -1; @@ -97,6 +100,11 @@ int main(_unused int argc, char* const argv[]) } break; + case 'i': + if (inet_pton(AF_INET6, optarg, &ifid) != 1) + help = true; + break; + case 'r': optpos = optarg; while (optpos[0]) { @@ -150,7 +158,7 @@ int main(_unused int argc, char* const argv[]) signal(SIGUSR2, sighandler); if ((urandom_fd = open("/dev/urandom", O_CLOEXEC | O_RDONLY)) < 0 || - init_dhcpv6(ifname, request_pd) || ra_init(ifname) || + init_dhcpv6(ifname, request_pd) || ra_init(ifname, &ifid) || script_init(script, ifname)) { syslog(LOG_ERR, "failed to initialize: %s", strerror(errno)); return 3; @@ -313,6 +321,7 @@ static int usage(void) " -N Mode for requesting addresses [try|force|none]\n" " -P Request IPv6-Prefix (0 = auto)\n" " -c Override client-ID (base-16 encoded)\n" + " -i Use a custom interface identifier for RA handling\n" " -r Options to be requested (comma-separated)\n" " -s