This repository has been archived by the owner on Dec 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.c
433 lines (384 loc) · 9.75 KB
/
common.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
/*
* dhcpcd - DHCP client daemon
* Copyright (c) 2006-2016 Roy Marples <[email protected]>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/param.h>
#include <sys/time.h>
#ifdef __sun
#include <sys/sysmacros.h>
#endif
#include <assert.h>
#include <ctype.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#ifdef BSD
# include <paths.h>
#endif
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <time.h>
#include <unistd.h>
#include "common.h"
#include "dhcpcd.h"
#include "if-options.h"
#ifndef _PATH_DEVNULL
# define _PATH_DEVNULL "/dev/null"
#endif
/* Most route(4) messages are less than 256 bytes. */
#define IOVEC_BUFSIZ 256
#if USE_LOGFILE
void
logger_open(struct dhcpcd_ctx *ctx)
{
if (ctx->logfile) {
int f = O_CREAT | O_APPEND | O_TRUNC;
#ifdef O_CLOEXEC
f |= O_CLOEXEC;
#endif
ctx->log_fd = open(ctx->logfile, O_WRONLY | f, 0644);
if (ctx->log_fd == -1)
warn("open: %s", ctx->logfile);
#ifndef O_CLOEXEC
else {
if ((f = fcntl(ctx->log_fd, F_GETFD)) == -1 ||
fcntl(ctx->log_fd, F_SETFD, f | FD_CLOEXEC) == -1)
warn("fcntl: %s", ctx->logfile);
}
#endif
} else
openlog(PACKAGE, LOG_PID, LOG_DAEMON);
}
void
logger_close(struct dhcpcd_ctx *ctx)
{
if (ctx->log_fd != -1) {
close(ctx->log_fd);
ctx->log_fd = -1;
}
closelog();
}
/*
* NetBSD's gcc has been modified to check for the non standard %m in printf
* like functions and warn noisily about it that they should be marked as
* syslog like instead.
* This is all well and good, but our logger also goes via vfprintf and
* when marked as a sysloglike funcion, gcc will then warn us that the
* function should be printflike instead!
* This creates an infinte loop of gcc warnings.
* Until NetBSD solves this issue, we have to disable a gcc diagnostic
* for our fully standards compliant code in the logger function.
*/
#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 5))
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-format-attribute"
#endif
void
logger(struct dhcpcd_ctx *ctx, int pri, const char *fmt, ...)
{
va_list va;
int serrno;
#ifndef HAVE_PRINTF_M
char fmt_cpy[1024];
#endif
/* If we're printing the pidfile, don't do anything. */
if (ctx != NULL && ctx->options & DHCPCD_PRINT_PIDFILE)
return;
serrno = errno;
va_start(va, fmt);
#ifndef HAVE_PRINTF_M
/* Print strerrno(errno) in place of %m */
if (ctx == NULL || !(ctx->options & DHCPCD_QUIET) || ctx->log_fd != -1)
{
const char *p;
char *fp = fmt_cpy, *serr = NULL;
size_t fmt_left = sizeof(fmt_cpy) - 1, fmt_wrote;
for (p = fmt; *p != '\0'; p++) {
if (p[0] == '%' && p[1] == '%') {
if (fmt_left < 2)
break;
*fp++ = '%';
*fp++ = '%';
fmt_left -= 2;
p++;
} else if (p[0] == '%' && p[1] == 'm') {
if (serr == NULL) {
/* strerror_r isn't portable.
* strerror_l isn't widely found
* and also problematic to use.
* Also, if strerror_l exists then
* strerror could easily be made
* treadsafe in the same libc.
* dhcpcd is only threaded in RTEMS
* where strerror is threadsafe,
* so this should be fine. */
serr = strerror(serrno);
}
fmt_wrote = strlcpy(fp, serr, fmt_left);
if (fmt_wrote > fmt_left)
break;
fp += fmt_wrote;
fmt_left -= fmt_wrote;
p++;
} else {
*fp++ = *p;
--fmt_left;
}
if (fmt_left == 0)
break;
}
*fp++ = '\0';
fmt = fmt_cpy;
}
#endif
if ((ctx == NULL || !(ctx->options & DHCPCD_QUIET)) &&
(pri < LOG_DEBUG || (ctx && ctx->options & DHCPCD_DEBUG)))
{
va_list vac;
va_copy(vac, va);
#ifdef HAVE_PRINTF_M
errno = serrno;
#endif
vfprintf(stderr, fmt, vac);
fputc('\n', stderr);
va_end(vac);
}
/* Don't send to syslog if dumping leases or testing */
if (ctx && ctx->options & (DHCPCD_DUMPLEASE | DHCPCD_TEST))
goto out;
if (ctx && ctx->log_fd != -1) {
if (pri < LOG_DEBUG || (ctx->options & DHCPCD_DEBUG)) {
struct timeval tv;
char buf[32];
/* Write the time, syslog style. month day time - */
if (gettimeofday(&tv, NULL) != -1) {
time_t now;
struct tm tmnow;
tzset();
now = tv.tv_sec;
localtime_r(&now, &tmnow);
strftime(buf, sizeof(buf), "%b %d %T ", &tmnow);
dprintf(ctx->log_fd, "%s", buf);
}
#ifdef HAVE_PRINTF_M
errno = serrno;
#endif
vdprintf(ctx->log_fd, fmt, va);
dprintf(ctx->log_fd, "\n");
}
} else {
#ifdef HAVE_PRINTF_M
errno = serrno;
#endif
vsyslog(pri, fmt, va);
}
out:
va_end(va);
}
#endif
#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 5))
#pragma GCC diagnostic pop
#endif
ssize_t
setvar(struct dhcpcd_ctx *ctx,
char **e, const char *prefix, const char *var, const char *value)
{
size_t len = strlen(var) + strlen(value) + 3;
if (prefix)
len += strlen(prefix) + 1;
*e = malloc(len);
if (*e == NULL) {
logger(ctx, LOG_ERR, "%s: %m", __func__);
return -1;
}
if (prefix)
snprintf(*e, len, "%s_%s=%s", prefix, var, value);
else
snprintf(*e, len, "%s=%s", var, value);
return (ssize_t)len;
}
ssize_t
setvard(struct dhcpcd_ctx *ctx,
char **e, const char *prefix, const char *var, size_t value)
{
char buffer[32];
snprintf(buffer, sizeof(buffer), "%zu", value);
return setvar(ctx, e, prefix, var, buffer);
}
ssize_t
addvar(struct dhcpcd_ctx *ctx,
char ***e, const char *prefix, const char *var, const char *value)
{
ssize_t len;
len = setvar(ctx, *e, prefix, var, value);
if (len != -1)
(*e)++;
return (ssize_t)len;
}
ssize_t
addvard(struct dhcpcd_ctx *ctx,
char ***e, const char *prefix, const char *var, size_t value)
{
char buffer[32];
snprintf(buffer, sizeof(buffer), "%zu", value);
return addvar(ctx, e, prefix, var, buffer);
}
const char *
hwaddr_ntoa(const void *hwaddr, size_t hwlen, char *buf, size_t buflen)
{
const unsigned char *hp, *ep;
char *p;
if (buf == NULL)
return NULL;
if (hwlen * 3 > buflen) {
errno = ENOBUFS;
return NULL;
}
hp = hwaddr;
ep = hp + hwlen;
p = buf;
while (hp < ep) {
if (hp != hwaddr)
*p ++= ':';
p += snprintf(p, 3, "%.2x", *hp++);
}
*p ++= '\0';
return buf;
}
size_t
hwaddr_aton(uint8_t *buffer, const char *addr)
{
char c[3];
const char *p = addr;
uint8_t *bp = buffer;
size_t len = 0;
c[2] = '\0';
while (*p) {
c[0] = *p++;
if (c[0] == '\n')
continue;
c[1] = *p++;
/* Ensure that digits are hex */
if (isxdigit((unsigned char)c[0]) == 0 ||
isxdigit((unsigned char)c[1]) == 0)
{
errno = EINVAL;
return 0;
}
/* We should have at least two entries 00:01 */
if (len == 0 && *p == '\0') {
errno = EINVAL;
return 0;
}
/* Ensure that next data is EOL or a seperator with data */
if (!(*p == '\0' || *p == '\n' ||
(*p == ':' && *(p + 1) != '\0')))
{
errno = EINVAL;
return 0;
}
if (*p)
p++;
if (bp)
*bp++ = (uint8_t)strtol(c, NULL, 16);
len++;
}
return len;
}
size_t
read_hwaddr_aton(uint8_t **data, const char *path)
{
FILE *fp;
char *buf;
size_t buf_len, len;
ssize_t llen;
if ((fp = fopen(path, "r")) == NULL)
return 0;
buf = NULL;
buf_len = len = 0;
*data = NULL;
while ((llen = getline(&buf, &buf_len, fp)) != -1) {
if ((len = hwaddr_aton(NULL, buf)) != 0) {
if (buf_len >= len)
*data = (uint8_t *)buf;
else {
if ((*data = malloc(len)) == NULL)
len = 0;
}
if (len != 0)
(void)hwaddr_aton(*data, buf);
if (buf_len < len)
free(buf);
break;
}
}
fclose(fp);
return len;
}
ssize_t
recvmsg_realloc(int fd, struct msghdr *msg, int flags)
{
struct iovec *iov;
ssize_t slen;
size_t len;
void *n;
assert(msg != NULL);
assert(msg->msg_iov != NULL && msg->msg_iovlen > 0);
assert((flags & (MSG_PEEK | MSG_TRUNC)) == 0);
/* Assume we are reallocing the last iovec. */
iov = &msg->msg_iov[msg->msg_iovlen - 1];
for (;;) {
/* Passing MSG_TRUNC should return the actual size needed. */
slen = recvmsg(fd, msg, flags | MSG_PEEK | MSG_TRUNC);
if (slen == -1)
return -1;
if (!(msg->msg_flags & MSG_TRUNC))
break;
len = (size_t)slen;
/* Some kernels return the size of the receive buffer
* on truncation, not the actual size needed.
* So grow the buffer and try again. */
if (iov->iov_len == len)
len++;
else if (iov->iov_len > len)
break;
len = roundup(len, IOVEC_BUFSIZ);
if ((n = realloc(iov->iov_base, len)) == NULL)
return -1;
iov->iov_base = n;
iov->iov_len = len;
}
slen = recvmsg(fd, msg, flags);
if (slen != -1 && msg->msg_flags & MSG_TRUNC) {
/* This should not be possible ... */
errno = ENOBUFS;
return -1;
}
return slen;
}