ptsname - Minor fixes
[dragonfly.git] / lib / libc / gen / ptsname.3
1 .\"
2 .\" Copyright (c) 2002 The FreeBSD Project, Inc.
3 .\" All rights reserved.
4 .\"
5 .\" This software includes code contributed to the FreeBSD Project
6 .\" by Ryan Younce of North Carolina State University.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\" 3. Neither the name of the FreeBSD Project nor the names of its
17 .\"    contributors may be used to endorse or promote products derived from
18 .\"    this software without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE FREEBSD PROJECT AND CONTRIBUTORS
21 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 .\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23 .\" PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FREEBSD PROJECT
24 .\" OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 .\" SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
26 .\" TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27 .\" PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28 .\" LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29 .\" NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30 .\" SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 .\"
32 .\" $FreeBSD$
33 .\"
34 .Dd September 10, 2009
35 .Os
36 .Dt PTSNAME 3
37 .Sh NAME
38 .Nm grantpt ,
39 .Nm ptsname ,
40 .Nm unlockpt
41 .Nd pseudo-terminal access functions
42 .Sh LIBRARY
43 .Lb libc
44 .Sh SYNOPSIS
45 .In stdlib.h
46 .Ft int
47 .Fn grantpt "int fildes"
48 .Ft "char *"
49 .Fn ptsname "int fildes"
50 .Ft int
51 .Fn unlockpt "int fildes"
52 .Sh DESCRIPTION
53 The
54 .Fn grantpt ,
55 .Fn ptsname ,
56 and
57 .Fn unlockpt
58 functions allow access to pseudo-terminal devices.
59 These three functions accept a file descriptor that references the
60 master half of a pseudo-terminal pair.
61 This file descriptor is created with
62 .Xr posix_openpt 3
63 or by calling
64 .Xr open 2
65 on
66 .Pa /dev/ptmx .
67 .Pp
68 The
69 .Fn grantpt
70 function is used to establish ownership and permissions
71 of the slave device counterpart to the master device
72 specified with
73 .Fa fildes .
74 The slave device's ownership is set to the real user ID
75 of the calling process, and the permissions are set to
76 user readable-writable and group writable.
77 The group owner of the slave device is also set to the
78 group
79 .Dq Li tty .
80 .Pp
81 The
82 .Fn ptsname
83 function returns the full pathname of the slave device
84 counterpart to the master device specified with
85 .Fa fildes .
86 This value can be used
87 to subsequently open the appropriate slave after
88 .Xr posix_openpt 3
89 and
90 .Fn grantpt
91 have been called.
92 .Pp
93 The
94 .Fn unlockpt
95 function clears the lock held on the pseudo-terminal pair
96 for the master device specified with
97 .Fa fildes .
98 .Sh RETURN VALUES
99 .Rv -std grantpt unlockpt
100 .Pp
101 The
102 .Fn ptsname
103 function returns a pointer to the name
104 of the slave device on success; otherwise a
105 .Dv NULL
106 pointer is returned.
107 .Sh ERRORS
108 The
109 .Fn grantpt
110 and
111 .Fn unlockpt
112 functions may fail and set
113 .Va errno
114 to:
115 .Bl -tag -width Er
116 .It Bq Er EBADF
117 .Fa fildes
118 is not a valid open file descriptor.
119 .It Bq Er EINVAL
120 .Fa fildes
121 is not a master pseudo-terminal device.
122 .El
123 .Pp
124 In addition, the
125 .Fn grantpt
126 function may set
127 .Va errno
128 to:
129 .Bl -tag -width Er
130 .It Bq Er EACCES
131 The slave pseudo-terminal device could not be accessed.
132 .El
133 .Sh SEE ALSO
134 .Xr posix_openpt 3 ,
135 .Xr tty 4
136 .Sh STANDARDS
137 The
138 .Fn ptsname
139 function conforms to
140 .St -p1003.1-2008 .
141 .Pp
142 This implementation of
143 .Fn grantpt
144 and
145 .Fn unlockpt
146 does not conform to
147 .St -p1003.1-2008 ,
148 because it depends on
149 .Xr posix_openpt 3
150 to create the pseudo-terminal device with proper permissions in place.
151 It only validates whether
152 .Fa fildes
153 is a valid pseudo-terminal master device.
154 Future revisions of the specification will likely allow this behaviour,
155 as stated by the Austin Group.
156 .Sh HISTORY
157 The
158 .Fn grantpt ,
159 .Fn ptsname
160 and
161 .Fn unlockpt
162 functions appeared in
163 .Dx 2.3 .