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