1 /* Copyright (C) 1998, 2000, 2001, 2002, 2009 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Zack Weinberg <zack@rabi.phys.columbia.edu>, 1998.
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/>. */
23 #include <sys/ioctl.h>
25 #include <sys/sysmacros.h>
29 #include <stdio-common/_itoa.h>
31 /* Check if DEV corresponds to a master pseudo terminal device. */
32 #define MASTER_P(Dev) \
34 || (major ((Dev)) == 4 && minor ((Dev)) >= 128 && minor ((Dev)) < 192) \
35 || (major ((Dev)) >= 128 && major ((Dev)) < 136))
37 /* Check if DEV corresponds to a slave pseudo terminal device. */
38 #define SLAVE_P(Dev) \
40 || (major ((Dev)) == 4 && minor ((Dev)) >= 192 && minor ((Dev)) < 256) \
41 || (major ((Dev)) >= 136 && major ((Dev)) < 144))
43 /* Note that major number 4 corresponds to the old BSD style pseudo
44 terminal devices. As of Linux 2.1.115 these are no longer
45 supported. They have been replaced by major numbers 2 (masters)
48 /* Directory where we can find the slave pty nodes. */
49 #define _PATH_DEVPTS "/dev/pts/"
51 /* The are declared in getpt.c. */
52 extern const char __libc_ptyname1
[] attribute_hidden
;
53 extern const char __libc_ptyname2
[] attribute_hidden
;
55 /* Static buffer for `ptsname'. */
56 static char buffer
[sizeof (_PATH_DEVPTS
) + 20];
59 /* Return the pathname of the pseudo terminal slave assoicated with
60 the master FD is open on, or NULL on errors.
61 The returned storage is good until the next call to this function. */
65 return __ptsname_r (fd
, buffer
, sizeof (buffer
)) != 0 ? NULL
: buffer
;
70 __ptsname_internal (int fd
, char *buf
, size_t buflen
, struct stat64
*stp
)
72 int save_errno
= errno
;
88 if (__ioctl (fd
, TIOCGPTN
, &ptyno
) == 0)
90 /* Buffer we use to print the number in. For a maximum size for
91 `int' of 8 bytes we never need more than 20 digits. */
93 const char *devpts
= _PATH_DEVPTS
;
94 const size_t devptslen
= strlen (_PATH_DEVPTS
);
97 numbuf
[sizeof (numbuf
) - 1] = '\0';
98 p
= _itoa_word (ptyno
, &numbuf
[sizeof (numbuf
) - 1], 10, 0);
100 if (buflen
< devptslen
+ (&numbuf
[sizeof (numbuf
)] - p
))
102 __set_errno (ERANGE
);
106 memcpy (__stpcpy (buf
, devpts
), p
, &numbuf
[sizeof (numbuf
)] - p
);
108 else if (errno
== EINVAL
)
113 if (buflen
< strlen (_PATH_TTY
) + 3)
115 __set_errno (ERANGE
);
119 if (__fxstat64 (_STAT_VER
, fd
, stp
) < 0)
122 /* Check if FD really is a master pseudo terminal. */
123 if (! MASTER_P (stp
->st_rdev
))
125 __set_errno (ENOTTY
);
129 ptyno
= minor (stp
->st_rdev
);
130 #if __LINUX_KERNEL_VERSION < 131443
131 /* This is for the old BSD pseudo terminals. As of Linux
132 2.1.115 these are no longer supported. */
133 if (major (stp
->st_rdev
) == 4)
137 if (ptyno
/ 16 >= strlen (__libc_ptyname1
))
139 __set_errno (ENOTTY
);
143 p
= __stpcpy (buf
, _PATH_TTY
);
144 p
[0] = __libc_ptyname1
[ptyno
/ 16];
145 p
[1] = __libc_ptyname2
[ptyno
% 16];
149 if (__xstat64 (_STAT_VER
, buf
, stp
) < 0)
152 /* Check if the name we're about to return really corresponds to a
153 slave pseudo terminal. */
154 if (! S_ISCHR (stp
->st_mode
) || ! SLAVE_P (stp
->st_rdev
))
156 /* This really is a configuration problem. */
157 __set_errno (ENOTTY
);
161 __set_errno (save_errno
);
166 /* Store at most BUFLEN characters of the pathname of the slave pseudo
167 terminal associated with the master FD is open on in BUF.
168 Return 0 on success, otherwise an error number. */
170 __ptsname_r (int fd
, char *buf
, size_t buflen
)
173 return __ptsname_internal (fd
, buf
, buflen
, &st
);
175 weak_alias (__ptsname_r
, ptsname_r
)