blob: 53e4e88a0c3718ac69d78e9e705405c0d1098138 [file] [log] [blame]
Darren Tucker1bf35032009-12-21 10:49:21 +11001/* $Id: port-aix.h,v 1.32 2009/12/20 23:49:22 dtucker Exp $ */
Ben Lindstrom515d0f92003-08-29 16:59:52 +00002
Ben Lindstrom51b24882002-07-04 03:08:40 +00003/*
Ben Lindstrom024f08f2002-07-07 02:17:36 +00004 *
5 * Copyright (c) 2001 Gert Doering. All rights reserved.
Darren Tucker0f26b132008-02-28 23:16:04 +11006 * Copyright (c) 2004,2005,2006 Darren Tucker. All rights reserved.
Ben Lindstrom024f08f2002-07-07 02:17:36 +00007 *
Ben Lindstrom51b24882002-07-04 03:08:40 +00008 * 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.
Ben Lindstrom51b24882002-07-04 03:08:40 +000027 */
28
Ben Lindstroma9c039c2002-02-19 20:27:55 +000029#ifdef _AIX
Ben Lindstrom4b0f1ad2003-02-01 04:43:34 +000030
Darren Tucker691d5232005-02-15 21:45:57 +110031#ifdef HAVE_SYS_SOCKET_H
32# include <sys/socket.h>
33#endif
Darren Tuckera0c0b632003-07-08 20:52:12 +100034
Darren Tucker691d5232005-02-15 21:45:57 +110035#include "buffer.h"
36
Darren Tucker3c774c52005-02-16 22:49:31 +110037/* These should be in the system headers but are not. */
38int usrinfo(int, char *, int);
Darren Tucker5d72a402005-05-28 20:28:39 +100039#if defined(HAVE_DECL_SETAUTHDB) && (HAVE_DECL_SETAUTHDB == 0)
Darren Tucker3c774c52005-02-16 22:49:31 +110040int setauthdb(const char *, char *);
Darren Tuckere66519d2005-03-21 22:46:34 +110041#endif
Darren Tucker3c774c52005-02-16 22:49:31 +110042/* these may or may not be in the headers depending on the version */
Darren Tucker5d72a402005-05-28 20:28:39 +100043#if defined(HAVE_DECL_AUTHENTICATE) && (HAVE_DECL_AUTHENTICATE == 0)
Darren Tucker3c774c52005-02-16 22:49:31 +110044int authenticate(char *, char *, int *, char **);
45#endif
Darren Tucker5d72a402005-05-28 20:28:39 +100046#if defined(HAVE_DECL_LOGINFAILED) && (HAVE_DECL_LOGINFAILED == 0)
Darren Tucker3c774c52005-02-16 22:49:31 +110047int loginfailed(char *, char *, char *);
48#endif
Darren Tucker5d72a402005-05-28 20:28:39 +100049#if defined(HAVE_DECL_LOGINRESTRICTIONS) && (HAVE_DECL_LOGINRESTRICTIONS == 0)
Darren Tucker3c774c52005-02-16 22:49:31 +110050int loginrestrictions(char *, int, char *, char **);
51#endif
Darren Tucker5d72a402005-05-28 20:28:39 +100052#if defined(HAVE_DECL_LOGINSUCCESS) && (HAVE_DECL_LOGINSUCCESS == 0)
Darren Tucker3c774c52005-02-16 22:49:31 +110053int loginsuccess(char *, char *, char *, char **);
54#endif
Darren Tucker5d72a402005-05-28 20:28:39 +100055#if defined(HAVE_DECL_PASSWDEXPIRED) && (HAVE_DECL_PASSWDEXPIRED == 0)
Darren Tucker3c774c52005-02-16 22:49:31 +110056int passwdexpired(char *, char **);
57#endif
58
Darren Tucker30317e32003-07-14 16:26:51 +100059/* Some versions define r_type in the above headers, which causes a conflict */
60#ifdef r_type
61# undef r_type
62#endif
63
Ben Lindstrom4b0f1ad2003-02-01 04:43:34 +000064/* AIX 4.2.x doesn't have nanosleep but does have nsleep which is equivalent */
65#if !defined(HAVE_NANOSLEEP) && defined(HAVE_NSLEEP)
66# define nanosleep(a,b) nsleep(a,b)
67#endif
68
69/* For struct timespec on AIX 4.2.x */
70#ifdef HAVE_SYS_TIMERS_H
71# include <sys/timers.h>
72#endif
73
Darren Tucker82edf232009-08-20 16:20:50 +100074/* for setpcred and friends */
75#ifdef HAVE_USERSEC_H
76# include <usersec.h>
77#endif
78
Darren Tuckere45674a2004-02-06 16:17:51 +110079/*
80 * According to the setauthdb man page, AIX password registries must be 15
81 * chars or less plus terminating NUL.
82 */
83#ifdef HAVE_SETAUTHDB
84# define REGISTRY_SIZE 16
85#endif
86
Darren Tuckerd7634162003-11-22 14:16:56 +110087void aix_usrinfo(struct passwd *);
88
Darren Tucker97363a82003-05-02 23:42:25 +100089#ifdef WITH_AIXAUTHENTICATE
Darren Tuckere3dba822004-02-10 12:50:19 +110090# define CUSTOM_SYS_AUTH_PASSWD 1
Darren Tucker0a9d43d2004-06-23 13:45:24 +100091# define CUSTOM_SYS_AUTH_ALLOWED_USER 1
Darren Tucker691d5232005-02-15 21:45:57 +110092int sys_auth_allowed_user(struct passwd *, Buffer *);
Darren Tucker397a2f22004-08-15 00:09:11 +100093# define CUSTOM_SYS_AUTH_RECORD_LOGIN 1
Darren Tucker691d5232005-02-15 21:45:57 +110094int sys_auth_record_login(const char *, const char *, const char *, Buffer *);
Darren Tuckerb5d5ee12009-08-17 09:40:00 +100095# define CUSTOM_SYS_AUTH_GET_LASTLOGIN_MSG
96char *sys_auth_get_lastlogin_msg(const char *, uid_t);
Darren Tucker97363a82003-05-02 23:42:25 +100097# define CUSTOM_FAILED_LOGIN 1
Darren Tucker1bf35032009-12-21 10:49:21 +110098# if defined(S_AUTHDOMAIN) && defined (S_AUTHNAME)
99# define USE_AIX_KRB_NAME
100char *aix_krb5_get_principal_name(char *);
101# endif
Darren Tucker97363a82003-05-02 23:42:25 +1000102#endif
103
Darren Tuckerd7634162003-11-22 14:16:56 +1100104void aix_setauthdb(const char *);
Darren Tuckere45674a2004-02-06 16:17:51 +1100105void aix_restoreauthdb(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000106void aix_remove_embedded_newlines(char *);
Darren Tucker691d5232005-02-15 21:45:57 +1100107
108#if defined(AIX_GETNAMEINFO_HACK) && !defined(BROKEN_GETADDRINFO)
109# ifdef getnameinfo
110# undef getnameinfo
111# endif
112int 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))
115#endif
116
Darren Tucker0f26b132008-02-28 23:16:04 +1100117/*
118 * We use getgrset in preference to multiple getgrent calls for efficiency
119 * plus it supports NIS and LDAP groups.
120 */
121#if !defined(HAVE_GETGROUPLIST) && defined(HAVE_GETGRSET)
122# define HAVE_GETGROUPLIST
123# define USE_GETGRSET
124int getgrouplist(const char *, gid_t, gid_t *, int *);
Darren Tucker0f26b132008-02-28 23:16:04 +1100125#endif
126
Ben Lindstroma9c039c2002-02-19 20:27:55 +0000127#endif /* _AIX */