port-aix.h revision 146998
1/* $Id: port-aix.h,v 1.24 2005/02/16 11:49:31 dtucker Exp $ */
2
3/*
4 *
5 * Copyright (c) 2001 Gert Doering.  All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
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.
15 *
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.
26 */
27
28#ifdef _AIX
29
30#ifdef HAVE_SYS_SOCKET_H
31# include <sys/socket.h>
32#endif
33#ifdef HAVE_UNISTD_H
34# include <unistd.h>	/* for seteuid() */
35#endif
36
37#ifdef WITH_AIXAUTHENTICATE
38# include <login.h>
39# include <userpw.h>
40# if defined(HAVE_SYS_AUDIT_H) && defined(AIX_LOGINFAILED_4ARG)
41#  include <sys/audit.h>
42# endif
43# include <usersec.h>
44#endif
45
46#include "buffer.h"
47
48/* These should be in the system headers but are not. */
49int usrinfo(int, char *, int);
50int setauthdb(const char *, char *);
51/* these may or may not be in the headers depending on the version */
52#if (HAVE_DECL_AUTHENTICATE == 0)
53int authenticate(char *, char *, int *, char **);
54#endif
55#if (HAVE_DECL_LOGINFAILED == 0)
56int loginfailed(char *, char *, char *);
57#endif
58#if (HAVE_DECL_LOGINRESTRICTIONS == 0)
59int loginrestrictions(char *, int, char *, char **);
60#endif
61#if (HAVE_DECL_LOGINSUCCESS == 0)
62int loginsuccess(char *, char *, char *, char **);
63#endif
64#if (HAVE_DECL_PASSWDEXPIRED == 0)
65int passwdexpired(char *, char **);
66#endif
67
68/* Some versions define r_type in the above headers, which causes a conflict */
69#ifdef r_type
70# undef r_type
71#endif
72
73/* AIX 4.2.x doesn't have nanosleep but does have nsleep which is equivalent */
74#if !defined(HAVE_NANOSLEEP) && defined(HAVE_NSLEEP)
75# define nanosleep(a,b) nsleep(a,b)
76#endif
77
78/* For struct timespec on AIX 4.2.x */
79#ifdef HAVE_SYS_TIMERS_H
80# include <sys/timers.h>
81#endif
82
83/*
84 * According to the setauthdb man page, AIX password registries must be 15
85 * chars or less plus terminating NUL.
86 */
87#ifdef HAVE_SETAUTHDB
88# define REGISTRY_SIZE	16
89#endif
90
91void aix_usrinfo(struct passwd *);
92
93#ifdef WITH_AIXAUTHENTICATE
94# define CUSTOM_SYS_AUTH_PASSWD 1
95# define CUSTOM_SYS_AUTH_ALLOWED_USER 1
96int sys_auth_allowed_user(struct passwd *, Buffer *);
97# define CUSTOM_SYS_AUTH_RECORD_LOGIN 1
98int sys_auth_record_login(const char *, const char *, const char *, Buffer *);
99# define CUSTOM_FAILED_LOGIN 1
100#endif
101
102void aix_setauthdb(const char *);
103void aix_restoreauthdb(void);
104void aix_remove_embedded_newlines(char *);
105
106#if defined(AIX_GETNAMEINFO_HACK) && !defined(BROKEN_GETADDRINFO)
107# ifdef getnameinfo
108#  undef getnameinfo
109# endif
110int sshaix_getnameinfo(const struct sockaddr *, size_t, char *, size_t,
111    char *, size_t, int);
112# define getnameinfo(a,b,c,d,e,f,g) (sshaix_getnameinfo(a,b,c,d,e,f,g))
113#endif
114
115#endif /* _AIX */
116