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