]> andersk Git - openssh.git/blob - 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
1 /*
2  *
3  * Copyright (c) 2001 Gert Doering.  All rights reserved.
4  *
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  */
26 #include "includes.h"
27 #include "ssh.h"
28 #include "log.h"
29 #include "servconf.h"
30
31 #ifdef _AIX
32
33 #include <uinfo.h>
34 #include <../xmalloc.h>
35
36 extern ServerOptions options;
37
38 /*
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.
44  */
45 void
46 aix_usrinfo(struct passwd *pw)
47 {
48         u_int i;
49         size_t len;
50         char *cp;
51
52         len = sizeof("LOGNAME= NAME= ") + (2 * strlen(pw->pw_name));
53         cp = xmalloc(len);
54
55         i = snprintf(cp, len, "LOGNAME=%s%cNAME=%s%c", pw->pw_name, '\0', 
56             pw->pw_name, '\0');
57         if (usrinfo(SETUINFO, cp, i) == -1)
58                 fatal("Couldn't set usrinfo: %s", strerror(errno));
59         debug3("AIX/UsrInfo: set len %d", i);
60
61         xfree(cp);
62 }
63
64 # ifdef CUSTOM_FAILED_LOGIN
65 /*
66  * record_failed_login: generic "login failed" interface function
67  */
68 void
69 record_failed_login(const char *user, const char *ttyname)
70 {
71         char *hostname = get_canonical_hostname(options.use_dns);
72
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
78 }
79 # endif /* CUSTOM_FAILED_LOGIN */
80 #endif /* _AIX */
81
This page took 0.039411 seconds and 5 git commands to generate.