blob: 4c202db2a80e16dd5583cecb5194abac9326fc22 [file] [log] [blame]
Damien Millere3476ed2006-07-24 14:13:33 +10001/* $OpenBSD: misc.c,v 1.60 2006/07/22 20:48:23 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>
Damien Millere3476ed2006-07-24 14:13:33 +100034#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100035#include <unistd.h>
Darren Tucker5d196262006-07-12 22:15:16 +100036
Damien Miller8ec8c3e2006-07-10 20:35:38 +100037#include <netinet/in.h>
Damien Miller3a4051e2006-03-15 11:19:42 +110038#include <netinet/tcp.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100039
Darren Tucker39972492006-07-12 22:22:46 +100040#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100041#include <fcntl.h>
Damien Miller03e20032006-03-15 11:16:59 +110042#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110043# include <paths.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100044#include <pwd.h>
Damien Miller03e20032006-03-15 11:16:59 +110045#endif
Damien Miller3beb8522006-01-02 23:40:10 +110046#ifdef SSH_TUN_OPENBSD
47#include <net/if.h>
48#endif
Damien Miller61c51502000-08-18 14:01:04 +100049
Kevin Stevesb6e773a2001-02-04 13:20:36 +000050#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051#include "log.h"
Ben Lindstrom06909012001-03-05 06:09:31 +000052#include "xmalloc.h"
Darren Tuckerda345532006-07-10 23:04:19 +100053#include "ssh.h"
Damien Miller61c51502000-08-18 14:01:04 +100054
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000055/* remove newline at end of string */
Damien Miller61c51502000-08-18 14:01:04 +100056char *
57chop(char *s)
58{
59 char *t = s;
60 while (*t) {
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +000061 if (*t == '\n' || *t == '\r') {
Damien Miller61c51502000-08-18 14:01:04 +100062 *t = '\0';
63 return s;
64 }
65 t++;
66 }
67 return s;
68
69}
70
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000071/* set/unset filedescriptor to non-blocking */
Damien Miller232711f2004-06-15 10:35:30 +100072int
Damien Miller61c51502000-08-18 14:01:04 +100073set_nonblock(int fd)
74{
75 int val;
Ben Lindstromc93e84c2001-05-12 00:08:37 +000076
Damien Miller61c51502000-08-18 14:01:04 +100077 val = fcntl(fd, F_GETFL, 0);
78 if (val < 0) {
79 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +100080 return (-1);
Damien Miller61c51502000-08-18 14:01:04 +100081 }
Damien Miller69b69aa2000-10-28 14:19:58 +110082 if (val & O_NONBLOCK) {
Damien Miller232711f2004-06-15 10:35:30 +100083 debug3("fd %d is O_NONBLOCK", fd);
84 return (0);
Damien Miller69b69aa2000-10-28 14:19:58 +110085 }
Damien Milleref095ce2003-05-14 13:41:39 +100086 debug2("fd %d setting O_NONBLOCK", fd);
Damien Miller61c51502000-08-18 14:01:04 +100087 val |= O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +100088 if (fcntl(fd, F_SETFL, val) == -1) {
89 debug("fcntl(%d, F_SETFL, O_NONBLOCK): %s", fd,
90 strerror(errno));
91 return (-1);
92 }
93 return (0);
Damien Miller61c51502000-08-18 14:01:04 +100094}
95
Damien Miller232711f2004-06-15 10:35:30 +100096int
Ben Lindstromc93e84c2001-05-12 00:08:37 +000097unset_nonblock(int fd)
98{
99 int val;
100
101 val = fcntl(fd, F_GETFL, 0);
102 if (val < 0) {
103 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +1000104 return (-1);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000105 }
106 if (!(val & O_NONBLOCK)) {
Damien Miller232711f2004-06-15 10:35:30 +1000107 debug3("fd %d is not O_NONBLOCK", fd);
108 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000109 }
Ben Lindstrom352b1c22001-06-21 03:04:37 +0000110 debug("fd %d clearing O_NONBLOCK", fd);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000111 val &= ~O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +1000112 if (fcntl(fd, F_SETFL, val) == -1) {
113 debug("fcntl(%d, F_SETFL, ~O_NONBLOCK): %s",
Ben Lindstrom84fcb312002-03-05 01:48:09 +0000114 fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +1000115 return (-1);
116 }
117 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000118}
119
Damien Miller398e1cf2002-02-05 11:52:13 +1100120/* disable nagle on socket */
121void
122set_nodelay(int fd)
123{
Ben Lindstrome86de512002-03-05 01:28:14 +0000124 int opt;
125 socklen_t optlen;
Damien Miller398e1cf2002-02-05 11:52:13 +1100126
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000127 optlen = sizeof opt;
128 if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
Darren Tucker6db8f932003-11-03 20:07:14 +1100129 debug("getsockopt TCP_NODELAY: %.100s", strerror(errno));
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000130 return;
131 }
132 if (opt == 1) {
133 debug2("fd %d is TCP_NODELAY", fd);
134 return;
135 }
136 opt = 1;
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000137 debug2("fd %d setting TCP_NODELAY", fd);
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000138 if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1)
Damien Miller398e1cf2002-02-05 11:52:13 +1100139 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
140}
141
Damien Miller61c51502000-08-18 14:01:04 +1000142/* Characters considered whitespace in strsep calls. */
143#define WHITESPACE " \t\r\n"
Damien Miller306d1182006-03-15 12:05:59 +1100144#define QUOTE "\""
Damien Miller61c51502000-08-18 14:01:04 +1000145
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000146/* return next token in configuration line */
Damien Miller61c51502000-08-18 14:01:04 +1000147char *
148strdelim(char **s)
149{
150 char *old;
151 int wspace = 0;
152
153 if (*s == NULL)
154 return NULL;
155
156 old = *s;
157
Damien Miller306d1182006-03-15 12:05:59 +1100158 *s = strpbrk(*s, WHITESPACE QUOTE "=");
Damien Miller61c51502000-08-18 14:01:04 +1000159 if (*s == NULL)
160 return (old);
161
Damien Miller306d1182006-03-15 12:05:59 +1100162 if (*s[0] == '\"') {
163 memmove(*s, *s + 1, strlen(*s)); /* move nul too */
164 /* Find matching quote */
165 if ((*s = strpbrk(*s, QUOTE)) == NULL) {
166 return (NULL); /* no matching quote */
167 } else {
168 *s[0] = '\0';
169 return (old);
170 }
171 }
172
Damien Miller61c51502000-08-18 14:01:04 +1000173 /* Allow only one '=' to be skipped */
174 if (*s[0] == '=')
175 wspace = 1;
176 *s[0] = '\0';
177
Damien Miller306d1182006-03-15 12:05:59 +1100178 /* Skip any extra whitespace after first token */
Damien Miller61c51502000-08-18 14:01:04 +1000179 *s += strspn(*s + 1, WHITESPACE) + 1;
180 if (*s[0] == '=' && !wspace)
181 *s += strspn(*s + 1, WHITESPACE) + 1;
182
183 return (old);
184}
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000185
Ben Lindstrom086cf212001-03-05 05:56:40 +0000186struct passwd *
187pwcopy(struct passwd *pw)
188{
Damien Miller07d86be2006-03-26 14:19:21 +1100189 struct passwd *copy = xcalloc(1, sizeof(*copy));
Ben Lindstrom40304422001-03-05 06:22:01 +0000190
Ben Lindstrom086cf212001-03-05 05:56:40 +0000191 copy->pw_name = xstrdup(pw->pw_name);
192 copy->pw_passwd = xstrdup(pw->pw_passwd);
Ben Lindstrom40304422001-03-05 06:22:01 +0000193 copy->pw_gecos = xstrdup(pw->pw_gecos);
Ben Lindstrom086cf212001-03-05 05:56:40 +0000194 copy->pw_uid = pw->pw_uid;
195 copy->pw_gid = pw->pw_gid;
Kevin Steves82456952001-06-22 21:14:18 +0000196#ifdef HAVE_PW_EXPIRE_IN_PASSWD
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000197 copy->pw_expire = pw->pw_expire;
Kevin Steves82456952001-06-22 21:14:18 +0000198#endif
199#ifdef HAVE_PW_CHANGE_IN_PASSWD
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000200 copy->pw_change = pw->pw_change;
Kevin Steves82456952001-06-22 21:14:18 +0000201#endif
Ben Lindstrom0f68db42001-03-05 07:57:09 +0000202#ifdef HAVE_PW_CLASS_IN_PASSWD
Ben Lindstrom086cf212001-03-05 05:56:40 +0000203 copy->pw_class = xstrdup(pw->pw_class);
Ben Lindstrom0f68db42001-03-05 07:57:09 +0000204#endif
Ben Lindstrom086cf212001-03-05 05:56:40 +0000205 copy->pw_dir = xstrdup(pw->pw_dir);
206 copy->pw_shell = xstrdup(pw->pw_shell);
207 return copy;
208}
209
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000210/*
211 * Convert ASCII string to TCP/IP port number.
212 * Port must be >0 and <=65535.
213 * Return 0 if invalid.
214 */
215int
216a2port(const char *s)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000217{
218 long port;
219 char *endp;
220
221 errno = 0;
222 port = strtol(s, &endp, 0);
223 if (s == endp || *endp != '\0' ||
224 (errno == ERANGE && (port == LONG_MIN || port == LONG_MAX)) ||
225 port <= 0 || port > 65535)
226 return 0;
227
228 return port;
229}
230
Damien Millerd27b9472005-12-13 19:29:02 +1100231int
232a2tun(const char *s, int *remote)
233{
234 const char *errstr = NULL;
235 char *sp, *ep;
236 int tun;
237
238 if (remote != NULL) {
Damien Miller7b58e802005-12-13 19:33:19 +1100239 *remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +1100240 sp = xstrdup(s);
241 if ((ep = strchr(sp, ':')) == NULL) {
242 xfree(sp);
243 return (a2tun(s, NULL));
244 }
245 ep[0] = '\0'; ep++;
246 *remote = a2tun(ep, NULL);
247 tun = a2tun(sp, NULL);
248 xfree(sp);
Damien Miller7b58e802005-12-13 19:33:19 +1100249 return (*remote == SSH_TUNID_ERR ? *remote : tun);
Damien Millerd27b9472005-12-13 19:29:02 +1100250 }
251
252 if (strcasecmp(s, "any") == 0)
Damien Miller7b58e802005-12-13 19:33:19 +1100253 return (SSH_TUNID_ANY);
Damien Millerd27b9472005-12-13 19:29:02 +1100254
Damien Miller7b58e802005-12-13 19:33:19 +1100255 tun = strtonum(s, 0, SSH_TUNID_MAX, &errstr);
256 if (errstr != NULL)
257 return (SSH_TUNID_ERR);
Damien Millerd27b9472005-12-13 19:29:02 +1100258
259 return (tun);
260}
261
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000262#define SECONDS 1
263#define MINUTES (SECONDS * 60)
264#define HOURS (MINUTES * 60)
265#define DAYS (HOURS * 24)
266#define WEEKS (DAYS * 7)
267
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000268/*
269 * Convert a time string into seconds; format is
270 * a sequence of:
271 * time[qualifier]
272 *
273 * Valid time qualifiers are:
274 * <none> seconds
275 * s|S seconds
276 * m|M minutes
277 * h|H hours
278 * d|D days
279 * w|W weeks
280 *
281 * Examples:
282 * 90m 90 minutes
283 * 1h30m 90 minutes
284 * 2d 2 days
285 * 1w 1 week
286 *
287 * Return -1 if time string is invalid.
288 */
289long
290convtime(const char *s)
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000291{
292 long total, secs;
293 const char *p;
294 char *endp;
295
296 errno = 0;
297 total = 0;
298 p = s;
299
300 if (p == NULL || *p == '\0')
301 return -1;
302
303 while (*p) {
304 secs = strtol(p, &endp, 10);
305 if (p == endp ||
306 (errno == ERANGE && (secs == LONG_MIN || secs == LONG_MAX)) ||
307 secs < 0)
308 return -1;
309
310 switch (*endp++) {
311 case '\0':
312 endp--;
Damien Miller69b72032006-03-26 14:02:35 +1100313 break;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000314 case 's':
315 case 'S':
316 break;
317 case 'm':
318 case 'M':
319 secs *= MINUTES;
320 break;
321 case 'h':
322 case 'H':
323 secs *= HOURS;
324 break;
325 case 'd':
326 case 'D':
327 secs *= DAYS;
328 break;
329 case 'w':
330 case 'W':
331 secs *= WEEKS;
332 break;
333 default:
334 return -1;
335 }
336 total += secs;
337 if (total < 0)
338 return -1;
339 p = endp;
340 }
341
342 return total;
343}
344
Damien Millerf91ee4c2005-03-01 21:24:33 +1100345/*
Darren Tuckerda345532006-07-10 23:04:19 +1000346 * Returns a standardized host+port identifier string.
347 * Caller must free returned string.
348 */
349char *
350put_host_port(const char *host, u_short port)
351{
352 char *hoststr;
353
354 if (port == 0 || port == SSH_DEFAULT_PORT)
355 return(xstrdup(host));
356 if (asprintf(&hoststr, "[%s]:%d", host, (int)port) < 0)
357 fatal("put_host_port: asprintf: %s", strerror(errno));
358 debug3("put_host_port: %s", hoststr);
359 return hoststr;
360}
361
362/*
Damien Millerf91ee4c2005-03-01 21:24:33 +1100363 * Search for next delimiter between hostnames/addresses and ports.
364 * Argument may be modified (for termination).
365 * Returns *cp if parsing succeeds.
366 * *cp is set to the start of the next delimiter, if one was found.
367 * If this is the last field, *cp is set to NULL.
368 */
369char *
370hpdelim(char **cp)
371{
372 char *s, *old;
373
374 if (cp == NULL || *cp == NULL)
375 return NULL;
376
377 old = s = *cp;
378 if (*s == '[') {
379 if ((s = strchr(s, ']')) == NULL)
380 return NULL;
381 else
382 s++;
383 } else if ((s = strpbrk(s, ":/")) == NULL)
384 s = *cp + strlen(*cp); /* skip to end (see first case below) */
385
386 switch (*s) {
387 case '\0':
388 *cp = NULL; /* no more fields*/
389 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100390
Damien Millerf91ee4c2005-03-01 21:24:33 +1100391 case ':':
392 case '/':
393 *s = '\0'; /* terminate */
394 *cp = s + 1;
395 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100396
Damien Millerf91ee4c2005-03-01 21:24:33 +1100397 default:
398 return NULL;
399 }
400
401 return old;
402}
403
Ben Lindstrom4529b702001-05-03 23:39:53 +0000404char *
405cleanhostname(char *host)
406{
407 if (*host == '[' && host[strlen(host) - 1] == ']') {
408 host[strlen(host) - 1] = '\0';
409 return (host + 1);
410 } else
411 return host;
412}
413
414char *
415colon(char *cp)
416{
417 int flag = 0;
418
419 if (*cp == ':') /* Leading colon is part of file name. */
420 return (0);
421 if (*cp == '[')
422 flag = 1;
423
424 for (; *cp; ++cp) {
425 if (*cp == '@' && *(cp+1) == '[')
426 flag = 1;
427 if (*cp == ']' && *(cp+1) == ':' && flag)
428 return (cp+1);
429 if (*cp == ':' && !flag)
430 return (cp);
431 if (*cp == '/')
432 return (0);
433 }
434 return (0);
435}
436
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000437/* function to assist building execv() arguments */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000438void
439addargs(arglist *args, char *fmt, ...)
440{
441 va_list ap;
Damien Miller3eec6b72006-01-31 21:49:27 +1100442 char *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000443 u_int nalloc;
Damien Miller3eec6b72006-01-31 21:49:27 +1100444 int r;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000445
446 va_start(ap, fmt);
Damien Miller3eec6b72006-01-31 21:49:27 +1100447 r = vasprintf(&cp, fmt, ap);
Ben Lindstrom387c4722001-05-08 20:27:25 +0000448 va_end(ap);
Damien Miller3eec6b72006-01-31 21:49:27 +1100449 if (r == -1)
450 fatal("addargs: argument too long");
Ben Lindstrom387c4722001-05-08 20:27:25 +0000451
Darren Tuckerfb16b242003-09-22 21:04:23 +1000452 nalloc = args->nalloc;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000453 if (args->list == NULL) {
Darren Tuckerfb16b242003-09-22 21:04:23 +1000454 nalloc = 32;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000455 args->num = 0;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000456 } else if (args->num+2 >= nalloc)
457 nalloc *= 2;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000458
Damien Miller36812092006-03-26 14:22:47 +1100459 args->list = xrealloc(args->list, nalloc, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000460 args->nalloc = nalloc;
Damien Miller3eec6b72006-01-31 21:49:27 +1100461 args->list[args->num++] = cp;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000462 args->list[args->num] = NULL;
463}
Darren Tucker22cc7412004-12-06 22:47:41 +1100464
Damien Miller3eec6b72006-01-31 21:49:27 +1100465void
466replacearg(arglist *args, u_int which, char *fmt, ...)
467{
468 va_list ap;
469 char *cp;
470 int r;
471
472 va_start(ap, fmt);
473 r = vasprintf(&cp, fmt, ap);
474 va_end(ap);
475 if (r == -1)
476 fatal("replacearg: argument too long");
477
478 if (which >= args->num)
479 fatal("replacearg: tried to replace invalid arg %d >= %d",
480 which, args->num);
481 xfree(args->list[which]);
482 args->list[which] = cp;
483}
484
485void
486freeargs(arglist *args)
487{
488 u_int i;
489
490 if (args->list != NULL) {
491 for (i = 0; i < args->num; i++)
492 xfree(args->list[i]);
493 xfree(args->list);
494 args->nalloc = args->num = 0;
495 args->list = NULL;
496 }
497}
498
Darren Tucker22cc7412004-12-06 22:47:41 +1100499/*
Damien Miller5fd38c02005-05-26 12:02:14 +1000500 * Expands tildes in the file name. Returns data allocated by xmalloc.
501 * Warning: this calls getpw*.
502 */
503char *
504tilde_expand_filename(const char *filename, uid_t uid)
505{
506 const char *path;
507 char user[128], ret[MAXPATHLEN];
508 struct passwd *pw;
Damien Millereccb9de2005-06-17 12:59:34 +1000509 u_int len, slash;
Damien Miller5fd38c02005-05-26 12:02:14 +1000510
511 if (*filename != '~')
512 return (xstrdup(filename));
513 filename++;
514
515 path = strchr(filename, '/');
516 if (path != NULL && path > filename) { /* ~user/path */
Damien Millereccb9de2005-06-17 12:59:34 +1000517 slash = path - filename;
518 if (slash > sizeof(user) - 1)
Damien Miller5fd38c02005-05-26 12:02:14 +1000519 fatal("tilde_expand_filename: ~username too long");
Damien Millereccb9de2005-06-17 12:59:34 +1000520 memcpy(user, filename, slash);
521 user[slash] = '\0';
Damien Miller5fd38c02005-05-26 12:02:14 +1000522 if ((pw = getpwnam(user)) == NULL)
523 fatal("tilde_expand_filename: No such user %s", user);
524 } else if ((pw = getpwuid(uid)) == NULL) /* ~/path */
525 fatal("tilde_expand_filename: No such uid %d", uid);
526
527 if (strlcpy(ret, pw->pw_dir, sizeof(ret)) >= sizeof(ret))
528 fatal("tilde_expand_filename: Path too long");
529
530 /* Make sure directory has a trailing '/' */
531 len = strlen(pw->pw_dir);
532 if ((len == 0 || pw->pw_dir[len - 1] != '/') &&
533 strlcat(ret, "/", sizeof(ret)) >= sizeof(ret))
534 fatal("tilde_expand_filename: Path too long");
535
536 /* Skip leading '/' from specified path */
537 if (path != NULL)
538 filename = path + 1;
539 if (strlcat(ret, filename, sizeof(ret)) >= sizeof(ret))
540 fatal("tilde_expand_filename: Path too long");
541
542 return (xstrdup(ret));
543}
544
545/*
Damien Miller6476cad2005-06-16 13:18:34 +1000546 * Expand a string with a set of %[char] escapes. A number of escapes may be
547 * specified as (char *escape_chars, char *replacement) pairs. The list must
Darren Tuckerbee73d52005-07-14 17:05:02 +1000548 * be terminated by a NULL escape_char. Returns replaced string in memory
Damien Miller6476cad2005-06-16 13:18:34 +1000549 * allocated by xmalloc.
550 */
551char *
552percent_expand(const char *string, ...)
553{
554#define EXPAND_MAX_KEYS 16
555 struct {
556 const char *key;
557 const char *repl;
558 } keys[EXPAND_MAX_KEYS];
Damien Millereccb9de2005-06-17 12:59:34 +1000559 u_int num_keys, i, j;
Damien Miller6476cad2005-06-16 13:18:34 +1000560 char buf[4096];
561 va_list ap;
562
563 /* Gather keys */
564 va_start(ap, string);
565 for (num_keys = 0; num_keys < EXPAND_MAX_KEYS; num_keys++) {
566 keys[num_keys].key = va_arg(ap, char *);
567 if (keys[num_keys].key == NULL)
568 break;
569 keys[num_keys].repl = va_arg(ap, char *);
570 if (keys[num_keys].repl == NULL)
571 fatal("percent_expand: NULL replacement");
572 }
573 va_end(ap);
574
575 if (num_keys >= EXPAND_MAX_KEYS)
576 fatal("percent_expand: too many keys");
577
578 /* Expand string */
579 *buf = '\0';
580 for (i = 0; *string != '\0'; string++) {
581 if (*string != '%') {
582 append:
583 buf[i++] = *string;
584 if (i >= sizeof(buf))
585 fatal("percent_expand: string too long");
586 buf[i] = '\0';
587 continue;
588 }
589 string++;
590 if (*string == '%')
591 goto append;
592 for (j = 0; j < num_keys; j++) {
593 if (strchr(keys[j].key, *string) != NULL) {
594 i = strlcat(buf, keys[j].repl, sizeof(buf));
595 if (i >= sizeof(buf))
596 fatal("percent_expand: string too long");
597 break;
598 }
599 }
600 if (j >= num_keys)
601 fatal("percent_expand: unknown key %%%c", *string);
602 }
603 return (xstrdup(buf));
604#undef EXPAND_MAX_KEYS
605}
606
607/*
Darren Tucker22cc7412004-12-06 22:47:41 +1100608 * Read an entire line from a public key file into a static buffer, discarding
609 * lines that exceed the buffer size. Returns 0 on success, -1 on failure.
610 */
611int
612read_keyfile_line(FILE *f, const char *filename, char *buf, size_t bufsz,
Darren Tuckerf0f90982004-12-11 13:39:50 +1100613 u_long *lineno)
Darren Tucker22cc7412004-12-06 22:47:41 +1100614{
615 while (fgets(buf, bufsz, f) != NULL) {
616 (*lineno)++;
617 if (buf[strlen(buf) - 1] == '\n' || feof(f)) {
618 return 0;
619 } else {
Darren Tuckerf0f90982004-12-11 13:39:50 +1100620 debug("%s: %s line %lu exceeds size limit", __func__,
621 filename, *lineno);
Darren Tucker22cc7412004-12-06 22:47:41 +1100622 /* discard remainder of line */
Darren Tucker47eede72005-03-14 23:08:12 +1100623 while (fgetc(f) != '\n' && !feof(f))
Darren Tucker22cc7412004-12-06 22:47:41 +1100624 ; /* nothing */
625 }
626 }
627 return -1;
628}
Damien Miller13390022005-07-06 09:44:19 +1000629
Damien Millerd27b9472005-12-13 19:29:02 +1100630int
Damien Miller7b58e802005-12-13 19:33:19 +1100631tun_open(int tun, int mode)
Damien Millerd27b9472005-12-13 19:29:02 +1100632{
Damien Miller62a31c92005-12-13 20:44:13 +1100633#if defined(CUSTOM_SYS_TUN_OPEN)
634 return (sys_tun_open(tun, mode));
Damien Miller2dcddbf2006-01-01 19:47:05 +1100635#elif defined(SSH_TUN_OPENBSD)
Damien Miller7b58e802005-12-13 19:33:19 +1100636 struct ifreq ifr;
Damien Millerd27b9472005-12-13 19:29:02 +1100637 char name[100];
Damien Miller7b58e802005-12-13 19:33:19 +1100638 int fd = -1, sock;
Damien Millerd27b9472005-12-13 19:29:02 +1100639
Damien Miller7b58e802005-12-13 19:33:19 +1100640 /* Open the tunnel device */
641 if (tun <= SSH_TUNID_MAX) {
Damien Millerd27b9472005-12-13 19:29:02 +1100642 snprintf(name, sizeof(name), "/dev/tun%d", tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100643 fd = open(name, O_RDWR);
644 } else if (tun == SSH_TUNID_ANY) {
645 for (tun = 100; tun >= 0; tun--) {
646 snprintf(name, sizeof(name), "/dev/tun%d", tun);
647 if ((fd = open(name, O_RDWR)) >= 0)
648 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100649 }
650 } else {
Damien Millera210d522006-01-02 23:40:30 +1100651 debug("%s: invalid tunnel %u", __func__, tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100652 return (-1);
Damien Millerd27b9472005-12-13 19:29:02 +1100653 }
Damien Miller7b58e802005-12-13 19:33:19 +1100654
655 if (fd < 0) {
656 debug("%s: %s open failed: %s", __func__, name, strerror(errno));
657 return (-1);
658 }
659
660 debug("%s: %s mode %d fd %d", __func__, name, mode, fd);
661
662 /* Set the tunnel device operation mode */
663 snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "tun%d", tun);
664 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) == -1)
665 goto failed;
666
667 if (ioctl(sock, SIOCGIFFLAGS, &ifr) == -1)
668 goto failed;
Damien Millera1d9a182006-01-02 23:41:21 +1100669
670 /* Set interface mode */
671 ifr.ifr_flags &= ~IFF_UP;
672 if (mode == SSH_TUNMODE_ETHERNET)
Damien Miller7b58e802005-12-13 19:33:19 +1100673 ifr.ifr_flags |= IFF_LINK0;
Damien Millera1d9a182006-01-02 23:41:21 +1100674 else
675 ifr.ifr_flags &= ~IFF_LINK0;
676 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
677 goto failed;
678
679 /* Bring interface up */
Damien Miller7b58e802005-12-13 19:33:19 +1100680 ifr.ifr_flags |= IFF_UP;
681 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
682 goto failed;
683
684 close(sock);
685 return (fd);
686
687 failed:
688 if (fd >= 0)
689 close(fd);
690 if (sock >= 0)
691 close(sock);
692 debug("%s: failed to set %s mode %d: %s", __func__, name,
693 mode, strerror(errno));
Damien Millerd27b9472005-12-13 19:29:02 +1100694 return (-1);
Damien Miller62a31c92005-12-13 20:44:13 +1100695#else
696 error("Tunnel interfaces are not supported on this platform");
697 return (-1);
698#endif
Damien Millerd27b9472005-12-13 19:29:02 +1100699}
700
Darren Tuckerce321d82005-10-03 18:11:24 +1000701void
702sanitise_stdfd(void)
703{
Damien Miller72c5b7d2006-01-06 14:50:44 +1100704 int nullfd, dupfd;
Darren Tuckerce321d82005-10-03 18:11:24 +1000705
Damien Miller72c5b7d2006-01-06 14:50:44 +1100706 if ((nullfd = dupfd = open(_PATH_DEVNULL, O_RDWR)) == -1) {
Darren Tuckerce321d82005-10-03 18:11:24 +1000707 fprintf(stderr, "Couldn't open /dev/null: %s", strerror(errno));
708 exit(1);
709 }
Damien Miller72c5b7d2006-01-06 14:50:44 +1100710 while (++dupfd <= 2) {
711 /* Only clobber closed fds */
712 if (fcntl(dupfd, F_GETFL, 0) >= 0)
713 continue;
714 if (dup2(nullfd, dupfd) == -1) {
Darren Tuckerce321d82005-10-03 18:11:24 +1000715 fprintf(stderr, "dup2: %s", strerror(errno));
716 exit(1);
717 }
Darren Tuckerce321d82005-10-03 18:11:24 +1000718 }
719 if (nullfd > 2)
720 close(nullfd);
721}
722
Damien Miller13390022005-07-06 09:44:19 +1000723char *
Damien Miller3f941882006-03-31 23:13:02 +1100724tohex(const void *vp, size_t l)
Damien Miller13390022005-07-06 09:44:19 +1000725{
Damien Miller3f941882006-03-31 23:13:02 +1100726 const u_char *p = (const u_char *)vp;
Damien Miller13390022005-07-06 09:44:19 +1000727 char b[3], *r;
Damien Miller3f941882006-03-31 23:13:02 +1100728 size_t i, hl;
729
730 if (l > 65536)
731 return xstrdup("tohex: length > 65536");
Damien Miller13390022005-07-06 09:44:19 +1000732
733 hl = l * 2 + 1;
Damien Miller07d86be2006-03-26 14:19:21 +1100734 r = xcalloc(1, hl);
Damien Miller13390022005-07-06 09:44:19 +1000735 for (i = 0; i < l; i++) {
Damien Miller3f941882006-03-31 23:13:02 +1100736 snprintf(b, sizeof(b), "%02x", p[i]);
Damien Miller13390022005-07-06 09:44:19 +1000737 strlcat(r, b, hl);
738 }
739 return (r);
740}
741
Damien Miller3f941882006-03-31 23:13:02 +1100742u_int64_t
743get_u64(const void *vp)
744{
745 const u_char *p = (const u_char *)vp;
746 u_int64_t v;
747
748 v = (u_int64_t)p[0] << 56;
749 v |= (u_int64_t)p[1] << 48;
750 v |= (u_int64_t)p[2] << 40;
751 v |= (u_int64_t)p[3] << 32;
752 v |= (u_int64_t)p[4] << 24;
753 v |= (u_int64_t)p[5] << 16;
754 v |= (u_int64_t)p[6] << 8;
755 v |= (u_int64_t)p[7];
756
757 return (v);
758}
759
760u_int32_t
761get_u32(const void *vp)
762{
763 const u_char *p = (const u_char *)vp;
764 u_int32_t v;
765
766 v = (u_int32_t)p[0] << 24;
767 v |= (u_int32_t)p[1] << 16;
768 v |= (u_int32_t)p[2] << 8;
769 v |= (u_int32_t)p[3];
770
771 return (v);
772}
773
774u_int16_t
775get_u16(const void *vp)
776{
777 const u_char *p = (const u_char *)vp;
778 u_int16_t v;
779
780 v = (u_int16_t)p[0] << 8;
781 v |= (u_int16_t)p[1];
782
783 return (v);
784}
785
786void
787put_u64(void *vp, u_int64_t v)
788{
789 u_char *p = (u_char *)vp;
790
791 p[0] = (u_char)(v >> 56) & 0xff;
792 p[1] = (u_char)(v >> 48) & 0xff;
793 p[2] = (u_char)(v >> 40) & 0xff;
794 p[3] = (u_char)(v >> 32) & 0xff;
795 p[4] = (u_char)(v >> 24) & 0xff;
796 p[5] = (u_char)(v >> 16) & 0xff;
797 p[6] = (u_char)(v >> 8) & 0xff;
798 p[7] = (u_char)v & 0xff;
799}
800
801void
802put_u32(void *vp, u_int32_t v)
803{
804 u_char *p = (u_char *)vp;
805
806 p[0] = (u_char)(v >> 24) & 0xff;
807 p[1] = (u_char)(v >> 16) & 0xff;
808 p[2] = (u_char)(v >> 8) & 0xff;
809 p[3] = (u_char)v & 0xff;
810}
811
812
813void
814put_u16(void *vp, u_int16_t v)
815{
816 u_char *p = (u_char *)vp;
817
818 p[0] = (u_char)(v >> 8) & 0xff;
819 p[1] = (u_char)v & 0xff;
820}