Darren Tucker | 5d72a40 | 2005-05-28 20:28:39 +1000 | [diff] [blame] | 1 | /* $Id: port-aix.h,v 1.26 2005/05/28 10:28:40 dtucker Exp $ */ |
Ben Lindstrom | 515d0f9 | 2003-08-29 16:59:52 +0000 | [diff] [blame] | 2 | |
Ben Lindstrom | 51b2488 | 2002-07-04 03:08:40 +0000 | [diff] [blame] | 3 | /* |
Ben Lindstrom | 024f08f | 2002-07-07 02:17:36 +0000 | [diff] [blame] | 4 | * |
| 5 | * Copyright (c) 2001 Gert Doering. All rights reserved. |
Darren Tucker | 5d72a40 | 2005-05-28 20:28:39 +1000 | [diff] [blame] | 6 | * Copyright (c) 2004, 2005 Darren Tucker. All rights reserved. |
Ben Lindstrom | 024f08f | 2002-07-07 02:17:36 +0000 | [diff] [blame] | 7 | * |
Ben Lindstrom | 51b2488 | 2002-07-04 03:08:40 +0000 | [diff] [blame] | 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. |
Ben Lindstrom | 51b2488 | 2002-07-04 03:08:40 +0000 | [diff] [blame] | 27 | */ |
| 28 | |
Ben Lindstrom | a9c039c | 2002-02-19 20:27:55 +0000 | [diff] [blame] | 29 | #ifdef _AIX |
Ben Lindstrom | 4b0f1ad | 2003-02-01 04:43:34 +0000 | [diff] [blame] | 30 | |
Darren Tucker | 691d523 | 2005-02-15 21:45:57 +1100 | [diff] [blame] | 31 | #ifdef HAVE_SYS_SOCKET_H |
| 32 | # include <sys/socket.h> |
| 33 | #endif |
Darren Tucker | 3c774c5 | 2005-02-16 22:49:31 +1100 | [diff] [blame] | 34 | #ifdef HAVE_UNISTD_H |
| 35 | # include <unistd.h> /* for seteuid() */ |
| 36 | #endif |
Darren Tucker | 691d523 | 2005-02-15 21:45:57 +1100 | [diff] [blame] | 37 | |
Darren Tucker | a0c0b63 | 2003-07-08 20:52:12 +1000 | [diff] [blame] | 38 | #ifdef WITH_AIXAUTHENTICATE |
| 39 | # include <login.h> |
| 40 | # include <userpw.h> |
Darren Tucker | 91acbf2 | 2003-09-19 20:43:38 +1000 | [diff] [blame] | 41 | # if defined(HAVE_SYS_AUDIT_H) && defined(AIX_LOGINFAILED_4ARG) |
Darren Tucker | a0c0b63 | 2003-07-08 20:52:12 +1000 | [diff] [blame] | 42 | # include <sys/audit.h> |
| 43 | # endif |
Darren Tucker | 91acbf2 | 2003-09-19 20:43:38 +1000 | [diff] [blame] | 44 | # include <usersec.h> |
Darren Tucker | a0c0b63 | 2003-07-08 20:52:12 +1000 | [diff] [blame] | 45 | #endif |
| 46 | |
Darren Tucker | 691d523 | 2005-02-15 21:45:57 +1100 | [diff] [blame] | 47 | #include "buffer.h" |
| 48 | |
Darren Tucker | 3c774c5 | 2005-02-16 22:49:31 +1100 | [diff] [blame] | 49 | /* These should be in the system headers but are not. */ |
| 50 | int usrinfo(int, char *, int); |
Darren Tucker | 5d72a40 | 2005-05-28 20:28:39 +1000 | [diff] [blame] | 51 | #if defined(HAVE_DECL_SETAUTHDB) && (HAVE_DECL_SETAUTHDB == 0) |
Darren Tucker | 3c774c5 | 2005-02-16 22:49:31 +1100 | [diff] [blame] | 52 | int setauthdb(const char *, char *); |
Darren Tucker | e66519d | 2005-03-21 22:46:34 +1100 | [diff] [blame] | 53 | #endif |
Darren Tucker | 3c774c5 | 2005-02-16 22:49:31 +1100 | [diff] [blame] | 54 | /* these may or may not be in the headers depending on the version */ |
Darren Tucker | 5d72a40 | 2005-05-28 20:28:39 +1000 | [diff] [blame] | 55 | #if defined(HAVE_DECL_AUTHENTICATE) && (HAVE_DECL_AUTHENTICATE == 0) |
Darren Tucker | 3c774c5 | 2005-02-16 22:49:31 +1100 | [diff] [blame] | 56 | int authenticate(char *, char *, int *, char **); |
| 57 | #endif |
Darren Tucker | 5d72a40 | 2005-05-28 20:28:39 +1000 | [diff] [blame] | 58 | #if defined(HAVE_DECL_LOGINFAILED) && (HAVE_DECL_LOGINFAILED == 0) |
Darren Tucker | 3c774c5 | 2005-02-16 22:49:31 +1100 | [diff] [blame] | 59 | int loginfailed(char *, char *, char *); |
| 60 | #endif |
Darren Tucker | 5d72a40 | 2005-05-28 20:28:39 +1000 | [diff] [blame] | 61 | #if defined(HAVE_DECL_LOGINRESTRICTIONS) && (HAVE_DECL_LOGINRESTRICTIONS == 0) |
Darren Tucker | 3c774c5 | 2005-02-16 22:49:31 +1100 | [diff] [blame] | 62 | int loginrestrictions(char *, int, char *, char **); |
| 63 | #endif |
Darren Tucker | 5d72a40 | 2005-05-28 20:28:39 +1000 | [diff] [blame] | 64 | #if defined(HAVE_DECL_LOGINSUCCESS) && (HAVE_DECL_LOGINSUCCESS == 0) |
Darren Tucker | 3c774c5 | 2005-02-16 22:49:31 +1100 | [diff] [blame] | 65 | int loginsuccess(char *, char *, char *, char **); |
| 66 | #endif |
Darren Tucker | 5d72a40 | 2005-05-28 20:28:39 +1000 | [diff] [blame] | 67 | #if defined(HAVE_DECL_PASSWDEXPIRED) && (HAVE_DECL_PASSWDEXPIRED == 0) |
Darren Tucker | 3c774c5 | 2005-02-16 22:49:31 +1100 | [diff] [blame] | 68 | int passwdexpired(char *, char **); |
| 69 | #endif |
| 70 | |
Darren Tucker | 30317e3 | 2003-07-14 16:26:51 +1000 | [diff] [blame] | 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 | |
Ben Lindstrom | 4b0f1ad | 2003-02-01 04:43:34 +0000 | [diff] [blame] | 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 | |
Darren Tucker | e45674a | 2004-02-06 16:17:51 +1100 | [diff] [blame] | 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 | |
Darren Tucker | d763416 | 2003-11-22 14:16:56 +1100 | [diff] [blame] | 94 | void aix_usrinfo(struct passwd *); |
| 95 | |
Darren Tucker | 97363a8 | 2003-05-02 23:42:25 +1000 | [diff] [blame] | 96 | #ifdef WITH_AIXAUTHENTICATE |
Darren Tucker | e3dba82 | 2004-02-10 12:50:19 +1100 | [diff] [blame] | 97 | # define CUSTOM_SYS_AUTH_PASSWD 1 |
Darren Tucker | 0a9d43d | 2004-06-23 13:45:24 +1000 | [diff] [blame] | 98 | # define CUSTOM_SYS_AUTH_ALLOWED_USER 1 |
Darren Tucker | 691d523 | 2005-02-15 21:45:57 +1100 | [diff] [blame] | 99 | int sys_auth_allowed_user(struct passwd *, Buffer *); |
Darren Tucker | 397a2f2 | 2004-08-15 00:09:11 +1000 | [diff] [blame] | 100 | # define CUSTOM_SYS_AUTH_RECORD_LOGIN 1 |
Darren Tucker | 691d523 | 2005-02-15 21:45:57 +1100 | [diff] [blame] | 101 | int sys_auth_record_login(const char *, const char *, const char *, Buffer *); |
Darren Tucker | 97363a8 | 2003-05-02 23:42:25 +1000 | [diff] [blame] | 102 | # define CUSTOM_FAILED_LOGIN 1 |
Darren Tucker | 97363a8 | 2003-05-02 23:42:25 +1000 | [diff] [blame] | 103 | #endif |
| 104 | |
Darren Tucker | d763416 | 2003-11-22 14:16:56 +1100 | [diff] [blame] | 105 | void aix_setauthdb(const char *); |
Darren Tucker | e45674a | 2004-02-06 16:17:51 +1100 | [diff] [blame] | 106 | void aix_restoreauthdb(void); |
Darren Tucker | b9aa0a0 | 2003-07-08 22:59:59 +1000 | [diff] [blame] | 107 | void aix_remove_embedded_newlines(char *); |
Darren Tucker | 691d523 | 2005-02-15 21:45:57 +1100 | [diff] [blame] | 108 | |
| 109 | #if defined(AIX_GETNAMEINFO_HACK) && !defined(BROKEN_GETADDRINFO) |
| 110 | # ifdef getnameinfo |
| 111 | # undef getnameinfo |
| 112 | # endif |
| 113 | int 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 | |
Ben Lindstrom | a9c039c | 2002-02-19 20:27:55 +0000 | [diff] [blame] | 118 | #endif /* _AIX */ |