]> andersk Git - openssh.git/blame - openbsd-compat/port-aix.c
- (dtucker) [acconfig.h auth-passwd.c configure.ac session.c port-aix.[ch]]
[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>
90e70cfc 35
73d9dad3 36extern ServerOptions options;
37
90e70cfc 38/*
0ba40daa 39 * AIX has a "usrinfo" area where logname and other stuff is stored -
40 * a few applications actually use this and die if it's not set
41 *
42 * NOTE: TTY= should be set, but since no one uses it and it's hard to
43 * acquire due to privsep code. We will just drop support.
90e70cfc 44 */
45void
0ba40daa 46aix_usrinfo(struct passwd *pw)
90e70cfc 47{
90e70cfc 48 u_int i;
9901cb37 49 size_t len;
0ba40daa 50 char *cp;
90e70cfc 51
9901cb37 52 len = sizeof("LOGNAME= NAME= ") + (2 * strlen(pw->pw_name));
53 cp = xmalloc(len);
54
1e72a7e3 55 i = snprintf(cp, len, "LOGNAME=%s%cNAME=%s%c", pw->pw_name, '\0',
56 pw->pw_name, '\0');
90e70cfc 57 if (usrinfo(SETUINFO, cp, i) == -1)
58 fatal("Couldn't set usrinfo: %s", strerror(errno));
59 debug3("AIX/UsrInfo: set len %d", i);
9901cb37 60
90e70cfc 61 xfree(cp);
62}
63
73d9dad3 64# ifdef CUSTOM_FAILED_LOGIN
65/*
66 * record_failed_login: generic "login failed" interface function
67 */
68void
69record_failed_login(const char *user, const char *ttyname)
70{
5d8ca8c7 71 char *hostname = get_canonical_hostname(options.use_dns);
9901cb37 72
f58c0e01 73# ifdef AIX_LOGINFAILED_3ARG
74 loginfailed((char *)user, hostname, (char *)ttyname);
75# else
76 loginfailed((char *)user, hostname, (char *)ttyname, AUDIT_FAIL_AUTH);
77# endif
73d9dad3 78}
79# endif /* CUSTOM_FAILED_LOGIN */
90e70cfc 80#endif /* _AIX */
81
This page took 1.320757 seconds and 5 git commands to generate.