]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libc/gen/tcsetattr.3
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libc / gen / tcsetattr.3
1 .\" Copyright (c) 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)tcsetattr.3 8.3 (Berkeley) 1/2/94
29 .\" $FreeBSD$
30 .\"
31 .Dd January 2, 1994
32 .Dt TCSETATTR 3
33 .Os
34 .Sh NAME
35 .Nm cfgetispeed ,
36 .Nm cfsetispeed ,
37 .Nm cfgetospeed ,
38 .Nm cfsetospeed ,
39 .Nm cfsetspeed ,
40 .Nm cfmakeraw ,
41 .Nm cfmakesane ,
42 .Nm tcgetattr ,
43 .Nm tcsetattr
44 .Nd manipulating the termios structure
45 .Sh LIBRARY
46 .Lb libc
47 .Sh SYNOPSIS
48 .In termios.h
49 .Ft speed_t
50 .Fn cfgetispeed "const struct termios *t"
51 .Ft int
52 .Fn cfsetispeed "struct termios *t" "speed_t speed"
53 .Ft speed_t
54 .Fn cfgetospeed "const struct termios *t"
55 .Ft int
56 .Fn cfsetospeed "struct termios *t" "speed_t speed"
57 .Ft int
58 .Fn cfsetspeed "struct termios *t" "speed_t speed"
59 .Ft void
60 .Fn cfmakeraw "struct termios *t"
61 .Ft void
62 .Fn cfmakesane "struct termios *t"
63 .Ft int
64 .Fn tcgetattr "int fd" "struct termios *t"
65 .Ft int
66 .Fn tcsetattr "int fd" "int action" "const struct termios *t"
67 .Sh DESCRIPTION
68 The
69 .Fn cfmakeraw ,
70 .Fn cfmakesane ,
71 .Fn tcgetattr
72 and
73 .Fn tcsetattr
74 functions are provided for getting and setting the termios structure.
75 .Pp
76 The
77 .Fn cfgetispeed ,
78 .Fn cfsetispeed ,
79 .Fn cfgetospeed ,
80 .Fn cfsetospeed
81 and
82 .Fn cfsetspeed
83 functions are provided for getting and setting the baud rate values in
84 the termios structure.
85 The effects of the functions on the terminal as described below
86 do not become effective, nor are all errors detected, until the
87 .Fn tcsetattr
88 function is called.
89 Certain values for baud rates set in the termios structure and passed to
90 .Fn tcsetattr
91 have special meanings.
92 These are discussed in the portion of the manual page that describes the
93 .Fn tcsetattr
94 function.
95 .Sh GETTING AND SETTING THE BAUD RATE
96 The input and output baud rates are found in the termios structure.
97 The unsigned integer
98 .Li speed_t
99 is typedef'd in the include file
100 .In termios.h .
101 The value of the integer corresponds directly to the baud rate being
102 represented, however, the following symbolic values are defined.
103 .Bd -literal
104 #define B0      0
105 #define B50     50
106 #define B75     75
107 #define B110    110
108 #define B134    134
109 #define B150    150
110 #define B200    200
111 #define B300    300
112 #define B600    600
113 #define B1200   1200
114 #define B1800   1800
115 #define B2400   2400
116 #define B4800   4800
117 #define B9600   9600
118 #define B19200  19200
119 #define B38400  38400
120 #ifndef _POSIX_SOURCE
121 #define EXTA    19200
122 #define EXTB    38400
123 #endif  /*_POSIX_SOURCE */
124 .Ed
125 .Pp
126 The
127 .Fn cfgetispeed
128 function returns the input baud rate in the termios structure referenced by
129 .Fa tp .
130 .Pp
131 The
132 .Fn cfsetispeed
133 function sets the input baud rate in the termios structure referenced by
134 .Fa tp
135 to
136 .Fa speed .
137 .Pp
138 The
139 .Fn cfgetospeed
140 function returns the output baud rate in the termios structure referenced by
141 .Fa tp .
142 .Pp
143 The
144 .Fn cfsetospeed
145 function sets the output baud rate in the termios structure referenced by
146 .Fa tp
147 to
148 .Fa speed .
149 .Pp
150 The
151 .Fn cfsetspeed
152 function sets both the input and output baud rate in the termios structure
153 referenced by
154 .Fa tp
155 to
156 .Fa speed .
157 .Pp
158 Upon successful completion, the functions
159 .Fn cfsetispeed ,
160 .Fn cfsetospeed ,
161 and
162 .Fn cfsetspeed
163 return a value of 0.
164 Otherwise, a value of -1 is returned and the global variable
165 .Va errno
166 is set to indicate the error.
167 .Sh GETTING AND SETTING THE TERMIOS STATE
168 This section describes the functions that are used to control the general
169 terminal interface.
170 Unless otherwise noted for a specific command, these functions are restricted
171 from use by background processes.
172 Attempts to perform these operations shall cause the process group to be sent
173 a SIGTTOU signal.
174 If the calling process is blocking or ignoring SIGTTOU signals, the process
175 is allowed to perform the operation and the SIGTTOU signal is not sent.
176 .Pp
177 In all the functions, although
178 .Fa fd
179 is an open file descriptor, the functions affect the underlying terminal
180 file, not just the open file description associated with the particular
181 file descriptor.
182 .Pp
183 The
184 .Fn cfmakeraw
185 function sets the flags stored in the termios structure to a state disabling
186 all input and output processing, giving a
187 .Dq raw I/O path ,
188 while the
189 .Fn cfmakesane
190 function sets them to a state similar to those of a newly created
191 terminal device.
192 It should be noted that there is no function to reverse this effect.
193 This is because there are a variety of processing options that could be
194 re-enabled and the correct method is for an application to snapshot the
195 current terminal state using the function
196 .Fn tcgetattr ,
197 setting raw or sane mode with
198 .Fn cfmakeraw
199 or
200 .Fn cfmakesane
201 and the subsequent
202 .Fn tcsetattr ,
203 and then using another
204 .Fn tcsetattr
205 with the saved state to revert to the previous terminal state.
206 .Pp
207 The
208 .Fn tcgetattr
209 function copies the parameters associated with the terminal referenced
210 by
211 .Fa fd
212 in the termios structure referenced by
213 .Fa tp .
214 This function is allowed from a background process, however, the terminal
215 attributes may be subsequently changed by a foreground process.
216 .Pp
217 The
218 .Fn tcsetattr
219 function sets the parameters associated with the terminal from the
220 termios structure referenced by
221 .Fa tp .
222 The
223 .Fa action
224 argument is created by
225 .Em or Ns 'ing
226 the following values, as specified in the include file
227 .In termios.h .
228 .Bl -tag -width "TCSADRAIN"
229 .It Fa TCSANOW
230 The change occurs immediately.
231 .It Fa TCSADRAIN
232 The change occurs after all output written to
233 .Fa fd
234 has been transmitted to the terminal.
235 This value of
236 .Fa action
237 should be used when changing parameters that affect output.
238 .It Fa TCSAFLUSH
239 The change occurs after all output written to
240 .Fa fd
241 has been transmitted to the terminal.
242 Additionally, any input that has been received but not read is discarded.
243 .It Fa TCSASOFT
244 If this value is
245 .Em or Ns 'ed
246 into the
247 .Fa action
248 value, the values of the
249 .Va c_cflag ,
250 .Va c_ispeed ,
251 and
252 .Va c_ospeed
253 fields are ignored.
254 .El
255 .Pp
256 The 0 baud rate is used to terminate the connection.
257 If 0 is specified as the output speed to the function
258 .Fn tcsetattr ,
259 modem control will no longer be asserted on the terminal, disconnecting
260 the terminal.
261 .Pp
262 If zero is specified as the input speed to the function
263 .Fn tcsetattr ,
264 the input baud rate will be set to the same value as that specified by
265 the output baud rate.
266 .Pp
267 If
268 .Fn tcsetattr
269 is unable to make any of the requested changes, it returns -1 and
270 sets errno.
271 Otherwise, it makes all of the requested changes it can.
272 If the specified input and output baud rates differ and are a combination
273 that is not supported, neither baud rate is changed.
274 .Pp
275 Upon successful completion, the functions
276 .Fn tcgetattr
277 and
278 .Fn tcsetattr
279 return a value of 0.
280 Otherwise, they
281 return -1 and the global variable
282 .Va errno
283 is set to indicate the error, as follows:
284 .Bl -tag -width Er
285 .It Bq Er EBADF
286 The
287 .Fa fd
288 argument to
289 .Fn tcgetattr
290 or
291 .Fn tcsetattr
292 was not a valid file descriptor.
293 .It Bq Er EINTR
294 The
295 .Fn tcsetattr
296 function was interrupted by a signal.
297 .It Bq Er EINVAL
298 The
299 .Fa action
300 argument to the
301 .Fn tcsetattr
302 function was not valid, or an attempt was made to change an attribute
303 represented in the termios structure to an unsupported value.
304 .It Bq Er ENOTTY
305 The file associated with the
306 .Fa fd
307 argument to
308 .Fn tcgetattr
309 or
310 .Fn tcsetattr
311 is not a terminal.
312 .El
313 .Sh SEE ALSO
314 .Xr tcsendbreak 3 ,
315 .Xr termios 4
316 .Sh STANDARDS
317 The
318 .Fn cfgetispeed ,
319 .Fn cfsetispeed ,
320 .Fn cfgetospeed ,
321 .Fn cfsetospeed ,
322 .Fn tcgetattr
323 and
324 .Fn tcsetattr
325 functions are expected to be compliant with the
326 .St -p1003.1-88
327 specification.
328 The
329 .Fn cfmakeraw ,
330 .Fn cfmakesane
331 and
332 .Fn cfsetspeed
333 functions,
334 as well as the
335 .Li TCSASOFT
336 option to the
337 .Fn tcsetattr
338 function are extensions to the
339 .St -p1003.1-88
340 specification.