1 /* Open the master side of a pseudo-terminal.
2 Copyright (C) 2010-2020 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program 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
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
24 #if defined __OpenBSD__
25 # include <sys/ioctl.h>
29 /* posix_openpt() is already provided on
30 glibc >= 2.2.1 (but is a stub on GNU/Hurd),
32 FreeBSD >= 5.1 (lived in src/lib/libc/stdlib/grantpt.c before 8.0),
34 AIX >= 5.2, HP-UX >= 11.31, Solaris >= 10, Cygwin >= 1.7.
35 Thus, this replacement function is compiled on
36 Mac OS X 10.3, OpenBSD 4.9, Minix 3.1.8,
37 AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9,
38 Cygwin 1.5.x, mingw, MSVC 9, Interix 3.5, BeOS.
41 - HP-UX 10..11, IRIX 6.5, OSF/1 5.1, Solaris 2.6..9, Cygwin 1.5
43 - HP-UX 10..11 also has /dev/ptym/clone, but this should not be needed.
44 - OpenBSD 4.9 has /dev/ptm and the PTMGET ioctl.
45 - Minix 3.1.8 have a list of pseudo-terminal devices in /dev.
46 - On native Windows, there are no ttys at all. */
49 posix_openpt (int flags
)
55 master
= open ("/dev/ptc", flags
);
57 #elif defined _WIN32 && !defined __CYGWIN__ /* mingw */
59 /* Mingw lacks pseudo-terminals altogether. */
63 #elif defined __OpenBSD__
65 /* On OpenBSD, master and slave of a pseudo-terminal are allocated together,
66 by opening /dev/ptm and applying the PTMGET ioctl to it. */
70 fd
= open (PATH_PTMDEV
, O_RDWR
);
73 if (ioctl (fd
, PTMGET
, &data
) >= 0)
81 int saved_errno
= errno
;
90 #else /* Mac OS X, Minix, HP-UX, IRIX, OSF/1, Solaris 9, Cygwin 1.5 */
92 /* Most systems that lack posix_openpt() have /dev/ptmx. */
93 master
= open ("/dev/ptmx", flags
);
95 /* If all this does not work, we could try to open, one by one:
96 - On Mac OS X: /dev/pty[p-w][0-9a-f]
97 - On *BSD: /dev/pty[p-sP-S][0-9a-v]
98 - On Minix: /dev/pty[p-q][0-9a-f]
99 - On AIX: /dev/ptyp[0-9a-f]
100 - On HP-UX: /dev/pty[p-r][0-9a-f]
101 - On OSF/1: /dev/pty[p-q][0-9a-f]
102 - On Solaris: /dev/pty[p-r][0-9a-f]