blob: 77f4a37a1461acc7ac0ce2a19d368b529a237f43 [file] [log] [blame]
Darren Tucker026d9db2013-05-16 20:23:52 +10001/* $OpenBSD: misc.c,v 1.88 2013/04/24 16:01:46 tedu 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 Miller1708cb72011-01-13 12:21:34 +110038#include <time.h>
Damien Millere6b3b612006-07-24 14:01:23 +100039#include <unistd.h>
Darren Tucker5d196262006-07-12 22:15:16 +100040
Damien Miller8ec8c3e2006-07-10 20:35:38 +100041#include <netinet/in.h>
Damien Miller0dac6fb2010-11-20 15:19:38 +110042#include <netinet/in_systm.h>
43#include <netinet/ip.h>
Damien Miller3a4051e2006-03-15 11:19:42 +110044#include <netinet/tcp.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100045
Darren Tucker39972492006-07-12 22:22:46 +100046#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100047#include <fcntl.h>
Darren Tucker4abde772007-12-29 02:43:51 +110048#include <netdb.h>
Damien Miller03e20032006-03-15 11:16:59 +110049#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110050# include <paths.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100051#include <pwd.h>
Damien Miller03e20032006-03-15 11:16:59 +110052#endif
Damien Miller3beb8522006-01-02 23:40:10 +110053#ifdef SSH_TUN_OPENBSD
54#include <net/if.h>
55#endif
Damien Miller61c51502000-08-18 14:01:04 +100056
Damien Millerd7834352006-08-05 12:39:39 +100057#include "xmalloc.h"
Kevin Stevesb6e773a2001-02-04 13:20:36 +000058#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000059#include "log.h"
Darren Tuckerda345532006-07-10 23:04:19 +100060#include "ssh.h"
Damien Miller61c51502000-08-18 14:01:04 +100061
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000062/* remove newline at end of string */
Damien Miller61c51502000-08-18 14:01:04 +100063char *
64chop(char *s)
65{
66 char *t = s;
67 while (*t) {
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +000068 if (*t == '\n' || *t == '\r') {
Damien Miller61c51502000-08-18 14:01:04 +100069 *t = '\0';
70 return s;
71 }
72 t++;
73 }
74 return s;
75
76}
77
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000078/* set/unset filedescriptor to non-blocking */
Damien Miller232711f2004-06-15 10:35:30 +100079int
Damien Miller61c51502000-08-18 14:01:04 +100080set_nonblock(int fd)
81{
82 int val;
Ben Lindstromc93e84c2001-05-12 00:08:37 +000083
Damien Miller61c51502000-08-18 14:01:04 +100084 val = fcntl(fd, F_GETFL, 0);
85 if (val < 0) {
86 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +100087 return (-1);
Damien Miller61c51502000-08-18 14:01:04 +100088 }
Damien Miller69b69aa2000-10-28 14:19:58 +110089 if (val & O_NONBLOCK) {
Damien Miller232711f2004-06-15 10:35:30 +100090 debug3("fd %d is O_NONBLOCK", fd);
91 return (0);
Damien Miller69b69aa2000-10-28 14:19:58 +110092 }
Damien Milleref095ce2003-05-14 13:41:39 +100093 debug2("fd %d setting O_NONBLOCK", fd);
Damien Miller61c51502000-08-18 14:01:04 +100094 val |= O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +100095 if (fcntl(fd, F_SETFL, val) == -1) {
96 debug("fcntl(%d, F_SETFL, O_NONBLOCK): %s", fd,
97 strerror(errno));
98 return (-1);
99 }
100 return (0);
Damien Miller61c51502000-08-18 14:01:04 +1000101}
102
Damien Miller232711f2004-06-15 10:35:30 +1000103int
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000104unset_nonblock(int fd)
105{
106 int val;
107
108 val = fcntl(fd, F_GETFL, 0);
109 if (val < 0) {
110 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +1000111 return (-1);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000112 }
113 if (!(val & O_NONBLOCK)) {
Damien Miller232711f2004-06-15 10:35:30 +1000114 debug3("fd %d is not O_NONBLOCK", fd);
115 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000116 }
Ben Lindstrom352b1c22001-06-21 03:04:37 +0000117 debug("fd %d clearing O_NONBLOCK", fd);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000118 val &= ~O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +1000119 if (fcntl(fd, F_SETFL, val) == -1) {
120 debug("fcntl(%d, F_SETFL, ~O_NONBLOCK): %s",
Ben Lindstrom84fcb312002-03-05 01:48:09 +0000121 fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +1000122 return (-1);
123 }
124 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000125}
126
Darren Tucker4abde772007-12-29 02:43:51 +1100127const char *
128ssh_gai_strerror(int gaierr)
129{
Darren Tucker912428c2008-01-01 20:33:35 +1100130 if (gaierr == EAI_SYSTEM)
131 return strerror(errno);
132 return gai_strerror(gaierr);
Darren Tucker4abde772007-12-29 02:43:51 +1100133}
134
Damien Miller398e1cf2002-02-05 11:52:13 +1100135/* disable nagle on socket */
136void
137set_nodelay(int fd)
138{
Ben Lindstrome86de512002-03-05 01:28:14 +0000139 int opt;
140 socklen_t optlen;
Damien Miller398e1cf2002-02-05 11:52:13 +1100141
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000142 optlen = sizeof opt;
143 if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
Darren Tucker6db8f932003-11-03 20:07:14 +1100144 debug("getsockopt TCP_NODELAY: %.100s", strerror(errno));
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000145 return;
146 }
147 if (opt == 1) {
148 debug2("fd %d is TCP_NODELAY", fd);
149 return;
150 }
151 opt = 1;
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000152 debug2("fd %d setting TCP_NODELAY", fd);
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000153 if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1)
Damien Miller398e1cf2002-02-05 11:52:13 +1100154 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
155}
156
Damien Miller61c51502000-08-18 14:01:04 +1000157/* Characters considered whitespace in strsep calls. */
158#define WHITESPACE " \t\r\n"
Damien Miller306d1182006-03-15 12:05:59 +1100159#define QUOTE "\""
Damien Miller61c51502000-08-18 14:01:04 +1000160
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000161/* return next token in configuration line */
Damien Miller61c51502000-08-18 14:01:04 +1000162char *
163strdelim(char **s)
164{
165 char *old;
166 int wspace = 0;
167
168 if (*s == NULL)
169 return NULL;
170
171 old = *s;
172
Damien Miller306d1182006-03-15 12:05:59 +1100173 *s = strpbrk(*s, WHITESPACE QUOTE "=");
Damien Miller61c51502000-08-18 14:01:04 +1000174 if (*s == NULL)
175 return (old);
176
Damien Miller306d1182006-03-15 12:05:59 +1100177 if (*s[0] == '\"') {
178 memmove(*s, *s + 1, strlen(*s)); /* move nul too */
179 /* Find matching quote */
180 if ((*s = strpbrk(*s, QUOTE)) == NULL) {
181 return (NULL); /* no matching quote */
182 } else {
183 *s[0] = '\0';
Damien Miller9308fc72010-07-16 13:56:01 +1000184 *s += strspn(*s + 1, WHITESPACE) + 1;
Damien Miller306d1182006-03-15 12:05:59 +1100185 return (old);
186 }
187 }
188
Damien Miller61c51502000-08-18 14:01:04 +1000189 /* Allow only one '=' to be skipped */
190 if (*s[0] == '=')
191 wspace = 1;
192 *s[0] = '\0';
193
Damien Miller306d1182006-03-15 12:05:59 +1100194 /* Skip any extra whitespace after first token */
Damien Miller61c51502000-08-18 14:01:04 +1000195 *s += strspn(*s + 1, WHITESPACE) + 1;
196 if (*s[0] == '=' && !wspace)
197 *s += strspn(*s + 1, WHITESPACE) + 1;
198
199 return (old);
200}
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000201
Ben Lindstrom086cf212001-03-05 05:56:40 +0000202struct passwd *
203pwcopy(struct passwd *pw)
204{
Damien Miller07d86be2006-03-26 14:19:21 +1100205 struct passwd *copy = xcalloc(1, sizeof(*copy));
Ben Lindstrom40304422001-03-05 06:22:01 +0000206
Ben Lindstrom086cf212001-03-05 05:56:40 +0000207 copy->pw_name = xstrdup(pw->pw_name);
208 copy->pw_passwd = xstrdup(pw->pw_passwd);
Damien Miller6332da22013-04-23 14:25:52 +1000209#ifdef HAVE_STRUCT_PASSWD_PW_GECOS
Ben Lindstrom40304422001-03-05 06:22:01 +0000210 copy->pw_gecos = xstrdup(pw->pw_gecos);
Damien Miller6332da22013-04-23 14:25:52 +1000211#endif
Ben Lindstrom086cf212001-03-05 05:56:40 +0000212 copy->pw_uid = pw->pw_uid;
213 copy->pw_gid = pw->pw_gid;
Damien Miller6332da22013-04-23 14:25:52 +1000214#ifdef HAVE_STRUCT_PASSWD_PW_EXPIRE
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000215 copy->pw_expire = pw->pw_expire;
Kevin Steves82456952001-06-22 21:14:18 +0000216#endif
Damien Miller6332da22013-04-23 14:25:52 +1000217#ifdef HAVE_STRUCT_PASSWD_PW_CHANGE
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000218 copy->pw_change = pw->pw_change;
Kevin Steves82456952001-06-22 21:14:18 +0000219#endif
Damien Miller6332da22013-04-23 14:25:52 +1000220#ifdef HAVE_STRUCT_PASSWD_PW_CLASS
Ben Lindstrom086cf212001-03-05 05:56:40 +0000221 copy->pw_class = xstrdup(pw->pw_class);
Ben Lindstrom0f68db42001-03-05 07:57:09 +0000222#endif
Ben Lindstrom086cf212001-03-05 05:56:40 +0000223 copy->pw_dir = xstrdup(pw->pw_dir);
224 copy->pw_shell = xstrdup(pw->pw_shell);
225 return copy;
226}
227
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000228/*
229 * Convert ASCII string to TCP/IP port number.
Damien Miller3dc71ad2009-01-28 16:31:22 +1100230 * Port must be >=0 and <=65535.
231 * Return -1 if invalid.
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000232 */
233int
234a2port(const char *s)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000235{
Damien Miller3dc71ad2009-01-28 16:31:22 +1100236 long long port;
237 const char *errstr;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000238
Damien Miller3dc71ad2009-01-28 16:31:22 +1100239 port = strtonum(s, 0, 65535, &errstr);
240 if (errstr != NULL)
241 return -1;
242 return (int)port;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000243}
244
Damien Millerd27b9472005-12-13 19:29:02 +1100245int
246a2tun(const char *s, int *remote)
247{
248 const char *errstr = NULL;
249 char *sp, *ep;
250 int tun;
251
252 if (remote != NULL) {
Damien Miller7b58e802005-12-13 19:33:19 +1100253 *remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +1100254 sp = xstrdup(s);
255 if ((ep = strchr(sp, ':')) == NULL) {
256 xfree(sp);
257 return (a2tun(s, NULL));
258 }
259 ep[0] = '\0'; ep++;
260 *remote = a2tun(ep, NULL);
261 tun = a2tun(sp, NULL);
262 xfree(sp);
Damien Miller7b58e802005-12-13 19:33:19 +1100263 return (*remote == SSH_TUNID_ERR ? *remote : tun);
Damien Millerd27b9472005-12-13 19:29:02 +1100264 }
265
266 if (strcasecmp(s, "any") == 0)
Damien Miller7b58e802005-12-13 19:33:19 +1100267 return (SSH_TUNID_ANY);
Damien Millerd27b9472005-12-13 19:29:02 +1100268
Damien Miller7b58e802005-12-13 19:33:19 +1100269 tun = strtonum(s, 0, SSH_TUNID_MAX, &errstr);
270 if (errstr != NULL)
271 return (SSH_TUNID_ERR);
Damien Millerd27b9472005-12-13 19:29:02 +1100272
273 return (tun);
274}
275
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000276#define SECONDS 1
277#define MINUTES (SECONDS * 60)
278#define HOURS (MINUTES * 60)
279#define DAYS (HOURS * 24)
280#define WEEKS (DAYS * 7)
281
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000282/*
283 * Convert a time string into seconds; format is
284 * a sequence of:
285 * time[qualifier]
286 *
287 * Valid time qualifiers are:
288 * <none> seconds
289 * s|S seconds
290 * m|M minutes
291 * h|H hours
292 * d|D days
293 * w|W weeks
294 *
295 * Examples:
296 * 90m 90 minutes
297 * 1h30m 90 minutes
298 * 2d 2 days
299 * 1w 1 week
300 *
301 * Return -1 if time string is invalid.
302 */
303long
304convtime(const char *s)
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000305{
306 long total, secs;
307 const char *p;
308 char *endp;
309
310 errno = 0;
311 total = 0;
312 p = s;
313
314 if (p == NULL || *p == '\0')
315 return -1;
316
317 while (*p) {
318 secs = strtol(p, &endp, 10);
319 if (p == endp ||
320 (errno == ERANGE && (secs == LONG_MIN || secs == LONG_MAX)) ||
321 secs < 0)
322 return -1;
323
324 switch (*endp++) {
325 case '\0':
326 endp--;
Damien Miller69b72032006-03-26 14:02:35 +1100327 break;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000328 case 's':
329 case 'S':
330 break;
331 case 'm':
332 case 'M':
333 secs *= MINUTES;
334 break;
335 case 'h':
336 case 'H':
337 secs *= HOURS;
338 break;
339 case 'd':
340 case 'D':
341 secs *= DAYS;
342 break;
343 case 'w':
344 case 'W':
345 secs *= WEEKS;
346 break;
347 default:
348 return -1;
349 }
350 total += secs;
351 if (total < 0)
352 return -1;
353 p = endp;
354 }
355
356 return total;
357}
358
Damien Millerf91ee4c2005-03-01 21:24:33 +1100359/*
Darren Tuckerda345532006-07-10 23:04:19 +1000360 * Returns a standardized host+port identifier string.
361 * Caller must free returned string.
362 */
363char *
364put_host_port(const char *host, u_short port)
365{
366 char *hoststr;
367
368 if (port == 0 || port == SSH_DEFAULT_PORT)
369 return(xstrdup(host));
370 if (asprintf(&hoststr, "[%s]:%d", host, (int)port) < 0)
371 fatal("put_host_port: asprintf: %s", strerror(errno));
372 debug3("put_host_port: %s", hoststr);
373 return hoststr;
374}
375
376/*
Damien Millerf91ee4c2005-03-01 21:24:33 +1100377 * Search for next delimiter between hostnames/addresses and ports.
378 * Argument may be modified (for termination).
379 * Returns *cp if parsing succeeds.
380 * *cp is set to the start of the next delimiter, if one was found.
381 * If this is the last field, *cp is set to NULL.
382 */
383char *
384hpdelim(char **cp)
385{
386 char *s, *old;
387
388 if (cp == NULL || *cp == NULL)
389 return NULL;
390
391 old = s = *cp;
392 if (*s == '[') {
393 if ((s = strchr(s, ']')) == NULL)
394 return NULL;
395 else
396 s++;
397 } else if ((s = strpbrk(s, ":/")) == NULL)
398 s = *cp + strlen(*cp); /* skip to end (see first case below) */
399
400 switch (*s) {
401 case '\0':
402 *cp = NULL; /* no more fields*/
403 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100404
Damien Millerf91ee4c2005-03-01 21:24:33 +1100405 case ':':
406 case '/':
407 *s = '\0'; /* terminate */
408 *cp = s + 1;
409 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100410
Damien Millerf91ee4c2005-03-01 21:24:33 +1100411 default:
412 return NULL;
413 }
414
415 return old;
416}
417
Ben Lindstrom4529b702001-05-03 23:39:53 +0000418char *
419cleanhostname(char *host)
420{
421 if (*host == '[' && host[strlen(host) - 1] == ']') {
422 host[strlen(host) - 1] = '\0';
423 return (host + 1);
424 } else
425 return host;
426}
427
428char *
429colon(char *cp)
430{
431 int flag = 0;
432
433 if (*cp == ':') /* Leading colon is part of file name. */
Damien Miller2e774462010-06-26 09:30:47 +1000434 return NULL;
Ben Lindstrom4529b702001-05-03 23:39:53 +0000435 if (*cp == '[')
436 flag = 1;
437
438 for (; *cp; ++cp) {
439 if (*cp == '@' && *(cp+1) == '[')
440 flag = 1;
441 if (*cp == ']' && *(cp+1) == ':' && flag)
442 return (cp+1);
443 if (*cp == ':' && !flag)
444 return (cp);
445 if (*cp == '/')
Damien Miller2e774462010-06-26 09:30:47 +1000446 return NULL;
Ben Lindstrom4529b702001-05-03 23:39:53 +0000447 }
Damien Miller2e774462010-06-26 09:30:47 +1000448 return NULL;
Ben Lindstrom4529b702001-05-03 23:39:53 +0000449}
450
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000451/* function to assist building execv() arguments */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000452void
453addargs(arglist *args, char *fmt, ...)
454{
455 va_list ap;
Damien Miller3eec6b72006-01-31 21:49:27 +1100456 char *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000457 u_int nalloc;
Damien Miller3eec6b72006-01-31 21:49:27 +1100458 int r;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000459
460 va_start(ap, fmt);
Damien Miller3eec6b72006-01-31 21:49:27 +1100461 r = vasprintf(&cp, fmt, ap);
Ben Lindstrom387c4722001-05-08 20:27:25 +0000462 va_end(ap);
Damien Miller3eec6b72006-01-31 21:49:27 +1100463 if (r == -1)
464 fatal("addargs: argument too long");
Ben Lindstrom387c4722001-05-08 20:27:25 +0000465
Darren Tuckerfb16b242003-09-22 21:04:23 +1000466 nalloc = args->nalloc;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000467 if (args->list == NULL) {
Darren Tuckerfb16b242003-09-22 21:04:23 +1000468 nalloc = 32;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000469 args->num = 0;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000470 } else if (args->num+2 >= nalloc)
471 nalloc *= 2;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000472
Damien Miller36812092006-03-26 14:22:47 +1100473 args->list = xrealloc(args->list, nalloc, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000474 args->nalloc = nalloc;
Damien Miller3eec6b72006-01-31 21:49:27 +1100475 args->list[args->num++] = cp;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000476 args->list[args->num] = NULL;
477}
Darren Tucker22cc7412004-12-06 22:47:41 +1100478
Damien Miller3eec6b72006-01-31 21:49:27 +1100479void
480replacearg(arglist *args, u_int which, char *fmt, ...)
481{
482 va_list ap;
483 char *cp;
484 int r;
485
486 va_start(ap, fmt);
487 r = vasprintf(&cp, fmt, ap);
488 va_end(ap);
489 if (r == -1)
490 fatal("replacearg: argument too long");
491
492 if (which >= args->num)
493 fatal("replacearg: tried to replace invalid arg %d >= %d",
494 which, args->num);
495 xfree(args->list[which]);
496 args->list[which] = cp;
497}
498
499void
500freeargs(arglist *args)
501{
502 u_int i;
503
504 if (args->list != NULL) {
505 for (i = 0; i < args->num; i++)
506 xfree(args->list[i]);
507 xfree(args->list);
508 args->nalloc = args->num = 0;
509 args->list = NULL;
510 }
511}
512
Darren Tucker22cc7412004-12-06 22:47:41 +1100513/*
Damien Miller5fd38c02005-05-26 12:02:14 +1000514 * Expands tildes in the file name. Returns data allocated by xmalloc.
515 * Warning: this calls getpw*.
516 */
517char *
518tilde_expand_filename(const char *filename, uid_t uid)
519{
Darren Tucker2ca51bf2013-05-16 20:22:46 +1000520 const char *path, *sep;
521 char user[128], *ret;
Damien Miller5fd38c02005-05-26 12:02:14 +1000522 struct passwd *pw;
Damien Millereccb9de2005-06-17 12:59:34 +1000523 u_int len, slash;
Damien Miller5fd38c02005-05-26 12:02:14 +1000524
525 if (*filename != '~')
526 return (xstrdup(filename));
527 filename++;
528
529 path = strchr(filename, '/');
530 if (path != NULL && path > filename) { /* ~user/path */
Damien Millereccb9de2005-06-17 12:59:34 +1000531 slash = path - filename;
532 if (slash > sizeof(user) - 1)
Damien Miller5fd38c02005-05-26 12:02:14 +1000533 fatal("tilde_expand_filename: ~username too long");
Damien Millereccb9de2005-06-17 12:59:34 +1000534 memcpy(user, filename, slash);
535 user[slash] = '\0';
Damien Miller5fd38c02005-05-26 12:02:14 +1000536 if ((pw = getpwnam(user)) == NULL)
537 fatal("tilde_expand_filename: No such user %s", user);
538 } else if ((pw = getpwuid(uid)) == NULL) /* ~/path */
Darren Tucker7517b5b2008-06-13 14:48:59 +1000539 fatal("tilde_expand_filename: No such uid %ld", (long)uid);
Damien Miller5fd38c02005-05-26 12:02:14 +1000540
Damien Miller5fd38c02005-05-26 12:02:14 +1000541 /* Make sure directory has a trailing '/' */
542 len = strlen(pw->pw_dir);
Darren Tucker026d9db2013-05-16 20:23:52 +1000543 if (len == 0 || pw->pw_dir[len - 1] != '/')
Darren Tucker2ca51bf2013-05-16 20:22:46 +1000544 sep = "/";
545 else
546 sep = "";
Damien Miller5fd38c02005-05-26 12:02:14 +1000547
548 /* Skip leading '/' from specified path */
549 if (path != NULL)
550 filename = path + 1;
Darren Tucker2ca51bf2013-05-16 20:22:46 +1000551
552 if (xasprintf(&ret, "%s%s%s", pw->pw_dir, sep, filename) >= MAXPATHLEN)
Damien Miller5fd38c02005-05-26 12:02:14 +1000553 fatal("tilde_expand_filename: Path too long");
554
Darren Tucker2ca51bf2013-05-16 20:22:46 +1000555 return (ret);
Damien Miller5fd38c02005-05-26 12:02:14 +1000556}
557
558/*
Damien Miller6476cad2005-06-16 13:18:34 +1000559 * Expand a string with a set of %[char] escapes. A number of escapes may be
560 * specified as (char *escape_chars, char *replacement) pairs. The list must
Darren Tuckerbee73d52005-07-14 17:05:02 +1000561 * be terminated by a NULL escape_char. Returns replaced string in memory
Damien Miller6476cad2005-06-16 13:18:34 +1000562 * allocated by xmalloc.
563 */
564char *
565percent_expand(const char *string, ...)
566{
567#define EXPAND_MAX_KEYS 16
Darren Tucker70d87692010-01-08 18:49:16 +1100568 u_int num_keys, i, j;
Damien Miller6476cad2005-06-16 13:18:34 +1000569 struct {
570 const char *key;
571 const char *repl;
572 } keys[EXPAND_MAX_KEYS];
Damien Miller6476cad2005-06-16 13:18:34 +1000573 char buf[4096];
574 va_list ap;
575
576 /* Gather keys */
577 va_start(ap, string);
578 for (num_keys = 0; num_keys < EXPAND_MAX_KEYS; num_keys++) {
579 keys[num_keys].key = va_arg(ap, char *);
580 if (keys[num_keys].key == NULL)
581 break;
582 keys[num_keys].repl = va_arg(ap, char *);
583 if (keys[num_keys].repl == NULL)
Darren Tucker70d87692010-01-08 18:49:16 +1100584 fatal("%s: NULL replacement", __func__);
Damien Miller6476cad2005-06-16 13:18:34 +1000585 }
Darren Tucker70d87692010-01-08 18:49:16 +1100586 if (num_keys == EXPAND_MAX_KEYS && va_arg(ap, char *) != NULL)
587 fatal("%s: too many keys", __func__);
Damien Miller6476cad2005-06-16 13:18:34 +1000588 va_end(ap);
589
Damien Miller6476cad2005-06-16 13:18:34 +1000590 /* Expand string */
591 *buf = '\0';
592 for (i = 0; *string != '\0'; string++) {
593 if (*string != '%') {
594 append:
595 buf[i++] = *string;
596 if (i >= sizeof(buf))
Darren Tucker70d87692010-01-08 18:49:16 +1100597 fatal("%s: string too long", __func__);
Damien Miller6476cad2005-06-16 13:18:34 +1000598 buf[i] = '\0';
599 continue;
600 }
601 string++;
Darren Tucker70d87692010-01-08 18:49:16 +1100602 /* %% case */
Damien Miller6476cad2005-06-16 13:18:34 +1000603 if (*string == '%')
604 goto append;
605 for (j = 0; j < num_keys; j++) {
606 if (strchr(keys[j].key, *string) != NULL) {
607 i = strlcat(buf, keys[j].repl, sizeof(buf));
608 if (i >= sizeof(buf))
Darren Tucker70d87692010-01-08 18:49:16 +1100609 fatal("%s: string too long", __func__);
Damien Miller6476cad2005-06-16 13:18:34 +1000610 break;
611 }
612 }
613 if (j >= num_keys)
Darren Tucker70d87692010-01-08 18:49:16 +1100614 fatal("%s: unknown key %%%c", __func__, *string);
Damien Miller6476cad2005-06-16 13:18:34 +1000615 }
616 return (xstrdup(buf));
617#undef EXPAND_MAX_KEYS
618}
619
620/*
Darren Tucker22cc7412004-12-06 22:47:41 +1100621 * Read an entire line from a public key file into a static buffer, discarding
622 * lines that exceed the buffer size. Returns 0 on success, -1 on failure.
623 */
624int
625read_keyfile_line(FILE *f, const char *filename, char *buf, size_t bufsz,
Darren Tuckerf0f90982004-12-11 13:39:50 +1100626 u_long *lineno)
Darren Tucker22cc7412004-12-06 22:47:41 +1100627{
628 while (fgets(buf, bufsz, f) != NULL) {
Damien Miller3ca8b772007-01-05 16:24:47 +1100629 if (buf[0] == '\0')
630 continue;
Darren Tucker22cc7412004-12-06 22:47:41 +1100631 (*lineno)++;
632 if (buf[strlen(buf) - 1] == '\n' || feof(f)) {
633 return 0;
634 } else {
Darren Tuckerf0f90982004-12-11 13:39:50 +1100635 debug("%s: %s line %lu exceeds size limit", __func__,
636 filename, *lineno);
Darren Tucker22cc7412004-12-06 22:47:41 +1100637 /* discard remainder of line */
Darren Tucker47eede72005-03-14 23:08:12 +1100638 while (fgetc(f) != '\n' && !feof(f))
Darren Tucker22cc7412004-12-06 22:47:41 +1100639 ; /* nothing */
640 }
641 }
642 return -1;
643}
Damien Miller13390022005-07-06 09:44:19 +1000644
Damien Millerd27b9472005-12-13 19:29:02 +1100645int
Damien Miller7b58e802005-12-13 19:33:19 +1100646tun_open(int tun, int mode)
Damien Millerd27b9472005-12-13 19:29:02 +1100647{
Damien Miller62a31c92005-12-13 20:44:13 +1100648#if defined(CUSTOM_SYS_TUN_OPEN)
649 return (sys_tun_open(tun, mode));
Damien Miller2dcddbf2006-01-01 19:47:05 +1100650#elif defined(SSH_TUN_OPENBSD)
Damien Miller7b58e802005-12-13 19:33:19 +1100651 struct ifreq ifr;
Damien Millerd27b9472005-12-13 19:29:02 +1100652 char name[100];
Damien Miller7b58e802005-12-13 19:33:19 +1100653 int fd = -1, sock;
Damien Millerd27b9472005-12-13 19:29:02 +1100654
Damien Miller7b58e802005-12-13 19:33:19 +1100655 /* Open the tunnel device */
656 if (tun <= SSH_TUNID_MAX) {
Damien Millerd27b9472005-12-13 19:29:02 +1100657 snprintf(name, sizeof(name), "/dev/tun%d", tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100658 fd = open(name, O_RDWR);
659 } else if (tun == SSH_TUNID_ANY) {
660 for (tun = 100; tun >= 0; tun--) {
661 snprintf(name, sizeof(name), "/dev/tun%d", tun);
662 if ((fd = open(name, O_RDWR)) >= 0)
663 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100664 }
665 } else {
Damien Millera210d522006-01-02 23:40:30 +1100666 debug("%s: invalid tunnel %u", __func__, tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100667 return (-1);
Damien Millerd27b9472005-12-13 19:29:02 +1100668 }
Damien Miller7b58e802005-12-13 19:33:19 +1100669
670 if (fd < 0) {
671 debug("%s: %s open failed: %s", __func__, name, strerror(errno));
672 return (-1);
673 }
674
675 debug("%s: %s mode %d fd %d", __func__, name, mode, fd);
676
677 /* Set the tunnel device operation mode */
678 snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "tun%d", tun);
679 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) == -1)
680 goto failed;
681
682 if (ioctl(sock, SIOCGIFFLAGS, &ifr) == -1)
683 goto failed;
Damien Millera1d9a182006-01-02 23:41:21 +1100684
685 /* Set interface mode */
686 ifr.ifr_flags &= ~IFF_UP;
687 if (mode == SSH_TUNMODE_ETHERNET)
Damien Miller7b58e802005-12-13 19:33:19 +1100688 ifr.ifr_flags |= IFF_LINK0;
Damien Millera1d9a182006-01-02 23:41:21 +1100689 else
690 ifr.ifr_flags &= ~IFF_LINK0;
691 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
692 goto failed;
693
694 /* Bring interface up */
Damien Miller7b58e802005-12-13 19:33:19 +1100695 ifr.ifr_flags |= IFF_UP;
696 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
697 goto failed;
698
699 close(sock);
700 return (fd);
701
702 failed:
703 if (fd >= 0)
704 close(fd);
705 if (sock >= 0)
706 close(sock);
707 debug("%s: failed to set %s mode %d: %s", __func__, name,
708 mode, strerror(errno));
Damien Millerd27b9472005-12-13 19:29:02 +1100709 return (-1);
Damien Miller62a31c92005-12-13 20:44:13 +1100710#else
711 error("Tunnel interfaces are not supported on this platform");
712 return (-1);
713#endif
Damien Millerd27b9472005-12-13 19:29:02 +1100714}
715
Darren Tuckerce321d82005-10-03 18:11:24 +1000716void
717sanitise_stdfd(void)
718{
Damien Miller72c5b7d2006-01-06 14:50:44 +1100719 int nullfd, dupfd;
Darren Tuckerce321d82005-10-03 18:11:24 +1000720
Damien Miller72c5b7d2006-01-06 14:50:44 +1100721 if ((nullfd = dupfd = open(_PATH_DEVNULL, O_RDWR)) == -1) {
Damien Miller9eab9562009-02-22 08:47:02 +1100722 fprintf(stderr, "Couldn't open /dev/null: %s\n",
723 strerror(errno));
Darren Tuckerce321d82005-10-03 18:11:24 +1000724 exit(1);
725 }
Damien Miller72c5b7d2006-01-06 14:50:44 +1100726 while (++dupfd <= 2) {
727 /* Only clobber closed fds */
728 if (fcntl(dupfd, F_GETFL, 0) >= 0)
729 continue;
730 if (dup2(nullfd, dupfd) == -1) {
Damien Miller9eab9562009-02-22 08:47:02 +1100731 fprintf(stderr, "dup2: %s\n", strerror(errno));
Darren Tuckerce321d82005-10-03 18:11:24 +1000732 exit(1);
733 }
Darren Tuckerce321d82005-10-03 18:11:24 +1000734 }
735 if (nullfd > 2)
736 close(nullfd);
737}
738
Damien Miller13390022005-07-06 09:44:19 +1000739char *
Damien Miller3f941882006-03-31 23:13:02 +1100740tohex(const void *vp, size_t l)
Damien Miller13390022005-07-06 09:44:19 +1000741{
Damien Miller3f941882006-03-31 23:13:02 +1100742 const u_char *p = (const u_char *)vp;
Damien Miller13390022005-07-06 09:44:19 +1000743 char b[3], *r;
Damien Miller3f941882006-03-31 23:13:02 +1100744 size_t i, hl;
745
746 if (l > 65536)
747 return xstrdup("tohex: length > 65536");
Damien Miller13390022005-07-06 09:44:19 +1000748
749 hl = l * 2 + 1;
Damien Miller07d86be2006-03-26 14:19:21 +1100750 r = xcalloc(1, hl);
Damien Miller13390022005-07-06 09:44:19 +1000751 for (i = 0; i < l; i++) {
Damien Miller3f941882006-03-31 23:13:02 +1100752 snprintf(b, sizeof(b), "%02x", p[i]);
Damien Miller13390022005-07-06 09:44:19 +1000753 strlcat(r, b, hl);
754 }
755 return (r);
756}
757
Damien Miller3f941882006-03-31 23:13:02 +1100758u_int64_t
759get_u64(const void *vp)
760{
761 const u_char *p = (const u_char *)vp;
762 u_int64_t v;
763
764 v = (u_int64_t)p[0] << 56;
765 v |= (u_int64_t)p[1] << 48;
766 v |= (u_int64_t)p[2] << 40;
767 v |= (u_int64_t)p[3] << 32;
768 v |= (u_int64_t)p[4] << 24;
769 v |= (u_int64_t)p[5] << 16;
770 v |= (u_int64_t)p[6] << 8;
771 v |= (u_int64_t)p[7];
772
773 return (v);
774}
775
776u_int32_t
777get_u32(const void *vp)
778{
779 const u_char *p = (const u_char *)vp;
780 u_int32_t v;
781
782 v = (u_int32_t)p[0] << 24;
783 v |= (u_int32_t)p[1] << 16;
784 v |= (u_int32_t)p[2] << 8;
785 v |= (u_int32_t)p[3];
786
787 return (v);
788}
789
790u_int16_t
791get_u16(const void *vp)
792{
793 const u_char *p = (const u_char *)vp;
794 u_int16_t v;
795
796 v = (u_int16_t)p[0] << 8;
797 v |= (u_int16_t)p[1];
798
799 return (v);
800}
801
802void
803put_u64(void *vp, u_int64_t v)
804{
805 u_char *p = (u_char *)vp;
806
807 p[0] = (u_char)(v >> 56) & 0xff;
808 p[1] = (u_char)(v >> 48) & 0xff;
809 p[2] = (u_char)(v >> 40) & 0xff;
810 p[3] = (u_char)(v >> 32) & 0xff;
811 p[4] = (u_char)(v >> 24) & 0xff;
812 p[5] = (u_char)(v >> 16) & 0xff;
813 p[6] = (u_char)(v >> 8) & 0xff;
814 p[7] = (u_char)v & 0xff;
815}
816
817void
818put_u32(void *vp, u_int32_t v)
819{
820 u_char *p = (u_char *)vp;
821
822 p[0] = (u_char)(v >> 24) & 0xff;
823 p[1] = (u_char)(v >> 16) & 0xff;
824 p[2] = (u_char)(v >> 8) & 0xff;
825 p[3] = (u_char)v & 0xff;
826}
827
828
829void
830put_u16(void *vp, u_int16_t v)
831{
832 u_char *p = (u_char *)vp;
833
834 p[0] = (u_char)(v >> 8) & 0xff;
835 p[1] = (u_char)v & 0xff;
836}
Darren Tucker3fc464e2008-06-13 06:42:45 +1000837
838void
839ms_subtract_diff(struct timeval *start, int *ms)
840{
841 struct timeval diff, finish;
842
843 gettimeofday(&finish, NULL);
844 timersub(&finish, start, &diff);
845 *ms -= (diff.tv_sec * 1000) + (diff.tv_usec / 1000);
846}
847
848void
849ms_to_timeval(struct timeval *tv, int ms)
850{
851 if (ms < 0)
852 ms = 0;
853 tv->tv_sec = ms / 1000;
854 tv->tv_usec = (ms % 1000) * 1000;
855}
856
Damien Miller65e42f82010-09-24 22:15:11 +1000857void
858bandwidth_limit_init(struct bwlimit *bw, u_int64_t kbps, size_t buflen)
859{
860 bw->buflen = buflen;
861 bw->rate = kbps;
862 bw->thresh = bw->rate;
863 bw->lamt = 0;
864 timerclear(&bw->bwstart);
865 timerclear(&bw->bwend);
866}
867
868/* Callback from read/write loop to insert bandwidth-limiting delays */
869void
870bandwidth_limit(struct bwlimit *bw, size_t read_len)
871{
872 u_int64_t waitlen;
873 struct timespec ts, rm;
874
875 if (!timerisset(&bw->bwstart)) {
876 gettimeofday(&bw->bwstart, NULL);
877 return;
878 }
879
880 bw->lamt += read_len;
881 if (bw->lamt < bw->thresh)
882 return;
883
884 gettimeofday(&bw->bwend, NULL);
885 timersub(&bw->bwend, &bw->bwstart, &bw->bwend);
886 if (!timerisset(&bw->bwend))
887 return;
888
889 bw->lamt *= 8;
890 waitlen = (double)1000000L * bw->lamt / bw->rate;
891
892 bw->bwstart.tv_sec = waitlen / 1000000L;
893 bw->bwstart.tv_usec = waitlen % 1000000L;
894
895 if (timercmp(&bw->bwstart, &bw->bwend, >)) {
896 timersub(&bw->bwstart, &bw->bwend, &bw->bwend);
897
898 /* Adjust the wait time */
899 if (bw->bwend.tv_sec) {
900 bw->thresh /= 2;
901 if (bw->thresh < bw->buflen / 4)
902 bw->thresh = bw->buflen / 4;
903 } else if (bw->bwend.tv_usec < 10000) {
904 bw->thresh *= 2;
905 if (bw->thresh > bw->buflen * 8)
906 bw->thresh = bw->buflen * 8;
907 }
908
909 TIMEVAL_TO_TIMESPEC(&bw->bwend, &ts);
910 while (nanosleep(&ts, &rm) == -1) {
911 if (errno != EINTR)
912 break;
913 ts = rm;
914 }
915 }
916
917 bw->lamt = 0;
918 gettimeofday(&bw->bwstart, NULL);
919}
Damien Miller0dac6fb2010-11-20 15:19:38 +1100920
Damien Miller2cd62932010-12-01 11:50:35 +1100921/* Make a template filename for mk[sd]temp() */
922void
923mktemp_proto(char *s, size_t len)
924{
925 const char *tmpdir;
926 int r;
927
928 if ((tmpdir = getenv("TMPDIR")) != NULL) {
929 r = snprintf(s, len, "%s/ssh-XXXXXXXXXXXX", tmpdir);
930 if (r > 0 && (size_t)r < len)
931 return;
932 }
933 r = snprintf(s, len, "/tmp/ssh-XXXXXXXXXXXX");
934 if (r < 0 || (size_t)r >= len)
935 fatal("%s: template string too short", __func__);
936}
937
Damien Miller0dac6fb2010-11-20 15:19:38 +1100938static const struct {
939 const char *name;
940 int value;
941} ipqos[] = {
942 { "af11", IPTOS_DSCP_AF11 },
943 { "af12", IPTOS_DSCP_AF12 },
944 { "af13", IPTOS_DSCP_AF13 },
Damien Miller2918e032011-09-22 21:34:35 +1000945 { "af21", IPTOS_DSCP_AF21 },
Damien Miller0dac6fb2010-11-20 15:19:38 +1100946 { "af22", IPTOS_DSCP_AF22 },
947 { "af23", IPTOS_DSCP_AF23 },
948 { "af31", IPTOS_DSCP_AF31 },
949 { "af32", IPTOS_DSCP_AF32 },
950 { "af33", IPTOS_DSCP_AF33 },
951 { "af41", IPTOS_DSCP_AF41 },
952 { "af42", IPTOS_DSCP_AF42 },
953 { "af43", IPTOS_DSCP_AF43 },
954 { "cs0", IPTOS_DSCP_CS0 },
955 { "cs1", IPTOS_DSCP_CS1 },
956 { "cs2", IPTOS_DSCP_CS2 },
957 { "cs3", IPTOS_DSCP_CS3 },
958 { "cs4", IPTOS_DSCP_CS4 },
959 { "cs5", IPTOS_DSCP_CS5 },
960 { "cs6", IPTOS_DSCP_CS6 },
961 { "cs7", IPTOS_DSCP_CS7 },
962 { "ef", IPTOS_DSCP_EF },
963 { "lowdelay", IPTOS_LOWDELAY },
964 { "throughput", IPTOS_THROUGHPUT },
965 { "reliability", IPTOS_RELIABILITY },
966 { NULL, -1 }
967};
968
969int
970parse_ipqos(const char *cp)
971{
972 u_int i;
973 char *ep;
974 long val;
975
976 if (cp == NULL)
977 return -1;
978 for (i = 0; ipqos[i].name != NULL; i++) {
979 if (strcasecmp(cp, ipqos[i].name) == 0)
980 return ipqos[i].value;
981 }
982 /* Try parsing as an integer */
983 val = strtol(cp, &ep, 0);
984 if (*cp == '\0' || *ep != '\0' || val < 0 || val > 255)
985 return -1;
986 return val;
987}
988
Damien Miller91475862011-05-05 14:14:34 +1000989const char *
990iptos2str(int iptos)
991{
992 int i;
993 static char iptos_str[sizeof "0xff"];
994
995 for (i = 0; ipqos[i].name != NULL; i++) {
996 if (ipqos[i].value == iptos)
997 return ipqos[i].name;
998 }
999 snprintf(iptos_str, sizeof iptos_str, "0x%02x", iptos);
1000 return iptos_str;
1001}
Damien Miller04ee0f82009-11-18 17:48:30 +11001002void
1003sock_set_v6only(int s)
1004{
1005#ifdef IPV6_V6ONLY
1006 int on = 1;
1007
1008 debug3("%s: set socket %d IPV6_V6ONLY", __func__, s);
1009 if (setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) == -1)
1010 error("setsockopt IPV6_V6ONLY: %s", strerror(errno));
1011#endif
1012}