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