]> andersk Git - openssh.git/blame - openbsd-compat/port-aix.h
- (dtucker) [openbsd-compat/xmmap.c] Move #define HAVE_MMAP to prevent
[openssh.git] / openbsd-compat / port-aix.h
CommitLineData
2274ae66 1/* $Id$ */
2
0ba40daa 3/*
34a88012 4 *
5 * Copyright (c) 2001 Gert Doering. All rights reserved.
1c1ecbc8 6 * Copyright (c) 2004, 2005 Darren Tucker. All rights reserved.
34a88012 7 *
0ba40daa 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.
0ba40daa 27 */
90e70cfc 28
0ba40daa 29#ifdef _AIX
ad137007 30
5ccf88cb 31#ifdef HAVE_SYS_SOCKET_H
32# include <sys/socket.h>
33#endif
ba603e06 34#ifdef HAVE_UNISTD_H
35# include <unistd.h> /* for seteuid() */
36#endif
5ccf88cb 37
f58c0e01 38#ifdef WITH_AIXAUTHENTICATE
39# include <login.h>
40# include <userpw.h>
4608d193 41# if defined(HAVE_SYS_AUDIT_H) && defined(AIX_LOGINFAILED_4ARG)
f58c0e01 42# include <sys/audit.h>
43# endif
4608d193 44# include <usersec.h>
f58c0e01 45#endif
46
5ccf88cb 47#include "buffer.h"
48
ba603e06 49/* These should be in the system headers but are not. */
50int usrinfo(int, char *, int);
1c1ecbc8 51#if defined(HAVE_DECL_SETAUTHDB) && (HAVE_DECL_SETAUTHDB == 0)
ba603e06 52int setauthdb(const char *, char *);
72ad335d 53#endif
ba603e06 54/* these may or may not be in the headers depending on the version */
1c1ecbc8 55#if defined(HAVE_DECL_AUTHENTICATE) && (HAVE_DECL_AUTHENTICATE == 0)
ba603e06 56int authenticate(char *, char *, int *, char **);
57#endif
1c1ecbc8 58#if defined(HAVE_DECL_LOGINFAILED) && (HAVE_DECL_LOGINFAILED == 0)
ba603e06 59int loginfailed(char *, char *, char *);
60#endif
1c1ecbc8 61#if defined(HAVE_DECL_LOGINRESTRICTIONS) && (HAVE_DECL_LOGINRESTRICTIONS == 0)
ba603e06 62int loginrestrictions(char *, int, char *, char **);
63#endif
1c1ecbc8 64#if defined(HAVE_DECL_LOGINSUCCESS) && (HAVE_DECL_LOGINSUCCESS == 0)
ba603e06 65int loginsuccess(char *, char *, char *, char **);
66#endif
1c1ecbc8 67#if defined(HAVE_DECL_PASSWDEXPIRED) && (HAVE_DECL_PASSWDEXPIRED == 0)
ba603e06 68int passwdexpired(char *, char **);
69#endif
70
1cd5765d 71/* Some versions define r_type in the above headers, which causes a conflict */
72#ifdef r_type
73# undef r_type
74#endif
75
ad137007 76/* AIX 4.2.x doesn't have nanosleep but does have nsleep which is equivalent */
77#if !defined(HAVE_NANOSLEEP) && defined(HAVE_NSLEEP)
78# define nanosleep(a,b) nsleep(a,b)
79#endif
80
81/* For struct timespec on AIX 4.2.x */
82#ifdef HAVE_SYS_TIMERS_H
83# include <sys/timers.h>
84#endif
85
d852ad8b 86/*
87 * According to the setauthdb man page, AIX password registries must be 15
88 * chars or less plus terminating NUL.
89 */
90#ifdef HAVE_SETAUTHDB
91# define REGISTRY_SIZE 16
92#endif
93
f0b467ef 94void aix_usrinfo(struct passwd *);
95
73d9dad3 96#ifdef WITH_AIXAUTHENTICATE
cadfc759 97# define CUSTOM_SYS_AUTH_PASSWD 1
bc5c2025 98# define CUSTOM_SYS_AUTH_ALLOWED_USER 1
5ccf88cb 99int sys_auth_allowed_user(struct passwd *, Buffer *);
f5ed3301 100# define CUSTOM_SYS_AUTH_RECORD_LOGIN 1
5ccf88cb 101int sys_auth_record_login(const char *, const char *, const char *, Buffer *);
73d9dad3 102# define CUSTOM_FAILED_LOGIN 1
73d9dad3 103#endif
104
f0b467ef 105void aix_setauthdb(const char *);
d852ad8b 106void aix_restoreauthdb(void);
bc7dfc06 107void aix_remove_embedded_newlines(char *);
5ccf88cb 108
109#if defined(AIX_GETNAMEINFO_HACK) && !defined(BROKEN_GETADDRINFO)
110# ifdef getnameinfo
111# undef getnameinfo
112# endif
113int sshaix_getnameinfo(const struct sockaddr *, size_t, char *, size_t,
114 char *, size_t, int);
115# define getnameinfo(a,b,c,d,e,f,g) (sshaix_getnameinfo(a,b,c,d,e,f,g))
116#endif
117
90e70cfc 118#endif /* _AIX */
This page took 0.56179 seconds and 5 git commands to generate.