blob: f192a4e79f629c629e774224efd35a6030492018 [file] [log] [blame]
Ben Lindstrom51b24882002-07-04 03:08:40 +00001/*
Ben Lindstrom024f08f2002-07-07 02:17:36 +00002 *
3 * Copyright (c) 2001 Gert Doering. All rights reserved.
4 *
Ben Lindstrom51b24882002-07-04 03:08:40 +00005 * 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 */
Ben Lindstroma9c039c2002-02-19 20:27:55 +000026#include "includes.h"
Darren Tucker97363a82003-05-02 23:42:25 +100027#include "ssh.h"
28#include "log.h"
29#include "servconf.h"
Ben Lindstroma9c039c2002-02-19 20:27:55 +000030
31#ifdef _AIX
32
33#include <uinfo.h>
Ben Lindstrom127398c2002-02-24 20:25:46 +000034#include <../xmalloc.h>
Ben Lindstroma9c039c2002-02-19 20:27:55 +000035
Darren Tucker97363a82003-05-02 23:42:25 +100036extern ServerOptions options;
37
Ben Lindstroma9c039c2002-02-19 20:27:55 +000038/*
Ben Lindstrom51b24882002-07-04 03:08:40 +000039 * 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.
Ben Lindstroma9c039c2002-02-19 20:27:55 +000044 */
45void
Ben Lindstrom51b24882002-07-04 03:08:40 +000046aix_usrinfo(struct passwd *pw)
Ben Lindstroma9c039c2002-02-19 20:27:55 +000047{
Ben Lindstroma9c039c2002-02-19 20:27:55 +000048 u_int i;
Damien Miller31741252003-05-19 00:13:38 +100049 size_t len;
Ben Lindstrom51b24882002-07-04 03:08:40 +000050 char *cp;
Ben Lindstroma9c039c2002-02-19 20:27:55 +000051
Damien Miller31741252003-05-19 00:13:38 +100052 len = sizeof("LOGNAME= NAME= ") + (2 * strlen(pw->pw_name));
53 cp = xmalloc(len);
54
Damien Miller3867bf32003-05-19 09:33:15 +100055 i = snprintf(cp, len, "LOGNAME=%s%cNAME=%s%c", pw->pw_name, '\0',
56 pw->pw_name, '\0');
Ben Lindstroma9c039c2002-02-19 20:27:55 +000057 if (usrinfo(SETUINFO, cp, i) == -1)
58 fatal("Couldn't set usrinfo: %s", strerror(errno));
59 debug3("AIX/UsrInfo: set len %d", i);
Damien Miller31741252003-05-19 00:13:38 +100060
Ben Lindstroma9c039c2002-02-19 20:27:55 +000061 xfree(cp);
62}
63
Darren Tucker97363a82003-05-02 23:42:25 +100064# 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{
Damien Miller31741252003-05-19 00:13:38 +100071 char *hostname = get_canonical_hostname(options.verify_reverse_mapping);
72
73 loginfailed(user, hostname, ttyname);
Darren Tucker97363a82003-05-02 23:42:25 +100074}
75# endif /* CUSTOM_FAILED_LOGIN */
Ben Lindstroma9c039c2002-02-19 20:27:55 +000076#endif /* _AIX */
77