]> andersk Git - openssh.git/blame - openbsd-compat/port-aix.h
- (dtucker) [configure.ac] Merge HP-UX blocks into a common block with minor
[openssh.git] / openbsd-compat / port-aix.h
CommitLineData
2274ae66 1/* $Id$ */
2
0ba40daa 3/*
34a88012 4 *
5 * Copyright (c) 2001 Gert Doering. All rights reserved.
6 *
0ba40daa 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.
0ba40daa 26 */
90e70cfc 27
0ba40daa 28#ifdef _AIX
ad137007 29
5ccf88cb 30#ifdef HAVE_SYS_SOCKET_H
31# include <sys/socket.h>
32#endif
ba603e06 33#ifdef HAVE_UNISTD_H
34# include <unistd.h> /* for seteuid() */
35#endif
5ccf88cb 36
f58c0e01 37#ifdef WITH_AIXAUTHENTICATE
38# include <login.h>
39# include <userpw.h>
4608d193 40# if defined(HAVE_SYS_AUDIT_H) && defined(AIX_LOGINFAILED_4ARG)
f58c0e01 41# include <sys/audit.h>
42# endif
4608d193 43# include <usersec.h>
f58c0e01 44#endif
45
5ccf88cb 46#include "buffer.h"
47
ba603e06 48/* These should be in the system headers but are not. */
49int usrinfo(int, char *, int);
72ad335d 50#if (HAVE_DECL_SETAUTHDB == 0)
ba603e06 51int setauthdb(const char *, char *);
72ad335d 52#endif
ba603e06 53/* these may or may not be in the headers depending on the version */
54#if (HAVE_DECL_AUTHENTICATE == 0)
55int authenticate(char *, char *, int *, char **);
56#endif
57#if (HAVE_DECL_LOGINFAILED == 0)
58int loginfailed(char *, char *, char *);
59#endif
60#if (HAVE_DECL_LOGINRESTRICTIONS == 0)
61int loginrestrictions(char *, int, char *, char **);
62#endif
63#if (HAVE_DECL_LOGINSUCCESS == 0)
64int loginsuccess(char *, char *, char *, char **);
65#endif
66#if (HAVE_DECL_PASSWDEXPIRED == 0)
67int passwdexpired(char *, char **);
68#endif
69
1cd5765d 70/* Some versions define r_type in the above headers, which causes a conflict */
71#ifdef r_type
72# undef r_type
73#endif
74
ad137007 75/* AIX 4.2.x doesn't have nanosleep but does have nsleep which is equivalent */
76#if !defined(HAVE_NANOSLEEP) && defined(HAVE_NSLEEP)
77# define nanosleep(a,b) nsleep(a,b)
78#endif
79
80/* For struct timespec on AIX 4.2.x */
81#ifdef HAVE_SYS_TIMERS_H
82# include <sys/timers.h>
83#endif
84
d852ad8b 85/*
86 * According to the setauthdb man page, AIX password registries must be 15
87 * chars or less plus terminating NUL.
88 */
89#ifdef HAVE_SETAUTHDB
90# define REGISTRY_SIZE 16
91#endif
92
f0b467ef 93void aix_usrinfo(struct passwd *);
94
73d9dad3 95#ifdef WITH_AIXAUTHENTICATE
cadfc759 96# define CUSTOM_SYS_AUTH_PASSWD 1
bc5c2025 97# define CUSTOM_SYS_AUTH_ALLOWED_USER 1
5ccf88cb 98int sys_auth_allowed_user(struct passwd *, Buffer *);
f5ed3301 99# define CUSTOM_SYS_AUTH_RECORD_LOGIN 1
5ccf88cb 100int sys_auth_record_login(const char *, const char *, const char *, Buffer *);
73d9dad3 101# define CUSTOM_FAILED_LOGIN 1
73d9dad3 102#endif
103
f0b467ef 104void aix_setauthdb(const char *);
d852ad8b 105void aix_restoreauthdb(void);
bc7dfc06 106void aix_remove_embedded_newlines(char *);
5ccf88cb 107
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
90e70cfc 117#endif /* _AIX */
This page took 0.140829 seconds and 5 git commands to generate.