]> andersk Git - openssh.git/blame - openbsd-compat/port-aix.c
- (dtucker) Bug #543: [configure.ac port-aix.c port-aix.h]
[openssh.git] / openbsd-compat / port-aix.c
CommitLineData
0ba40daa 1/*
34a88012 2 *
3 * Copyright (c) 2001 Gert Doering. All rights reserved.
4 *
0ba40daa 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 *
25 */
90e70cfc 26#include "includes.h"
73d9dad3 27#include "ssh.h"
28#include "log.h"
29#include "servconf.h"
90e70cfc 30
31#ifdef _AIX
32
33#include <uinfo.h>
2ec3dbf6 34#include <../xmalloc.h>
2aa3a16c 35#include "port-aix.h"
90e70cfc 36
73d9dad3 37extern ServerOptions options;
38
90e70cfc 39/*
0ba40daa 40 * AIX has a "usrinfo" area where logname and other stuff is stored -
41 * a few applications actually use this and die if it's not set
42 *
43 * NOTE: TTY= should be set, but since no one uses it and it's hard to
44 * acquire due to privsep code. We will just drop support.
90e70cfc 45 */
46void
0ba40daa 47aix_usrinfo(struct passwd *pw)
90e70cfc 48{
90e70cfc 49 u_int i;
9901cb37 50 size_t len;
0ba40daa 51 char *cp;
90e70cfc 52
9901cb37 53 len = sizeof("LOGNAME= NAME= ") + (2 * strlen(pw->pw_name));
54 cp = xmalloc(len);
55
1e72a7e3 56 i = snprintf(cp, len, "LOGNAME=%s%cNAME=%s%c", pw->pw_name, '\0',
57 pw->pw_name, '\0');
90e70cfc 58 if (usrinfo(SETUINFO, cp, i) == -1)
59 fatal("Couldn't set usrinfo: %s", strerror(errno));
60 debug3("AIX/UsrInfo: set len %d", i);
9901cb37 61
90e70cfc 62 xfree(cp);
63}
64
bc7dfc06 65#ifdef WITH_AIXAUTHENTICATE
66/*
67 * Remove embedded newlines in string (if any).
68 * Used before logging messages returned by AIX authentication functions
69 * so the message is logged on one line.
70 */
71void
72aix_remove_embedded_newlines(char *p)
73{
74 if (p == NULL)
75 return;
76
77 for (; *p; p++) {
78 if (*p == '\n')
79 *p = ' ';
80 }
81 /* Remove trailing whitespace */
82 if (*--p == ' ')
83 *p = '\0';
84}
85#endif /* WITH_AIXAUTHENTICATE */
86
73d9dad3 87# ifdef CUSTOM_FAILED_LOGIN
88/*
89 * record_failed_login: generic "login failed" interface function
90 */
91void
92record_failed_login(const char *user, const char *ttyname)
93{
5d8ca8c7 94 char *hostname = get_canonical_hostname(options.use_dns);
9901cb37 95
2aa3a16c 96 if (geteuid() != 0)
97 return;
98
99 aix_setauthdb(user);
e351e493 100# ifdef AIX_LOGINFAILED_4ARG
f58c0e01 101 loginfailed((char *)user, hostname, (char *)ttyname, AUDIT_FAIL_AUTH);
e351e493 102# else
103 loginfailed((char *)user, hostname, (char *)ttyname);
f58c0e01 104# endif
73d9dad3 105}
2aa3a16c 106
107/*
108 * If we have setauthdb, retrieve the password registry for the user's
109 * account then feed it to setauthdb. This may load registry-specific method
110 * code. If we don't have setauthdb or have already called it this is a no-op.
111 */
112void
113aix_setauthdb(const char *user)
114{
115# ifdef HAVE_SETAUTHDB
116 static char *registry = NULL;
117
118 if (registry != NULL) /* have already done setauthdb */
119 return;
120
121 if (setuserdb(S_READ) == -1) {
122 debug3("%s: Could not open userdb to read", __func__);
123 return;
124 }
125
126 if (getuserattr((char *)user, S_REGISTRY, &registry, SEC_CHAR) == 0) {
127 if (setauthdb(registry, NULL) == 0)
128 debug3("%s: AIX/setauthdb set registry %s", __func__,
129 registry);
130 else
131 debug3("%s: AIX/setauthdb set registry %s failed: %s",
132 __func__, registry, strerror(errno));
133 } else
134 debug3("%s: Could not read S_REGISTRY for user: %s", __func__,
135 strerror(errno));
136 enduserdb();
137# endif
138}
73d9dad3 139# endif /* CUSTOM_FAILED_LOGIN */
90e70cfc 140#endif /* _AIX */
141
This page took 0.103363 seconds and 5 git commands to generate.