ptsname.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /* Copyright (C) 1998 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.
  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. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If not,
  14. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA. */
  16. #define _STDIO_UTILITY /* For _int10tostr. */
  17. #include <stdio.h>
  18. #include <errno.h>
  19. #include <paths.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #include <sys/ioctl.h>
  23. #include <sys/stat.h>
  24. #include <sys/sysmacros.h>
  25. #include <termios.h>
  26. #include <unistd.h>
  27. #if !defined UNIX98PTY_ONLY
  28. /* Check if DEV corresponds to a master pseudo terminal device. */
  29. #define MASTER_P(Dev) \
  30. (major ((Dev)) == 2 \
  31. || (major ((Dev)) == 4 && minor ((Dev)) >= 128 && minor ((Dev)) < 192) \
  32. || (major ((Dev)) >= 128 && major ((Dev)) < 136))
  33. /* Check if DEV corresponds to a master pseudo terminal device. */
  34. #define SLAVE_P(Dev) \
  35. (major ((Dev)) == 3 \
  36. || (major ((Dev)) == 4 && minor ((Dev)) >= 192 && minor ((Dev)) < 256) \
  37. || (major ((Dev)) >= 136 && major ((Dev)) < 144))
  38. /* Note that major number 4 corresponds to the old BSD style pseudo
  39. terminal devices. As of Linux 2.1.115 these are no longer
  40. supported. They have been replaced by major numbers 2 (masters)
  41. and 3 (slaves). */
  42. /* The are declared in getpt.c. */
  43. extern const char _ptyname1[];
  44. extern const char _ptyname2[];
  45. #endif
  46. /* Directory where we can find the slave pty nodes. */
  47. #define _PATH_DEVPTS "/dev/pts/"
  48. /* Store at most BUFLEN characters of the pathname of the slave pseudo
  49. terminal associated with the master FD is open on in BUF.
  50. Return 0 on success, otherwise an error number. */
  51. int ptsname_r (int fd, char *buf, size_t buflen)
  52. {
  53. int save_errno = errno;
  54. #if !defined UNIX98PTY_ONLY
  55. struct stat st;
  56. #endif
  57. int ptyno;
  58. if (buf == NULL)
  59. {
  60. errno = EINVAL;
  61. return EINVAL;
  62. }
  63. #if !defined UNIX98PTY_ONLY
  64. if (!isatty (fd))
  65. {
  66. errno = ENOTTY;
  67. return ENOTTY;
  68. }
  69. #elif !defined TIOCGPTN
  70. # error "UNIX98PTY_ONLY enabled but TIOCGPTN ioctl not supported by your kernel."
  71. #endif
  72. #ifdef TIOCGPTN
  73. if (ioctl (fd, TIOCGPTN, &ptyno) == 0)
  74. {
  75. /* Buffer we use to print the number in. */
  76. char numbuf[__BUFLEN_INT10TOSTR];
  77. static const char devpts[] = _PATH_DEVPTS;
  78. char *p;
  79. p = _int10tostr(&numbuf[sizeof numbuf - 1], ptyno);
  80. if (buflen < sizeof devpts + &numbuf[sizeof numbuf - 1] - p)
  81. {
  82. errno = ERANGE;
  83. return ERANGE;
  84. }
  85. strcpy (buf, devpts);
  86. strcat (buf, p);
  87. }
  88. #endif
  89. #if defined UNIX98PTY_ONLY
  90. else
  91. {
  92. /* If the ioctl fails it wasn't a Unix 98 master PTY */
  93. errno = ENOTTY;
  94. return ENOTTY;
  95. }
  96. /* Note: Don't bother with stat on the slave name and checking the
  97. driver's major device number - the ioctl above succeeded so
  98. we know the fd was a Unix'98 master and the /dev/pts/ prefix
  99. is set by definition. If the name isn't really a slave PTY,
  100. the system is misconfigured anyway - something else will fail
  101. later.
  102. */
  103. #else
  104. # if !defined TIOCGPTN
  105. else if (errno == EINVAL)
  106. # endif
  107. {
  108. char *p;
  109. if (buflen < strlen (_PATH_TTY) + 3)
  110. {
  111. errno = ERANGE;
  112. return ERANGE;
  113. }
  114. if (fstat (fd, &st) < 0)
  115. return errno;
  116. /* Check if FD really is a master pseudo terminal. */
  117. if (! MASTER_P (st.st_rdev))
  118. {
  119. errno = ENOTTY;
  120. return ENOTTY;
  121. }
  122. ptyno = minor (st.st_rdev);
  123. /* This is for the old BSD pseudo terminals. As of Linux
  124. 2.1.115 these are no longer supported. */
  125. if (major (st.st_rdev) == 4)
  126. ptyno -= 128;
  127. if (ptyno / 16 >= strlen (_ptyname1))
  128. {
  129. errno = ENOTTY;
  130. return ENOTTY;
  131. }
  132. strcpy (buf, _PATH_TTY);
  133. p = buf + strlen (buf);
  134. p[0] = _ptyname1[ptyno / 16];
  135. p[1] = _ptyname2[ptyno % 16];
  136. p[2] = '\0';
  137. }
  138. if (__xstat (_STAT_VER, buf, &st) < 0)
  139. return errno;
  140. /* Check if the name we're about to return really corresponds to a
  141. slave pseudo terminal. */
  142. if (! S_ISCHR (st.st_mode) || ! SLAVE_P (st.st_rdev))
  143. {
  144. /* This really is a configuration problem. */
  145. errno = ENOTTY;
  146. return ENOTTY;
  147. }
  148. #endif
  149. errno = save_errno;
  150. return 0;
  151. }
  152. /* Return the pathname of the pseudo terminal slave assoicated with
  153. the master FD is open on, or NULL on errors.
  154. The returned storage is good until the next call to this function. */
  155. char *
  156. ptsname (int fd)
  157. {
  158. static char buffer[sizeof (_PATH_DEVPTS) + 20];
  159. return ptsname_r (fd, buffer, sizeof (buffer)) != 0 ? NULL : buffer;
  160. }