1 /* Copyright (C) 2010-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
20 #include <not-cancel.h>
23 static int getlogin_r_fd0 (char *name
, size_t namesize
);
24 #define getlogin_r getlogin_r_fd0
25 #include <sysdeps/unix/getlogin_r.c>
29 /* Try to determine login name from /proc/self/loginuid and return 0
30 if successful. If /proc/self/loginuid cannot be read return -1.
31 Otherwise return the error number. */
35 __getlogin_r_loginuid (name
, namesize
)
39 int fd
= open_not_cancel_2 ("/proc/self/loginuid", O_RDONLY
);
43 /* We are reading a 32-bit number. 12 bytes are enough for the text
44 representation. If not, something is wrong. */
46 ssize_t n
= TEMP_FAILURE_RETRY (read_not_cancel (fd
, uidbuf
,
48 close_not_cancel_no_status (fd
);
53 || n
== sizeof (uidbuf
)
55 uid
= strtoul (uidbuf
, &endp
, 10),
56 endp
== uidbuf
|| *endp
!= '\0'))
60 char *buf
= alloca (buflen
);
61 bool use_malloc
= false;
67 while ((res
= __getpwuid_r (uid
, &pwd
, buf
, buflen
, &tpwd
)) == ERANGE
)
68 if (__libc_use_alloca (2 * buflen
))
69 buf
= extend_alloca (buf
, buflen
, 2 * buflen
);
73 char *newp
= realloc (use_malloc
? buf
: NULL
, buflen
);
83 if (res
!= 0 || tpwd
== NULL
)
89 size_t needed
= strlen (pwd
.pw_name
) + 1;
90 if (needed
> namesize
)
97 memcpy (name
, pwd
.pw_name
, needed
);
107 /* Return at most NAME_LEN characters of the login name of the user in NAME.
108 If it cannot be determined or some other error occurred, return the error
109 code. Otherwise return 0. */
112 getlogin_r (name
, namesize
)
116 int res
= __getlogin_r_loginuid (name
, namesize
);
120 return getlogin_r_fd0 (name
, namesize
);
122 libc_hidden_def (getlogin_r
)