2010-01-16 13:58:37 +01:00
|
|
|
/* $Id: openbsd-compat.h,v 1.49 2010/01/16 12:58:37 dtucker Exp $ */
|
2003-08-29 18:59:52 +02:00
|
|
|
|
2003-06-11 14:51:32 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1999-2003 Damien Miller. All rights reserved.
|
2003-08-29 18:59:52 +02:00
|
|
|
* Copyright (c) 2003 Ben Lindstrom. All rights reserved.
|
|
|
|
* Copyright (c) 2002 Tim Rice. All rights reserved.
|
2003-06-11 14:51:32 +02: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 18:59:52 +02:00
|
|
|
#ifndef _OPENBSD_COMPAT_H
|
|
|
|
#define _OPENBSD_COMPAT_H
|
2001-01-31 22:52:01 +01:00
|
|
|
|
2003-08-29 18:59:52 +02:00
|
|
|
#include "includes.h"
|
2001-01-31 22:52:01 +01:00
|
|
|
|
2006-07-10 13:33:04 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
|
2006-07-10 16:20:51 +02:00
|
|
|
#include <sys/socket.h>
|
|
|
|
|
2001-01-31 22:52:01 +01:00
|
|
|
/* OpenBSD function replacements */
|
|
|
|
#include "base64.h"
|
2001-02-24 01:24:19 +01:00
|
|
|
#include "sigact.h"
|
2001-03-14 01:39:45 +01:00
|
|
|
#include "glob.h"
|
2001-06-25 10:09:16 +02:00
|
|
|
#include "readpassphrase.h"
|
2003-01-07 07:04:18 +01:00
|
|
|
#include "vis.h"
|
2003-05-15 04:27:08 +02:00
|
|
|
#include "getrrsetbyname.h"
|
2006-03-15 03:02:28 +01:00
|
|
|
#include "sha2.h"
|
2003-08-29 18:59:52 +02: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 10:40:59 +02:00
|
|
|
#ifndef HAVE_CLOSEFROM
|
|
|
|
void closefrom(int);
|
|
|
|
#endif
|
|
|
|
|
2003-08-29 18:59:52 +02:00
|
|
|
#ifndef HAVE_GETCWD
|
|
|
|
char *getcwd(char *pt, size_t size);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH)
|
|
|
|
char *realpath(const char *path, char *resolved);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_RRESVPORT_AF
|
|
|
|
int rresvport_af(int *alport, sa_family_t af);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_STRLCPY
|
|
|
|
/* #include <sys/types.h> XXX Still needed? */
|
|
|
|
size_t strlcpy(char *dst, const char *src, size_t siz);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_STRLCAT
|
|
|
|
/* #include <sys/types.h> XXX Still needed? */
|
|
|
|
size_t strlcat(char *dst, const char *src, size_t siz);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
|
#if !defined(HAVE_MKDTEMP) || defined(HAVE_STRICT_MKSTEMP)
|
|
|
|
int mkstemps(char *path, int slen);
|
|
|
|
int mkstemp(char *path);
|
|
|
|
char *mkdtemp(char *path);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_DAEMON
|
|
|
|
int daemon(int nochdir, int noclose);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_DIRNAME
|
|
|
|
char *dirname(const char *path);
|
|
|
|
#endif
|
|
|
|
|
2008-05-20 00:57:06 +02:00
|
|
|
#ifndef HAVE_FMT_SCALED
|
|
|
|
#define FMT_SCALED_STRSIZE 7
|
|
|
|
int fmt_scaled(long long number, char *result);
|
|
|
|
#endif
|
|
|
|
|
2003-08-29 18:59:52 +02:00
|
|
|
#if defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA)
|
|
|
|
char *inet_ntoa(struct in_addr in);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_INET_NTOP
|
|
|
|
const char *inet_ntop(int af, const void *src, char *dst, size_t size);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_INET_ATON
|
|
|
|
int inet_aton(const char *cp, struct in_addr *addr);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#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
|
|
|
|
/* #include <grp.h> XXXX Still needed ? */
|
|
|
|
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);
|
|
|
|
#endif
|
|
|
|
|
2006-09-03 14:44:49 +02:00
|
|
|
#if defined(HAVE_DECL_WRITEV) && HAVE_DECL_WRITEV == 0
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/uio.h>
|
|
|
|
int writev(int, struct iovec *, int);
|
|
|
|
#endif
|
2003-08-29 18:59:52 +02:00
|
|
|
|
2001-01-31 22:52:01 +01:00
|
|
|
/* Home grown routines */
|
|
|
|
#include "bsd-misc.h"
|
2008-06-08 19:32:29 +02:00
|
|
|
#include "bsd-statvfs.h"
|
2001-01-31 22:52:01 +01:00
|
|
|
#include "bsd-waitpid.h"
|
2007-06-25 14:15:12 +02:00
|
|
|
#include "bsd-poll.h"
|
2001-01-31 22:52:01 +01:00
|
|
|
|
2003-08-29 18:59:52 +02:00
|
|
|
#ifndef HAVE_GETPEEREID
|
|
|
|
int getpeereid(int , uid_t *, gid_t *);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_ARC4RANDOM
|
|
|
|
unsigned int arc4random(void);
|
|
|
|
void arc4random_stir(void);
|
|
|
|
#endif /* !HAVE_ARC4RANDOM */
|
|
|
|
|
2008-05-19 06:47:37 +02: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 09:58:19 +01:00
|
|
|
#ifndef HAVE_ASPRINTF
|
|
|
|
int asprintf(char **, const char *, ...);
|
|
|
|
#endif
|
|
|
|
|
2004-01-21 07:07:16 +01:00
|
|
|
#ifndef HAVE_OPENPTY
|
2006-03-15 12:25:54 +01:00
|
|
|
# include <sys/ioctl.h> /* for struct winsize */
|
2004-01-21 07:07:16 +01:00
|
|
|
int openpty(int *, int *, char *, struct termios *, struct winsize *);
|
|
|
|
#endif /* HAVE_OPENPTY */
|
2003-08-29 18:59:52 +02:00
|
|
|
|
|
|
|
/* #include <sys/types.h> XXX needed? For size_t */
|
|
|
|
|
|
|
|
#ifndef HAVE_SNPRINTF
|
2006-06-30 02:51:32 +02:00
|
|
|
int snprintf(char *, size_t, SNPRINTF_CONST char *, ...);
|
2003-08-29 18:59:52 +02:00
|
|
|
#endif
|
|
|
|
|
2005-09-30 01:55:49 +02:00
|
|
|
#ifndef HAVE_STRTOLL
|
|
|
|
long long strtoll(const char *, char **, int);
|
|
|
|
#endif
|
|
|
|
|
2005-05-26 12:48:25 +02:00
|
|
|
#ifndef HAVE_STRTONUM
|
|
|
|
long long strtonum(const char *, long long, long long, const char **);
|
|
|
|
#endif
|
|
|
|
|
2006-07-12 15:10:33 +02:00
|
|
|
#if !defined(HAVE_VASPRINTF) || !defined(HAVE_VSNPRINTF)
|
|
|
|
# include <stdarg.h>
|
|
|
|
#endif
|
|
|
|
|
2005-11-24 09:58:19 +01:00
|
|
|
#ifndef HAVE_VASPRINTF
|
|
|
|
int vasprintf(char **, const char *, va_list);
|
|
|
|
#endif
|
|
|
|
|
2003-08-29 18:59:52 +02:00
|
|
|
#ifndef HAVE_VSNPRINTF
|
|
|
|
int vsnprintf(char *, size_t, const char *, va_list);
|
|
|
|
#endif
|
|
|
|
|
2010-01-16 01:53:07 +01:00
|
|
|
#ifndef HAVE_USER_FROM_UID
|
2010-01-16 03:30:30 +01:00
|
|
|
char *user_from_uid(uid_t, int);
|
2010-01-16 01:53:07 +01:00
|
|
|
#endif
|
|
|
|
|
2010-01-16 13:58:37 +01:00
|
|
|
#ifndef HAVE_GROUP_FROM_GID
|
2010-01-16 03:30:30 +01:00
|
|
|
char *group_from_gid(gid_t, int);
|
2010-01-16 01:53:07 +01:00
|
|
|
#endif
|
|
|
|
|
2003-08-29 18:59:52 +02:00
|
|
|
void *xmmap(size_t size);
|
|
|
|
char *xcrypt(const char *password, const char *salt);
|
|
|
|
char *shadow_pw(struct passwd *pw);
|
|
|
|
|
2001-01-31 22:52:01 +01:00
|
|
|
/* rfc2553 socket API replacements */
|
2003-06-05 10:52:47 +02:00
|
|
|
#include "fake-rfc2553.h"
|
2001-01-31 22:52:01 +01:00
|
|
|
|
2001-08-07 01:29:16 +02:00
|
|
|
/* Routines for a single OS platform */
|
|
|
|
#include "bsd-cray.h"
|
2003-05-04 02:41:20 +02:00
|
|
|
#include "bsd-cygwin_util.h"
|
2006-08-30 19:24:41 +02:00
|
|
|
|
|
|
|
#include "port-aix.h"
|
2002-02-19 21:02:48 +01:00
|
|
|
#include "port-irix.h"
|
2006-04-22 13:26:08 +02:00
|
|
|
#include "port-linux.h"
|
2006-08-30 19:24:41 +02:00
|
|
|
#include "port-solaris.h"
|
2005-12-31 06:33:36 +01:00
|
|
|
#include "port-tun.h"
|
2006-08-30 19:24:41 +02:00
|
|
|
#include "port-uw.h"
|
2001-08-07 01:29:16 +02:00
|
|
|
|
2003-08-29 18:59:52 +02:00
|
|
|
#endif /* _OPENBSD_COMPAT_H */
|