]> andersk Git - gssapi-openssh.git/blame - openssh/openbsd-compat/port-aix.h
Import of OpenSSH 4.0p1
[gssapi-openssh.git] / openssh / openbsd-compat / port-aix.h
CommitLineData
0fff78ff 1/* $Id$ */
2
41b2f314 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.
41b2f314 26 */
e9a17296 27
41b2f314 28#ifdef _AIX
6a9b3198 29
996d5e62 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
0fff78ff 37#ifdef WITH_AIXAUTHENTICATE
38# include <login.h>
39# include <userpw.h>
acc3d05e 40# if defined(HAVE_SYS_AUDIT_H) && defined(AIX_LOGINFAILED_4ARG)
0fff78ff 41# include <sys/audit.h>
42# endif
acc3d05e 43# include <usersec.h>
0fff78ff 44#endif
45
996d5e62 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
0fff78ff 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
6a9b3198 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
cdd66111 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
0fff78ff 93#ifdef WITH_AIXAUTHENTICATE
cdd66111 94# define CUSTOM_SYS_AUTH_PASSWD 1
c9f39d2c 95# define CUSTOM_SYS_AUTH_ALLOWED_USER 1
996d5e62 96int sys_auth_allowed_user(struct passwd *, Buffer *);
c9f39d2c 97# define CUSTOM_SYS_AUTH_RECORD_LOGIN 1
996d5e62 98int sys_auth_record_login(const char *, const char *, const char *, Buffer *);
0fff78ff 99# define CUSTOM_FAILED_LOGIN 1
0fff78ff 100#endif
101
cdd66111 102void aix_setauthdb(const char *);
103void aix_restoreauthdb(void);
0fff78ff 104void aix_remove_embedded_newlines(char *);
996d5e62 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
e9a17296 115#endif /* _AIX */
This page took 0.625197 seconds and 5 git commands to generate.