]> git.decadent.org.uk Git - odhcp6c.git/blob - src/odhcp6c.c
Add SNTP option support
[odhcp6c.git] / src / odhcp6c.c
1 /**
2  * Copyright (C) 2012 Steven Barth <steven@midlink.org>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License v2 as published by
6  * the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  */
14
15 #include <time.h>
16 #include <errno.h>
17 #include <fcntl.h>
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <unistd.h>
21 #include <syslog.h>
22 #include <signal.h>
23 #include <string.h>
24 #include <stdbool.h>
25
26 #include <net/if.h>
27 #include <sys/wait.h>
28 #include <sys/syscall.h>
29
30 #include "odhcp6c.h"
31
32
33 static void sighandler(int signal);
34 static int usage(void);
35
36
37 static uint8_t *state_data[_STATE_MAX] = {NULL};
38 static size_t state_len[_STATE_MAX] = {0};
39
40 static volatile int do_signal = 0;
41
42
43 int main(_unused int argc, char* const argv[])
44 {
45         openlog("odhcp6c", LOG_PERROR | LOG_PID, LOG_DAEMON);
46
47         // Allocate ressources
48         const char *pidfile = NULL;
49         const char *script = "/usr/sbin/odhcp6c-update";
50         ssize_t l;
51         uint8_t buf[134];
52         char *optpos;
53         uint16_t opttype;
54         enum odhcp6c_ia_mode ia_na_mode = IA_MODE_TRY;
55
56         bool help = false, daemonize = false;
57         int c, request_pd = 0, timeout = 0;
58         while ((c = getopt(argc, argv, "N:P:c:r:s:t:hdp:")) != -1) {
59                 switch (c) {
60                 case 'N':
61                         if (!strcmp(optarg, "force"))
62                                 ia_na_mode = IA_MODE_FORCE;
63                         else if (!strcmp(optarg, "none"))
64                                 ia_na_mode = IA_MODE_NONE;
65                         else if (!strcmp(optarg, "try"))
66                                 ia_na_mode = IA_MODE_TRY;
67                         else
68                                 help = true;
69                         break;
70
71                 case 'P':
72                         request_pd = strtoul(optarg, NULL, 10);
73                         if (request_pd == 0)
74                                 request_pd = -1;
75                         break;
76
77                 case 'c':
78                         l = script_unhexlify(&buf[4], sizeof(buf) - 4, optarg);
79                         if (l > 0) {
80                                 buf[0] = 0;
81                                 buf[1] = DHCPV6_OPT_CLIENTID;
82                                 buf[2] = 0;
83                                 buf[4] = l;
84                                 odhcp6c_add_state(STATE_CLIENT_ID, buf, l + 4);
85                         } else {
86                                 help = true;
87                         }
88                         break;
89
90                 case 'r':
91                         optpos = optarg;
92                         while (optpos[0]) {
93                                 opttype = htons(strtoul(optarg, &optpos, 10));
94                                 if (optpos == optarg)
95                                         break;
96                                 else if (optpos[0])
97                                         optarg = &optpos[1];
98                                 odhcp6c_add_state(STATE_ORO, &opttype, 2);
99                         }
100                         break;
101
102                 case 's':
103                         script = optarg;
104                         break;
105
106                 case 't':
107                         timeout = strtoul(optarg, NULL, 10);
108                         break;
109
110                 case 'd':
111                         daemonize = true;
112                         break;
113
114                 case 'p':
115                         pidfile = optarg;
116                         break;
117
118                 default:
119                         help = true;
120                         break;
121                 }
122         }
123
124         const char *ifname = argv[optind];
125
126         if (help || !ifname)
127                 return usage();
128
129         if (init_dhcpv6(ifname, request_pd) || init_rtnetlink() ||
130                         script_init(script, ifname)) {
131                 syslog(LOG_ERR, "failed to initialize: %s", strerror(errno));
132                 return 3;
133         }
134
135         signal(SIGHUP, sighandler);
136         signal(SIGINT, sighandler);
137         signal(SIGALRM, sighandler);
138         signal(SIGCHLD, sighandler);
139         signal(SIGTERM, sighandler);
140         signal(SIGUSR1, sighandler);
141         signal(SIGUSR2, sighandler);
142
143         if (daemonize) {
144                 openlog("odhcp6c", LOG_PID, LOG_DAEMON); // Disable LOG_PERROR
145                 if (daemon(0, 0)) {
146                         syslog(LOG_ERR, "Failed to daemonize: %s",
147                                         strerror(errno));
148                         return 4;
149                 }
150
151                 char pidbuf[128];
152                 if (!pidfile) {
153                         snprintf(pidbuf, sizeof(pidbuf),
154                                         "/var/run/odhcp6c.%s.pid", ifname);
155                         pidfile = pidbuf;
156                 }
157
158                 int fd = open(pidfile, O_WRONLY | O_CREAT);
159                 if (fd >= 0) {
160                         char buf[8];
161                         int len = snprintf(buf, sizeof(buf), "%i\n", getpid());
162                         write(fd, buf, len);
163                         close(fd);
164                 }
165         }
166
167         script_call("started");
168
169         while (do_signal != SIGTERM) { // Main logic
170                 odhcp6c_clear_state(STATE_SERVER_ID);
171                 odhcp6c_clear_state(STATE_SERVER_CAND);
172                 odhcp6c_clear_state(STATE_IA_PD);
173                 odhcp6c_clear_state(STATE_IA_PD_LOST);
174                 odhcp6c_clear_state(STATE_SNTP_IP);
175                 odhcp6c_clear_state(STATE_SNTP_FQDN);
176                 dhcpv6_set_ia_na_mode(ia_na_mode);
177
178                 alarm(timeout);
179                 do_signal = 0;
180                 int res = dhcpv6_request(DHCPV6_MSG_SOLICIT);
181
182                 if (res < 0) {
183                         continue; // Might happen if we got a signal
184                 } else if (res == DHCPV6_STATELESS) { // Stateless mode
185                         while (do_signal == 0 || do_signal == SIGUSR1) {
186                                 do_signal = 0;
187
188                                 res = dhcpv6_request(DHCPV6_MSG_INFO_REQ);
189                                 if (do_signal == SIGUSR1)
190                                         continue;
191                                 else if (res < 0)
192                                         break;
193                                 else if (res > 0)
194                                         script_call("informed");
195
196                                 alarm(0);
197                                 if (dhcpv6_poll_reconfigure() > 0)
198                                         script_call("informed");
199                         }
200
201                         if (do_signal == SIGALRM)
202                                 script_call("timeout");
203
204                         continue;
205                 }
206
207                 // Stateful mode
208                 if (dhcpv6_request(DHCPV6_MSG_REQUEST) < 0)
209                         continue;
210
211                 script_call("bound");
212                 alarm(0);
213
214                 while (do_signal == 0 || do_signal == SIGUSR1) {
215                         // Renew Cycle
216                         // Wait for T1 to expire or until we get a reconfigure
217                         int res = dhcpv6_poll_reconfigure();
218                         if (res >= 0) {
219                                 if (res > 0)
220                                         script_call("updated");
221
222                                 continue;
223                         }
224
225                         // Handle signal, if necessary
226                         if (do_signal == SIGUSR1)
227                                 do_signal = 0; // Acknowledged
228                         else if (do_signal > 0)
229                                 break; // Other signal type
230
231                         size_t ia_pd_len, ia_na_len, ia_pd_new, ia_na_new;
232                         odhcp6c_get_state(STATE_IA_PD, &ia_pd_len);
233                         odhcp6c_get_state(STATE_IA_NA, &ia_na_len);
234
235                         // If we have any IAs, send renew, otherwise request
236                         int r;
237                         if (ia_pd_len == 0 && ia_na_len == 0)
238                                 r = dhcpv6_request(DHCPV6_MSG_REQUEST);
239                         else
240                                 r = dhcpv6_request(DHCPV6_MSG_RENEW);
241                         if (r > 0) // Publish updates
242                                 script_call("updated");
243                         if (r >= 0)
244                                 continue; // Renew was successful
245
246                         odhcp6c_clear_state(STATE_SERVER_ID); // Remove binding
247
248                         // If we have IAs, try rebind otherwise restart
249                         res = dhcpv6_request(DHCPV6_MSG_REBIND);
250
251                         odhcp6c_get_state(STATE_IA_PD, &ia_pd_new);
252                         odhcp6c_get_state(STATE_IA_NA, &ia_na_new);
253                         if (res < 0 || (ia_pd_new == 0 && ia_pd_len) ||
254                                         (ia_na_new == 0 && ia_na_len))
255                                 break; // We lost all our IAs, restart
256                         else if (res > 0)
257                                 script_call("rebound");
258                 }
259
260
261                 size_t ia_pd_len, ia_na_len, server_id_len;
262                 uint8_t *ia_pd = odhcp6c_get_state(STATE_IA_PD, &ia_pd_len);
263                 odhcp6c_get_state(STATE_IA_NA, &ia_na_len);
264                 odhcp6c_get_state(STATE_SERVER_ID, &server_id_len);
265
266                 // Add all prefixes to lost prefixes
267                 odhcp6c_add_state(STATE_IA_PD_LOST, ia_pd, ia_pd_len);
268                 odhcp6c_clear_state(STATE_IA_PD);
269
270                 if (do_signal == SIGALRM)
271                         script_call("timeout");
272                 else
273                         script_call("unbound");
274
275                 // Remove assigned addresses
276                 if (ia_na_len > 0)
277                         dhcpv6_remove_addrs();
278
279                 if (server_id_len > 0 && (ia_pd_len > 0 || ia_na_len > 0))
280                         dhcpv6_request(DHCPV6_MSG_RELEASE);
281         }
282
283         script_call("stopped");
284         return 0;
285 }
286
287
288 static int usage(void)
289 {
290         const char buf[] =
291         "Usage: odhcp6c [options] <interface>\n"
292         "\nFeature options:\n"
293         "       -N <mode>       Mode for requesting addresses [try|force|none]\n"
294         "       -P <length>     Request IPv6-Prefix (0 = auto)\n"
295         "       -c <clientid>   Override client-ID (base-16 encoded)\n"
296         "       -r <options>    Options to be requested (comma-separated)\n"
297         "       -s <script>     Status update script (/usr/sbin/odhcp6c-update)\n"
298         "       -t <timeout>    Request timeout after which the script is called\n"
299         "\nInvocation options:\n"
300         "       -p <pidfile>    Set pidfile (/var/run/6relayd.pid)\n"
301         "       -d              Daemonize\n"
302         //"     -v              Increase logging verbosity\n"
303         "       -h              Show this help\n\n";
304         write(STDERR_FILENO, buf, sizeof(buf));
305         return 1;
306 }
307
308
309 // Don't want to pull-in librt and libpthread just for a monotonic clock...
310 uint64_t odhcp6c_get_milli_time(void)
311 {
312         struct timespec t = {0, 0};
313         syscall(SYS_clock_gettime, CLOCK_MONOTONIC, &t);
314         return t.tv_sec * 1000 + t.tv_nsec / 1000000;
315 }
316
317
318 static uint8_t* odhcp6c_resize_state(enum odhcp6c_state state, ssize_t len)
319 {
320         if (len == 0)
321                 return state_data[state] + state_len[state];
322
323         uint8_t *n = realloc(state_data[state], state_len[state] + len);
324         if (n || state_len[state] + len == 0) {
325                 state_data[state] = n;
326                 n += state_len[state];
327                 state_len[state] += len;
328         }
329         return n;
330 }
331
332
333 bool odhcp6c_signal_is_pending(void)
334 {
335         return do_signal != 0;
336 }
337
338
339 void odhcp6c_clear_state(enum odhcp6c_state state)
340 {
341         state_len[state] = 0;
342 }
343
344
345 void odhcp6c_add_state(enum odhcp6c_state state, const void *data, size_t len)
346 {
347         uint8_t *n = odhcp6c_resize_state(state, len);
348         if (n)
349                 memcpy(n, data, len);
350 }
351
352
353 size_t odhcp6c_remove_state(enum odhcp6c_state state, size_t offset, size_t len)
354 {
355         uint8_t *data = state_data[state];
356         ssize_t len_after = state_len[state] - (offset + len);
357         if (len_after < 0)
358                 return state_len[state];
359
360         memmove(data + offset, data + offset + len, len_after);
361         return state_len[state] -= len;
362 }
363
364
365 bool odhcp6c_commit_state(enum odhcp6c_state state, size_t old_len)
366 {
367         size_t new_len = state_len[state] - old_len;
368         uint8_t *old_data = state_data[state], *new_data = old_data + old_len;
369         bool upd = new_len != old_len || memcmp(old_data, new_data, new_len);
370
371         memmove(old_data, new_data, new_len);
372         odhcp6c_resize_state(state, -old_len);
373
374         return upd;
375 }
376
377
378 void* odhcp6c_get_state(enum odhcp6c_state state, size_t *len)
379 {
380         *len = state_len[state];
381         return state_data[state];
382 }
383
384
385 static void sighandler(int signal)
386 {
387         if (signal == SIGCHLD)
388                 while (waitpid(-1, NULL, WNOHANG) > 0);
389         else if (signal == SIGUSR1)
390                 do_signal = SIGUSR1;
391         else if (signal == SIGUSR2)
392                 do_signal = SIGUSR2;
393         else if (signal == SIGALRM)
394                 do_signal = SIGALRM;
395         else
396                 do_signal = SIGTERM;
397 }