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