]>
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
;
246 boolean_t funnel_state
;
248 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
251 if (!ISSET(tp
->t_state
, TS_ISOPEN
)) {
252 SET(tp
->t_state
, TS_ISOPEN
);
253 if (ISSET(tp
->t_cflag
, CLOCAL
)) {
254 SET(tp
->t_state
, TS_CONNECTED
); }
255 bzero(&tp
->t_winsize
, sizeof(tp
->t_winsize
));
260 * Initialize or restore a cblock allocation policy suitable for
261 * the standard line discipline.
263 clist_alloc_cblocks(&tp
->t_canq
, TTYHOG
, 512);
264 clist_alloc_cblocks(&tp
->t_outq
, TTMAXHIWAT
+ OBUFSIZ
+ 100,
265 TTMAXHIWAT
+ OBUFSIZ
+ 100);
266 clist_alloc_cblocks(&tp
->t_rawq
, TTYHOG
, TTYHOG
);
270 thread_funnel_set(kernel_flock
, funnel_state
);
275 * Handle close() on a tty line: flush and set to initial state,
276 * bumping generation number so that pending read/write calls
277 * can detect recycling of the tty.
278 * XXX our caller should have done `spltty(); l_close(); ttyclose();'
279 * and l_close() should have flushed, but we repeat the spltty() and
280 * the flush in case there are buggy callers.
284 register struct tty
*tp
;
297 * Closing current console tty; disable printing of console
298 * messages at bottom-level driver.
300 (*cdevsw
[major(tp
->t_dev
)].d_ioctl
)
301 (tp
->t_dev
, KMIOCDISABLCONS
, NULL
, 0, current_proc());
305 ttyflush(tp
, FREAD
| FWRITE
);
307 clist_free_cblocks(&tp
->t_canq
);
308 clist_free_cblocks(&tp
->t_outq
);
309 clist_free_cblocks(&tp
->t_rawq
);
313 if (ISSET(tp
->t_state
, TS_SNOOP
) && tp
->t_sc
!= NULL
)
314 snpdown((struct snoop
*)tp
->t_sc
);
318 tp
->t_line
= TTYDISC
;
320 tp
->t_session
= NULL
;
323 selthreadclear(&tp
->t_wsel
);
324 selthreadclear(&tp
->t_rsel
);
330 #define FLUSHQ(q) { \
332 ndflush(q, (q)->c_cc); \
335 /* Is 'c' a line delimiter ("break" character)? */
336 #define TTBREAKC(c, lflag) \
337 ((c) == '\n' || (((c) == cc[VEOF] || \
338 (c) == cc[VEOL] || ((c) == cc[VEOL2] && lflag & IEXTEN)) && \
339 (c) != _POSIX_VDISABLE))
342 * Process input of a single character received on a tty.
347 register struct tty
*tp
;
349 register tcflag_t iflag
, lflag
;
352 boolean_t funnel_state
;
354 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
357 * If input is pending take it first.
360 if (ISSET(lflag
, PENDIN
))
365 if (ISSET(lflag
, ICANON
)) {
375 * Block further input iff:
376 * current input > threshold AND input is available to user program
377 * AND input flow control is enabled and not yet invoked.
378 * The 3 is slop for PARMRK.
381 if (tp
->t_rawq
.c_cc
+ tp
->t_canq
.c_cc
> I_HIGH_WATER
- 3 &&
382 (!ISSET(lflag
, ICANON
) || tp
->t_canq
.c_cc
!= 0) &&
383 (ISSET(tp
->t_cflag
, CRTS_IFLOW
) || ISSET(iflag
, IXOFF
)) &&
384 !ISSET(tp
->t_state
, TS_TBLOCK
))
387 /* Handle exceptional conditions (break, parity, framing). */
389 err
= (ISSET(c
, TTY_ERRORMASK
));
391 CLR(c
, TTY_ERRORMASK
);
392 if (ISSET(err
, TTY_BI
)) {
393 if (ISSET(iflag
, IGNBRK
)) {
394 thread_funnel_set(kernel_flock
, funnel_state
);
397 if (ISSET(iflag
, BRKINT
)) {
398 ttyflush(tp
, FREAD
| FWRITE
);
399 pgsignal(tp
->t_pgrp
, SIGINT
, 1);
402 if (ISSET(iflag
, PARMRK
))
404 } else if ((ISSET(err
, TTY_PE
) && ISSET(iflag
, INPCK
))
405 || ISSET(err
, TTY_FE
)) {
406 if (ISSET(iflag
, IGNPAR
)) {
407 thread_funnel_set(kernel_flock
, funnel_state
);
410 else if (ISSET(iflag
, PARMRK
)) {
412 if (tp
->t_rawq
.c_cc
+ tp
->t_canq
.c_cc
>
415 (void)putc(0377 | TTY_QUOTE
, &tp
->t_rawq
);
416 (void)putc(0 | TTY_QUOTE
, &tp
->t_rawq
);
417 (void)putc(c
| TTY_QUOTE
, &tp
->t_rawq
);
424 if (!ISSET(tp
->t_state
, TS_TYPEN
) && ISSET(iflag
, ISTRIP
))
426 if (!ISSET(lflag
, EXTPROC
)) {
428 * Check for literal nexting very first
430 if (ISSET(tp
->t_state
, TS_LNCH
)) {
432 CLR(tp
->t_state
, TS_LNCH
);
435 * Scan for special characters. This code
436 * is really just a big case statement with
437 * non-constant cases. The bottom of the
438 * case statement is labeled ``endcase'', so goto
439 * it after a case match, or similar.
443 * Control chars which aren't controlled
444 * by ICANON, ISIG, or IXON.
446 if (ISSET(lflag
, IEXTEN
)) {
447 if (CCEQ(cc
[VLNEXT
], c
)) {
448 if (ISSET(lflag
, ECHO
)) {
449 if (ISSET(lflag
, ECHOE
)) {
450 (void)ttyoutput('^', tp
);
451 (void)ttyoutput('\b', tp
);
455 SET(tp
->t_state
, TS_LNCH
);
458 if (CCEQ(cc
[VDISCARD
], c
)) {
459 if (ISSET(lflag
, FLUSHO
))
460 CLR(tp
->t_lflag
, FLUSHO
);
462 ttyflush(tp
, FWRITE
);
464 if (tp
->t_rawq
.c_cc
+ tp
->t_canq
.c_cc
)
466 SET(tp
->t_lflag
, FLUSHO
);
474 if (ISSET(lflag
, ISIG
)) {
475 if (CCEQ(cc
[VINTR
], c
) || CCEQ(cc
[VQUIT
], c
)) {
476 if (!ISSET(lflag
, NOFLSH
))
477 ttyflush(tp
, FREAD
| FWRITE
);
480 CCEQ(cc
[VINTR
], c
) ? SIGINT
: SIGQUIT
, 1);
483 if (CCEQ(cc
[VSUSP
], c
)) {
484 if (!ISSET(lflag
, NOFLSH
))
487 pgsignal(tp
->t_pgrp
, SIGTSTP
, 1);
492 * Handle start/stop characters.
494 if (ISSET(iflag
, IXON
)) {
495 if (CCEQ(cc
[VSTOP
], c
)) {
496 if (!ISSET(tp
->t_state
, TS_TTSTOP
)) {
497 SET(tp
->t_state
, TS_TTSTOP
);
499 thread_funnel_set(kernel_flock
, funnel_state
);
502 if (!CCEQ(cc
[VSTART
], c
)) {
503 thread_funnel_set(kernel_flock
, funnel_state
);
507 * if VSTART == VSTOP then toggle
511 if (CCEQ(cc
[VSTART
], c
))
515 * IGNCR, ICRNL, & INLCR
518 if (ISSET(iflag
, IGNCR
)) {
519 thread_funnel_set(kernel_flock
, funnel_state
);
522 else if (ISSET(iflag
, ICRNL
))
524 } else if (c
== '\n' && ISSET(iflag
, INLCR
))
527 if (!ISSET(tp
->t_lflag
, EXTPROC
) && ISSET(lflag
, ICANON
)) {
529 * From here on down canonical mode character
530 * processing takes place.
535 if (CCEQ(cc
[VERASE
], c
)) {
537 ttyrub(unputc(&tp
->t_rawq
), tp
);
543 if (CCEQ(cc
[VKILL
], c
)) {
544 if (ISSET(lflag
, ECHOKE
) &&
545 tp
->t_rawq
.c_cc
== tp
->t_rocount
&&
546 !ISSET(lflag
, ECHOPRT
))
547 while (tp
->t_rawq
.c_cc
)
548 ttyrub(unputc(&tp
->t_rawq
), tp
);
551 if (ISSET(lflag
, ECHOK
) ||
552 ISSET(lflag
, ECHOKE
))
557 CLR(tp
->t_state
, TS_LOCAL
);
563 if (CCEQ(cc
[VWERASE
], c
) && ISSET(lflag
, IEXTEN
)) {
569 while ((c
= unputc(&tp
->t_rawq
)) == ' ' || c
== '\t')
574 * erase last char of word and remember the
575 * next chars type (for ALTWERASE)
578 c
= unputc(&tp
->t_rawq
);
581 if (c
== ' ' || c
== '\t') {
582 (void)putc(c
, &tp
->t_rawq
);
591 c
= unputc(&tp
->t_rawq
);
594 } while (c
!= ' ' && c
!= '\t' &&
595 (!ISSET(lflag
, ALTWERASE
) || ISALPHA(c
) == ctype
));
596 (void)putc(c
, &tp
->t_rawq
);
602 if (CCEQ(cc
[VREPRINT
], c
) && ISSET(lflag
, IEXTEN
)) {
607 * ^T - kernel info and generate SIGINFO
609 if (CCEQ(cc
[VSTATUS
], c
) && ISSET(lflag
, IEXTEN
)) {
610 if (ISSET(lflag
, ISIG
))
611 pgsignal(tp
->t_pgrp
, SIGINFO
, 1);
612 if (!ISSET(lflag
, NOKERNINFO
))
618 * Check for input buffer overflow
620 if (tp
->t_rawq
.c_cc
+ tp
->t_canq
.c_cc
>= MAX_INPUT
) {
622 if (ISSET(iflag
, IMAXBEL
)) {
623 if (tp
->t_outq
.c_cc
< tp
->t_hiwat
)
624 (void)ttyoutput(CTRL('g'), tp
);
629 if ( c
== 0377 && ISSET(iflag
, PARMRK
) && !ISSET(iflag
, ISTRIP
)
630 && ISSET(iflag
, IGNBRK
|IGNPAR
) != (IGNBRK
|IGNPAR
))
631 (void)putc(0377 | TTY_QUOTE
, &tp
->t_rawq
);
634 * Put data char in q for user and
635 * wakeup on seeing a line delimiter.
637 if (putc(c
, &tp
->t_rawq
) >= 0) {
638 if (!ISSET(lflag
, ICANON
)) {
643 if (TTBREAKC(c
, lflag
)) {
645 catq(&tp
->t_rawq
, &tp
->t_canq
);
647 } else if (tp
->t_rocount
++ == 0)
648 tp
->t_rocol
= tp
->t_column
;
649 if (ISSET(tp
->t_state
, TS_ERASE
)) {
651 * end of prterase \.../
653 CLR(tp
->t_state
, TS_ERASE
);
654 (void)ttyoutput('/', tp
);
658 if (CCEQ(cc
[VEOF
], c
) && ISSET(lflag
, ECHO
)) {
660 * Place the cursor over the '^' of the ^D.
662 i
= min(2, tp
->t_column
- i
);
664 (void)ttyoutput('\b', tp
);
671 * IXANY means allow any character to restart output.
673 if (ISSET(tp
->t_state
, TS_TTSTOP
) &&
674 !ISSET(iflag
, IXANY
) && cc
[VSTART
] != cc
[VSTOP
]) {
675 thread_funnel_set(kernel_flock
, funnel_state
);
679 CLR(tp
->t_lflag
, FLUSHO
);
680 CLR(tp
->t_state
, TS_TTSTOP
);
682 retval
= ttstart(tp
);
683 thread_funnel_set(kernel_flock
, funnel_state
);
688 * Output a single character on a tty, doing output processing
689 * as needed (expanding tabs, newline processing, etc.).
690 * Returns < 0 if succeeds, otherwise returns char to resend.
696 register struct tty
*tp
;
698 register tcflag_t oflag
;
702 if (!ISSET(oflag
, OPOST
)) {
703 if (ISSET(tp
->t_lflag
, FLUSHO
))
705 if (putc(c
, &tp
->t_outq
))
712 * Do tab expansion if OXTABS is set. Special case if we external
713 * processing, we don't do the tab expansion because we'll probably
714 * get it wrong. If tab expansion needs to be done, let it happen
717 CLR(c
, ~TTY_CHARMASK
);
719 ISSET(oflag
, OXTABS
) && !ISSET(tp
->t_lflag
, EXTPROC
)) {
720 c
= 8 - (tp
->t_column
& 7);
721 if (!ISSET(tp
->t_lflag
, FLUSHO
)) {
722 s
= spltty(); /* Don't interrupt tabs. */
723 c
-= b_to_q(" ", c
, &tp
->t_outq
);
729 return (c
? -1 : '\t');
731 if (c
== CEOT
&& ISSET(oflag
, ONOEOT
))
735 * Newline translation: if ONLCR is set,
736 * translate newline into "\r\n".
738 if (c
== '\n' && ISSET(tp
->t_oflag
, ONLCR
)) {
741 if (putc('\r', &tp
->t_outq
))
746 if (!ISSET(tp
->t_lflag
, FLUSHO
) && putc(c
, &tp
->t_outq
))
765 col
= (col
+ 8) & ~7;
773 * Ioctls for all tty devices. Called after line-discipline specific ioctl
774 * has been called to do discipline-specific functions and/or reject any
775 * of these ioctl commands.
780 ttioctl(tp
, cmd
, data
, flag
)
781 register struct tty
*tp
;
785 ttioctl(tp
, cmd
, data
, flag
, p
)
786 register struct tty
*tp
;
794 register struct proc
*p
= curproc
; /* XXX */
798 /* If the ioctl involves modification, hang if in the background. */
811 #if defined(COMPAT_43) || defined(COMPAT_SUNOS)
821 while (isbackground(p
, tp
) &&
822 (p
->p_flag
& P_PPWAIT
) == 0 &&
823 (p
->p_sigignore
& sigmask(SIGTTOU
)) == 0 &&
824 (p
->p_sigmask
& sigmask(SIGTTOU
)) == 0) {
825 if (p
->p_pgrp
->pg_jobc
== 0)
827 pgsignal(p
->p_pgrp
, SIGTTOU
, 1);
828 error
= ttysleep(tp
, &lbolt
, TTOPRI
| PCATCH
| PTTYBLOCK
, "ttybg1",
836 switch (cmd
) { /* Process the ioctl. */
837 case FIOASYNC
: /* set/clear async i/o */
840 SET(tp
->t_state
, TS_ASYNC
);
842 CLR(tp
->t_state
, TS_ASYNC
);
845 case FIONBIO
: /* set/clear non-blocking i/o */
846 break; /* XXX: delete. */
847 case FIONREAD
: /* get # bytes to read */
849 *(int *)data
= ttnread(tp
);
852 case TIOCEXCL
: /* set exclusive use of tty */
854 SET(tp
->t_state
, TS_XCLUDE
);
857 case TIOCFLUSH
: { /* flush buffers */
858 register int flags
= *(int *)data
;
861 flags
= FREAD
| FWRITE
;
863 flags
&= FREAD
| FWRITE
;
869 /* Set current console device to this line */
871 data
= (caddr_t
) &bogusData
;
873 /* No break - Fall through to BSD code */
876 case TIOCCONS
: { /* become virtual console */
878 if (constty
&& constty
!= tp
&&
879 ISSET(constty
->t_state
, TS_CONNECTED
)) {
882 #if defined(NeXT) || !defined(UCONSOLE)
883 if ( (error
= suser(p
->p_ucred
, &p
->p_acflag
)) )
887 } else if (tp
== constty
) {
892 (*cdevsw
[major(cons
.t_dev
)].d_ioctl
)
893 (cons
.t_dev
, KMIOCDISABLCONS
, NULL
, 0, p
);
895 (*cdevsw
[major(tp
->t_dev
)].d_ioctl
)
896 (tp
->t_dev
, KMIOCDISABLCONS
, NULL
, 0, p
);
901 case TIOCDRAIN
: /* wait till output drained */
906 case TIOCGETA
: { /* get termios struct */
907 struct termios
*t
= (struct termios
*)data
;
909 bcopy(&tp
->t_termios
, t
, sizeof(struct termios
));
912 case TIOCGETD
: /* get line discipline */
913 *(int *)data
= tp
->t_line
;
915 case TIOCGWINSZ
: /* get window size */
916 *(struct winsize
*)data
= tp
->t_winsize
;
918 case TIOCGPGRP
: /* get pgrp of tty */
921 *(int *)data
= tp
->t_pgrp
? tp
->t_pgrp
->pg_id
: NO_PID
;
924 case TIOCHPCL
: /* hang up on last close */
926 SET(tp
->t_cflag
, HUPCL
);
930 case TIOCNXCL
: /* reset exclusive use of tty */
932 CLR(tp
->t_state
, TS_XCLUDE
);
935 case TIOCOUTQ
: /* output queue size */
936 *(int *)data
= tp
->t_outq
.c_cc
;
938 case TIOCSETA
: /* set termios struct */
939 case TIOCSETAW
: /* drain output, set */
940 case TIOCSETAF
: { /* drn out, fls in, set */
941 register struct termios
*t
= (struct termios
*)data
;
943 if (t
->c_ispeed
< 0 || t
->c_ospeed
< 0)
946 if (cmd
== TIOCSETAW
|| cmd
== TIOCSETAF
) {
952 if (cmd
== TIOCSETAF
)
955 if (!ISSET(t
->c_cflag
, CIGNORE
)) {
957 * Set device hardware.
959 if (tp
->t_param
&& (error
= (*tp
->t_param
)(tp
, t
))) {
963 if (ISSET(t
->c_cflag
, CLOCAL
) &&
964 !ISSET(tp
->t_cflag
, CLOCAL
)) {
966 * XXX disconnections would be too hard to
967 * get rid of without this kludge. The only
968 * way to get rid of controlling terminals
969 * is to exit from the session leader.
971 CLR(tp
->t_state
, TS_ZOMBIE
);
973 wakeup(TSA_CARR_ON(tp
));
977 if ((ISSET(tp
->t_state
, TS_CARR_ON
) ||
978 ISSET(t
->c_cflag
, CLOCAL
)) &&
979 !ISSET(tp
->t_state
, TS_ZOMBIE
))
980 SET(tp
->t_state
, TS_CONNECTED
);
982 CLR(tp
->t_state
, TS_CONNECTED
);
983 tp
->t_cflag
= t
->c_cflag
;
984 tp
->t_ispeed
= t
->c_ispeed
;
985 tp
->t_ospeed
= t
->c_ospeed
;
988 if (ISSET(t
->c_lflag
, ICANON
) != ISSET(tp
->t_lflag
, ICANON
) &&
990 if (ISSET(t
->c_lflag
, ICANON
))
991 SET(tp
->t_lflag
, PENDIN
);
994 * XXX we really shouldn't allow toggling
995 * ICANON while we're in a non-termios line
996 * discipline. Now we have to worry about
997 * panicing for a null queue.
1000 if (tp
->t_canq
.c_cbreserved
> 0 &&
1001 tp
->t_rawq
.c_cbreserved
> 0) {
1002 catq(&tp
->t_rawq
, &tp
->t_canq
);
1004 * XXX the queue limits may be
1005 * different, so the old queue
1006 * swapping method no longer works.
1008 catq(&tp
->t_canq
, &tp
->t_rawq
);
1011 if (tp
->t_rawq
.c_cs
&& tp
->t_canq
.c_cs
) {
1014 catq(&tp
->t_rawq
, &tp
->t_canq
);
1016 tp
->t_rawq
= tp
->t_canq
;
1020 CLR(tp
->t_lflag
, PENDIN
);
1024 tp
->t_iflag
= t
->c_iflag
;
1025 tp
->t_oflag
= t
->c_oflag
;
1027 * Make the EXTPROC bit read only.
1029 if (ISSET(tp
->t_lflag
, EXTPROC
))
1030 SET(t
->c_lflag
, EXTPROC
);
1032 CLR(t
->c_lflag
, EXTPROC
);
1033 tp
->t_lflag
= t
->c_lflag
| ISSET(tp
->t_lflag
, PENDIN
);
1034 if (t
->c_cc
[VMIN
] != tp
->t_cc
[VMIN
] ||
1035 t
->c_cc
[VTIME
] != tp
->t_cc
[VTIME
])
1037 bcopy(t
->c_cc
, tp
->t_cc
, sizeof(t
->c_cc
));
1041 case TIOCSETD
: { /* set line discipline */
1042 register int t
= *(int *)data
;
1043 dev_t device
= tp
->t_dev
;
1046 if ((u_int
)t
>= nlinesw
)
1048 if (t
!= tp
->t_line
) {
1050 (*linesw
[tp
->t_line
].l_close
)(tp
, flag
);
1051 error
= (*linesw
[t
].l_open
)(device
, tp
);
1053 (void)(*linesw
[tp
->t_line
].l_open
)(device
, tp
);
1062 case TIOCSTART
: /* start output, like ^Q */
1064 if (ISSET(tp
->t_state
, TS_TTSTOP
) ||
1065 ISSET(tp
->t_lflag
, FLUSHO
)) {
1066 CLR(tp
->t_lflag
, FLUSHO
);
1067 CLR(tp
->t_state
, TS_TTSTOP
);
1072 case TIOCSTI
: /* simulate terminal input */
1073 if (p
->p_ucred
->cr_uid
&& (flag
& FREAD
) == 0)
1075 if (p
->p_ucred
->cr_uid
&& !isctty(p
, tp
))
1078 (*linesw
[tp
->t_line
].l_rint
)(*(u_char
*)data
, tp
);
1081 case TIOCSTOP
: /* stop output, like ^S */
1083 if (!ISSET(tp
->t_state
, TS_TTSTOP
)) {
1084 SET(tp
->t_state
, TS_TTSTOP
);
1089 case TIOCSCTTY
: /* become controlling tty */
1090 /* Session ctty vnode pointer set in vnode layer. */
1091 if (!SESS_LEADER(p
) ||
1092 ((p
->p_session
->s_ttyvp
|| tp
->t_session
) &&
1093 (tp
->t_session
!= p
->p_session
)))
1095 tp
->t_session
= p
->p_session
;
1096 tp
->t_pgrp
= p
->p_pgrp
;
1097 p
->p_session
->s_ttyp
= tp
;
1098 p
->p_flag
|= P_CONTROLT
;
1100 case TIOCSPGRP
: { /* set pgrp of tty */
1101 register struct pgrp
*pgrp
= pgfind(*(int *)data
);
1105 else if (pgrp
== NULL
|| pgrp
->pg_session
!= p
->p_session
)
1110 case TIOCSTAT
: /* simulate control-T */
1115 case TIOCSWINSZ
: /* set window size */
1116 if (bcmp((caddr_t
)&tp
->t_winsize
, data
,
1117 sizeof (struct winsize
))) {
1118 tp
->t_winsize
= *(struct winsize
*)data
;
1119 pgsignal(tp
->t_pgrp
, SIGWINCH
, 1);
1122 case TIOCSDRAINWAIT
:
1123 error
= suser(p
->p_ucred
, &p
->p_acflag
);
1126 tp
->t_timeout
= *(int *)data
* hz
;
1127 wakeup(TSA_OCOMPLETE(tp
));
1128 wakeup(TSA_OLOWAT(tp
));
1130 case TIOCGDRAINWAIT
:
1131 *(int *)data
= tp
->t_timeout
/ hz
;
1134 #if defined(COMPAT_43) || defined(COMPAT_SUNOS)
1136 return (ttcompat(tp
, cmd
, data
, flag
, p
));
1138 return (ttcompat(tp
, cmd
, data
, flag
));
1149 ttyselect(tp
, rw
, wql
, p
)
1163 if (ttnread(tp
) > 0 || ISSET(tp
->t_state
, TS_ZOMBIE
))
1165 selrecord(p
, &tp
->t_rsel
, wql
);
1168 if ((tp
->t_outq
.c_cc
<= tp
->t_lowat
&&
1169 ISSET(tp
->t_state
, TS_CONNECTED
))
1170 || ISSET(tp
->t_state
, TS_ZOMBIE
)) {
1174 selrecord(p
, &tp
->t_wsel
, wql
);
1182 * This is a wrapper for compatibility with the select vector used by
1183 * cdevsw. It relies on a proper xxxdevtotty routine.
1186 ttselect(dev
, rw
, wql
, p
)
1193 return ttyselect((*cdevsw
[major(dev
)]->d_devtotty
)(dev
), rw
, wql
, p
);
1195 return ttyselect(cdevsw
[major(dev
)].d_ttys
[minor(dev
)], rw
, wql
, p
);
1200 * Must be called at spltty().
1208 if (ISSET(tp
->t_lflag
, PENDIN
))
1210 nread
= tp
->t_canq
.c_cc
;
1211 if (!ISSET(tp
->t_lflag
, ICANON
)) {
1212 nread
+= tp
->t_rawq
.c_cc
;
1213 if (nread
< tp
->t_cc
[VMIN
] && tp
->t_cc
[VTIME
] == 0)
1220 * Wait for output to drain.
1224 register struct tty
*tp
;
1230 while ((tp
->t_outq
.c_cc
|| ISSET(tp
->t_state
, TS_BUSY
)) &&
1231 ISSET(tp
->t_state
, TS_CONNECTED
) && tp
->t_oproc
) {
1233 if ((tp
->t_outq
.c_cc
|| ISSET(tp
->t_state
, TS_BUSY
)) &&
1234 ISSET(tp
->t_state
, TS_CONNECTED
)) {
1235 SET(tp
->t_state
, TS_SO_OCOMPLETE
);
1236 error
= ttysleep(tp
, TSA_OCOMPLETE(tp
),
1237 TTOPRI
| PCATCH
, "ttywai",
1240 if (error
== EWOULDBLOCK
)
1247 if (!error
&& (tp
->t_outq
.c_cc
|| ISSET(tp
->t_state
, TS_BUSY
)))
1258 #ifdef sun4c /* XXX */
1259 (*tp
->t_stop
)(tp
, rw
);
1261 (*cdevsw
[major(tp
->t_dev
)].d_stop
)(tp
, rw
);
1263 (*cdevsw
[major(tp
->t_dev
)]->d_stop
)(tp
, rw
);
1268 * Flush if successfully wait.
1276 if ((error
= ttywait(tp
)) == 0)
1277 ttyflush(tp
, FREAD
);
1282 * Flush tty read and/or write queues, notifying anyone waiting.
1286 register struct tty
*tp
;
1296 FLUSHQ(&tp
->t_outq
);
1297 CLR(tp
->t_state
, TS_TTSTOP
);
1301 FLUSHQ(&tp
->t_canq
);
1302 FLUSHQ(&tp
->t_rawq
);
1303 CLR(tp
->t_lflag
, PENDIN
);
1306 CLR(tp
->t_state
, TS_LOCAL
);
1308 if (ISSET(tp
->t_state
, TS_TBLOCK
)) {
1310 FLUSHQ(&tp
->t_outq
);
1314 * Don't let leave any state that might clobber the
1315 * next line discipline (although we should do more
1316 * to send the START char). Not clearing the state
1317 * may have caused the "putc to a clist with no
1318 * reserved cblocks" panic/printf.
1320 CLR(tp
->t_state
, TS_TBLOCK
);
1322 #if 0 /* forget it, sleeping isn't always safe and we don't know when it is */
1323 if (ISSET(tp
->t_iflag
, IXOFF
)) {
1325 * XXX wait a bit in the hope that the stop
1326 * character (if any) will go out. Waiting
1327 * isn't good since it allows races. This
1328 * will be fixed when the stop character is
1329 * put in a special queue. Don't bother with
1330 * the checks in ttywait() since the timeout
1333 SET(tp
->t_state
, TS_SO_OCOMPLETE
);
1334 ttysleep(tp
, TSA_OCOMPLETE(tp
), TTOPRI
,
1337 * Don't try sending the stop character again.
1339 CLR(tp
->t_state
, TS_TBLOCK
);
1346 FLUSHQ(&tp
->t_outq
);
1353 * Copy in the default termios characters.
1360 bcopy(ttydefchars
, t
->c_cc
, sizeof t
->c_cc
);
1371 termioschars(&tp
->t_termios
);
1375 * Handle input high water. Send stop character for the IXOFF case. Turn
1376 * on our input flow control bit and propagate the changes to the driver.
1377 * XXX the stop character should be put in a special high priority queue.
1384 SET(tp
->t_state
, TS_TBLOCK
);
1385 if (ISSET(tp
->t_iflag
, IXOFF
) && tp
->t_cc
[VSTOP
] != _POSIX_VDISABLE
&&
1386 putc(tp
->t_cc
[VSTOP
], &tp
->t_outq
) != 0)
1387 CLR(tp
->t_state
, TS_TBLOCK
); /* try again later */
1392 * Handle input low water. Send start character for the IXOFF case. Turn
1393 * off our input flow control bit and propagate the changes to the driver.
1394 * XXX the start character should be put in a special high priority queue.
1401 CLR(tp
->t_state
, TS_TBLOCK
);
1402 if (ISSET(tp
->t_iflag
, IXOFF
) && tp
->t_cc
[VSTART
] != _POSIX_VDISABLE
&&
1403 putc(tp
->t_cc
[VSTART
], &tp
->t_outq
) != 0)
1404 SET(tp
->t_state
, TS_TBLOCK
); /* try again later */
1408 #if defined(NeXT) || defined(notyet)
1409 /* FreeBSD: Not used by any current (i386) drivers. */
1411 * Restart after an inter-char delay.
1427 CLR(tp
->t_state
, TS_TIMEOUT
);
1432 #endif /* NeXT || notyet */
1438 boolean_t funnel_state
;
1440 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
1442 if (tp
->t_oproc
!= NULL
) /* XXX: Kludge for pty. */
1444 thread_funnel_set(kernel_flock
, funnel_state
);
1449 * "close" a line discipline
1456 boolean_t funnel_state
;
1458 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
1459 if ( (flag
& FNONBLOCK
) || ttywflush(tp
))
1460 ttyflush(tp
, FREAD
| FWRITE
);
1461 thread_funnel_set(kernel_flock
, funnel_state
);
1466 * Handle modem control transition on a tty.
1467 * Flag indicates new state of carrier.
1468 * Returns 0 if the line should be turned off, otherwise 1.
1472 register struct tty
*tp
;
1475 boolean_t funnel_state
;
1477 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
1479 if (ISSET(tp
->t_state
, TS_CARR_ON
) && ISSET(tp
->t_cflag
, MDMBUF
)) {
1481 * MDMBUF: do flow control according to carrier flag
1482 * XXX TS_CAR_OFLOW doesn't do anything yet. TS_TTSTOP
1483 * works if IXON and IXANY are clear.
1486 CLR(tp
->t_state
, TS_CAR_OFLOW
);
1487 CLR(tp
->t_state
, TS_TTSTOP
);
1489 } else if (!ISSET(tp
->t_state
, TS_CAR_OFLOW
)) {
1490 SET(tp
->t_state
, TS_CAR_OFLOW
);
1491 SET(tp
->t_state
, TS_TTSTOP
);
1494 } else if (flag
== 0) {
1498 CLR(tp
->t_state
, TS_CARR_ON
);
1499 if (ISSET(tp
->t_state
, TS_ISOPEN
) &&
1500 !ISSET(tp
->t_cflag
, CLOCAL
)) {
1501 SET(tp
->t_state
, TS_ZOMBIE
);
1502 CLR(tp
->t_state
, TS_CONNECTED
);
1503 if (tp
->t_session
&& tp
->t_session
->s_leader
)
1504 psignal(tp
->t_session
->s_leader
, SIGHUP
);
1505 ttyflush(tp
, FREAD
| FWRITE
);
1506 thread_funnel_set(kernel_flock
, funnel_state
);
1513 SET(tp
->t_state
, TS_CARR_ON
);
1514 if (!ISSET(tp
->t_state
, TS_ZOMBIE
))
1515 SET(tp
->t_state
, TS_CONNECTED
);
1516 wakeup(TSA_CARR_ON(tp
));
1520 thread_funnel_set(kernel_flock
, funnel_state
);
1525 * Reinput pending characters after state switch
1530 register struct tty
*tp
;
1535 CLR(tp
->t_lflag
, PENDIN
);
1536 SET(tp
->t_state
, TS_TYPEN
);
1539 * XXX this assumes too much about clist internals. It may even
1540 * fail if the cblock slush pool is empty. We can't allocate more
1541 * cblocks here because we are called from an interrupt handler
1542 * and clist_alloc_cblocks() can wait.
1545 bzero(&tp
->t_rawq
, sizeof tp
->t_rawq
);
1546 tp
->t_rawq
.c_cbmax
= tq
.c_cbmax
;
1547 tp
->t_rawq
.c_cbreserved
= tq
.c_cbreserved
;
1550 tp
->t_rawq
.c_cc
= 0;
1551 tp
->t_rawq
.c_cf
= tp
->t_rawq
.c_cl
= 0;
1553 while ((c
= getc(&tq
)) >= 0)
1555 CLR(tp
->t_state
, TS_TYPEN
);
1559 * Process a read call on a tty device.
1562 ttread(tp
, uio
, flag
)
1563 register struct tty
*tp
;
1567 register struct clist
*qp
;
1569 register tcflag_t lflag
;
1570 register cc_t
*cc
= tp
->t_cc
;
1571 register struct proc
*p
= current_proc();
1572 int s
, first
, error
= 0;
1573 int has_etime
= 0, last_cc
= 0;
1574 long slp
= 0; /* XXX this should be renamed `timo'. */
1575 boolean_t funnel_state
;
1577 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
1580 lflag
= tp
->t_lflag
;
1582 * take pending input first
1584 if (ISSET(lflag
, PENDIN
)) {
1586 splx(s
); /* reduce latency */
1588 lflag
= tp
->t_lflag
; /* XXX ttypend() clobbers it */
1592 * Hang process if it's in the background.
1594 if (isbackground(p
, tp
)) {
1596 if ((p
->p_sigignore
& sigmask(SIGTTIN
)) ||
1597 (p
->p_sigmask
& sigmask(SIGTTIN
)) ||
1598 p
->p_flag
& P_PPWAIT
|| p
->p_pgrp
->pg_jobc
== 0) {
1599 thread_funnel_set(kernel_flock
, funnel_state
);
1602 pgsignal(p
->p_pgrp
, SIGTTIN
, 1);
1603 error
= ttysleep(tp
, &lbolt
, TTIPRI
| PCATCH
| PTTYBLOCK
, "ttybg2", 0);
1605 thread_funnel_set(kernel_flock
, funnel_state
);
1611 if (ISSET(tp
->t_state
, TS_ZOMBIE
)) {
1613 thread_funnel_set(kernel_flock
, funnel_state
);
1614 return (0); /* EOF */
1618 * If canonical, use the canonical queue,
1619 * else use the raw queue.
1621 * (should get rid of clists...)
1623 qp
= ISSET(lflag
, ICANON
) ? &tp
->t_canq
: &tp
->t_rawq
;
1625 if (flag
& IO_NDELAY
) {
1628 if (!ISSET(lflag
, ICANON
) && cc
[VMIN
] == 0) {
1630 thread_funnel_set(kernel_flock
, funnel_state
);
1634 thread_funnel_set(kernel_flock
, funnel_state
);
1635 return (EWOULDBLOCK
);
1637 if (!ISSET(lflag
, ICANON
)) {
1640 struct timeval etime
, timecopy
;
1644 * Check each of the four combinations.
1645 * (m > 0 && t == 0) is the normal read case.
1646 * It should be fairly efficient, so we check that and its
1647 * companion case (m == 0 && t == 0) first.
1648 * For the other two cases, we compute the target sleep time
1657 /* m, t and qp->c_cc are all 0. 0 is enough input. */
1659 thread_funnel_set(kernel_flock
, funnel_state
);
1662 t
*= 100000; /* time in us */
1663 #define diff(t1, t2) (((t1).tv_sec - (t2).tv_sec) * 1000000 + \
1664 ((t1).tv_usec - (t2).tv_usec))
1674 /* first character, start timer */
1677 etime
.tv_sec
= t
/ 1000000;
1678 etime
.tv_usec
= (t
- (etime
.tv_sec
* 1000000));
1679 timeradd(&etime
, &timecopy
, &etime
);
1682 } else if (qp
->c_cc
> last_cc
) {
1683 /* got a character, restart timer */
1685 etime
.tv_sec
= t
/ 1000000;
1686 etime
.tv_usec
= (t
- (etime
.tv_sec
* 1000000));
1687 timeradd(&etime
, &timecopy
, &etime
);
1691 /* nothing, check expiration */
1692 if (timercmp(&etime
, &timecopy
, <=))
1695 slp
= diff(etime
, timecopy
);
1698 } else { /* m == 0 */
1707 etime
.tv_sec
= t
/ 1000000;
1708 etime
.tv_usec
= (t
- (etime
.tv_sec
* 1000000));
1709 timeradd(&etime
, &timecopy
, &etime
);
1713 if (timercmp(&etime
, &timecopy
, <=)) {
1714 /* Timed out, but 0 is enough input. */
1716 thread_funnel_set(kernel_flock
, funnel_state
);
1719 slp
= diff(etime
, timecopy
);
1724 * Rounding down may make us wake up just short
1725 * of the target, so we round up.
1726 * The formula is ceiling(slp * hz/1000000).
1727 * 32-bit arithmetic is enough for hz < 169.
1728 * XXX see hzto() for how to avoid overflow if hz
1729 * is large (divide by `tick' and/or arrange to
1730 * use hzto() if hz is large).
1732 slp
= (long) (((u_long
)slp
* hz
) + 999999) / 1000000;
1735 if (qp
->c_cc
<= 0) {
1738 * There is no input, or not enough input and we can block.
1740 error
= ttysleep(tp
, TSA_HUP_OR_INPUT(tp
), TTIPRI
| PCATCH
,
1741 ISSET(tp
->t_state
, TS_CONNECTED
) ?
1742 "ttyin" : "ttyhup", (int)slp
);
1744 if (error
== EWOULDBLOCK
)
1747 thread_funnel_set(kernel_flock
, funnel_state
);
1751 * XXX what happens if another process eats some input
1752 * while we are asleep (not just here)? It would be
1753 * safest to detect changes and reset our state variables
1754 * (has_stime and last_cc).
1762 * Input present, check for input mapping and processing.
1766 if (ISSET(lflag
, ICANON
)
1767 || (ISSET(lflag
, IEXTEN
| ISIG
) == (IEXTEN
| ISIG
)) )
1769 if (ISSET(lflag
, ICANON
| ISIG
))
1776 icc
= min(uio
->uio_resid
, IBUFSIZ
);
1777 icc
= q_to_b(qp
, ibuf
, icc
);
1783 error
= uiomove(ibuf
, icc
, uio
);
1785 * XXX if there was an error then we should ungetc() the
1786 * unmoved chars and reduce icc here.
1789 if (ISSET(tp
->t_lflag
, ECHO
) &&
1790 ISSET(tp
->t_state
, TS_SNOOP
) && tp
->t_sc
!= NULL
)
1791 snpin((struct snoop
*)tp
->t_sc
, ibuf
, icc
);
1795 if (uio
->uio_resid
== 0)
1809 * delayed suspend (^Y)
1811 if (CCEQ(cc
[VDSUSP
], c
) &&
1812 ISSET(lflag
, IEXTEN
| ISIG
) == (IEXTEN
| ISIG
)) {
1813 pgsignal(tp
->t_pgrp
, SIGTSTP
, 1);
1815 error
= ttysleep(tp
, &lbolt
, TTIPRI
| PCATCH
,
1824 * Interpret EOF only in canonical mode.
1826 if (CCEQ(cc
[VEOF
], c
) && ISSET(lflag
, ICANON
))
1829 * Give user character.
1831 error
= ureadc(c
, uio
);
1833 /* XXX should ungetc(c, qp). */
1837 * Only snoop directly on input in echo mode. Non-echoed
1838 * input will be snooped later iff the application echoes it.
1840 if (ISSET(tp
->t_lflag
, ECHO
) &&
1841 ISSET(tp
->t_state
, TS_SNOOP
) && tp
->t_sc
!= NULL
)
1842 snpinc((struct snoop
*)tp
->t_sc
, (char)c
);
1844 if (uio
->uio_resid
== 0)
1847 * In canonical mode check for a "break character"
1848 * marking the end of a "line of input".
1850 if (ISSET(lflag
, ICANON
) && TTBREAKC(c
, lflag
))
1857 * Look to unblock input now that (presumably)
1858 * the input queue has gone down.
1861 if (ISSET(tp
->t_state
, TS_TBLOCK
) &&
1862 tp
->t_rawq
.c_cc
+ tp
->t_canq
.c_cc
<= I_LOW_WATER
)
1866 thread_funnel_set(kernel_flock
, funnel_state
);
1871 * Check the output queue on tp for space for a kernel message (from uprintf
1872 * or tprintf). Allow some space over the normal hiwater mark so we don't
1873 * lose messages due to normal flow control, but don't let the tty run amok.
1874 * Sleeps here are not interruptible, but we return prematurely if new signals
1878 ttycheckoutq(tp
, wait
)
1879 register struct tty
*tp
;
1882 int hiwat
, s
, oldsig
;
1884 hiwat
= tp
->t_hiwat
;
1886 oldsig
= wait
? current_proc()->p_siglist
: 0;
1887 if (tp
->t_outq
.c_cc
> hiwat
+ OBUFSIZ
+ 100)
1888 while (tp
->t_outq
.c_cc
> hiwat
) {
1890 if (tp
->t_outq
.c_cc
<= hiwat
)
1892 if (wait
== 0 || current_proc()->p_siglist
!= oldsig
) {
1896 SET(tp
->t_state
, TS_SO_OLOWAT
);
1897 tsleep(TSA_OLOWAT(tp
), PZERO
- 1, "ttoutq", hz
);
1904 * Process a write call on a tty device.
1907 ttwrite(tp
, uio
, flag
)
1908 register struct tty
*tp
;
1909 register struct uio
*uio
;
1912 register char *cp
= NULL
;
1913 register int cc
, ce
;
1914 register struct proc
*p
;
1915 int i
, hiwat
, cnt
, error
, s
;
1917 boolean_t funnel_state
;
1919 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
1921 hiwat
= tp
->t_hiwat
;
1922 cnt
= uio
->uio_resid
;
1927 if (ISSET(tp
->t_state
, TS_ZOMBIE
)) {
1929 if (uio
->uio_resid
== cnt
)
1933 if (!ISSET(tp
->t_state
, TS_CONNECTED
)) {
1934 if (flag
& IO_NDELAY
) {
1936 error
= EWOULDBLOCK
;
1939 error
= ttysleep(tp
, TSA_CARR_ON(tp
), TTIPRI
| PCATCH
,
1948 * Hang the process if it's in the background.
1951 if (isbackground(p
, tp
) &&
1952 ISSET(tp
->t_lflag
, TOSTOP
) && (p
->p_flag
& P_PPWAIT
) == 0 &&
1953 (p
->p_sigignore
& sigmask(SIGTTOU
)) == 0 &&
1954 (p
->p_sigmask
& sigmask(SIGTTOU
)) == 0) {
1955 if (p
->p_pgrp
->pg_jobc
== 0) {
1959 pgsignal(p
->p_pgrp
, SIGTTOU
, 1);
1960 error
= ttysleep(tp
, &lbolt
, TTIPRI
| PCATCH
| PTTYBLOCK
, "ttybg4", 0);
1966 * Process the user's data in at most OBUFSIZ chunks. Perform any
1967 * output translation. Keep track of high water mark, sleep on
1968 * overflow awaiting device aid in acquiring new space.
1970 while (uio
->uio_resid
> 0 || cc
> 0) {
1971 if (ISSET(tp
->t_lflag
, FLUSHO
)) {
1973 thread_funnel_set(kernel_flock
, funnel_state
);
1976 if (tp
->t_outq
.c_cc
> hiwat
)
1979 * Grab a hunk of data from the user, unless we have some
1980 * leftover from last time.
1983 cc
= min(uio
->uio_resid
, OBUFSIZ
);
1985 error
= uiomove(cp
, cc
, uio
);
1991 if (ISSET(tp
->t_state
, TS_SNOOP
) && tp
->t_sc
!= NULL
)
1992 snpin((struct snoop
*)tp
->t_sc
, cp
, cc
);
1996 * If nothing fancy need be done, grab those characters we
1997 * can handle without any of ttyoutput's processing and
1998 * just transfer them to the output q. For those chars
1999 * which require special processing (as indicated by the
2000 * bits in char_type), call ttyoutput. After processing
2001 * a hunk of data, look for FLUSHO so ^O's will take effect
2005 if (!ISSET(tp
->t_oflag
, OPOST
))
2008 ce
= cc
- scanc((u_int
)cc
, (u_char
*)cp
,
2009 (u_char
*)char_type
, CCLASSMASK
);
2011 * If ce is zero, then we're processing
2012 * a special character through ttyoutput.
2016 if (ttyoutput(*cp
, tp
) >= 0) {
2021 /* No Clists, wait a bit. */
2023 if (flag
& IO_NDELAY
) {
2024 error
= EWOULDBLOCK
;
2027 error
= ttysleep(tp
, &lbolt
,
2037 if (ISSET(tp
->t_lflag
, FLUSHO
) ||
2038 tp
->t_outq
.c_cc
> hiwat
)
2044 * A bunch of normal characters have been found.
2045 * Transfer them en masse to the output queue and
2046 * continue processing at the top of the loop.
2047 * If there are any further characters in this
2048 * <= OBUFSIZ chunk, the first should be a character
2049 * requiring special handling by ttyoutput.
2052 i
= b_to_q(cp
, ce
, &tp
->t_outq
);
2055 cp
+= ce
, cc
-= ce
, tk_nout
+= ce
;
2062 /* No Clists, wait a bit. */
2064 if (flag
& IO_NDELAY
) {
2065 error
= EWOULDBLOCK
;
2068 error
= ttysleep(tp
, &lbolt
, TTOPRI
| PCATCH
,
2075 if (ISSET(tp
->t_lflag
, FLUSHO
) ||
2076 tp
->t_outq
.c_cc
> hiwat
)
2083 * If cc is nonzero, we leave the uio structure inconsistent, as the
2084 * offset and iov pointers have moved forward, but it doesn't matter
2085 * (the call will either return short or restart with a new uio).
2087 uio
->uio_resid
+= cc
;
2088 thread_funnel_set(kernel_flock
, funnel_state
);
2095 * Since we are using ring buffers, if we can't insert any more into
2096 * the output queue, we can assume the ring is full and that someone
2097 * forgot to set the high water mark correctly. We set it and then
2098 * proceed as normal.
2100 hiwat
= tp
->t_outq
.c_cc
- 1;
2107 * This can only occur if FLUSHO is set in t_lflag,
2108 * or if ttstart/oproc is synchronous (or very fast).
2110 if (tp
->t_outq
.c_cc
<= hiwat
) {
2114 if (flag
& IO_NDELAY
) {
2116 uio
->uio_resid
+= cc
;
2117 thread_funnel_set(kernel_flock
, funnel_state
);
2118 return (uio
->uio_resid
== cnt
? EWOULDBLOCK
: 0);
2120 SET(tp
->t_state
, TS_SO_OLOWAT
);
2121 error
= ttysleep(tp
, TSA_OLOWAT(tp
), TTOPRI
| PCATCH
, "ttywri",
2124 if (error
== EWOULDBLOCK
)
2132 * Rubout one character from the rawq of tp
2133 * as cleanly as possible.
2138 register struct tty
*tp
;
2140 register u_char
*cp
;
2141 register int savecol
;
2144 if (!ISSET(tp
->t_lflag
, ECHO
) || ISSET(tp
->t_lflag
, EXTPROC
))
2146 CLR(tp
->t_lflag
, FLUSHO
);
2147 if (ISSET(tp
->t_lflag
, ECHOE
)) {
2148 if (tp
->t_rocount
== 0) {
2150 * Messed up by ttwrite; retype
2155 if (c
== ('\t' | TTY_QUOTE
) || c
== ('\n' | TTY_QUOTE
))
2158 CLR(c
, ~TTY_CHARMASK
);
2159 switch (CCLASS(c
)) {
2168 if (ISSET(tp
->t_lflag
, ECHOCTL
))
2172 if (tp
->t_rocount
< tp
->t_rawq
.c_cc
) {
2177 savecol
= tp
->t_column
;
2178 SET(tp
->t_state
, TS_CNTTB
);
2179 SET(tp
->t_lflag
, FLUSHO
);
2180 tp
->t_column
= tp
->t_rocol
;
2182 cp
= tp
->t_rawq
.c_cf
;
2184 tabc
= *cp
; /* XXX FIX NEXTC */
2185 for (; cp
; cp
= nextc(&tp
->t_rawq
, cp
, &tabc
))
2188 for (cp
= firstc(&tp
->t_rawq
, &tabc
); cp
;
2189 cp
= nextc(&tp
->t_rawq
, cp
, &tabc
))
2192 CLR(tp
->t_lflag
, FLUSHO
);
2193 CLR(tp
->t_state
, TS_CNTTB
);
2196 /* savecol will now be length of the tab. */
2197 savecol
-= tp
->t_column
;
2198 tp
->t_column
+= savecol
;
2200 savecol
= 8; /* overflow fixup */
2201 while (--savecol
>= 0)
2202 (void)ttyoutput('\b', tp
);
2205 #define PANICSTR "ttyrub: would panic c = %d, val = %d\n"
2206 (void)printf(PANICSTR
, c
, CCLASS(c
));
2208 panic(PANICSTR
, c
, CCLASS(c
));
2212 } else if (ISSET(tp
->t_lflag
, ECHOPRT
)) {
2213 if (!ISSET(tp
->t_state
, TS_ERASE
)) {
2214 SET(tp
->t_state
, TS_ERASE
);
2215 (void)ttyoutput('\\', tp
);
2219 ttyecho(tp
->t_cc
[VERASE
], tp
);
2224 * Back over cnt characters, erasing them.
2228 register struct tty
*tp
;
2233 (void)ttyoutput('\b', tp
);
2234 (void)ttyoutput(' ', tp
);
2235 (void)ttyoutput('\b', tp
);
2241 * Reprint the rawq line. Note, it is assumed that c_cc has already
2246 register struct tty
*tp
;
2248 register u_char
*cp
;
2251 /* Echo the reprint character. */
2252 if (tp
->t_cc
[VREPRINT
] != _POSIX_VDISABLE
)
2253 ttyecho(tp
->t_cc
[VREPRINT
], tp
);
2255 (void)ttyoutput('\n', tp
);
2259 * FIX: NEXTC IS BROKEN - DOESN'T CHECK QUOTE
2260 * BIT OF FIRST CHAR.
2264 for (cp
= tp
->t_canq
.c_cf
, c
= (cp
!= NULL
? *cp
: 0);
2265 cp
!= NULL
; cp
= nextc(&tp
->t_canq
, cp
, &c
))
2267 for (cp
= tp
->t_rawq
.c_cf
, c
= (cp
!= NULL
? *cp
: 0);
2268 cp
!= NULL
; cp
= nextc(&tp
->t_rawq
, cp
, &c
))
2271 for (cp
= firstc(&tp
->t_canq
, &c
); cp
; cp
= nextc(&tp
->t_canq
, cp
, &c
))
2273 for (cp
= firstc(&tp
->t_rawq
, &c
); cp
; cp
= nextc(&tp
->t_rawq
, cp
, &c
))
2276 CLR(tp
->t_state
, TS_ERASE
);
2279 tp
->t_rocount
= tp
->t_rawq
.c_cc
;
2284 * Echo a typed character to the terminal.
2289 register struct tty
*tp
;
2292 if (!ISSET(tp
->t_state
, TS_CNTTB
))
2293 CLR(tp
->t_lflag
, FLUSHO
);
2294 if ((!ISSET(tp
->t_lflag
, ECHO
) &&
2295 (c
!= '\n' || !ISSET(tp
->t_lflag
, ECHONL
))) ||
2296 ISSET(tp
->t_lflag
, EXTPROC
))
2298 if (ISSET(tp
->t_lflag
, ECHOCTL
) &&
2299 ((ISSET(c
, TTY_CHARMASK
) <= 037 && c
!= '\t' && c
!= '\n') ||
2300 ISSET(c
, TTY_CHARMASK
) == 0177)) {
2301 (void)ttyoutput('^', tp
);
2302 CLR(c
, ~TTY_CHARMASK
);
2308 (void)ttyoutput(c
, tp
);
2312 * Wake up any readers on a tty.
2316 register struct tty
*tp
;
2320 if (tp
->t_rsel
.si_pid
!= 0)
2322 selwakeup(&tp
->t_rsel
);
2323 if (ISSET(tp
->t_state
, TS_ASYNC
))
2324 pgsignal(tp
->t_pgrp
, SIGIO
, 1);
2325 wakeup(TSA_HUP_OR_INPUT(tp
));
2329 * Wake up any writers on a tty.
2333 register struct tty
*tp
;
2336 if (tp
->t_wsel
.si_pid
!= 0 && tp
->t_outq
.c_cc
<= tp
->t_lowat
)
2338 if (tp
->t_outq
.c_cc
<= tp
->t_lowat
)
2340 selwakeup(&tp
->t_wsel
);
2341 if (ISSET(tp
->t_state
, TS_BUSY
| TS_SO_OCOMPLETE
) ==
2342 TS_SO_OCOMPLETE
&& tp
->t_outq
.c_cc
== 0) {
2343 CLR(tp
->t_state
, TS_SO_OCOMPLETE
);
2344 wakeup(TSA_OCOMPLETE(tp
));
2346 if (ISSET(tp
->t_state
, TS_SO_OLOWAT
) &&
2347 tp
->t_outq
.c_cc
<= tp
->t_lowat
) {
2348 CLR(tp
->t_state
, TS_SO_OLOWAT
);
2349 wakeup(TSA_OLOWAT(tp
));
2354 * Look up a code for a specified speed in a conversion table;
2355 * used by drivers to map software speed values to hardware parameters.
2358 ttspeedtab(speed
, table
)
2360 register struct speedtab
*table
;
2363 for ( ; table
->sp_speed
!= -1; table
++)
2364 if (table
->sp_speed
== speed
)
2365 return (table
->sp_code
);
2370 * Set tty hi and low water marks.
2372 * Try to arrange the dynamics so there's about one second
2373 * from hi to low water.
2380 register int cps
, x
;
2382 #define CLAMP(x, h, l) ((x) > h ? h : ((x) < l) ? l : (x))
2384 cps
= tp
->t_ospeed
/ 10;
2385 tp
->t_lowat
= x
= CLAMP(cps
/ 2, TTMAXLOWAT
, TTMINLOWAT
);
2387 x
= CLAMP(x
, TTMAXHIWAT
, TTMINHIWAT
);
2388 tp
->t_hiwat
= roundup(x
, CBSIZE
);
2392 /* NeXT ttyinfo has been converted to the MACH kernel */
2393 #include <mach/thread_info.h>
2396 * Report on state of foreground process group.
2400 register struct tty
*tp
;
2402 /* NOT IMPLEMENTED FOR MACH */
2407 * Returns 1 if p2 is "better" than p1
2409 * The algorithm for picking the "interesting" process is thus:
2411 * 1) Only foreground processes are eligible - implied.
2412 * 2) Runnable processes are favored over anything else. The runner
2413 * with the highest cpu utilization is picked (p_estcpu). Ties are
2414 * broken by picking the highest pid.
2415 * 3) The sleeper with the shortest sleep time is next. With ties,
2416 * we pick out just "short-term" sleepers (P_SINTR == 0).
2417 * 4) Further ties are broken by picking the highest pid.
2419 #define ISRUN(p) (((p)->p_stat == SRUN) || ((p)->p_stat == SIDL))
2420 #define TESTAB(a, b) ((a)<<1 | (b))
2426 proc_compare(p1
, p2
)
2427 register struct proc
*p1
, *p2
;
2433 * see if at least one of them is runnable
2435 switch (TESTAB(ISRUN(p1
), ISRUN(p2
))) {
2442 * tie - favor one with highest recent cpu utilization
2444 if (p2
->p_estcpu
> p1
->p_estcpu
)
2446 if (p1
->p_estcpu
> p2
->p_estcpu
)
2448 return (p2
->p_pid
> p1
->p_pid
); /* tie - return highest pid */
2453 switch (TESTAB(p1
->p_stat
== SZOMB
, p2
->p_stat
== SZOMB
)) {
2459 return (p2
->p_pid
> p1
->p_pid
); /* tie - return highest pid */
2462 * pick the one with the smallest sleep time
2464 if (p2
->p_slptime
> p1
->p_slptime
)
2466 if (p1
->p_slptime
> p2
->p_slptime
)
2469 * favor one sleeping in a non-interruptible sleep
2471 if (p1
->p_flag
& P_SINTR
&& (p2
->p_flag
& P_SINTR
) == 0)
2473 if (p2
->p_flag
& P_SINTR
&& (p1
->p_flag
& P_SINTR
) == 0)
2475 return (p2
->p_pid
> p1
->p_pid
); /* tie - return highest pid */
2480 * Output char to tty; console putchar style.
2490 if (!ISSET(tp
->t_state
, TS_CONNECTED
)) {
2495 (void)ttyoutput('\r', tp
);
2496 (void)ttyoutput(c
, tp
);
2503 * Sleep on chan, returning ERESTART if tty changed while we napped and
2504 * returning any errors (e.g. EINTR/EWOULDBLOCK) reported by tsleep. If
2505 * the tty is revoked, restarting a pending call will redo validation done
2506 * at the start of the call.
2509 ttysleep(tp
, chan
, pri
, wmesg
, timo
)
2519 error
= tsleep(chan
, pri
, wmesg
, timo
);
2522 return (tp
->t_gen
== gen
? 0 : ERESTART
);
2527 * Allocate a tty structure and its associated buffers.
2534 MALLOC(tp
, struct tty
*, sizeof(struct tty
), M_TTYS
, M_WAITOK
);
2535 bzero(tp
, sizeof *tp
);
2536 /* XXX: default to TTYCLSIZE(1024) chars for now */
2537 clalloc(&tp
->t_rawq
, TTYCLSIZE
, 1);
2538 clalloc(&tp
->t_canq
, TTYCLSIZE
, 1);
2539 /* output queue doesn't need quoting */
2540 clalloc(&tp
->t_outq
, TTYCLSIZE
, 0);
2545 * Free a tty structure and its buffers.
2551 clfree(&tp
->t_rawq
);
2552 clfree(&tp
->t_canq
);
2553 clfree(&tp
->t_outq
);
2561 * XXX this is usable not useful or used. Most tty drivers have
2562 * ifdefs for using ttymalloc() but assume a different interface.
2565 * Allocate a tty struct. Clists in the struct will be allocated by
2573 tp
= _MALLOC(sizeof *tp
, M_TTYS
, M_WAITOK
);
2574 bzero(tp
, sizeof *tp
);
2579 #if 0 /* XXX not yet usable: session leader holds a ref (see kern_exit.c). */
2581 * Free a tty struct. Clists in the struct should have been freed by