1 /* Copyright (C) 1991-2014 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/>. */
27 static char name
[UT_NAMESIZE
+ 1];
29 /* Return the login name of the user, or NULL if it can't be determined.
30 The returned pointer, if not NULL, is good only until the next call. */
38 char tty_pathname
[2 + 2 * NAME_MAX
];
39 char *real_tty_path
= tty_pathname
;
42 struct utmp
*ut
, line
, buffer
;
44 /* Get name of tty connected to fd 0. Return NULL if not a tty or
45 if fd 0 isn't open. Note that a lot of documentation says that
46 getlogin() is based on the controlling terminal---what they
47 really mean is "the terminal connected to standard input". The
48 getlogin() implementation of DEC Unix, SunOS, Solaris, HP-UX all
49 return NULL if fd 0 has been closed, so this is the compatible
50 thing to do. Note that ttyname(open("/dev/tty")) on those
51 systems returns /dev/tty, so that is not a possible solution for
53 err
= __ttyname_r (0, real_tty_path
, sizeof (tty_pathname
));
60 real_tty_path
+= 5; /* Remove "/dev/". */
63 strncpy (line
.ut_line
, real_tty_path
, sizeof line
.ut_line
);
64 if (__getutline_r (&line
, &buffer
, &ut
) < 0)
67 /* The caller expects ENOENT if nothing is found. */
73 strncpy (name
, ut
->ut_user
, UT_NAMESIZE
);
74 name
[UT_NAMESIZE
] = '\0';