blob: 65c9222aa8b0ce3be5e6a37af77b7c6d03696ce8 [file] [log] [blame]
dtucker@openbsd.org7fc47662016-11-30 00:28:31 +00001/* $OpenBSD: misc.c,v 1.107 2016/11/30 00:28:31 dtucker 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>
dtucker@openbsd.org65a3c0d2016-01-20 09:22:39 +000032#include <sys/time.h>
Damien Miller7acefbb2014-07-18 14:11:24 +100033#include <sys/un.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100034
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +000035#include <limits.h>
Darren Tucker5d196262006-07-12 22:15:16 +100036#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100037#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100038#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100039#include <string.h>
Damien Miller1708cb72011-01-13 12:21:34 +110040#include <time.h>
Damien Millere6b3b612006-07-24 14:01:23 +100041#include <unistd.h>
Darren Tucker5d196262006-07-12 22:15:16 +100042
Damien Miller8ec8c3e2006-07-10 20:35:38 +100043#include <netinet/in.h>
Damien Miller0dac6fb2010-11-20 15:19:38 +110044#include <netinet/in_systm.h>
45#include <netinet/ip.h>
Damien Miller3a4051e2006-03-15 11:19:42 +110046#include <netinet/tcp.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100047
Damien Millere9fc72e2013-10-15 12:14:12 +110048#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100049#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100050#include <fcntl.h>
Darren Tucker4abde772007-12-29 02:43:51 +110051#include <netdb.h>
Damien Miller03e20032006-03-15 11:16:59 +110052#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110053# include <paths.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100054#include <pwd.h>
Damien Miller03e20032006-03-15 11:16:59 +110055#endif
Damien Miller3beb8522006-01-02 23:40:10 +110056#ifdef SSH_TUN_OPENBSD
57#include <net/if.h>
58#endif
Damien Miller61c51502000-08-18 14:01:04 +100059
Damien Millerd7834352006-08-05 12:39:39 +100060#include "xmalloc.h"
Kevin Stevesb6e773a2001-02-04 13:20:36 +000061#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "log.h"
Darren Tuckerda345532006-07-10 23:04:19 +100063#include "ssh.h"
Damien Miller61c51502000-08-18 14:01:04 +100064
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000065/* remove newline at end of string */
Damien Miller61c51502000-08-18 14:01:04 +100066char *
67chop(char *s)
68{
69 char *t = s;
70 while (*t) {
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +000071 if (*t == '\n' || *t == '\r') {
Damien Miller61c51502000-08-18 14:01:04 +100072 *t = '\0';
73 return s;
74 }
75 t++;
76 }
77 return s;
78
79}
80
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000081/* set/unset filedescriptor to non-blocking */
Damien Miller232711f2004-06-15 10:35:30 +100082int
Damien Miller61c51502000-08-18 14:01:04 +100083set_nonblock(int fd)
84{
85 int val;
Ben Lindstromc93e84c2001-05-12 00:08:37 +000086
krw@openbsd.org574def02016-04-02 14:37:42 +000087 val = fcntl(fd, F_GETFL);
Damien Miller61c51502000-08-18 14:01:04 +100088 if (val < 0) {
krw@openbsd.org574def02016-04-02 14:37:42 +000089 error("fcntl(%d, F_GETFL): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +100090 return (-1);
Damien Miller61c51502000-08-18 14:01:04 +100091 }
Damien Miller69b69aa2000-10-28 14:19:58 +110092 if (val & O_NONBLOCK) {
Damien Miller232711f2004-06-15 10:35:30 +100093 debug3("fd %d is O_NONBLOCK", fd);
94 return (0);
Damien Miller69b69aa2000-10-28 14:19:58 +110095 }
Damien Milleref095ce2003-05-14 13:41:39 +100096 debug2("fd %d setting O_NONBLOCK", fd);
Damien Miller61c51502000-08-18 14:01:04 +100097 val |= O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +100098 if (fcntl(fd, F_SETFL, val) == -1) {
99 debug("fcntl(%d, F_SETFL, O_NONBLOCK): %s", fd,
100 strerror(errno));
101 return (-1);
102 }
103 return (0);
Damien Miller61c51502000-08-18 14:01:04 +1000104}
105
Damien Miller232711f2004-06-15 10:35:30 +1000106int
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000107unset_nonblock(int fd)
108{
109 int val;
110
krw@openbsd.org574def02016-04-02 14:37:42 +0000111 val = fcntl(fd, F_GETFL);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000112 if (val < 0) {
krw@openbsd.org574def02016-04-02 14:37:42 +0000113 error("fcntl(%d, F_GETFL): %s", fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +1000114 return (-1);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000115 }
116 if (!(val & O_NONBLOCK)) {
Damien Miller232711f2004-06-15 10:35:30 +1000117 debug3("fd %d is not O_NONBLOCK", fd);
118 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000119 }
Ben Lindstrom352b1c22001-06-21 03:04:37 +0000120 debug("fd %d clearing O_NONBLOCK", fd);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000121 val &= ~O_NONBLOCK;
Damien Miller232711f2004-06-15 10:35:30 +1000122 if (fcntl(fd, F_SETFL, val) == -1) {
123 debug("fcntl(%d, F_SETFL, ~O_NONBLOCK): %s",
Ben Lindstrom84fcb312002-03-05 01:48:09 +0000124 fd, strerror(errno));
Damien Miller232711f2004-06-15 10:35:30 +1000125 return (-1);
126 }
127 return (0);
Ben Lindstromc93e84c2001-05-12 00:08:37 +0000128}
129
Darren Tucker4abde772007-12-29 02:43:51 +1100130const char *
131ssh_gai_strerror(int gaierr)
132{
Damien Miller7313fc92013-07-18 16:13:19 +1000133 if (gaierr == EAI_SYSTEM && errno != 0)
Darren Tucker912428c2008-01-01 20:33:35 +1100134 return strerror(errno);
135 return gai_strerror(gaierr);
Darren Tucker4abde772007-12-29 02:43:51 +1100136}
137
Damien Miller398e1cf2002-02-05 11:52:13 +1100138/* disable nagle on socket */
139void
140set_nodelay(int fd)
141{
Ben Lindstrome86de512002-03-05 01:28:14 +0000142 int opt;
143 socklen_t optlen;
Damien Miller398e1cf2002-02-05 11:52:13 +1100144
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000145 optlen = sizeof opt;
146 if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
Darren Tucker6db8f932003-11-03 20:07:14 +1100147 debug("getsockopt TCP_NODELAY: %.100s", strerror(errno));
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000148 return;
149 }
150 if (opt == 1) {
151 debug2("fd %d is TCP_NODELAY", fd);
152 return;
153 }
154 opt = 1;
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000155 debug2("fd %d setting TCP_NODELAY", fd);
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +0000156 if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1)
Damien Miller398e1cf2002-02-05 11:52:13 +1100157 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
158}
159
Damien Miller61c51502000-08-18 14:01:04 +1000160/* Characters considered whitespace in strsep calls. */
161#define WHITESPACE " \t\r\n"
Damien Miller306d1182006-03-15 12:05:59 +1100162#define QUOTE "\""
Damien Miller61c51502000-08-18 14:01:04 +1000163
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000164/* return next token in configuration line */
Damien Miller61c51502000-08-18 14:01:04 +1000165char *
166strdelim(char **s)
167{
168 char *old;
169 int wspace = 0;
170
171 if (*s == NULL)
172 return NULL;
173
174 old = *s;
175
Damien Miller306d1182006-03-15 12:05:59 +1100176 *s = strpbrk(*s, WHITESPACE QUOTE "=");
Damien Miller61c51502000-08-18 14:01:04 +1000177 if (*s == NULL)
178 return (old);
179
Damien Miller306d1182006-03-15 12:05:59 +1100180 if (*s[0] == '\"') {
181 memmove(*s, *s + 1, strlen(*s)); /* move nul too */
182 /* Find matching quote */
183 if ((*s = strpbrk(*s, QUOTE)) == NULL) {
184 return (NULL); /* no matching quote */
185 } else {
186 *s[0] = '\0';
Damien Miller9308fc72010-07-16 13:56:01 +1000187 *s += strspn(*s + 1, WHITESPACE) + 1;
Damien Miller306d1182006-03-15 12:05:59 +1100188 return (old);
189 }
190 }
191
Damien Miller61c51502000-08-18 14:01:04 +1000192 /* Allow only one '=' to be skipped */
193 if (*s[0] == '=')
194 wspace = 1;
195 *s[0] = '\0';
196
Damien Miller306d1182006-03-15 12:05:59 +1100197 /* Skip any extra whitespace after first token */
Damien Miller61c51502000-08-18 14:01:04 +1000198 *s += strspn(*s + 1, WHITESPACE) + 1;
199 if (*s[0] == '=' && !wspace)
200 *s += strspn(*s + 1, WHITESPACE) + 1;
201
202 return (old);
203}
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000204
Ben Lindstrom086cf212001-03-05 05:56:40 +0000205struct passwd *
206pwcopy(struct passwd *pw)
207{
Damien Miller07d86be2006-03-26 14:19:21 +1100208 struct passwd *copy = xcalloc(1, sizeof(*copy));
Ben Lindstrom40304422001-03-05 06:22:01 +0000209
Ben Lindstrom086cf212001-03-05 05:56:40 +0000210 copy->pw_name = xstrdup(pw->pw_name);
211 copy->pw_passwd = xstrdup(pw->pw_passwd);
Damien Miller6332da22013-04-23 14:25:52 +1000212#ifdef HAVE_STRUCT_PASSWD_PW_GECOS
Ben Lindstrom40304422001-03-05 06:22:01 +0000213 copy->pw_gecos = xstrdup(pw->pw_gecos);
Damien Miller6332da22013-04-23 14:25:52 +1000214#endif
Ben Lindstrom086cf212001-03-05 05:56:40 +0000215 copy->pw_uid = pw->pw_uid;
216 copy->pw_gid = pw->pw_gid;
Damien Miller6332da22013-04-23 14:25:52 +1000217#ifdef HAVE_STRUCT_PASSWD_PW_EXPIRE
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000218 copy->pw_expire = pw->pw_expire;
Kevin Steves82456952001-06-22 21:14:18 +0000219#endif
Damien Miller6332da22013-04-23 14:25:52 +1000220#ifdef HAVE_STRUCT_PASSWD_PW_CHANGE
Ben Lindstrom3af4d462001-06-21 03:11:27 +0000221 copy->pw_change = pw->pw_change;
Kevin Steves82456952001-06-22 21:14:18 +0000222#endif
Damien Miller6332da22013-04-23 14:25:52 +1000223#ifdef HAVE_STRUCT_PASSWD_PW_CLASS
Ben Lindstrom086cf212001-03-05 05:56:40 +0000224 copy->pw_class = xstrdup(pw->pw_class);
Ben Lindstrom0f68db42001-03-05 07:57:09 +0000225#endif
Ben Lindstrom086cf212001-03-05 05:56:40 +0000226 copy->pw_dir = xstrdup(pw->pw_dir);
227 copy->pw_shell = xstrdup(pw->pw_shell);
228 return copy;
229}
230
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000231/*
232 * Convert ASCII string to TCP/IP port number.
Damien Miller3dc71ad2009-01-28 16:31:22 +1100233 * Port must be >=0 and <=65535.
234 * Return -1 if invalid.
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000235 */
236int
237a2port(const char *s)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000238{
Damien Miller3dc71ad2009-01-28 16:31:22 +1100239 long long port;
240 const char *errstr;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000241
Damien Miller3dc71ad2009-01-28 16:31:22 +1100242 port = strtonum(s, 0, 65535, &errstr);
243 if (errstr != NULL)
244 return -1;
245 return (int)port;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000246}
247
Damien Millerd27b9472005-12-13 19:29:02 +1100248int
249a2tun(const char *s, int *remote)
250{
251 const char *errstr = NULL;
252 char *sp, *ep;
253 int tun;
254
255 if (remote != NULL) {
Damien Miller7b58e802005-12-13 19:33:19 +1100256 *remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +1100257 sp = xstrdup(s);
258 if ((ep = strchr(sp, ':')) == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +1000259 free(sp);
Damien Millerd27b9472005-12-13 19:29:02 +1100260 return (a2tun(s, NULL));
261 }
262 ep[0] = '\0'; ep++;
263 *remote = a2tun(ep, NULL);
264 tun = a2tun(sp, NULL);
Darren Tuckera627d422013-06-02 07:31:17 +1000265 free(sp);
Damien Miller7b58e802005-12-13 19:33:19 +1100266 return (*remote == SSH_TUNID_ERR ? *remote : tun);
Damien Millerd27b9472005-12-13 19:29:02 +1100267 }
268
269 if (strcasecmp(s, "any") == 0)
Damien Miller7b58e802005-12-13 19:33:19 +1100270 return (SSH_TUNID_ANY);
Damien Millerd27b9472005-12-13 19:29:02 +1100271
Damien Miller7b58e802005-12-13 19:33:19 +1100272 tun = strtonum(s, 0, SSH_TUNID_MAX, &errstr);
273 if (errstr != NULL)
274 return (SSH_TUNID_ERR);
Damien Millerd27b9472005-12-13 19:29:02 +1100275
276 return (tun);
277}
278
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000279#define SECONDS 1
280#define MINUTES (SECONDS * 60)
281#define HOURS (MINUTES * 60)
282#define DAYS (HOURS * 24)
283#define WEEKS (DAYS * 7)
284
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000285/*
286 * Convert a time string into seconds; format is
287 * a sequence of:
288 * time[qualifier]
289 *
290 * Valid time qualifiers are:
291 * <none> seconds
292 * s|S seconds
293 * m|M minutes
294 * h|H hours
295 * d|D days
296 * w|W weeks
297 *
298 * Examples:
299 * 90m 90 minutes
300 * 1h30m 90 minutes
301 * 2d 2 days
302 * 1w 1 week
303 *
304 * Return -1 if time string is invalid.
305 */
306long
307convtime(const char *s)
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000308{
309 long total, secs;
310 const char *p;
311 char *endp;
312
313 errno = 0;
314 total = 0;
315 p = s;
316
317 if (p == NULL || *p == '\0')
318 return -1;
319
320 while (*p) {
321 secs = strtol(p, &endp, 10);
322 if (p == endp ||
323 (errno == ERANGE && (secs == LONG_MIN || secs == LONG_MAX)) ||
324 secs < 0)
325 return -1;
326
327 switch (*endp++) {
328 case '\0':
329 endp--;
Damien Miller69b72032006-03-26 14:02:35 +1100330 break;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000331 case 's':
332 case 'S':
333 break;
334 case 'm':
335 case 'M':
336 secs *= MINUTES;
337 break;
338 case 'h':
339 case 'H':
340 secs *= HOURS;
341 break;
342 case 'd':
343 case 'D':
344 secs *= DAYS;
345 break;
346 case 'w':
347 case 'W':
348 secs *= WEEKS;
349 break;
350 default:
351 return -1;
352 }
353 total += secs;
354 if (total < 0)
355 return -1;
356 p = endp;
357 }
358
359 return total;
360}
361
Damien Millerf91ee4c2005-03-01 21:24:33 +1100362/*
Darren Tuckerda345532006-07-10 23:04:19 +1000363 * Returns a standardized host+port identifier string.
364 * Caller must free returned string.
365 */
366char *
367put_host_port(const char *host, u_short port)
368{
369 char *hoststr;
370
371 if (port == 0 || port == SSH_DEFAULT_PORT)
372 return(xstrdup(host));
373 if (asprintf(&hoststr, "[%s]:%d", host, (int)port) < 0)
374 fatal("put_host_port: asprintf: %s", strerror(errno));
375 debug3("put_host_port: %s", hoststr);
376 return hoststr;
377}
378
379/*
Damien Millerf91ee4c2005-03-01 21:24:33 +1100380 * Search for next delimiter between hostnames/addresses and ports.
381 * Argument may be modified (for termination).
382 * Returns *cp if parsing succeeds.
383 * *cp is set to the start of the next delimiter, if one was found.
384 * If this is the last field, *cp is set to NULL.
385 */
386char *
387hpdelim(char **cp)
388{
389 char *s, *old;
390
391 if (cp == NULL || *cp == NULL)
392 return NULL;
393
394 old = s = *cp;
395 if (*s == '[') {
396 if ((s = strchr(s, ']')) == NULL)
397 return NULL;
398 else
399 s++;
400 } else if ((s = strpbrk(s, ":/")) == NULL)
401 s = *cp + strlen(*cp); /* skip to end (see first case below) */
402
403 switch (*s) {
404 case '\0':
405 *cp = NULL; /* no more fields*/
406 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100407
Damien Millerf91ee4c2005-03-01 21:24:33 +1100408 case ':':
409 case '/':
410 *s = '\0'; /* terminate */
411 *cp = s + 1;
412 break;
Darren Tucker47eede72005-03-14 23:08:12 +1100413
Damien Millerf91ee4c2005-03-01 21:24:33 +1100414 default:
415 return NULL;
416 }
417
418 return old;
419}
420
Ben Lindstrom4529b702001-05-03 23:39:53 +0000421char *
422cleanhostname(char *host)
423{
424 if (*host == '[' && host[strlen(host) - 1] == ']') {
425 host[strlen(host) - 1] = '\0';
426 return (host + 1);
427 } else
428 return host;
429}
430
431char *
432colon(char *cp)
433{
434 int flag = 0;
435
436 if (*cp == ':') /* Leading colon is part of file name. */
Damien Miller2e774462010-06-26 09:30:47 +1000437 return NULL;
Ben Lindstrom4529b702001-05-03 23:39:53 +0000438 if (*cp == '[')
439 flag = 1;
440
441 for (; *cp; ++cp) {
442 if (*cp == '@' && *(cp+1) == '[')
443 flag = 1;
444 if (*cp == ']' && *(cp+1) == ':' && flag)
445 return (cp+1);
446 if (*cp == ':' && !flag)
447 return (cp);
448 if (*cp == '/')
Damien Miller2e774462010-06-26 09:30:47 +1000449 return NULL;
Ben Lindstrom4529b702001-05-03 23:39:53 +0000450 }
Damien Miller2e774462010-06-26 09:30:47 +1000451 return NULL;
Ben Lindstrom4529b702001-05-03 23:39:53 +0000452}
453
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000454/*
455 * Parse a [user@]host[:port] string.
456 * Caller must free returned user and host.
457 * Any of the pointer return arguments may be NULL (useful for syntax checking).
458 * If user was not specified then *userp will be set to NULL.
459 * If port was not specified then *portp will be -1.
460 * Returns 0 on success, -1 on failure.
461 */
462int
463parse_user_host_port(const char *s, char **userp, char **hostp, int *portp)
464{
465 char *sdup, *cp, *tmp;
466 char *user = NULL, *host = NULL;
467 int port = -1, ret = -1;
468
469 if (userp != NULL)
470 *userp = NULL;
471 if (hostp != NULL)
472 *hostp = NULL;
473 if (portp != NULL)
474 *portp = -1;
475
476 if ((sdup = tmp = strdup(s)) == NULL)
477 return -1;
478 /* Extract optional username */
479 if ((cp = strchr(tmp, '@')) != NULL) {
480 *cp = '\0';
481 if (*tmp == '\0')
482 goto out;
483 if ((user = strdup(tmp)) == NULL)
484 goto out;
485 tmp = cp + 1;
486 }
487 /* Extract mandatory hostname */
488 if ((cp = hpdelim(&tmp)) == NULL || *cp == '\0')
489 goto out;
490 host = xstrdup(cleanhostname(cp));
491 /* Convert and verify optional port */
492 if (tmp != NULL && *tmp != '\0') {
493 if ((port = a2port(tmp)) <= 0)
494 goto out;
495 }
496 /* Success */
497 if (userp != NULL) {
498 *userp = user;
499 user = NULL;
500 }
501 if (hostp != NULL) {
502 *hostp = host;
503 host = NULL;
504 }
505 if (portp != NULL)
506 *portp = port;
507 ret = 0;
508 out:
509 free(sdup);
510 free(user);
511 free(host);
512 return ret;
513}
514
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000515/* function to assist building execv() arguments */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000516void
517addargs(arglist *args, char *fmt, ...)
518{
519 va_list ap;
Damien Miller3eec6b72006-01-31 21:49:27 +1100520 char *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000521 u_int nalloc;
Damien Miller3eec6b72006-01-31 21:49:27 +1100522 int r;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000523
524 va_start(ap, fmt);
Damien Miller3eec6b72006-01-31 21:49:27 +1100525 r = vasprintf(&cp, fmt, ap);
Ben Lindstrom387c4722001-05-08 20:27:25 +0000526 va_end(ap);
Damien Miller3eec6b72006-01-31 21:49:27 +1100527 if (r == -1)
528 fatal("addargs: argument too long");
Ben Lindstrom387c4722001-05-08 20:27:25 +0000529
Darren Tuckerfb16b242003-09-22 21:04:23 +1000530 nalloc = args->nalloc;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000531 if (args->list == NULL) {
Darren Tuckerfb16b242003-09-22 21:04:23 +1000532 nalloc = 32;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000533 args->num = 0;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000534 } else if (args->num+2 >= nalloc)
535 nalloc *= 2;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000536
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +0000537 args->list = xreallocarray(args->list, nalloc, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000538 args->nalloc = nalloc;
Damien Miller3eec6b72006-01-31 21:49:27 +1100539 args->list[args->num++] = cp;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000540 args->list[args->num] = NULL;
541}
Darren Tucker22cc7412004-12-06 22:47:41 +1100542
Damien Miller3eec6b72006-01-31 21:49:27 +1100543void
544replacearg(arglist *args, u_int which, char *fmt, ...)
545{
546 va_list ap;
547 char *cp;
548 int r;
549
550 va_start(ap, fmt);
551 r = vasprintf(&cp, fmt, ap);
552 va_end(ap);
553 if (r == -1)
554 fatal("replacearg: argument too long");
555
556 if (which >= args->num)
557 fatal("replacearg: tried to replace invalid arg %d >= %d",
558 which, args->num);
Darren Tuckera627d422013-06-02 07:31:17 +1000559 free(args->list[which]);
Damien Miller3eec6b72006-01-31 21:49:27 +1100560 args->list[which] = cp;
561}
562
563void
564freeargs(arglist *args)
565{
566 u_int i;
567
568 if (args->list != NULL) {
569 for (i = 0; i < args->num; i++)
Darren Tuckera627d422013-06-02 07:31:17 +1000570 free(args->list[i]);
571 free(args->list);
Damien Miller3eec6b72006-01-31 21:49:27 +1100572 args->nalloc = args->num = 0;
573 args->list = NULL;
574 }
575}
576
Darren Tucker22cc7412004-12-06 22:47:41 +1100577/*
Damien Miller5fd38c02005-05-26 12:02:14 +1000578 * Expands tildes in the file name. Returns data allocated by xmalloc.
579 * Warning: this calls getpw*.
580 */
581char *
582tilde_expand_filename(const char *filename, uid_t uid)
583{
Darren Tucker2ca51bf2013-05-16 20:22:46 +1000584 const char *path, *sep;
585 char user[128], *ret;
Damien Miller5fd38c02005-05-26 12:02:14 +1000586 struct passwd *pw;
Damien Millereccb9de2005-06-17 12:59:34 +1000587 u_int len, slash;
Damien Miller5fd38c02005-05-26 12:02:14 +1000588
589 if (*filename != '~')
590 return (xstrdup(filename));
591 filename++;
592
593 path = strchr(filename, '/');
594 if (path != NULL && path > filename) { /* ~user/path */
Damien Millereccb9de2005-06-17 12:59:34 +1000595 slash = path - filename;
596 if (slash > sizeof(user) - 1)
Damien Miller5fd38c02005-05-26 12:02:14 +1000597 fatal("tilde_expand_filename: ~username too long");
Damien Millereccb9de2005-06-17 12:59:34 +1000598 memcpy(user, filename, slash);
599 user[slash] = '\0';
Damien Miller5fd38c02005-05-26 12:02:14 +1000600 if ((pw = getpwnam(user)) == NULL)
601 fatal("tilde_expand_filename: No such user %s", user);
602 } else if ((pw = getpwuid(uid)) == NULL) /* ~/path */
Darren Tucker7517b5b2008-06-13 14:48:59 +1000603 fatal("tilde_expand_filename: No such uid %ld", (long)uid);
Damien Miller5fd38c02005-05-26 12:02:14 +1000604
Damien Miller5fd38c02005-05-26 12:02:14 +1000605 /* Make sure directory has a trailing '/' */
606 len = strlen(pw->pw_dir);
Darren Tucker026d9db2013-05-16 20:23:52 +1000607 if (len == 0 || pw->pw_dir[len - 1] != '/')
Darren Tucker2ca51bf2013-05-16 20:22:46 +1000608 sep = "/";
609 else
610 sep = "";
Damien Miller5fd38c02005-05-26 12:02:14 +1000611
612 /* Skip leading '/' from specified path */
613 if (path != NULL)
614 filename = path + 1;
Darren Tucker2ca51bf2013-05-16 20:22:46 +1000615
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +0000616 if (xasprintf(&ret, "%s%s%s", pw->pw_dir, sep, filename) >= PATH_MAX)
Damien Miller5fd38c02005-05-26 12:02:14 +1000617 fatal("tilde_expand_filename: Path too long");
618
Darren Tucker2ca51bf2013-05-16 20:22:46 +1000619 return (ret);
Damien Miller5fd38c02005-05-26 12:02:14 +1000620}
621
622/*
Damien Miller6476cad2005-06-16 13:18:34 +1000623 * Expand a string with a set of %[char] escapes. A number of escapes may be
624 * specified as (char *escape_chars, char *replacement) pairs. The list must
Darren Tuckerbee73d52005-07-14 17:05:02 +1000625 * be terminated by a NULL escape_char. Returns replaced string in memory
Damien Miller6476cad2005-06-16 13:18:34 +1000626 * allocated by xmalloc.
627 */
628char *
629percent_expand(const char *string, ...)
630{
631#define EXPAND_MAX_KEYS 16
Darren Tucker70d87692010-01-08 18:49:16 +1100632 u_int num_keys, i, j;
Damien Miller6476cad2005-06-16 13:18:34 +1000633 struct {
634 const char *key;
635 const char *repl;
636 } keys[EXPAND_MAX_KEYS];
Damien Miller6476cad2005-06-16 13:18:34 +1000637 char buf[4096];
638 va_list ap;
639
640 /* Gather keys */
641 va_start(ap, string);
642 for (num_keys = 0; num_keys < EXPAND_MAX_KEYS; num_keys++) {
643 keys[num_keys].key = va_arg(ap, char *);
644 if (keys[num_keys].key == NULL)
645 break;
646 keys[num_keys].repl = va_arg(ap, char *);
647 if (keys[num_keys].repl == NULL)
Darren Tucker70d87692010-01-08 18:49:16 +1100648 fatal("%s: NULL replacement", __func__);
Damien Miller6476cad2005-06-16 13:18:34 +1000649 }
Darren Tucker70d87692010-01-08 18:49:16 +1100650 if (num_keys == EXPAND_MAX_KEYS && va_arg(ap, char *) != NULL)
651 fatal("%s: too many keys", __func__);
Damien Miller6476cad2005-06-16 13:18:34 +1000652 va_end(ap);
653
Damien Miller6476cad2005-06-16 13:18:34 +1000654 /* Expand string */
655 *buf = '\0';
656 for (i = 0; *string != '\0'; string++) {
657 if (*string != '%') {
658 append:
659 buf[i++] = *string;
660 if (i >= sizeof(buf))
Darren Tucker70d87692010-01-08 18:49:16 +1100661 fatal("%s: string too long", __func__);
Damien Miller6476cad2005-06-16 13:18:34 +1000662 buf[i] = '\0';
663 continue;
664 }
665 string++;
Darren Tucker70d87692010-01-08 18:49:16 +1100666 /* %% case */
Damien Miller6476cad2005-06-16 13:18:34 +1000667 if (*string == '%')
668 goto append;
tobias@openbsd.org8b56e592015-12-04 21:51:06 +0000669 if (*string == '\0')
670 fatal("%s: invalid format", __func__);
Damien Miller6476cad2005-06-16 13:18:34 +1000671 for (j = 0; j < num_keys; j++) {
672 if (strchr(keys[j].key, *string) != NULL) {
673 i = strlcat(buf, keys[j].repl, sizeof(buf));
674 if (i >= sizeof(buf))
Darren Tucker70d87692010-01-08 18:49:16 +1100675 fatal("%s: string too long", __func__);
Damien Miller6476cad2005-06-16 13:18:34 +1000676 break;
677 }
678 }
679 if (j >= num_keys)
Darren Tucker70d87692010-01-08 18:49:16 +1100680 fatal("%s: unknown key %%%c", __func__, *string);
Damien Miller6476cad2005-06-16 13:18:34 +1000681 }
682 return (xstrdup(buf));
683#undef EXPAND_MAX_KEYS
684}
685
686/*
Darren Tucker22cc7412004-12-06 22:47:41 +1100687 * Read an entire line from a public key file into a static buffer, discarding
688 * lines that exceed the buffer size. Returns 0 on success, -1 on failure.
689 */
690int
691read_keyfile_line(FILE *f, const char *filename, char *buf, size_t bufsz,
Darren Tuckerf0f90982004-12-11 13:39:50 +1100692 u_long *lineno)
Darren Tucker22cc7412004-12-06 22:47:41 +1100693{
694 while (fgets(buf, bufsz, f) != NULL) {
Damien Miller3ca8b772007-01-05 16:24:47 +1100695 if (buf[0] == '\0')
696 continue;
Darren Tucker22cc7412004-12-06 22:47:41 +1100697 (*lineno)++;
698 if (buf[strlen(buf) - 1] == '\n' || feof(f)) {
699 return 0;
700 } else {
Darren Tuckerf0f90982004-12-11 13:39:50 +1100701 debug("%s: %s line %lu exceeds size limit", __func__,
702 filename, *lineno);
Darren Tucker22cc7412004-12-06 22:47:41 +1100703 /* discard remainder of line */
Darren Tucker47eede72005-03-14 23:08:12 +1100704 while (fgetc(f) != '\n' && !feof(f))
Darren Tucker22cc7412004-12-06 22:47:41 +1100705 ; /* nothing */
706 }
707 }
708 return -1;
709}
Damien Miller13390022005-07-06 09:44:19 +1000710
Damien Millerd27b9472005-12-13 19:29:02 +1100711int
Damien Miller7b58e802005-12-13 19:33:19 +1100712tun_open(int tun, int mode)
Damien Millerd27b9472005-12-13 19:29:02 +1100713{
Damien Miller62a31c92005-12-13 20:44:13 +1100714#if defined(CUSTOM_SYS_TUN_OPEN)
715 return (sys_tun_open(tun, mode));
Damien Miller2dcddbf2006-01-01 19:47:05 +1100716#elif defined(SSH_TUN_OPENBSD)
Damien Miller7b58e802005-12-13 19:33:19 +1100717 struct ifreq ifr;
Damien Millerd27b9472005-12-13 19:29:02 +1100718 char name[100];
Damien Miller7b58e802005-12-13 19:33:19 +1100719 int fd = -1, sock;
sthen@openbsd.orga820a862015-10-24 08:34:09 +0000720 const char *tunbase = "tun";
721
722 if (mode == SSH_TUNMODE_ETHERNET)
723 tunbase = "tap";
Damien Millerd27b9472005-12-13 19:29:02 +1100724
Damien Miller7b58e802005-12-13 19:33:19 +1100725 /* Open the tunnel device */
726 if (tun <= SSH_TUNID_MAX) {
sthen@openbsd.orga820a862015-10-24 08:34:09 +0000727 snprintf(name, sizeof(name), "/dev/%s%d", tunbase, tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100728 fd = open(name, O_RDWR);
729 } else if (tun == SSH_TUNID_ANY) {
730 for (tun = 100; tun >= 0; tun--) {
sthen@openbsd.orga820a862015-10-24 08:34:09 +0000731 snprintf(name, sizeof(name), "/dev/%s%d",
732 tunbase, tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100733 if ((fd = open(name, O_RDWR)) >= 0)
734 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100735 }
736 } else {
Damien Millera210d522006-01-02 23:40:30 +1100737 debug("%s: invalid tunnel %u", __func__, tun);
djm@openbsd.org2905d6f2015-10-07 00:54:06 +0000738 return -1;
Damien Millerd27b9472005-12-13 19:29:02 +1100739 }
Damien Miller7b58e802005-12-13 19:33:19 +1100740
741 if (fd < 0) {
djm@openbsd.org2905d6f2015-10-07 00:54:06 +0000742 debug("%s: %s open: %s", __func__, name, strerror(errno));
743 return -1;
Damien Miller7b58e802005-12-13 19:33:19 +1100744 }
745
746 debug("%s: %s mode %d fd %d", __func__, name, mode, fd);
747
sthen@openbsd.orga820a862015-10-24 08:34:09 +0000748 /* Bring interface up if it is not already */
749 snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "%s%d", tunbase, tun);
750 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) == -1)
Damien Miller7b58e802005-12-13 19:33:19 +1100751 goto failed;
752
djm@openbsd.org2905d6f2015-10-07 00:54:06 +0000753 if (ioctl(sock, SIOCGIFFLAGS, &ifr) == -1) {
754 debug("%s: get interface %s flags: %s", __func__,
755 ifr.ifr_name, strerror(errno));
Damien Miller7b58e802005-12-13 19:33:19 +1100756 goto failed;
djm@openbsd.org2905d6f2015-10-07 00:54:06 +0000757 }
Damien Millera1d9a182006-01-02 23:41:21 +1100758
djm@openbsd.org2905d6f2015-10-07 00:54:06 +0000759 if (!(ifr.ifr_flags & IFF_UP)) {
760 ifr.ifr_flags |= IFF_UP;
761 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1) {
762 debug("%s: activate interface %s: %s", __func__,
763 ifr.ifr_name, strerror(errno));
764 goto failed;
765 }
766 }
Damien Miller7b58e802005-12-13 19:33:19 +1100767
768 close(sock);
djm@openbsd.org2905d6f2015-10-07 00:54:06 +0000769 return fd;
Damien Miller7b58e802005-12-13 19:33:19 +1100770
771 failed:
772 if (fd >= 0)
773 close(fd);
774 if (sock >= 0)
775 close(sock);
djm@openbsd.org2905d6f2015-10-07 00:54:06 +0000776 return -1;
Damien Miller62a31c92005-12-13 20:44:13 +1100777#else
778 error("Tunnel interfaces are not supported on this platform");
779 return (-1);
780#endif
Damien Millerd27b9472005-12-13 19:29:02 +1100781}
782
Darren Tuckerce321d82005-10-03 18:11:24 +1000783void
784sanitise_stdfd(void)
785{
Damien Miller72c5b7d2006-01-06 14:50:44 +1100786 int nullfd, dupfd;
Darren Tuckerce321d82005-10-03 18:11:24 +1000787
Damien Miller72c5b7d2006-01-06 14:50:44 +1100788 if ((nullfd = dupfd = open(_PATH_DEVNULL, O_RDWR)) == -1) {
Damien Miller9eab9562009-02-22 08:47:02 +1100789 fprintf(stderr, "Couldn't open /dev/null: %s\n",
790 strerror(errno));
Darren Tuckerce321d82005-10-03 18:11:24 +1000791 exit(1);
792 }
krw@openbsd.org574def02016-04-02 14:37:42 +0000793 while (++dupfd <= STDERR_FILENO) {
794 /* Only populate closed fds. */
795 if (fcntl(dupfd, F_GETFL) == -1 && errno == EBADF) {
796 if (dup2(nullfd, dupfd) == -1) {
797 fprintf(stderr, "dup2: %s\n", strerror(errno));
798 exit(1);
799 }
Darren Tuckerce321d82005-10-03 18:11:24 +1000800 }
Darren Tuckerce321d82005-10-03 18:11:24 +1000801 }
krw@openbsd.org574def02016-04-02 14:37:42 +0000802 if (nullfd > STDERR_FILENO)
Darren Tuckerce321d82005-10-03 18:11:24 +1000803 close(nullfd);
804}
805
Damien Miller13390022005-07-06 09:44:19 +1000806char *
Damien Miller3f941882006-03-31 23:13:02 +1100807tohex(const void *vp, size_t l)
Damien Miller13390022005-07-06 09:44:19 +1000808{
Damien Miller3f941882006-03-31 23:13:02 +1100809 const u_char *p = (const u_char *)vp;
Damien Miller13390022005-07-06 09:44:19 +1000810 char b[3], *r;
Damien Miller3f941882006-03-31 23:13:02 +1100811 size_t i, hl;
812
813 if (l > 65536)
814 return xstrdup("tohex: length > 65536");
Damien Miller13390022005-07-06 09:44:19 +1000815
816 hl = l * 2 + 1;
Damien Miller07d86be2006-03-26 14:19:21 +1100817 r = xcalloc(1, hl);
Damien Miller13390022005-07-06 09:44:19 +1000818 for (i = 0; i < l; i++) {
Damien Miller3f941882006-03-31 23:13:02 +1100819 snprintf(b, sizeof(b), "%02x", p[i]);
Damien Miller13390022005-07-06 09:44:19 +1000820 strlcat(r, b, hl);
821 }
822 return (r);
823}
824
Damien Miller3f941882006-03-31 23:13:02 +1100825u_int64_t
826get_u64(const void *vp)
827{
828 const u_char *p = (const u_char *)vp;
829 u_int64_t v;
830
831 v = (u_int64_t)p[0] << 56;
832 v |= (u_int64_t)p[1] << 48;
833 v |= (u_int64_t)p[2] << 40;
834 v |= (u_int64_t)p[3] << 32;
835 v |= (u_int64_t)p[4] << 24;
836 v |= (u_int64_t)p[5] << 16;
837 v |= (u_int64_t)p[6] << 8;
838 v |= (u_int64_t)p[7];
839
840 return (v);
841}
842
843u_int32_t
844get_u32(const void *vp)
845{
846 const u_char *p = (const u_char *)vp;
847 u_int32_t v;
848
849 v = (u_int32_t)p[0] << 24;
850 v |= (u_int32_t)p[1] << 16;
851 v |= (u_int32_t)p[2] << 8;
852 v |= (u_int32_t)p[3];
853
854 return (v);
855}
856
Damien Miller88856692014-04-20 13:33:19 +1000857u_int32_t
858get_u32_le(const void *vp)
859{
860 const u_char *p = (const u_char *)vp;
861 u_int32_t v;
862
863 v = (u_int32_t)p[0];
864 v |= (u_int32_t)p[1] << 8;
865 v |= (u_int32_t)p[2] << 16;
866 v |= (u_int32_t)p[3] << 24;
867
868 return (v);
869}
870
Damien Miller3f941882006-03-31 23:13:02 +1100871u_int16_t
872get_u16(const void *vp)
873{
874 const u_char *p = (const u_char *)vp;
875 u_int16_t v;
876
877 v = (u_int16_t)p[0] << 8;
878 v |= (u_int16_t)p[1];
879
880 return (v);
881}
882
883void
884put_u64(void *vp, u_int64_t v)
885{
886 u_char *p = (u_char *)vp;
887
888 p[0] = (u_char)(v >> 56) & 0xff;
889 p[1] = (u_char)(v >> 48) & 0xff;
890 p[2] = (u_char)(v >> 40) & 0xff;
891 p[3] = (u_char)(v >> 32) & 0xff;
892 p[4] = (u_char)(v >> 24) & 0xff;
893 p[5] = (u_char)(v >> 16) & 0xff;
894 p[6] = (u_char)(v >> 8) & 0xff;
895 p[7] = (u_char)v & 0xff;
896}
897
898void
899put_u32(void *vp, u_int32_t v)
900{
901 u_char *p = (u_char *)vp;
902
903 p[0] = (u_char)(v >> 24) & 0xff;
904 p[1] = (u_char)(v >> 16) & 0xff;
905 p[2] = (u_char)(v >> 8) & 0xff;
906 p[3] = (u_char)v & 0xff;
907}
908
Damien Miller88856692014-04-20 13:33:19 +1000909void
910put_u32_le(void *vp, u_int32_t v)
911{
912 u_char *p = (u_char *)vp;
913
914 p[0] = (u_char)v & 0xff;
915 p[1] = (u_char)(v >> 8) & 0xff;
916 p[2] = (u_char)(v >> 16) & 0xff;
917 p[3] = (u_char)(v >> 24) & 0xff;
918}
Damien Miller3f941882006-03-31 23:13:02 +1100919
920void
921put_u16(void *vp, u_int16_t v)
922{
923 u_char *p = (u_char *)vp;
924
925 p[0] = (u_char)(v >> 8) & 0xff;
926 p[1] = (u_char)v & 0xff;
927}
Darren Tucker3fc464e2008-06-13 06:42:45 +1000928
929void
930ms_subtract_diff(struct timeval *start, int *ms)
931{
932 struct timeval diff, finish;
933
934 gettimeofday(&finish, NULL);
935 timersub(&finish, start, &diff);
936 *ms -= (diff.tv_sec * 1000) + (diff.tv_usec / 1000);
937}
938
939void
940ms_to_timeval(struct timeval *tv, int ms)
941{
942 if (ms < 0)
943 ms = 0;
944 tv->tv_sec = ms / 1000;
945 tv->tv_usec = (ms % 1000) * 1000;
946}
947
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000948time_t
949monotime(void)
950{
Damien Miller795b8632014-05-21 17:12:53 +1000951#if defined(HAVE_CLOCK_GETTIME) && \
952 (defined(CLOCK_MONOTONIC) || defined(CLOCK_BOOTTIME))
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000953 struct timespec ts;
Darren Tucker94396b72013-08-08 11:52:37 +1000954 static int gettime_failed = 0;
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000955
Darren Tucker94396b72013-08-08 11:52:37 +1000956 if (!gettime_failed) {
Damien Miller795b8632014-05-21 17:12:53 +1000957#if defined(CLOCK_BOOTTIME)
958 if (clock_gettime(CLOCK_BOOTTIME, &ts) == 0)
959 return (ts.tv_sec);
960#endif
961#if defined(CLOCK_MONOTONIC)
Darren Tucker94396b72013-08-08 11:52:37 +1000962 if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0)
963 return (ts.tv_sec);
Damien Miller795b8632014-05-21 17:12:53 +1000964#endif
Darren Tucker94396b72013-08-08 11:52:37 +1000965 debug3("clock_gettime: %s", strerror(errno));
966 gettime_failed = 1;
967 }
Damien Miller795b8632014-05-21 17:12:53 +1000968#endif /* HAVE_CLOCK_GETTIME && (CLOCK_MONOTONIC || CLOCK_BOOTTIME */
Darren Tucker94396b72013-08-08 11:52:37 +1000969
970 return time(NULL);
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000971}
972
dtucker@openbsd.orgb8d4eaf2016-03-02 22:42:40 +0000973double
974monotime_double(void)
975{
Darren Tucker2c48bd32016-03-09 12:46:50 +1100976#if defined(HAVE_CLOCK_GETTIME) && \
977 (defined(CLOCK_MONOTONIC) || defined(CLOCK_BOOTTIME))
dtucker@openbsd.orgb8d4eaf2016-03-02 22:42:40 +0000978 struct timespec ts;
Darren Tucker2c48bd32016-03-09 12:46:50 +1100979 static int gettime_failed = 0;
dtucker@openbsd.orgb8d4eaf2016-03-02 22:42:40 +0000980
Darren Tucker2c48bd32016-03-09 12:46:50 +1100981 if (!gettime_failed) {
982#if defined(CLOCK_BOOTTIME)
983 if (clock_gettime(CLOCK_BOOTTIME, &ts) == 0)
984 return (ts.tv_sec + (double)ts.tv_nsec / 1000000000);
985#endif
986#if defined(CLOCK_MONOTONIC)
987 if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0)
988 return (ts.tv_sec + (double)ts.tv_nsec / 1000000000);
989#endif
990 debug3("clock_gettime: %s", strerror(errno));
991 gettime_failed = 1;
992 }
993#endif /* HAVE_CLOCK_GETTIME && (CLOCK_MONOTONIC || CLOCK_BOOTTIME */
dtucker@openbsd.orgb8d4eaf2016-03-02 22:42:40 +0000994
Darren Tucker2c48bd32016-03-09 12:46:50 +1100995 return (double)time(NULL);
dtucker@openbsd.orgb8d4eaf2016-03-02 22:42:40 +0000996}
997
Damien Miller65e42f82010-09-24 22:15:11 +1000998void
999bandwidth_limit_init(struct bwlimit *bw, u_int64_t kbps, size_t buflen)
1000{
1001 bw->buflen = buflen;
1002 bw->rate = kbps;
1003 bw->thresh = bw->rate;
1004 bw->lamt = 0;
1005 timerclear(&bw->bwstart);
1006 timerclear(&bw->bwend);
1007}
1008
1009/* Callback from read/write loop to insert bandwidth-limiting delays */
1010void
1011bandwidth_limit(struct bwlimit *bw, size_t read_len)
1012{
1013 u_int64_t waitlen;
1014 struct timespec ts, rm;
1015
1016 if (!timerisset(&bw->bwstart)) {
1017 gettimeofday(&bw->bwstart, NULL);
1018 return;
1019 }
1020
1021 bw->lamt += read_len;
1022 if (bw->lamt < bw->thresh)
1023 return;
1024
1025 gettimeofday(&bw->bwend, NULL);
1026 timersub(&bw->bwend, &bw->bwstart, &bw->bwend);
1027 if (!timerisset(&bw->bwend))
1028 return;
1029
1030 bw->lamt *= 8;
1031 waitlen = (double)1000000L * bw->lamt / bw->rate;
1032
1033 bw->bwstart.tv_sec = waitlen / 1000000L;
1034 bw->bwstart.tv_usec = waitlen % 1000000L;
1035
1036 if (timercmp(&bw->bwstart, &bw->bwend, >)) {
1037 timersub(&bw->bwstart, &bw->bwend, &bw->bwend);
1038
1039 /* Adjust the wait time */
1040 if (bw->bwend.tv_sec) {
1041 bw->thresh /= 2;
1042 if (bw->thresh < bw->buflen / 4)
1043 bw->thresh = bw->buflen / 4;
1044 } else if (bw->bwend.tv_usec < 10000) {
1045 bw->thresh *= 2;
1046 if (bw->thresh > bw->buflen * 8)
1047 bw->thresh = bw->buflen * 8;
1048 }
1049
1050 TIMEVAL_TO_TIMESPEC(&bw->bwend, &ts);
1051 while (nanosleep(&ts, &rm) == -1) {
1052 if (errno != EINTR)
1053 break;
1054 ts = rm;
1055 }
1056 }
1057
1058 bw->lamt = 0;
1059 gettimeofday(&bw->bwstart, NULL);
1060}
Damien Miller0dac6fb2010-11-20 15:19:38 +11001061
Damien Miller2cd62932010-12-01 11:50:35 +11001062/* Make a template filename for mk[sd]temp() */
1063void
1064mktemp_proto(char *s, size_t len)
1065{
1066 const char *tmpdir;
1067 int r;
1068
1069 if ((tmpdir = getenv("TMPDIR")) != NULL) {
1070 r = snprintf(s, len, "%s/ssh-XXXXXXXXXXXX", tmpdir);
1071 if (r > 0 && (size_t)r < len)
1072 return;
1073 }
1074 r = snprintf(s, len, "/tmp/ssh-XXXXXXXXXXXX");
1075 if (r < 0 || (size_t)r >= len)
1076 fatal("%s: template string too short", __func__);
1077}
1078
Damien Miller0dac6fb2010-11-20 15:19:38 +11001079static const struct {
1080 const char *name;
1081 int value;
1082} ipqos[] = {
1083 { "af11", IPTOS_DSCP_AF11 },
1084 { "af12", IPTOS_DSCP_AF12 },
1085 { "af13", IPTOS_DSCP_AF13 },
Damien Miller2918e032011-09-22 21:34:35 +10001086 { "af21", IPTOS_DSCP_AF21 },
Damien Miller0dac6fb2010-11-20 15:19:38 +11001087 { "af22", IPTOS_DSCP_AF22 },
1088 { "af23", IPTOS_DSCP_AF23 },
1089 { "af31", IPTOS_DSCP_AF31 },
1090 { "af32", IPTOS_DSCP_AF32 },
1091 { "af33", IPTOS_DSCP_AF33 },
1092 { "af41", IPTOS_DSCP_AF41 },
1093 { "af42", IPTOS_DSCP_AF42 },
1094 { "af43", IPTOS_DSCP_AF43 },
1095 { "cs0", IPTOS_DSCP_CS0 },
1096 { "cs1", IPTOS_DSCP_CS1 },
1097 { "cs2", IPTOS_DSCP_CS2 },
1098 { "cs3", IPTOS_DSCP_CS3 },
1099 { "cs4", IPTOS_DSCP_CS4 },
1100 { "cs5", IPTOS_DSCP_CS5 },
1101 { "cs6", IPTOS_DSCP_CS6 },
1102 { "cs7", IPTOS_DSCP_CS7 },
1103 { "ef", IPTOS_DSCP_EF },
1104 { "lowdelay", IPTOS_LOWDELAY },
1105 { "throughput", IPTOS_THROUGHPUT },
1106 { "reliability", IPTOS_RELIABILITY },
1107 { NULL, -1 }
1108};
1109
1110int
1111parse_ipqos(const char *cp)
1112{
1113 u_int i;
1114 char *ep;
1115 long val;
1116
1117 if (cp == NULL)
1118 return -1;
1119 for (i = 0; ipqos[i].name != NULL; i++) {
1120 if (strcasecmp(cp, ipqos[i].name) == 0)
1121 return ipqos[i].value;
1122 }
1123 /* Try parsing as an integer */
1124 val = strtol(cp, &ep, 0);
1125 if (*cp == '\0' || *ep != '\0' || val < 0 || val > 255)
1126 return -1;
1127 return val;
1128}
1129
Damien Miller91475862011-05-05 14:14:34 +10001130const char *
1131iptos2str(int iptos)
1132{
1133 int i;
1134 static char iptos_str[sizeof "0xff"];
1135
1136 for (i = 0; ipqos[i].name != NULL; i++) {
1137 if (ipqos[i].value == iptos)
1138 return ipqos[i].name;
1139 }
1140 snprintf(iptos_str, sizeof iptos_str, "0x%02x", iptos);
1141 return iptos_str;
1142}
Damien Millere9fc72e2013-10-15 12:14:12 +11001143
1144void
1145lowercase(char *s)
1146{
1147 for (; *s; s++)
1148 *s = tolower((u_char)*s);
1149}
Damien Miller7acefbb2014-07-18 14:11:24 +10001150
1151int
1152unix_listener(const char *path, int backlog, int unlink_first)
1153{
1154 struct sockaddr_un sunaddr;
1155 int saved_errno, sock;
1156
1157 memset(&sunaddr, 0, sizeof(sunaddr));
1158 sunaddr.sun_family = AF_UNIX;
1159 if (strlcpy(sunaddr.sun_path, path, sizeof(sunaddr.sun_path)) >= sizeof(sunaddr.sun_path)) {
1160 error("%s: \"%s\" too long for Unix domain socket", __func__,
1161 path);
1162 errno = ENAMETOOLONG;
1163 return -1;
1164 }
1165
1166 sock = socket(PF_UNIX, SOCK_STREAM, 0);
1167 if (sock < 0) {
1168 saved_errno = errno;
1169 error("socket: %.100s", strerror(errno));
1170 errno = saved_errno;
1171 return -1;
1172 }
1173 if (unlink_first == 1) {
1174 if (unlink(path) != 0 && errno != ENOENT)
1175 error("unlink(%s): %.100s", path, strerror(errno));
1176 }
1177 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0) {
1178 saved_errno = errno;
1179 error("bind: %.100s", strerror(errno));
1180 close(sock);
1181 error("%s: cannot bind to path: %s", __func__, path);
1182 errno = saved_errno;
1183 return -1;
1184 }
1185 if (listen(sock, backlog) < 0) {
1186 saved_errno = errno;
1187 error("listen: %.100s", strerror(errno));
1188 close(sock);
1189 unlink(path);
1190 error("%s: cannot listen on path: %s", __func__, path);
1191 errno = saved_errno;
1192 return -1;
1193 }
1194 return sock;
1195}
Damien Miller46878022014-08-30 03:29:19 +10001196
Damien Miller04ee0f82009-11-18 17:48:30 +11001197void
1198sock_set_v6only(int s)
1199{
Damien Millerd86a3ba2015-12-09 09:18:45 +11001200#if defined(IPV6_V6ONLY) && !defined(__OpenBSD__)
Damien Miller04ee0f82009-11-18 17:48:30 +11001201 int on = 1;
1202
1203 debug3("%s: set socket %d IPV6_V6ONLY", __func__, s);
1204 if (setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) == -1)
1205 error("setsockopt IPV6_V6ONLY: %s", strerror(errno));
1206#endif
1207}
djm@openbsd.org0ccbd5e2016-04-06 06:42:17 +00001208
1209/*
1210 * Compares two strings that maybe be NULL. Returns non-zero if strings
1211 * are both NULL or are identical, returns zero otherwise.
1212 */
1213static int
1214strcmp_maybe_null(const char *a, const char *b)
1215{
1216 if ((a == NULL && b != NULL) || (a != NULL && b == NULL))
1217 return 0;
1218 if (a != NULL && strcmp(a, b) != 0)
1219 return 0;
1220 return 1;
1221}
1222
1223/*
1224 * Compare two forwards, returning non-zero if they are identical or
1225 * zero otherwise.
1226 */
1227int
1228forward_equals(const struct Forward *a, const struct Forward *b)
1229{
1230 if (strcmp_maybe_null(a->listen_host, b->listen_host) == 0)
1231 return 0;
1232 if (a->listen_port != b->listen_port)
1233 return 0;
1234 if (strcmp_maybe_null(a->listen_path, b->listen_path) == 0)
1235 return 0;
1236 if (strcmp_maybe_null(a->connect_host, b->connect_host) == 0)
1237 return 0;
1238 if (a->connect_port != b->connect_port)
1239 return 0;
1240 if (strcmp_maybe_null(a->connect_path, b->connect_path) == 0)
1241 return 0;
1242 /* allocated_port and handle are not checked */
1243 return 1;
1244}
1245
dtucker@openbsd.org1c4ef0b2016-10-23 22:04:05 +00001246/* returns 1 if bind to specified port by specified user is permitted */
1247int
1248bind_permitted(int port, uid_t uid)
1249{
1250 if (port < IPPORT_RESERVED && uid != 0)
1251 return 0;
1252 return 1;
1253}
dtucker@openbsd.org7fc47662016-11-30 00:28:31 +00001254
1255/* returns 1 if process is already daemonized, 0 otherwise */
1256int
1257daemonized(void)
1258{
1259 int fd;
1260
1261 if ((fd = open(_PATH_TTY, O_RDONLY | O_NOCTTY)) >= 0) {
1262 close(fd);
1263 return 0; /* have controlling terminal */
1264 }
1265 if (getppid() != 1)
1266 return 0; /* parent is not init */
1267 if (getsid(0) != getpid())
1268 return 0; /* not session leader */
1269 debug3("already daemonized");
1270 return 1;
1271}