]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/termios.4
THIS BRANCH IS OBSOLETE, PLEASE READ:
[FreeBSD/FreeBSD.git] / share / man / man4 / termios.4
1 .\" Copyright (c) 1991, 1992, 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 .\" 3. 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 .\"     @(#)termios.4   8.4 (Berkeley) 4/19/94
29 .\" $FreeBSD$
30 .\"
31 .Dd June 28, 2020
32 .Dt TERMIOS 4
33 .Os
34 .Sh NAME
35 .Nm termios
36 .Nd general terminal line discipline
37 .Sh SYNOPSIS
38 .In termios.h
39 .Sh DESCRIPTION
40 This describes a general terminal line discipline that is
41 supported on tty asynchronous communication ports.
42 .Ss Opening a Terminal Device File
43 When a terminal file is opened, it normally causes the process to wait
44 until a connection is established.
45 For most hardware, the presence
46 of a connection is indicated by the assertion of the hardware
47 .Dv CARRIER
48 line.
49 If the termios structure associated with the terminal file has the
50 .Dv CLOCAL
51 flag set in the cflag, or if the
52 .Dv O_NONBLOCK
53 flag is set
54 in the
55 .Xr open 2
56 call, then the open will succeed even without
57 a connection being present.
58 In practice, applications
59 seldom open these files; they are opened by special programs, such
60 as
61 .Xr getty 8 ,
62 and become
63 an application's standard input, output, and error files.
64 .Ss Job Control in a Nutshell
65 Every process is associated with a particular process group and session.
66 The grouping is hierarchical: every member of a particular process group is a
67 member of the same session.
68 This structuring is used in managing groups
69 of related processes for purposes of
70 .\" .Gw "job control" ;
71 .Em "job control" ;
72 that is, the
73 ability from the keyboard (or from program control) to simultaneously
74 stop or restart
75 a complex command (a command composed of one or more related
76 processes).
77 The grouping into process groups allows delivering
78 of signals that stop or start the group as a whole, along with
79 arbitrating which process group has access to the single controlling
80 terminal.
81 The grouping at a higher layer into sessions is to restrict
82 the job control related signals and system calls to within processes
83 resulting from a particular instance of a
84 .Dq login .
85 Typically, a session
86 is created when a user logs in, and the login terminal is setup
87 to be the controlling terminal; all processes spawned from that
88 login shell are in the same session, and inherit the controlling
89 terminal.
90 .Pp
91 A job control shell
92 operating interactively (that is, reading commands from a terminal)
93 normally groups related processes together by placing them into the
94 same process group.
95 A set of processes in the same process group
96 is collectively referred to as a
97 .Dq job .
98 When the foreground process
99 group of the terminal is the same as the process group of a particular
100 job, that job is said to be in the
101 .Dq foreground .
102 When the process group of the terminal is different from the process group of
103 a job (but is still the controlling terminal), that job is said
104 to be in the
105 .Dq background .
106 Normally the
107 shell reads a command and starts the job that implements that
108 command.
109 If the command is to be started in the foreground (typical), it
110 sets the process group of the terminal to the process group
111 of the started job, waits for the job to complete, and then
112 sets the process group of the terminal back to its own process
113 group (it puts itself into the foreground).
114 If the job is to
115 be started in the background (as denoted by the shell operator "&"),
116 it never changes the process group of the terminal and does not
117 wait for the job to complete (that is, it immediately attempts to read the next
118 command).
119 If the job is started in the foreground, the user may
120 type a key (usually
121 .Ql \&^Z )
122 which generates the terminal stop signal
123 .Pq Dv SIGTSTP
124 and has the effect of stopping the entire job.
125 The shell will notice that the job stopped, and will resume running after
126 placing itself in the foreground.
127 The shell also has commands for placing stopped jobs in the background,
128 and for placing stopped or background jobs into the foreground.
129 .Ss Orphaned Process Groups
130 An orphaned process group is a process group that has no process
131 whose parent is in a different process group, yet is in the same
132 session.
133 Conceptually it means a process group that does not have
134 a parent that could do anything if it were to be stopped.
135 For example,
136 the initial login shell is typically in an orphaned process group.
137 Orphaned process groups are immune to keyboard generated stop
138 signals and job control signals resulting from reads or writes to the
139 controlling terminal.
140 .Ss The Controlling Terminal
141 A terminal may belong to a process as its controlling terminal.
142 Each
143 process of a session that has a controlling terminal has the same
144 controlling terminal.
145 A terminal may be the controlling terminal for at
146 most one session.
147 The controlling terminal for a session is allocated by
148 the session leader by issuing the
149 .Dv TIOCSCTTY
150 ioctl.
151 A controlling terminal
152 is never acquired by merely opening a terminal device file.
153 When a controlling terminal becomes
154 associated with a session, its foreground process group is set to
155 the process group of the session leader.
156 .Pp
157 The controlling terminal is inherited by a child process during a
158 .Xr fork 2
159 function call.
160 A process relinquishes its controlling terminal when it
161 creates a new session with the
162 .Xr setsid 2
163 function; other processes
164 remaining in the old session that had this terminal as their controlling
165 terminal continue to have it.
166 A process does not relinquish its
167 controlling terminal simply by closing all of its file descriptors
168 associated with the controlling terminal if other processes continue to
169 have it open.
170 .Pp
171 When a controlling process terminates, the controlling terminal is
172 disassociated from the current session, allowing it to be acquired by a
173 new session leader.
174 Subsequent access to the terminal by other processes
175 in the earlier session will be denied, with attempts to access the
176 terminal treated as if modem disconnect had been sensed.
177 .Ss Terminal Access Control
178 If a process is in the foreground process group of its controlling
179 terminal, read operations are allowed.
180 Any attempts by a process
181 in a background process group to read from its controlling terminal
182 causes a
183 .Dv SIGTTIN
184 signal to be sent to
185 the process's group
186 unless one of the
187 following special cases apply: if the reading process is ignoring or
188 blocking the
189 .Dv SIGTTIN
190 signal, or if the process group of the reading
191 process is orphaned, the
192 .Xr read 2
193 returns -1 with
194 .Va errno
195 set to
196 .Er EIO
197 and no
198 signal is sent.
199 The default action of the
200 .Dv SIGTTIN
201 signal is to stop the
202 process to which it is sent.
203 .Pp
204 If a process is in the foreground process group of its controlling
205 terminal, write operations are allowed.
206 Attempts by a process in a background process group to write to its
207 controlling terminal will cause the process group to be sent a
208 .Dv SIGTTOU
209 signal unless one of the following special cases apply: if
210 .Dv TOSTOP
211 is not
212 set, or if
213 .Dv TOSTOP
214 is set and the process is ignoring or blocking the
215 .Dv SIGTTOU
216 signal, the process is allowed to write to the terminal and the
217 .Dv SIGTTOU
218 signal is not sent.
219 If
220 .Dv TOSTOP
221 is set, and the process group of
222 the writing process is orphaned, and the writing process is not ignoring
223 or blocking
224 .Dv SIGTTOU ,
225 the
226 .Xr write 2
227 returns -1 with
228 errno set to
229 .Er EIO
230 and no signal is sent.
231 .Pp
232 Certain calls that set terminal parameters are treated in the same
233 fashion as write, except that
234 .Dv TOSTOP
235 is ignored; that is, the effect is
236 identical to that of terminal writes when
237 .Dv TOSTOP
238 is set.
239 .Ss Input Processing and Reading Data
240 A terminal device associated with a terminal device file may operate in
241 full-duplex mode, so that data may arrive even while output is occurring.
242 Each terminal device file has associated with it an input queue, into
243 which incoming data is stored by the system before being read by a
244 process.
245 The system imposes a limit,
246 .Pf \&{ Dv MAX_INPUT Ns \&} ,
247 on the number of
248 bytes that may be stored in the input queue.
249 The behavior of the system
250 when this limit is exceeded depends on the setting of the
251 .Dv IMAXBEL
252 flag in the termios
253 .Fa c_iflag .
254 If this flag is set, the terminal
255 is sent an
256 .Tn ASCII
257 .Dv BEL
258 character each time a character is received
259 while the input queue is full.
260 Otherwise, the input queue is flushed upon receiving the character.
261 .Pp
262 Two general kinds of input processing are available, determined by
263 whether the terminal device file is in canonical mode or noncanonical
264 mode.
265 Additionally,
266 input characters are processed according to the
267 .Fa c_iflag
268 and
269 .Fa c_lflag
270 fields.
271 Such processing can include echoing, which
272 in general means transmitting input characters immediately back to the
273 terminal when they are received from the terminal.
274 This is useful for terminals that can operate in full-duplex mode.
275 .Pp
276 The manner in which data is provided to a process reading from a terminal
277 device file is dependent on whether the terminal device file is in
278 canonical or noncanonical mode.
279 .Pp
280 Another dependency is whether the
281 .Dv O_NONBLOCK
282 flag is set by
283 .Xr open 2
284 or
285 .Xr fcntl 2 .
286 If the
287 .Dv O_NONBLOCK
288 flag is clear, then the read request is
289 blocked until data is available or a signal has been received.
290 If the
291 .Dv O_NONBLOCK
292 flag is set, then the read request is completed, without
293 blocking, in one of three ways:
294 .Bl -enum -offset indent
295 .It
296 If there is enough data available to satisfy the entire request,
297 and the read completes successfully the number of
298 bytes read is returned.
299 .It
300 If there is not enough data available to satisfy the entire
301 request, and the read completes successfully, having read as
302 much data as possible, the number of bytes read is returned.
303 .It
304 If there is no data available, the read returns -1, with
305 errno set to
306 .Er EAGAIN .
307 .El
308 .Pp
309 When data is available depends on whether the input processing mode is
310 canonical or noncanonical.
311 .Ss Canonical Mode Input Processing
312 In canonical mode input processing, terminal input is processed in units
313 of lines.
314 A line is delimited by a newline
315 .Ql \&\en
316 character, an end-of-file
317 .Pq Dv EOF
318 character, or an end-of-line
319 .Pq Dv EOL
320 character.
321 See the
322 .Sx "Special Characters"
323 section for
324 more information on
325 .Dv EOF
326 and
327 .Dv EOL .
328 This means that a read request will
329 not return until an entire line has been typed, or a signal has been
330 received.
331 Also, no matter how many bytes are requested in the read call,
332 at most one line is returned.
333 It is not, however, necessary to
334 read a whole line at once; any number of bytes, even one, may be
335 requested in a read without losing information.
336 .Pp
337 .Pf \&{ Dv MAX_CANON Ns \&}
338 is a limit on the
339 number of bytes in a line.
340 The behavior of the system when this limit is
341 exceeded is the same as when the input queue limit
342 .Pf \&{ Dv MAX_INPUT Ns \&} ,
343 is exceeded.
344 .Pp
345 Erase and kill processing occur when either of two special characters,
346 the
347 .Dv ERASE
348 and
349 .Dv KILL
350 characters (see the
351 .Sx "Special Characters"
352 section), is received.
353 This processing affects data in the input queue that has not yet been
354 delimited by a newline
355 .Dv NL ,
356 .Dv EOF ,
357 or
358 .Dv EOL
359 character.
360 This un-delimited
361 data makes up the current line.
362 The
363 .Dv ERASE
364 character deletes the last
365 character in the current line, if there is any.
366 The
367 .Dv KILL
368 character
369 deletes all data in the current line, if there is any.
370 The
371 .Dv ERASE
372 and
373 .Dv KILL
374 characters have no effect if there is no data in the current line.
375 The
376 .Dv ERASE
377 and
378 .Dv KILL
379 characters themselves are not placed in the input
380 queue.
381 .Ss Noncanonical Mode Input Processing
382 In noncanonical mode input processing, input bytes are not assembled into
383 lines, and erase and kill processing does not occur.
384 The values of the
385 .Dv VMIN
386 and
387 .Dv VTIME
388 members of the
389 .Fa c_cc
390 array are used to determine how to
391 process the bytes received.
392 .Pp
393 .Dv MIN
394 represents the minimum number of bytes that should be received when
395 the
396 .Xr read 2
397 function successfully returns.
398 .Dv TIME
399 is a timer of 0.1 second
400 granularity that is used to time out bursty and short term data
401 transmissions.
402 If
403 .Dv MIN
404 is greater than
405 .Dv \&{ Dv MAX_INPUT Ns \&} ,
406 the response to the
407 request is undefined.
408 The four possible values for
409 .Dv MIN
410 and
411 .Dv TIME
412 and
413 their interactions are described below.
414 .Ss "Case A: MIN > 0, TIME > 0"
415 In this case
416 .Dv TIME
417 serves as an inter-byte timer and is activated after
418 the first byte is received.
419 Since it is an inter-byte timer, it is reset
420 after a byte is received.
421 The interaction between
422 .Dv MIN
423 and
424 .Dv TIME
425 is as
426 follows: as soon as one byte is received, the inter-byte timer is
427 started.
428 If
429 .Dv MIN
430 bytes are received before the inter-byte timer expires
431 (remember that the timer is reset upon receipt of each byte), the read is
432 satisfied.
433 If the timer expires before
434 .Dv MIN
435 bytes are received, the
436 characters received to that point are returned to the user.
437 Note that if
438 .Dv TIME
439 expires at least one byte is returned because the timer would
440 not have been enabled unless a byte was received.
441 In this case
442 .Pf \&( Dv MIN
443 > 0,
444 .Dv TIME
445 > 0) the read blocks until the
446 .Dv MIN
447 and
448 .Dv TIME
449 mechanisms are
450 activated by the receipt of the first byte, or a signal is received.
451 If data is in the buffer at the time of the
452 .Fn read ,
453 the result is as
454 if data had been received immediately after the
455 .Fn read .
456 .Ss "Case B: MIN > 0, TIME = 0"
457 In this case, since the value of
458 .Dv TIME
459 is zero, the timer plays no role
460 and only
461 .Dv MIN
462 is significant.
463 A pending read is not satisfied until
464 .Dv MIN
465 bytes are received (i.e., the pending read blocks until
466 .Dv MIN
467 bytes
468 are received), or a signal is received.
469 A program that uses this case to read record-based terminal
470 .Dv I/O
471 may block indefinitely in the read
472 operation.
473 .Ss "Case C: MIN = 0, TIME > 0"
474 In this case, since
475 .Dv MIN
476 = 0,
477 .Dv TIME
478 no longer represents an inter-byte
479 timer.
480 It now serves as a read timer that is activated as soon as the
481 read function is processed.
482 A read is satisfied as soon as a single
483 byte is received or the read timer expires.
484 Note that in this case if the timer expires, no bytes are returned.
485 If the timer does not
486 expire, the only way the read can be satisfied is if a byte is received.
487 In this case the read will not block indefinitely waiting for a byte; if
488 no byte is received within
489 .Dv TIME Ns *0.1
490 seconds after the read is initiated,
491 the read returns a value of zero, having read no data.
492 If data is
493 in the buffer at the time of the read, the timer is started as if
494 data had been received immediately after the read.
495 .Ss Case D: MIN = 0, TIME = 0
496 The minimum of either the number of bytes requested or the number of
497 bytes currently available is returned without waiting for more
498 bytes to be input.
499 If no characters are available, read returns a
500 value of zero, having read no data.
501 .Ss Writing Data and Output Processing
502 When a process writes one or more bytes to a terminal device file, they
503 are processed according to the
504 .Fa c_oflag
505 field (see the
506 .Sx "Output Modes"
507 section).
508 The
509 implementation may provide a buffering mechanism; as such, when a call to
510 .Fn write
511 completes, all of the bytes written have been scheduled for
512 transmission to the device, but the transmission will not necessarily
513 have been completed.
514 .\" See also .Sx "6.4.2" for the effects of
515 .\" .Dv O_NONBLOCK
516 .\" on write.
517 .Ss Special Characters
518 Certain characters have special functions on input or output or both.
519 These functions are summarized as follows:
520 .Bl -tag -width indent
521 .It Dv INTR
522 Special character on input and is recognized if the
523 .Dv ISIG
524 flag (see the
525 .Sx "Local Modes"
526 section) is enabled.
527 Generates a
528 .Dv SIGINT
529 signal which is sent to all processes in the foreground
530 process group for which the terminal is the controlling
531 terminal.
532 If
533 .Dv ISIG
534 is set, the
535 .Dv INTR
536 character is
537 discarded when processed.
538 .It Dv QUIT
539 Special character on input and is recognized if the
540 .Dv ISIG
541 flag is enabled.
542 Generates a
543 .Dv SIGQUIT
544 signal which is
545 sent to all processes in the foreground process group
546 for which the terminal is the controlling terminal.
547 If
548 .Dv ISIG
549 is set, the
550 .Dv QUIT
551 character is discarded when
552 processed.
553 .It Dv ERASE
554 Special character on input and is recognized if the
555 .Dv ICANON
556 flag is set.
557 Erases the last character in the
558 current line; see
559 .Sx "Canonical Mode Input Processing" .
560 It does not erase beyond
561 the start of a line, as delimited by an
562 .Dv NL ,
563 .Dv EOF ,
564 or
565 .Dv EOL
566 character.
567 If
568 .Dv ICANON
569 is set, the
570 .Dv ERASE
571 character is
572 discarded when processed.
573 .It Dv KILL
574 Special character on input and is recognized if the
575 .Dv ICANON
576 flag is set.
577 Deletes the entire line, as
578 delimited by a
579 .Dv NL ,
580 .Dv EOF ,
581 or
582 .Dv EOL
583 character.
584 If
585 .Dv ICANON
586 is set, the
587 .Dv KILL
588 character is discarded when processed.
589 .It Dv EOF
590 Special character on input and is recognized if the
591 .Dv ICANON
592 flag is set.
593 When received, all the bytes
594 waiting to be read are immediately passed to the
595 process, without waiting for a newline, and the
596 .Dv EOF
597 is discarded.
598 Thus, if there are no bytes waiting (that is, the
599 .Dv EOF
600 occurred at the beginning of a line), a byte
601 count of zero is returned from the
602 .Fn read ,
603 representing an end-of-file indication.
604 If
605 .Dv ICANON
606 is
607 set, the
608 .Dv EOF
609 character is discarded when processed.
610 .It Dv NL
611 Special character on input and is recognized if the
612 .Dv ICANON
613 flag is set.
614 It is the line delimiter
615 .Ql \&\en .
616 .It Dv EOL
617 Special character on input and is recognized if the
618 .Dv ICANON
619 flag is set.
620 Is an additional line delimiter, like
621 .Dv NL .
622 .It Dv SUSP
623 If the
624 .Dv ISIG
625 flag is enabled, receipt of the
626 .Dv SUSP
627 character causes a
628 .Dv SIGTSTP
629 signal to be sent to all processes in the
630 foreground process group for which the terminal is the
631 controlling terminal, and the
632 .Dv SUSP
633 character is
634 discarded when processed.
635 .It Dv STOP
636 Special character on both input and output and is
637 recognized if the
638 .Dv IXON
639 (output control) or
640 .Dv IXOFF
641 (input
642 control) flag is set.
643 Can be used to temporarily suspend output.
644 It is useful with fast terminals to
645 prevent output from disappearing before it can be read.
646 If
647 .Dv IXON
648 is set, the
649 .Dv STOP
650 character is discarded when
651 processed.
652 .It Dv START
653 Special character on both input and output and is
654 recognized if the
655 .Dv IXON
656 (output control) or
657 .Dv IXOFF
658 (input
659 control) flag is set.
660 Can be used to resume output that has been suspended by a
661 .Dv STOP
662 character.
663 If
664 .Dv IXON
665 is set, the
666 .Dv START
667 character is discarded when processed.
668 .It Dv CR
669 Special character on input and is recognized if the
670 .Dv ICANON
671 flag is set; it is the
672 .Ql \&\er ,
673 as denoted in the
674 .Tn \&C
675 Standard {2}.
676 When
677 .Dv ICANON
678 and
679 .Dv ICRNL
680 are set and
681 .Dv IGNCR
682 is not set, this character is translated into a
683 .Dv NL ,
684 and
685 has the same effect as a
686 .Dv NL
687 character.
688 .El
689 .Pp
690 The following special characters are extensions defined by this
691 system and are not a part of
692 .St -p1003.1
693 termios.
694 .Bl -tag -width indent
695 .It Dv EOL2
696 Secondary
697 .Dv EOL
698 character.
699 Same function as
700 .Dv EOL .
701 .It Dv WERASE
702 Special character on input and is recognized if the
703 .Dv ICANON
704 flag is set.
705 Erases the last word in the current line according to one of two algorithms.
706 If the
707 .Dv ALTWERASE
708 flag is not set, first any preceding whitespace is
709 erased, and then the maximal sequence of non-whitespace
710 characters.
711 If
712 .Dv ALTWERASE
713 is set, first any preceding
714 whitespace is erased, and then the maximal sequence
715 of alphabetic/underscores or non alphabetic/underscores.
716 As a special case in this second algorithm, the first previous
717 non-whitespace character is skipped in determining
718 whether the preceding word is a sequence of
719 alphabetic/underscores.
720 This sounds confusing but turns out to be quite practical.
721 .It Dv REPRINT
722 Special character on input and is recognized if the
723 .Dv ICANON
724 flag is set.
725 Causes the current input edit line to be retyped.
726 .It Dv DSUSP
727 Has similar actions to the
728 .Dv SUSP
729 character, except that
730 the
731 .Dv SIGTSTP
732 signal is delivered when one of the processes
733 in the foreground process group issues a
734 .Fn read
735 to the
736 controlling terminal.
737 .It Dv LNEXT
738 Special character on input and is recognized if the
739 .Dv IEXTEN
740 flag is set.
741 Receipt of this character causes the next character to be taken literally.
742 .It Dv DISCARD
743 Special character on input and is recognized if the
744 .Dv IEXTEN
745 flag is set.
746 Receipt of this character toggles the flushing of terminal output.
747 .It Dv STATUS
748 Special character on input and is recognized if the
749 .Dv ICANON
750 flag is set.
751 Receipt of this character causes a
752 .Dv SIGINFO
753 signal to be sent to the foreground process group of the
754 terminal.
755 Also, if the
756 .Dv NOKERNINFO
757 flag is not set, it
758 causes the kernel to write a status message to the terminal
759 that displays the current load average, the name of the
760 command in the foreground, its process ID, the symbolic
761 wait channel, the number of user and system seconds used,
762 the percentage of cpu the process is getting, and the resident
763 set size of the process.
764 .Pp
765 In case the
766 .Xr sysctl 8
767 variable
768 .Va kern.tty_info_kstacks
769 is set to a non-zero value, the running thread's kernel stack is
770 written to the terminal (e.g., for debugging purposes).
771 .El
772 .Pp
773 The
774 .Dv NL
775 and
776 .Dv CR
777 characters cannot be changed.
778 The values for all the remaining characters can be set and are
779 described later in the document under
780 Special Control Characters.
781 .Pp
782 Special
783 character functions associated with changeable special control characters
784 can be disabled individually by setting their value to
785 .Dv {_POSIX_VDISABLE} ;
786 see
787 .Sx "Special Control Characters" .
788 .Pp
789 If two or more special characters have the same value, the function
790 performed when that character is received is undefined.
791 .Ss Modem Disconnect
792 If a modem disconnect is detected by the terminal interface for a
793 controlling terminal, and if
794 .Dv CLOCAL
795 is not set in the
796 .Fa c_cflag
797 field for
798 the terminal, the
799 .Dv SIGHUP
800 signal is sent to the controlling
801 process associated with the terminal.
802 Unless other arrangements have
803 been made, this causes the controlling process to terminate.
804 Any subsequent call to the
805 .Fn read
806 function returns the value zero,
807 indicating end of file.
808 Thus, processes that read a terminal
809 file and test for end-of-file can terminate appropriately after a
810 disconnect.
811 .\" If the
812 .\" .Er EIO
813 .\" condition specified in 6.1.1.4 that applies
814 .\" when the implementation supports job control also exists, it is
815 .\" unspecified whether the
816 .\" .Dv EOF
817 .\" condition or the
818 .\" .Pf [ Dv EIO
819 .\" ] is returned.
820 Any
821 subsequent
822 .Fn write
823 to the terminal device returns -1, with
824 .Va errno
825 set to
826 .Er EIO ,
827 until the device is closed.
828 .Sh General Terminal Interface
829 .Ss Closing a Terminal Device File
830 The last process to close a terminal device file causes any output
831 to be sent to the device and any input to be discarded.
832 Then, if
833 .Dv HUPCL
834 is set in the control modes, and the communications port supports a
835 disconnect function, the terminal device performs a disconnect.
836 .Ss Parameters That Can Be Set
837 Routines that need to control certain terminal
838 .Tn I/O
839 characteristics
840 do so by using the termios structure as defined in the header
841 .In termios.h .
842 This structure contains minimally four scalar elements of bit flags
843 and one array of special characters.
844 The scalar flag elements are named:
845 .Fa c_iflag ,
846 .Fa c_oflag ,
847 .Fa c_cflag ,
848 and
849 .Fa c_lflag .
850 The character array is named
851 .Fa c_cc ,
852 and its maximum index is
853 .Dv NCCS .
854 .Ss Input Modes
855 Values of the
856 .Fa c_iflag
857 field describe the basic
858 terminal input control, and are composed of
859 following masks:
860 .Pp
861 .Bl -tag -width IMAXBEL -offset indent -compact
862 .It Dv IGNBRK
863 /* ignore BREAK condition */
864 .It Dv BRKINT
865 /* map BREAK to SIGINTR */
866 .It Dv IGNPAR
867 /* ignore (discard) parity errors */
868 .It Dv PARMRK
869 /* mark parity and framing errors */
870 .It Dv INPCK
871 /* enable checking of parity errors */
872 .It Dv ISTRIP
873 /* strip 8th bit off chars */
874 .It Dv INLCR
875 /* map NL into CR */
876 .It Dv IGNCR
877 /* ignore CR */
878 .It Dv ICRNL
879 /* map CR to NL (ala CRMOD) */
880 .It Dv IXON
881 /* enable output flow control */
882 .It Dv IXOFF
883 /* enable input flow control */
884 .It Dv IXANY
885 /* any char will restart after stop */
886 .It Dv IMAXBEL
887 /* ring bell on input queue full */
888 .El
889 .Pp
890 In the context of asynchronous serial data transmission, a break
891 condition is defined as a sequence of zero-valued bits that continues for
892 more than the time to send one byte.
893 The entire sequence of zero-valued
894 bits is interpreted as a single break condition, even if it continues for
895 a time equivalent to more than one byte.
896 In contexts other than
897 asynchronous serial data transmission the definition of a break condition
898 is implementation defined.
899 .Pp
900 If
901 .Dv IGNBRK
902 is set, a break condition detected on input is ignored, that
903 is, not put on the input queue and therefore not read by any process.
904 If
905 .Dv IGNBRK
906 is not set and
907 .Dv BRKINT
908 is set, the break condition flushes the
909 input and output queues and if the terminal is the controlling terminal
910 of a foreground process group, the break condition generates a
911 single
912 .Dv SIGINT
913 signal to that foreground process group.
914 If neither
915 .Dv IGNBRK
916 nor
917 .Dv BRKINT
918 is set, a break condition is read as a single
919 .Ql \&\e0 ,
920 or if
921 .Dv PARMRK
922 is set, as
923 .Ql \&\e377 ,
924 .Ql \&\e0 ,
925 .Ql \&\e0 .
926 .Pp
927 If
928 .Dv IGNPAR
929 is set, a byte with a framing or parity error (other than
930 break) is ignored.
931 .Pp
932 If
933 .Dv PARMRK
934 is set, and
935 .Dv IGNPAR
936 is not set, a byte with a framing or parity
937 error (other than break) is given to the application as the
938 three-character sequence
939 .Ql \&\e377 ,
940 .Ql \&\e0 ,
941 X, where
942 .Ql \&\e377 ,
943 .Ql \&\e0
944 is a two-character
945 flag preceding each sequence and X is the data of the character received
946 in error.
947 To avoid ambiguity in this case, if
948 .Dv ISTRIP
949 is not set, a valid
950 character of
951 .Ql \&\e377
952 is given to the application as
953 .Ql \&\e377 ,
954 .Ql \&\e377 .
955 If
956 neither
957 .Dv PARMRK
958 nor
959 .Dv IGNPAR
960 is set, a framing or parity error (other than
961 break) is given to the application as a single character
962 .Ql \&\e0 .
963 .Pp
964 If
965 .Dv INPCK
966 is set, input parity checking is enabled.
967 If
968 .Dv INPCK
969 is not set,
970 input parity checking is disabled, allowing output parity generation
971 without input parity errors.
972 Note that whether input parity checking is
973 enabled or disabled is independent of whether parity detection is enabled
974 or disabled (see
975 .Sx "Control Modes" ) .
976 If parity detection is enabled but input
977 parity checking is disabled, the hardware to which the terminal is
978 connected recognizes the parity bit, but the terminal special file
979 does not check whether this bit is set correctly or not.
980 .Pp
981 If
982 .Dv ISTRIP
983 is set, valid input bytes are first stripped to seven bits,
984 otherwise all eight bits are processed.
985 .Pp
986 If
987 .Dv INLCR
988 is set, a received
989 .Dv NL
990 character is translated into a
991 .Dv CR
992 character.
993 If
994 .Dv IGNCR
995 is set, a received
996 .Dv CR
997 character is ignored (not
998 read).
999 If
1000 .Dv IGNCR
1001 is not set and
1002 .Dv ICRNL
1003 is set, a received
1004 .Dv CR
1005 character is
1006 translated into a
1007 .Dv NL
1008 character.
1009 .Pp
1010 If
1011 .Dv IXON
1012 is set, start/stop output control is enabled.
1013 A received
1014 .Dv STOP
1015 character suspends output and a received
1016 .Dv START
1017 character
1018 restarts output.
1019 If
1020 .Dv IXANY
1021 is also set, then any character may
1022 restart output.
1023 When
1024 .Dv IXON
1025 is set,
1026 .Dv START
1027 and
1028 .Dv STOP
1029 characters are not
1030 read, but merely perform flow control functions.
1031 When
1032 .Dv IXON
1033 is not set,
1034 the
1035 .Dv START
1036 and
1037 .Dv STOP
1038 characters are read.
1039 .Pp
1040 If
1041 .Dv IXOFF
1042 is set, start/stop input control is enabled.
1043 The system shall transmit one or more
1044 .Dv STOP
1045 characters, which are intended to cause the
1046 terminal device to stop transmitting data, as needed to prevent the input
1047 queue from overflowing and causing the undefined behavior described in
1048 .Sx "Input Processing and Reading Data" ,
1049 and shall transmit one or more
1050 .Dv START
1051 characters, which are
1052 intended to cause the terminal device to resume transmitting data, as
1053 soon as the device can continue transmitting data without risk of
1054 overflowing the input queue.
1055 The precise conditions under which
1056 .Dv STOP
1057 and
1058 .Dv START
1059 characters are transmitted are implementation defined.
1060 .Pp
1061 If
1062 .Dv IMAXBEL
1063 is set and the input queue is full, subsequent input shall cause an
1064 .Tn ASCII
1065 .Dv BEL
1066 character to be transmitted to
1067 the output queue.
1068 .Pp
1069 The initial input control value after
1070 .Fn open
1071 is implementation defined.
1072 .Ss Output Modes
1073 Values of the
1074 .Fa c_oflag
1075 field describe the basic terminal output control,
1076 and are composed of the following masks:
1077 .Pp
1078 .Bl -tag -width ONOEOT -offset indent -compact
1079 .It Dv OPOST
1080 /* enable following output processing */
1081 .It Dv ONLCR
1082 /* map NL to CR-NL (ala
1083 .Dv CRMOD )
1084 */
1085 .It Dv OCRNL
1086 /* map CR to NL */
1087 .It Dv TABDLY
1088 /* tab delay mask */
1089 .It Dv TAB0
1090 /* no tab delay and expansion */
1091 .It Dv TAB3
1092 /* expand tabs to spaces */
1093 .It Dv ONOEOT
1094 /* discard
1095 .Dv EOT Ns 's
1096 .Ql \&^D
1097 on output) */
1098 .It Dv ONOCR
1099 /* do not transmit CRs on column 0 */
1100 .It Dv ONLRET
1101 /* on the terminal NL performs the CR function */
1102 .El
1103 .Pp
1104 If
1105 .Dv OPOST
1106 is set, the remaining flag masks are interpreted as follows;
1107 otherwise characters are transmitted without change.
1108 .Pp
1109 If
1110 .Dv ONLCR
1111 is set, newlines are translated to carriage return, linefeeds.
1112 .Pp
1113 If
1114 .Dv OCRNL
1115 is set, carriage returns are translated to newlines.
1116 .Pp
1117 The
1118 .Dv TABDLY
1119 bits specify the tab delay.
1120 The
1121 .Fa c_oflag
1122 is masked with
1123 .Dv TABDLY
1124 and compared with the
1125 values
1126 .Dv TAB0
1127 or
1128 .Dv TAB3 .
1129 If
1130 .Dv TAB3
1131 is set, tabs are expanded to the appropriate number of
1132 spaces (assuming 8 column tab stops).
1133 .Pp
1134 If
1135 .Dv ONOEOT
1136 is set,
1137 .Tn ASCII
1138 .Dv EOT Ns 's
1139 are discarded on output.
1140 .Pp
1141 If
1142 .Dv ONOCR
1143 is set, no CR character is transmitted when at column 0 (first position).
1144 .Pp
1145 If
1146 .Dv ONLRET
1147 is set, the NL character is assumed to do the carriage-return function;
1148 the column pointer will be set to 0.
1149 .Ss Control Modes
1150 Values of the
1151 .Fa c_cflag
1152 field describe the basic
1153 terminal hardware control, and are composed of the
1154 following masks.
1155 Not all values
1156 specified are supported by all hardware.
1157 .Pp
1158 .Bl -tag -width CRTSXIFLOW -offset indent -compact
1159 .It Dv CSIZE
1160 /* character size mask */
1161 .It Dv CS5
1162 /* 5 bits (pseudo) */
1163 .It Dv CS6
1164 /* 6 bits */
1165 .It Dv CS7
1166 /* 7 bits */
1167 .It Dv CS8
1168 /* 8 bits */
1169 .It Dv CSTOPB
1170 /* send 2 stop bits */
1171 .It Dv CREAD
1172 /* enable receiver */
1173 .It Dv PARENB
1174 /* parity enable */
1175 .It Dv PARODD
1176 /* odd parity, else even */
1177 .It Dv HUPCL
1178 /* hang up on last close */
1179 .It Dv CLOCAL
1180 /* ignore modem status lines */
1181 .It Dv CCTS_OFLOW
1182 /*
1183 .Dv CTS
1184 flow control of output */
1185 .It Dv CRTSCTS
1186 /* same as
1187 .Dv CCTS_OFLOW
1188 */
1189 .It Dv CRTS_IFLOW
1190 /* RTS flow control of input */
1191 .It Dv MDMBUF
1192 /* flow control output via Carrier */
1193 .It Dv CNO_RTSDTR
1194 /* Do not assert RTS or DTR automatically */
1195 .El
1196 .Pp
1197 The
1198 .Dv CSIZE
1199 bits specify the byte size in bits for both transmission and
1200 reception.
1201 The
1202 .Fa c_cflag
1203 is masked with
1204 .Dv CSIZE
1205 and compared with the
1206 values
1207 .Dv CS5 ,
1208 .Dv CS6 ,
1209 .Dv CS7 ,
1210 or
1211 .Dv CS8 .
1212 This size does not include the parity bit, if any.
1213 If
1214 .Dv CSTOPB
1215 is set, two stop bits are used, otherwise one stop bit.
1216 For example, at 110 baud, two stop bits are normally used.
1217 .Pp
1218 If
1219 .Dv CREAD
1220 is set, the receiver is enabled.
1221 Otherwise, no character is received.
1222 Not all hardware supports this bit.
1223 In fact, this flag is pretty silly and if it were not part of the
1224 .Nm
1225 specification
1226 it would be omitted.
1227 .Pp
1228 If
1229 .Dv PARENB
1230 is set, parity generation and detection are enabled and a parity
1231 bit is added to each character.
1232 If parity is enabled,
1233 .Dv PARODD
1234 specifies
1235 odd parity if set, otherwise even parity is used.
1236 .Pp
1237 If
1238 .Dv HUPCL
1239 is set, the modem control lines for the port are lowered
1240 when the last process with the port open closes the port or the process
1241 terminates.
1242 The modem connection is broken.
1243 .Pp
1244 If
1245 .Dv CLOCAL
1246 is set, a connection does not depend on the state of the modem
1247 status lines.
1248 If
1249 .Dv CLOCAL
1250 is clear, the modem status lines are
1251 monitored.
1252 .Pp
1253 Under normal circumstances, a call to the
1254 .Fn open
1255 function waits for
1256 the modem connection to complete.
1257 However, if the
1258 .Dv O_NONBLOCK
1259 flag is set
1260 or if
1261 .Dv CLOCAL
1262 has been set, the
1263 .Fn open
1264 function returns
1265 immediately without waiting for the connection.
1266 .Pp
1267 The
1268 .Dv CCTS_OFLOW
1269 .Pf ( Dv CRTSCTS )
1270 flag is currently unused.
1271 .Pp
1272 If
1273 .Dv MDMBUF
1274 is set then output flow control is controlled by the state
1275 of Carrier Detect.
1276 .Pp
1277 If
1278 .Dv CNO_RTSDTR
1279 is set then the RTS and DTR lines will not be asserted when the device
1280 is opened.
1281 As a result, this flag is only useful on initial-state devices.
1282 .Pp
1283 If the object for which the control modes are set is not an asynchronous
1284 serial connection, some of the modes may be ignored; for example, if an
1285 attempt is made to set the baud rate on a network connection to a
1286 terminal on another host, the baud rate may or may not be set on the
1287 connection between that terminal and the machine it is directly connected
1288 to.
1289 .Ss Local Modes
1290 Values of the
1291 .Fa c_lflag
1292 field describe the control of
1293 various functions, and are composed of the following
1294 masks.
1295 .Pp
1296 .Bl -tag -width NOKERNINFO -offset indent -compact
1297 .It Dv ECHOKE
1298 /* visual erase for line kill */
1299 .It Dv ECHOE
1300 /* visually erase chars */
1301 .It Dv ECHO
1302 /* enable echoing */
1303 .It Dv ECHONL
1304 /* echo
1305 .Dv NL
1306 even if
1307 .Dv ECHO
1308 is off */
1309 .It Dv ECHOPRT
1310 /* visual erase mode for hardcopy */
1311 .It Dv ECHOCTL
1312 /* echo control chars as ^(Char) */
1313 .It Dv ISIG
1314 /* enable signals
1315 .Dv INTR ,
1316 .Dv QUIT ,
1317 .Dv [D]SUSP
1318 */
1319 .It Dv ICANON
1320 /* canonicalize input lines */
1321 .It Dv ALTWERASE
1322 /* use alternate
1323 .Dv WERASE
1324 algorithm */
1325 .It Dv IEXTEN
1326 /* enable
1327 .Dv DISCARD
1328 and
1329 .Dv LNEXT
1330 */
1331 .It Dv EXTPROC
1332 /* external processing */
1333 .It Dv TOSTOP
1334 /* stop background jobs from output */
1335 .It Dv FLUSHO
1336 /* output being flushed (state) */
1337 .It Dv NOKERNINFO
1338 /* no kernel output from
1339 .Dv VSTATUS
1340 */
1341 .It Dv PENDIN
1342 /* XXX retype pending input (state) */
1343 .It Dv NOFLSH
1344 /* don't flush after interrupt */
1345 .El
1346 .Pp
1347 If
1348 .Dv ECHO
1349 is set, input characters are echoed back to the terminal.
1350 If
1351 .Dv ECHO
1352 is not set, input characters are not echoed.
1353 .Pp
1354 If
1355 .Dv ECHOE
1356 and
1357 .Dv ICANON
1358 are set, the
1359 .Dv ERASE
1360 character causes the terminal
1361 to erase the last character in the current line from the display, if
1362 possible.
1363 If there is no character to erase, an implementation may echo
1364 an indication that this was the case or do nothing.
1365 .Pp
1366 If
1367 .Dv ECHOK
1368 and
1369 .Dv ICANON
1370 are set, the
1371 .Dv KILL
1372 character causes
1373 the current line to be discarded and the system echoes the
1374 .Ql \&\en
1375 character after the
1376 .Dv KILL
1377 character.
1378 .Pp
1379 If
1380 .Dv ECHOKE
1381 and
1382 .Dv ICANON
1383 are set, the
1384 .Dv KILL
1385 character causes
1386 the current line to be discarded and the system causes
1387 the terminal
1388 to erase the line from the display.
1389 .Pp
1390 If
1391 .Dv ECHOPRT
1392 and
1393 .Dv ICANON
1394 are set, the system assumes
1395 that the display is a printing device and prints a
1396 backslash and the erased characters when processing
1397 .Dv ERASE
1398 characters, followed by a forward slash.
1399 .Pp
1400 If
1401 .Dv ECHOCTL
1402 is set, the system echoes control characters
1403 in a visible fashion using a caret followed by the control character.
1404 .Pp
1405 If
1406 .Dv ALTWERASE
1407 is set, the system uses an alternative algorithm
1408 for determining what constitutes a word when processing
1409 .Dv WERASE
1410 characters (see
1411 .Dv WERASE ) .
1412 .Pp
1413 If
1414 .Dv ECHONL
1415 and
1416 .Dv ICANON
1417 are set, the
1418 .Ql \&\en
1419 character echoes even if
1420 .Dv ECHO
1421 is not set.
1422 .Pp
1423 If
1424 .Dv ICANON
1425 is set, canonical processing is enabled.
1426 This enables the
1427 erase and kill edit functions, and the assembly of input characters into
1428 lines delimited by
1429 .Dv NL ,
1430 .Dv EOF ,
1431 and
1432 .Dv EOL ,
1433 as described in
1434 .Sx "Canonical Mode Input Processing" .
1435 .Pp
1436 If
1437 .Dv ICANON
1438 is not set, read requests are satisfied directly from the input
1439 queue.
1440 A read is not satisfied until at least
1441 .Dv MIN
1442 bytes have been
1443 received or the timeout value
1444 .Dv TIME
1445 expired between bytes.
1446 The time value
1447 represents tenths of seconds.
1448 See
1449 .Sx "Noncanonical Mode Input Processing"
1450 for more details.
1451 .Pp
1452 If
1453 .Dv ISIG
1454 is set, each input character is checked against the special
1455 control characters
1456 .Dv INTR ,
1457 .Dv QUIT ,
1458 and
1459 .Dv SUSP
1460 (job control only).
1461 If an input
1462 character matches one of these control characters, the function
1463 associated with that character is performed.
1464 If
1465 .Dv ISIG
1466 is not set, no
1467 checking is done.
1468 Thus these special input functions are possible only
1469 if
1470 .Dv ISIG
1471 is set.
1472 .Pp
1473 If
1474 .Dv IEXTEN
1475 is set, implementation-defined functions are recognized
1476 from the input data.
1477 How
1478 .Dv IEXTEN
1479 being set
1480 interacts with
1481 .Dv ICANON ,
1482 .Dv ISIG ,
1483 .Dv IXON ,
1484 or
1485 .Dv IXOFF
1486 is implementation defined.
1487 If
1488 .Dv IEXTEN
1489 is not set, then
1490 implementation-defined functions are not recognized, and the
1491 corresponding input characters are not processed as described for
1492 .Dv ICANON ,
1493 .Dv ISIG ,
1494 .Dv IXON ,
1495 and
1496 .Dv IXOFF .
1497 .Pp
1498 If
1499 .Dv NOFLSH
1500 is set, the normal flush of the input and output queues
1501 associated with the
1502 .Dv INTR ,
1503 .Dv QUIT ,
1504 and
1505 .Dv SUSP
1506 characters
1507 are not be done.
1508 .Pp
1509 If
1510 .Dv TOSTOP
1511 is set, the signal
1512 .Dv SIGTTOU
1513 is sent to the process group of a process that tries to write to
1514 its controlling terminal if it is not in the foreground process group for
1515 that terminal.
1516 This signal, by default, stops the members of the process group.
1517 Otherwise, the output generated by that process is output to the
1518 current output stream.
1519 Processes that are blocking or ignoring
1520 .Dv SIGTTOU
1521 signals are excepted and allowed to produce output and the
1522 .Dv SIGTTOU
1523 signal
1524 is not sent.
1525 .Pp
1526 If
1527 .Dv NOKERNINFO
1528 is set, the kernel does not produce a status message
1529 when processing
1530 .Dv STATUS
1531 characters (see
1532 .Dv STATUS ) .
1533 .Ss Special Control Characters
1534 The special control characters values are defined by the array
1535 .Fa c_cc .
1536 This table lists the array index, the corresponding special character,
1537 and the system default value.
1538 For an accurate list of
1539 the system defaults, consult the header file
1540 .In sys/ttydefaults.h .
1541 .Pp
1542 .Bl -column "Index Name" "Special Character" -offset indent -compact
1543 .It Em "Index Name      Special Character       Default Value"
1544 .It Dv VEOF Ta EOF Ta \&^D
1545 .It Dv VEOL Ta EOL Ta _POSIX_VDISABLE
1546 .It Dv VEOL2 Ta EOL2 Ta _POSIX_VDISABLE
1547 .It Dv VERASE Ta ERASE Ta \&^? Ql \&\e177
1548 .It Dv VWERASE Ta WERASE Ta \&^W
1549 .It Dv VKILL Ta KILL Ta \&^U
1550 .It Dv VREPRINT Ta REPRINT Ta \&^R
1551 .It Dv VINTR Ta INTR Ta \&^C
1552 .It Dv VQUIT Ta QUIT Ta \&^\e\e Ql \&\e34
1553 .It Dv VSUSP Ta SUSP Ta \&^Z
1554 .It Dv VDSUSP Ta DSUSP Ta \&^Y
1555 .It Dv VSTART Ta START Ta \&^Q
1556 .It Dv VSTOP Ta STOP Ta \&^S
1557 .It Dv VLNEXT Ta LNEXT Ta \&^V
1558 .It Dv VDISCARD Ta DISCARD Ta \&^O
1559 .It Dv VMIN Ta --- Ta \&1
1560 .It Dv VTIME Ta --- Ta \&0
1561 .It Dv VSTATUS Ta STATUS Ta \&^T
1562 .El
1563 .Pp
1564 If the
1565 value of one of the changeable special control characters (see
1566 .Sx "Special Characters" )
1567 is
1568 .Dv {_POSIX_VDISABLE} ,
1569 that function is disabled; that is, no input
1570 data is recognized as the disabled special character.
1571 If
1572 .Dv ICANON
1573 is
1574 not set, the value of
1575 .Dv {_POSIX_VDISABLE}
1576 has no special meaning for the
1577 .Dv VMIN
1578 and
1579 .Dv VTIME
1580 entries of the
1581 .Fa c_cc
1582 array.
1583 .Pp
1584 The initial values of the flags and control characters
1585 after
1586 .Fn open
1587 is set according to
1588 the values in the header
1589 .In sys/ttydefaults.h .
1590 .Sh SEE ALSO
1591 .Xr stty 1 ,
1592 .Xr tcgetsid 3 ,
1593 .Xr tcsendbreak 3 ,
1594 .Xr tcsetattr 3 ,
1595 .Xr tcsetsid 3 ,
1596 .Xr tty 4 ,
1597 .Xr stack 9