Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / unix / getlogin_r.c
blob66f4a7653f9850bb769293960d69f7d193aace45
1 /* Reentrant function to return the current login name. Unix version.
2 Copyright (C) 1991-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <unistd.h>
21 #include <string.h>
22 #include <stdio.h>
23 #include <limits.h>
24 #include <fcntl.h>
26 #include <utmp.h>
27 #include "../login/utmp-private.h"
29 /* Return at most NAME_LEN characters of the login name of the user in NAME.
30 If it cannot be determined or some other error occurred, return the error
31 code. Otherwise return 0. */
33 #ifdef STATIC
34 STATIC
35 #endif
36 int
37 getlogin_r (name, name_len)
38 char *name;
39 size_t name_len;
41 char tty_pathname[2 + 2 * NAME_MAX];
42 char *real_tty_path = tty_pathname;
43 int result;
44 struct utmp *ut, line, buffer;
46 /* Get name of tty connected to fd 0. Return if not a tty or
47 if fd 0 isn't open. Note that a lot of documentation says that
48 getlogin() is based on the controlling terminal---what they
49 really mean is "the terminal connected to standard input". The
50 getlogin() implementation of DEC Unix, SunOS, Solaris, HP-UX all
51 return NULL if fd 0 has been closed, so this is the compatible
52 thing to do. Note that ttyname(open("/dev/tty")) on those
53 systems returns /dev/tty, so that is not a possible solution for
54 getlogin(). */
56 result = __ttyname_r (0, real_tty_path, sizeof (tty_pathname));
58 if (result != 0)
59 return result;
61 real_tty_path += 5; /* Remove "/dev/". */
62 strncpy (line.ut_line, real_tty_path, sizeof line.ut_line);
64 /* We don't use the normal entry points __setutent et al, because we
65 want setutent + getutline_r + endutent all to happen with the lock
66 held so that our search is thread-safe. */
68 __libc_lock_lock (__libc_utmp_lock);
69 (*__libc_utmp_jump_table->setutent) ();
70 result = (*__libc_utmp_jump_table->getutline_r) (&line, &buffer, &ut);
71 if (result < 0)
73 if (errno == ESRCH)
74 /* The caller expects ENOENT if nothing is found. */
75 result = ENOENT;
76 else
77 result = errno;
79 (*__libc_utmp_jump_table->endutent) ();
80 __libc_utmp_jump_table = &__libc_utmp_unknown_functions;
81 __libc_lock_unlock (__libc_utmp_lock);
83 if (result == 0)
85 size_t needed = strlen (ut->ut_user) + 1;
87 if (needed > name_len)
89 __set_errno (ERANGE);
90 result = ERANGE;
92 else
94 memcpy (name, ut->ut_user, needed);
95 result = 0;
99 return result;
101 #ifndef STATIC
102 libc_hidden_def (getlogin_r)
103 #endif