blob: 6be1bcda4b26b68842b808e2a6ef129886975bb3 [file] [log] [blame]
Damien Millerf4da3bb2004-01-21 17:07:16 +11001/* $Id: openbsd-compat.h,v 1.25 2004/01/21 06:07:23 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
34/* OpenBSD function replacements */
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +000035#include "base64.h"
Ben Lindstrom803f16c2001-02-24 00:24:19 +000036#include "sigact.h"
Damien Miller3c027682001-03-14 11:39:45 +110037#include "glob.h"
Damien Millerc8a38682001-06-25 18:09:16 +100038#include "readpassphrase.h"
Damien Millerb93addb2003-01-07 17:04:18 +110039#include "vis.h"
Damien Millerd9ec3702003-05-15 12:27:08 +100040#include "getrrsetbyname.h"
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +000041
Ben Lindstrom515d0f92003-08-29 16:59:52 +000042
43#ifndef HAVE_BASENAME
44char *basename(const char *path);
45#endif
46
47#ifndef HAVE_BINDRESVPORT_SA
48int bindresvport_sa(int sd, struct sockaddr *sa);
49#endif
50
51#ifndef HAVE_GETCWD
52char *getcwd(char *pt, size_t size);
53#endif
54
55#if !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH)
56char *realpath(const char *path, char *resolved);
57#endif
58
59#ifndef HAVE_RRESVPORT_AF
60int rresvport_af(int *alport, sa_family_t af);
61#endif
62
63#ifndef HAVE_STRLCPY
64/* #include <sys/types.h> XXX Still needed? */
65size_t strlcpy(char *dst, const char *src, size_t siz);
66#endif
67
68#ifndef HAVE_STRLCAT
69/* #include <sys/types.h> XXX Still needed? */
70size_t strlcat(char *dst, const char *src, size_t siz);
71#endif
72
73#ifndef HAVE_SETENV
74int setenv(register const char *name, register const char *value, int rewrite);
75#endif
76
77#ifndef HAVE_STRMODE
78void strmode(int mode, char *p);
79#endif
80
81#if !defined(HAVE_MKDTEMP) || defined(HAVE_STRICT_MKSTEMP)
82int mkstemps(char *path, int slen);
83int mkstemp(char *path);
84char *mkdtemp(char *path);
85#endif
86
87#ifndef HAVE_DAEMON
88int daemon(int nochdir, int noclose);
89#endif
90
91#ifndef HAVE_DIRNAME
92char *dirname(const char *path);
93#endif
94
95#if defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA)
96char *inet_ntoa(struct in_addr in);
97#endif
98
99#ifndef HAVE_INET_NTOP
100const char *inet_ntop(int af, const void *src, char *dst, size_t size);
101#endif
102
103#ifndef HAVE_INET_ATON
104int inet_aton(const char *cp, struct in_addr *addr);
105#endif
106
107#ifndef HAVE_STRSEP
108char *strsep(char **stringp, const char *delim);
109#endif
110
111#ifndef HAVE_SETPROCTITLE
112void setproctitle(const char *fmt, ...);
113void compat_init_setproctitle(int argc, char *argv[]);
114#endif
115
116#ifndef HAVE_GETGROUPLIST
117/* #include <grp.h> XXXX Still needed ? */
118int getgrouplist(const char *, gid_t, gid_t *, int *);
119#endif
120
121#if !defined(HAVE_GETOPT) || !defined(HAVE_GETOPT_OPTRESET)
122int BSDgetopt(int argc, char * const *argv, const char *opts);
123#endif
124
125
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +0000126/* Home grown routines */
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +0000127#include "bsd-misc.h"
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +0000128#include "bsd-waitpid.h"
129
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000130/*#include <sys/types.h> XXX Still needed? * For uid_t, gid_t * */
131
132#ifndef HAVE_GETPEEREID
133int getpeereid(int , uid_t *, gid_t *);
134#endif
135
136#ifndef HAVE_ARC4RANDOM
137unsigned int arc4random(void);
138void arc4random_stir(void);
139#endif /* !HAVE_ARC4RANDOM */
140
Damien Millerf4da3bb2004-01-21 17:07:16 +1100141#ifndef HAVE_OPENPTY
142int openpty(int *, int *, char *, struct termios *, struct winsize *);
143#endif /* HAVE_OPENPTY */
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000144
145/* #include <sys/types.h> XXX needed? For size_t */
146
147#ifndef HAVE_SNPRINTF
148int snprintf(char *, size_t, const char *, ...);
149#endif
150
151#ifndef HAVE_VSNPRINTF
152int vsnprintf(char *, size_t, const char *, va_list);
153#endif
154
155void *xmmap(size_t size);
156char *xcrypt(const char *password, const char *salt);
157char *shadow_pw(struct passwd *pw);
158
159
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +0000160/* rfc2553 socket API replacements */
Damien Millerc28e38d2003-06-05 18:52:47 +1000161#include "fake-rfc2553.h"
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +0000162
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000163/* Routines for a single OS platform */
164#include "bsd-cray.h"
Darren Tucker70a08cd2003-05-04 10:41:20 +1000165#include "bsd-cygwin_util.h"
Ben Lindstromf095a852002-02-19 20:02:48 +0000166#include "port-irix.h"
Ben Lindstroma9c039c2002-02-19 20:27:55 +0000167#include "port-aix.h"
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000168
Ben Lindstrom515d0f92003-08-29 16:59:52 +0000169#endif /* _OPENBSD_COMPAT_H */