1PTY(7) Linux Programmer's Manual PTY(7)
2
3
4
6 pty - pseudoterminal interfaces
7
9 A pseudoterminal (sometimes abbreviated "pty") is a pair of virtual
10 character devices that provide a bidirectional communication channel.
11 One end of the channel is called the master; the other end is called
12 the slave. The slave end of the pseudoterminal provides an interface
13 that behaves exactly like a classical terminal. A process that expects
14 to be connected to a terminal, can open the slave end of a pseudotermi‐
15 nal and then be driven by a program that has opened the master end.
16 Anything that is written on the master end is provided to the process
17 on the slave end as though it was input typed on a terminal. For exam‐
18 ple, writing the interrupt character (usually control-C) to the master
19 device would cause an interrupt signal (SIGINT) to be generated for the
20 foreground process group that is connected to the slave. Conversely,
21 anything that is written to the slave end of the pseudoterminal can be
22 read by the process that is connected to the master end. Pseudotermi‐
23 nals are used by applications such as network login services (ssh(1),
24 rlogin(1), telnet(1)), terminal emulators, script(1), screen(1), and
25 expect(1).
26
27 Historically, two pseudoterminal APIs have evolved: BSD and System V.
28 SUSv1 standardized a pseudoterminal API based on the System V API, and
29 this API should be employed in all new programs that use pseudotermi‐
30 nals.
31
32 Linux provides both BSD-style and (standardized) System V-style pseu‐
33 doterminals. System V-style terminals are commonly called UNIX 98
34 pseudoterminals on Linux systems. Since kernel 2.6.4, BSD-style pseu‐
35 doterminals are considered deprecated (they can be disabled when con‐
36 figuring the kernel); UNIX 98 pseudoterminals should be used in new
37 applications.
38
39 UNIX 98 pseudoterminals
40 An unused UNIX 98 pseudoterminal master is opened by calling
41 posix_openpt(3). (This function opens the master clone device,
42 /dev/ptmx; see pts(4).) After performing any program-specific initial‐
43 izations, changing the ownership and permissions of the slave device
44 using grantpt(3), and unlocking the slave using unlockpt(3)), the cor‐
45 responding slave device can be opened by passing the name returned by
46 ptsname(3) in a call to open(2).
47
48 The Linux kernel imposes a limit on the number of available UNIX 98
49 pseudoterminals. In kernels up to and including 2.6.3, this limit is
50 configured at kernel compilation time (CONFIG_UNIX98_PTYS), and the
51 permitted number of pseudoterminals can be up to 2048, with a default
52 setting of 256. Since kernel 2.6.4, the limit is dynamically
53 adjustable via /proc/sys/kernel/pty/max, and a corresponding file,
54 /proc/sys/kernel/pty/nr, indicates how many pseudoterminals are cur‐
55 rently in use. For further details on these two files, see proc(5).
56
57 BSD pseudoterminals
58 BSD-style pseudoterminals are provided as precreated pairs, with names
59 of the form /dev/ptyXY (master) and /dev/ttyXY (slave), where X is a
60 letter from the 16-character set [p-za-e], and Y is a letter from the
61 16-character set [0-9a-f]. (The precise range of letters in these two
62 sets varies across UNIX implementations.) For example, /dev/ptyp1 and
63 /dev/ttyp1 constitute a BSD pseudoterminal pair. A process finds an
64 unused pseudoterminal pair by trying to open(2) each pseudoterminal
65 master until an open succeeds. The corresponding pseudoterminal slave
66 (substitute "tty" for "pty" in the name of the master) can then be
67 opened.
68
70 /dev/ptmx (UNIX 98 master clone device)
71 /dev/pts/* (UNIX 98 slave devices)
72 /dev/pty[p-za-e][0-9a-f] (BSD master devices)
73 /dev/tty[p-za-e][0-9a-f] (BSD slave devices)
74
76 A description of the TIOCPKT ioctl(2), which controls packet mode oper‐
77 ation, can be found in tty_ioctl(4).
78
79 The BSD ioctl(2) operations TIOCSTOP, TIOCSTART, TIOCUCNTL, and TIOCRE‐
80 MOTE have not been implemented under Linux.
81
83 select(2), setsid(2), forkpty(3), openpty(3), termios(3), pts(4),
84 tty(4), tty_ioctl(4)
85
87 This page is part of release 3.53 of the Linux man-pages project. A
88 description of the project, and information about reporting bugs, can
89 be found at http://www.kernel.org/doc/man-pages/.
90
91
92
93Linux 2005-10-10 PTY(7)