5b62826a194ac7469e29ebe29411ed896fe5166c
[platform/upstream/glibc.git] / sysdeps / posix / ttyname_r.c
1 /* Copyright (C) 1991, 92, 93, 95, 96 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
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.
8
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.
13
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.  */
18
19 #include <errno.h>
20 #include <limits.h>
21 #include <stddef.h>
22 #include <dirent.h>
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #include <unistd.h>
26 #include <string.h>
27 #include <stdlib.h>
28
29 #ifndef MIN
30 # define MIN(a, b) ((a) < (b) ? (a) : (b))
31 #endif
32
33 /* Store at most BUFLEN character of the pathname of the terminal FD is
34    open on in BUF.  Return 0 on success, -1 otherwise.  */
35 int
36 __ttyname_r (fd, buf, buflen)
37      int fd;
38      char *buf;
39      size_t buflen;
40 {
41   static const char dev[] = "/dev";
42   struct stat st;
43   dev_t mydev;
44   ino_t myino;
45   DIR *dirstream;
46   struct dirent *d;
47   int save = errno;
48
49   /* Test for the absolute minimal size.  This makes life easier inside
50      the loop.  */
51   if (buflen < (int) (sizeof (dev) + 1))
52     {
53       __set_errno (ERANGE);
54       return ERANGE;
55     }
56
57   if (!__isatty (fd))
58     {
59       __set_errno (ENOTTY);
60       return ENOTTY;
61     }
62
63   if (fstat (fd, &st) < 0)
64     return errno;
65   mydev = st.st_dev;
66   myino = st.st_ino;
67
68   dirstream = opendir (dev);
69   if (dirstream == NULL)
70     return errno;
71
72   /* Prepare the result buffer.  */
73   memcpy (buf, dev, sizeof (dev) - 1);
74   buf[sizeof (dev) - 1] = '/';
75   buflen -= sizeof (dev);
76
77   while ((d = readdir (dirstream)) != NULL)
78     if ((ino_t) d->d_fileno == myino)
79       {
80         char *cp;
81         size_t needed = _D_EXACT_NAMLEN (d) + 1;
82
83         if (needed > buflen)
84           {
85             (void) closedir (dirstream);
86             __set_errno (ERANGE);
87             return ERANGE;
88           }
89
90         cp = __stpncpy (&buf[sizeof (dev)], d->d_name, needed);
91         cp[0] = '\0';
92
93         if (stat (buf, &st) == 0 && st.st_dev == mydev)
94           {
95             (void) closedir (dirstream);
96             __set_errno (save);
97             return 0;
98           }
99       }
100
101   (void) closedir (dirstream);
102   __set_errno (save);
103   /* It is not clear what to return in this case.  `isatty' says FD
104      refers to a TTY but no entry in /dev has this inode.  */
105   return ENOTTY;
106 }
107 weak_alias (__ttyname_r, ttyname_r)