blob: 755eda10549ca5125eb29e4f7b5fd691973e4ff3 [file] [log] [blame]
Damien Miller3dc71ad2009-01-28 16:31:22 +11001/* $OpenBSD: misc.c,v 1.70 2009/01/22 10:02:34 djm 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
Damien Miller9f2abc42006-07-10 20:53:08 +100029#include <sys/types.h>
Damien Millerd7834352006-08-05 12:39:39 +100030#include <sys/ioctl.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100031#include <sys/socket.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100032#include <sys/param.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100033
Darren Tucker5d196262006-07-12 22:15:16 +100034#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100035#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100036#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100037#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100038#include <unistd.h>
Darren Tucker5d196262006-07-12 22:15:16 +100039
Damien Miller8ec8c3e2006-07-10 20:35:38 +100040#include <netinet/in.h>
Damien Miller3a4051e2006-03-15 11:19:42 +110041#include <netinet/tcp.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100042
Darren Tucker39972492006-07-12 22:22:46 +100043#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100044#include <fcntl.h>
Darren Tucker4abde772007-12-29 02:43:51 +110045#include <netdb.h>
Damien Miller03e20032006-03-15 11:16:59 +110046#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110047# include <paths.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100048#include <pwd.h>
Damien Miller03e20032006-03-15 11:16:59 +110049#endif
Damien Miller3beb8522006-01-02 23:40:10 +110050#ifdef SSH_TUN_OPENBSD
51#include <net/if.h>
52#endif
Damien Miller61c51502000-08-18 14:01:04 +100053
Damien Millerd7834352006-08-05 12:39:39 +100054#include "xmalloc.h"
Kevin Stevesb6e773a2001-02-04 13:20:36 +000055#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000056#include "log.h"
Darren Tuckerda345532006-07-10 23:04:19 +100057#include "ssh.h"
Damien Miller61c51502000-08-18 14:01:04 +100058
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000059/* remove newline at end of string */
Damien Miller61c51502000-08-18 14:01:04 +100060char *
61chop(char *s)
62{
63 char *t = s;
64 while (*t) {
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +000065 if (*t == '\n' || *t == '\r') {
Damien Miller61c51502000-08-18 14:01:04 +100066 *t = '\0';
67 return s;
68 }
69 t++;
70 }
71 return s;
72
73}
74
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000075/* set/unset filedescriptor to non-blocking */
Damien Miller232711f2004-06-15 10:35:30 +100076int
Damien Miller61c51502000-08-18 14:01:04 +100077set_nonblock(int fd)
78{
79 int val;
Ben Lindstromc93e84c2001-05-12 00:08:37 +000080
Damien Miller61c51502000-08-18 14:01:04 +100081 val = fcntl(fd, F_GETFL, 0);
82 if (val < 0) {
83 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +100084 return (-1);
Damien Miller61c51502000-08-18 14:01:04 +100085 }
Damien Miller69b69aa2000-10-28 14:19:58 +110086 if (val & O_NONBLOCK) {
Damien Miller232711f2004-06-15 10:35:30 +100087 debug3("fd %d is O_NONBLOCK", fd);
88 return (0);
Damien Miller69b69aa2000-10-28 14:19:58 +110089 }
Damien Milleref095ce2003-05-14 13:41:39 +100090 debug2("fd %d setting O_NONBLOCK", fd);
Damien Miller61c51502000-08-18 14:01:04 +100091 val |= O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +100092 if (fcntl(fd, F_SETFL, val) == -1) {
93 debug("fcntl(%d, F_SETFL, O_NONBLOCK): %s", fd,
94 strerror(errno));
95 return (-1);
96 }
97 return (0);
Damien Miller61c51502000-08-18 14:01:04 +100098}
99
Damien Miller232711f2004-06-15 10:35:30 +1000100int
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000101unset_nonblock(int fd)
102{
103 int val;
104
105 val = fcntl(fd, F_GETFL, 0);
106 if (val < 0) {
107 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +1000108 return (-1);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000109 }
110 if (!(val & O_NONBLOCK)) {
Damien Miller232711f2004-06-15 10:35:30 +1000111 debug3("fd %d is not O_NONBLOCK", fd);
112 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000113 }
Ben Lindstrom352b1c22001-06-21 03:04:37 +0000114 debug("fd %d clearing O_NONBLOCK", fd);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000115 val &= ~O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +1000116 if (fcntl(fd, F_SETFL, val) == -1) {
117 debug("fcntl(%d, F_SETFL, ~O_NONBLOCK): %s",
Ben Lindstrom84fcb312002-03-05 01:48:09 +0000118 fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +1000119 return (-1);
120 }
121 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000122}
123
Darren Tucker4abde772007-12-29 02:43:51 +1100124const char *
125ssh_gai_strerror(int gaierr)
126{
Darren Tucker912428c2008-01-01 20:33:35 +1100127 if (gaierr == EAI_SYSTEM)
128 return strerror(errno);
129 return gai_strerror(gaierr);
Darren Tucker4abde772007-12-29 02:43:51 +1100130}
131
Damien Miller398e1cf2002-02-05 11:52:13 +1100132/* disable nagle on socket */
133void
134set_nodelay(int fd)
135{
Ben Lindstrome86de512002-03-05 01:28:14 +0000136 int opt;
137 socklen_t optlen;
Damien Miller398e1cf2002-02-05 11:52:13 +1100138
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000139 optlen = sizeof opt;
140 if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
Darren Tucker6db8f932003-11-03 20:07:14 +1100141 debug("getsockopt TCP_NODELAY: %.100s", strerror(errno));
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000142 return;
143 }
144 if (opt == 1) {
145 debug2("fd %d is TCP_NODELAY", fd);
146 return;
147 }
148 opt = 1;
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000149 debug2("fd %d setting TCP_NODELAY", fd);
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000150 if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1)
Damien Miller398e1cf2002-02-05 11:52:13 +1100151 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
152}
153
Damien Miller61c51502000-08-18 14:01:04 +1000154/* Characters considered whitespace in strsep calls. */
155#define WHITESPACE " \t\r\n"
Damien Miller306d1182006-03-15 12:05:59 +1100156#define QUOTE "\""
Damien Miller61c51502000-08-18 14:01:04 +1000157
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000158/* return next token in configuration line */
Damien Miller61c51502000-08-18 14:01:04 +1000159char *
160strdelim(char **s)
161{
162 char *old;
163 int wspace = 0;
164
165 if (*s == NULL)
166 return NULL;
167
168 old = *s;
169
Damien Miller306d1182006-03-15 12:05:59 +1100170 *s = strpbrk(*s, WHITESPACE QUOTE "=");
Damien Miller61c51502000-08-18 14:01:04 +1000171 if (*s == NULL)
172 return (old);
173
Damien Miller306d1182006-03-15 12:05:59 +1100174 if (*s[0] == '\"') {
175 memmove(*s, *s + 1, strlen(*s)); /* move nul too */
176 /* Find matching quote */
177 if ((*s = strpbrk(*s, QUOTE)) == NULL) {
178 return (NULL); /* no matching quote */
179 } else {
180 *s[0] = '\0';
181 return (old);
182 }
183 }
184
Damien Miller61c51502000-08-18 14:01:04 +1000185 /* Allow only one '=' to be skipped */
186 if (*s[0] == '=')
187 wspace = 1;
188 *s[0] = '\0';
189
Damien Miller306d1182006-03-15 12:05:59 +1100190 /* Skip any extra whitespace after first token */
Damien Miller61c51502000-08-18 14:01:04 +1000191 *s += strspn(*s + 1, WHITESPACE) + 1;
192 if (*s[0] == '=' && !wspace)
193 *s += strspn(*s + 1, WHITESPACE) + 1;
194
195 return (old);
196}
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000197
Ben Lindstrom086cf212001-03-05 05:56:40 +0000198struct passwd *
199pwcopy(struct passwd *pw)
200{
Damien Miller07d86be2006-03-26 14:19:21 +1100201 struct passwd *copy = xcalloc(1, sizeof(*copy));
Ben Lindstrom40304422001-03-05 06:22:01 +0000202
Ben Lindstrom086cf212001-03-05 05:56:40 +0000203 copy->pw_name = xstrdup(pw->pw_name);
204 copy->pw_passwd = xstrdup(pw->pw_passwd);
Ben Lindstrom40304422001-03-05 06:22:01 +0000205 copy->pw_gecos = xstrdup(pw->pw_gecos);
Ben Lindstrom086cf212001-03-05 05:56:40 +0000206 copy->pw_uid = pw->pw_uid;
207 copy->pw_gid = pw->pw_gid;
Kevin Steves82456952001-06-22 21:14:18 +0000208#ifdef HAVE_PW_EXPIRE_IN_PASSWD
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000209 copy->pw_expire = pw->pw_expire;
Kevin Steves82456952001-06-22 21:14:18 +0000210#endif
211#ifdef HAVE_PW_CHANGE_IN_PASSWD
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000212 copy->pw_change = pw->pw_change;
Kevin Steves82456952001-06-22 21:14:18 +0000213#endif
Ben Lindstrom0f68db42001-03-05 07:57:09 +0000214#ifdef HAVE_PW_CLASS_IN_PASSWD
Ben Lindstrom086cf212001-03-05 05:56:40 +0000215 copy->pw_class = xstrdup(pw->pw_class);
Ben Lindstrom0f68db42001-03-05 07:57:09 +0000216#endif
Ben Lindstrom086cf212001-03-05 05:56:40 +0000217 copy->pw_dir = xstrdup(pw->pw_dir);
218 copy->pw_shell = xstrdup(pw->pw_shell);
219 return copy;
220}
221
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000222/*
223 * Convert ASCII string to TCP/IP port number.
Damien Miller3dc71ad2009-01-28 16:31:22 +1100224 * Port must be >=0 and <=65535.
225 * Return -1 if invalid.
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000226 */
227int
228a2port(const char *s)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000229{
Damien Miller3dc71ad2009-01-28 16:31:22 +1100230 long long port;
231 const char *errstr;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000232
Damien Miller3dc71ad2009-01-28 16:31:22 +1100233 port = strtonum(s, 0, 65535, &errstr);
234 if (errstr != NULL)
235 return -1;
236 return (int)port;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000237}
238
Damien Millerd27b9472005-12-13 19:29:02 +1100239int
240a2tun(const char *s, int *remote)
241{
242 const char *errstr = NULL;
243 char *sp, *ep;
244 int tun;
245
246 if (remote != NULL) {
Damien Miller7b58e802005-12-13 19:33:19 +1100247 *remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +1100248 sp = xstrdup(s);
249 if ((ep = strchr(sp, ':')) == NULL) {
250 xfree(sp);
251 return (a2tun(s, NULL));
252 }
253 ep[0] = '\0'; ep++;
254 *remote = a2tun(ep, NULL);
255 tun = a2tun(sp, NULL);
256 xfree(sp);
Damien Miller7b58e802005-12-13 19:33:19 +1100257 return (*remote == SSH_TUNID_ERR ? *remote : tun);
Damien Millerd27b9472005-12-13 19:29:02 +1100258 }
259
260 if (strcasecmp(s, "any") == 0)
Damien Miller7b58e802005-12-13 19:33:19 +1100261 return (SSH_TUNID_ANY);
Damien Millerd27b9472005-12-13 19:29:02 +1100262
Damien Miller7b58e802005-12-13 19:33:19 +1100263 tun = strtonum(s, 0, SSH_TUNID_MAX, &errstr);
264 if (errstr != NULL)
265 return (SSH_TUNID_ERR);
Damien Millerd27b9472005-12-13 19:29:02 +1100266
267 return (tun);
268}
269
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000270#define SECONDS 1
271#define MINUTES (SECONDS * 60)
272#define HOURS (MINUTES * 60)
273#define DAYS (HOURS * 24)
274#define WEEKS (DAYS * 7)
275
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000276/*
277 * Convert a time string into seconds; format is
278 * a sequence of:
279 * time[qualifier]
280 *
281 * Valid time qualifiers are:
282 * <none> seconds
283 * s|S seconds
284 * m|M minutes
285 * h|H hours
286 * d|D days
287 * w|W weeks
288 *
289 * Examples:
290 * 90m 90 minutes
291 * 1h30m 90 minutes
292 * 2d 2 days
293 * 1w 1 week
294 *
295 * Return -1 if time string is invalid.
296 */
297long
298convtime(const char *s)
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000299{
300 long total, secs;
301 const char *p;
302 char *endp;
303
304 errno = 0;
305 total = 0;
306 p = s;
307
308 if (p == NULL || *p == '\0')
309 return -1;
310
311 while (*p) {
312 secs = strtol(p, &endp, 10);
313 if (p == endp ||
314 (errno == ERANGE && (secs == LONG_MIN || secs == LONG_MAX)) ||
315 secs < 0)
316 return -1;
317
318 switch (*endp++) {
319 case '\0':
320 endp--;
Damien Miller69b72032006-03-26 14:02:35 +1100321 break;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000322 case 's':
323 case 'S':
324 break;
325 case 'm':
326 case 'M':
327 secs *= MINUTES;
328 break;
329 case 'h':
330 case 'H':
331 secs *= HOURS;
332 break;
333 case 'd':
334 case 'D':
335 secs *= DAYS;
336 break;
337 case 'w':
338 case 'W':
339 secs *= WEEKS;
340 break;
341 default:
342 return -1;
343 }
344 total += secs;
345 if (total < 0)
346 return -1;
347 p = endp;
348 }
349
350 return total;
351}
352
Damien Millerf91ee4c2005-03-01 21:24:33 +1100353/*
Darren Tuckerda345532006-07-10 23:04:19 +1000354 * Returns a standardized host+port identifier string.
355 * Caller must free returned string.
356 */
357char *
358put_host_port(const char *host, u_short port)
359{
360 char *hoststr;
361
362 if (port == 0 || port == SSH_DEFAULT_PORT)
363 return(xstrdup(host));
364 if (asprintf(&hoststr, "[%s]:%d", host, (int)port) < 0)
365 fatal("put_host_port: asprintf: %s", strerror(errno));
366 debug3("put_host_port: %s", hoststr);
367 return hoststr;
368}
369
370/*
Damien Millerf91ee4c2005-03-01 21:24:33 +1100371 * Search for next delimiter between hostnames/addresses and ports.
372 * Argument may be modified (for termination).
373 * Returns *cp if parsing succeeds.
374 * *cp is set to the start of the next delimiter, if one was found.
375 * If this is the last field, *cp is set to NULL.
376 */
377char *
378hpdelim(char **cp)
379{
380 char *s, *old;
381
382 if (cp == NULL || *cp == NULL)
383 return NULL;
384
385 old = s = *cp;
386 if (*s == '[') {
387 if ((s = strchr(s, ']')) == NULL)
388 return NULL;
389 else
390 s++;
391 } else if ((s = strpbrk(s, ":/")) == NULL)
392 s = *cp + strlen(*cp); /* skip to end (see first case below) */
393
394 switch (*s) {
395 case '\0':
396 *cp = NULL; /* no more fields*/
397 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100398
Damien Millerf91ee4c2005-03-01 21:24:33 +1100399 case ':':
400 case '/':
401 *s = '\0'; /* terminate */
402 *cp = s + 1;
403 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100404
Damien Millerf91ee4c2005-03-01 21:24:33 +1100405 default:
406 return NULL;
407 }
408
409 return old;
410}
411
Ben Lindstrom4529b702001-05-03 23:39:53 +0000412char *
413cleanhostname(char *host)
414{
415 if (*host == '[' && host[strlen(host) - 1] == ']') {
416 host[strlen(host) - 1] = '\0';
417 return (host + 1);
418 } else
419 return host;
420}
421
422char *
423colon(char *cp)
424{
425 int flag = 0;
426
427 if (*cp == ':') /* Leading colon is part of file name. */
428 return (0);
429 if (*cp == '[')
430 flag = 1;
431
432 for (; *cp; ++cp) {
433 if (*cp == '@' && *(cp+1) == '[')
434 flag = 1;
435 if (*cp == ']' && *(cp+1) == ':' && flag)
436 return (cp+1);
437 if (*cp == ':' && !flag)
438 return (cp);
439 if (*cp == '/')
440 return (0);
441 }
442 return (0);
443}
444
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000445/* function to assist building execv() arguments */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000446void
447addargs(arglist *args, char *fmt, ...)
448{
449 va_list ap;
Damien Miller3eec6b72006-01-31 21:49:27 +1100450 char *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000451 u_int nalloc;
Damien Miller3eec6b72006-01-31 21:49:27 +1100452 int r;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000453
454 va_start(ap, fmt);
Damien Miller3eec6b72006-01-31 21:49:27 +1100455 r = vasprintf(&cp, fmt, ap);
Ben Lindstrom387c4722001-05-08 20:27:25 +0000456 va_end(ap);
Damien Miller3eec6b72006-01-31 21:49:27 +1100457 if (r == -1)
458 fatal("addargs: argument too long");
Ben Lindstrom387c4722001-05-08 20:27:25 +0000459
Darren Tuckerfb16b242003-09-22 21:04:23 +1000460 nalloc = args->nalloc;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000461 if (args->list == NULL) {
Darren Tuckerfb16b242003-09-22 21:04:23 +1000462 nalloc = 32;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000463 args->num = 0;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000464 } else if (args->num+2 >= nalloc)
465 nalloc *= 2;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000466
Damien Miller36812092006-03-26 14:22:47 +1100467 args->list = xrealloc(args->list, nalloc, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000468 args->nalloc = nalloc;
Damien Miller3eec6b72006-01-31 21:49:27 +1100469 args->list[args->num++] = cp;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000470 args->list[args->num] = NULL;
471}
Darren Tucker22cc7412004-12-06 22:47:41 +1100472
Damien Miller3eec6b72006-01-31 21:49:27 +1100473void
474replacearg(arglist *args, u_int which, char *fmt, ...)
475{
476 va_list ap;
477 char *cp;
478 int r;
479
480 va_start(ap, fmt);
481 r = vasprintf(&cp, fmt, ap);
482 va_end(ap);
483 if (r == -1)
484 fatal("replacearg: argument too long");
485
486 if (which >= args->num)
487 fatal("replacearg: tried to replace invalid arg %d >= %d",
488 which, args->num);
489 xfree(args->list[which]);
490 args->list[which] = cp;
491}
492
493void
494freeargs(arglist *args)
495{
496 u_int i;
497
498 if (args->list != NULL) {
499 for (i = 0; i < args->num; i++)
500 xfree(args->list[i]);
501 xfree(args->list);
502 args->nalloc = args->num = 0;
503 args->list = NULL;
504 }
505}
506
Darren Tucker22cc7412004-12-06 22:47:41 +1100507/*
Damien Miller5fd38c02005-05-26 12:02:14 +1000508 * Expands tildes in the file name. Returns data allocated by xmalloc.
509 * Warning: this calls getpw*.
510 */
511char *
512tilde_expand_filename(const char *filename, uid_t uid)
513{
514 const char *path;
515 char user[128], ret[MAXPATHLEN];
516 struct passwd *pw;
Damien Millereccb9de2005-06-17 12:59:34 +1000517 u_int len, slash;
Damien Miller5fd38c02005-05-26 12:02:14 +1000518
519 if (*filename != '~')
520 return (xstrdup(filename));
521 filename++;
522
523 path = strchr(filename, '/');
524 if (path != NULL && path > filename) { /* ~user/path */
Damien Millereccb9de2005-06-17 12:59:34 +1000525 slash = path - filename;
526 if (slash > sizeof(user) - 1)
Damien Miller5fd38c02005-05-26 12:02:14 +1000527 fatal("tilde_expand_filename: ~username too long");
Damien Millereccb9de2005-06-17 12:59:34 +1000528 memcpy(user, filename, slash);
529 user[slash] = '\0';
Damien Miller5fd38c02005-05-26 12:02:14 +1000530 if ((pw = getpwnam(user)) == NULL)
531 fatal("tilde_expand_filename: No such user %s", user);
532 } else if ((pw = getpwuid(uid)) == NULL) /* ~/path */
Darren Tucker7517b5b2008-06-13 14:48:59 +1000533 fatal("tilde_expand_filename: No such uid %ld", (long)uid);
Damien Miller5fd38c02005-05-26 12:02:14 +1000534
535 if (strlcpy(ret, pw->pw_dir, sizeof(ret)) >= sizeof(ret))
536 fatal("tilde_expand_filename: Path too long");
537
538 /* Make sure directory has a trailing '/' */
539 len = strlen(pw->pw_dir);
540 if ((len == 0 || pw->pw_dir[len - 1] != '/') &&
541 strlcat(ret, "/", sizeof(ret)) >= sizeof(ret))
542 fatal("tilde_expand_filename: Path too long");
543
544 /* Skip leading '/' from specified path */
545 if (path != NULL)
546 filename = path + 1;
547 if (strlcat(ret, filename, sizeof(ret)) >= sizeof(ret))
548 fatal("tilde_expand_filename: Path too long");
549
550 return (xstrdup(ret));
551}
552
553/*
Damien Miller6476cad2005-06-16 13:18:34 +1000554 * Expand a string with a set of %[char] escapes. A number of escapes may be
555 * specified as (char *escape_chars, char *replacement) pairs. The list must
Darren Tuckerbee73d52005-07-14 17:05:02 +1000556 * be terminated by a NULL escape_char. Returns replaced string in memory
Damien Miller6476cad2005-06-16 13:18:34 +1000557 * allocated by xmalloc.
558 */
559char *
560percent_expand(const char *string, ...)
561{
562#define EXPAND_MAX_KEYS 16
563 struct {
564 const char *key;
565 const char *repl;
566 } keys[EXPAND_MAX_KEYS];
Damien Millereccb9de2005-06-17 12:59:34 +1000567 u_int num_keys, i, j;
Damien Miller6476cad2005-06-16 13:18:34 +1000568 char buf[4096];
569 va_list ap;
570
571 /* Gather keys */
572 va_start(ap, string);
573 for (num_keys = 0; num_keys < EXPAND_MAX_KEYS; num_keys++) {
574 keys[num_keys].key = va_arg(ap, char *);
575 if (keys[num_keys].key == NULL)
576 break;
577 keys[num_keys].repl = va_arg(ap, char *);
578 if (keys[num_keys].repl == NULL)
579 fatal("percent_expand: NULL replacement");
580 }
581 va_end(ap);
582
583 if (num_keys >= EXPAND_MAX_KEYS)
584 fatal("percent_expand: too many keys");
585
586 /* Expand string */
587 *buf = '\0';
588 for (i = 0; *string != '\0'; string++) {
589 if (*string != '%') {
590 append:
591 buf[i++] = *string;
592 if (i >= sizeof(buf))
593 fatal("percent_expand: string too long");
594 buf[i] = '\0';
595 continue;
596 }
597 string++;
598 if (*string == '%')
599 goto append;
600 for (j = 0; j < num_keys; j++) {
601 if (strchr(keys[j].key, *string) != NULL) {
602 i = strlcat(buf, keys[j].repl, sizeof(buf));
603 if (i >= sizeof(buf))
604 fatal("percent_expand: string too long");
605 break;
606 }
607 }
608 if (j >= num_keys)
609 fatal("percent_expand: unknown key %%%c", *string);
610 }
611 return (xstrdup(buf));
612#undef EXPAND_MAX_KEYS
613}
614
615/*
Darren Tucker22cc7412004-12-06 22:47:41 +1100616 * Read an entire line from a public key file into a static buffer, discarding
617 * lines that exceed the buffer size. Returns 0 on success, -1 on failure.
618 */
619int
620read_keyfile_line(FILE *f, const char *filename, char *buf, size_t bufsz,
Darren Tuckerf0f90982004-12-11 13:39:50 +1100621 u_long *lineno)
Darren Tucker22cc7412004-12-06 22:47:41 +1100622{
623 while (fgets(buf, bufsz, f) != NULL) {
Damien Miller3ca8b772007-01-05 16:24:47 +1100624 if (buf[0] == '\0')
625 continue;
Darren Tucker22cc7412004-12-06 22:47:41 +1100626 (*lineno)++;
627 if (buf[strlen(buf) - 1] == '\n' || feof(f)) {
628 return 0;
629 } else {
Darren Tuckerf0f90982004-12-11 13:39:50 +1100630 debug("%s: %s line %lu exceeds size limit", __func__,
631 filename, *lineno);
Darren Tucker22cc7412004-12-06 22:47:41 +1100632 /* discard remainder of line */
Darren Tucker47eede72005-03-14 23:08:12 +1100633 while (fgetc(f) != '\n' && !feof(f))
Darren Tucker22cc7412004-12-06 22:47:41 +1100634 ; /* nothing */
635 }
636 }
637 return -1;
638}
Damien Miller13390022005-07-06 09:44:19 +1000639
Damien Millerd27b9472005-12-13 19:29:02 +1100640int
Damien Miller7b58e802005-12-13 19:33:19 +1100641tun_open(int tun, int mode)
Damien Millerd27b9472005-12-13 19:29:02 +1100642{
Damien Miller62a31c92005-12-13 20:44:13 +1100643#if defined(CUSTOM_SYS_TUN_OPEN)
644 return (sys_tun_open(tun, mode));
Damien Miller2dcddbf2006-01-01 19:47:05 +1100645#elif defined(SSH_TUN_OPENBSD)
Damien Miller7b58e802005-12-13 19:33:19 +1100646 struct ifreq ifr;
Damien Millerd27b9472005-12-13 19:29:02 +1100647 char name[100];
Damien Miller7b58e802005-12-13 19:33:19 +1100648 int fd = -1, sock;
Damien Millerd27b9472005-12-13 19:29:02 +1100649
Damien Miller7b58e802005-12-13 19:33:19 +1100650 /* Open the tunnel device */
651 if (tun <= SSH_TUNID_MAX) {
Damien Millerd27b9472005-12-13 19:29:02 +1100652 snprintf(name, sizeof(name), "/dev/tun%d", tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100653 fd = open(name, O_RDWR);
654 } else if (tun == SSH_TUNID_ANY) {
655 for (tun = 100; tun >= 0; tun--) {
656 snprintf(name, sizeof(name), "/dev/tun%d", tun);
657 if ((fd = open(name, O_RDWR)) >= 0)
658 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100659 }
660 } else {
Damien Millera210d522006-01-02 23:40:30 +1100661 debug("%s: invalid tunnel %u", __func__, tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100662 return (-1);
Damien Millerd27b9472005-12-13 19:29:02 +1100663 }
Damien Miller7b58e802005-12-13 19:33:19 +1100664
665 if (fd < 0) {
666 debug("%s: %s open failed: %s", __func__, name, strerror(errno));
667 return (-1);
668 }
669
670 debug("%s: %s mode %d fd %d", __func__, name, mode, fd);
671
672 /* Set the tunnel device operation mode */
673 snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "tun%d", tun);
674 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) == -1)
675 goto failed;
676
677 if (ioctl(sock, SIOCGIFFLAGS, &ifr) == -1)
678 goto failed;
Damien Millera1d9a182006-01-02 23:41:21 +1100679
680 /* Set interface mode */
681 ifr.ifr_flags &= ~IFF_UP;
682 if (mode == SSH_TUNMODE_ETHERNET)
Damien Miller7b58e802005-12-13 19:33:19 +1100683 ifr.ifr_flags |= IFF_LINK0;
Damien Millera1d9a182006-01-02 23:41:21 +1100684 else
685 ifr.ifr_flags &= ~IFF_LINK0;
686 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
687 goto failed;
688
689 /* Bring interface up */
Damien Miller7b58e802005-12-13 19:33:19 +1100690 ifr.ifr_flags |= IFF_UP;
691 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
692 goto failed;
693
694 close(sock);
695 return (fd);
696
697 failed:
698 if (fd >= 0)
699 close(fd);
700 if (sock >= 0)
701 close(sock);
702 debug("%s: failed to set %s mode %d: %s", __func__, name,
703 mode, strerror(errno));
Damien Millerd27b9472005-12-13 19:29:02 +1100704 return (-1);
Damien Miller62a31c92005-12-13 20:44:13 +1100705#else
706 error("Tunnel interfaces are not supported on this platform");
707 return (-1);
708#endif
Damien Millerd27b9472005-12-13 19:29:02 +1100709}
710
Darren Tuckerce321d82005-10-03 18:11:24 +1000711void
712sanitise_stdfd(void)
713{
Damien Miller72c5b7d2006-01-06 14:50:44 +1100714 int nullfd, dupfd;
Darren Tuckerce321d82005-10-03 18:11:24 +1000715
Damien Miller72c5b7d2006-01-06 14:50:44 +1100716 if ((nullfd = dupfd = open(_PATH_DEVNULL, O_RDWR)) == -1) {
Darren Tuckerce321d82005-10-03 18:11:24 +1000717 fprintf(stderr, "Couldn't open /dev/null: %s", strerror(errno));
718 exit(1);
719 }
Damien Miller72c5b7d2006-01-06 14:50:44 +1100720 while (++dupfd <= 2) {
721 /* Only clobber closed fds */
722 if (fcntl(dupfd, F_GETFL, 0) >= 0)
723 continue;
724 if (dup2(nullfd, dupfd) == -1) {
Darren Tuckerce321d82005-10-03 18:11:24 +1000725 fprintf(stderr, "dup2: %s", strerror(errno));
726 exit(1);
727 }
Darren Tuckerce321d82005-10-03 18:11:24 +1000728 }
729 if (nullfd > 2)
730 close(nullfd);
731}
732
Damien Miller13390022005-07-06 09:44:19 +1000733char *
Damien Miller3f941882006-03-31 23:13:02 +1100734tohex(const void *vp, size_t l)
Damien Miller13390022005-07-06 09:44:19 +1000735{
Damien Miller3f941882006-03-31 23:13:02 +1100736 const u_char *p = (const u_char *)vp;
Damien Miller13390022005-07-06 09:44:19 +1000737 char b[3], *r;
Damien Miller3f941882006-03-31 23:13:02 +1100738 size_t i, hl;
739
740 if (l > 65536)
741 return xstrdup("tohex: length > 65536");
Damien Miller13390022005-07-06 09:44:19 +1000742
743 hl = l * 2 + 1;
Damien Miller07d86be2006-03-26 14:19:21 +1100744 r = xcalloc(1, hl);
Damien Miller13390022005-07-06 09:44:19 +1000745 for (i = 0; i < l; i++) {
Damien Miller3f941882006-03-31 23:13:02 +1100746 snprintf(b, sizeof(b), "%02x", p[i]);
Damien Miller13390022005-07-06 09:44:19 +1000747 strlcat(r, b, hl);
748 }
749 return (r);
750}
751
Damien Miller3f941882006-03-31 23:13:02 +1100752u_int64_t
753get_u64(const void *vp)
754{
755 const u_char *p = (const u_char *)vp;
756 u_int64_t v;
757
758 v = (u_int64_t)p[0] << 56;
759 v |= (u_int64_t)p[1] << 48;
760 v |= (u_int64_t)p[2] << 40;
761 v |= (u_int64_t)p[3] << 32;
762 v |= (u_int64_t)p[4] << 24;
763 v |= (u_int64_t)p[5] << 16;
764 v |= (u_int64_t)p[6] << 8;
765 v |= (u_int64_t)p[7];
766
767 return (v);
768}
769
770u_int32_t
771get_u32(const void *vp)
772{
773 const u_char *p = (const u_char *)vp;
774 u_int32_t v;
775
776 v = (u_int32_t)p[0] << 24;
777 v |= (u_int32_t)p[1] << 16;
778 v |= (u_int32_t)p[2] << 8;
779 v |= (u_int32_t)p[3];
780
781 return (v);
782}
783
784u_int16_t
785get_u16(const void *vp)
786{
787 const u_char *p = (const u_char *)vp;
788 u_int16_t v;
789
790 v = (u_int16_t)p[0] << 8;
791 v |= (u_int16_t)p[1];
792
793 return (v);
794}
795
796void
797put_u64(void *vp, u_int64_t v)
798{
799 u_char *p = (u_char *)vp;
800
801 p[0] = (u_char)(v >> 56) & 0xff;
802 p[1] = (u_char)(v >> 48) & 0xff;
803 p[2] = (u_char)(v >> 40) & 0xff;
804 p[3] = (u_char)(v >> 32) & 0xff;
805 p[4] = (u_char)(v >> 24) & 0xff;
806 p[5] = (u_char)(v >> 16) & 0xff;
807 p[6] = (u_char)(v >> 8) & 0xff;
808 p[7] = (u_char)v & 0xff;
809}
810
811void
812put_u32(void *vp, u_int32_t v)
813{
814 u_char *p = (u_char *)vp;
815
816 p[0] = (u_char)(v >> 24) & 0xff;
817 p[1] = (u_char)(v >> 16) & 0xff;
818 p[2] = (u_char)(v >> 8) & 0xff;
819 p[3] = (u_char)v & 0xff;
820}
821
822
823void
824put_u16(void *vp, u_int16_t v)
825{
826 u_char *p = (u_char *)vp;
827
828 p[0] = (u_char)(v >> 8) & 0xff;
829 p[1] = (u_char)v & 0xff;
830}
Darren Tucker3fc464e2008-06-13 06:42:45 +1000831
832void
833ms_subtract_diff(struct timeval *start, int *ms)
834{
835 struct timeval diff, finish;
836
837 gettimeofday(&finish, NULL);
838 timersub(&finish, start, &diff);
839 *ms -= (diff.tv_sec * 1000) + (diff.tv_usec / 1000);
840}
841
842void
843ms_to_timeval(struct timeval *tv, int ms)
844{
845 if (ms < 0)
846 ms = 0;
847 tv->tv_sec = ms / 1000;
848 tv->tv_usec = (ms % 1000) * 1000;
849}
850