2003-06-11 16:51:32 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1999-2003 Damien Miller. All rights reserved.
|
2003-08-29 20:59:52 +04:00
|
|
|
* Copyright (c) 2003 Ben Lindstrom. All rights reserved.
|
|
|
|
* Copyright (c) 2002 Tim Rice. All rights reserved.
|
2003-06-11 16:51:32 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2003-08-29 20:59:52 +04:00
|
|
|
#ifndef _OPENBSD_COMPAT_H
|
|
|
|
#define _OPENBSD_COMPAT_H
|
2001-02-01 00:52:01 +03:00
|
|
|
|
2003-08-29 20:59:52 +04:00
|
|
|
#include "includes.h"
|
2001-02-01 00:52:01 +03:00
|
|
|
|
2006-07-10 15:33:04 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
|
2006-07-10 18:20:51 +04:00
|
|
|
#include <sys/socket.h>
|
|
|
|
|
2016-07-14 03:59:09 +03:00
|
|
|
#include <stddef.h> /* for wchar_t */
|
|
|
|
|
2001-02-01 00:52:01 +03:00
|
|
|
/* OpenBSD function replacements */
|
|
|
|
#include "base64.h"
|
2001-02-24 03:24:19 +03:00
|
|
|
#include "sigact.h"
|
2001-06-25 12:09:16 +04:00
|
|
|
#include "readpassphrase.h"
|
2003-01-07 09:04:18 +03:00
|
|
|
#include "vis.h"
|
2003-05-15 06:27:08 +04:00
|
|
|
#include "getrrsetbyname.h"
|
2015-01-14 18:21:31 +03:00
|
|
|
#include "sha1.h"
|
2006-03-15 05:02:28 +03:00
|
|
|
#include "sha2.h"
|
2015-01-14 18:21:31 +03:00
|
|
|
#include "rmd160.h"
|
|
|
|
#include "md5.h"
|
2013-12-07 04:51:51 +04:00
|
|
|
#include "blf.h"
|
2003-08-29 20:59:52 +04:00
|
|
|
|
|
|
|
#ifndef HAVE_BASENAME
|
|
|
|
char *basename(const char *path);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_BINDRESVPORT_SA
|
|
|
|
int bindresvport_sa(int sd, struct sockaddr *sa);
|
|
|
|
#endif
|
|
|
|
|
2004-08-15 12:40:59 +04:00
|
|
|
#ifndef HAVE_CLOSEFROM
|
|
|
|
void closefrom(int);
|
|
|
|
#endif
|
|
|
|
|
2017-06-01 08:25:13 +03:00
|
|
|
#ifndef HAVE_GETPAGESIZE
|
|
|
|
int getpagesize(void);
|
|
|
|
#endif
|
|
|
|
|
2003-08-29 20:59:52 +04:00
|
|
|
#ifndef HAVE_GETCWD
|
|
|
|
char *getcwd(char *pt, size_t size);
|
2016-08-02 02:44:25 +03:00
|
|
|
#endif
|
2003-08-29 20:59:52 +04:00
|
|
|
|
2014-12-09 17:32:23 +03:00
|
|
|
#ifndef HAVE_REALLOCARRAY
|
|
|
|
void *reallocarray(void *, size_t, size_t);
|
|
|
|
#endif
|
|
|
|
|
2017-06-01 08:25:13 +03:00
|
|
|
#ifndef HAVE_RECALLOCARRAY
|
|
|
|
void *recallocarray(void *, size_t, size_t, size_t);
|
|
|
|
#endif
|
|
|
|
|
2003-08-29 20:59:52 +04:00
|
|
|
#if !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH)
|
2015-07-17 05:52:34 +03:00
|
|
|
/*
|
|
|
|
* glibc's FORTIFY_SOURCE can redefine this and prevent us picking up the
|
|
|
|
* compat version.
|
|
|
|
*/
|
|
|
|
# ifdef BROKEN_REALPATH
|
|
|
|
# define realpath(x, y) _ssh_compat_realpath(x, y)
|
|
|
|
# endif
|
|
|
|
|
2003-08-29 20:59:52 +04:00
|
|
|
char *realpath(const char *path, char *resolved);
|
2015-07-17 05:52:34 +03:00
|
|
|
#endif
|
2003-08-29 20:59:52 +04:00
|
|
|
|
|
|
|
#ifndef HAVE_RRESVPORT_AF
|
|
|
|
int rresvport_af(int *alport, sa_family_t af);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_STRLCPY
|
|
|
|
size_t strlcpy(char *dst, const char *src, size_t siz);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_STRLCAT
|
|
|
|
size_t strlcat(char *dst, const char *src, size_t siz);
|
2016-08-02 02:44:25 +03:00
|
|
|
#endif
|
2003-08-29 20:59:52 +04:00
|
|
|
|
2016-12-13 04:54:23 +03:00
|
|
|
#ifndef HAVE_STRCASESTR
|
|
|
|
char *strcasestr(const char *, const char *);
|
|
|
|
#endif
|
|
|
|
|
2003-08-29 20:59:52 +04:00
|
|
|
#ifndef HAVE_SETENV
|
|
|
|
int setenv(register const char *name, register const char *value, int rewrite);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_STRMODE
|
|
|
|
void strmode(int mode, char *p);
|
|
|
|
#endif
|
|
|
|
|
2010-08-16 07:15:23 +04:00
|
|
|
#ifndef HAVE_STRPTIME
|
|
|
|
#include <time.h>
|
|
|
|
char *strptime(const char *buf, const char *fmt, struct tm *tm);
|
|
|
|
#endif
|
|
|
|
|
2003-08-29 20:59:52 +04:00
|
|
|
#if !defined(HAVE_MKDTEMP) || defined(HAVE_STRICT_MKSTEMP)
|
|
|
|
int mkstemps(char *path, int slen);
|
|
|
|
int mkstemp(char *path);
|
|
|
|
char *mkdtemp(char *path);
|
2016-08-02 02:44:25 +03:00
|
|
|
#endif
|
2003-08-29 20:59:52 +04:00
|
|
|
|
|
|
|
#ifndef HAVE_DAEMON
|
|
|
|
int daemon(int nochdir, int noclose);
|
2016-08-02 02:44:25 +03:00
|
|
|
#endif
|
2003-08-29 20:59:52 +04:00
|
|
|
|
|
|
|
#ifndef HAVE_DIRNAME
|
|
|
|
char *dirname(const char *path);
|
|
|
|
#endif
|
|
|
|
|
2008-05-20 02:57:06 +04:00
|
|
|
#ifndef HAVE_FMT_SCALED
|
|
|
|
#define FMT_SCALED_STRSIZE 7
|
|
|
|
int fmt_scaled(long long number, char *result);
|
|
|
|
#endif
|
|
|
|
|
2013-05-16 14:47:31 +04:00
|
|
|
#ifndef HAVE_SCAN_SCALED
|
|
|
|
int scan_scaled(char *, long long *);
|
|
|
|
#endif
|
|
|
|
|
2003-08-29 20:59:52 +04:00
|
|
|
#if defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA)
|
|
|
|
char *inet_ntoa(struct in_addr in);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_INET_NTOP
|
2011-09-23 05:16:09 +04:00
|
|
|
const char *inet_ntop(int af, const void *src, char *dst, socklen_t size);
|
2003-08-29 20:59:52 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_INET_ATON
|
|
|
|
int inet_aton(const char *cp, struct in_addr *addr);
|
2016-08-02 02:44:25 +03:00
|
|
|
#endif
|
2003-08-29 20:59:52 +04:00
|
|
|
|
|
|
|
#ifndef HAVE_STRSEP
|
|
|
|
char *strsep(char **stringp, const char *delim);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_SETPROCTITLE
|
|
|
|
void setproctitle(const char *fmt, ...);
|
|
|
|
void compat_init_setproctitle(int argc, char *argv[]);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_GETGROUPLIST
|
|
|
|
int getgrouplist(const char *, gid_t, gid_t *, int *);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(HAVE_GETOPT) || !defined(HAVE_GETOPT_OPTRESET)
|
|
|
|
int BSDgetopt(int argc, char * const *argv, const char *opts);
|
2013-05-10 12:08:49 +04:00
|
|
|
#include "openbsd-compat/getopt.h"
|
2003-08-29 20:59:52 +04:00
|
|
|
#endif
|
|
|
|
|
2018-02-24 13:06:48 +03:00
|
|
|
#if ((defined(HAVE_DECL_READV) && HAVE_DECL_READV == 0) || \
|
|
|
|
(defined(HAVE_DECL_WRITEV) && HAVE_DECL_WRITEV == 0))
|
2006-09-03 16:44:49 +04:00
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/uio.h>
|
2018-02-24 13:06:48 +03:00
|
|
|
|
|
|
|
# if defined(HAVE_DECL_READV) && HAVE_DECL_READV == 0
|
|
|
|
int readv(int, struct iovec *, int);
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# if defined(HAVE_DECL_WRITEV) && HAVE_DECL_WRITEV == 0
|
2006-09-03 16:44:49 +04:00
|
|
|
int writev(int, struct iovec *, int);
|
2018-02-24 13:06:48 +03:00
|
|
|
# endif
|
2006-09-03 16:44:49 +04:00
|
|
|
#endif
|
2003-08-29 20:59:52 +04:00
|
|
|
|
2001-02-01 00:52:01 +03:00
|
|
|
/* Home grown routines */
|
|
|
|
#include "bsd-misc.h"
|
2012-11-05 10:04:37 +04:00
|
|
|
#include "bsd-setres_id.h"
|
2018-02-11 11:25:11 +03:00
|
|
|
#include "bsd-signal.h"
|
2008-06-08 21:32:29 +04:00
|
|
|
#include "bsd-statvfs.h"
|
2001-02-01 00:52:01 +03:00
|
|
|
#include "bsd-waitpid.h"
|
2007-06-25 16:15:12 +04:00
|
|
|
#include "bsd-poll.h"
|
2001-02-01 00:52:01 +03:00
|
|
|
|
2003-08-29 20:59:52 +04:00
|
|
|
#ifndef HAVE_GETPEEREID
|
|
|
|
int getpeereid(int , uid_t *, gid_t *);
|
2013-11-08 11:54:38 +04:00
|
|
|
#endif
|
2003-08-29 20:59:52 +04:00
|
|
|
|
2013-11-08 11:54:38 +04:00
|
|
|
#ifdef HAVE_ARC4RANDOM
|
|
|
|
# ifndef HAVE_ARC4RANDOM_STIR
|
|
|
|
# define arc4random_stir()
|
|
|
|
# endif
|
|
|
|
#else
|
2003-08-29 20:59:52 +04:00
|
|
|
unsigned int arc4random(void);
|
|
|
|
void arc4random_stir(void);
|
|
|
|
#endif /* !HAVE_ARC4RANDOM */
|
|
|
|
|
2008-05-19 08:47:37 +04:00
|
|
|
#ifndef HAVE_ARC4RANDOM_BUF
|
|
|
|
void arc4random_buf(void *, size_t);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_ARC4RANDOM_UNIFORM
|
|
|
|
u_int32_t arc4random_uniform(u_int32_t);
|
|
|
|
#endif
|
|
|
|
|
2005-11-24 11:58:19 +03:00
|
|
|
#ifndef HAVE_ASPRINTF
|
|
|
|
int asprintf(char **, const char *, ...);
|
2016-08-02 02:44:25 +03:00
|
|
|
#endif
|
2005-11-24 11:58:19 +03:00
|
|
|
|
2004-01-21 09:07:16 +03:00
|
|
|
#ifndef HAVE_OPENPTY
|
2006-03-15 14:25:54 +03:00
|
|
|
# include <sys/ioctl.h> /* for struct winsize */
|
2004-01-21 09:07:16 +03:00
|
|
|
int openpty(int *, int *, char *, struct termios *, struct winsize *);
|
|
|
|
#endif /* HAVE_OPENPTY */
|
2003-08-29 20:59:52 +04:00
|
|
|
|
|
|
|
#ifndef HAVE_SNPRINTF
|
2006-06-30 04:51:32 +04:00
|
|
|
int snprintf(char *, size_t, SNPRINTF_CONST char *, ...);
|
2016-08-02 02:44:25 +03:00
|
|
|
#endif
|
2003-08-29 20:59:52 +04:00
|
|
|
|
2005-09-30 03:55:49 +04:00
|
|
|
#ifndef HAVE_STRTOLL
|
|
|
|
long long strtoll(const char *, char **, int);
|
|
|
|
#endif
|
|
|
|
|
2013-02-15 05:20:41 +04:00
|
|
|
#ifndef HAVE_STRTOUL
|
|
|
|
unsigned long strtoul(const char *, char **, int);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_STRTOULL
|
|
|
|
unsigned long long strtoull(const char *, char **, int);
|
|
|
|
#endif
|
|
|
|
|
2005-05-26 14:48:25 +04:00
|
|
|
#ifndef HAVE_STRTONUM
|
|
|
|
long long strtonum(const char *, long long, long long, const char **);
|
|
|
|
#endif
|
|
|
|
|
2013-06-06 02:30:20 +04:00
|
|
|
/* multibyte character support */
|
|
|
|
#ifndef HAVE_MBLEN
|
2015-05-08 04:07:27 +03:00
|
|
|
# define mblen(x, y) (1)
|
2013-06-06 02:30:20 +04:00
|
|
|
#endif
|
|
|
|
|
2016-07-14 03:59:09 +03:00
|
|
|
#ifndef HAVE_WCWIDTH
|
|
|
|
# define wcwidth(x) (((x) >= 0x20 && (x) <= 0x7e) ? 1 : -1)
|
|
|
|
/* force our no-op nl_langinfo and mbtowc */
|
|
|
|
# undef HAVE_NL_LANGINFO
|
|
|
|
# undef HAVE_MBTOWC
|
|
|
|
# undef HAVE_LANGINFO_H
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_NL_LANGINFO
|
|
|
|
# define nl_langinfo(x) ""
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_MBTOWC
|
|
|
|
int mbtowc(wchar_t *, const char*, size_t);
|
|
|
|
#endif
|
|
|
|
|
2006-07-12 17:10:33 +04:00
|
|
|
#if !defined(HAVE_VASPRINTF) || !defined(HAVE_VSNPRINTF)
|
|
|
|
# include <stdarg.h>
|
|
|
|
#endif
|
|
|
|
|
2016-07-15 07:48:30 +03:00
|
|
|
/*
|
|
|
|
* Some platforms unconditionally undefine va_copy() so we define VA_COPY()
|
|
|
|
* instead. This is known to be the case on at least some configurations of
|
|
|
|
* AIX with the xlc compiler.
|
|
|
|
*/
|
|
|
|
#ifndef VA_COPY
|
|
|
|
# ifdef HAVE_VA_COPY
|
|
|
|
# define VA_COPY(dest, src) va_copy(dest, src)
|
|
|
|
# else
|
|
|
|
# ifdef HAVE___VA_COPY
|
|
|
|
# define VA_COPY(dest, src) __va_copy(dest, src)
|
|
|
|
# else
|
|
|
|
# define VA_COPY(dest, src) (dest) = (src)
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2005-11-24 11:58:19 +03:00
|
|
|
#ifndef HAVE_VASPRINTF
|
|
|
|
int vasprintf(char **, const char *, va_list);
|
|
|
|
#endif
|
|
|
|
|
2003-08-29 20:59:52 +04:00
|
|
|
#ifndef HAVE_VSNPRINTF
|
|
|
|
int vsnprintf(char *, size_t, const char *, va_list);
|
|
|
|
#endif
|
|
|
|
|
2010-01-16 03:53:07 +03:00
|
|
|
#ifndef HAVE_USER_FROM_UID
|
2010-01-16 05:30:30 +03:00
|
|
|
char *user_from_uid(uid_t, int);
|
2010-01-16 03:53:07 +03:00
|
|
|
#endif
|
|
|
|
|
2010-01-16 15:58:37 +03:00
|
|
|
#ifndef HAVE_GROUP_FROM_GID
|
2010-01-16 05:30:30 +03:00
|
|
|
char *group_from_gid(gid_t, int);
|
2010-01-16 03:53:07 +03:00
|
|
|
#endif
|
|
|
|
|
2010-10-07 14:25:27 +04:00
|
|
|
#ifndef HAVE_TIMINGSAFE_BCMP
|
|
|
|
int timingsafe_bcmp(const void *, const void *, size_t);
|
|
|
|
#endif
|
|
|
|
|
2013-12-07 04:51:51 +04:00
|
|
|
#ifndef HAVE_BCRYPT_PBKDF
|
|
|
|
int bcrypt_pbkdf(const char *, size_t, const u_int8_t *, size_t,
|
|
|
|
u_int8_t *, size_t, unsigned int);
|
|
|
|
#endif
|
|
|
|
|
2014-02-04 04:18:20 +04:00
|
|
|
#ifndef HAVE_EXPLICIT_BZERO
|
|
|
|
void explicit_bzero(void *p, size_t n);
|
|
|
|
#endif
|
|
|
|
|
2017-09-19 05:29:23 +03:00
|
|
|
#ifndef HAVE_FREEZERO
|
|
|
|
void freezero(void *, size_t);
|
|
|
|
#endif
|
|
|
|
|
2003-08-29 20:59:52 +04:00
|
|
|
char *xcrypt(const char *password, const char *salt);
|
|
|
|
char *shadow_pw(struct passwd *pw);
|
|
|
|
|
2001-02-01 00:52:01 +03:00
|
|
|
/* rfc2553 socket API replacements */
|
2003-06-05 12:52:47 +04:00
|
|
|
#include "fake-rfc2553.h"
|
2001-02-01 00:52:01 +03:00
|
|
|
|
2001-08-07 03:29:16 +04:00
|
|
|
/* Routines for a single OS platform */
|
2003-05-04 04:41:20 +04:00
|
|
|
#include "bsd-cygwin_util.h"
|
2006-08-30 21:24:41 +04:00
|
|
|
|
|
|
|
#include "port-aix.h"
|
2002-02-19 23:02:48 +03:00
|
|
|
#include "port-irix.h"
|
2006-04-22 15:26:08 +04:00
|
|
|
#include "port-linux.h"
|
2006-08-30 21:24:41 +04:00
|
|
|
#include "port-solaris.h"
|
2017-10-25 05:13:57 +03:00
|
|
|
#include "port-net.h"
|
2006-08-30 21:24:41 +04:00
|
|
|
#include "port-uw.h"
|
2001-08-07 03:29:16 +04:00
|
|
|
|
2014-10-01 03:43:07 +04:00
|
|
|
/* _FORTIFY_SOURCE breaks FD_ISSET(n)/FD_SET(n) for n > FD_SETSIZE. Avoid. */
|
|
|
|
#if defined(HAVE_FEATURES_H) && defined(_FORTIFY_SOURCE)
|
|
|
|
# include <features.h>
|
|
|
|
# if defined(__GNU_LIBRARY__) && defined(__GLIBC_PREREQ)
|
|
|
|
# if __GLIBC_PREREQ(2, 15) && (_FORTIFY_SOURCE > 0)
|
|
|
|
# include <sys/socket.h> /* Ensure include guard is defined */
|
|
|
|
# undef FD_SET
|
|
|
|
# undef FD_ISSET
|
|
|
|
# define FD_SET(n, set) kludge_FD_SET(n, set)
|
|
|
|
# define FD_ISSET(n, set) kludge_FD_ISSET(n, set)
|
|
|
|
void kludge_FD_SET(int, fd_set *);
|
|
|
|
int kludge_FD_ISSET(int, fd_set *);
|
|
|
|
# endif /* __GLIBC_PREREQ(2, 15) && (_FORTIFY_SOURCE > 0) */
|
|
|
|
# endif /* __GNU_LIBRARY__ && __GLIBC_PREREQ */
|
|
|
|
#endif /* HAVE_FEATURES_H && _FORTIFY_SOURCE */
|
|
|
|
|
2003-08-29 20:59:52 +04:00
|
|
|
#endif /* _OPENBSD_COMPAT_H */
|