blob: 2abb14051aafa54184c965616b1db23ec143a7a3 [file] [log] [blame]
Damien Miller57cf6382006-07-10 21:13:46 +10001/* $OpenBSD: misc.c,v 1.55 2006/07/09 15:15:10 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
33#include <netinet/in.h>
Damien Miller3a4051e2006-03-15 11:19:42 +110034#include <netinet/tcp.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100035
Damien Miller57cf6382006-07-10 21:13:46 +100036#include <fcntl.h>
Damien Miller03e20032006-03-15 11:16:59 +110037#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110038# include <paths.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100039#include <pwd.h>
Damien Miller03e20032006-03-15 11:16:59 +110040#endif
Damien Miller3beb8522006-01-02 23:40:10 +110041#ifdef SSH_TUN_OPENBSD
42#include <net/if.h>
43#endif
Damien Miller61c51502000-08-18 14:01:04 +100044
Kevin Stevesb6e773a2001-02-04 13:20:36 +000045#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000046#include "log.h"
Ben Lindstrom06909012001-03-05 06:09:31 +000047#include "xmalloc.h"
Damien Miller61c51502000-08-18 14:01:04 +100048
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000049/* remove newline at end of string */
Damien Miller61c51502000-08-18 14:01:04 +100050char *
51chop(char *s)
52{
53 char *t = s;
54 while (*t) {
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +000055 if (*t == '\n' || *t == '\r') {
Damien Miller61c51502000-08-18 14:01:04 +100056 *t = '\0';
57 return s;
58 }
59 t++;
60 }
61 return s;
62
63}
64
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000065/* set/unset filedescriptor to non-blocking */
Damien Miller232711f2004-06-15 10:35:30 +100066int
Damien Miller61c51502000-08-18 14:01:04 +100067set_nonblock(int fd)
68{
69 int val;
Ben Lindstromc93e84c2001-05-12 00:08:37 +000070
Damien Miller61c51502000-08-18 14:01:04 +100071 val = fcntl(fd, F_GETFL, 0);
72 if (val < 0) {
73 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +100074 return (-1);
Damien Miller61c51502000-08-18 14:01:04 +100075 }
Damien Miller69b69aa2000-10-28 14:19:58 +110076 if (val & O_NONBLOCK) {
Damien Miller232711f2004-06-15 10:35:30 +100077 debug3("fd %d is O_NONBLOCK", fd);
78 return (0);
Damien Miller69b69aa2000-10-28 14:19:58 +110079 }
Damien Milleref095ce2003-05-14 13:41:39 +100080 debug2("fd %d setting O_NONBLOCK", fd);
Damien Miller61c51502000-08-18 14:01:04 +100081 val |= O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +100082 if (fcntl(fd, F_SETFL, val) == -1) {
83 debug("fcntl(%d, F_SETFL, O_NONBLOCK): %s", fd,
84 strerror(errno));
85 return (-1);
86 }
87 return (0);
Damien Miller61c51502000-08-18 14:01:04 +100088}
89
Damien Miller232711f2004-06-15 10:35:30 +100090int
Ben Lindstromc93e84c2001-05-12 00:08:37 +000091unset_nonblock(int fd)
92{
93 int val;
94
95 val = fcntl(fd, F_GETFL, 0);
96 if (val < 0) {
97 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +100098 return (-1);
Ben Lindstromc93e84c2001-05-12 00:08:37 +000099 }
100 if (!(val & O_NONBLOCK)) {
Damien Miller232711f2004-06-15 10:35:30 +1000101 debug3("fd %d is not O_NONBLOCK", fd);
102 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000103 }
Ben Lindstrom352b1c22001-06-21 03:04:37 +0000104 debug("fd %d clearing O_NONBLOCK", fd);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000105 val &= ~O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +1000106 if (fcntl(fd, F_SETFL, val) == -1) {
107 debug("fcntl(%d, F_SETFL, ~O_NONBLOCK): %s",
Ben Lindstrom84fcb312002-03-05 01:48:09 +0000108 fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +1000109 return (-1);
110 }
111 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000112}
113
Damien Miller398e1cf2002-02-05 11:52:13 +1100114/* disable nagle on socket */
115void
116set_nodelay(int fd)
117{
Ben Lindstrome86de512002-03-05 01:28:14 +0000118 int opt;
119 socklen_t optlen;
Damien Miller398e1cf2002-02-05 11:52:13 +1100120
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000121 optlen = sizeof opt;
122 if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
Darren Tucker6db8f932003-11-03 20:07:14 +1100123 debug("getsockopt TCP_NODELAY: %.100s", strerror(errno));
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000124 return;
125 }
126 if (opt == 1) {
127 debug2("fd %d is TCP_NODELAY", fd);
128 return;
129 }
130 opt = 1;
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000131 debug2("fd %d setting TCP_NODELAY", fd);
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000132 if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1)
Damien Miller398e1cf2002-02-05 11:52:13 +1100133 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
134}
135
Damien Miller61c51502000-08-18 14:01:04 +1000136/* Characters considered whitespace in strsep calls. */
137#define WHITESPACE " \t\r\n"
Damien Miller306d1182006-03-15 12:05:59 +1100138#define QUOTE "\""
Damien Miller61c51502000-08-18 14:01:04 +1000139
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000140/* return next token in configuration line */
Damien Miller61c51502000-08-18 14:01:04 +1000141char *
142strdelim(char **s)
143{
144 char *old;
145 int wspace = 0;
146
147 if (*s == NULL)
148 return NULL;
149
150 old = *s;
151
Damien Miller306d1182006-03-15 12:05:59 +1100152 *s = strpbrk(*s, WHITESPACE QUOTE "=");
Damien Miller61c51502000-08-18 14:01:04 +1000153 if (*s == NULL)
154 return (old);
155
Damien Miller306d1182006-03-15 12:05:59 +1100156 if (*s[0] == '\"') {
157 memmove(*s, *s + 1, strlen(*s)); /* move nul too */
158 /* Find matching quote */
159 if ((*s = strpbrk(*s, QUOTE)) == NULL) {
160 return (NULL); /* no matching quote */
161 } else {
162 *s[0] = '\0';
163 return (old);
164 }
165 }
166
Damien Miller61c51502000-08-18 14:01:04 +1000167 /* Allow only one '=' to be skipped */
168 if (*s[0] == '=')
169 wspace = 1;
170 *s[0] = '\0';
171
Damien Miller306d1182006-03-15 12:05:59 +1100172 /* Skip any extra whitespace after first token */
Damien Miller61c51502000-08-18 14:01:04 +1000173 *s += strspn(*s + 1, WHITESPACE) + 1;
174 if (*s[0] == '=' && !wspace)
175 *s += strspn(*s + 1, WHITESPACE) + 1;
176
177 return (old);
178}
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000179
Ben Lindstrom086cf212001-03-05 05:56:40 +0000180struct passwd *
181pwcopy(struct passwd *pw)
182{
Damien Miller07d86be2006-03-26 14:19:21 +1100183 struct passwd *copy = xcalloc(1, sizeof(*copy));
Ben Lindstrom40304422001-03-05 06:22:01 +0000184
Ben Lindstrom086cf212001-03-05 05:56:40 +0000185 copy->pw_name = xstrdup(pw->pw_name);
186 copy->pw_passwd = xstrdup(pw->pw_passwd);
Ben Lindstrom40304422001-03-05 06:22:01 +0000187 copy->pw_gecos = xstrdup(pw->pw_gecos);
Ben Lindstrom086cf212001-03-05 05:56:40 +0000188 copy->pw_uid = pw->pw_uid;
189 copy->pw_gid = pw->pw_gid;
Kevin Steves82456952001-06-22 21:14:18 +0000190#ifdef HAVE_PW_EXPIRE_IN_PASSWD
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000191 copy->pw_expire = pw->pw_expire;
Kevin Steves82456952001-06-22 21:14:18 +0000192#endif
193#ifdef HAVE_PW_CHANGE_IN_PASSWD
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000194 copy->pw_change = pw->pw_change;
Kevin Steves82456952001-06-22 21:14:18 +0000195#endif
Ben Lindstrom0f68db42001-03-05 07:57:09 +0000196#ifdef HAVE_PW_CLASS_IN_PASSWD
Ben Lindstrom086cf212001-03-05 05:56:40 +0000197 copy->pw_class = xstrdup(pw->pw_class);
Ben Lindstrom0f68db42001-03-05 07:57:09 +0000198#endif
Ben Lindstrom086cf212001-03-05 05:56:40 +0000199 copy->pw_dir = xstrdup(pw->pw_dir);
200 copy->pw_shell = xstrdup(pw->pw_shell);
201 return copy;
202}
203
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000204/*
205 * Convert ASCII string to TCP/IP port number.
206 * Port must be >0 and <=65535.
207 * Return 0 if invalid.
208 */
209int
210a2port(const char *s)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000211{
212 long port;
213 char *endp;
214
215 errno = 0;
216 port = strtol(s, &endp, 0);
217 if (s == endp || *endp != '\0' ||
218 (errno == ERANGE && (port == LONG_MIN || port == LONG_MAX)) ||
219 port <= 0 || port > 65535)
220 return 0;
221
222 return port;
223}
224
Damien Millerd27b9472005-12-13 19:29:02 +1100225int
226a2tun(const char *s, int *remote)
227{
228 const char *errstr = NULL;
229 char *sp, *ep;
230 int tun;
231
232 if (remote != NULL) {
Damien Miller7b58e802005-12-13 19:33:19 +1100233 *remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +1100234 sp = xstrdup(s);
235 if ((ep = strchr(sp, ':')) == NULL) {
236 xfree(sp);
237 return (a2tun(s, NULL));
238 }
239 ep[0] = '\0'; ep++;
240 *remote = a2tun(ep, NULL);
241 tun = a2tun(sp, NULL);
242 xfree(sp);
Damien Miller7b58e802005-12-13 19:33:19 +1100243 return (*remote == SSH_TUNID_ERR ? *remote : tun);
Damien Millerd27b9472005-12-13 19:29:02 +1100244 }
245
246 if (strcasecmp(s, "any") == 0)
Damien Miller7b58e802005-12-13 19:33:19 +1100247 return (SSH_TUNID_ANY);
Damien Millerd27b9472005-12-13 19:29:02 +1100248
Damien Miller7b58e802005-12-13 19:33:19 +1100249 tun = strtonum(s, 0, SSH_TUNID_MAX, &errstr);
250 if (errstr != NULL)
251 return (SSH_TUNID_ERR);
Damien Millerd27b9472005-12-13 19:29:02 +1100252
253 return (tun);
254}
255
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000256#define SECONDS 1
257#define MINUTES (SECONDS * 60)
258#define HOURS (MINUTES * 60)
259#define DAYS (HOURS * 24)
260#define WEEKS (DAYS * 7)
261
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000262/*
263 * Convert a time string into seconds; format is
264 * a sequence of:
265 * time[qualifier]
266 *
267 * Valid time qualifiers are:
268 * <none> seconds
269 * s|S seconds
270 * m|M minutes
271 * h|H hours
272 * d|D days
273 * w|W weeks
274 *
275 * Examples:
276 * 90m 90 minutes
277 * 1h30m 90 minutes
278 * 2d 2 days
279 * 1w 1 week
280 *
281 * Return -1 if time string is invalid.
282 */
283long
284convtime(const char *s)
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000285{
286 long total, secs;
287 const char *p;
288 char *endp;
289
290 errno = 0;
291 total = 0;
292 p = s;
293
294 if (p == NULL || *p == '\0')
295 return -1;
296
297 while (*p) {
298 secs = strtol(p, &endp, 10);
299 if (p == endp ||
300 (errno == ERANGE && (secs == LONG_MIN || secs == LONG_MAX)) ||
301 secs < 0)
302 return -1;
303
304 switch (*endp++) {
305 case '\0':
306 endp--;
Damien Miller69b72032006-03-26 14:02:35 +1100307 break;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000308 case 's':
309 case 'S':
310 break;
311 case 'm':
312 case 'M':
313 secs *= MINUTES;
314 break;
315 case 'h':
316 case 'H':
317 secs *= HOURS;
318 break;
319 case 'd':
320 case 'D':
321 secs *= DAYS;
322 break;
323 case 'w':
324 case 'W':
325 secs *= WEEKS;
326 break;
327 default:
328 return -1;
329 }
330 total += secs;
331 if (total < 0)
332 return -1;
333 p = endp;
334 }
335
336 return total;
337}
338
Damien Millerf91ee4c2005-03-01 21:24:33 +1100339/*
340 * Search for next delimiter between hostnames/addresses and ports.
341 * Argument may be modified (for termination).
342 * Returns *cp if parsing succeeds.
343 * *cp is set to the start of the next delimiter, if one was found.
344 * If this is the last field, *cp is set to NULL.
345 */
346char *
347hpdelim(char **cp)
348{
349 char *s, *old;
350
351 if (cp == NULL || *cp == NULL)
352 return NULL;
353
354 old = s = *cp;
355 if (*s == '[') {
356 if ((s = strchr(s, ']')) == NULL)
357 return NULL;
358 else
359 s++;
360 } else if ((s = strpbrk(s, ":/")) == NULL)
361 s = *cp + strlen(*cp); /* skip to end (see first case below) */
362
363 switch (*s) {
364 case '\0':
365 *cp = NULL; /* no more fields*/
366 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100367
Damien Millerf91ee4c2005-03-01 21:24:33 +1100368 case ':':
369 case '/':
370 *s = '\0'; /* terminate */
371 *cp = s + 1;
372 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100373
Damien Millerf91ee4c2005-03-01 21:24:33 +1100374 default:
375 return NULL;
376 }
377
378 return old;
379}
380
Ben Lindstrom4529b702001-05-03 23:39:53 +0000381char *
382cleanhostname(char *host)
383{
384 if (*host == '[' && host[strlen(host) - 1] == ']') {
385 host[strlen(host) - 1] = '\0';
386 return (host + 1);
387 } else
388 return host;
389}
390
391char *
392colon(char *cp)
393{
394 int flag = 0;
395
396 if (*cp == ':') /* Leading colon is part of file name. */
397 return (0);
398 if (*cp == '[')
399 flag = 1;
400
401 for (; *cp; ++cp) {
402 if (*cp == '@' && *(cp+1) == '[')
403 flag = 1;
404 if (*cp == ']' && *(cp+1) == ':' && flag)
405 return (cp+1);
406 if (*cp == ':' && !flag)
407 return (cp);
408 if (*cp == '/')
409 return (0);
410 }
411 return (0);
412}
413
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000414/* function to assist building execv() arguments */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000415void
416addargs(arglist *args, char *fmt, ...)
417{
418 va_list ap;
Damien Miller3eec6b72006-01-31 21:49:27 +1100419 char *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000420 u_int nalloc;
Damien Miller3eec6b72006-01-31 21:49:27 +1100421 int r;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000422
423 va_start(ap, fmt);
Damien Miller3eec6b72006-01-31 21:49:27 +1100424 r = vasprintf(&cp, fmt, ap);
Ben Lindstrom387c4722001-05-08 20:27:25 +0000425 va_end(ap);
Damien Miller3eec6b72006-01-31 21:49:27 +1100426 if (r == -1)
427 fatal("addargs: argument too long");
Ben Lindstrom387c4722001-05-08 20:27:25 +0000428
Darren Tuckerfb16b242003-09-22 21:04:23 +1000429 nalloc = args->nalloc;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000430 if (args->list == NULL) {
Darren Tuckerfb16b242003-09-22 21:04:23 +1000431 nalloc = 32;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000432 args->num = 0;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000433 } else if (args->num+2 >= nalloc)
434 nalloc *= 2;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000435
Damien Miller36812092006-03-26 14:22:47 +1100436 args->list = xrealloc(args->list, nalloc, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000437 args->nalloc = nalloc;
Damien Miller3eec6b72006-01-31 21:49:27 +1100438 args->list[args->num++] = cp;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000439 args->list[args->num] = NULL;
440}
Darren Tucker22cc7412004-12-06 22:47:41 +1100441
Damien Miller3eec6b72006-01-31 21:49:27 +1100442void
443replacearg(arglist *args, u_int which, char *fmt, ...)
444{
445 va_list ap;
446 char *cp;
447 int r;
448
449 va_start(ap, fmt);
450 r = vasprintf(&cp, fmt, ap);
451 va_end(ap);
452 if (r == -1)
453 fatal("replacearg: argument too long");
454
455 if (which >= args->num)
456 fatal("replacearg: tried to replace invalid arg %d >= %d",
457 which, args->num);
458 xfree(args->list[which]);
459 args->list[which] = cp;
460}
461
462void
463freeargs(arglist *args)
464{
465 u_int i;
466
467 if (args->list != NULL) {
468 for (i = 0; i < args->num; i++)
469 xfree(args->list[i]);
470 xfree(args->list);
471 args->nalloc = args->num = 0;
472 args->list = NULL;
473 }
474}
475
Darren Tucker22cc7412004-12-06 22:47:41 +1100476/*
Damien Miller5fd38c02005-05-26 12:02:14 +1000477 * Expands tildes in the file name. Returns data allocated by xmalloc.
478 * Warning: this calls getpw*.
479 */
480char *
481tilde_expand_filename(const char *filename, uid_t uid)
482{
483 const char *path;
484 char user[128], ret[MAXPATHLEN];
485 struct passwd *pw;
Damien Millereccb9de2005-06-17 12:59:34 +1000486 u_int len, slash;
Damien Miller5fd38c02005-05-26 12:02:14 +1000487
488 if (*filename != '~')
489 return (xstrdup(filename));
490 filename++;
491
492 path = strchr(filename, '/');
493 if (path != NULL && path > filename) { /* ~user/path */
Damien Millereccb9de2005-06-17 12:59:34 +1000494 slash = path - filename;
495 if (slash > sizeof(user) - 1)
Damien Miller5fd38c02005-05-26 12:02:14 +1000496 fatal("tilde_expand_filename: ~username too long");
Damien Millereccb9de2005-06-17 12:59:34 +1000497 memcpy(user, filename, slash);
498 user[slash] = '\0';
Damien Miller5fd38c02005-05-26 12:02:14 +1000499 if ((pw = getpwnam(user)) == NULL)
500 fatal("tilde_expand_filename: No such user %s", user);
501 } else if ((pw = getpwuid(uid)) == NULL) /* ~/path */
502 fatal("tilde_expand_filename: No such uid %d", uid);
503
504 if (strlcpy(ret, pw->pw_dir, sizeof(ret)) >= sizeof(ret))
505 fatal("tilde_expand_filename: Path too long");
506
507 /* Make sure directory has a trailing '/' */
508 len = strlen(pw->pw_dir);
509 if ((len == 0 || pw->pw_dir[len - 1] != '/') &&
510 strlcat(ret, "/", sizeof(ret)) >= sizeof(ret))
511 fatal("tilde_expand_filename: Path too long");
512
513 /* Skip leading '/' from specified path */
514 if (path != NULL)
515 filename = path + 1;
516 if (strlcat(ret, filename, sizeof(ret)) >= sizeof(ret))
517 fatal("tilde_expand_filename: Path too long");
518
519 return (xstrdup(ret));
520}
521
522/*
Damien Miller6476cad2005-06-16 13:18:34 +1000523 * Expand a string with a set of %[char] escapes. A number of escapes may be
524 * specified as (char *escape_chars, char *replacement) pairs. The list must
Darren Tuckerbee73d52005-07-14 17:05:02 +1000525 * be terminated by a NULL escape_char. Returns replaced string in memory
Damien Miller6476cad2005-06-16 13:18:34 +1000526 * allocated by xmalloc.
527 */
528char *
529percent_expand(const char *string, ...)
530{
531#define EXPAND_MAX_KEYS 16
532 struct {
533 const char *key;
534 const char *repl;
535 } keys[EXPAND_MAX_KEYS];
Damien Millereccb9de2005-06-17 12:59:34 +1000536 u_int num_keys, i, j;
Damien Miller6476cad2005-06-16 13:18:34 +1000537 char buf[4096];
538 va_list ap;
539
540 /* Gather keys */
541 va_start(ap, string);
542 for (num_keys = 0; num_keys < EXPAND_MAX_KEYS; num_keys++) {
543 keys[num_keys].key = va_arg(ap, char *);
544 if (keys[num_keys].key == NULL)
545 break;
546 keys[num_keys].repl = va_arg(ap, char *);
547 if (keys[num_keys].repl == NULL)
548 fatal("percent_expand: NULL replacement");
549 }
550 va_end(ap);
551
552 if (num_keys >= EXPAND_MAX_KEYS)
553 fatal("percent_expand: too many keys");
554
555 /* Expand string */
556 *buf = '\0';
557 for (i = 0; *string != '\0'; string++) {
558 if (*string != '%') {
559 append:
560 buf[i++] = *string;
561 if (i >= sizeof(buf))
562 fatal("percent_expand: string too long");
563 buf[i] = '\0';
564 continue;
565 }
566 string++;
567 if (*string == '%')
568 goto append;
569 for (j = 0; j < num_keys; j++) {
570 if (strchr(keys[j].key, *string) != NULL) {
571 i = strlcat(buf, keys[j].repl, sizeof(buf));
572 if (i >= sizeof(buf))
573 fatal("percent_expand: string too long");
574 break;
575 }
576 }
577 if (j >= num_keys)
578 fatal("percent_expand: unknown key %%%c", *string);
579 }
580 return (xstrdup(buf));
581#undef EXPAND_MAX_KEYS
582}
583
584/*
Darren Tucker22cc7412004-12-06 22:47:41 +1100585 * Read an entire line from a public key file into a static buffer, discarding
586 * lines that exceed the buffer size. Returns 0 on success, -1 on failure.
587 */
588int
589read_keyfile_line(FILE *f, const char *filename, char *buf, size_t bufsz,
Darren Tuckerf0f90982004-12-11 13:39:50 +1100590 u_long *lineno)
Darren Tucker22cc7412004-12-06 22:47:41 +1100591{
592 while (fgets(buf, bufsz, f) != NULL) {
593 (*lineno)++;
594 if (buf[strlen(buf) - 1] == '\n' || feof(f)) {
595 return 0;
596 } else {
Darren Tuckerf0f90982004-12-11 13:39:50 +1100597 debug("%s: %s line %lu exceeds size limit", __func__,
598 filename, *lineno);
Darren Tucker22cc7412004-12-06 22:47:41 +1100599 /* discard remainder of line */
Darren Tucker47eede72005-03-14 23:08:12 +1100600 while (fgetc(f) != '\n' && !feof(f))
Darren Tucker22cc7412004-12-06 22:47:41 +1100601 ; /* nothing */
602 }
603 }
604 return -1;
605}
Damien Miller13390022005-07-06 09:44:19 +1000606
Damien Millerd27b9472005-12-13 19:29:02 +1100607int
Damien Miller7b58e802005-12-13 19:33:19 +1100608tun_open(int tun, int mode)
Damien Millerd27b9472005-12-13 19:29:02 +1100609{
Damien Miller62a31c92005-12-13 20:44:13 +1100610#if defined(CUSTOM_SYS_TUN_OPEN)
611 return (sys_tun_open(tun, mode));
Damien Miller2dcddbf2006-01-01 19:47:05 +1100612#elif defined(SSH_TUN_OPENBSD)
Damien Miller7b58e802005-12-13 19:33:19 +1100613 struct ifreq ifr;
Damien Millerd27b9472005-12-13 19:29:02 +1100614 char name[100];
Damien Miller7b58e802005-12-13 19:33:19 +1100615 int fd = -1, sock;
Damien Millerd27b9472005-12-13 19:29:02 +1100616
Damien Miller7b58e802005-12-13 19:33:19 +1100617 /* Open the tunnel device */
618 if (tun <= SSH_TUNID_MAX) {
Damien Millerd27b9472005-12-13 19:29:02 +1100619 snprintf(name, sizeof(name), "/dev/tun%d", tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100620 fd = open(name, O_RDWR);
621 } else if (tun == SSH_TUNID_ANY) {
622 for (tun = 100; tun >= 0; tun--) {
623 snprintf(name, sizeof(name), "/dev/tun%d", tun);
624 if ((fd = open(name, O_RDWR)) >= 0)
625 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100626 }
627 } else {
Damien Millera210d522006-01-02 23:40:30 +1100628 debug("%s: invalid tunnel %u", __func__, tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100629 return (-1);
Damien Millerd27b9472005-12-13 19:29:02 +1100630 }
Damien Miller7b58e802005-12-13 19:33:19 +1100631
632 if (fd < 0) {
633 debug("%s: %s open failed: %s", __func__, name, strerror(errno));
634 return (-1);
635 }
636
637 debug("%s: %s mode %d fd %d", __func__, name, mode, fd);
638
639 /* Set the tunnel device operation mode */
640 snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "tun%d", tun);
641 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) == -1)
642 goto failed;
643
644 if (ioctl(sock, SIOCGIFFLAGS, &ifr) == -1)
645 goto failed;
Damien Millera1d9a182006-01-02 23:41:21 +1100646
647 /* Set interface mode */
648 ifr.ifr_flags &= ~IFF_UP;
649 if (mode == SSH_TUNMODE_ETHERNET)
Damien Miller7b58e802005-12-13 19:33:19 +1100650 ifr.ifr_flags |= IFF_LINK0;
Damien Millera1d9a182006-01-02 23:41:21 +1100651 else
652 ifr.ifr_flags &= ~IFF_LINK0;
653 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
654 goto failed;
655
656 /* Bring interface up */
Damien Miller7b58e802005-12-13 19:33:19 +1100657 ifr.ifr_flags |= IFF_UP;
658 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
659 goto failed;
660
661 close(sock);
662 return (fd);
663
664 failed:
665 if (fd >= 0)
666 close(fd);
667 if (sock >= 0)
668 close(sock);
669 debug("%s: failed to set %s mode %d: %s", __func__, name,
670 mode, strerror(errno));
Damien Millerd27b9472005-12-13 19:29:02 +1100671 return (-1);
Damien Miller62a31c92005-12-13 20:44:13 +1100672#else
673 error("Tunnel interfaces are not supported on this platform");
674 return (-1);
675#endif
Damien Millerd27b9472005-12-13 19:29:02 +1100676}
677
Darren Tuckerce321d82005-10-03 18:11:24 +1000678void
679sanitise_stdfd(void)
680{
Damien Miller72c5b7d2006-01-06 14:50:44 +1100681 int nullfd, dupfd;
Darren Tuckerce321d82005-10-03 18:11:24 +1000682
Damien Miller72c5b7d2006-01-06 14:50:44 +1100683 if ((nullfd = dupfd = open(_PATH_DEVNULL, O_RDWR)) == -1) {
Darren Tuckerce321d82005-10-03 18:11:24 +1000684 fprintf(stderr, "Couldn't open /dev/null: %s", strerror(errno));
685 exit(1);
686 }
Damien Miller72c5b7d2006-01-06 14:50:44 +1100687 while (++dupfd <= 2) {
688 /* Only clobber closed fds */
689 if (fcntl(dupfd, F_GETFL, 0) >= 0)
690 continue;
691 if (dup2(nullfd, dupfd) == -1) {
Darren Tuckerce321d82005-10-03 18:11:24 +1000692 fprintf(stderr, "dup2: %s", strerror(errno));
693 exit(1);
694 }
Darren Tuckerce321d82005-10-03 18:11:24 +1000695 }
696 if (nullfd > 2)
697 close(nullfd);
698}
699
Damien Miller13390022005-07-06 09:44:19 +1000700char *
Damien Miller3f941882006-03-31 23:13:02 +1100701tohex(const void *vp, size_t l)
Damien Miller13390022005-07-06 09:44:19 +1000702{
Damien Miller3f941882006-03-31 23:13:02 +1100703 const u_char *p = (const u_char *)vp;
Damien Miller13390022005-07-06 09:44:19 +1000704 char b[3], *r;
Damien Miller3f941882006-03-31 23:13:02 +1100705 size_t i, hl;
706
707 if (l > 65536)
708 return xstrdup("tohex: length > 65536");
Damien Miller13390022005-07-06 09:44:19 +1000709
710 hl = l * 2 + 1;
Damien Miller07d86be2006-03-26 14:19:21 +1100711 r = xcalloc(1, hl);
Damien Miller13390022005-07-06 09:44:19 +1000712 for (i = 0; i < l; i++) {
Damien Miller3f941882006-03-31 23:13:02 +1100713 snprintf(b, sizeof(b), "%02x", p[i]);
Damien Miller13390022005-07-06 09:44:19 +1000714 strlcat(r, b, hl);
715 }
716 return (r);
717}
718
Damien Miller3f941882006-03-31 23:13:02 +1100719u_int64_t
720get_u64(const void *vp)
721{
722 const u_char *p = (const u_char *)vp;
723 u_int64_t v;
724
725 v = (u_int64_t)p[0] << 56;
726 v |= (u_int64_t)p[1] << 48;
727 v |= (u_int64_t)p[2] << 40;
728 v |= (u_int64_t)p[3] << 32;
729 v |= (u_int64_t)p[4] << 24;
730 v |= (u_int64_t)p[5] << 16;
731 v |= (u_int64_t)p[6] << 8;
732 v |= (u_int64_t)p[7];
733
734 return (v);
735}
736
737u_int32_t
738get_u32(const void *vp)
739{
740 const u_char *p = (const u_char *)vp;
741 u_int32_t v;
742
743 v = (u_int32_t)p[0] << 24;
744 v |= (u_int32_t)p[1] << 16;
745 v |= (u_int32_t)p[2] << 8;
746 v |= (u_int32_t)p[3];
747
748 return (v);
749}
750
751u_int16_t
752get_u16(const void *vp)
753{
754 const u_char *p = (const u_char *)vp;
755 u_int16_t v;
756
757 v = (u_int16_t)p[0] << 8;
758 v |= (u_int16_t)p[1];
759
760 return (v);
761}
762
763void
764put_u64(void *vp, u_int64_t v)
765{
766 u_char *p = (u_char *)vp;
767
768 p[0] = (u_char)(v >> 56) & 0xff;
769 p[1] = (u_char)(v >> 48) & 0xff;
770 p[2] = (u_char)(v >> 40) & 0xff;
771 p[3] = (u_char)(v >> 32) & 0xff;
772 p[4] = (u_char)(v >> 24) & 0xff;
773 p[5] = (u_char)(v >> 16) & 0xff;
774 p[6] = (u_char)(v >> 8) & 0xff;
775 p[7] = (u_char)v & 0xff;
776}
777
778void
779put_u32(void *vp, u_int32_t v)
780{
781 u_char *p = (u_char *)vp;
782
783 p[0] = (u_char)(v >> 24) & 0xff;
784 p[1] = (u_char)(v >> 16) & 0xff;
785 p[2] = (u_char)(v >> 8) & 0xff;
786 p[3] = (u_char)v & 0xff;
787}
788
789
790void
791put_u16(void *vp, u_int16_t v)
792{
793 u_char *p = (u_char *)vp;
794
795 p[0] = (u_char)(v >> 8) & 0xff;
796 p[1] = (u_char)v & 0xff;
797}