]> andersk Git - openssh.git/blame - misc.c
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / misc.c
CommitLineData
16d64584 1/* $OpenBSD: misc.c,v 1.75 2010/01/09 23:04:13 dtucker Exp $ */
bcbf86ec 2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
51e7a012 4 * Copyright (c) 2005,2006 Damien Miller. All rights reserved.
bcbf86ec 5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
6d24277f 27#include "includes.h"
bd7c69ea 28
b1842393 29#include <sys/types.h>
31652869 30#include <sys/ioctl.h>
9794d008 31#include <sys/socket.h>
536c14e8 32#include <sys/param.h>
9794d008 33
4c72fcfd 34#include <stdarg.h>
cf851879 35#include <stdio.h>
ffa517a8 36#include <stdlib.h>
00146caa 37#include <string.h>
5188ba17 38#include <unistd.h>
4c72fcfd 39
9794d008 40#include <netinet/in.h>
6425cf65 41#include <netinet/tcp.h>
9794d008 42
028094f4 43#include <errno.h>
d3221cca 44#include <fcntl.h>
bb4626fe 45#include <netdb.h>
a75f5360 46#ifdef HAVE_PATHS_H
6f61e0ec 47# include <paths.h>
b1842393 48#include <pwd.h>
a75f5360 49#endif
1f1fbbd8 50#ifdef SSH_TUN_OPENBSD
51#include <net/if.h>
52#endif
6d24277f 53
31652869 54#include "xmalloc.h"
1aa00dcb 55#include "misc.h"
42f11eb2 56#include "log.h"
d4530052 57#include "ssh.h"
6d24277f 58
255cabd9 59/* remove newline at end of string */
6d24277f 60char *
61chop(char *s)
62{
63 char *t = s;
64 while (*t) {
6aacefa7 65 if (*t == '\n' || *t == '\r') {
6d24277f 66 *t = '\0';
67 return s;
68 }
69 t++;
70 }
71 return s;
72
73}
74
255cabd9 75/* set/unset filedescriptor to non-blocking */
170694d7 76int
6d24277f 77set_nonblock(int fd)
78{
79 int val;
89aa792b 80
6d24277f 81 val = fcntl(fd, F_GETFL, 0);
82 if (val < 0) {
83 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
170694d7 84 return (-1);
6d24277f 85 }
a22aff1f 86 if (val & O_NONBLOCK) {
170694d7 87 debug3("fd %d is O_NONBLOCK", fd);
88 return (0);
a22aff1f 89 }
45c42d58 90 debug2("fd %d setting O_NONBLOCK", fd);
6d24277f 91 val |= O_NONBLOCK;
170694d7 92 if (fcntl(fd, F_SETFL, val) == -1) {
93 debug("fcntl(%d, F_SETFL, O_NONBLOCK): %s", fd,
94 strerror(errno));
95 return (-1);
96 }
97 return (0);
6d24277f 98}
99
170694d7 100int
89aa792b 101unset_nonblock(int fd)
102{
103 int val;
104
105 val = fcntl(fd, F_GETFL, 0);
106 if (val < 0) {
107 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
170694d7 108 return (-1);
89aa792b 109 }
110 if (!(val & O_NONBLOCK)) {
170694d7 111 debug3("fd %d is not O_NONBLOCK", fd);
112 return (0);
89aa792b 113 }
e04e7a19 114 debug("fd %d clearing O_NONBLOCK", fd);
89aa792b 115 val &= ~O_NONBLOCK;
170694d7 116 if (fcntl(fd, F_SETFL, val) == -1) {
117 debug("fcntl(%d, F_SETFL, ~O_NONBLOCK): %s",
c92ec40b 118 fd, strerror(errno));
170694d7 119 return (-1);
120 }
121 return (0);
89aa792b 122}
123
bb4626fe 124const char *
125ssh_gai_strerror(int gaierr)
126{
ea646f2c 127 if (gaierr == EAI_SYSTEM)
128 return strerror(errno);
129 return gai_strerror(gaierr);
bb4626fe 130}
131
bcc0381e 132/* disable nagle on socket */
133void
134set_nodelay(int fd)
135{
3c05447a 136 int opt;
137 socklen_t optlen;
bcc0381e 138
811a6342 139 optlen = sizeof opt;
140 if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
f7fb35fe 141 debug("getsockopt TCP_NODELAY: %.100s", strerror(errno));
811a6342 142 return;
143 }
144 if (opt == 1) {
145 debug2("fd %d is TCP_NODELAY", fd);
146 return;
147 }
148 opt = 1;
6226a8f8 149 debug2("fd %d setting TCP_NODELAY", fd);
811a6342 150 if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1)
bcc0381e 151 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
152}
153
6d24277f 154/* Characters considered whitespace in strsep calls. */
155#define WHITESPACE " \t\r\n"
533b9133 156#define QUOTE "\""
6d24277f 157
255cabd9 158/* return next token in configuration line */
6d24277f 159char *
160strdelim(char **s)
161{
162 char *old;
163 int wspace = 0;
164
165 if (*s == NULL)
166 return NULL;
167
168 old = *s;
169
533b9133 170 *s = strpbrk(*s, WHITESPACE QUOTE "=");
6d24277f 171 if (*s == NULL)
172 return (old);
173
533b9133 174 if (*s[0] == '\"') {
175 memmove(*s, *s + 1, strlen(*s)); /* move nul too */
176 /* Find matching quote */
177 if ((*s = strpbrk(*s, QUOTE)) == NULL) {
178 return (NULL); /* no matching quote */
179 } else {
180 *s[0] = '\0';
181 return (old);
182 }
183 }
184
6d24277f 185 /* Allow only one '=' to be skipped */
186 if (*s[0] == '=')
187 wspace = 1;
188 *s[0] = '\0';
189
533b9133 190 /* Skip any extra whitespace after first token */
6d24277f 191 *s += strspn(*s + 1, WHITESPACE) + 1;
192 if (*s[0] == '=' && !wspace)
193 *s += strspn(*s + 1, WHITESPACE) + 1;
194
195 return (old);
196}
1aa00dcb 197
3b1a83df 198struct passwd *
199pwcopy(struct passwd *pw)
200{
52e3daed 201 struct passwd *copy = xcalloc(1, sizeof(*copy));
5649fbbe 202
3b1a83df 203 copy->pw_name = xstrdup(pw->pw_name);
204 copy->pw_passwd = xstrdup(pw->pw_passwd);
5649fbbe 205 copy->pw_gecos = xstrdup(pw->pw_gecos);
3b1a83df 206 copy->pw_uid = pw->pw_uid;
207 copy->pw_gid = pw->pw_gid;
7751d4eb 208#ifdef HAVE_PW_EXPIRE_IN_PASSWD
c4d49b85 209 copy->pw_expire = pw->pw_expire;
7751d4eb 210#endif
211#ifdef HAVE_PW_CHANGE_IN_PASSWD
c4d49b85 212 copy->pw_change = pw->pw_change;
7751d4eb 213#endif
2605addd 214#ifdef HAVE_PW_CLASS_IN_PASSWD
3b1a83df 215 copy->pw_class = xstrdup(pw->pw_class);
2605addd 216#endif
3b1a83df 217 copy->pw_dir = xstrdup(pw->pw_dir);
218 copy->pw_shell = xstrdup(pw->pw_shell);
219 return copy;
220}
221
255cabd9 222/*
223 * Convert ASCII string to TCP/IP port number.
5134115d 224 * Port must be >=0 and <=65535.
225 * Return -1 if invalid.
255cabd9 226 */
227int
228a2port(const char *s)
2d2a2c65 229{
5134115d 230 long long port;
231 const char *errstr;
2d2a2c65 232
5134115d 233 port = strtonum(s, 0, 65535, &errstr);
234 if (errstr != NULL)
235 return -1;
236 return (int)port;
2d2a2c65 237}
238
d20f3c9e 239int
240a2tun(const char *s, int *remote)
241{
242 const char *errstr = NULL;
243 char *sp, *ep;
244 int tun;
245
246 if (remote != NULL) {
a4f24bf8 247 *remote = SSH_TUNID_ANY;
d20f3c9e 248 sp = xstrdup(s);
249 if ((ep = strchr(sp, ':')) == NULL) {
250 xfree(sp);
251 return (a2tun(s, NULL));
252 }
253 ep[0] = '\0'; ep++;
254 *remote = a2tun(ep, NULL);
255 tun = a2tun(sp, NULL);
256 xfree(sp);
a4f24bf8 257 return (*remote == SSH_TUNID_ERR ? *remote : tun);
d20f3c9e 258 }
259
260 if (strcasecmp(s, "any") == 0)
a4f24bf8 261 return (SSH_TUNID_ANY);
d20f3c9e 262
a4f24bf8 263 tun = strtonum(s, 0, SSH_TUNID_MAX, &errstr);
264 if (errstr != NULL)
265 return (SSH_TUNID_ERR);
d20f3c9e 266
267 return (tun);
268}
269
e2b1fb42 270#define SECONDS 1
271#define MINUTES (SECONDS * 60)
272#define HOURS (MINUTES * 60)
273#define DAYS (HOURS * 24)
274#define WEEKS (DAYS * 7)
275
255cabd9 276/*
277 * Convert a time string into seconds; format is
278 * a sequence of:
279 * time[qualifier]
280 *
281 * Valid time qualifiers are:
282 * <none> seconds
283 * s|S seconds
284 * m|M minutes
285 * h|H hours
286 * d|D days
287 * w|W weeks
288 *
289 * Examples:
290 * 90m 90 minutes
291 * 1h30m 90 minutes
292 * 2d 2 days
293 * 1w 1 week
294 *
295 * Return -1 if time string is invalid.
296 */
297long
298convtime(const char *s)
e2b1fb42 299{
300 long total, secs;
301 const char *p;
302 char *endp;
303
304 errno = 0;
305 total = 0;
306 p = s;
307
308 if (p == NULL || *p == '\0')
309 return -1;
310
311 while (*p) {
312 secs = strtol(p, &endp, 10);
313 if (p == endp ||
314 (errno == ERANGE && (secs == LONG_MIN || secs == LONG_MAX)) ||
315 secs < 0)
316 return -1;
317
318 switch (*endp++) {
319 case '\0':
320 endp--;
5ef36928 321 break;
e2b1fb42 322 case 's':
323 case 'S':
324 break;
325 case 'm':
326 case 'M':
327 secs *= MINUTES;
328 break;
329 case 'h':
330 case 'H':
331 secs *= HOURS;
332 break;
333 case 'd':
334 case 'D':
335 secs *= DAYS;
336 break;
337 case 'w':
338 case 'W':
339 secs *= WEEKS;
340 break;
341 default:
342 return -1;
343 }
344 total += secs;
345 if (total < 0)
346 return -1;
347 p = endp;
348 }
349
350 return total;
351}
352
d4530052 353/*
354 * Returns a standardized host+port identifier string.
355 * Caller must free returned string.
356 */
357char *
358put_host_port(const char *host, u_short port)
359{
360 char *hoststr;
361
362 if (port == 0 || port == SSH_DEFAULT_PORT)
363 return(xstrdup(host));
364 if (asprintf(&hoststr, "[%s]:%d", host, (int)port) < 0)
365 fatal("put_host_port: asprintf: %s", strerror(errno));
366 debug3("put_host_port: %s", hoststr);
367 return hoststr;
368}
369
3867aa0a 370/*
371 * Search for next delimiter between hostnames/addresses and ports.
372 * Argument may be modified (for termination).
373 * Returns *cp if parsing succeeds.
374 * *cp is set to the start of the next delimiter, if one was found.
375 * If this is the last field, *cp is set to NULL.
376 */
377char *
378hpdelim(char **cp)
379{
380 char *s, *old;
381
382 if (cp == NULL || *cp == NULL)
383 return NULL;
384
385 old = s = *cp;
386 if (*s == '[') {
387 if ((s = strchr(s, ']')) == NULL)
388 return NULL;
389 else
390 s++;
391 } else if ((s = strpbrk(s, ":/")) == NULL)
392 s = *cp + strlen(*cp); /* skip to end (see first case below) */
393
394 switch (*s) {
395 case '\0':
396 *cp = NULL; /* no more fields*/
397 break;
f8cc7664 398
3867aa0a 399 case ':':
400 case '/':
401 *s = '\0'; /* terminate */
402 *cp = s + 1;
403 break;
f8cc7664 404
3867aa0a 405 default:
406 return NULL;
407 }
408
409 return old;
410}
411
1fcde3fe 412char *
413cleanhostname(char *host)
414{
415 if (*host == '[' && host[strlen(host) - 1] == ']') {
416 host[strlen(host) - 1] = '\0';
417 return (host + 1);
418 } else
419 return host;
420}
421
422char *
423colon(char *cp)
424{
425 int flag = 0;
426
427 if (*cp == ':') /* Leading colon is part of file name. */
428 return (0);
429 if (*cp == '[')
430 flag = 1;
431
432 for (; *cp; ++cp) {
433 if (*cp == '@' && *(cp+1) == '[')
434 flag = 1;
435 if (*cp == ']' && *(cp+1) == ':' && flag)
436 return (cp+1);
437 if (*cp == ':' && !flag)
438 return (cp);
439 if (*cp == '/')
440 return (0);
441 }
442 return (0);
443}
444
255cabd9 445/* function to assist building execv() arguments */
8a624ebf 446void
447addargs(arglist *args, char *fmt, ...)
448{
449 va_list ap;
4116f5c0 450 char *cp;
9a995072 451 u_int nalloc;
4116f5c0 452 int r;
8a624ebf 453
454 va_start(ap, fmt);
4116f5c0 455 r = vasprintf(&cp, fmt, ap);
8a624ebf 456 va_end(ap);
4116f5c0 457 if (r == -1)
458 fatal("addargs: argument too long");
8a624ebf 459
c46e584f 460 nalloc = args->nalloc;
8a624ebf 461 if (args->list == NULL) {
c46e584f 462 nalloc = 32;
8a624ebf 463 args->num = 0;
c46e584f 464 } else if (args->num+2 >= nalloc)
465 nalloc *= 2;
8a624ebf 466
c5d10563 467 args->list = xrealloc(args->list, nalloc, sizeof(char *));
c46e584f 468 args->nalloc = nalloc;
4116f5c0 469 args->list[args->num++] = cp;
8a624ebf 470 args->list[args->num] = NULL;
471}
ea067773 472
4116f5c0 473void
474replacearg(arglist *args, u_int which, char *fmt, ...)
475{
476 va_list ap;
477 char *cp;
478 int r;
479
480 va_start(ap, fmt);
481 r = vasprintf(&cp, fmt, ap);
482 va_end(ap);
483 if (r == -1)
484 fatal("replacearg: argument too long");
485
486 if (which >= args->num)
487 fatal("replacearg: tried to replace invalid arg %d >= %d",
488 which, args->num);
489 xfree(args->list[which]);
490 args->list[which] = cp;
491}
492
493void
494freeargs(arglist *args)
495{
496 u_int i;
497
498 if (args->list != NULL) {
499 for (i = 0; i < args->num; i++)
500 xfree(args->list[i]);
501 xfree(args->list);
502 args->nalloc = args->num = 0;
503 args->list = NULL;
504 }
505}
506
49e71137 507/*
508 * Expands tildes in the file name. Returns data allocated by xmalloc.
509 * Warning: this calls getpw*.
510 */
511char *
512tilde_expand_filename(const char *filename, uid_t uid)
513{
514 const char *path;
515 char user[128], ret[MAXPATHLEN];
516 struct passwd *pw;
2ceb8101 517 u_int len, slash;
49e71137 518
519 if (*filename != '~')
520 return (xstrdup(filename));
521 filename++;
522
523 path = strchr(filename, '/');
524 if (path != NULL && path > filename) { /* ~user/path */
2ceb8101 525 slash = path - filename;
526 if (slash > sizeof(user) - 1)
49e71137 527 fatal("tilde_expand_filename: ~username too long");
2ceb8101 528 memcpy(user, filename, slash);
529 user[slash] = '\0';
49e71137 530 if ((pw = getpwnam(user)) == NULL)
531 fatal("tilde_expand_filename: No such user %s", user);
532 } else if ((pw = getpwuid(uid)) == NULL) /* ~/path */
852eb76b 533 fatal("tilde_expand_filename: No such uid %ld", (long)uid);
49e71137 534
535 if (strlcpy(ret, pw->pw_dir, sizeof(ret)) >= sizeof(ret))
536 fatal("tilde_expand_filename: Path too long");
537
538 /* Make sure directory has a trailing '/' */
539 len = strlen(pw->pw_dir);
540 if ((len == 0 || pw->pw_dir[len - 1] != '/') &&
541 strlcat(ret, "/", sizeof(ret)) >= sizeof(ret))
542 fatal("tilde_expand_filename: Path too long");
543
544 /* Skip leading '/' from specified path */
545 if (path != NULL)
546 filename = path + 1;
547 if (strlcat(ret, filename, sizeof(ret)) >= sizeof(ret))
548 fatal("tilde_expand_filename: Path too long");
549
550 return (xstrdup(ret));
551}
552
a980cbd7 553/*
554 * Expand a string with a set of %[char] escapes. A number of escapes may be
555 * specified as (char *escape_chars, char *replacement) pairs. The list must
6381acf0 556 * be terminated by a NULL escape_char. Returns replaced string in memory
a980cbd7 557 * allocated by xmalloc.
558 */
559char *
560percent_expand(const char *string, ...)
561{
562#define EXPAND_MAX_KEYS 16
704709cf 563 u_int num_keys, i, j;
a980cbd7 564 struct {
565 const char *key;
566 const char *repl;
567 } keys[EXPAND_MAX_KEYS];
a980cbd7 568 char buf[4096];
569 va_list ap;
570
571 /* Gather keys */
572 va_start(ap, string);
573 for (num_keys = 0; num_keys < EXPAND_MAX_KEYS; num_keys++) {
574 keys[num_keys].key = va_arg(ap, char *);
575 if (keys[num_keys].key == NULL)
576 break;
577 keys[num_keys].repl = va_arg(ap, char *);
578 if (keys[num_keys].repl == NULL)
704709cf 579 fatal("%s: NULL replacement", __func__);
a980cbd7 580 }
704709cf 581 if (num_keys == EXPAND_MAX_KEYS && va_arg(ap, char *) != NULL)
582 fatal("%s: too many keys", __func__);
a980cbd7 583 va_end(ap);
584
a980cbd7 585 /* Expand string */
586 *buf = '\0';
587 for (i = 0; *string != '\0'; string++) {
588 if (*string != '%') {
589 append:
590 buf[i++] = *string;
591 if (i >= sizeof(buf))
704709cf 592 fatal("%s: string too long", __func__);
a980cbd7 593 buf[i] = '\0';
594 continue;
595 }
596 string++;
704709cf 597 /* %% case */
a980cbd7 598 if (*string == '%')
599 goto append;
600 for (j = 0; j < num_keys; j++) {
601 if (strchr(keys[j].key, *string) != NULL) {
602 i = strlcat(buf, keys[j].repl, sizeof(buf));
603 if (i >= sizeof(buf))
704709cf 604 fatal("%s: string too long", __func__);
a980cbd7 605 break;
606 }
607 }
608 if (j >= num_keys)
704709cf 609 fatal("%s: unknown key %%%c", __func__, *string);
a980cbd7 610 }
611 return (xstrdup(buf));
612#undef EXPAND_MAX_KEYS
613}
614
ea067773 615/*
616 * Read an entire line from a public key file into a static buffer, discarding
617 * lines that exceed the buffer size. Returns 0 on success, -1 on failure.
618 */
619int
620read_keyfile_line(FILE *f, const char *filename, char *buf, size_t bufsz,
41feb690 621 u_long *lineno)
ea067773 622{
623 while (fgets(buf, bufsz, f) != NULL) {
ce4cf693 624 if (buf[0] == '\0')
625 continue;
ea067773 626 (*lineno)++;
627 if (buf[strlen(buf) - 1] == '\n' || feof(f)) {
628 return 0;
629 } else {
41feb690 630 debug("%s: %s line %lu exceeds size limit", __func__,
631 filename, *lineno);
ea067773 632 /* discard remainder of line */
f8cc7664 633 while (fgetc(f) != '\n' && !feof(f))
ea067773 634 ; /* nothing */
635 }
636 }
637 return -1;
638}
ef07103c 639
d20f3c9e 640int
a4f24bf8 641tun_open(int tun, int mode)
d20f3c9e 642{
6306853a 643#if defined(CUSTOM_SYS_TUN_OPEN)
644 return (sys_tun_open(tun, mode));
0f6cb079 645#elif defined(SSH_TUN_OPENBSD)
a4f24bf8 646 struct ifreq ifr;
d20f3c9e 647 char name[100];
a4f24bf8 648 int fd = -1, sock;
d20f3c9e 649
a4f24bf8 650 /* Open the tunnel device */
651 if (tun <= SSH_TUNID_MAX) {
d20f3c9e 652 snprintf(name, sizeof(name), "/dev/tun%d", tun);
a4f24bf8 653 fd = open(name, O_RDWR);
654 } else if (tun == SSH_TUNID_ANY) {
655 for (tun = 100; tun >= 0; tun--) {
656 snprintf(name, sizeof(name), "/dev/tun%d", tun);
657 if ((fd = open(name, O_RDWR)) >= 0)
658 break;
d20f3c9e 659 }
660 } else {
81c042a3 661 debug("%s: invalid tunnel %u", __func__, tun);
a4f24bf8 662 return (-1);
663 }
664
665 if (fd < 0) {
666 debug("%s: %s open failed: %s", __func__, name, strerror(errno));
667 return (-1);
668 }
669
670 debug("%s: %s mode %d fd %d", __func__, name, mode, fd);
671
672 /* Set the tunnel device operation mode */
673 snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "tun%d", tun);
674 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) == -1)
675 goto failed;
676
677 if (ioctl(sock, SIOCGIFFLAGS, &ifr) == -1)
678 goto failed;
b1b65311 679
680 /* Set interface mode */
681 ifr.ifr_flags &= ~IFF_UP;
682 if (mode == SSH_TUNMODE_ETHERNET)
a4f24bf8 683 ifr.ifr_flags |= IFF_LINK0;
b1b65311 684 else
685 ifr.ifr_flags &= ~IFF_LINK0;
686 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
687 goto failed;
688
689 /* Bring interface up */
a4f24bf8 690 ifr.ifr_flags |= IFF_UP;
691 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
692 goto failed;
693
694 close(sock);
695 return (fd);
696
697 failed:
698 if (fd >= 0)
699 close(fd);
700 if (sock >= 0)
701 close(sock);
702 debug("%s: failed to set %s mode %d: %s", __func__, name,
703 mode, strerror(errno));
d20f3c9e 704 return (-1);
6306853a 705#else
706 error("Tunnel interfaces are not supported on this platform");
707 return (-1);
708#endif
d20f3c9e 709}
710
fd6168c1 711void
712sanitise_stdfd(void)
713{
db382686 714 int nullfd, dupfd;
fd6168c1 715
db382686 716 if ((nullfd = dupfd = open(_PATH_DEVNULL, O_RDWR)) == -1) {
7eec82ab 717 fprintf(stderr, "Couldn't open /dev/null: %s\n",
718 strerror(errno));
fd6168c1 719 exit(1);
720 }
db382686 721 while (++dupfd <= 2) {
722 /* Only clobber closed fds */
723 if (fcntl(dupfd, F_GETFL, 0) >= 0)
724 continue;
725 if (dup2(nullfd, dupfd) == -1) {
7eec82ab 726 fprintf(stderr, "dup2: %s\n", strerror(errno));
fd6168c1 727 exit(1);
728 }
fd6168c1 729 }
730 if (nullfd > 2)
731 close(nullfd);
732}
733
ef07103c 734char *
51e7a012 735tohex(const void *vp, size_t l)
ef07103c 736{
51e7a012 737 const u_char *p = (const u_char *)vp;
ef07103c 738 char b[3], *r;
51e7a012 739 size_t i, hl;
740
741 if (l > 65536)
742 return xstrdup("tohex: length > 65536");
ef07103c 743
744 hl = l * 2 + 1;
52e3daed 745 r = xcalloc(1, hl);
ef07103c 746 for (i = 0; i < l; i++) {
51e7a012 747 snprintf(b, sizeof(b), "%02x", p[i]);
ef07103c 748 strlcat(r, b, hl);
749 }
750 return (r);
751}
752
51e7a012 753u_int64_t
754get_u64(const void *vp)
755{
756 const u_char *p = (const u_char *)vp;
757 u_int64_t v;
758
759 v = (u_int64_t)p[0] << 56;
760 v |= (u_int64_t)p[1] << 48;
761 v |= (u_int64_t)p[2] << 40;
762 v |= (u_int64_t)p[3] << 32;
763 v |= (u_int64_t)p[4] << 24;
764 v |= (u_int64_t)p[5] << 16;
765 v |= (u_int64_t)p[6] << 8;
766 v |= (u_int64_t)p[7];
767
768 return (v);
769}
770
771u_int32_t
772get_u32(const void *vp)
773{
774 const u_char *p = (const u_char *)vp;
775 u_int32_t v;
776
777 v = (u_int32_t)p[0] << 24;
778 v |= (u_int32_t)p[1] << 16;
779 v |= (u_int32_t)p[2] << 8;
780 v |= (u_int32_t)p[3];
781
782 return (v);
783}
784
785u_int16_t
786get_u16(const void *vp)
787{
788 const u_char *p = (const u_char *)vp;
789 u_int16_t v;
790
791 v = (u_int16_t)p[0] << 8;
792 v |= (u_int16_t)p[1];
793
794 return (v);
795}
796
797void
798put_u64(void *vp, u_int64_t v)
799{
800 u_char *p = (u_char *)vp;
801
802 p[0] = (u_char)(v >> 56) & 0xff;
803 p[1] = (u_char)(v >> 48) & 0xff;
804 p[2] = (u_char)(v >> 40) & 0xff;
805 p[3] = (u_char)(v >> 32) & 0xff;
806 p[4] = (u_char)(v >> 24) & 0xff;
807 p[5] = (u_char)(v >> 16) & 0xff;
808 p[6] = (u_char)(v >> 8) & 0xff;
809 p[7] = (u_char)v & 0xff;
810}
811
812void
813put_u32(void *vp, u_int32_t v)
814{
815 u_char *p = (u_char *)vp;
816
817 p[0] = (u_char)(v >> 24) & 0xff;
818 p[1] = (u_char)(v >> 16) & 0xff;
819 p[2] = (u_char)(v >> 8) & 0xff;
820 p[3] = (u_char)v & 0xff;
821}
822
823
824void
825put_u16(void *vp, u_int16_t v)
826{
827 u_char *p = (u_char *)vp;
828
829 p[0] = (u_char)(v >> 8) & 0xff;
830 p[1] = (u_char)v & 0xff;
831}
bc2d97c8 832
833void
834ms_subtract_diff(struct timeval *start, int *ms)
835{
836 struct timeval diff, finish;
837
838 gettimeofday(&finish, NULL);
839 timersub(&finish, start, &diff);
840 *ms -= (diff.tv_sec * 1000) + (diff.tv_usec / 1000);
841}
842
843void
844ms_to_timeval(struct timeval *tv, int ms)
845{
846 if (ms < 0)
847 ms = 0;
848 tv->tv_sec = ms / 1000;
849 tv->tv_usec = (ms % 1000) * 1000;
850}
851
4e1082aa 852void
853sock_set_v6only(int s)
854{
855#ifdef IPV6_V6ONLY
856 int on = 1;
857
858 debug3("%s: set socket %d IPV6_V6ONLY", __func__, s);
859 if (setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) == -1)
860 error("setsockopt IPV6_V6ONLY: %s", strerror(errno));
861#endif
862}
This page took 0.403647 seconds and 5 git commands to generate.