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