3 * Copyright 2014-2015 Roy Marples <roy@marples.name>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 #if __GNUC__ > 2 || defined(__INTEL_COMPILER)
42 # define __dead __attribute__((__noreturn__))
45 # define __unused __attribute__((__unused__))
57 #define timespeccmp(tsp, usp, cmp) \
58 (((tsp)->tv_sec == (usp)->tv_sec) ? \
59 ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
60 ((tsp)->tv_sec cmp (usp)->tv_sec))
63 #define timespecsub(tsp, usp, vsp) \
65 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
66 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
67 if ((vsp)->tv_nsec < 0) { \
69 (vsp)->tv_nsec += 1000000000L; \
71 } while (/* CONSTCOND */ 0)
74 /* Incase we need to pass anything else in context to status cb */
80 do_exit(DHCPCD_CONNECTION *con, int code)
83 /* Unregister the status callback so that close doesn't spam. */
84 dhcpcd_set_status_callback(con, NULL, NULL);
92 status_cb(DHCPCD_CONNECTION *con,
93 unsigned int status, const char *status_msg, void *arg)
97 syslog(LOG_INFO, "%s", status_msg);
100 do_exit(con, EXIT_SUCCESS);
110 main(int argc, char **argv)
112 DHCPCD_CONNECTION *con;
114 struct timespec now, end, t;
116 int timeout, n, lerrno;
125 ctx.pollfd.events = POLLIN;
126 ctx.pollfd.revents = 0;
128 openlog("dhcpcd-online", LOG_PERROR, 0);
129 setlogmask(LOG_UPTO(LOG_INFO));
131 while ((n = getopt(argc, argv, "qt:x")) != -1) {
135 openlog("dhcpcd-online", 0, 0);
138 lnum = strtol(optarg, &lend, 0);
139 if (lend == NULL || *lend != '\0' ||
140 lnum < 0 || lnum > INT_MAX)
142 syslog(LOG_ERR, "-t %s: invalid timeout",
152 fprintf(stderr, "usage: dhcpcd-online "
153 "[-q] [-t timeout]\n");
158 if ((con = dhcpcd_new()) == NULL) {
159 syslog(LOG_ERR, "dhcpcd_new: %m");
162 dhcpcd_set_status_callback(con, status_cb, &ctx);
164 if ((ctx.pollfd.fd = dhcpcd_open(con, false)) == -1) {
166 syslog(LOG_WARNING, "dhcpcd_open: %m");
168 do_exit(con, EXIT_FAILURE);
172 /* Work out our timeout time */
173 if (clock_gettime(CLOCK_MONOTONIC, &end) == -1) {
174 syslog(LOG_ERR, "clock_gettime: %m");
175 do_exit(con, EXIT_FAILURE);
177 end.tv_sec += timeout;
180 if (clock_gettime(CLOCK_MONOTONIC, &now) == -1) {
181 syslog(LOG_ERR, "clock_gettime: %m");
182 do_exit(con, EXIT_FAILURE);
184 if (timespeccmp(&now, &end, >)) {
185 syslog(LOG_ERR, "timed out");
186 do_exit(con, EXIT_FAILURE);
188 if (ctx.pollfd.fd == -1) {
189 n = poll(NULL, 0, DHCPCD_RETRYOPEN);
191 /* poll(2) should really take a timespec */
192 timespecsub(&end, &now, &t);
193 if (t.tv_sec > INT_MAX / 1000 ||
194 (t.tv_sec == INT_MAX / 1000 &&
195 (t.tv_nsec + 999999) / 1000000 > INT_MAX % 1000000))
198 timeout = (int)(t.tv_sec * 1000 +
199 (t.tv_nsec + 999999) / 1000000);
200 n = poll(&ctx.pollfd, 1, timeout);
203 syslog(LOG_ERR, "poll: %m");
204 do_exit(con, EXIT_FAILURE);
206 if (ctx.pollfd.fd == -1) {
207 if ((ctx.pollfd.fd = dhcpcd_open(con, false)) == -1) {
208 if (lerrno != errno) {
210 syslog(LOG_WARNING, "dhcpcd_open: %m");
214 if (n > 0 && ctx.pollfd.revents)
215 dhcpcd_dispatch(con);
219 /* Impossible to reach here */
220 do_exit(con, EXIT_FAILURE);