]> andersk Git - openssh.git/blame - openbsd-compat/openbsd-compat.h
- dtucker@cvs.openbsd.org 2006/07/10 12:46:51
[openssh.git] / openbsd-compat / openbsd-compat.h
CommitLineData
2274ae66 1/* $Id$ */
2
e52ca1e5 3/*
4 * Copyright (c) 1999-2003 Damien Miller. All rights reserved.
2274ae66 5 * Copyright (c) 2003 Ben Lindstrom. All rights reserved.
6 * Copyright (c) 2002 Tim Rice. All rights reserved.
e52ca1e5 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
2274ae66 29#ifndef _OPENBSD_COMPAT_H
30#define _OPENBSD_COMPAT_H
0b202697 31
2274ae66 32#include "includes.h"
9c8dbb1b 33
22bbb3e6 34#include <sys/types.h>
35#include <pwd.h>
36
9c8dbb1b 37/* OpenBSD function replacements */
9c8dbb1b 38#include "base64.h"
8f0b3553 39#include "sigact.h"
84ceda19 40#include "glob.h"
3159d49a 41#include "readpassphrase.h"
63cada0a 42#include "vis.h"
4460d509 43#include "getrrsetbyname.h"
13ff27b7 44#include "sha2.h"
2274ae66 45
46#ifndef HAVE_BASENAME
47char *basename(const char *path);
48#endif
49
50#ifndef HAVE_BINDRESVPORT_SA
51int bindresvport_sa(int sd, struct sockaddr *sa);
52#endif
53
419e26e7 54#ifndef HAVE_CLOSEFROM
55void closefrom(int);
56#endif
57
2274ae66 58#ifndef HAVE_GETCWD
59char *getcwd(char *pt, size_t size);
60#endif
61
62#if !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH)
63char *realpath(const char *path, char *resolved);
64#endif
65
66#ifndef HAVE_RRESVPORT_AF
67int rresvport_af(int *alport, sa_family_t af);
68#endif
69
70#ifndef HAVE_STRLCPY
71/* #include <sys/types.h> XXX Still needed? */
72size_t strlcpy(char *dst, const char *src, size_t siz);
73#endif
74
75#ifndef HAVE_STRLCAT
76/* #include <sys/types.h> XXX Still needed? */
77size_t strlcat(char *dst, const char *src, size_t siz);
78#endif
79
80#ifndef HAVE_SETENV
81int setenv(register const char *name, register const char *value, int rewrite);
82#endif
83
84#ifndef HAVE_STRMODE
85void strmode(int mode, char *p);
86#endif
87
88#if !defined(HAVE_MKDTEMP) || defined(HAVE_STRICT_MKSTEMP)
89int mkstemps(char *path, int slen);
90int mkstemp(char *path);
91char *mkdtemp(char *path);
92#endif
93
94#ifndef HAVE_DAEMON
95int daemon(int nochdir, int noclose);
96#endif
97
98#ifndef HAVE_DIRNAME
99char *dirname(const char *path);
100#endif
101
102#if defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA)
103char *inet_ntoa(struct in_addr in);
104#endif
105
106#ifndef HAVE_INET_NTOP
107const char *inet_ntop(int af, const void *src, char *dst, size_t size);
108#endif
109
110#ifndef HAVE_INET_ATON
111int inet_aton(const char *cp, struct in_addr *addr);
112#endif
113
114#ifndef HAVE_STRSEP
115char *strsep(char **stringp, const char *delim);
116#endif
117
118#ifndef HAVE_SETPROCTITLE
119void setproctitle(const char *fmt, ...);
120void compat_init_setproctitle(int argc, char *argv[]);
121#endif
122
123#ifndef HAVE_GETGROUPLIST
124/* #include <grp.h> XXXX Still needed ? */
125int getgrouplist(const char *, gid_t, gid_t *, int *);
126#endif
127
128#if !defined(HAVE_GETOPT) || !defined(HAVE_GETOPT_OPTRESET)
129int BSDgetopt(int argc, char * const *argv, const char *opts);
130#endif
131
132
9c8dbb1b 133/* Home grown routines */
9c8dbb1b 134#include "bsd-misc.h"
9c8dbb1b 135#include "bsd-waitpid.h"
136
2274ae66 137#ifndef HAVE_GETPEEREID
138int getpeereid(int , uid_t *, gid_t *);
139#endif
140
141#ifndef HAVE_ARC4RANDOM
142unsigned int arc4random(void);
143void arc4random_stir(void);
144#endif /* !HAVE_ARC4RANDOM */
145
9a406e1e 146#ifndef HAVE_ASPRINTF
147int asprintf(char **, const char *, ...);
148#endif
149
a4de1163 150#ifndef HAVE_OPENPTY
d4bf5977 151# include <sys/ioctl.h> /* for struct winsize */
a4de1163 152int openpty(int *, int *, char *, struct termios *, struct winsize *);
153#endif /* HAVE_OPENPTY */
2274ae66 154
155/* #include <sys/types.h> XXX needed? For size_t */
156
157#ifndef HAVE_SNPRINTF
202c6095 158int snprintf(char *, size_t, SNPRINTF_CONST char *, ...);
2274ae66 159#endif
160
bfd17430 161#ifndef HAVE_STRTOLL
162long long strtoll(const char *, char **, int);
163#endif
164
8a3ff1aa 165#ifndef HAVE_STRTONUM
166long long strtonum(const char *, long long, long long, const char **);
167#endif
168
9a406e1e 169#ifndef HAVE_VASPRINTF
170int vasprintf(char **, const char *, va_list);
171#endif
172
2274ae66 173#ifndef HAVE_VSNPRINTF
174int vsnprintf(char *, size_t, const char *, va_list);
175#endif
176
177void *xmmap(size_t size);
178char *xcrypt(const char *password, const char *salt);
179char *shadow_pw(struct passwd *pw);
180
9c8dbb1b 181/* rfc2553 socket API replacements */
52d58495 182#include "fake-rfc2553.h"
9c8dbb1b 183
1a23ac2c 184/* Routines for a single OS platform */
185#include "bsd-cray.h"
43ce025d 186#include "bsd-cygwin_util.h"
2cce09e7 187#include "port-irix.h"
ef4d1846 188#include "port-linux.h"
90e70cfc 189#include "port-aix.h"
4c653d8e 190#include "port-uw.h"
e914f53a 191#include "port-tun.h"
1a23ac2c 192
2274ae66 193#endif /* _OPENBSD_COMPAT_H */
This page took 0.235258 seconds and 5 git commands to generate.