blob: 1cffefe065026fb567aff3990853280bfb413f2d [file] [log] [blame]
Damien Miller703b98a2014-10-01 09:43:07 +10001/* $Id: openbsd-compat.h,v 1.62 2014/09/30 23:43:08 djm Exp $ */
Ben Lindstrom515d0f92003-08-29 16:59:52 +00002
Damien Milleraf639512003-06-11 22:51:32 +10003/*
4 * Copyright (c) 1999-2003 Damien Miller. All rights reserved.
Ben Lindstrom515d0f92003-08-29 16:59:52 +00005 * Copyright (c) 2003 Ben Lindstrom. All rights reserved.
6 * Copyright (c) 2002 Tim Rice. All rights reserved.
Damien Milleraf639512003-06-11 22:51:32 +10007 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
Ben Lindstrom515d0f92003-08-29 16:59:52 +000029#ifndef _OPENBSD_COMPAT_H
30#define _OPENBSD_COMPAT_H
Damien Millere9cf3572001-02-09 12:55:35 +110031
Ben Lindstrom515d0f92003-08-29 16:59:52 +000032#include "includes.h"
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +000033
Damien Millera1738e42006-07-10 21:33:04 +100034#include <sys/types.h>
35#include <pwd.h>
36
Darren Tucker4e880e62006-07-11 00:20:51 +100037#include <sys/socket.h>
38
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +000039/* OpenBSD function replacements */
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +000040#include "base64.h"
Ben Lindstrom803f16c2001-02-24 00:24:19 +000041#include "sigact.h"
Damien Miller3c027682001-03-14 11:39:45 +110042#include "glob.h"
Damien Millerc8a38682001-06-25 18:09:16 +100043#include "readpassphrase.h"
Damien Millerb93addb2003-01-07 17:04:18 +110044#include "vis.h"
Damien Millerd9ec3702003-05-15 12:27:08 +100045#include "getrrsetbyname.h"
Damien Miller72ef7c12015-01-15 02:21:31 +110046#include "sha1.h"
Damien Milleraf87af12006-03-15 13:02:28 +110047#include "sha2.h"
Damien Miller72ef7c12015-01-15 02:21:31 +110048#include "rmd160.h"
49#include "md5.h"
Damien Miller1ff130d2013-12-07 11:51:51 +110050#include "blf.h"
Ben Lindstrom515d0f92003-08-29 16:59:52 +000051
52#ifndef HAVE_BASENAME
53char *basename(const char *path);
54#endif
55
56#ifndef HAVE_BINDRESVPORT_SA
57int bindresvport_sa(int sd, struct sockaddr *sa);
58#endif
59
Damien Miller36f49652004-08-15 18:40:59 +100060#ifndef HAVE_CLOSEFROM
61void closefrom(int);
62#endif
63
Ben Lindstrom515d0f92003-08-29 16:59:52 +000064#ifndef HAVE_GETCWD
65char *getcwd(char *pt, size_t size);
66#endif
67
Darren Tucker642652d2014-12-10 01:32:23 +110068#ifndef HAVE_REALLOCARRAY
69void *reallocarray(void *, size_t, size_t);
70#endif
71
Ben Lindstrom515d0f92003-08-29 16:59:52 +000072#if !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH)
73char *realpath(const char *path, char *resolved);
74#endif
75
76#ifndef HAVE_RRESVPORT_AF
77int rresvport_af(int *alport, sa_family_t af);
78#endif
79
80#ifndef HAVE_STRLCPY
81/* #include <sys/types.h> XXX Still needed? */
82size_t strlcpy(char *dst, const char *src, size_t siz);
83#endif
84
85#ifndef HAVE_STRLCAT
86/* #include <sys/types.h> XXX Still needed? */
87size_t strlcat(char *dst, const char *src, size_t siz);
88#endif
89
90#ifndef HAVE_SETENV
91int setenv(register const char *name, register const char *value, int rewrite);
92#endif
93
94#ifndef HAVE_STRMODE
95void strmode(int mode, char *p);
96#endif
97
Darren Tuckeraa74f672010-08-16 13:15:23 +100098#ifndef HAVE_STRPTIME
99#include <time.h>
100char *strptime(const char *buf, const char *fmt, struct tm *tm);
101#endif
102
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000103#if !defined(HAVE_MKDTEMP) || defined(HAVE_STRICT_MKSTEMP)
104int mkstemps(char *path, int slen);
105int mkstemp(char *path);
106char *mkdtemp(char *path);
107#endif
108
109#ifndef HAVE_DAEMON
110int daemon(int nochdir, int noclose);
111#endif
112
113#ifndef HAVE_DIRNAME
114char *dirname(const char *path);
115#endif
116
Damien Millera7058ec2008-05-20 08:57:06 +1000117#ifndef HAVE_FMT_SCALED
118#define FMT_SCALED_STRSIZE 7
119int fmt_scaled(long long number, char *result);
120#endif
121
Darren Tuckere194ba42013-05-16 20:47:31 +1000122#ifndef HAVE_SCAN_SCALED
123int scan_scaled(char *, long long *);
124#endif
125
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000126#if defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA)
127char *inet_ntoa(struct in_addr in);
128#endif
129
130#ifndef HAVE_INET_NTOP
Damien Miller3e6fe872011-09-23 11:16:09 +1000131const char *inet_ntop(int af, const void *src, char *dst, socklen_t size);
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000132#endif
133
134#ifndef HAVE_INET_ATON
135int inet_aton(const char *cp, struct in_addr *addr);
136#endif
137
138#ifndef HAVE_STRSEP
139char *strsep(char **stringp, const char *delim);
140#endif
141
142#ifndef HAVE_SETPROCTITLE
143void setproctitle(const char *fmt, ...);
144void compat_init_setproctitle(int argc, char *argv[]);
145#endif
146
147#ifndef HAVE_GETGROUPLIST
148/* #include <grp.h> XXXX Still needed ? */
149int getgrouplist(const char *, gid_t, gid_t *, int *);
150#endif
151
152#if !defined(HAVE_GETOPT) || !defined(HAVE_GETOPT_OPTRESET)
153int BSDgetopt(int argc, char * const *argv, const char *opts);
Darren Tucker0abfb552013-05-10 18:08:49 +1000154#include "openbsd-compat/getopt.h"
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000155#endif
156
Darren Tuckered0b5922006-09-03 22:44:49 +1000157#if defined(HAVE_DECL_WRITEV) && HAVE_DECL_WRITEV == 0
158# include <sys/types.h>
159# include <sys/uio.h>
160int writev(int, struct iovec *, int);
161#endif
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000162
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +0000163/* Home grown routines */
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +0000164#include "bsd-misc.h"
Darren Tuckerf96ff182012-11-05 17:04:37 +1100165#include "bsd-setres_id.h"
Darren Tucker598eaa62008-06-09 03:32:29 +1000166#include "bsd-statvfs.h"
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +0000167#include "bsd-waitpid.h"
Darren Tuckerfebf0f52007-06-25 22:15:12 +1000168#include "bsd-poll.h"
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +0000169
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000170#ifndef HAVE_GETPEEREID
171int getpeereid(int , uid_t *, gid_t *);
Darren Tuckerccdb9be2013-11-08 18:54:38 +1100172#endif
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000173
Darren Tuckerccdb9be2013-11-08 18:54:38 +1100174#ifdef HAVE_ARC4RANDOM
175# ifndef HAVE_ARC4RANDOM_STIR
176# define arc4random_stir()
177# endif
178#else
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000179unsigned int arc4random(void);
180void arc4random_stir(void);
181#endif /* !HAVE_ARC4RANDOM */
182
Damien Millera4be7c22008-05-19 14:47:37 +1000183#ifndef HAVE_ARC4RANDOM_BUF
184void arc4random_buf(void *, size_t);
185#endif
186
187#ifndef HAVE_ARC4RANDOM_UNIFORM
188u_int32_t arc4random_uniform(u_int32_t);
189#endif
190
Damien Miller57f39152005-11-24 19:58:19 +1100191#ifndef HAVE_ASPRINTF
192int asprintf(char **, const char *, ...);
193#endif
194
Damien Millerf4da3bb2004-01-21 17:07:16 +1100195#ifndef HAVE_OPENPTY
Darren Tuckerdc6118e2006-03-15 22:25:54 +1100196# include <sys/ioctl.h> /* for struct winsize */
Damien Millerf4da3bb2004-01-21 17:07:16 +1100197int openpty(int *, int *, char *, struct termios *, struct winsize *);
198#endif /* HAVE_OPENPTY */
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000199
200/* #include <sys/types.h> XXX needed? For size_t */
201
202#ifndef HAVE_SNPRINTF
Darren Tucker66c32d52006-06-30 10:51:32 +1000203int snprintf(char *, size_t, SNPRINTF_CONST char *, ...);
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000204#endif
205
Darren Tucker6e422112005-09-30 09:55:49 +1000206#ifndef HAVE_STRTOLL
207long long strtoll(const char *, char **, int);
208#endif
209
Darren Tuckerf32db832013-02-15 12:20:41 +1100210#ifndef HAVE_STRTOUL
211unsigned long strtoul(const char *, char **, int);
212#endif
213
214#ifndef HAVE_STRTOULL
215unsigned long long strtoull(const char *, char **, int);
216#endif
217
Damien Millerde3cb0a2005-05-26 20:48:25 +1000218#ifndef HAVE_STRTONUM
219long long strtonum(const char *, long long, long long, const char **);
220#endif
221
Darren Tuckerae133d42013-06-06 08:30:20 +1000222/* multibyte character support */
223#ifndef HAVE_MBLEN
224# define mblen(x, y) 1
225#endif
226
Darren Tucker5998ed02006-07-12 23:10:33 +1000227#if !defined(HAVE_VASPRINTF) || !defined(HAVE_VSNPRINTF)
228# include <stdarg.h>
229#endif
230
Damien Miller57f39152005-11-24 19:58:19 +1100231#ifndef HAVE_VASPRINTF
232int vasprintf(char **, const char *, va_list);
233#endif
234
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000235#ifndef HAVE_VSNPRINTF
236int vsnprintf(char *, size_t, const char *, va_list);
237#endif
238
Darren Tucker2563e3f2010-01-16 11:53:07 +1100239#ifndef HAVE_USER_FROM_UID
Darren Tucker69371b52010-01-16 13:30:30 +1100240char *user_from_uid(uid_t, int);
Darren Tucker2563e3f2010-01-16 11:53:07 +1100241#endif
242
Darren Tucker4e218552010-01-16 23:58:37 +1100243#ifndef HAVE_GROUP_FROM_GID
Darren Tucker69371b52010-01-16 13:30:30 +1100244char *group_from_gid(gid_t, int);
Darren Tucker2563e3f2010-01-16 11:53:07 +1100245#endif
246
Damien Milleraa180632010-10-07 21:25:27 +1100247#ifndef HAVE_TIMINGSAFE_BCMP
248int timingsafe_bcmp(const void *, const void *, size_t);
249#endif
250
Damien Miller1ff130d2013-12-07 11:51:51 +1100251#ifndef HAVE_BCRYPT_PBKDF
252int bcrypt_pbkdf(const char *, size_t, const u_int8_t *, size_t,
253 u_int8_t *, size_t, unsigned int);
254#endif
255
Damien Miller1d2c4562014-02-04 11:18:20 +1100256#ifndef HAVE_EXPLICIT_BZERO
257void explicit_bzero(void *p, size_t n);
258#endif
259
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000260void *xmmap(size_t size);
261char *xcrypt(const char *password, const char *salt);
262char *shadow_pw(struct passwd *pw);
263
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +0000264/* rfc2553 socket API replacements */
Damien Millerc28e38d2003-06-05 18:52:47 +1000265#include "fake-rfc2553.h"
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +0000266
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000267/* Routines for a single OS platform */
268#include "bsd-cray.h"
Darren Tucker70a08cd2003-05-04 10:41:20 +1000269#include "bsd-cygwin_util.h"
Damien Miller1b06dc32006-08-31 03:24:41 +1000270
271#include "port-aix.h"
Ben Lindstromf095a852002-02-19 20:02:48 +0000272#include "port-irix.h"
Damien Miller73b42d22006-04-22 21:26:08 +1000273#include "port-linux.h"
Damien Miller1b06dc32006-08-31 03:24:41 +1000274#include "port-solaris.h"
Damien Miller598bbc22005-12-31 16:33:36 +1100275#include "port-tun.h"
Damien Miller1b06dc32006-08-31 03:24:41 +1000276#include "port-uw.h"
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000277
Damien Miller703b98a2014-10-01 09:43:07 +1000278/* _FORTIFY_SOURCE breaks FD_ISSET(n)/FD_SET(n) for n > FD_SETSIZE. Avoid. */
279#if defined(HAVE_FEATURES_H) && defined(_FORTIFY_SOURCE)
280# include <features.h>
281# if defined(__GNU_LIBRARY__) && defined(__GLIBC_PREREQ)
282# if __GLIBC_PREREQ(2, 15) && (_FORTIFY_SOURCE > 0)
283# include <sys/socket.h> /* Ensure include guard is defined */
284# undef FD_SET
285# undef FD_ISSET
286# define FD_SET(n, set) kludge_FD_SET(n, set)
287# define FD_ISSET(n, set) kludge_FD_ISSET(n, set)
288void kludge_FD_SET(int, fd_set *);
289int kludge_FD_ISSET(int, fd_set *);
290# endif /* __GLIBC_PREREQ(2, 15) && (_FORTIFY_SOURCE > 0) */
291# endif /* __GNU_LIBRARY__ && __GLIBC_PREREQ */
292#endif /* HAVE_FEATURES_H && _FORTIFY_SOURCE */
293
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000294#endif /* _OPENBSD_COMPAT_H */