blob: 4f41332f97fb8a62c39ada05a4dbccb180ff11f8 [file] [log] [blame]
Damien Millere4340be2000-09-16 13:29:08 +11001/*
2 * Copyright (c) 2000 Markus Friedl. All rights reserved.
Damien Miller6476cad2005-06-16 13:18:34 +10003 * Copyright (c) 2005 Damien Miller. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +11004 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
Damien Miller61c51502000-08-18 14:01:04 +100026#include "includes.h"
Damien Miller7b58e802005-12-13 19:33:19 +110027RCSID("$OpenBSD: misc.c,v 1.37 2005/12/08 18:34:11 reyk Exp $");
Damien Miller61c51502000-08-18 14:01:04 +100028
Kevin Stevesb6e773a2001-02-04 13:20:36 +000029#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include "log.h"
Ben Lindstrom06909012001-03-05 06:09:31 +000031#include "xmalloc.h"
Damien Miller61c51502000-08-18 14:01:04 +100032
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000033/* remove newline at end of string */
Damien Miller61c51502000-08-18 14:01:04 +100034char *
35chop(char *s)
36{
37 char *t = s;
38 while (*t) {
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +000039 if (*t == '\n' || *t == '\r') {
Damien Miller61c51502000-08-18 14:01:04 +100040 *t = '\0';
41 return s;
42 }
43 t++;
44 }
45 return s;
46
47}
48
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000049/* set/unset filedescriptor to non-blocking */
Damien Miller232711f2004-06-15 10:35:30 +100050int
Damien Miller61c51502000-08-18 14:01:04 +100051set_nonblock(int fd)
52{
53 int val;
Ben Lindstromc93e84c2001-05-12 00:08:37 +000054
Damien Miller61c51502000-08-18 14:01:04 +100055 val = fcntl(fd, F_GETFL, 0);
56 if (val < 0) {
57 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +100058 return (-1);
Damien Miller61c51502000-08-18 14:01:04 +100059 }
Damien Miller69b69aa2000-10-28 14:19:58 +110060 if (val & O_NONBLOCK) {
Damien Miller232711f2004-06-15 10:35:30 +100061 debug3("fd %d is O_NONBLOCK", fd);
62 return (0);
Damien Miller69b69aa2000-10-28 14:19:58 +110063 }
Damien Milleref095ce2003-05-14 13:41:39 +100064 debug2("fd %d setting O_NONBLOCK", fd);
Damien Miller61c51502000-08-18 14:01:04 +100065 val |= O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +100066 if (fcntl(fd, F_SETFL, val) == -1) {
67 debug("fcntl(%d, F_SETFL, O_NONBLOCK): %s", fd,
68 strerror(errno));
69 return (-1);
70 }
71 return (0);
Damien Miller61c51502000-08-18 14:01:04 +100072}
73
Damien Miller232711f2004-06-15 10:35:30 +100074int
Ben Lindstromc93e84c2001-05-12 00:08:37 +000075unset_nonblock(int fd)
76{
77 int val;
78
79 val = fcntl(fd, F_GETFL, 0);
80 if (val < 0) {
81 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +100082 return (-1);
Ben Lindstromc93e84c2001-05-12 00:08:37 +000083 }
84 if (!(val & O_NONBLOCK)) {
Damien Miller232711f2004-06-15 10:35:30 +100085 debug3("fd %d is not O_NONBLOCK", fd);
86 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +000087 }
Ben Lindstrom352b1c22001-06-21 03:04:37 +000088 debug("fd %d clearing O_NONBLOCK", fd);
Ben Lindstromc93e84c2001-05-12 00:08:37 +000089 val &= ~O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +100090 if (fcntl(fd, F_SETFL, val) == -1) {
91 debug("fcntl(%d, F_SETFL, ~O_NONBLOCK): %s",
Ben Lindstrom84fcb312002-03-05 01:48:09 +000092 fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +100093 return (-1);
94 }
95 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +000096}
97
Damien Miller398e1cf2002-02-05 11:52:13 +110098/* disable nagle on socket */
99void
100set_nodelay(int fd)
101{
Ben Lindstrome86de512002-03-05 01:28:14 +0000102 int opt;
103 socklen_t optlen;
Damien Miller398e1cf2002-02-05 11:52:13 +1100104
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000105 optlen = sizeof opt;
106 if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
Darren Tucker6db8f932003-11-03 20:07:14 +1100107 debug("getsockopt TCP_NODELAY: %.100s", strerror(errno));
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000108 return;
109 }
110 if (opt == 1) {
111 debug2("fd %d is TCP_NODELAY", fd);
112 return;
113 }
114 opt = 1;
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000115 debug2("fd %d setting TCP_NODELAY", fd);
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000116 if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1)
Damien Miller398e1cf2002-02-05 11:52:13 +1100117 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
118}
119
Damien Miller61c51502000-08-18 14:01:04 +1000120/* Characters considered whitespace in strsep calls. */
121#define WHITESPACE " \t\r\n"
122
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000123/* return next token in configuration line */
Damien Miller61c51502000-08-18 14:01:04 +1000124char *
125strdelim(char **s)
126{
127 char *old;
128 int wspace = 0;
129
130 if (*s == NULL)
131 return NULL;
132
133 old = *s;
134
135 *s = strpbrk(*s, WHITESPACE "=");
136 if (*s == NULL)
137 return (old);
138
139 /* Allow only one '=' to be skipped */
140 if (*s[0] == '=')
141 wspace = 1;
142 *s[0] = '\0';
143
144 *s += strspn(*s + 1, WHITESPACE) + 1;
145 if (*s[0] == '=' && !wspace)
146 *s += strspn(*s + 1, WHITESPACE) + 1;
147
148 return (old);
149}
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000150
Ben Lindstrom086cf212001-03-05 05:56:40 +0000151struct passwd *
152pwcopy(struct passwd *pw)
153{
154 struct passwd *copy = xmalloc(sizeof(*copy));
Ben Lindstrom40304422001-03-05 06:22:01 +0000155
Ben Lindstrom086cf212001-03-05 05:56:40 +0000156 memset(copy, 0, sizeof(*copy));
157 copy->pw_name = xstrdup(pw->pw_name);
158 copy->pw_passwd = xstrdup(pw->pw_passwd);
Ben Lindstrom40304422001-03-05 06:22:01 +0000159 copy->pw_gecos = xstrdup(pw->pw_gecos);
Ben Lindstrom086cf212001-03-05 05:56:40 +0000160 copy->pw_uid = pw->pw_uid;
161 copy->pw_gid = pw->pw_gid;
Kevin Steves82456952001-06-22 21:14:18 +0000162#ifdef HAVE_PW_EXPIRE_IN_PASSWD
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000163 copy->pw_expire = pw->pw_expire;
Kevin Steves82456952001-06-22 21:14:18 +0000164#endif
165#ifdef HAVE_PW_CHANGE_IN_PASSWD
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000166 copy->pw_change = pw->pw_change;
Kevin Steves82456952001-06-22 21:14:18 +0000167#endif
Ben Lindstrom0f68db42001-03-05 07:57:09 +0000168#ifdef HAVE_PW_CLASS_IN_PASSWD
Ben Lindstrom086cf212001-03-05 05:56:40 +0000169 copy->pw_class = xstrdup(pw->pw_class);
Ben Lindstrom0f68db42001-03-05 07:57:09 +0000170#endif
Ben Lindstrom086cf212001-03-05 05:56:40 +0000171 copy->pw_dir = xstrdup(pw->pw_dir);
172 copy->pw_shell = xstrdup(pw->pw_shell);
173 return copy;
174}
175
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000176/*
177 * Convert ASCII string to TCP/IP port number.
178 * Port must be >0 and <=65535.
179 * Return 0 if invalid.
180 */
181int
182a2port(const char *s)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000183{
184 long port;
185 char *endp;
186
187 errno = 0;
188 port = strtol(s, &endp, 0);
189 if (s == endp || *endp != '\0' ||
190 (errno == ERANGE && (port == LONG_MIN || port == LONG_MAX)) ||
191 port <= 0 || port > 65535)
192 return 0;
193
194 return port;
195}
196
Damien Millerd27b9472005-12-13 19:29:02 +1100197int
198a2tun(const char *s, int *remote)
199{
200 const char *errstr = NULL;
201 char *sp, *ep;
202 int tun;
203
204 if (remote != NULL) {
Damien Miller7b58e802005-12-13 19:33:19 +1100205 *remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +1100206 sp = xstrdup(s);
207 if ((ep = strchr(sp, ':')) == NULL) {
208 xfree(sp);
209 return (a2tun(s, NULL));
210 }
211 ep[0] = '\0'; ep++;
212 *remote = a2tun(ep, NULL);
213 tun = a2tun(sp, NULL);
214 xfree(sp);
Damien Miller7b58e802005-12-13 19:33:19 +1100215 return (*remote == SSH_TUNID_ERR ? *remote : tun);
Damien Millerd27b9472005-12-13 19:29:02 +1100216 }
217
218 if (strcasecmp(s, "any") == 0)
Damien Miller7b58e802005-12-13 19:33:19 +1100219 return (SSH_TUNID_ANY);
Damien Millerd27b9472005-12-13 19:29:02 +1100220
Damien Miller7b58e802005-12-13 19:33:19 +1100221 tun = strtonum(s, 0, SSH_TUNID_MAX, &errstr);
222 if (errstr != NULL)
223 return (SSH_TUNID_ERR);
Damien Millerd27b9472005-12-13 19:29:02 +1100224
225 return (tun);
226}
227
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000228#define SECONDS 1
229#define MINUTES (SECONDS * 60)
230#define HOURS (MINUTES * 60)
231#define DAYS (HOURS * 24)
232#define WEEKS (DAYS * 7)
233
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000234/*
235 * Convert a time string into seconds; format is
236 * a sequence of:
237 * time[qualifier]
238 *
239 * Valid time qualifiers are:
240 * <none> seconds
241 * s|S seconds
242 * m|M minutes
243 * h|H hours
244 * d|D days
245 * w|W weeks
246 *
247 * Examples:
248 * 90m 90 minutes
249 * 1h30m 90 minutes
250 * 2d 2 days
251 * 1w 1 week
252 *
253 * Return -1 if time string is invalid.
254 */
255long
256convtime(const char *s)
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000257{
258 long total, secs;
259 const char *p;
260 char *endp;
261
262 errno = 0;
263 total = 0;
264 p = s;
265
266 if (p == NULL || *p == '\0')
267 return -1;
268
269 while (*p) {
270 secs = strtol(p, &endp, 10);
271 if (p == endp ||
272 (errno == ERANGE && (secs == LONG_MIN || secs == LONG_MAX)) ||
273 secs < 0)
274 return -1;
275
276 switch (*endp++) {
277 case '\0':
278 endp--;
279 case 's':
280 case 'S':
281 break;
282 case 'm':
283 case 'M':
284 secs *= MINUTES;
285 break;
286 case 'h':
287 case 'H':
288 secs *= HOURS;
289 break;
290 case 'd':
291 case 'D':
292 secs *= DAYS;
293 break;
294 case 'w':
295 case 'W':
296 secs *= WEEKS;
297 break;
298 default:
299 return -1;
300 }
301 total += secs;
302 if (total < 0)
303 return -1;
304 p = endp;
305 }
306
307 return total;
308}
309
Damien Millerf91ee4c2005-03-01 21:24:33 +1100310/*
311 * Search for next delimiter between hostnames/addresses and ports.
312 * Argument may be modified (for termination).
313 * Returns *cp if parsing succeeds.
314 * *cp is set to the start of the next delimiter, if one was found.
315 * If this is the last field, *cp is set to NULL.
316 */
317char *
318hpdelim(char **cp)
319{
320 char *s, *old;
321
322 if (cp == NULL || *cp == NULL)
323 return NULL;
324
325 old = s = *cp;
326 if (*s == '[') {
327 if ((s = strchr(s, ']')) == NULL)
328 return NULL;
329 else
330 s++;
331 } else if ((s = strpbrk(s, ":/")) == NULL)
332 s = *cp + strlen(*cp); /* skip to end (see first case below) */
333
334 switch (*s) {
335 case '\0':
336 *cp = NULL; /* no more fields*/
337 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100338
Damien Millerf91ee4c2005-03-01 21:24:33 +1100339 case ':':
340 case '/':
341 *s = '\0'; /* terminate */
342 *cp = s + 1;
343 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100344
Damien Millerf91ee4c2005-03-01 21:24:33 +1100345 default:
346 return NULL;
347 }
348
349 return old;
350}
351
Ben Lindstrom4529b702001-05-03 23:39:53 +0000352char *
353cleanhostname(char *host)
354{
355 if (*host == '[' && host[strlen(host) - 1] == ']') {
356 host[strlen(host) - 1] = '\0';
357 return (host + 1);
358 } else
359 return host;
360}
361
362char *
363colon(char *cp)
364{
365 int flag = 0;
366
367 if (*cp == ':') /* Leading colon is part of file name. */
368 return (0);
369 if (*cp == '[')
370 flag = 1;
371
372 for (; *cp; ++cp) {
373 if (*cp == '@' && *(cp+1) == '[')
374 flag = 1;
375 if (*cp == ']' && *(cp+1) == ':' && flag)
376 return (cp+1);
377 if (*cp == ':' && !flag)
378 return (cp);
379 if (*cp == '/')
380 return (0);
381 }
382 return (0);
383}
384
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000385/* function to assist building execv() arguments */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000386void
387addargs(arglist *args, char *fmt, ...)
388{
389 va_list ap;
390 char buf[1024];
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000391 u_int nalloc;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000392
393 va_start(ap, fmt);
394 vsnprintf(buf, sizeof(buf), fmt, ap);
395 va_end(ap);
396
Darren Tuckerfb16b242003-09-22 21:04:23 +1000397 nalloc = args->nalloc;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000398 if (args->list == NULL) {
Darren Tuckerfb16b242003-09-22 21:04:23 +1000399 nalloc = 32;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000400 args->num = 0;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000401 } else if (args->num+2 >= nalloc)
402 nalloc *= 2;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000403
Darren Tuckerfb16b242003-09-22 21:04:23 +1000404 args->list = xrealloc(args->list, nalloc * sizeof(char *));
405 args->nalloc = nalloc;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000406 args->list[args->num++] = xstrdup(buf);
407 args->list[args->num] = NULL;
408}
Darren Tucker22cc7412004-12-06 22:47:41 +1100409
410/*
Damien Miller5fd38c02005-05-26 12:02:14 +1000411 * Expands tildes in the file name. Returns data allocated by xmalloc.
412 * Warning: this calls getpw*.
413 */
414char *
415tilde_expand_filename(const char *filename, uid_t uid)
416{
417 const char *path;
418 char user[128], ret[MAXPATHLEN];
419 struct passwd *pw;
Damien Millereccb9de2005-06-17 12:59:34 +1000420 u_int len, slash;
Damien Miller5fd38c02005-05-26 12:02:14 +1000421
422 if (*filename != '~')
423 return (xstrdup(filename));
424 filename++;
425
426 path = strchr(filename, '/');
427 if (path != NULL && path > filename) { /* ~user/path */
Damien Millereccb9de2005-06-17 12:59:34 +1000428 slash = path - filename;
429 if (slash > sizeof(user) - 1)
Damien Miller5fd38c02005-05-26 12:02:14 +1000430 fatal("tilde_expand_filename: ~username too long");
Damien Millereccb9de2005-06-17 12:59:34 +1000431 memcpy(user, filename, slash);
432 user[slash] = '\0';
Damien Miller5fd38c02005-05-26 12:02:14 +1000433 if ((pw = getpwnam(user)) == NULL)
434 fatal("tilde_expand_filename: No such user %s", user);
435 } else if ((pw = getpwuid(uid)) == NULL) /* ~/path */
436 fatal("tilde_expand_filename: No such uid %d", uid);
437
438 if (strlcpy(ret, pw->pw_dir, sizeof(ret)) >= sizeof(ret))
439 fatal("tilde_expand_filename: Path too long");
440
441 /* Make sure directory has a trailing '/' */
442 len = strlen(pw->pw_dir);
443 if ((len == 0 || pw->pw_dir[len - 1] != '/') &&
444 strlcat(ret, "/", sizeof(ret)) >= sizeof(ret))
445 fatal("tilde_expand_filename: Path too long");
446
447 /* Skip leading '/' from specified path */
448 if (path != NULL)
449 filename = path + 1;
450 if (strlcat(ret, filename, sizeof(ret)) >= sizeof(ret))
451 fatal("tilde_expand_filename: Path too long");
452
453 return (xstrdup(ret));
454}
455
456/*
Damien Miller6476cad2005-06-16 13:18:34 +1000457 * Expand a string with a set of %[char] escapes. A number of escapes may be
458 * specified as (char *escape_chars, char *replacement) pairs. The list must
Darren Tuckerbee73d52005-07-14 17:05:02 +1000459 * be terminated by a NULL escape_char. Returns replaced string in memory
Damien Miller6476cad2005-06-16 13:18:34 +1000460 * allocated by xmalloc.
461 */
462char *
463percent_expand(const char *string, ...)
464{
465#define EXPAND_MAX_KEYS 16
466 struct {
467 const char *key;
468 const char *repl;
469 } keys[EXPAND_MAX_KEYS];
Damien Millereccb9de2005-06-17 12:59:34 +1000470 u_int num_keys, i, j;
Damien Miller6476cad2005-06-16 13:18:34 +1000471 char buf[4096];
472 va_list ap;
473
474 /* Gather keys */
475 va_start(ap, string);
476 for (num_keys = 0; num_keys < EXPAND_MAX_KEYS; num_keys++) {
477 keys[num_keys].key = va_arg(ap, char *);
478 if (keys[num_keys].key == NULL)
479 break;
480 keys[num_keys].repl = va_arg(ap, char *);
481 if (keys[num_keys].repl == NULL)
482 fatal("percent_expand: NULL replacement");
483 }
484 va_end(ap);
485
486 if (num_keys >= EXPAND_MAX_KEYS)
487 fatal("percent_expand: too many keys");
488
489 /* Expand string */
490 *buf = '\0';
491 for (i = 0; *string != '\0'; string++) {
492 if (*string != '%') {
493 append:
494 buf[i++] = *string;
495 if (i >= sizeof(buf))
496 fatal("percent_expand: string too long");
497 buf[i] = '\0';
498 continue;
499 }
500 string++;
501 if (*string == '%')
502 goto append;
503 for (j = 0; j < num_keys; j++) {
504 if (strchr(keys[j].key, *string) != NULL) {
505 i = strlcat(buf, keys[j].repl, sizeof(buf));
506 if (i >= sizeof(buf))
507 fatal("percent_expand: string too long");
508 break;
509 }
510 }
511 if (j >= num_keys)
512 fatal("percent_expand: unknown key %%%c", *string);
513 }
514 return (xstrdup(buf));
515#undef EXPAND_MAX_KEYS
516}
517
518/*
Darren Tucker22cc7412004-12-06 22:47:41 +1100519 * Read an entire line from a public key file into a static buffer, discarding
520 * lines that exceed the buffer size. Returns 0 on success, -1 on failure.
521 */
522int
523read_keyfile_line(FILE *f, const char *filename, char *buf, size_t bufsz,
Darren Tuckerf0f90982004-12-11 13:39:50 +1100524 u_long *lineno)
Darren Tucker22cc7412004-12-06 22:47:41 +1100525{
526 while (fgets(buf, bufsz, f) != NULL) {
527 (*lineno)++;
528 if (buf[strlen(buf) - 1] == '\n' || feof(f)) {
529 return 0;
530 } else {
Darren Tuckerf0f90982004-12-11 13:39:50 +1100531 debug("%s: %s line %lu exceeds size limit", __func__,
532 filename, *lineno);
Darren Tucker22cc7412004-12-06 22:47:41 +1100533 /* discard remainder of line */
Darren Tucker47eede72005-03-14 23:08:12 +1100534 while (fgetc(f) != '\n' && !feof(f))
Darren Tucker22cc7412004-12-06 22:47:41 +1100535 ; /* nothing */
536 }
537 }
538 return -1;
539}
Damien Miller13390022005-07-06 09:44:19 +1000540
Damien Millerd27b9472005-12-13 19:29:02 +1100541int
Damien Miller7b58e802005-12-13 19:33:19 +1100542tun_open(int tun, int mode)
Damien Millerd27b9472005-12-13 19:29:02 +1100543{
Damien Miller7b58e802005-12-13 19:33:19 +1100544 struct ifreq ifr;
Damien Millerd27b9472005-12-13 19:29:02 +1100545 char name[100];
Damien Miller7b58e802005-12-13 19:33:19 +1100546 int fd = -1, sock;
Damien Millerd27b9472005-12-13 19:29:02 +1100547
Damien Miller7b58e802005-12-13 19:33:19 +1100548 /* Open the tunnel device */
549 if (tun <= SSH_TUNID_MAX) {
Damien Millerd27b9472005-12-13 19:29:02 +1100550 snprintf(name, sizeof(name), "/dev/tun%d", tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100551 fd = open(name, O_RDWR);
552 } else if (tun == SSH_TUNID_ANY) {
553 for (tun = 100; tun >= 0; tun--) {
554 snprintf(name, sizeof(name), "/dev/tun%d", tun);
555 if ((fd = open(name, O_RDWR)) >= 0)
556 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100557 }
558 } else {
Damien Miller7b58e802005-12-13 19:33:19 +1100559 debug("%s: invalid tunnel %u\n", __func__, tun);
560 return (-1);
Damien Millerd27b9472005-12-13 19:29:02 +1100561 }
Damien Miller7b58e802005-12-13 19:33:19 +1100562
563 if (fd < 0) {
564 debug("%s: %s open failed: %s", __func__, name, strerror(errno));
565 return (-1);
566 }
567
568 debug("%s: %s mode %d fd %d", __func__, name, mode, fd);
569
570 /* Set the tunnel device operation mode */
571 snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "tun%d", tun);
572 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) == -1)
573 goto failed;
574
575 if (ioctl(sock, SIOCGIFFLAGS, &ifr) == -1)
576 goto failed;
577 if (mode == SSH_TUNMODE_ETHERNET) {
578 ifr.ifr_flags |= IFF_LINK0;
579 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
580 goto failed;
581 }
582 ifr.ifr_flags |= IFF_UP;
583 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
584 goto failed;
585
586 close(sock);
587 return (fd);
588
589 failed:
590 if (fd >= 0)
591 close(fd);
592 if (sock >= 0)
593 close(sock);
594 debug("%s: failed to set %s mode %d: %s", __func__, name,
595 mode, strerror(errno));
Damien Millerd27b9472005-12-13 19:29:02 +1100596 return (-1);
597}
598
Darren Tuckerce321d82005-10-03 18:11:24 +1000599void
600sanitise_stdfd(void)
601{
602 int nullfd;
603
604 if ((nullfd = open(_PATH_DEVNULL, O_RDWR)) == -1) {
605 fprintf(stderr, "Couldn't open /dev/null: %s", strerror(errno));
606 exit(1);
607 }
608 while (nullfd < 2) {
609 if (dup2(nullfd, nullfd + 1) == -1) {
610 fprintf(stderr, "dup2: %s", strerror(errno));
611 exit(1);
612 }
613 nullfd++;
614 }
615 if (nullfd > 2)
616 close(nullfd);
617}
618
Damien Miller13390022005-07-06 09:44:19 +1000619char *
620tohex(const u_char *d, u_int l)
621{
622 char b[3], *r;
623 u_int i, hl;
624
625 hl = l * 2 + 1;
626 r = xmalloc(hl);
627 *r = '\0';
628 for (i = 0; i < l; i++) {
629 snprintf(b, sizeof(b), "%02x", d[i]);
630 strlcat(r, b, hl);
631 }
632 return (r);
633}
634