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