]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/termios.3
man3/t-v.3: srcfix: Use a single-font-style macro for a single argument
[thirdparty/man-pages.git] / man3 / termios.3
1 .\" Copyright (c) 1993 Michael Haardt
2 .\" (michael@moria.de)
3 .\" Fri Apr 2 11:32:09 MET DST 1993
4 .\"
5 .\" %%%LICENSE_START(GPLv2+_DOC_FULL)
6 .\" This is free documentation; you can redistribute it and/or
7 .\" modify it under the terms of the GNU General Public License as
8 .\" published by the Free Software Foundation; either version 2 of
9 .\" the License, or (at your option) any later version.
10 .\"
11 .\" The GNU General Public License's references to "object code"
12 .\" and "executables" are to be interpreted as the output of any
13 .\" document formatting or typesetting system, including
14 .\" intermediate and printed output.
15 .\"
16 .\" This manual is distributed in the hope that it will be useful,
17 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
18 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 .\" GNU General Public License for more details.
20 .\"
21 .\" You should have received a copy of the GNU General Public
22 .\" License along with this manual; if not, see
23 .\" <http://www.gnu.org/licenses/>.
24 .\" %%%LICENSE_END
25 .\"
26 .\" Modified 1993-07-24 by Rik Faith <faith@cs.unc.edu>
27 .\" Modified 1995-02-25 by Jim Van Zandt <jrv@vanzandt.mv.com>
28 .\" Modified 1995-09-02 by Jim Van Zandt <jrv@vanzandt.mv.com>
29 .\" moved to man3, aeb, 950919
30 .\" Modified 2001-09-22 by Michael Kerrisk <mtk.manpages@gmail.com>
31 .\" Modified 2001-12-17, aeb
32 .\" Modified 2004-10-31, aeb
33 .\" 2006-12-28, mtk:
34 .\" Added .SS headers to give some structure to this page; and a
35 .\" small amount of reordering.
36 .\" Added a section on canonical and noncanonical mode.
37 .\" Enhanced the discussion of "raw" mode for cfmakeraw().
38 .\" Document CMSPAR.
39 .\"
40 .TH TERMIOS 3 2017-09-15 "Linux" "Linux Programmer's Manual"
41 .SH NAME
42 termios, tcgetattr, tcsetattr, tcsendbreak, tcdrain, tcflush, tcflow,
43 cfmakeraw, cfgetospeed, cfgetispeed, cfsetispeed, cfsetospeed, cfsetspeed \-
44 get and set terminal attributes, line control, get and set baud rate
45 .SH SYNOPSIS
46 .nf
47 .B #include <termios.h>
48 .B #include <unistd.h>
49 .PP
50 .BI "int tcgetattr(int " fd ", struct termios *" termios_p );
51 .PP
52 .BI "int tcsetattr(int " fd ", int " optional_actions ,
53 .BI " const struct termios *" termios_p );
54 .PP
55 .BI "int tcsendbreak(int " fd ", int " duration );
56 .PP
57 .BI "int tcdrain(int " fd );
58 .PP
59 .BI "int tcflush(int " fd ", int " queue_selector );
60 .PP
61 .BI "int tcflow(int " fd ", int " action );
62 .PP
63 .BI "void cfmakeraw(struct termios *" termios_p );
64 .PP
65 .BI "speed_t cfgetispeed(const struct termios *" termios_p );
66 .PP
67 .BI "speed_t cfgetospeed(const struct termios *" termios_p );
68 .PP
69 .BI "int cfsetispeed(struct termios *" termios_p ", speed_t " speed );
70 .PP
71 .BI "int cfsetospeed(struct termios *" termios_p ", speed_t " speed );
72 .PP
73 .BI "int cfsetspeed(struct termios *" termios_p ", speed_t " speed );
74 .fi
75 .PP
76 .in -4n
77 Feature Test Macro Requirements for glibc (see
78 .BR feature_test_macros (7)):
79 .in
80 .PP
81 .BR cfsetspeed (),
82 .BR cfmakeraw ():
83 Since glibc 2.19:
84 _DEFAULT_SOURCE
85 Glibc 2.19 and earlier:
86 _BSD_SOURCE
87 .SH DESCRIPTION
88 The termios functions describe a general terminal interface that is
89 provided to control asynchronous communications ports.
90 .SS The termios structure
91 .PP
92 Many of the functions described here have a \fItermios_p\fP argument
93 that is a pointer to a \fItermios\fP structure.
94 This structure contains at least the following members:
95 .PP
96 .in +4n
97 .EX
98 tcflag_t c_iflag; /* input modes */
99 tcflag_t c_oflag; /* output modes */
100 tcflag_t c_cflag; /* control modes */
101 tcflag_t c_lflag; /* local modes */
102 cc_t c_cc[NCCS]; /* special characters */
103 .EE
104 .in
105 .PP
106 The values that may be assigned to these fields are described below.
107 In the case of the first four bit-mask fields,
108 the definitions of some of the associated flags that may be set are
109 exposed only if a specific feature test macro (see
110 .BR feature_test_macros (7))
111 is defined, as noted in brackets ("[]").
112 .PP
113 In the descriptions below, "not in POSIX" means that the
114 value is not specified in POSIX.1-2001,
115 and "XSI" means that the value is specified in POSIX.1-2001
116 as part of the XSI extension.
117 .PP
118 \fIc_iflag\fP flag constants:
119 .TP
120 .B IGNBRK
121 Ignore BREAK condition on input.
122 .TP
123 .B BRKINT
124 If \fBIGNBRK\fP is set, a BREAK is ignored.
125 If it is not set
126 but \fBBRKINT\fP is set, then a BREAK causes the input and output
127 queues to be flushed, and if the terminal is the controlling
128 terminal of a foreground process group, it will cause a
129 \fBSIGINT\fP to be sent to this foreground process group.
130 When neither \fBIGNBRK\fP nor \fBBRKINT\fP are set, a BREAK
131 reads as a null byte (\(aq\\0\(aq), except when \fBPARMRK\fP is set,
132 in which case it reads as the sequence \\377 \\0 \\0.
133 .TP
134 .B IGNPAR
135 Ignore framing errors and parity errors.
136 .TP
137 .B PARMRK
138 If this bit is set, input bytes with parity or framing errors are
139 marked when passed to the program.
140 This bit is meaningful only when
141 \fBINPCK\fP is set and \fBIGNPAR\fP is not set.
142 The way erroneous bytes are marked is with two preceding bytes,
143 \\377 and \\0.
144 Thus, the program actually reads three bytes for one
145 erroneous byte received from the terminal.
146 If a valid byte has the value \\377,
147 and \fBISTRIP\fP (see below) is not set,
148 the program might confuse it with the prefix that marks a
149 parity error.
150 Therefore, a valid byte \\377 is passed to the program as two
151 bytes, \\377 \\377, in this case.
152 .IP
153 If neither \fBIGNPAR\fP nor \fBPARMRK\fP
154 is set, read a character with a parity error or framing error
155 as \\0.
156 .TP
157 .B INPCK
158 Enable input parity checking.
159 .TP
160 .B ISTRIP
161 Strip off eighth bit.
162 .TP
163 .B INLCR
164 Translate NL to CR on input.
165 .TP
166 .B IGNCR
167 Ignore carriage return on input.
168 .TP
169 .B ICRNL
170 Translate carriage return to newline on input (unless \fBIGNCR\fP is set).
171 .TP
172 .B IUCLC
173 (not in POSIX) Map uppercase characters to lowercase on input.
174 .TP
175 .B IXON
176 Enable XON/XOFF flow control on output.
177 .TP
178 .B IXANY
179 (XSI) Typing any character will restart stopped output.
180 (The default is to allow just the START character to restart output.)
181 .TP
182 .B IXOFF
183 Enable XON/XOFF flow control on input.
184 .TP
185 .B IMAXBEL
186 (not in POSIX) Ring bell when input queue is full.
187 Linux does not implement this bit, and acts as if it is always set.
188 .TP
189 .BR IUTF8 " (since Linux 2.6.4)"
190 (not in POSIX) Input is UTF8;
191 this allows character-erase to be correctly performed in cooked mode.
192 .PP
193 .I c_oflag
194 flag constants:
195 .TP
196 .B OPOST
197 Enable implementation-defined output processing.
198 .TP
199 .B OLCUC
200 (not in POSIX) Map lowercase characters to uppercase on output.
201 .TP
202 .B ONLCR
203 (XSI) Map NL to CR-NL on output.
204 .TP
205 .B OCRNL
206 Map CR to NL on output.
207 .TP
208 .B ONOCR
209 Don't output CR at column 0.
210 .TP
211 .B ONLRET
212 Don't output CR.
213 .TP
214 .B OFILL
215 Send fill characters for a delay, rather than using a timed delay.
216 .TP
217 .B OFDEL
218 Fill character is ASCII DEL (0177).
219 If unset, fill character is ASCII NUL (\(aq\\0\(aq).
220 (Not implemented on Linux.)
221 .TP
222 .B NLDLY
223 Newline delay mask.
224 Values are \fBNL0\fP and \fBNL1\fP.
225 [requires
226 .B _BSD_SOURCE
227 or
228 .B _SVID_SOURCE
229 or
230 .BR _XOPEN_SOURCE ]
231 .TP
232 .B CRDLY
233 Carriage return delay mask.
234 Values are \fBCR0\fP, \fBCR1\fP, \fBCR2\fP, or \fBCR3\fP.
235 [requires
236 .B _BSD_SOURCE
237 or
238 .B _SVID_SOURCE
239 or
240 .BR _XOPEN_SOURCE ]
241 .TP
242 .B TABDLY
243 Horizontal tab delay mask.
244 Values are \fBTAB0\fP, \fBTAB1\fP, \fBTAB2\fP, \fBTAB3\fP (or \fBXTABS\fP,
245 but see the
246 .B BUGS
247 section).
248 A value of TAB3, that is, XTABS, expands tabs to spaces
249 (with tab stops every eight columns).
250 [requires
251 .B _BSD_SOURCE
252 or
253 .B _SVID_SOURCE
254 or
255 .BR _XOPEN_SOURCE ]
256 .TP
257 .B BSDLY
258 Backspace delay mask.
259 Values are \fBBS0\fP or \fBBS1\fP.
260 (Has never been implemented.)
261 [requires
262 .B _BSD_SOURCE
263 or
264 .B _SVID_SOURCE
265 or
266 .BR _XOPEN_SOURCE ]
267 .TP
268 .B VTDLY
269 Vertical tab delay mask.
270 Values are \fBVT0\fP or \fBVT1\fP.
271 .TP
272 .B FFDLY
273 Form feed delay mask.
274 Values are \fBFF0\fP or \fBFF1\fP.
275 [requires
276 .B _BSD_SOURCE
277 or
278 .B _SVID_SOURCE
279 or
280 .BR _XOPEN_SOURCE ]
281 .PP
282 \fIc_cflag\fP flag constants:
283 .TP
284 .B CBAUD
285 (not in POSIX) Baud speed mask (4+1 bits).
286 [requires
287 .B _BSD_SOURCE
288 or
289 .BR _SVID_SOURCE ]
290 .TP
291 .B CBAUDEX
292 (not in POSIX) Extra baud speed mask (1 bit), included in
293 .BR CBAUD .
294 [requires
295 .B _BSD_SOURCE
296 or
297 .BR _SVID_SOURCE ]
298 .IP
299 (POSIX says that the baud speed is stored in the
300 .I termios
301 structure without specifying where precisely, and provides
302 .BR cfgetispeed ()
303 and
304 .BR cfsetispeed ()
305 for getting at it.
306 Some systems use bits selected by
307 .B CBAUD
308 in
309 .IR c_cflag ,
310 other systems use separate fields, for example,
311 .I sg_ispeed
312 and
313 .IR sg_ospeed .)
314 .TP
315 .B CSIZE
316 Character size mask.
317 Values are \fBCS5\fP, \fBCS6\fP, \fBCS7\fP, or \fBCS8\fP.
318 .TP
319 .B CSTOPB
320 Set two stop bits, rather than one.
321 .TP
322 .B CREAD
323 Enable receiver.
324 .TP
325 .B PARENB
326 Enable parity generation on output and parity checking for input.
327 .TP
328 .B PARODD
329 If set, then parity for input and output is odd;
330 otherwise even parity is used.
331 .TP
332 .B HUPCL
333 Lower modem control lines after last process closes the device (hang up).
334 .TP
335 .B CLOCAL
336 Ignore modem control lines.
337 .TP
338 .B LOBLK
339 (not in POSIX) Block output from a noncurrent shell layer.
340 For use by \fBshl\fP (shell layers). (Not implemented on Linux.)
341 .TP
342 .B CIBAUD
343 (not in POSIX) Mask for input speeds.
344 The values for the
345 .B CIBAUD
346 bits are
347 the same as the values for the
348 .B CBAUD
349 bits, shifted left
350 .B IBSHIFT
351 bits.
352 [requires
353 .B _BSD_SOURCE
354 or
355 .BR _SVID_SOURCE ]
356 (Not implemented on Linux.)
357 .TP
358 .B CMSPAR
359 (not in POSIX)
360 Use "stick" (mark/space) parity (supported on certain serial
361 devices): if
362 .B PARODD
363 is set, the parity bit is always 1; if
364 .B PARODD
365 is not set, then the parity bit is always 0.
366 [requires
367 .B _BSD_SOURCE
368 or
369 .BR _SVID_SOURCE ]
370 .TP
371 .B CRTSCTS
372 (not in POSIX) Enable RTS/CTS (hardware) flow control.
373 [requires
374 .B _BSD_SOURCE
375 or
376 .BR _SVID_SOURCE ]
377 .PP
378 \fIc_lflag\fP flag constants:
379 .TP
380 .B ISIG
381 When any of the characters INTR, QUIT, SUSP, or DSUSP are received,
382 generate the corresponding signal.
383 .TP
384 .B ICANON
385 Enable canonical mode (described below).
386 .TP
387 .B XCASE
388 (not in POSIX; not supported under Linux)
389 If \fBICANON\fP is also set, terminal is uppercase only.
390 Input is converted to lowercase, except for characters preceded by \\.
391 On output, uppercase characters are preceded by \\ and lowercase
392 characters are converted to uppercase.
393 [requires
394 .B _BSD_SOURCE
395 or
396 .B _SVID_SOURCE
397 or
398 .BR _XOPEN_SOURCE ]
399 .\" glibc is probably now wrong to allow
400 .\" Define
401 .\" .B _XOPEN_SOURCE
402 .\" to expose
403 .\" .BR XCASE .
404 .TP
405 .B ECHO
406 Echo input characters.
407 .TP
408 .B ECHOE
409 If \fBICANON\fP is also set, the ERASE character erases the preceding
410 input character, and WERASE erases the preceding word.
411 .TP
412 .B ECHOK
413 If \fBICANON\fP is also set, the KILL character erases the current line.
414 .TP
415 .B ECHONL
416 If \fBICANON\fP is also set, echo the NL character even if ECHO is not set.
417 .TP
418 .B ECHOCTL
419 (not in POSIX) If \fBECHO\fP is also set,
420 terminal special characters other than
421 TAB, NL, START, and STOP are echoed as \fB^X\fP,
422 where X is the character with
423 ASCII code 0x40 greater than the special character.
424 For example, character
425 0x08 (BS) is echoed as \fB^H\fP.
426 [requires
427 .B _BSD_SOURCE
428 or
429 .BR _SVID_SOURCE ]
430 .TP
431 .B ECHOPRT
432 (not in POSIX) If \fBICANON\fP and \fBECHO\fP are also set, characters
433 are printed as they are being erased.
434 [requires
435 .B _BSD_SOURCE
436 or
437 .BR _SVID_SOURCE ]
438 .TP
439 .B ECHOKE
440 (not in POSIX) If \fBICANON\fP is also set, KILL is echoed by erasing
441 each character on the line, as specified by \fBECHOE\fP and \fBECHOPRT\fP.
442 [requires
443 .B _BSD_SOURCE
444 or
445 .BR _SVID_SOURCE ]
446 .TP
447 .B DEFECHO
448 (not in POSIX) Echo only when a process is reading.
449 (Not implemented on Linux.)
450 .TP
451 .B FLUSHO
452 (not in POSIX; not supported under Linux)
453 Output is being flushed.
454 This flag is toggled by typing
455 the DISCARD character.
456 [requires
457 .B _BSD_SOURCE
458 or
459 .BR _SVID_SOURCE ]
460 .TP
461 .B NOFLSH
462 Disable flushing the input and output queues when generating signals for the
463 INT, QUIT, and SUSP characters.
464 .\" Stevens lets SUSP only flush the input queue
465 .TP
466 .B TOSTOP
467 Send the
468 .B SIGTTOU
469 signal to the process group of a background process
470 which tries to write to its controlling terminal.
471 .TP
472 .B PENDIN
473 (not in POSIX; not supported under Linux)
474 All characters in the input queue are reprinted when
475 the next character is read.
476 .RB ( bash (1)
477 handles typeahead this way.)
478 [requires
479 .B _BSD_SOURCE
480 or
481 .BR _SVID_SOURCE ]
482 .TP
483 .B IEXTEN
484 Enable implementation-defined input processing.
485 This flag, as well as \fBICANON\fP must be enabled for the
486 special characters EOL2, LNEXT, REPRINT, WERASE to be interpreted,
487 and for the \fBIUCLC\fP flag to be effective.
488 .PP
489 The \fIc_cc\fP array defines the terminal special characters.
490 The symbolic indices (initial values) and meaning are:
491 .TP
492 .B VDISCARD
493 (not in POSIX; not supported under Linux; 017, SI, Ctrl-O)
494 Toggle: start/stop discarding pending output.
495 Recognized when
496 .B IEXTEN
497 is set, and then not passed as input.
498 .TP
499 .B VDSUSP
500 (not in POSIX; not supported under Linux; 031, EM, Ctrl-Y)
501 Delayed suspend character (DSUSP):
502 send
503 .B SIGTSTP
504 signal when the character is read by the user program.
505 Recognized when
506 .B IEXTEN
507 and
508 .B ISIG
509 are set, and the system supports
510 job control, and then not passed as input.
511 .TP
512 .B VEOF
513 (004, EOT, Ctrl-D)
514 End-of-file character (EOF).
515 More precisely: this character causes the pending tty buffer to be sent
516 to the waiting user program without waiting for end-of-line.
517 If it is the first character of the line, the
518 .BR read (2)
519 in the user program returns 0, which signifies end-of-file.
520 Recognized when
521 .B ICANON
522 is set, and then not passed as input.
523 .TP
524 .B VEOL
525 (0, NUL)
526 Additional end-of-line character (EOL).
527 Recognized when
528 .B ICANON
529 is set.
530 .TP
531 .B VEOL2
532 (not in POSIX; 0, NUL)
533 Yet another end-of-line character (EOL2).
534 Recognized when
535 .B ICANON
536 is set.
537 .TP
538 .B VERASE
539 (0177, DEL, rubout, or 010, BS, Ctrl-H, or also #)
540 Erase character (ERASE).
541 This erases the previous not-yet-erased character,
542 but does not erase past EOF or beginning-of-line.
543 Recognized when
544 .B ICANON
545 is set, and then not passed as input.
546 .TP
547 .B VINTR
548 (003, ETX, Ctrl-C, or also 0177, DEL, rubout)
549 Interrupt character (INTR).
550 Send a
551 .B SIGINT
552 signal.
553 Recognized when
554 .B ISIG
555 is set, and then not passed as input.
556 .TP
557 .B VKILL
558 (025, NAK, Ctrl-U, or Ctrl-X, or also @)
559 Kill character (KILL).
560 This erases the input since the last EOF or beginning-of-line.
561 Recognized when
562 .B ICANON
563 is set, and then not passed as input.
564 .TP
565 .B VLNEXT
566 (not in POSIX; 026, SYN, Ctrl-V)
567 Literal next (LNEXT).
568 Quotes the next input character, depriving it of
569 a possible special meaning.
570 Recognized when
571 .B IEXTEN
572 is set, and then not passed as input.
573 .TP
574 .B VMIN
575 Minimum number of characters for noncanonical read (MIN).
576 .TP
577 .B VQUIT
578 (034, FS, Ctrl-\e)
579 Quit character (QUIT).
580 Send
581 .B SIGQUIT
582 signal.
583 Recognized when
584 .B ISIG
585 is set, and then not passed as input.
586 .TP
587 .B VREPRINT
588 (not in POSIX; 022, DC2, Ctrl-R)
589 Reprint unread characters (REPRINT).
590 Recognized when
591 .B ICANON
592 and
593 .B IEXTEN
594 are set, and then not passed as input.
595 .TP
596 .B VSTART
597 (021, DC1, Ctrl-Q)
598 Start character (START).
599 Restarts output stopped by the Stop character.
600 Recognized when
601 .B IXON
602 is set, and then not passed as input.
603 .TP
604 .B VSTATUS
605 (not in POSIX; not supported under Linux;
606 status request: 024, DC4, Ctrl-T).
607 Status character (STATUS).
608 Display status information at terminal,
609 including state of foreground process and amount of CPU time it has consumed.
610 Also sends a
611 .B SIGINFO
612 signal (not supported on Linux) to the foreground process group.
613 .TP
614 .B VSTOP
615 (023, DC3, Ctrl-S)
616 Stop character (STOP).
617 Stop output until Start character typed.
618 Recognized when
619 .B IXON
620 is set, and then not passed as input.
621 .TP
622 .B VSUSP
623 (032, SUB, Ctrl-Z)
624 Suspend character (SUSP).
625 Send
626 .B SIGTSTP
627 signal.
628 Recognized when
629 .B ISIG
630 is set, and then not passed as input.
631 .TP
632 .B VSWTCH
633 (not in POSIX; not supported under Linux; 0, NUL)
634 Switch character (SWTCH).
635 Used in System V to switch shells in
636 .IR "shell layers" ,
637 a predecessor to shell job control.
638 .TP
639 .B VTIME
640 Timeout in deciseconds for noncanonical read (TIME).
641 .TP
642 .B VWERASE
643 (not in POSIX; 027, ETB, Ctrl-W)
644 Word erase (WERASE).
645 Recognized when
646 .B ICANON
647 and
648 .B IEXTEN
649 are set, and then not passed as input.
650 .PP
651 An individual terminal special character can be disabled by setting
652 the value of the corresponding
653 .I c_cc
654 element to
655 .BR _POSIX_VDISABLE .
656 .PP
657 The above symbolic subscript values are all different, except that
658 .BR VTIME ,
659 .B VMIN
660 may have the same value as
661 .BR VEOL ,
662 .BR VEOF ,
663 respectively.
664 In noncanonical mode the special character meaning is replaced
665 by the timeout meaning.
666 For an explanation of
667 .B VMIN
668 and
669 .BR VTIME ,
670 see the description of
671 noncanonical mode below.
672 .SS Retrieving and changing terminal settings
673 .PP
674 .BR tcgetattr ()
675 gets the parameters associated with the object referred by \fIfd\fP and
676 stores them in the \fItermios\fP structure referenced by
677 \fItermios_p\fP.
678 This function may be invoked from a background process;
679 however, the terminal attributes may be subsequently changed by a
680 foreground process.
681 .PP
682 .BR tcsetattr ()
683 sets the parameters associated with the terminal (unless support is
684 required from the underlying hardware that is not available) from the
685 \fItermios\fP structure referred to by \fItermios_p\fP.
686 \fIoptional_actions\fP specifies when the changes take effect:
687 .IP \fBTCSANOW\fP
688 the change occurs immediately.
689 .IP \fBTCSADRAIN\fP
690 the change occurs after all output written to
691 .I fd
692 has been transmitted.
693 This option should be used when changing
694 parameters that affect output.
695 .IP \fBTCSAFLUSH\fP
696 the change occurs after all output written to the object referred by
697 .I fd
698 has been transmitted, and all input that has been received but not read
699 will be discarded before the change is made.
700 .SS Canonical and noncanonical mode
701 The setting of the
702 .B ICANON
703 canon flag in
704 .I c_lflag
705 determines whether the terminal is operating in canonical mode
706 .RB ( ICANON
707 set) or
708 noncanonical mode
709 .RB ( ICANON
710 unset).
711 By default,
712 .B ICANON
713 is set.
714 .PP
715 In canonical mode:
716 .IP * 2
717 Input is made available line by line.
718 An input line is available when one of the line delimiters
719 is typed (NL, EOL, EOL2; or EOF at the start of line).
720 Except in the case of EOF, the line delimiter is included
721 in the buffer returned by
722 .BR read (2).
723 .IP * 2
724 Line editing is enabled (ERASE, KILL;
725 and if the
726 .B IEXTEN
727 flag is set: WERASE, REPRINT, LNEXT).
728 A
729 .BR read (2)
730 returns at most one line of input; if the
731 .BR read (2)
732 requested fewer bytes than are available in the current line of input,
733 then only as many bytes as requested are read,
734 and the remaining characters will be available for a future
735 .BR read (2).
736 .IP * 2
737 The maximum line length is 4096 chars
738 (including the terminating newline character);
739 lines longer than 4096 chars are truncated.
740 After 4095 characters, input processing (e.g.,
741 .B ISIG
742 and
743 .B ECHO*
744 processing) continues, but any input data after 4095 characters up to
745 (but not including) any terminating newline is discarded.
746 This ensures that the terminal can always receive
747 more input until at least one line can be read.
748 .PP
749 In noncanonical mode input is available immediately (without
750 the user having to type a line-delimiter character),
751 no input processing is performed,
752 and line editing is disabled.
753 The read buffer will only accept 4095 chars; this provides the
754 necessary space for a newline char if the input mode is switched
755 to canonical.
756 The settings of MIN
757 .RI ( c_cc[VMIN] )
758 and TIME
759 .RI ( c_cc[VTIME] )
760 determine the circumstances in which a
761 .BR read (2)
762 completes; there are four distinct cases:
763 .TP
764 MIN == 0, TIME == 0 (polling read)
765 If data is available,
766 .BR read (2)
767 returns immediately, with the lesser of the number of bytes
768 available, or the number of bytes requested.
769 If no data is available,
770 .BR read (2)
771 returns 0.
772 .TP
773 MIN > 0, TIME == 0 (blocking read)
774 .BR read (2)
775 blocks until MIN bytes are available,
776 and returns up to the number of bytes requested.
777 .TP
778 MIN == 0, TIME > 0 (read with timeout)
779 TIME specifies the limit for a timer in tenths of a second.
780 The timer is started when
781 .BR read (2)
782 is called.
783 .BR read (2)
784 returns either when at least one byte of data is available,
785 or when the timer expires.
786 If the timer expires without any input becoming available,
787 .BR read (2)
788 returns 0.
789 If data is already available at the time of the call to
790 .BR read (2),
791 the call behaves as though the data was received immediately after the call.
792 .TP
793 MIN > 0, TIME > 0 (read with interbyte timeout)
794 TIME specifies the limit for a timer in tenths of a second.
795 Once an initial byte of input becomes available,
796 the timer is restarted after each further byte is received.
797 .BR read (2)
798 returns when any of the following conditions is met:
799 .RS
800 .IP * 3
801 MIN bytes have been received.
802 .IP *
803 The interbyte timer expires.
804 .IP *
805 The number of bytes requested by
806 .BR read (2)
807 has been received.
808 (POSIX does not specify this termination condition,
809 and on some other implementations
810 .\" e.g., Solaris
811 .BR read (2)
812 does not return in this case.)
813 .RE
814 .IP
815 Because the timer is started only after the initial byte
816 becomes available, at least one byte will be read.
817 If data is already available at the time of the call to
818 .BR read (2),
819 the call behaves as though the data was received immediately after the call.
820 .PP
821 POSIX
822 .\" POSIX.1-2008 XBD 11.1.7
823 does not specify whether the setting of the
824 .B O_NONBLOCK
825 file status flag takes precedence over the MIN and TIME settings.
826 If
827 .B O_NONBLOCK
828 is set, a
829 .BR read (2)
830 in noncanonical mode may return immediately,
831 regardless of the setting of MIN or TIME.
832 Furthermore, if no data is available,
833 POSIX permits a
834 .BR read (2)
835 in noncanonical mode to return either 0, or \-1 with
836 .I errno
837 set to
838 .BR EAGAIN .
839 .SS Raw mode
840 .PP
841 .BR cfmakeraw ()
842 sets the terminal to something like the
843 "raw" mode of the old Version 7 terminal driver:
844 input is available character by character,
845 echoing is disabled, and all special processing of
846 terminal input and output characters is disabled.
847 The terminal attributes are set as follows:
848 .PP
849 .in +4n
850 .EX
851 termios_p\->c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP
852 | INLCR | IGNCR | ICRNL | IXON);
853 termios_p\->c_oflag &= ~OPOST;
854 termios_p\->c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
855 termios_p\->c_cflag &= ~(CSIZE | PARENB);
856 termios_p\->c_cflag |= CS8;
857 .EE
858 .in
859 .\"
860 .SS Line control
861 .PP
862 .BR tcsendbreak ()
863 transmits a continuous stream of zero-valued bits for a specific
864 duration, if the terminal is using asynchronous serial data
865 transmission.
866 If \fIduration\fP is zero, it transmits zero-valued bits
867 for at least 0.25 seconds, and not more that 0.5 seconds.
868 If \fIduration\fP is not zero, it sends zero-valued bits for some
869 implementation-defined length of time.
870 .PP
871 If the terminal is not using asynchronous serial data transmission,
872 .BR tcsendbreak ()
873 returns without taking any action.
874 .PP
875 .BR tcdrain ()
876 waits until all output written to the object referred to by
877 .I fd
878 has been transmitted.
879 .PP
880 .BR tcflush ()
881 discards data written to the object referred to by
882 .I fd
883 but not transmitted, or data received but not read, depending on the
884 value of
885 .IR queue_selector :
886 .IP \fBTCIFLUSH\fP
887 flushes data received but not read.
888 .IP \fBTCOFLUSH\fP
889 flushes data written but not transmitted.
890 .IP \fBTCIOFLUSH\fP
891 flushes both data received but not read, and data written but not
892 transmitted.
893 .PP
894 .BR tcflow ()
895 suspends transmission or reception of data on the object referred to by
896 .IR fd ,
897 depending on the value of
898 .IR action :
899 .IP \fBTCOOFF\fP
900 suspends output.
901 .IP \fBTCOON\fP
902 restarts suspended output.
903 .IP \fBTCIOFF\fP
904 transmits a STOP character, which stops the terminal device from
905 transmitting data to the system.
906 .IP \fBTCION\fP
907 transmits a START character, which starts the terminal device
908 transmitting data to the system.
909 .PP
910 The default on open of a terminal file is that neither its input nor its
911 output is suspended.
912 .SS Line speed
913 The baud rate functions are provided for getting and setting the values
914 of the input and output baud rates in the \fItermios\fP structure.
915 The new values do not take effect
916 until
917 .BR tcsetattr ()
918 is successfully called.
919 .PP
920 Setting the speed to \fBB0\fP instructs the modem to "hang up".
921 The actual bit rate corresponding to \fBB38400\fP may be altered with
922 .BR setserial (8).
923 .PP
924 The input and output baud rates are stored in the \fItermios\fP
925 structure.
926 .PP
927 .BR cfgetospeed ()
928 returns the output baud rate stored in the \fItermios\fP structure
929 pointed to by
930 .IR termios_p .
931 .PP
932 .BR cfsetospeed ()
933 sets the output baud rate stored in the \fItermios\fP structure pointed
934 to by \fItermios_p\fP to \fIspeed\fP, which must be one of these constants:
935 .PP
936 .nf
937 .ft B
938 B0
939 B50
940 B75
941 B110
942 B134
943 B150
944 B200
945 B300
946 B600
947 B1200
948 B1800
949 B2400
950 B4800
951 B9600
952 B19200
953 B38400
954 B57600
955 B115200
956 B230400
957 .ft P
958 .fi
959 .PP
960 The zero baud rate, \fBB0\fP,
961 is used to terminate the connection.
962 If B0 is specified, the modem control lines shall no longer be asserted.
963 Normally, this will disconnect the line.
964 \fBCBAUDEX\fP is a mask
965 for the speeds beyond those defined in POSIX.1 (57600 and above).
966 Thus, \fBB57600\fP & \fBCBAUDEX\fP is nonzero.
967 .PP
968 .BR cfgetispeed ()
969 returns the input baud rate stored in the \fItermios\fP structure.
970 .PP
971 .BR cfsetispeed ()
972 sets the input baud rate stored in the \fItermios\fP structure to
973 .IR speed ,
974 which must be specified as one of the \fBBnnn\fP constants listed above for
975 .BR cfsetospeed ().
976 If the input baud rate is set to zero, the input baud rate will be
977 equal to the output baud rate.
978 .PP
979 .BR cfsetspeed ()
980 is a 4.4BSD extension.
981 It takes the same arguments as
982 .BR cfsetispeed (),
983 and sets both input and output speed.
984 .SH RETURN VALUE
985 .PP
986 .BR cfgetispeed ()
987 returns the input baud rate stored in the
988 \fItermios\fP
989 structure.
990 .PP
991 .BR cfgetospeed ()
992 returns the output baud rate stored in the \fItermios\fP structure.
993 .PP
994 All other functions return:
995 .IP 0
996 on success.
997 .IP \-1
998 on failure and set
999 .I errno
1000 to indicate the error.
1001 .PP
1002 Note that
1003 .BR tcsetattr ()
1004 returns success if \fIany\fP of the requested changes could be
1005 successfully carried out.
1006 Therefore, when making multiple changes
1007 it may be necessary to follow this call with a further call to
1008 .BR tcgetattr ()
1009 to check that all changes have been performed successfully.
1010 .SH ATTRIBUTES
1011 For an explanation of the terms used in this section, see
1012 .BR attributes (7).
1013 .nh
1014 .ad l
1015 .TS
1016 allbox;
1017 lbw36 lb lb
1018 l l l.
1019 Interface Attribute Value
1020 T{
1021 .BR tcgetattr (),
1022 .BR tcsetattr (),
1023 .BR tcdrain (),
1024 .BR tcflush (),
1025 .BR tcflow (),
1026 .BR tcsendbreak (),
1027 .BR cfmakeraw (),
1028 .BR cfgetispeed (),
1029 .BR cfgetospeed (),
1030 .BR cfsetispeed (),
1031 .BR cfsetospeed (),
1032 .BR cfsetspeed ()
1033 T} Thread safety MT-Safe
1034 .TE
1035 .\" FIXME: The markings are different from that in the glibc manual.
1036 .\" markings in glibc manual are more detailed:
1037 .\"
1038 .\" tcsendbreak: MT-Unsafe race:tcattr(filedes)/bsd
1039 .\" tcflow: MT-Unsafe race:tcattr(filedes)/bsd
1040 .\"
1041 .\" glibc manual says /bsd indicate the preceding marker only applies
1042 .\" when the underlying kernel is a BSD kernel.
1043 .\" So, it is safety in Linux kernel.
1044 .ad
1045 .hy
1046 .SH CONFORMING TO
1047 .BR tcgetattr (),
1048 .BR tcsetattr (),
1049 .BR tcsendbreak (),
1050 .BR tcdrain (),
1051 .BR tcflush (),
1052 .BR tcflow (),
1053 .BR cfgetispeed (),
1054 .BR cfgetospeed (),
1055 .BR cfsetispeed (),
1056 and
1057 .BR cfsetospeed ()
1058 are specified in POSIX.1-2001.
1059 .PP
1060 .BR cfmakeraw ()
1061 and
1062 .BR cfsetspeed ()
1063 are nonstandard, but available on the BSDs.
1064 .SH NOTES
1065 UNIX\ V7 and several later systems have a list of baud rates
1066 where after the fourteen values B0, ..., B9600 one finds the
1067 two constants EXTA, EXTB ("External A" and "External B").
1068 Many systems extend the list with much higher baud rates.
1069 .PP
1070 The effect of a nonzero \fIduration\fP with
1071 .BR tcsendbreak ()
1072 varies.
1073 SunOS specifies a break of
1074 .I "duration\ *\ N"
1075 seconds, where \fIN\fP is at least 0.25, and not more than 0.5.
1076 Linux, AIX, DU, Tru64 send a break of
1077 .I duration
1078 milliseconds.
1079 FreeBSD and NetBSD and HP-UX and MacOS ignore the value of
1080 .IR duration .
1081 Under Solaris and UnixWare,
1082 .BR tcsendbreak ()
1083 with nonzero
1084 .I duration
1085 behaves like
1086 .BR tcdrain ().
1087 .\" libc4 until 4.7.5, glibc for sysv: EINVAL for duration > 0.
1088 .\" libc4.7.6, libc5, glibc for unix: duration in ms.
1089 .\" glibc for bsd: duration in us
1090 .\" glibc for sunos4: ignore duration
1091 .SH BUGS
1092 .\" kernel 77e5bff1640432f28794a00800955e646dcd7455
1093 .\" glibc 573963e32ffac46d9891970ddebde2ac3212c5c0
1094 On the Alpha architecture before Linux 4.16 (and glibc before 2.28), the
1095 .B XTABS
1096 value was different from
1097 .B TAB3
1098 and it was ignored by the
1099 .B N_TTY
1100 line discipline code of the terminal driver as a result
1101 (because as it wasn't part of the
1102 .B TABDLY
1103 mask).
1104 .SH SEE ALSO
1105 .BR reset (1),
1106 .BR setterm (1),
1107 .BR stty (1),
1108 .BR tput (1),
1109 .BR tset (1),
1110 .BR tty (1),
1111 .BR ioctl_console (2),
1112 .BR ioctl_tty (2),
1113 .BR setserial (8)