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