diff options
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/port-aix.c | 42 | ||||
-rw-r--r-- | openbsd-compat/port-aix.h | 27 |
2 files changed, 56 insertions, 13 deletions
diff --git a/openbsd-compat/port-aix.c b/openbsd-compat/port-aix.c index ca0a88e69..02f185955 100644 --- a/openbsd-compat/port-aix.c +++ b/openbsd-compat/port-aix.c | |||
@@ -1,3 +1,25 @@ | |||
1 | /* | ||
2 | * Redistribution and use in source and binary forms, with or without | ||
3 | * modification, are permitted provided that the following conditions | ||
4 | * are met: | ||
5 | * 1. Redistributions of source code must retain the above copyright | ||
6 | * notice, this list of conditions and the following disclaimer. | ||
7 | * 2. Redistributions in binary form must reproduce the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer in the | ||
9 | * documentation and/or other materials provided with the distribution. | ||
10 | * | ||
11 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | ||
12 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
13 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
14 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
15 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
16 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
17 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
18 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
19 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
20 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
21 | * | ||
22 | */ | ||
1 | #include "includes.h" | 23 | #include "includes.h" |
2 | 24 | ||
3 | #ifdef _AIX | 25 | #ifdef _AIX |
@@ -6,21 +28,21 @@ | |||
6 | #include <../xmalloc.h> | 28 | #include <../xmalloc.h> |
7 | 29 | ||
8 | /* | 30 | /* |
9 | * AIX has a "usrinfo" area where logname and | 31 | * AIX has a "usrinfo" area where logname and other stuff is stored - |
10 | * other stuff is stored - a few applications | 32 | * a few applications actually use this and die if it's not set |
11 | * actually use this and die if it's not set | 33 | * |
34 | * NOTE: TTY= should be set, but since no one uses it and it's hard to | ||
35 | * acquire due to privsep code. We will just drop support. | ||
12 | */ | 36 | */ |
13 | void | 37 | void |
14 | aix_usrinfo(struct passwd *pw, char *tty, int ttyfd) | 38 | aix_usrinfo(struct passwd *pw) |
15 | { | 39 | { |
16 | u_int i; | 40 | u_int i; |
17 | char *cp=NULL; | 41 | char *cp; |
18 | 42 | ||
19 | if (ttyfd == -1) | 43 | cp = xmalloc(16 + 2 * strlen(pw->pw_name)); |
20 | tty[0] = '\0'; | 44 | i = sprintf(cp, "LOGNAME=%s%cNAME=%s%c%c", pw->pw_name, 0, |
21 | cp = xmalloc(22 + strlen(tty) + 2 * strlen(pw->pw_name)); | 45 | pw->pw_name, 0, 0); |
22 | i = sprintf(cp, "LOGNAME=%s%cNAME=%s%cTTY=%s%c%c", pw->pw_name, 0, | ||
23 | pw->pw_name, 0, tty, 0, 0); | ||
24 | if (usrinfo(SETUINFO, cp, i) == -1) | 46 | if (usrinfo(SETUINFO, cp, i) == -1) |
25 | fatal("Couldn't set usrinfo: %s", strerror(errno)); | 47 | fatal("Couldn't set usrinfo: %s", strerror(errno)); |
26 | debug3("AIX/UsrInfo: set len %d", i); | 48 | debug3("AIX/UsrInfo: set len %d", i); |
diff --git a/openbsd-compat/port-aix.h b/openbsd-compat/port-aix.h index e4d14f4ae..491ca4cd4 100644 --- a/openbsd-compat/port-aix.h +++ b/openbsd-compat/port-aix.h | |||
@@ -1,5 +1,26 @@ | |||
1 | #ifdef _AIX | 1 | /* |
2 | 2 | * Redistribution and use in source and binary forms, with or without | |
3 | void aix_usrinfo(struct passwd *pw, char *tty, int ttyfd); | 3 | * modification, are permitted provided that the following conditions |
4 | * are met: | ||
5 | * 1. Redistributions of source code must retain the above copyright | ||
6 | * notice, this list of conditions and the following disclaimer. | ||
7 | * 2. Redistributions in binary form must reproduce the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer in the | ||
9 | * documentation and/or other materials provided with the distribution. | ||
10 | * | ||
11 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | ||
12 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
13 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
14 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
15 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
16 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
17 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
18 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
19 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
20 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
21 | * | ||
22 | */ | ||
4 | 23 | ||
24 | #ifdef _AIX | ||
25 | void aix_usrinfo(struct passwd *pw); | ||
5 | #endif /* _AIX */ | 26 | #endif /* _AIX */ |