blob: fba085d9b22c098404c7dde7ae14590dcf3c9672 [file] [log] [blame]
Darren Tucker39972492006-07-12 22:22:46 +10001/* $OpenBSD: misc.c,v 1.58 2006/07/11 20:07:25 stevesk Exp $ */
Damien Millere4340be2000-09-16 13:29:08 +11002/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
Damien Miller3f941882006-03-31 23:13:02 +11004 * Copyright (c) 2005,2006 Damien Miller. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +11005 *
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
Damien Miller61c51502000-08-18 14:01:04 +100027#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110028
29#include <sys/ioctl.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100030#include <sys/types.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100031#include <sys/socket.h>
32
Darren Tucker5d196262006-07-12 22:15:16 +100033#include <stdarg.h>
34
Damien Miller8ec8c3e2006-07-10 20:35:38 +100035#include <netinet/in.h>
Damien Miller3a4051e2006-03-15 11:19:42 +110036#include <netinet/tcp.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100037
Darren Tucker39972492006-07-12 22:22:46 +100038#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100039#include <fcntl.h>
Damien Miller03e20032006-03-15 11:16:59 +110040#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110041# include <paths.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100042#include <pwd.h>
Damien Miller03e20032006-03-15 11:16:59 +110043#endif
Damien Miller3beb8522006-01-02 23:40:10 +110044#ifdef SSH_TUN_OPENBSD
45#include <net/if.h>
46#endif
Damien Miller61c51502000-08-18 14:01:04 +100047
Kevin Stevesb6e773a2001-02-04 13:20:36 +000048#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049#include "log.h"
Ben Lindstrom06909012001-03-05 06:09:31 +000050#include "xmalloc.h"
Darren Tuckerda345532006-07-10 23:04:19 +100051#include "ssh.h"
Damien Miller61c51502000-08-18 14:01:04 +100052
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000053/* remove newline at end of string */
Damien Miller61c51502000-08-18 14:01:04 +100054char *
55chop(char *s)
56{
57 char *t = s;
58 while (*t) {
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +000059 if (*t == '\n' || *t == '\r') {
Damien Miller61c51502000-08-18 14:01:04 +100060 *t = '\0';
61 return s;
62 }
63 t++;
64 }
65 return s;
66
67}
68
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000069/* set/unset filedescriptor to non-blocking */
Damien Miller232711f2004-06-15 10:35:30 +100070int
Damien Miller61c51502000-08-18 14:01:04 +100071set_nonblock(int fd)
72{
73 int val;
Ben Lindstromc93e84c2001-05-12 00:08:37 +000074
Damien Miller61c51502000-08-18 14:01:04 +100075 val = fcntl(fd, F_GETFL, 0);
76 if (val < 0) {
77 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +100078 return (-1);
Damien Miller61c51502000-08-18 14:01:04 +100079 }
Damien Miller69b69aa2000-10-28 14:19:58 +110080 if (val & O_NONBLOCK) {
Damien Miller232711f2004-06-15 10:35:30 +100081 debug3("fd %d is O_NONBLOCK", fd);
82 return (0);
Damien Miller69b69aa2000-10-28 14:19:58 +110083 }
Damien Milleref095ce2003-05-14 13:41:39 +100084 debug2("fd %d setting O_NONBLOCK", fd);
Damien Miller61c51502000-08-18 14:01:04 +100085 val |= O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +100086 if (fcntl(fd, F_SETFL, val) == -1) {
87 debug("fcntl(%d, F_SETFL, O_NONBLOCK): %s", fd,
88 strerror(errno));
89 return (-1);
90 }
91 return (0);
Damien Miller61c51502000-08-18 14:01:04 +100092}
93
Damien Miller232711f2004-06-15 10:35:30 +100094int
Ben Lindstromc93e84c2001-05-12 00:08:37 +000095unset_nonblock(int fd)
96{
97 int val;
98
99 val = fcntl(fd, F_GETFL, 0);
100 if (val < 0) {
101 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +1000102 return (-1);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000103 }
104 if (!(val & O_NONBLOCK)) {
Damien Miller232711f2004-06-15 10:35:30 +1000105 debug3("fd %d is not O_NONBLOCK", fd);
106 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000107 }
Ben Lindstrom352b1c22001-06-21 03:04:37 +0000108 debug("fd %d clearing O_NONBLOCK", fd);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000109 val &= ~O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +1000110 if (fcntl(fd, F_SETFL, val) == -1) {
111 debug("fcntl(%d, F_SETFL, ~O_NONBLOCK): %s",
Ben Lindstrom84fcb312002-03-05 01:48:09 +0000112 fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +1000113 return (-1);
114 }
115 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000116}
117
Damien Miller398e1cf2002-02-05 11:52:13 +1100118/* disable nagle on socket */
119void
120set_nodelay(int fd)
121{
Ben Lindstrome86de512002-03-05 01:28:14 +0000122 int opt;
123 socklen_t optlen;
Damien Miller398e1cf2002-02-05 11:52:13 +1100124
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000125 optlen = sizeof opt;
126 if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
Darren Tucker6db8f932003-11-03 20:07:14 +1100127 debug("getsockopt TCP_NODELAY: %.100s", strerror(errno));
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000128 return;
129 }
130 if (opt == 1) {
131 debug2("fd %d is TCP_NODELAY", fd);
132 return;
133 }
134 opt = 1;
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000135 debug2("fd %d setting TCP_NODELAY", fd);
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000136 if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1)
Damien Miller398e1cf2002-02-05 11:52:13 +1100137 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
138}
139
Damien Miller61c51502000-08-18 14:01:04 +1000140/* Characters considered whitespace in strsep calls. */
141#define WHITESPACE " \t\r\n"
Damien Miller306d1182006-03-15 12:05:59 +1100142#define QUOTE "\""
Damien Miller61c51502000-08-18 14:01:04 +1000143
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000144/* return next token in configuration line */
Damien Miller61c51502000-08-18 14:01:04 +1000145char *
146strdelim(char **s)
147{
148 char *old;
149 int wspace = 0;
150
151 if (*s == NULL)
152 return NULL;
153
154 old = *s;
155
Damien Miller306d1182006-03-15 12:05:59 +1100156 *s = strpbrk(*s, WHITESPACE QUOTE "=");
Damien Miller61c51502000-08-18 14:01:04 +1000157 if (*s == NULL)
158 return (old);
159
Damien Miller306d1182006-03-15 12:05:59 +1100160 if (*s[0] == '\"') {
161 memmove(*s, *s + 1, strlen(*s)); /* move nul too */
162 /* Find matching quote */
163 if ((*s = strpbrk(*s, QUOTE)) == NULL) {
164 return (NULL); /* no matching quote */
165 } else {
166 *s[0] = '\0';
167 return (old);
168 }
169 }
170
Damien Miller61c51502000-08-18 14:01:04 +1000171 /* Allow only one '=' to be skipped */
172 if (*s[0] == '=')
173 wspace = 1;
174 *s[0] = '\0';
175
Damien Miller306d1182006-03-15 12:05:59 +1100176 /* Skip any extra whitespace after first token */
Damien Miller61c51502000-08-18 14:01:04 +1000177 *s += strspn(*s + 1, WHITESPACE) + 1;
178 if (*s[0] == '=' && !wspace)
179 *s += strspn(*s + 1, WHITESPACE) + 1;
180
181 return (old);
182}
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000183
Ben Lindstrom086cf212001-03-05 05:56:40 +0000184struct passwd *
185pwcopy(struct passwd *pw)
186{
Damien Miller07d86be2006-03-26 14:19:21 +1100187 struct passwd *copy = xcalloc(1, sizeof(*copy));
Ben Lindstrom40304422001-03-05 06:22:01 +0000188
Ben Lindstrom086cf212001-03-05 05:56:40 +0000189 copy->pw_name = xstrdup(pw->pw_name);
190 copy->pw_passwd = xstrdup(pw->pw_passwd);
Ben Lindstrom40304422001-03-05 06:22:01 +0000191 copy->pw_gecos = xstrdup(pw->pw_gecos);
Ben Lindstrom086cf212001-03-05 05:56:40 +0000192 copy->pw_uid = pw->pw_uid;
193 copy->pw_gid = pw->pw_gid;
Kevin Steves82456952001-06-22 21:14:18 +0000194#ifdef HAVE_PW_EXPIRE_IN_PASSWD
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000195 copy->pw_expire = pw->pw_expire;
Kevin Steves82456952001-06-22 21:14:18 +0000196#endif
197#ifdef HAVE_PW_CHANGE_IN_PASSWD
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000198 copy->pw_change = pw->pw_change;
Kevin Steves82456952001-06-22 21:14:18 +0000199#endif
Ben Lindstrom0f68db42001-03-05 07:57:09 +0000200#ifdef HAVE_PW_CLASS_IN_PASSWD
Ben Lindstrom086cf212001-03-05 05:56:40 +0000201 copy->pw_class = xstrdup(pw->pw_class);
Ben Lindstrom0f68db42001-03-05 07:57:09 +0000202#endif
Ben Lindstrom086cf212001-03-05 05:56:40 +0000203 copy->pw_dir = xstrdup(pw->pw_dir);
204 copy->pw_shell = xstrdup(pw->pw_shell);
205 return copy;
206}
207
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000208/*
209 * Convert ASCII string to TCP/IP port number.
210 * Port must be >0 and <=65535.
211 * Return 0 if invalid.
212 */
213int
214a2port(const char *s)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000215{
216 long port;
217 char *endp;
218
219 errno = 0;
220 port = strtol(s, &endp, 0);
221 if (s == endp || *endp != '\0' ||
222 (errno == ERANGE && (port == LONG_MIN || port == LONG_MAX)) ||
223 port <= 0 || port > 65535)
224 return 0;
225
226 return port;
227}
228
Damien Millerd27b9472005-12-13 19:29:02 +1100229int
230a2tun(const char *s, int *remote)
231{
232 const char *errstr = NULL;
233 char *sp, *ep;
234 int tun;
235
236 if (remote != NULL) {
Damien Miller7b58e802005-12-13 19:33:19 +1100237 *remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +1100238 sp = xstrdup(s);
239 if ((ep = strchr(sp, ':')) == NULL) {
240 xfree(sp);
241 return (a2tun(s, NULL));
242 }
243 ep[0] = '\0'; ep++;
244 *remote = a2tun(ep, NULL);
245 tun = a2tun(sp, NULL);
246 xfree(sp);
Damien Miller7b58e802005-12-13 19:33:19 +1100247 return (*remote == SSH_TUNID_ERR ? *remote : tun);
Damien Millerd27b9472005-12-13 19:29:02 +1100248 }
249
250 if (strcasecmp(s, "any") == 0)
Damien Miller7b58e802005-12-13 19:33:19 +1100251 return (SSH_TUNID_ANY);
Damien Millerd27b9472005-12-13 19:29:02 +1100252
Damien Miller7b58e802005-12-13 19:33:19 +1100253 tun = strtonum(s, 0, SSH_TUNID_MAX, &errstr);
254 if (errstr != NULL)
255 return (SSH_TUNID_ERR);
Damien Millerd27b9472005-12-13 19:29:02 +1100256
257 return (tun);
258}
259
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000260#define SECONDS 1
261#define MINUTES (SECONDS * 60)
262#define HOURS (MINUTES * 60)
263#define DAYS (HOURS * 24)
264#define WEEKS (DAYS * 7)
265
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000266/*
267 * Convert a time string into seconds; format is
268 * a sequence of:
269 * time[qualifier]
270 *
271 * Valid time qualifiers are:
272 * <none> seconds
273 * s|S seconds
274 * m|M minutes
275 * h|H hours
276 * d|D days
277 * w|W weeks
278 *
279 * Examples:
280 * 90m 90 minutes
281 * 1h30m 90 minutes
282 * 2d 2 days
283 * 1w 1 week
284 *
285 * Return -1 if time string is invalid.
286 */
287long
288convtime(const char *s)
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000289{
290 long total, secs;
291 const char *p;
292 char *endp;
293
294 errno = 0;
295 total = 0;
296 p = s;
297
298 if (p == NULL || *p == '\0')
299 return -1;
300
301 while (*p) {
302 secs = strtol(p, &endp, 10);
303 if (p == endp ||
304 (errno == ERANGE && (secs == LONG_MIN || secs == LONG_MAX)) ||
305 secs < 0)
306 return -1;
307
308 switch (*endp++) {
309 case '\0':
310 endp--;
Damien Miller69b72032006-03-26 14:02:35 +1100311 break;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000312 case 's':
313 case 'S':
314 break;
315 case 'm':
316 case 'M':
317 secs *= MINUTES;
318 break;
319 case 'h':
320 case 'H':
321 secs *= HOURS;
322 break;
323 case 'd':
324 case 'D':
325 secs *= DAYS;
326 break;
327 case 'w':
328 case 'W':
329 secs *= WEEKS;
330 break;
331 default:
332 return -1;
333 }
334 total += secs;
335 if (total < 0)
336 return -1;
337 p = endp;
338 }
339
340 return total;
341}
342
Damien Millerf91ee4c2005-03-01 21:24:33 +1100343/*
Darren Tuckerda345532006-07-10 23:04:19 +1000344 * Returns a standardized host+port identifier string.
345 * Caller must free returned string.
346 */
347char *
348put_host_port(const char *host, u_short port)
349{
350 char *hoststr;
351
352 if (port == 0 || port == SSH_DEFAULT_PORT)
353 return(xstrdup(host));
354 if (asprintf(&hoststr, "[%s]:%d", host, (int)port) < 0)
355 fatal("put_host_port: asprintf: %s", strerror(errno));
356 debug3("put_host_port: %s", hoststr);
357 return hoststr;
358}
359
360/*
Damien Millerf91ee4c2005-03-01 21:24:33 +1100361 * Search for next delimiter between hostnames/addresses and ports.
362 * Argument may be modified (for termination).
363 * Returns *cp if parsing succeeds.
364 * *cp is set to the start of the next delimiter, if one was found.
365 * If this is the last field, *cp is set to NULL.
366 */
367char *
368hpdelim(char **cp)
369{
370 char *s, *old;
371
372 if (cp == NULL || *cp == NULL)
373 return NULL;
374
375 old = s = *cp;
376 if (*s == '[') {
377 if ((s = strchr(s, ']')) == NULL)
378 return NULL;
379 else
380 s++;
381 } else if ((s = strpbrk(s, ":/")) == NULL)
382 s = *cp + strlen(*cp); /* skip to end (see first case below) */
383
384 switch (*s) {
385 case '\0':
386 *cp = NULL; /* no more fields*/
387 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100388
Damien Millerf91ee4c2005-03-01 21:24:33 +1100389 case ':':
390 case '/':
391 *s = '\0'; /* terminate */
392 *cp = s + 1;
393 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100394
Damien Millerf91ee4c2005-03-01 21:24:33 +1100395 default:
396 return NULL;
397 }
398
399 return old;
400}
401
Ben Lindstrom4529b702001-05-03 23:39:53 +0000402char *
403cleanhostname(char *host)
404{
405 if (*host == '[' && host[strlen(host) - 1] == ']') {
406 host[strlen(host) - 1] = '\0';
407 return (host + 1);
408 } else
409 return host;
410}
411
412char *
413colon(char *cp)
414{
415 int flag = 0;
416
417 if (*cp == ':') /* Leading colon is part of file name. */
418 return (0);
419 if (*cp == '[')
420 flag = 1;
421
422 for (; *cp; ++cp) {
423 if (*cp == '@' && *(cp+1) == '[')
424 flag = 1;
425 if (*cp == ']' && *(cp+1) == ':' && flag)
426 return (cp+1);
427 if (*cp == ':' && !flag)
428 return (cp);
429 if (*cp == '/')
430 return (0);
431 }
432 return (0);
433}
434
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000435/* function to assist building execv() arguments */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000436void
437addargs(arglist *args, char *fmt, ...)
438{
439 va_list ap;
Damien Miller3eec6b72006-01-31 21:49:27 +1100440 char *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000441 u_int nalloc;
Damien Miller3eec6b72006-01-31 21:49:27 +1100442 int r;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000443
444 va_start(ap, fmt);
Damien Miller3eec6b72006-01-31 21:49:27 +1100445 r = vasprintf(&cp, fmt, ap);
Ben Lindstrom387c4722001-05-08 20:27:25 +0000446 va_end(ap);
Damien Miller3eec6b72006-01-31 21:49:27 +1100447 if (r == -1)
448 fatal("addargs: argument too long");
Ben Lindstrom387c4722001-05-08 20:27:25 +0000449
Darren Tuckerfb16b242003-09-22 21:04:23 +1000450 nalloc = args->nalloc;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000451 if (args->list == NULL) {
Darren Tuckerfb16b242003-09-22 21:04:23 +1000452 nalloc = 32;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000453 args->num = 0;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000454 } else if (args->num+2 >= nalloc)
455 nalloc *= 2;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000456
Damien Miller36812092006-03-26 14:22:47 +1100457 args->list = xrealloc(args->list, nalloc, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000458 args->nalloc = nalloc;
Damien Miller3eec6b72006-01-31 21:49:27 +1100459 args->list[args->num++] = cp;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000460 args->list[args->num] = NULL;
461}
Darren Tucker22cc7412004-12-06 22:47:41 +1100462
Damien Miller3eec6b72006-01-31 21:49:27 +1100463void
464replacearg(arglist *args, u_int which, char *fmt, ...)
465{
466 va_list ap;
467 char *cp;
468 int r;
469
470 va_start(ap, fmt);
471 r = vasprintf(&cp, fmt, ap);
472 va_end(ap);
473 if (r == -1)
474 fatal("replacearg: argument too long");
475
476 if (which >= args->num)
477 fatal("replacearg: tried to replace invalid arg %d >= %d",
478 which, args->num);
479 xfree(args->list[which]);
480 args->list[which] = cp;
481}
482
483void
484freeargs(arglist *args)
485{
486 u_int i;
487
488 if (args->list != NULL) {
489 for (i = 0; i < args->num; i++)
490 xfree(args->list[i]);
491 xfree(args->list);
492 args->nalloc = args->num = 0;
493 args->list = NULL;
494 }
495}
496
Darren Tucker22cc7412004-12-06 22:47:41 +1100497/*
Damien Miller5fd38c02005-05-26 12:02:14 +1000498 * Expands tildes in the file name. Returns data allocated by xmalloc.
499 * Warning: this calls getpw*.
500 */
501char *
502tilde_expand_filename(const char *filename, uid_t uid)
503{
504 const char *path;
505 char user[128], ret[MAXPATHLEN];
506 struct passwd *pw;
Damien Millereccb9de2005-06-17 12:59:34 +1000507 u_int len, slash;
Damien Miller5fd38c02005-05-26 12:02:14 +1000508
509 if (*filename != '~')
510 return (xstrdup(filename));
511 filename++;
512
513 path = strchr(filename, '/');
514 if (path != NULL && path > filename) { /* ~user/path */
Damien Millereccb9de2005-06-17 12:59:34 +1000515 slash = path - filename;
516 if (slash > sizeof(user) - 1)
Damien Miller5fd38c02005-05-26 12:02:14 +1000517 fatal("tilde_expand_filename: ~username too long");
Damien Millereccb9de2005-06-17 12:59:34 +1000518 memcpy(user, filename, slash);
519 user[slash] = '\0';
Damien Miller5fd38c02005-05-26 12:02:14 +1000520 if ((pw = getpwnam(user)) == NULL)
521 fatal("tilde_expand_filename: No such user %s", user);
522 } else if ((pw = getpwuid(uid)) == NULL) /* ~/path */
523 fatal("tilde_expand_filename: No such uid %d", uid);
524
525 if (strlcpy(ret, pw->pw_dir, sizeof(ret)) >= sizeof(ret))
526 fatal("tilde_expand_filename: Path too long");
527
528 /* Make sure directory has a trailing '/' */
529 len = strlen(pw->pw_dir);
530 if ((len == 0 || pw->pw_dir[len - 1] != '/') &&
531 strlcat(ret, "/", sizeof(ret)) >= sizeof(ret))
532 fatal("tilde_expand_filename: Path too long");
533
534 /* Skip leading '/' from specified path */
535 if (path != NULL)
536 filename = path + 1;
537 if (strlcat(ret, filename, sizeof(ret)) >= sizeof(ret))
538 fatal("tilde_expand_filename: Path too long");
539
540 return (xstrdup(ret));
541}
542
543/*
Damien Miller6476cad2005-06-16 13:18:34 +1000544 * Expand a string with a set of %[char] escapes. A number of escapes may be
545 * specified as (char *escape_chars, char *replacement) pairs. The list must
Darren Tuckerbee73d52005-07-14 17:05:02 +1000546 * be terminated by a NULL escape_char. Returns replaced string in memory
Damien Miller6476cad2005-06-16 13:18:34 +1000547 * allocated by xmalloc.
548 */
549char *
550percent_expand(const char *string, ...)
551{
552#define EXPAND_MAX_KEYS 16
553 struct {
554 const char *key;
555 const char *repl;
556 } keys[EXPAND_MAX_KEYS];
Damien Millereccb9de2005-06-17 12:59:34 +1000557 u_int num_keys, i, j;
Damien Miller6476cad2005-06-16 13:18:34 +1000558 char buf[4096];
559 va_list ap;
560
561 /* Gather keys */
562 va_start(ap, string);
563 for (num_keys = 0; num_keys < EXPAND_MAX_KEYS; num_keys++) {
564 keys[num_keys].key = va_arg(ap, char *);
565 if (keys[num_keys].key == NULL)
566 break;
567 keys[num_keys].repl = va_arg(ap, char *);
568 if (keys[num_keys].repl == NULL)
569 fatal("percent_expand: NULL replacement");
570 }
571 va_end(ap);
572
573 if (num_keys >= EXPAND_MAX_KEYS)
574 fatal("percent_expand: too many keys");
575
576 /* Expand string */
577 *buf = '\0';
578 for (i = 0; *string != '\0'; string++) {
579 if (*string != '%') {
580 append:
581 buf[i++] = *string;
582 if (i >= sizeof(buf))
583 fatal("percent_expand: string too long");
584 buf[i] = '\0';
585 continue;
586 }
587 string++;
588 if (*string == '%')
589 goto append;
590 for (j = 0; j < num_keys; j++) {
591 if (strchr(keys[j].key, *string) != NULL) {
592 i = strlcat(buf, keys[j].repl, sizeof(buf));
593 if (i >= sizeof(buf))
594 fatal("percent_expand: string too long");
595 break;
596 }
597 }
598 if (j >= num_keys)
599 fatal("percent_expand: unknown key %%%c", *string);
600 }
601 return (xstrdup(buf));
602#undef EXPAND_MAX_KEYS
603}
604
605/*
Darren Tucker22cc7412004-12-06 22:47:41 +1100606 * Read an entire line from a public key file into a static buffer, discarding
607 * lines that exceed the buffer size. Returns 0 on success, -1 on failure.
608 */
609int
610read_keyfile_line(FILE *f, const char *filename, char *buf, size_t bufsz,
Darren Tuckerf0f90982004-12-11 13:39:50 +1100611 u_long *lineno)
Darren Tucker22cc7412004-12-06 22:47:41 +1100612{
613 while (fgets(buf, bufsz, f) != NULL) {
614 (*lineno)++;
615 if (buf[strlen(buf) - 1] == '\n' || feof(f)) {
616 return 0;
617 } else {
Darren Tuckerf0f90982004-12-11 13:39:50 +1100618 debug("%s: %s line %lu exceeds size limit", __func__,
619 filename, *lineno);
Darren Tucker22cc7412004-12-06 22:47:41 +1100620 /* discard remainder of line */
Darren Tucker47eede72005-03-14 23:08:12 +1100621 while (fgetc(f) != '\n' && !feof(f))
Darren Tucker22cc7412004-12-06 22:47:41 +1100622 ; /* nothing */
623 }
624 }
625 return -1;
626}
Damien Miller13390022005-07-06 09:44:19 +1000627
Damien Millerd27b9472005-12-13 19:29:02 +1100628int
Damien Miller7b58e802005-12-13 19:33:19 +1100629tun_open(int tun, int mode)
Damien Millerd27b9472005-12-13 19:29:02 +1100630{
Damien Miller62a31c92005-12-13 20:44:13 +1100631#if defined(CUSTOM_SYS_TUN_OPEN)
632 return (sys_tun_open(tun, mode));
Damien Miller2dcddbf2006-01-01 19:47:05 +1100633#elif defined(SSH_TUN_OPENBSD)
Damien Miller7b58e802005-12-13 19:33:19 +1100634 struct ifreq ifr;
Damien Millerd27b9472005-12-13 19:29:02 +1100635 char name[100];
Damien Miller7b58e802005-12-13 19:33:19 +1100636 int fd = -1, sock;
Damien Millerd27b9472005-12-13 19:29:02 +1100637
Damien Miller7b58e802005-12-13 19:33:19 +1100638 /* Open the tunnel device */
639 if (tun <= SSH_TUNID_MAX) {
Damien Millerd27b9472005-12-13 19:29:02 +1100640 snprintf(name, sizeof(name), "/dev/tun%d", tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100641 fd = open(name, O_RDWR);
642 } else if (tun == SSH_TUNID_ANY) {
643 for (tun = 100; tun >= 0; tun--) {
644 snprintf(name, sizeof(name), "/dev/tun%d", tun);
645 if ((fd = open(name, O_RDWR)) >= 0)
646 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100647 }
648 } else {
Damien Millera210d522006-01-02 23:40:30 +1100649 debug("%s: invalid tunnel %u", __func__, tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100650 return (-1);
Damien Millerd27b9472005-12-13 19:29:02 +1100651 }
Damien Miller7b58e802005-12-13 19:33:19 +1100652
653 if (fd < 0) {
654 debug("%s: %s open failed: %s", __func__, name, strerror(errno));
655 return (-1);
656 }
657
658 debug("%s: %s mode %d fd %d", __func__, name, mode, fd);
659
660 /* Set the tunnel device operation mode */
661 snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "tun%d", tun);
662 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) == -1)
663 goto failed;
664
665 if (ioctl(sock, SIOCGIFFLAGS, &ifr) == -1)
666 goto failed;
Damien Millera1d9a182006-01-02 23:41:21 +1100667
668 /* Set interface mode */
669 ifr.ifr_flags &= ~IFF_UP;
670 if (mode == SSH_TUNMODE_ETHERNET)
Damien Miller7b58e802005-12-13 19:33:19 +1100671 ifr.ifr_flags |= IFF_LINK0;
Damien Millera1d9a182006-01-02 23:41:21 +1100672 else
673 ifr.ifr_flags &= ~IFF_LINK0;
674 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
675 goto failed;
676
677 /* Bring interface up */
Damien Miller7b58e802005-12-13 19:33:19 +1100678 ifr.ifr_flags |= IFF_UP;
679 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
680 goto failed;
681
682 close(sock);
683 return (fd);
684
685 failed:
686 if (fd >= 0)
687 close(fd);
688 if (sock >= 0)
689 close(sock);
690 debug("%s: failed to set %s mode %d: %s", __func__, name,
691 mode, strerror(errno));
Damien Millerd27b9472005-12-13 19:29:02 +1100692 return (-1);
Damien Miller62a31c92005-12-13 20:44:13 +1100693#else
694 error("Tunnel interfaces are not supported on this platform");
695 return (-1);
696#endif
Damien Millerd27b9472005-12-13 19:29:02 +1100697}
698
Darren Tuckerce321d82005-10-03 18:11:24 +1000699void
700sanitise_stdfd(void)
701{
Damien Miller72c5b7d2006-01-06 14:50:44 +1100702 int nullfd, dupfd;
Darren Tuckerce321d82005-10-03 18:11:24 +1000703
Damien Miller72c5b7d2006-01-06 14:50:44 +1100704 if ((nullfd = dupfd = open(_PATH_DEVNULL, O_RDWR)) == -1) {
Darren Tuckerce321d82005-10-03 18:11:24 +1000705 fprintf(stderr, "Couldn't open /dev/null: %s", strerror(errno));
706 exit(1);
707 }
Damien Miller72c5b7d2006-01-06 14:50:44 +1100708 while (++dupfd <= 2) {
709 /* Only clobber closed fds */
710 if (fcntl(dupfd, F_GETFL, 0) >= 0)
711 continue;
712 if (dup2(nullfd, dupfd) == -1) {
Darren Tuckerce321d82005-10-03 18:11:24 +1000713 fprintf(stderr, "dup2: %s", strerror(errno));
714 exit(1);
715 }
Darren Tuckerce321d82005-10-03 18:11:24 +1000716 }
717 if (nullfd > 2)
718 close(nullfd);
719}
720
Damien Miller13390022005-07-06 09:44:19 +1000721char *
Damien Miller3f941882006-03-31 23:13:02 +1100722tohex(const void *vp, size_t l)
Damien Miller13390022005-07-06 09:44:19 +1000723{
Damien Miller3f941882006-03-31 23:13:02 +1100724 const u_char *p = (const u_char *)vp;
Damien Miller13390022005-07-06 09:44:19 +1000725 char b[3], *r;
Damien Miller3f941882006-03-31 23:13:02 +1100726 size_t i, hl;
727
728 if (l > 65536)
729 return xstrdup("tohex: length > 65536");
Damien Miller13390022005-07-06 09:44:19 +1000730
731 hl = l * 2 + 1;
Damien Miller07d86be2006-03-26 14:19:21 +1100732 r = xcalloc(1, hl);
Damien Miller13390022005-07-06 09:44:19 +1000733 for (i = 0; i < l; i++) {
Damien Miller3f941882006-03-31 23:13:02 +1100734 snprintf(b, sizeof(b), "%02x", p[i]);
Damien Miller13390022005-07-06 09:44:19 +1000735 strlcat(r, b, hl);
736 }
737 return (r);
738}
739
Damien Miller3f941882006-03-31 23:13:02 +1100740u_int64_t
741get_u64(const void *vp)
742{
743 const u_char *p = (const u_char *)vp;
744 u_int64_t v;
745
746 v = (u_int64_t)p[0] << 56;
747 v |= (u_int64_t)p[1] << 48;
748 v |= (u_int64_t)p[2] << 40;
749 v |= (u_int64_t)p[3] << 32;
750 v |= (u_int64_t)p[4] << 24;
751 v |= (u_int64_t)p[5] << 16;
752 v |= (u_int64_t)p[6] << 8;
753 v |= (u_int64_t)p[7];
754
755 return (v);
756}
757
758u_int32_t
759get_u32(const void *vp)
760{
761 const u_char *p = (const u_char *)vp;
762 u_int32_t v;
763
764 v = (u_int32_t)p[0] << 24;
765 v |= (u_int32_t)p[1] << 16;
766 v |= (u_int32_t)p[2] << 8;
767 v |= (u_int32_t)p[3];
768
769 return (v);
770}
771
772u_int16_t
773get_u16(const void *vp)
774{
775 const u_char *p = (const u_char *)vp;
776 u_int16_t v;
777
778 v = (u_int16_t)p[0] << 8;
779 v |= (u_int16_t)p[1];
780
781 return (v);
782}
783
784void
785put_u64(void *vp, u_int64_t v)
786{
787 u_char *p = (u_char *)vp;
788
789 p[0] = (u_char)(v >> 56) & 0xff;
790 p[1] = (u_char)(v >> 48) & 0xff;
791 p[2] = (u_char)(v >> 40) & 0xff;
792 p[3] = (u_char)(v >> 32) & 0xff;
793 p[4] = (u_char)(v >> 24) & 0xff;
794 p[5] = (u_char)(v >> 16) & 0xff;
795 p[6] = (u_char)(v >> 8) & 0xff;
796 p[7] = (u_char)v & 0xff;
797}
798
799void
800put_u32(void *vp, u_int32_t v)
801{
802 u_char *p = (u_char *)vp;
803
804 p[0] = (u_char)(v >> 24) & 0xff;
805 p[1] = (u_char)(v >> 16) & 0xff;
806 p[2] = (u_char)(v >> 8) & 0xff;
807 p[3] = (u_char)v & 0xff;
808}
809
810
811void
812put_u16(void *vp, u_int16_t v)
813{
814 u_char *p = (u_char *)vp;
815
816 p[0] = (u_char)(v >> 8) & 0xff;
817 p[1] = (u_char)v & 0xff;
818}