1 /* $Id: port-aix.h,v 1.25 2005/03/21 11:46:34 dtucker Exp $ */
5 * Copyright (c) 2001 Gert Doering. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #ifdef HAVE_SYS_SOCKET_H
31 # include <sys/socket.h>
34 # include <unistd.h> /* for seteuid() */
37 #ifdef WITH_AIXAUTHENTICATE
40 # if defined(HAVE_SYS_AUDIT_H) && defined(AIX_LOGINFAILED_4ARG)
41 # include <sys/audit.h>
48 /* These should be in the system headers but are not. */
49 int usrinfo(int, char *, int);
50 #if (HAVE_DECL_SETAUTHDB == 0)
51 int setauthdb(const char *, char *);
53 /* these may or may not be in the headers depending on the version */
54 #if (HAVE_DECL_AUTHENTICATE == 0)
55 int authenticate(char *, char *, int *, char **);
57 #if (HAVE_DECL_LOGINFAILED == 0)
58 int loginfailed(char *, char *, char *);
60 #if (HAVE_DECL_LOGINRESTRICTIONS == 0)
61 int loginrestrictions(char *, int, char *, char **);
63 #if (HAVE_DECL_LOGINSUCCESS == 0)
64 int loginsuccess(char *, char *, char *, char **);
66 #if (HAVE_DECL_PASSWDEXPIRED == 0)
67 int passwdexpired(char *, char **);
70 /* Some versions define r_type in the above headers, which causes a conflict */
75 /* AIX 4.2.x doesn't have nanosleep but does have nsleep which is equivalent */
76 #if !defined(HAVE_NANOSLEEP) && defined(HAVE_NSLEEP)
77 # define nanosleep(a,b) nsleep(a,b)
80 /* For struct timespec on AIX 4.2.x */
81 #ifdef HAVE_SYS_TIMERS_H
82 # include <sys/timers.h>
86 * According to the setauthdb man page, AIX password registries must be 15
87 * chars or less plus terminating NUL.
90 # define REGISTRY_SIZE 16
93 void aix_usrinfo(struct passwd
*);
95 #ifdef WITH_AIXAUTHENTICATE
96 # define CUSTOM_SYS_AUTH_PASSWD 1
97 # define CUSTOM_SYS_AUTH_ALLOWED_USER 1
98 int sys_auth_allowed_user(struct passwd
*, Buffer
*);
99 # define CUSTOM_SYS_AUTH_RECORD_LOGIN 1
100 int sys_auth_record_login(const char *, const char *, const char *, Buffer
*);
101 # define CUSTOM_FAILED_LOGIN 1
104 void aix_setauthdb(const char *);
105 void aix_restoreauthdb(void);
106 void aix_remove_embedded_newlines(char *);
108 #if defined(AIX_GETNAMEINFO_HACK) && !defined(BROKEN_GETADDRINFO)
112 int sshaix_getnameinfo(const struct sockaddr
*, size_t, char *, size_t,
113 char *, size_t, int);
114 # define getnameinfo(a,b,c,d,e,f,g) (sshaix_getnameinfo(a,b,c,d,e,f,g))