Tue Jul 9 09:37:55 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
[glibc.git] / sysdeps / unix / getlogin.c
blob7446f257868cb672139f596d5b32fd9ab99e1d12
1 /* Copyright (C) 1991, 1992, 1996 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 Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 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 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA. */
19 #include <ansidecl.h>
20 #include <errno.h>
21 #include <unistd.h>
22 #include <string.h>
23 #include <stdio.h>
24 #include <limits.h>
25 #include <fcntl.h>
27 #include <utmp.h>
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. */
32 char *
33 DEFUN_VOID(getlogin)
35 char tty_pathname[2 + 2 * NAME_MAX];
36 char *real_tty_path = tty_pathname;
37 char *result = NULL;
38 static struct utmp_data utmp_data;
39 struct utmp *ut, line;
42 int err = 0;
43 int d = __open ("/dev/tty", 0);
44 if (d < 0)
45 return NULL;
47 if (ttyname_r (d, real_tty_path, sizeof (tty_pathname)) < 0)
48 err = errno;
49 (void) close (d);
51 if (errno != 0)
53 errno = err;
54 return NULL;
58 real_tty_path += 5; /* Remove "/dev/". */
60 setutent_r (&utmp_data);
61 strncpy (line.ut_line, real_tty_path, sizeof line.ut_line);
62 if (getutline_r (&line, &ut, &utmp_data) < 0)
64 if (errno == ESRCH)
65 /* The caller expects ENOENT if nothing is found. */
66 errno = ENOENT;
67 result = NULL;
69 else
70 result = ut->ut_line;
72 endutent_r (&utmp_data);
74 return result;