]>
git.saurik.com Git - apple/xnu.git/blob - bsd/kern/tty.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
22 /* Copyright (c) 1997 Apple Computer, Inc. All Rights Reserved */
24 * Copyright (c) 1982, 1986, 1990, 1991, 1993
25 * The Regents of the University of California. All rights reserved.
26 * (c) UNIX System Laboratories, Inc.
27 * All or some portions of this file are derived from material licensed
28 * to the University of California by American Telephone and Telegraph
29 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
30 * the permission of UNIX System Laboratories, Inc.
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
40 * 3. All advertising materials mentioning features or use of this software
41 * must display the following acknowledgement:
42 * This product includes software developed by the University of
43 * California, Berkeley and its contributors.
44 * 4. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 * @(#)tty.c 8.8 (Berkeley) 1/21/94
64 * o Fix races for sending the start char in ttyflush().
65 * o Handle inter-byte timeout for "MIN > 0, TIME > 0" in ttyselect().
66 * With luck, there will be MIN chars before select() returns().
67 * o Handle CLOCAL consistently for ptys. Perhaps disallow setting it.
68 * o Don't allow input in TS_ZOMBIE case. It would be visible through
70 * o Do the new sio locking stuff here and use it to avoid special
73 * o Move EXTPROC and/or PENDIN to t_state?
74 * o Wrap most of ttioctl in spltty/splx.
75 * o Implement TIOCNOTTY or remove it from <sys/ioctl.h>.
76 * o Send STOP if IXOFF is toggled off while TS_TBLOCK is set.
77 * o Don't allow certain termios flags to affect disciplines other
78 * than TTYDISC. Cancel their effects before switch disciplines
79 * and ignore them if they are set while we are in another
81 * o Handle c_ispeed = 0 to c_ispeed = c_ospeed conversion here instead
82 * of in drivers and fix drivers that write to tp->t_termios.
83 * o Check for TS_CARR_ON being set while everything is closed and not
84 * waiting for carrier. TS_CARR_ON isn't cleared if nothing is open,
85 * so it would live until the next open even if carrier drops.
86 * o Restore TS_WOPEN since it is useful in pstat. It must be cleared
87 * only when _all_ openers leave open().
93 #include "opt_uconsole.h"
96 #include <sys/param.h>
98 #include <sys/systm.h>
100 #include <sys/ioctl.h>
101 #include <sys/proc.h>
102 #include <sys/file.h>
103 #include <sys/conf.h>
104 #include <sys/dkstat.h>
106 #include <sys/kernel.h>
107 #include <sys/vnode.h>
108 #include <sys/syslog.h>
109 #include <sys/signalvar.h>
111 #include <sys/resourcevar.h>
113 #include <sys/malloc.h>
115 #include <sys/snoop.h>
120 #include <vm/vm_param.h>
121 #include <vm/vm_prot.h>
124 #include <vm/vm_map.h>
126 #include <dev/kmreg_com.h>
127 #include <machine/cons.h>
128 #include <machine/spl.h>
130 #include <machdep/machine/pmap.h>
135 static int proc_compare
__P((struct proc
*p1
, struct proc
*p2
));
137 static int ttnread
__P((struct tty
*tp
));
138 static void ttyecho
__P((int c
, struct tty
*tp
));
139 static int ttyoutput
__P((int c
, register struct tty
*tp
));
140 static void ttypend
__P((struct tty
*tp
));
141 static void ttyretype
__P((struct tty
*tp
));
142 static void ttyrub
__P((int c
, struct tty
*tp
));
143 static void ttyrubo
__P((struct tty
*tp
, int cnt
));
144 static void ttystop
__P((struct tty
*tp
, int rw
));
145 static void ttyunblock
__P((struct tty
*tp
));
146 static int ttywflush
__P((struct tty
*tp
));
149 * Table with character classes and parity. The 8th bit indicates parity,
150 * the 7th bit indicates the character is an alphameric or underscore (for
151 * ALTWERASE), and the low 6 bits indicate delay type. If the low 6 bits
152 * are 0 then the character needs no special processing on output; classes
153 * other than 0 might be translated or (not currently) require delays.
155 #define E 0x00 /* Even parity. */
156 #define O 0x80 /* Odd parity. */
157 #define PARITY(c) (char_type[c] & O)
159 #define ALPHA 0x40 /* Alpha or underscore. */
160 #define ISALPHA(c) (char_type[(c) & TTY_CHARMASK] & ALPHA)
162 #define CCLASSMASK 0x3f
163 #define CCLASS(c) (char_type[c] & CCLASSMASK)
168 #define NA ORDINARY | ALPHA
174 static u_char
const char_type
[] = {
175 E
|CC
, O
|CC
, O
|CC
, E
|CC
, O
|CC
, E
|CC
, E
|CC
, O
|CC
, /* nul - bel */
176 O
|BS
, E
|TB
, E
|NL
, O
|CC
, E
|VT
, O
|CR
, O
|CC
, E
|CC
, /* bs - si */
177 O
|CC
, E
|CC
, E
|CC
, O
|CC
, E
|CC
, O
|CC
, O
|CC
, E
|CC
, /* dle - etb */
178 E
|CC
, O
|CC
, O
|CC
, E
|CC
, O
|CC
, E
|CC
, E
|CC
, O
|CC
, /* can - us */
179 O
|NO
, E
|NO
, E
|NO
, O
|NO
, E
|NO
, O
|NO
, O
|NO
, E
|NO
, /* sp - ' */
180 E
|NO
, O
|NO
, O
|NO
, E
|NO
, O
|NO
, E
|NO
, E
|NO
, O
|NO
, /* ( - / */
181 E
|NA
, O
|NA
, O
|NA
, E
|NA
, O
|NA
, E
|NA
, E
|NA
, O
|NA
, /* 0 - 7 */
182 O
|NA
, E
|NA
, E
|NO
, O
|NO
, E
|NO
, O
|NO
, O
|NO
, E
|NO
, /* 8 - ? */
183 O
|NO
, E
|NA
, E
|NA
, O
|NA
, E
|NA
, O
|NA
, O
|NA
, E
|NA
, /* @ - G */
184 E
|NA
, O
|NA
, O
|NA
, E
|NA
, O
|NA
, E
|NA
, E
|NA
, O
|NA
, /* H - O */
185 E
|NA
, O
|NA
, O
|NA
, E
|NA
, O
|NA
, E
|NA
, E
|NA
, O
|NA
, /* P - W */
186 O
|NA
, E
|NA
, E
|NA
, O
|NO
, E
|NO
, O
|NO
, O
|NO
, O
|NA
, /* X - _ */
187 E
|NO
, O
|NA
, O
|NA
, E
|NA
, O
|NA
, E
|NA
, E
|NA
, O
|NA
, /* ` - g */
188 O
|NA
, E
|NA
, E
|NA
, O
|NA
, E
|NA
, O
|NA
, O
|NA
, E
|NA
, /* h - o */
189 O
|NA
, E
|NA
, E
|NA
, O
|NA
, E
|NA
, O
|NA
, O
|NA
, E
|NA
, /* p - w */
190 E
|NA
, O
|NA
, O
|NA
, E
|NO
, O
|NO
, E
|NO
, E
|NO
, O
|CC
, /* x - del */
192 * Meta chars; should be settable per character set;
193 * for now, treat them all as normal characters.
195 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
196 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
197 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
198 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
199 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
200 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
201 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
202 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
203 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
204 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
205 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
206 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
207 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
208 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
209 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
210 NA
, NA
, NA
, NA
, NA
, NA
, NA
, NA
,
221 /* Macros to clear/set/test flags. */
222 #define SET(t, f) (t) |= (f)
223 #define CLR(t, f) (t) &= ~(f)
224 #define ISSET(t, f) ((t) & (f))
227 * Input control starts when we would not be able to fit the maximum
228 * contents of the ping-pong buffers and finishes when we would be able
229 * to fit that much plus 1/8 more.
231 #define I_HIGH_WATER (TTYHOG - 2 * 256) /* XXX */
232 #define I_LOW_WATER ((TTYHOG - 2 * 256) * 7 / 8) /* XXX */
234 #undef MAX_INPUT /* XXX wrong in <sys/syslimits.h> */
235 #define MAX_INPUT TTYHOG
238 * Initial open of tty, or (re)entry to standard tty line discipline.
243 register struct tty
*tp
;
249 if (!ISSET(tp
->t_state
, TS_ISOPEN
)) {
250 SET(tp
->t_state
, TS_ISOPEN
);
251 if (ISSET(tp
->t_cflag
, CLOCAL
)) {
252 SET(tp
->t_state
, TS_CONNECTED
); }
253 bzero(&tp
->t_winsize
, sizeof(tp
->t_winsize
));
258 * Initialize or restore a cblock allocation policy suitable for
259 * the standard line discipline.
261 clist_alloc_cblocks(&tp
->t_canq
, TTYHOG
, 512);
262 clist_alloc_cblocks(&tp
->t_outq
, TTMAXHIWAT
+ OBUFSIZ
+ 100,
263 TTMAXHIWAT
+ OBUFSIZ
+ 100);
264 clist_alloc_cblocks(&tp
->t_rawq
, TTYHOG
, TTYHOG
);
272 * Handle close() on a tty line: flush and set to initial state,
273 * bumping generation number so that pending read/write calls
274 * can detect recycling of the tty.
275 * XXX our caller should have done `spltty(); l_close(); ttyclose();'
276 * and l_close() should have flushed, but we repeat the spltty() and
277 * the flush in case there are buggy callers.
281 register struct tty
*tp
;
294 * Closing current console tty; disable printing of console
295 * messages at bottom-level driver.
297 (*cdevsw
[major(tp
->t_dev
)].d_ioctl
)
298 (tp
->t_dev
, KMIOCDISABLCONS
, NULL
, 0, current_proc());
302 ttyflush(tp
, FREAD
| FWRITE
);
304 clist_free_cblocks(&tp
->t_canq
);
305 clist_free_cblocks(&tp
->t_outq
);
306 clist_free_cblocks(&tp
->t_rawq
);
310 if (ISSET(tp
->t_state
, TS_SNOOP
) && tp
->t_sc
!= NULL
)
311 snpdown((struct snoop
*)tp
->t_sc
);
315 tp
->t_line
= TTYDISC
;
317 tp
->t_session
= NULL
;
320 selthreadclear(&tp
->t_wsel
);
321 selthreadclear(&tp
->t_rsel
);
327 #define FLUSHQ(q) { \
329 ndflush(q, (q)->c_cc); \
332 /* Is 'c' a line delimiter ("break" character)? */
333 #define TTBREAKC(c, lflag) \
334 ((c) == '\n' || (((c) == cc[VEOF] || \
335 (c) == cc[VEOL] || ((c) == cc[VEOL2] && lflag & IEXTEN)) && \
336 (c) != _POSIX_VDISABLE))
339 * Process input of a single character received on a tty.
344 register struct tty
*tp
;
346 register tcflag_t iflag
, lflag
;
349 boolean_t funnel_state
;
351 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
354 * If input is pending take it first.
357 if (ISSET(lflag
, PENDIN
))
362 if (ISSET(lflag
, ICANON
)) {
372 * Block further input iff:
373 * current input > threshold AND input is available to user program
374 * AND input flow control is enabled and not yet invoked.
375 * The 3 is slop for PARMRK.
378 if (tp
->t_rawq
.c_cc
+ tp
->t_canq
.c_cc
> I_HIGH_WATER
- 3 &&
379 (!ISSET(lflag
, ICANON
) || tp
->t_canq
.c_cc
!= 0) &&
380 (ISSET(tp
->t_cflag
, CRTS_IFLOW
) || ISSET(iflag
, IXOFF
)) &&
381 !ISSET(tp
->t_state
, TS_TBLOCK
))
384 /* Handle exceptional conditions (break, parity, framing). */
386 err
= (ISSET(c
, TTY_ERRORMASK
));
388 CLR(c
, TTY_ERRORMASK
);
389 if (ISSET(err
, TTY_BI
)) {
390 if (ISSET(iflag
, IGNBRK
)) {
391 thread_funnel_set(kernel_flock
, funnel_state
);
394 if (ISSET(iflag
, BRKINT
)) {
395 ttyflush(tp
, FREAD
| FWRITE
);
396 pgsignal(tp
->t_pgrp
, SIGINT
, 1);
399 if (ISSET(iflag
, PARMRK
))
401 } else if ((ISSET(err
, TTY_PE
) && ISSET(iflag
, INPCK
))
402 || ISSET(err
, TTY_FE
)) {
403 if (ISSET(iflag
, IGNPAR
)) {
404 thread_funnel_set(kernel_flock
, funnel_state
);
407 else if (ISSET(iflag
, PARMRK
)) {
409 if (tp
->t_rawq
.c_cc
+ tp
->t_canq
.c_cc
>
412 (void)putc(0377 | TTY_QUOTE
, &tp
->t_rawq
);
413 (void)putc(0 | TTY_QUOTE
, &tp
->t_rawq
);
414 (void)putc(c
| TTY_QUOTE
, &tp
->t_rawq
);
421 if (!ISSET(tp
->t_state
, TS_TYPEN
) && ISSET(iflag
, ISTRIP
))
423 if (!ISSET(lflag
, EXTPROC
)) {
425 * Check for literal nexting very first
427 if (ISSET(tp
->t_state
, TS_LNCH
)) {
429 CLR(tp
->t_state
, TS_LNCH
);
432 * Scan for special characters. This code
433 * is really just a big case statement with
434 * non-constant cases. The bottom of the
435 * case statement is labeled ``endcase'', so goto
436 * it after a case match, or similar.
440 * Control chars which aren't controlled
441 * by ICANON, ISIG, or IXON.
443 if (ISSET(lflag
, IEXTEN
)) {
444 if (CCEQ(cc
[VLNEXT
], c
)) {
445 if (ISSET(lflag
, ECHO
)) {
446 if (ISSET(lflag
, ECHOE
)) {
447 (void)ttyoutput('^', tp
);
448 (void)ttyoutput('\b', tp
);
452 SET(tp
->t_state
, TS_LNCH
);
455 if (CCEQ(cc
[VDISCARD
], c
)) {
456 if (ISSET(lflag
, FLUSHO
))
457 CLR(tp
->t_lflag
, FLUSHO
);
459 ttyflush(tp
, FWRITE
);
461 if (tp
->t_rawq
.c_cc
+ tp
->t_canq
.c_cc
)
463 SET(tp
->t_lflag
, FLUSHO
);
471 if (ISSET(lflag
, ISIG
)) {
472 if (CCEQ(cc
[VINTR
], c
) || CCEQ(cc
[VQUIT
], c
)) {
473 if (!ISSET(lflag
, NOFLSH
))
474 ttyflush(tp
, FREAD
| FWRITE
);
477 CCEQ(cc
[VINTR
], c
) ? SIGINT
: SIGQUIT
, 1);
480 if (CCEQ(cc
[VSUSP
], c
)) {
481 if (!ISSET(lflag
, NOFLSH
))
484 pgsignal(tp
->t_pgrp
, SIGTSTP
, 1);
489 * Handle start/stop characters.
491 if (ISSET(iflag
, IXON
)) {
492 if (CCEQ(cc
[VSTOP
], c
)) {
493 if (!ISSET(tp
->t_state
, TS_TTSTOP
)) {
494 SET(tp
->t_state
, TS_TTSTOP
);
496 thread_funnel_set(kernel_flock
, funnel_state
);
499 if (!CCEQ(cc
[VSTART
], c
)) {
500 thread_funnel_set(kernel_flock
, funnel_state
);
504 * if VSTART == VSTOP then toggle
508 if (CCEQ(cc
[VSTART
], c
))
512 * IGNCR, ICRNL, & INLCR
515 if (ISSET(iflag
, IGNCR
)) {
516 thread_funnel_set(kernel_flock
, funnel_state
);
519 else if (ISSET(iflag
, ICRNL
))
521 } else if (c
== '\n' && ISSET(iflag
, INLCR
))
524 if (!ISSET(tp
->t_lflag
, EXTPROC
) && ISSET(lflag
, ICANON
)) {
526 * From here on down canonical mode character
527 * processing takes place.
532 if (CCEQ(cc
[VERASE
], c
)) {
534 ttyrub(unputc(&tp
->t_rawq
), tp
);
540 if (CCEQ(cc
[VKILL
], c
)) {
541 if (ISSET(lflag
, ECHOKE
) &&
542 tp
->t_rawq
.c_cc
== tp
->t_rocount
&&
543 !ISSET(lflag
, ECHOPRT
))
544 while (tp
->t_rawq
.c_cc
)
545 ttyrub(unputc(&tp
->t_rawq
), tp
);
548 if (ISSET(lflag
, ECHOK
) ||
549 ISSET(lflag
, ECHOKE
))
554 CLR(tp
->t_state
, TS_LOCAL
);
560 if (CCEQ(cc
[VWERASE
], c
) && ISSET(lflag
, IEXTEN
)) {
566 while ((c
= unputc(&tp
->t_rawq
)) == ' ' || c
== '\t')
571 * erase last char of word and remember the
572 * next chars type (for ALTWERASE)
575 c
= unputc(&tp
->t_rawq
);
578 if (c
== ' ' || c
== '\t') {
579 (void)putc(c
, &tp
->t_rawq
);
588 c
= unputc(&tp
->t_rawq
);
591 } while (c
!= ' ' && c
!= '\t' &&
592 (!ISSET(lflag
, ALTWERASE
) || ISALPHA(c
) == ctype
));
593 (void)putc(c
, &tp
->t_rawq
);
599 if (CCEQ(cc
[VREPRINT
], c
) && ISSET(lflag
, IEXTEN
)) {
604 * ^T - kernel info and generate SIGINFO
606 if (CCEQ(cc
[VSTATUS
], c
) && ISSET(lflag
, IEXTEN
)) {
607 if (ISSET(lflag
, ISIG
))
608 pgsignal(tp
->t_pgrp
, SIGINFO
, 1);
609 if (!ISSET(lflag
, NOKERNINFO
))
615 * Check for input buffer overflow
617 if (tp
->t_rawq
.c_cc
+ tp
->t_canq
.c_cc
>= MAX_INPUT
) {
619 if (ISSET(iflag
, IMAXBEL
)) {
620 if (tp
->t_outq
.c_cc
< tp
->t_hiwat
)
621 (void)ttyoutput(CTRL('g'), tp
);
626 if ( c
== 0377 && ISSET(iflag
, PARMRK
) && !ISSET(iflag
, ISTRIP
)
627 && ISSET(iflag
, IGNBRK
|IGNPAR
) != (IGNBRK
|IGNPAR
))
628 (void)putc(0377 | TTY_QUOTE
, &tp
->t_rawq
);
631 * Put data char in q for user and
632 * wakeup on seeing a line delimiter.
634 if (putc(c
, &tp
->t_rawq
) >= 0) {
635 if (!ISSET(lflag
, ICANON
)) {
640 if (TTBREAKC(c
, lflag
)) {
642 catq(&tp
->t_rawq
, &tp
->t_canq
);
644 } else if (tp
->t_rocount
++ == 0)
645 tp
->t_rocol
= tp
->t_column
;
646 if (ISSET(tp
->t_state
, TS_ERASE
)) {
648 * end of prterase \.../
650 CLR(tp
->t_state
, TS_ERASE
);
651 (void)ttyoutput('/', tp
);
655 if (CCEQ(cc
[VEOF
], c
) && ISSET(lflag
, ECHO
)) {
657 * Place the cursor over the '^' of the ^D.
659 i
= min(2, tp
->t_column
- i
);
661 (void)ttyoutput('\b', tp
);
668 * IXANY means allow any character to restart output.
670 if (ISSET(tp
->t_state
, TS_TTSTOP
) &&
671 !ISSET(iflag
, IXANY
) && cc
[VSTART
] != cc
[VSTOP
]) {
672 thread_funnel_set(kernel_flock
, funnel_state
);
676 CLR(tp
->t_lflag
, FLUSHO
);
677 CLR(tp
->t_state
, TS_TTSTOP
);
679 retval
= ttstart(tp
);
680 thread_funnel_set(kernel_flock
, funnel_state
);
685 * Output a single character on a tty, doing output processing
686 * as needed (expanding tabs, newline processing, etc.).
687 * Returns < 0 if succeeds, otherwise returns char to resend.
693 register struct tty
*tp
;
695 register tcflag_t oflag
;
699 if (!ISSET(oflag
, OPOST
)) {
700 if (ISSET(tp
->t_lflag
, FLUSHO
))
702 if (putc(c
, &tp
->t_outq
))
709 * Do tab expansion if OXTABS is set. Special case if we external
710 * processing, we don't do the tab expansion because we'll probably
711 * get it wrong. If tab expansion needs to be done, let it happen
714 CLR(c
, ~TTY_CHARMASK
);
716 ISSET(oflag
, OXTABS
) && !ISSET(tp
->t_lflag
, EXTPROC
)) {
717 c
= 8 - (tp
->t_column
& 7);
718 if (!ISSET(tp
->t_lflag
, FLUSHO
)) {
719 s
= spltty(); /* Don't interrupt tabs. */
720 c
-= b_to_q(" ", c
, &tp
->t_outq
);
726 return (c
? -1 : '\t');
728 if (c
== CEOT
&& ISSET(oflag
, ONOEOT
))
732 * Newline translation: if ONLCR is set,
733 * translate newline into "\r\n".
735 if (c
== '\n' && ISSET(tp
->t_oflag
, ONLCR
)) {
738 if (putc('\r', &tp
->t_outq
))
743 if (!ISSET(tp
->t_lflag
, FLUSHO
) && putc(c
, &tp
->t_outq
))
762 col
= (col
+ 8) & ~7;
770 * Ioctls for all tty devices. Called after line-discipline specific ioctl
771 * has been called to do discipline-specific functions and/or reject any
772 * of these ioctl commands.
777 ttioctl(tp
, cmd
, data
, flag
)
778 register struct tty
*tp
;
782 ttioctl(tp
, cmd
, data
, flag
, p
)
783 register struct tty
*tp
;
791 register struct proc
*p
= curproc
; /* XXX */
795 /* If the ioctl involves modification, hang if in the background. */
808 #if defined(COMPAT_43) || defined(COMPAT_SUNOS)
818 while (isbackground(p
, tp
) &&
819 (p
->p_flag
& P_PPWAIT
) == 0 &&
820 (p
->p_sigignore
& sigmask(SIGTTOU
)) == 0 &&
821 (p
->p_sigmask
& sigmask(SIGTTOU
)) == 0) {
822 if (p
->p_pgrp
->pg_jobc
== 0)
824 pgsignal(p
->p_pgrp
, SIGTTOU
, 1);
825 error
= ttysleep(tp
, &lbolt
, TTOPRI
| PCATCH
| PTTYBLOCK
, "ttybg1",
833 switch (cmd
) { /* Process the ioctl. */
834 case FIOASYNC
: /* set/clear async i/o */
837 SET(tp
->t_state
, TS_ASYNC
);
839 CLR(tp
->t_state
, TS_ASYNC
);
842 case FIONBIO
: /* set/clear non-blocking i/o */
843 break; /* XXX: delete. */
844 case FIONREAD
: /* get # bytes to read */
846 *(int *)data
= ttnread(tp
);
849 case TIOCEXCL
: /* set exclusive use of tty */
851 SET(tp
->t_state
, TS_XCLUDE
);
854 case TIOCFLUSH
: { /* flush buffers */
855 register int flags
= *(int *)data
;
858 flags
= FREAD
| FWRITE
;
860 flags
&= FREAD
| FWRITE
;
866 /* Set current console device to this line */
868 data
= (caddr_t
) &bogusData
;
870 /* No break - Fall through to BSD code */
873 case TIOCCONS
: { /* become virtual console */
875 if (constty
&& constty
!= tp
&&
876 ISSET(constty
->t_state
, TS_CONNECTED
)) {
879 #if defined(NeXT) || !defined(UCONSOLE)
880 if ( (error
= suser(p
->p_ucred
, &p
->p_acflag
)) )
884 } else if (tp
== constty
) {
889 (*cdevsw
[major(cons
.t_dev
)].d_ioctl
)
890 (cons
.t_dev
, KMIOCDISABLCONS
, NULL
, 0, p
);
892 (*cdevsw
[major(tp
->t_dev
)].d_ioctl
)
893 (tp
->t_dev
, KMIOCDISABLCONS
, NULL
, 0, p
);
898 case TIOCDRAIN
: /* wait till output drained */
903 case TIOCGETA
: { /* get termios struct */
904 struct termios
*t
= (struct termios
*)data
;
906 bcopy(&tp
->t_termios
, t
, sizeof(struct termios
));
909 case TIOCGETD
: /* get line discipline */
910 *(int *)data
= tp
->t_line
;
912 case TIOCGWINSZ
: /* get window size */
913 *(struct winsize
*)data
= tp
->t_winsize
;
915 case TIOCGPGRP
: /* get pgrp of tty */
918 *(int *)data
= tp
->t_pgrp
? tp
->t_pgrp
->pg_id
: NO_PID
;
921 case TIOCHPCL
: /* hang up on last close */
923 SET(tp
->t_cflag
, HUPCL
);
927 case TIOCNXCL
: /* reset exclusive use of tty */
929 CLR(tp
->t_state
, TS_XCLUDE
);
932 case TIOCOUTQ
: /* output queue size */
933 *(int *)data
= tp
->t_outq
.c_cc
;
935 case TIOCSETA
: /* set termios struct */
936 case TIOCSETAW
: /* drain output, set */
937 case TIOCSETAF
: { /* drn out, fls in, set */
938 register struct termios
*t
= (struct termios
*)data
;
940 if (t
->c_ispeed
< 0 || t
->c_ospeed
< 0)
943 if (cmd
== TIOCSETAW
|| cmd
== TIOCSETAF
) {
949 if (cmd
== TIOCSETAF
)
952 if (!ISSET(t
->c_cflag
, CIGNORE
)) {
954 * Set device hardware.
956 if (tp
->t_param
&& (error
= (*tp
->t_param
)(tp
, t
))) {
960 if (ISSET(t
->c_cflag
, CLOCAL
) &&
961 !ISSET(tp
->t_cflag
, CLOCAL
)) {
963 * XXX disconnections would be too hard to
964 * get rid of without this kludge. The only
965 * way to get rid of controlling terminals
966 * is to exit from the session leader.
968 CLR(tp
->t_state
, TS_ZOMBIE
);
970 wakeup(TSA_CARR_ON(tp
));
974 if ((ISSET(tp
->t_state
, TS_CARR_ON
) ||
975 ISSET(t
->c_cflag
, CLOCAL
)) &&
976 !ISSET(tp
->t_state
, TS_ZOMBIE
))
977 SET(tp
->t_state
, TS_CONNECTED
);
979 CLR(tp
->t_state
, TS_CONNECTED
);
980 tp
->t_cflag
= t
->c_cflag
;
981 tp
->t_ispeed
= t
->c_ispeed
;
982 tp
->t_ospeed
= t
->c_ospeed
;
985 if (ISSET(t
->c_lflag
, ICANON
) != ISSET(tp
->t_lflag
, ICANON
) &&
987 if (ISSET(t
->c_lflag
, ICANON
))
988 SET(tp
->t_lflag
, PENDIN
);
991 * XXX we really shouldn't allow toggling
992 * ICANON while we're in a non-termios line
993 * discipline. Now we have to worry about
994 * panicing for a null queue.
997 if (tp
->t_canq
.c_cbreserved
> 0 &&
998 tp
->t_rawq
.c_cbreserved
> 0) {
999 catq(&tp
->t_rawq
, &tp
->t_canq
);
1001 * XXX the queue limits may be
1002 * different, so the old queue
1003 * swapping method no longer works.
1005 catq(&tp
->t_canq
, &tp
->t_rawq
);
1008 if (tp
->t_rawq
.c_cs
&& tp
->t_canq
.c_cs
) {
1011 catq(&tp
->t_rawq
, &tp
->t_canq
);
1013 tp
->t_rawq
= tp
->t_canq
;
1017 CLR(tp
->t_lflag
, PENDIN
);
1021 tp
->t_iflag
= t
->c_iflag
;
1022 tp
->t_oflag
= t
->c_oflag
;
1024 * Make the EXTPROC bit read only.
1026 if (ISSET(tp
->t_lflag
, EXTPROC
))
1027 SET(t
->c_lflag
, EXTPROC
);
1029 CLR(t
->c_lflag
, EXTPROC
);
1030 tp
->t_lflag
= t
->c_lflag
| ISSET(tp
->t_lflag
, PENDIN
);
1031 if (t
->c_cc
[VMIN
] != tp
->t_cc
[VMIN
] ||
1032 t
->c_cc
[VTIME
] != tp
->t_cc
[VTIME
])
1034 bcopy(t
->c_cc
, tp
->t_cc
, sizeof(t
->c_cc
));
1038 case TIOCSETD
: { /* set line discipline */
1039 register int t
= *(int *)data
;
1040 dev_t device
= tp
->t_dev
;
1043 if ((u_int
)t
>= nlinesw
)
1045 if (t
!= tp
->t_line
) {
1047 (*linesw
[tp
->t_line
].l_close
)(tp
, flag
);
1048 error
= (*linesw
[t
].l_open
)(device
, tp
);
1050 (void)(*linesw
[tp
->t_line
].l_open
)(device
, tp
);
1059 case TIOCSTART
: /* start output, like ^Q */
1061 if (ISSET(tp
->t_state
, TS_TTSTOP
) ||
1062 ISSET(tp
->t_lflag
, FLUSHO
)) {
1063 CLR(tp
->t_lflag
, FLUSHO
);
1064 CLR(tp
->t_state
, TS_TTSTOP
);
1069 case TIOCSTI
: /* simulate terminal input */
1070 if (p
->p_ucred
->cr_uid
&& (flag
& FREAD
) == 0)
1072 if (p
->p_ucred
->cr_uid
&& !isctty(p
, tp
))
1075 (*linesw
[tp
->t_line
].l_rint
)(*(u_char
*)data
, tp
);
1078 case TIOCSTOP
: /* stop output, like ^S */
1080 if (!ISSET(tp
->t_state
, TS_TTSTOP
)) {
1081 SET(tp
->t_state
, TS_TTSTOP
);
1086 case TIOCSCTTY
: /* become controlling tty */
1087 /* Session ctty vnode pointer set in vnode layer. */
1088 if (!SESS_LEADER(p
) ||
1089 ((p
->p_session
->s_ttyvp
|| tp
->t_session
) &&
1090 (tp
->t_session
!= p
->p_session
)))
1092 tp
->t_session
= p
->p_session
;
1093 tp
->t_pgrp
= p
->p_pgrp
;
1094 p
->p_session
->s_ttyp
= tp
;
1095 p
->p_flag
|= P_CONTROLT
;
1097 case TIOCSPGRP
: { /* set pgrp of tty */
1098 register struct pgrp
*pgrp
= pgfind(*(int *)data
);
1102 else if (pgrp
== NULL
|| pgrp
->pg_session
!= p
->p_session
)
1107 case TIOCSTAT
: /* simulate control-T */
1112 case TIOCSWINSZ
: /* set window size */
1113 if (bcmp((caddr_t
)&tp
->t_winsize
, data
,
1114 sizeof (struct winsize
))) {
1115 tp
->t_winsize
= *(struct winsize
*)data
;
1116 pgsignal(tp
->t_pgrp
, SIGWINCH
, 1);
1119 case TIOCSDRAINWAIT
:
1120 error
= suser(p
->p_ucred
, &p
->p_acflag
);
1123 tp
->t_timeout
= *(int *)data
* hz
;
1124 wakeup(TSA_OCOMPLETE(tp
));
1125 wakeup(TSA_OLOWAT(tp
));
1127 case TIOCGDRAINWAIT
:
1128 *(int *)data
= tp
->t_timeout
/ hz
;
1131 #if defined(COMPAT_43) || defined(COMPAT_SUNOS)
1133 return (ttcompat(tp
, cmd
, data
, flag
, p
));
1135 return (ttcompat(tp
, cmd
, data
, flag
));
1146 ttyselect(tp
, rw
, p
)
1159 if (ttnread(tp
) > 0 || ISSET(tp
->t_state
, TS_ZOMBIE
))
1161 selrecord(p
, &tp
->t_rsel
);
1164 if ((tp
->t_outq
.c_cc
<= tp
->t_lowat
&&
1165 ISSET(tp
->t_state
, TS_CONNECTED
))
1166 || ISSET(tp
->t_state
, TS_ZOMBIE
)) {
1170 selrecord(p
, &tp
->t_wsel
);
1178 * This is a wrapper for compatibility with the select vector used by
1179 * cdevsw. It relies on a proper xxxdevtotty routine.
1182 ttselect(dev
, rw
, p
)
1188 return ttyselect((*cdevsw
[major(dev
)]->d_devtotty
)(dev
), rw
, p
);
1190 return ttyselect(cdevsw
[major(dev
)].d_ttys
[minor(dev
)], rw
, p
);
1195 * Must be called at spltty().
1203 if (ISSET(tp
->t_lflag
, PENDIN
))
1205 nread
= tp
->t_canq
.c_cc
;
1206 if (!ISSET(tp
->t_lflag
, ICANON
)) {
1207 nread
+= tp
->t_rawq
.c_cc
;
1208 if (nread
< tp
->t_cc
[VMIN
] && tp
->t_cc
[VTIME
] == 0)
1215 * Wait for output to drain.
1219 register struct tty
*tp
;
1225 while ((tp
->t_outq
.c_cc
|| ISSET(tp
->t_state
, TS_BUSY
)) &&
1226 ISSET(tp
->t_state
, TS_CONNECTED
) && tp
->t_oproc
) {
1228 if ((tp
->t_outq
.c_cc
|| ISSET(tp
->t_state
, TS_BUSY
)) &&
1229 ISSET(tp
->t_state
, TS_CONNECTED
)) {
1230 SET(tp
->t_state
, TS_SO_OCOMPLETE
);
1231 error
= ttysleep(tp
, TSA_OCOMPLETE(tp
),
1232 TTOPRI
| PCATCH
, "ttywai",
1235 if (error
== EWOULDBLOCK
)
1242 if (!error
&& (tp
->t_outq
.c_cc
|| ISSET(tp
->t_state
, TS_BUSY
)))
1253 #ifdef sun4c /* XXX */
1254 (*tp
->t_stop
)(tp
, rw
);
1256 (*cdevsw
[major(tp
->t_dev
)].d_stop
)(tp
, rw
);
1258 (*cdevsw
[major(tp
->t_dev
)]->d_stop
)(tp
, rw
);
1263 * Flush if successfully wait.
1271 if ((error
= ttywait(tp
)) == 0)
1272 ttyflush(tp
, FREAD
);
1277 * Flush tty read and/or write queues, notifying anyone waiting.
1281 register struct tty
*tp
;
1291 FLUSHQ(&tp
->t_outq
);
1292 CLR(tp
->t_state
, TS_TTSTOP
);
1296 FLUSHQ(&tp
->t_canq
);
1297 FLUSHQ(&tp
->t_rawq
);
1298 CLR(tp
->t_lflag
, PENDIN
);
1301 CLR(tp
->t_state
, TS_LOCAL
);
1303 if (ISSET(tp
->t_state
, TS_TBLOCK
)) {
1305 FLUSHQ(&tp
->t_outq
);
1309 * Don't let leave any state that might clobber the
1310 * next line discipline (although we should do more
1311 * to send the START char). Not clearing the state
1312 * may have caused the "putc to a clist with no
1313 * reserved cblocks" panic/printf.
1315 CLR(tp
->t_state
, TS_TBLOCK
);
1317 #if 0 /* forget it, sleeping isn't always safe and we don't know when it is */
1318 if (ISSET(tp
->t_iflag
, IXOFF
)) {
1320 * XXX wait a bit in the hope that the stop
1321 * character (if any) will go out. Waiting
1322 * isn't good since it allows races. This
1323 * will be fixed when the stop character is
1324 * put in a special queue. Don't bother with
1325 * the checks in ttywait() since the timeout
1328 SET(tp
->t_state
, TS_SO_OCOMPLETE
);
1329 ttysleep(tp
, TSA_OCOMPLETE(tp
), TTOPRI
,
1332 * Don't try sending the stop character again.
1334 CLR(tp
->t_state
, TS_TBLOCK
);
1341 FLUSHQ(&tp
->t_outq
);
1348 * Copy in the default termios characters.
1355 bcopy(ttydefchars
, t
->c_cc
, sizeof t
->c_cc
);
1366 termioschars(&tp
->t_termios
);
1370 * Handle input high water. Send stop character for the IXOFF case. Turn
1371 * on our input flow control bit and propagate the changes to the driver.
1372 * XXX the stop character should be put in a special high priority queue.
1379 SET(tp
->t_state
, TS_TBLOCK
);
1380 if (ISSET(tp
->t_iflag
, IXOFF
) && tp
->t_cc
[VSTOP
] != _POSIX_VDISABLE
&&
1381 putc(tp
->t_cc
[VSTOP
], &tp
->t_outq
) != 0)
1382 CLR(tp
->t_state
, TS_TBLOCK
); /* try again later */
1387 * Handle input low water. Send start character for the IXOFF case. Turn
1388 * off our input flow control bit and propagate the changes to the driver.
1389 * XXX the start character should be put in a special high priority queue.
1396 CLR(tp
->t_state
, TS_TBLOCK
);
1397 if (ISSET(tp
->t_iflag
, IXOFF
) && tp
->t_cc
[VSTART
] != _POSIX_VDISABLE
&&
1398 putc(tp
->t_cc
[VSTART
], &tp
->t_outq
) != 0)
1399 SET(tp
->t_state
, TS_TBLOCK
); /* try again later */
1403 #if defined(NeXT) || defined(notyet)
1404 /* FreeBSD: Not used by any current (i386) drivers. */
1406 * Restart after an inter-char delay.
1422 CLR(tp
->t_state
, TS_TIMEOUT
);
1427 #endif /* NeXT || notyet */
1434 if (tp
->t_oproc
!= NULL
) /* XXX: Kludge for pty. */
1440 * "close" a line discipline
1447 if ( (flag
& FNONBLOCK
) || ttywflush(tp
))
1448 ttyflush(tp
, FREAD
| FWRITE
);
1453 * Handle modem control transition on a tty.
1454 * Flag indicates new state of carrier.
1455 * Returns 0 if the line should be turned off, otherwise 1.
1459 register struct tty
*tp
;
1463 if (ISSET(tp
->t_state
, TS_CARR_ON
) && ISSET(tp
->t_cflag
, MDMBUF
)) {
1465 * MDMBUF: do flow control according to carrier flag
1466 * XXX TS_CAR_OFLOW doesn't do anything yet. TS_TTSTOP
1467 * works if IXON and IXANY are clear.
1470 CLR(tp
->t_state
, TS_CAR_OFLOW
);
1471 CLR(tp
->t_state
, TS_TTSTOP
);
1473 } else if (!ISSET(tp
->t_state
, TS_CAR_OFLOW
)) {
1474 SET(tp
->t_state
, TS_CAR_OFLOW
);
1475 SET(tp
->t_state
, TS_TTSTOP
);
1478 } else if (flag
== 0) {
1482 CLR(tp
->t_state
, TS_CARR_ON
);
1483 if (ISSET(tp
->t_state
, TS_ISOPEN
) &&
1484 !ISSET(tp
->t_cflag
, CLOCAL
)) {
1485 SET(tp
->t_state
, TS_ZOMBIE
);
1486 CLR(tp
->t_state
, TS_CONNECTED
);
1487 if (tp
->t_session
&& tp
->t_session
->s_leader
)
1488 psignal(tp
->t_session
->s_leader
, SIGHUP
);
1489 ttyflush(tp
, FREAD
| FWRITE
);
1496 SET(tp
->t_state
, TS_CARR_ON
);
1497 if (!ISSET(tp
->t_state
, TS_ZOMBIE
))
1498 SET(tp
->t_state
, TS_CONNECTED
);
1499 wakeup(TSA_CARR_ON(tp
));
1507 * Reinput pending characters after state switch
1512 register struct tty
*tp
;
1517 CLR(tp
->t_lflag
, PENDIN
);
1518 SET(tp
->t_state
, TS_TYPEN
);
1521 * XXX this assumes too much about clist internals. It may even
1522 * fail if the cblock slush pool is empty. We can't allocate more
1523 * cblocks here because we are called from an interrupt handler
1524 * and clist_alloc_cblocks() can wait.
1527 bzero(&tp
->t_rawq
, sizeof tp
->t_rawq
);
1528 tp
->t_rawq
.c_cbmax
= tq
.c_cbmax
;
1529 tp
->t_rawq
.c_cbreserved
= tq
.c_cbreserved
;
1532 tp
->t_rawq
.c_cc
= 0;
1533 tp
->t_rawq
.c_cf
= tp
->t_rawq
.c_cl
= 0;
1535 while ((c
= getc(&tq
)) >= 0)
1537 CLR(tp
->t_state
, TS_TYPEN
);
1541 * Process a read call on a tty device.
1544 ttread(tp
, uio
, flag
)
1545 register struct tty
*tp
;
1549 register struct clist
*qp
;
1551 register tcflag_t lflag
;
1552 register cc_t
*cc
= tp
->t_cc
;
1553 register struct proc
*p
= current_proc();
1554 int s
, first
, error
= 0;
1555 int has_etime
= 0, last_cc
= 0;
1556 long slp
= 0; /* XXX this should be renamed `timo'. */
1560 lflag
= tp
->t_lflag
;
1562 * take pending input first
1564 if (ISSET(lflag
, PENDIN
)) {
1566 splx(s
); /* reduce latency */
1568 lflag
= tp
->t_lflag
; /* XXX ttypend() clobbers it */
1572 * Hang process if it's in the background.
1574 if (isbackground(p
, tp
)) {
1576 if ((p
->p_sigignore
& sigmask(SIGTTIN
)) ||
1577 (p
->p_sigmask
& sigmask(SIGTTIN
)) ||
1578 p
->p_flag
& P_PPWAIT
|| p
->p_pgrp
->pg_jobc
== 0)
1580 pgsignal(p
->p_pgrp
, SIGTTIN
, 1);
1581 error
= ttysleep(tp
, &lbolt
, TTIPRI
| PCATCH
| PTTYBLOCK
, "ttybg2", 0);
1587 if (ISSET(tp
->t_state
, TS_ZOMBIE
)) {
1589 return (0); /* EOF */
1593 * If canonical, use the canonical queue,
1594 * else use the raw queue.
1596 * (should get rid of clists...)
1598 qp
= ISSET(lflag
, ICANON
) ? &tp
->t_canq
: &tp
->t_rawq
;
1600 if (flag
& IO_NDELAY
) {
1603 if (!ISSET(lflag
, ICANON
) && cc
[VMIN
] == 0) {
1608 return (EWOULDBLOCK
);
1610 if (!ISSET(lflag
, ICANON
)) {
1613 struct timeval etime
, timecopy
;
1617 * Check each of the four combinations.
1618 * (m > 0 && t == 0) is the normal read case.
1619 * It should be fairly efficient, so we check that and its
1620 * companion case (m == 0 && t == 0) first.
1621 * For the other two cases, we compute the target sleep time
1630 /* m, t and qp->c_cc are all 0. 0 is enough input. */
1634 t
*= 100000; /* time in us */
1635 #define diff(t1, t2) (((t1).tv_sec - (t2).tv_sec) * 1000000 + \
1636 ((t1).tv_usec - (t2).tv_usec))
1646 /* first character, start timer */
1649 etime
.tv_sec
= t
/ 1000000;
1650 etime
.tv_usec
= (t
- (etime
.tv_sec
* 1000000));
1651 timeradd(&etime
, &timecopy
, &etime
);
1654 } else if (qp
->c_cc
> last_cc
) {
1655 /* got a character, restart timer */
1657 etime
.tv_sec
= t
/ 1000000;
1658 etime
.tv_usec
= (t
- (etime
.tv_sec
* 1000000));
1659 timeradd(&etime
, &timecopy
, &etime
);
1663 /* nothing, check expiration */
1664 if (timercmp(&etime
, &timecopy
, <=))
1667 slp
= diff(etime
, timecopy
);
1670 } else { /* m == 0 */
1679 etime
.tv_sec
= t
/ 1000000;
1680 etime
.tv_usec
= (t
- (etime
.tv_sec
* 1000000));
1681 timeradd(&etime
, &timecopy
, &etime
);
1685 if (timercmp(&etime
, &timecopy
, <=)) {
1686 /* Timed out, but 0 is enough input. */
1690 slp
= diff(etime
, timecopy
);
1695 * Rounding down may make us wake up just short
1696 * of the target, so we round up.
1697 * The formula is ceiling(slp * hz/1000000).
1698 * 32-bit arithmetic is enough for hz < 169.
1699 * XXX see hzto() for how to avoid overflow if hz
1700 * is large (divide by `tick' and/or arrange to
1701 * use hzto() if hz is large).
1703 slp
= (long) (((u_long
)slp
* hz
) + 999999) / 1000000;
1706 if (qp
->c_cc
<= 0) {
1709 * There is no input, or not enough input and we can block.
1711 error
= ttysleep(tp
, TSA_HUP_OR_INPUT(tp
), TTIPRI
| PCATCH
,
1712 ISSET(tp
->t_state
, TS_CONNECTED
) ?
1713 "ttyin" : "ttyhup", (int)slp
);
1715 if (error
== EWOULDBLOCK
)
1720 * XXX what happens if another process eats some input
1721 * while we are asleep (not just here)? It would be
1722 * safest to detect changes and reset our state variables
1723 * (has_stime and last_cc).
1731 * Input present, check for input mapping and processing.
1735 if (ISSET(lflag
, ICANON
)
1736 || (ISSET(lflag
, IEXTEN
| ISIG
) == (IEXTEN
| ISIG
)) )
1738 if (ISSET(lflag
, ICANON
| ISIG
))
1745 icc
= min(uio
->uio_resid
, IBUFSIZ
);
1746 icc
= q_to_b(qp
, ibuf
, icc
);
1752 error
= uiomove(ibuf
, icc
, uio
);
1754 * XXX if there was an error then we should ungetc() the
1755 * unmoved chars and reduce icc here.
1758 if (ISSET(tp
->t_lflag
, ECHO
) &&
1759 ISSET(tp
->t_state
, TS_SNOOP
) && tp
->t_sc
!= NULL
)
1760 snpin((struct snoop
*)tp
->t_sc
, ibuf
, icc
);
1764 if (uio
->uio_resid
== 0)
1778 * delayed suspend (^Y)
1780 if (CCEQ(cc
[VDSUSP
], c
) &&
1781 ISSET(lflag
, IEXTEN
| ISIG
) == (IEXTEN
| ISIG
)) {
1782 pgsignal(tp
->t_pgrp
, SIGTSTP
, 1);
1784 error
= ttysleep(tp
, &lbolt
, TTIPRI
| PCATCH
,
1793 * Interpret EOF only in canonical mode.
1795 if (CCEQ(cc
[VEOF
], c
) && ISSET(lflag
, ICANON
))
1798 * Give user character.
1800 error
= ureadc(c
, uio
);
1802 /* XXX should ungetc(c, qp). */
1806 * Only snoop directly on input in echo mode. Non-echoed
1807 * input will be snooped later iff the application echoes it.
1809 if (ISSET(tp
->t_lflag
, ECHO
) &&
1810 ISSET(tp
->t_state
, TS_SNOOP
) && tp
->t_sc
!= NULL
)
1811 snpinc((struct snoop
*)tp
->t_sc
, (char)c
);
1813 if (uio
->uio_resid
== 0)
1816 * In canonical mode check for a "break character"
1817 * marking the end of a "line of input".
1819 if (ISSET(lflag
, ICANON
) && TTBREAKC(c
, lflag
))
1826 * Look to unblock input now that (presumably)
1827 * the input queue has gone down.
1830 if (ISSET(tp
->t_state
, TS_TBLOCK
) &&
1831 tp
->t_rawq
.c_cc
+ tp
->t_canq
.c_cc
<= I_LOW_WATER
)
1839 * Check the output queue on tp for space for a kernel message (from uprintf
1840 * or tprintf). Allow some space over the normal hiwater mark so we don't
1841 * lose messages due to normal flow control, but don't let the tty run amok.
1842 * Sleeps here are not interruptible, but we return prematurely if new signals
1846 ttycheckoutq(tp
, wait
)
1847 register struct tty
*tp
;
1850 int hiwat
, s
, oldsig
;
1852 hiwat
= tp
->t_hiwat
;
1854 oldsig
= wait
? current_proc()->p_siglist
: 0;
1855 if (tp
->t_outq
.c_cc
> hiwat
+ OBUFSIZ
+ 100)
1856 while (tp
->t_outq
.c_cc
> hiwat
) {
1858 if (tp
->t_outq
.c_cc
<= hiwat
)
1860 if (wait
== 0 || current_proc()->p_siglist
!= oldsig
) {
1864 SET(tp
->t_state
, TS_SO_OLOWAT
);
1865 tsleep(TSA_OLOWAT(tp
), PZERO
- 1, "ttoutq", hz
);
1872 * Process a write call on a tty device.
1875 ttwrite(tp
, uio
, flag
)
1876 register struct tty
*tp
;
1877 register struct uio
*uio
;
1880 register char *cp
= NULL
;
1881 register int cc
, ce
;
1882 register struct proc
*p
;
1883 int i
, hiwat
, cnt
, error
, s
;
1886 hiwat
= tp
->t_hiwat
;
1887 cnt
= uio
->uio_resid
;
1892 if (ISSET(tp
->t_state
, TS_ZOMBIE
)) {
1894 if (uio
->uio_resid
== cnt
)
1898 if (!ISSET(tp
->t_state
, TS_CONNECTED
)) {
1899 if (flag
& IO_NDELAY
) {
1901 error
= EWOULDBLOCK
;
1904 error
= ttysleep(tp
, TSA_CARR_ON(tp
), TTIPRI
| PCATCH
,
1913 * Hang the process if it's in the background.
1916 if (isbackground(p
, tp
) &&
1917 ISSET(tp
->t_lflag
, TOSTOP
) && (p
->p_flag
& P_PPWAIT
) == 0 &&
1918 (p
->p_sigignore
& sigmask(SIGTTOU
)) == 0 &&
1919 (p
->p_sigmask
& sigmask(SIGTTOU
)) == 0) {
1920 if (p
->p_pgrp
->pg_jobc
== 0) {
1924 pgsignal(p
->p_pgrp
, SIGTTOU
, 1);
1925 error
= ttysleep(tp
, &lbolt
, TTIPRI
| PCATCH
| PTTYBLOCK
, "ttybg4", 0);
1931 * Process the user's data in at most OBUFSIZ chunks. Perform any
1932 * output translation. Keep track of high water mark, sleep on
1933 * overflow awaiting device aid in acquiring new space.
1935 while (uio
->uio_resid
> 0 || cc
> 0) {
1936 if (ISSET(tp
->t_lflag
, FLUSHO
)) {
1940 if (tp
->t_outq
.c_cc
> hiwat
)
1943 * Grab a hunk of data from the user, unless we have some
1944 * leftover from last time.
1947 cc
= min(uio
->uio_resid
, OBUFSIZ
);
1949 error
= uiomove(cp
, cc
, uio
);
1955 if (ISSET(tp
->t_state
, TS_SNOOP
) && tp
->t_sc
!= NULL
)
1956 snpin((struct snoop
*)tp
->t_sc
, cp
, cc
);
1960 * If nothing fancy need be done, grab those characters we
1961 * can handle without any of ttyoutput's processing and
1962 * just transfer them to the output q. For those chars
1963 * which require special processing (as indicated by the
1964 * bits in char_type), call ttyoutput. After processing
1965 * a hunk of data, look for FLUSHO so ^O's will take effect
1969 if (!ISSET(tp
->t_oflag
, OPOST
))
1972 ce
= cc
- scanc((u_int
)cc
, (u_char
*)cp
,
1973 (u_char
*)char_type
, CCLASSMASK
);
1975 * If ce is zero, then we're processing
1976 * a special character through ttyoutput.
1980 if (ttyoutput(*cp
, tp
) >= 0) {
1985 /* No Clists, wait a bit. */
1987 if (flag
& IO_NDELAY
) {
1988 error
= EWOULDBLOCK
;
1991 error
= ttysleep(tp
, &lbolt
,
2001 if (ISSET(tp
->t_lflag
, FLUSHO
) ||
2002 tp
->t_outq
.c_cc
> hiwat
)
2008 * A bunch of normal characters have been found.
2009 * Transfer them en masse to the output queue and
2010 * continue processing at the top of the loop.
2011 * If there are any further characters in this
2012 * <= OBUFSIZ chunk, the first should be a character
2013 * requiring special handling by ttyoutput.
2016 i
= b_to_q(cp
, ce
, &tp
->t_outq
);
2019 cp
+= ce
, cc
-= ce
, tk_nout
+= ce
;
2026 /* No Clists, wait a bit. */
2028 if (flag
& IO_NDELAY
) {
2029 error
= EWOULDBLOCK
;
2032 error
= ttysleep(tp
, &lbolt
, TTOPRI
| PCATCH
,
2039 if (ISSET(tp
->t_lflag
, FLUSHO
) ||
2040 tp
->t_outq
.c_cc
> hiwat
)
2047 * If cc is nonzero, we leave the uio structure inconsistent, as the
2048 * offset and iov pointers have moved forward, but it doesn't matter
2049 * (the call will either return short or restart with a new uio).
2051 uio
->uio_resid
+= cc
;
2058 * Since we are using ring buffers, if we can't insert any more into
2059 * the output queue, we can assume the ring is full and that someone
2060 * forgot to set the high water mark correctly. We set it and then
2061 * proceed as normal.
2063 hiwat
= tp
->t_outq
.c_cc
- 1;
2070 * This can only occur if FLUSHO is set in t_lflag,
2071 * or if ttstart/oproc is synchronous (or very fast).
2073 if (tp
->t_outq
.c_cc
<= hiwat
) {
2077 if (flag
& IO_NDELAY
) {
2079 uio
->uio_resid
+= cc
;
2080 return (uio
->uio_resid
== cnt
? EWOULDBLOCK
: 0);
2082 SET(tp
->t_state
, TS_SO_OLOWAT
);
2083 error
= ttysleep(tp
, TSA_OLOWAT(tp
), TTOPRI
| PCATCH
, "ttywri",
2086 if (error
== EWOULDBLOCK
)
2094 * Rubout one character from the rawq of tp
2095 * as cleanly as possible.
2100 register struct tty
*tp
;
2102 register u_char
*cp
;
2103 register int savecol
;
2106 if (!ISSET(tp
->t_lflag
, ECHO
) || ISSET(tp
->t_lflag
, EXTPROC
))
2108 CLR(tp
->t_lflag
, FLUSHO
);
2109 if (ISSET(tp
->t_lflag
, ECHOE
)) {
2110 if (tp
->t_rocount
== 0) {
2112 * Messed up by ttwrite; retype
2117 if (c
== ('\t' | TTY_QUOTE
) || c
== ('\n' | TTY_QUOTE
))
2120 CLR(c
, ~TTY_CHARMASK
);
2121 switch (CCLASS(c
)) {
2130 if (ISSET(tp
->t_lflag
, ECHOCTL
))
2134 if (tp
->t_rocount
< tp
->t_rawq
.c_cc
) {
2139 savecol
= tp
->t_column
;
2140 SET(tp
->t_state
, TS_CNTTB
);
2141 SET(tp
->t_lflag
, FLUSHO
);
2142 tp
->t_column
= tp
->t_rocol
;
2144 cp
= tp
->t_rawq
.c_cf
;
2146 tabc
= *cp
; /* XXX FIX NEXTC */
2147 for (; cp
; cp
= nextc(&tp
->t_rawq
, cp
, &tabc
))
2150 for (cp
= firstc(&tp
->t_rawq
, &tabc
); cp
;
2151 cp
= nextc(&tp
->t_rawq
, cp
, &tabc
))
2154 CLR(tp
->t_lflag
, FLUSHO
);
2155 CLR(tp
->t_state
, TS_CNTTB
);
2158 /* savecol will now be length of the tab. */
2159 savecol
-= tp
->t_column
;
2160 tp
->t_column
+= savecol
;
2162 savecol
= 8; /* overflow fixup */
2163 while (--savecol
>= 0)
2164 (void)ttyoutput('\b', tp
);
2167 #define PANICSTR "ttyrub: would panic c = %d, val = %d\n"
2168 (void)printf(PANICSTR
, c
, CCLASS(c
));
2170 panic(PANICSTR
, c
, CCLASS(c
));
2174 } else if (ISSET(tp
->t_lflag
, ECHOPRT
)) {
2175 if (!ISSET(tp
->t_state
, TS_ERASE
)) {
2176 SET(tp
->t_state
, TS_ERASE
);
2177 (void)ttyoutput('\\', tp
);
2181 ttyecho(tp
->t_cc
[VERASE
], tp
);
2186 * Back over cnt characters, erasing them.
2190 register struct tty
*tp
;
2195 (void)ttyoutput('\b', tp
);
2196 (void)ttyoutput(' ', tp
);
2197 (void)ttyoutput('\b', tp
);
2203 * Reprint the rawq line. Note, it is assumed that c_cc has already
2208 register struct tty
*tp
;
2210 register u_char
*cp
;
2213 /* Echo the reprint character. */
2214 if (tp
->t_cc
[VREPRINT
] != _POSIX_VDISABLE
)
2215 ttyecho(tp
->t_cc
[VREPRINT
], tp
);
2217 (void)ttyoutput('\n', tp
);
2221 * FIX: NEXTC IS BROKEN - DOESN'T CHECK QUOTE
2222 * BIT OF FIRST CHAR.
2226 for (cp
= tp
->t_canq
.c_cf
, c
= (cp
!= NULL
? *cp
: 0);
2227 cp
!= NULL
; cp
= nextc(&tp
->t_canq
, cp
, &c
))
2229 for (cp
= tp
->t_rawq
.c_cf
, c
= (cp
!= NULL
? *cp
: 0);
2230 cp
!= NULL
; cp
= nextc(&tp
->t_rawq
, cp
, &c
))
2233 for (cp
= firstc(&tp
->t_canq
, &c
); cp
; cp
= nextc(&tp
->t_canq
, cp
, &c
))
2235 for (cp
= firstc(&tp
->t_rawq
, &c
); cp
; cp
= nextc(&tp
->t_rawq
, cp
, &c
))
2238 CLR(tp
->t_state
, TS_ERASE
);
2241 tp
->t_rocount
= tp
->t_rawq
.c_cc
;
2246 * Echo a typed character to the terminal.
2251 register struct tty
*tp
;
2254 if (!ISSET(tp
->t_state
, TS_CNTTB
))
2255 CLR(tp
->t_lflag
, FLUSHO
);
2256 if ((!ISSET(tp
->t_lflag
, ECHO
) &&
2257 (c
!= '\n' || !ISSET(tp
->t_lflag
, ECHONL
))) ||
2258 ISSET(tp
->t_lflag
, EXTPROC
))
2260 if (ISSET(tp
->t_lflag
, ECHOCTL
) &&
2261 ((ISSET(c
, TTY_CHARMASK
) <= 037 && c
!= '\t' && c
!= '\n') ||
2262 ISSET(c
, TTY_CHARMASK
) == 0177)) {
2263 (void)ttyoutput('^', tp
);
2264 CLR(c
, ~TTY_CHARMASK
);
2270 (void)ttyoutput(c
, tp
);
2274 * Wake up any readers on a tty.
2278 register struct tty
*tp
;
2282 if (tp
->t_rsel
.si_pid
!= 0)
2284 selwakeup(&tp
->t_rsel
);
2285 if (ISSET(tp
->t_state
, TS_ASYNC
))
2286 pgsignal(tp
->t_pgrp
, SIGIO
, 1);
2287 wakeup(TSA_HUP_OR_INPUT(tp
));
2291 * Wake up any writers on a tty.
2295 register struct tty
*tp
;
2298 if (tp
->t_wsel
.si_pid
!= 0 && tp
->t_outq
.c_cc
<= tp
->t_lowat
)
2300 if (tp
->t_outq
.c_cc
<= tp
->t_lowat
)
2302 selwakeup(&tp
->t_wsel
);
2303 if (ISSET(tp
->t_state
, TS_BUSY
| TS_SO_OCOMPLETE
) ==
2304 TS_SO_OCOMPLETE
&& tp
->t_outq
.c_cc
== 0) {
2305 CLR(tp
->t_state
, TS_SO_OCOMPLETE
);
2306 wakeup(TSA_OCOMPLETE(tp
));
2308 if (ISSET(tp
->t_state
, TS_SO_OLOWAT
) &&
2309 tp
->t_outq
.c_cc
<= tp
->t_lowat
) {
2310 CLR(tp
->t_state
, TS_SO_OLOWAT
);
2311 wakeup(TSA_OLOWAT(tp
));
2316 * Look up a code for a specified speed in a conversion table;
2317 * used by drivers to map software speed values to hardware parameters.
2320 ttspeedtab(speed
, table
)
2322 register struct speedtab
*table
;
2325 for ( ; table
->sp_speed
!= -1; table
++)
2326 if (table
->sp_speed
== speed
)
2327 return (table
->sp_code
);
2332 * Set tty hi and low water marks.
2334 * Try to arrange the dynamics so there's about one second
2335 * from hi to low water.
2342 register int cps
, x
;
2344 #define CLAMP(x, h, l) ((x) > h ? h : ((x) < l) ? l : (x))
2346 cps
= tp
->t_ospeed
/ 10;
2347 tp
->t_lowat
= x
= CLAMP(cps
/ 2, TTMAXLOWAT
, TTMINLOWAT
);
2349 x
= CLAMP(x
, TTMAXHIWAT
, TTMINHIWAT
);
2350 tp
->t_hiwat
= roundup(x
, CBSIZE
);
2354 /* NeXT ttyinfo has been converted to the MACH kernel */
2355 #include <mach/thread_info.h>
2358 * Report on state of foreground process group.
2362 register struct tty
*tp
;
2364 /* NOT IMPLEMENTED FOR MACH */
2369 * Returns 1 if p2 is "better" than p1
2371 * The algorithm for picking the "interesting" process is thus:
2373 * 1) Only foreground processes are eligible - implied.
2374 * 2) Runnable processes are favored over anything else. The runner
2375 * with the highest cpu utilization is picked (p_estcpu). Ties are
2376 * broken by picking the highest pid.
2377 * 3) The sleeper with the shortest sleep time is next. With ties,
2378 * we pick out just "short-term" sleepers (P_SINTR == 0).
2379 * 4) Further ties are broken by picking the highest pid.
2381 #define ISRUN(p) (((p)->p_stat == SRUN) || ((p)->p_stat == SIDL))
2382 #define TESTAB(a, b) ((a)<<1 | (b))
2388 proc_compare(p1
, p2
)
2389 register struct proc
*p1
, *p2
;
2395 * see if at least one of them is runnable
2397 switch (TESTAB(ISRUN(p1
), ISRUN(p2
))) {
2404 * tie - favor one with highest recent cpu utilization
2406 if (p2
->p_estcpu
> p1
->p_estcpu
)
2408 if (p1
->p_estcpu
> p2
->p_estcpu
)
2410 return (p2
->p_pid
> p1
->p_pid
); /* tie - return highest pid */
2415 switch (TESTAB(p1
->p_stat
== SZOMB
, p2
->p_stat
== SZOMB
)) {
2421 return (p2
->p_pid
> p1
->p_pid
); /* tie - return highest pid */
2424 * pick the one with the smallest sleep time
2426 if (p2
->p_slptime
> p1
->p_slptime
)
2428 if (p1
->p_slptime
> p2
->p_slptime
)
2431 * favor one sleeping in a non-interruptible sleep
2433 if (p1
->p_flag
& P_SINTR
&& (p2
->p_flag
& P_SINTR
) == 0)
2435 if (p2
->p_flag
& P_SINTR
&& (p1
->p_flag
& P_SINTR
) == 0)
2437 return (p2
->p_pid
> p1
->p_pid
); /* tie - return highest pid */
2442 * Output char to tty; console putchar style.
2452 if (!ISSET(tp
->t_state
, TS_CONNECTED
)) {
2457 (void)ttyoutput('\r', tp
);
2458 (void)ttyoutput(c
, tp
);
2465 * Sleep on chan, returning ERESTART if tty changed while we napped and
2466 * returning any errors (e.g. EINTR/EWOULDBLOCK) reported by tsleep. If
2467 * the tty is revoked, restarting a pending call will redo validation done
2468 * at the start of the call.
2471 ttysleep(tp
, chan
, pri
, wmesg
, timo
)
2481 error
= tsleep(chan
, pri
, wmesg
, timo
);
2484 return (tp
->t_gen
== gen
? 0 : ERESTART
);
2489 * Allocate a tty structure and its associated buffers.
2496 MALLOC(tp
, struct tty
*, sizeof(struct tty
), M_TTYS
, M_WAITOK
);
2497 bzero(tp
, sizeof *tp
);
2498 /* XXX: default to TTYCLSIZE(1024) chars for now */
2499 clalloc(&tp
->t_rawq
, TTYCLSIZE
, 1);
2500 clalloc(&tp
->t_canq
, TTYCLSIZE
, 1);
2501 /* output queue doesn't need quoting */
2502 clalloc(&tp
->t_outq
, TTYCLSIZE
, 0);
2507 * Free a tty structure and its buffers.
2513 clfree(&tp
->t_rawq
);
2514 clfree(&tp
->t_canq
);
2515 clfree(&tp
->t_outq
);
2523 * XXX this is usable not useful or used. Most tty drivers have
2524 * ifdefs for using ttymalloc() but assume a different interface.
2527 * Allocate a tty struct. Clists in the struct will be allocated by
2535 tp
= _MALLOC(sizeof *tp
, M_TTYS
, M_WAITOK
);
2536 bzero(tp
, sizeof *tp
);
2541 #if 0 /* XXX not yet usable: session leader holds a ref (see kern_exit.c). */
2543 * Free a tty struct. Clists in the struct should have been freed by