Darren Tucker | 598eaa6 | 2008-06-09 03:32:29 +1000 | [diff] [blame] | 1 | /* $Id: openbsd-compat.h,v 1.46 2008/06/08 17:32:29 dtucker Exp $ */ |
Ben Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 2 | |
Damien Miller | af63951 | 2003-06-11 22:51:32 +1000 | [diff] [blame] | 3 | /* |
| 4 | * Copyright (c) 1999-2003 Damien Miller. All rights reserved. |
Ben Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 5 | * Copyright (c) 2003 Ben Lindstrom. All rights reserved. |
| 6 | * Copyright (c) 2002 Tim Rice. All rights reserved. |
Damien Miller | af63951 | 2003-06-11 22:51:32 +1000 | [diff] [blame] | 7 | * |
| 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 Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 29 | #ifndef _OPENBSD_COMPAT_H |
| 30 | #define _OPENBSD_COMPAT_H |
Damien Miller | e9cf357 | 2001-02-09 12:55:35 +1100 | [diff] [blame] | 31 | |
Ben Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 32 | #include "includes.h" |
Ben Lindstrom | 3c06f6a | 2001-01-31 21:52:01 +0000 | [diff] [blame] | 33 | |
Damien Miller | a1738e4 | 2006-07-10 21:33:04 +1000 | [diff] [blame] | 34 | #include <sys/types.h> |
| 35 | #include <pwd.h> |
| 36 | |
Darren Tucker | 4e880e6 | 2006-07-11 00:20:51 +1000 | [diff] [blame] | 37 | #include <sys/socket.h> |
| 38 | |
Ben Lindstrom | 3c06f6a | 2001-01-31 21:52:01 +0000 | [diff] [blame] | 39 | /* OpenBSD function replacements */ |
Ben Lindstrom | 3c06f6a | 2001-01-31 21:52:01 +0000 | [diff] [blame] | 40 | #include "base64.h" |
Ben Lindstrom | 803f16c | 2001-02-24 00:24:19 +0000 | [diff] [blame] | 41 | #include "sigact.h" |
Damien Miller | 3c02768 | 2001-03-14 11:39:45 +1100 | [diff] [blame] | 42 | #include "glob.h" |
Damien Miller | c8a3868 | 2001-06-25 18:09:16 +1000 | [diff] [blame] | 43 | #include "readpassphrase.h" |
Damien Miller | b93addb | 2003-01-07 17:04:18 +1100 | [diff] [blame] | 44 | #include "vis.h" |
Damien Miller | d9ec370 | 2003-05-15 12:27:08 +1000 | [diff] [blame] | 45 | #include "getrrsetbyname.h" |
Damien Miller | af87af1 | 2006-03-15 13:02:28 +1100 | [diff] [blame] | 46 | #include "sha2.h" |
Ben Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 47 | |
| 48 | #ifndef HAVE_BASENAME |
| 49 | char *basename(const char *path); |
| 50 | #endif |
| 51 | |
| 52 | #ifndef HAVE_BINDRESVPORT_SA |
| 53 | int bindresvport_sa(int sd, struct sockaddr *sa); |
| 54 | #endif |
| 55 | |
Damien Miller | 36f4965 | 2004-08-15 18:40:59 +1000 | [diff] [blame] | 56 | #ifndef HAVE_CLOSEFROM |
| 57 | void closefrom(int); |
| 58 | #endif |
| 59 | |
Ben Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 60 | #ifndef HAVE_GETCWD |
| 61 | char *getcwd(char *pt, size_t size); |
| 62 | #endif |
| 63 | |
| 64 | #if !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH) |
| 65 | char *realpath(const char *path, char *resolved); |
| 66 | #endif |
| 67 | |
| 68 | #ifndef HAVE_RRESVPORT_AF |
| 69 | int rresvport_af(int *alport, sa_family_t af); |
| 70 | #endif |
| 71 | |
| 72 | #ifndef HAVE_STRLCPY |
| 73 | /* #include <sys/types.h> XXX Still needed? */ |
| 74 | size_t strlcpy(char *dst, const char *src, size_t siz); |
| 75 | #endif |
| 76 | |
| 77 | #ifndef HAVE_STRLCAT |
| 78 | /* #include <sys/types.h> XXX Still needed? */ |
| 79 | size_t strlcat(char *dst, const char *src, size_t siz); |
| 80 | #endif |
| 81 | |
| 82 | #ifndef HAVE_SETENV |
| 83 | int setenv(register const char *name, register const char *value, int rewrite); |
| 84 | #endif |
| 85 | |
| 86 | #ifndef HAVE_STRMODE |
| 87 | void strmode(int mode, char *p); |
| 88 | #endif |
| 89 | |
| 90 | #if !defined(HAVE_MKDTEMP) || defined(HAVE_STRICT_MKSTEMP) |
| 91 | int mkstemps(char *path, int slen); |
| 92 | int mkstemp(char *path); |
| 93 | char *mkdtemp(char *path); |
| 94 | #endif |
| 95 | |
| 96 | #ifndef HAVE_DAEMON |
| 97 | int daemon(int nochdir, int noclose); |
| 98 | #endif |
| 99 | |
| 100 | #ifndef HAVE_DIRNAME |
| 101 | char *dirname(const char *path); |
| 102 | #endif |
| 103 | |
Damien Miller | a7058ec | 2008-05-20 08:57:06 +1000 | [diff] [blame] | 104 | #ifndef HAVE_FMT_SCALED |
| 105 | #define FMT_SCALED_STRSIZE 7 |
| 106 | int fmt_scaled(long long number, char *result); |
| 107 | #endif |
| 108 | |
Ben Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 109 | #if defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA) |
| 110 | char *inet_ntoa(struct in_addr in); |
| 111 | #endif |
| 112 | |
| 113 | #ifndef HAVE_INET_NTOP |
| 114 | const char *inet_ntop(int af, const void *src, char *dst, size_t size); |
| 115 | #endif |
| 116 | |
| 117 | #ifndef HAVE_INET_ATON |
| 118 | int inet_aton(const char *cp, struct in_addr *addr); |
| 119 | #endif |
| 120 | |
| 121 | #ifndef HAVE_STRSEP |
| 122 | char *strsep(char **stringp, const char *delim); |
| 123 | #endif |
| 124 | |
| 125 | #ifndef HAVE_SETPROCTITLE |
| 126 | void setproctitle(const char *fmt, ...); |
| 127 | void compat_init_setproctitle(int argc, char *argv[]); |
| 128 | #endif |
| 129 | |
| 130 | #ifndef HAVE_GETGROUPLIST |
| 131 | /* #include <grp.h> XXXX Still needed ? */ |
| 132 | int getgrouplist(const char *, gid_t, gid_t *, int *); |
| 133 | #endif |
| 134 | |
| 135 | #if !defined(HAVE_GETOPT) || !defined(HAVE_GETOPT_OPTRESET) |
| 136 | int BSDgetopt(int argc, char * const *argv, const char *opts); |
| 137 | #endif |
| 138 | |
Darren Tucker | ed0b592 | 2006-09-03 22:44:49 +1000 | [diff] [blame] | 139 | #if defined(HAVE_DECL_WRITEV) && HAVE_DECL_WRITEV == 0 |
| 140 | # include <sys/types.h> |
| 141 | # include <sys/uio.h> |
| 142 | int writev(int, struct iovec *, int); |
| 143 | #endif |
Ben Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 144 | |
Ben Lindstrom | 3c06f6a | 2001-01-31 21:52:01 +0000 | [diff] [blame] | 145 | /* Home grown routines */ |
Ben Lindstrom | 3c06f6a | 2001-01-31 21:52:01 +0000 | [diff] [blame] | 146 | #include "bsd-misc.h" |
Darren Tucker | 598eaa6 | 2008-06-09 03:32:29 +1000 | [diff] [blame] | 147 | #include "bsd-statvfs.h" |
Ben Lindstrom | 3c06f6a | 2001-01-31 21:52:01 +0000 | [diff] [blame] | 148 | #include "bsd-waitpid.h" |
Darren Tucker | febf0f5 | 2007-06-25 22:15:12 +1000 | [diff] [blame] | 149 | #include "bsd-poll.h" |
Ben Lindstrom | 3c06f6a | 2001-01-31 21:52:01 +0000 | [diff] [blame] | 150 | |
Ben Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 151 | #ifndef HAVE_GETPEEREID |
| 152 | int getpeereid(int , uid_t *, gid_t *); |
| 153 | #endif |
| 154 | |
| 155 | #ifndef HAVE_ARC4RANDOM |
| 156 | unsigned int arc4random(void); |
| 157 | void arc4random_stir(void); |
| 158 | #endif /* !HAVE_ARC4RANDOM */ |
| 159 | |
Damien Miller | a4be7c2 | 2008-05-19 14:47:37 +1000 | [diff] [blame] | 160 | #ifndef HAVE_ARC4RANDOM_BUF |
| 161 | void arc4random_buf(void *, size_t); |
| 162 | #endif |
| 163 | |
| 164 | #ifndef HAVE_ARC4RANDOM_UNIFORM |
| 165 | u_int32_t arc4random_uniform(u_int32_t); |
| 166 | #endif |
| 167 | |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 168 | #ifndef HAVE_ASPRINTF |
| 169 | int asprintf(char **, const char *, ...); |
| 170 | #endif |
| 171 | |
Damien Miller | f4da3bb | 2004-01-21 17:07:16 +1100 | [diff] [blame] | 172 | #ifndef HAVE_OPENPTY |
Darren Tucker | dc6118e | 2006-03-15 22:25:54 +1100 | [diff] [blame] | 173 | # include <sys/ioctl.h> /* for struct winsize */ |
Damien Miller | f4da3bb | 2004-01-21 17:07:16 +1100 | [diff] [blame] | 174 | int openpty(int *, int *, char *, struct termios *, struct winsize *); |
| 175 | #endif /* HAVE_OPENPTY */ |
Ben Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 176 | |
| 177 | /* #include <sys/types.h> XXX needed? For size_t */ |
| 178 | |
| 179 | #ifndef HAVE_SNPRINTF |
Darren Tucker | 66c32d5 | 2006-06-30 10:51:32 +1000 | [diff] [blame] | 180 | int snprintf(char *, size_t, SNPRINTF_CONST char *, ...); |
Ben Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 181 | #endif |
| 182 | |
Darren Tucker | 6e42211 | 2005-09-30 09:55:49 +1000 | [diff] [blame] | 183 | #ifndef HAVE_STRTOLL |
| 184 | long long strtoll(const char *, char **, int); |
| 185 | #endif |
| 186 | |
Damien Miller | de3cb0a | 2005-05-26 20:48:25 +1000 | [diff] [blame] | 187 | #ifndef HAVE_STRTONUM |
| 188 | long long strtonum(const char *, long long, long long, const char **); |
| 189 | #endif |
| 190 | |
Darren Tucker | 5998ed0 | 2006-07-12 23:10:33 +1000 | [diff] [blame] | 191 | #if !defined(HAVE_VASPRINTF) || !defined(HAVE_VSNPRINTF) |
| 192 | # include <stdarg.h> |
| 193 | #endif |
| 194 | |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 195 | #ifndef HAVE_VASPRINTF |
| 196 | int vasprintf(char **, const char *, va_list); |
| 197 | #endif |
| 198 | |
Ben Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 199 | #ifndef HAVE_VSNPRINTF |
| 200 | int vsnprintf(char *, size_t, const char *, va_list); |
| 201 | #endif |
| 202 | |
| 203 | void *xmmap(size_t size); |
| 204 | char *xcrypt(const char *password, const char *salt); |
| 205 | char *shadow_pw(struct passwd *pw); |
| 206 | |
Ben Lindstrom | 3c06f6a | 2001-01-31 21:52:01 +0000 | [diff] [blame] | 207 | /* rfc2553 socket API replacements */ |
Damien Miller | c28e38d | 2003-06-05 18:52:47 +1000 | [diff] [blame] | 208 | #include "fake-rfc2553.h" |
Ben Lindstrom | 3c06f6a | 2001-01-31 21:52:01 +0000 | [diff] [blame] | 209 | |
Ben Lindstrom | 6db66ff | 2001-08-06 23:29:16 +0000 | [diff] [blame] | 210 | /* Routines for a single OS platform */ |
| 211 | #include "bsd-cray.h" |
Darren Tucker | 70a08cd | 2003-05-04 10:41:20 +1000 | [diff] [blame] | 212 | #include "bsd-cygwin_util.h" |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 213 | |
| 214 | #include "port-aix.h" |
Ben Lindstrom | f095a85 | 2002-02-19 20:02:48 +0000 | [diff] [blame] | 215 | #include "port-irix.h" |
Damien Miller | 73b42d2 | 2006-04-22 21:26:08 +1000 | [diff] [blame] | 216 | #include "port-linux.h" |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 217 | #include "port-solaris.h" |
Damien Miller | 598bbc2 | 2005-12-31 16:33:36 +1100 | [diff] [blame] | 218 | #include "port-tun.h" |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 219 | #include "port-uw.h" |
Ben Lindstrom | 6db66ff | 2001-08-06 23:29:16 +0000 | [diff] [blame] | 220 | |
Ben Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 221 | #endif /* _OPENBSD_COMPAT_H */ |