tty.c revision 1.63 1 1.63 mycroft /* $NetBSD: tty.c,v 1.63 1995/10/10 01:26:57 mycroft Exp $ */
2 1.49 cgd
3 1.49 cgd /*-
4 1.49 cgd * Copyright (c) 1982, 1986, 1990, 1991, 1993
5 1.49 cgd * The Regents of the University of California. All rights reserved.
6 1.49 cgd * (c) UNIX System Laboratories, Inc.
7 1.49 cgd * All or some portions of this file are derived from material licensed
8 1.49 cgd * to the University of California by American Telephone and Telegraph
9 1.49 cgd * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10 1.49 cgd * the permission of UNIX System Laboratories, Inc.
11 1.49 cgd *
12 1.49 cgd * Redistribution and use in source and binary forms, with or without
13 1.49 cgd * modification, are permitted provided that the following conditions
14 1.49 cgd * are met:
15 1.49 cgd * 1. Redistributions of source code must retain the above copyright
16 1.49 cgd * notice, this list of conditions and the following disclaimer.
17 1.49 cgd * 2. Redistributions in binary form must reproduce the above copyright
18 1.49 cgd * notice, this list of conditions and the following disclaimer in the
19 1.49 cgd * documentation and/or other materials provided with the distribution.
20 1.49 cgd * 3. All advertising materials mentioning features or use of this software
21 1.49 cgd * must display the following acknowledgement:
22 1.49 cgd * This product includes software developed by the University of
23 1.49 cgd * California, Berkeley and its contributors.
24 1.49 cgd * 4. Neither the name of the University nor the names of its contributors
25 1.49 cgd * may be used to endorse or promote products derived from this software
26 1.49 cgd * without specific prior written permission.
27 1.49 cgd *
28 1.49 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 1.49 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 1.49 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 1.49 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 1.49 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 1.49 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 1.49 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 1.49 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 1.49 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 1.49 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 1.49 cgd * SUCH DAMAGE.
39 1.49 cgd *
40 1.49 cgd * @(#)tty.c 8.8 (Berkeley) 1/21/94
41 1.49 cgd */
42 1.49 cgd
43 1.49 cgd #include <sys/param.h>
44 1.49 cgd #include <sys/systm.h>
45 1.49 cgd #include <sys/ioctl.h>
46 1.49 cgd #include <sys/proc.h>
47 1.49 cgd #define TTYDEFCHARS
48 1.49 cgd #include <sys/tty.h>
49 1.49 cgd #undef TTYDEFCHARS
50 1.49 cgd #include <sys/file.h>
51 1.49 cgd #include <sys/conf.h>
52 1.49 cgd #include <sys/dkstat.h>
53 1.49 cgd #include <sys/uio.h>
54 1.49 cgd #include <sys/kernel.h>
55 1.49 cgd #include <sys/vnode.h>
56 1.49 cgd #include <sys/syslog.h>
57 1.49 cgd #include <sys/malloc.h>
58 1.49 cgd
59 1.49 cgd #include <vm/vm.h>
60 1.49 cgd
61 1.49 cgd static int proc_compare __P((struct proc *p1, struct proc *p2));
62 1.49 cgd static int ttnread __P((struct tty *));
63 1.49 cgd static void ttyblock __P((struct tty *tp));
64 1.49 cgd static void ttyecho __P((int, struct tty *tp));
65 1.49 cgd static void ttyrubo __P((struct tty *, int));
66 1.49 cgd
67 1.49 cgd /* Symbolic sleep message strings. */
68 1.49 cgd char ttclos[] = "ttycls";
69 1.49 cgd char ttopen[] = "ttyopn";
70 1.49 cgd char ttybg[] = "ttybg";
71 1.49 cgd #ifdef REAL_CLISTS
72 1.49 cgd char ttybuf[] = "ttybuf";
73 1.49 cgd #endif
74 1.49 cgd char ttyin[] = "ttyin";
75 1.49 cgd char ttyout[] = "ttyout";
76 1.49 cgd
77 1.49 cgd /*
78 1.49 cgd * Table with character classes and parity. The 8th bit indicates parity,
79 1.49 cgd * the 7th bit indicates the character is an alphameric or underscore (for
80 1.49 cgd * ALTWERASE), and the low 6 bits indicate delay type. If the low 6 bits
81 1.49 cgd * are 0 then the character needs no special processing on output; classes
82 1.49 cgd * other than 0 might be translated or (not currently) require delays.
83 1.49 cgd */
84 1.49 cgd #define E 0x00 /* Even parity. */
85 1.49 cgd #define O 0x80 /* Odd parity. */
86 1.49 cgd #define PARITY(c) (char_type[c] & O)
87 1.49 cgd
88 1.49 cgd #define ALPHA 0x40 /* Alpha or underscore. */
89 1.49 cgd #define ISALPHA(c) (char_type[(c) & TTY_CHARMASK] & ALPHA)
90 1.49 cgd
91 1.49 cgd #define CCLASSMASK 0x3f
92 1.49 cgd #define CCLASS(c) (char_type[c] & CCLASSMASK)
93 1.49 cgd
94 1.49 cgd #define BS BACKSPACE
95 1.49 cgd #define CC CONTROL
96 1.49 cgd #define CR RETURN
97 1.49 cgd #define NA ORDINARY | ALPHA
98 1.49 cgd #define NL NEWLINE
99 1.49 cgd #define NO ORDINARY
100 1.49 cgd #define TB TAB
101 1.49 cgd #define VT VTAB
102 1.49 cgd
103 1.49 cgd char const char_type[] = {
104 1.49 cgd E|CC, O|CC, O|CC, E|CC, O|CC, E|CC, E|CC, O|CC, /* nul - bel */
105 1.49 cgd O|BS, E|TB, E|NL, O|CC, E|VT, O|CR, O|CC, E|CC, /* bs - si */
106 1.49 cgd O|CC, E|CC, E|CC, O|CC, E|CC, O|CC, O|CC, E|CC, /* dle - etb */
107 1.49 cgd E|CC, O|CC, O|CC, E|CC, O|CC, E|CC, E|CC, O|CC, /* can - us */
108 1.49 cgd O|NO, E|NO, E|NO, O|NO, E|NO, O|NO, O|NO, E|NO, /* sp - ' */
109 1.49 cgd E|NO, O|NO, O|NO, E|NO, O|NO, E|NO, E|NO, O|NO, /* ( - / */
110 1.49 cgd E|NA, O|NA, O|NA, E|NA, O|NA, E|NA, E|NA, O|NA, /* 0 - 7 */
111 1.49 cgd O|NA, E|NA, E|NO, O|NO, E|NO, O|NO, O|NO, E|NO, /* 8 - ? */
112 1.49 cgd O|NO, E|NA, E|NA, O|NA, E|NA, O|NA, O|NA, E|NA, /* @ - G */
113 1.49 cgd E|NA, O|NA, O|NA, E|NA, O|NA, E|NA, E|NA, O|NA, /* H - O */
114 1.49 cgd E|NA, O|NA, O|NA, E|NA, O|NA, E|NA, E|NA, O|NA, /* P - W */
115 1.49 cgd O|NA, E|NA, E|NA, O|NO, E|NO, O|NO, O|NO, O|NA, /* X - _ */
116 1.49 cgd E|NO, O|NA, O|NA, E|NA, O|NA, E|NA, E|NA, O|NA, /* ` - g */
117 1.49 cgd O|NA, E|NA, E|NA, O|NA, E|NA, O|NA, O|NA, E|NA, /* h - o */
118 1.49 cgd O|NA, E|NA, E|NA, O|NA, E|NA, O|NA, O|NA, E|NA, /* p - w */
119 1.49 cgd E|NA, O|NA, O|NA, E|NO, O|NO, E|NO, E|NO, O|CC, /* x - del */
120 1.49 cgd /*
121 1.49 cgd * Meta chars; should be settable per character set;
122 1.49 cgd * for now, treat them all as normal characters.
123 1.49 cgd */
124 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
125 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
126 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
127 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
128 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
129 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
130 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
131 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
132 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
133 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
134 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
135 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
136 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
137 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
138 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
139 1.49 cgd NA, NA, NA, NA, NA, NA, NA, NA,
140 1.49 cgd };
141 1.49 cgd #undef BS
142 1.49 cgd #undef CC
143 1.49 cgd #undef CR
144 1.49 cgd #undef NA
145 1.49 cgd #undef NL
146 1.49 cgd #undef NO
147 1.49 cgd #undef TB
148 1.49 cgd #undef VT
149 1.49 cgd
150 1.49 cgd /* Macros to clear/set/test flags. */
151 1.49 cgd #define SET(t, f) (t) |= (f)
152 1.49 cgd #define CLR(t, f) (t) &= ~(f)
153 1.49 cgd #define ISSET(t, f) ((t) & (f))
154 1.49 cgd
155 1.49 cgd /*
156 1.49 cgd * Initial open of tty, or (re)entry to standard tty line discipline.
157 1.49 cgd */
158 1.49 cgd int
159 1.49 cgd ttyopen(device, tp)
160 1.49 cgd dev_t device;
161 1.49 cgd register struct tty *tp;
162 1.49 cgd {
163 1.49 cgd int s;
164 1.49 cgd
165 1.49 cgd s = spltty();
166 1.49 cgd tp->t_dev = device;
167 1.49 cgd if (!ISSET(tp->t_state, TS_ISOPEN)) {
168 1.49 cgd SET(tp->t_state, TS_ISOPEN);
169 1.49 cgd bzero(&tp->t_winsize, sizeof(tp->t_winsize));
170 1.63 mycroft #if defined(COMPAT_43) || defined(COMPAT_SUNOS) || defined(COMPAT_SVR4) || \
171 1.63 mycroft defined(COMPAT_FREEBSD)
172 1.50 mycroft tp->t_flags = 0;
173 1.50 mycroft #endif
174 1.49 cgd }
175 1.49 cgd CLR(tp->t_state, TS_WOPEN);
176 1.49 cgd splx(s);
177 1.49 cgd return (0);
178 1.49 cgd }
179 1.49 cgd
180 1.49 cgd /*
181 1.49 cgd * Handle close() on a tty line: flush and set to initial state,
182 1.49 cgd * bumping generation number so that pending read/write calls
183 1.49 cgd * can detect recycling of the tty.
184 1.49 cgd */
185 1.49 cgd int
186 1.49 cgd ttyclose(tp)
187 1.49 cgd register struct tty *tp;
188 1.49 cgd {
189 1.49 cgd extern struct tty *constty; /* Temporary virtual console. */
190 1.49 cgd
191 1.49 cgd if (constty == tp)
192 1.49 cgd constty = NULL;
193 1.49 cgd
194 1.49 cgd ttyflush(tp, FREAD | FWRITE);
195 1.49 cgd
196 1.49 cgd tp->t_gen++;
197 1.49 cgd tp->t_pgrp = NULL;
198 1.49 cgd tp->t_session = NULL;
199 1.49 cgd tp->t_state = 0;
200 1.49 cgd return (0);
201 1.49 cgd }
202 1.49 cgd
203 1.49 cgd #define FLUSHQ(q) { \
204 1.49 cgd if ((q)->c_cc) \
205 1.49 cgd ndflush(q, (q)->c_cc); \
206 1.49 cgd }
207 1.49 cgd
208 1.49 cgd /* Is 'c' a line delimiter ("break" character)? */
209 1.49 cgd #define TTBREAKC(c) \
210 1.49 cgd ((c) == '\n' || ((c) == cc[VEOF] || \
211 1.49 cgd (c) == cc[VEOL] || (c) == cc[VEOL2]) && (c) != _POSIX_VDISABLE)
212 1.49 cgd
213 1.49 cgd
214 1.49 cgd /*
215 1.49 cgd * Process input of a single character received on a tty.
216 1.49 cgd */
217 1.49 cgd int
218 1.49 cgd ttyinput(c, tp)
219 1.49 cgd register int c;
220 1.49 cgd register struct tty *tp;
221 1.49 cgd {
222 1.49 cgd register int iflag, lflag;
223 1.49 cgd register u_char *cc;
224 1.49 cgd int i, err;
225 1.49 cgd
226 1.49 cgd /*
227 1.49 cgd * If input is pending take it first.
228 1.49 cgd */
229 1.49 cgd lflag = tp->t_lflag;
230 1.49 cgd if (ISSET(lflag, PENDIN))
231 1.49 cgd ttypend(tp);
232 1.49 cgd /*
233 1.49 cgd * Gather stats.
234 1.49 cgd */
235 1.49 cgd if (ISSET(lflag, ICANON)) {
236 1.49 cgd ++tk_cancc;
237 1.49 cgd ++tp->t_cancc;
238 1.49 cgd } else {
239 1.49 cgd ++tk_rawcc;
240 1.49 cgd ++tp->t_rawcc;
241 1.49 cgd }
242 1.49 cgd ++tk_nin;
243 1.49 cgd
244 1.49 cgd /* Handle exceptional conditions (break, parity, framing). */
245 1.49 cgd cc = tp->t_cc;
246 1.49 cgd iflag = tp->t_iflag;
247 1.49 cgd if (err = (ISSET(c, TTY_ERRORMASK))) {
248 1.49 cgd CLR(c, TTY_ERRORMASK);
249 1.49 cgd if (ISSET(err, TTY_FE) && !c) { /* Break. */
250 1.49 cgd if (ISSET(iflag, IGNBRK))
251 1.49 cgd goto endcase;
252 1.49 cgd else if (ISSET(iflag, BRKINT) &&
253 1.49 cgd ISSET(lflag, ISIG) &&
254 1.49 cgd (cc[VINTR] != _POSIX_VDISABLE))
255 1.49 cgd c = cc[VINTR];
256 1.49 cgd else if (ISSET(iflag, PARMRK))
257 1.49 cgd goto parmrk;
258 1.49 cgd } else if (ISSET(err, TTY_PE) &&
259 1.49 cgd ISSET(iflag, INPCK) || ISSET(err, TTY_FE)) {
260 1.49 cgd if (ISSET(iflag, IGNPAR))
261 1.49 cgd goto endcase;
262 1.49 cgd else if (ISSET(iflag, PARMRK)) {
263 1.49 cgd parmrk: (void)putc(0377 | TTY_QUOTE, &tp->t_rawq);
264 1.49 cgd (void)putc(0 | TTY_QUOTE, &tp->t_rawq);
265 1.49 cgd (void)putc(c | TTY_QUOTE, &tp->t_rawq);
266 1.49 cgd goto endcase;
267 1.49 cgd } else
268 1.49 cgd c = 0;
269 1.49 cgd }
270 1.49 cgd }
271 1.49 cgd /*
272 1.49 cgd * In tandem mode, check high water mark.
273 1.49 cgd */
274 1.49 cgd if (ISSET(iflag, IXOFF) || ISSET(tp->t_cflag, CHWFLOW))
275 1.49 cgd ttyblock(tp);
276 1.49 cgd if (!ISSET(tp->t_state, TS_TYPEN) && ISSET(iflag, ISTRIP))
277 1.49 cgd CLR(c, 0x80);
278 1.49 cgd if (!ISSET(lflag, EXTPROC)) {
279 1.49 cgd /*
280 1.49 cgd * Check for literal nexting very first
281 1.49 cgd */
282 1.49 cgd if (ISSET(tp->t_state, TS_LNCH)) {
283 1.49 cgd SET(c, TTY_QUOTE);
284 1.49 cgd CLR(tp->t_state, TS_LNCH);
285 1.49 cgd }
286 1.49 cgd /*
287 1.49 cgd * Scan for special characters. This code
288 1.49 cgd * is really just a big case statement with
289 1.49 cgd * non-constant cases. The bottom of the
290 1.49 cgd * case statement is labeled ``endcase'', so goto
291 1.49 cgd * it after a case match, or similar.
292 1.49 cgd */
293 1.49 cgd
294 1.49 cgd /*
295 1.49 cgd * Control chars which aren't controlled
296 1.49 cgd * by ICANON, ISIG, or IXON.
297 1.49 cgd */
298 1.49 cgd if (ISSET(lflag, IEXTEN)) {
299 1.49 cgd if (CCEQ(cc[VLNEXT], c)) {
300 1.49 cgd if (ISSET(lflag, ECHO)) {
301 1.49 cgd if (ISSET(lflag, ECHOE)) {
302 1.49 cgd (void)ttyoutput('^', tp);
303 1.49 cgd (void)ttyoutput('\b', tp);
304 1.49 cgd } else
305 1.49 cgd ttyecho(c, tp);
306 1.49 cgd }
307 1.49 cgd SET(tp->t_state, TS_LNCH);
308 1.49 cgd goto endcase;
309 1.49 cgd }
310 1.49 cgd if (CCEQ(cc[VDISCARD], c)) {
311 1.49 cgd if (ISSET(lflag, FLUSHO))
312 1.49 cgd CLR(tp->t_lflag, FLUSHO);
313 1.49 cgd else {
314 1.49 cgd ttyflush(tp, FWRITE);
315 1.49 cgd ttyecho(c, tp);
316 1.49 cgd if (tp->t_rawq.c_cc + tp->t_canq.c_cc)
317 1.49 cgd ttyretype(tp);
318 1.49 cgd SET(tp->t_lflag, FLUSHO);
319 1.49 cgd }
320 1.49 cgd goto startoutput;
321 1.49 cgd }
322 1.49 cgd }
323 1.49 cgd /*
324 1.49 cgd * Signals.
325 1.49 cgd */
326 1.49 cgd if (ISSET(lflag, ISIG)) {
327 1.49 cgd if (CCEQ(cc[VINTR], c) || CCEQ(cc[VQUIT], c)) {
328 1.49 cgd if (!ISSET(lflag, NOFLSH))
329 1.49 cgd ttyflush(tp, FREAD | FWRITE);
330 1.49 cgd ttyecho(c, tp);
331 1.49 cgd pgsignal(tp->t_pgrp,
332 1.49 cgd CCEQ(cc[VINTR], c) ? SIGINT : SIGQUIT, 1);
333 1.49 cgd goto endcase;
334 1.49 cgd }
335 1.49 cgd if (CCEQ(cc[VSUSP], c)) {
336 1.49 cgd if (!ISSET(lflag, NOFLSH))
337 1.49 cgd ttyflush(tp, FREAD);
338 1.49 cgd ttyecho(c, tp);
339 1.49 cgd pgsignal(tp->t_pgrp, SIGTSTP, 1);
340 1.49 cgd goto endcase;
341 1.49 cgd }
342 1.49 cgd }
343 1.49 cgd /*
344 1.49 cgd * Handle start/stop characters.
345 1.49 cgd */
346 1.49 cgd if (ISSET(iflag, IXON)) {
347 1.49 cgd if (CCEQ(cc[VSTOP], c)) {
348 1.49 cgd if (!ISSET(tp->t_state, TS_TTSTOP)) {
349 1.49 cgd SET(tp->t_state, TS_TTSTOP);
350 1.49 cgd (*cdevsw[major(tp->t_dev)].d_stop)(tp,
351 1.49 cgd 0);
352 1.49 cgd return (0);
353 1.49 cgd }
354 1.49 cgd if (!CCEQ(cc[VSTART], c))
355 1.49 cgd return (0);
356 1.49 cgd /*
357 1.49 cgd * if VSTART == VSTOP then toggle
358 1.49 cgd */
359 1.49 cgd goto endcase;
360 1.49 cgd }
361 1.49 cgd if (CCEQ(cc[VSTART], c))
362 1.49 cgd goto restartoutput;
363 1.49 cgd }
364 1.49 cgd /*
365 1.49 cgd * IGNCR, ICRNL, & INLCR
366 1.49 cgd */
367 1.49 cgd if (c == '\r') {
368 1.49 cgd if (ISSET(iflag, IGNCR))
369 1.49 cgd goto endcase;
370 1.49 cgd else if (ISSET(iflag, ICRNL))
371 1.49 cgd c = '\n';
372 1.49 cgd } else if (c == '\n' && ISSET(iflag, INLCR))
373 1.49 cgd c = '\r';
374 1.49 cgd }
375 1.49 cgd if (!ISSET(tp->t_lflag, EXTPROC) && ISSET(lflag, ICANON)) {
376 1.49 cgd /*
377 1.49 cgd * From here on down canonical mode character
378 1.49 cgd * processing takes place.
379 1.49 cgd */
380 1.49 cgd /*
381 1.49 cgd * erase (^H / ^?)
382 1.49 cgd */
383 1.49 cgd if (CCEQ(cc[VERASE], c)) {
384 1.49 cgd if (tp->t_rawq.c_cc)
385 1.49 cgd ttyrub(unputc(&tp->t_rawq), tp);
386 1.49 cgd goto endcase;
387 1.49 cgd }
388 1.49 cgd /*
389 1.49 cgd * kill (^U)
390 1.49 cgd */
391 1.49 cgd if (CCEQ(cc[VKILL], c)) {
392 1.49 cgd if (ISSET(lflag, ECHOKE) &&
393 1.49 cgd tp->t_rawq.c_cc == tp->t_rocount &&
394 1.49 cgd !ISSET(lflag, ECHOPRT))
395 1.49 cgd while (tp->t_rawq.c_cc)
396 1.49 cgd ttyrub(unputc(&tp->t_rawq), tp);
397 1.49 cgd else {
398 1.49 cgd ttyecho(c, tp);
399 1.49 cgd if (ISSET(lflag, ECHOK) ||
400 1.49 cgd ISSET(lflag, ECHOKE))
401 1.49 cgd ttyecho('\n', tp);
402 1.49 cgd FLUSHQ(&tp->t_rawq);
403 1.49 cgd tp->t_rocount = 0;
404 1.49 cgd }
405 1.49 cgd CLR(tp->t_state, TS_LOCAL);
406 1.49 cgd goto endcase;
407 1.49 cgd }
408 1.49 cgd /*
409 1.49 cgd * word erase (^W)
410 1.49 cgd */
411 1.49 cgd if (CCEQ(cc[VWERASE], c)) {
412 1.49 cgd int alt = ISSET(lflag, ALTWERASE);
413 1.49 cgd int ctype;
414 1.49 cgd
415 1.49 cgd /*
416 1.49 cgd * erase whitespace
417 1.49 cgd */
418 1.49 cgd while ((c = unputc(&tp->t_rawq)) == ' ' || c == '\t')
419 1.49 cgd ttyrub(c, tp);
420 1.49 cgd if (c == -1)
421 1.49 cgd goto endcase;
422 1.49 cgd /*
423 1.49 cgd * erase last char of word and remember the
424 1.49 cgd * next chars type (for ALTWERASE)
425 1.49 cgd */
426 1.49 cgd ttyrub(c, tp);
427 1.49 cgd c = unputc(&tp->t_rawq);
428 1.49 cgd if (c == -1)
429 1.49 cgd goto endcase;
430 1.49 cgd if (c == ' ' || c == '\t') {
431 1.49 cgd (void)putc(c, &tp->t_rawq);
432 1.49 cgd goto endcase;
433 1.49 cgd }
434 1.49 cgd ctype = ISALPHA(c);
435 1.49 cgd /*
436 1.49 cgd * erase rest of word
437 1.49 cgd */
438 1.49 cgd do {
439 1.49 cgd ttyrub(c, tp);
440 1.49 cgd c = unputc(&tp->t_rawq);
441 1.49 cgd if (c == -1)
442 1.49 cgd goto endcase;
443 1.49 cgd } while (c != ' ' && c != '\t' &&
444 1.49 cgd (alt == 0 || ISALPHA(c) == ctype));
445 1.49 cgd (void)putc(c, &tp->t_rawq);
446 1.49 cgd goto endcase;
447 1.49 cgd }
448 1.49 cgd /*
449 1.49 cgd * reprint line (^R)
450 1.49 cgd */
451 1.49 cgd if (CCEQ(cc[VREPRINT], c)) {
452 1.49 cgd ttyretype(tp);
453 1.49 cgd goto endcase;
454 1.49 cgd }
455 1.49 cgd /*
456 1.49 cgd * ^T - kernel info and generate SIGINFO
457 1.49 cgd */
458 1.49 cgd if (CCEQ(cc[VSTATUS], c)) {
459 1.49 cgd if (ISSET(lflag, ISIG))
460 1.49 cgd pgsignal(tp->t_pgrp, SIGINFO, 1);
461 1.49 cgd if (!ISSET(lflag, NOKERNINFO))
462 1.49 cgd ttyinfo(tp);
463 1.49 cgd goto endcase;
464 1.49 cgd }
465 1.49 cgd }
466 1.49 cgd /*
467 1.49 cgd * Check for input buffer overflow
468 1.49 cgd */
469 1.49 cgd if (tp->t_rawq.c_cc + tp->t_canq.c_cc >= TTYHOG) {
470 1.49 cgd if (ISSET(iflag, IMAXBEL)) {
471 1.49 cgd if (tp->t_outq.c_cc < tp->t_hiwat)
472 1.49 cgd (void)ttyoutput(CTRL('g'), tp);
473 1.49 cgd } else
474 1.49 cgd ttyflush(tp, FREAD | FWRITE);
475 1.49 cgd goto endcase;
476 1.49 cgd }
477 1.49 cgd /*
478 1.49 cgd * Put data char in q for user and
479 1.49 cgd * wakeup on seeing a line delimiter.
480 1.49 cgd */
481 1.49 cgd if (putc(c, &tp->t_rawq) >= 0) {
482 1.49 cgd if (!ISSET(lflag, ICANON)) {
483 1.49 cgd ttwakeup(tp);
484 1.49 cgd ttyecho(c, tp);
485 1.49 cgd goto endcase;
486 1.49 cgd }
487 1.49 cgd if (TTBREAKC(c)) {
488 1.49 cgd tp->t_rocount = 0;
489 1.49 cgd catq(&tp->t_rawq, &tp->t_canq);
490 1.49 cgd ttwakeup(tp);
491 1.49 cgd } else if (tp->t_rocount++ == 0)
492 1.49 cgd tp->t_rocol = tp->t_column;
493 1.49 cgd if (ISSET(tp->t_state, TS_ERASE)) {
494 1.49 cgd /*
495 1.49 cgd * end of prterase \.../
496 1.49 cgd */
497 1.49 cgd CLR(tp->t_state, TS_ERASE);
498 1.49 cgd (void)ttyoutput('/', tp);
499 1.49 cgd }
500 1.49 cgd i = tp->t_column;
501 1.49 cgd ttyecho(c, tp);
502 1.49 cgd if (CCEQ(cc[VEOF], c) && ISSET(lflag, ECHO)) {
503 1.49 cgd /*
504 1.49 cgd * Place the cursor over the '^' of the ^D.
505 1.49 cgd */
506 1.49 cgd i = min(2, tp->t_column - i);
507 1.49 cgd while (i > 0) {
508 1.49 cgd (void)ttyoutput('\b', tp);
509 1.49 cgd i--;
510 1.49 cgd }
511 1.49 cgd }
512 1.49 cgd }
513 1.49 cgd endcase:
514 1.49 cgd /*
515 1.49 cgd * IXANY means allow any character to restart output.
516 1.49 cgd */
517 1.49 cgd if (ISSET(tp->t_state, TS_TTSTOP) &&
518 1.49 cgd !ISSET(iflag, IXANY) && cc[VSTART] != cc[VSTOP])
519 1.49 cgd return (0);
520 1.49 cgd restartoutput:
521 1.49 cgd CLR(tp->t_lflag, FLUSHO);
522 1.49 cgd CLR(tp->t_state, TS_TTSTOP);
523 1.49 cgd startoutput:
524 1.49 cgd return (ttstart(tp));
525 1.49 cgd }
526 1.49 cgd
527 1.49 cgd /*
528 1.49 cgd * Output a single character on a tty, doing output processing
529 1.49 cgd * as needed (expanding tabs, newline processing, etc.).
530 1.49 cgd * Returns < 0 if succeeds, otherwise returns char to resend.
531 1.49 cgd * Must be recursive.
532 1.49 cgd */
533 1.49 cgd int
534 1.49 cgd ttyoutput(c, tp)
535 1.49 cgd register int c;
536 1.49 cgd register struct tty *tp;
537 1.49 cgd {
538 1.49 cgd register long oflag;
539 1.49 cgd register int col, notout, s;
540 1.49 cgd
541 1.49 cgd oflag = tp->t_oflag;
542 1.49 cgd if (!ISSET(oflag, OPOST)) {
543 1.49 cgd if (ISSET(tp->t_lflag, FLUSHO))
544 1.49 cgd return (-1);
545 1.49 cgd if (putc(c, &tp->t_outq))
546 1.49 cgd return (c);
547 1.49 cgd tk_nout++;
548 1.49 cgd tp->t_outcc++;
549 1.49 cgd return (-1);
550 1.49 cgd }
551 1.49 cgd /*
552 1.49 cgd * Do tab expansion if OXTABS is set. Special case if we external
553 1.49 cgd * processing, we don't do the tab expansion because we'll probably
554 1.49 cgd * get it wrong. If tab expansion needs to be done, let it happen
555 1.49 cgd * externally.
556 1.49 cgd */
557 1.49 cgd CLR(c, ~TTY_CHARMASK);
558 1.49 cgd if (c == '\t' &&
559 1.49 cgd ISSET(oflag, OXTABS) && !ISSET(tp->t_lflag, EXTPROC)) {
560 1.49 cgd c = 8 - (tp->t_column & 7);
561 1.49 cgd if (ISSET(tp->t_lflag, FLUSHO)) {
562 1.49 cgd notout = 0;
563 1.49 cgd } else {
564 1.49 cgd s = spltty(); /* Don't interrupt tabs. */
565 1.49 cgd notout = b_to_q(" ", c, &tp->t_outq);
566 1.49 cgd c -= notout;
567 1.49 cgd tk_nout += c;
568 1.49 cgd tp->t_outcc += c;
569 1.49 cgd splx(s);
570 1.49 cgd }
571 1.49 cgd tp->t_column += c;
572 1.49 cgd return (notout ? '\t' : -1);
573 1.49 cgd }
574 1.49 cgd if (c == CEOT && ISSET(oflag, ONOEOT))
575 1.49 cgd return (-1);
576 1.49 cgd
577 1.49 cgd /*
578 1.49 cgd * Newline translation: if ONLCR is set,
579 1.49 cgd * translate newline into "\r\n".
580 1.49 cgd */
581 1.49 cgd if (c == '\n' && ISSET(tp->t_oflag, ONLCR)) {
582 1.49 cgd tk_nout++;
583 1.49 cgd tp->t_outcc++;
584 1.49 cgd if (putc('\r', &tp->t_outq))
585 1.49 cgd return (c);
586 1.49 cgd }
587 1.49 cgd tk_nout++;
588 1.49 cgd tp->t_outcc++;
589 1.49 cgd if (!ISSET(tp->t_lflag, FLUSHO) && putc(c, &tp->t_outq))
590 1.49 cgd return (c);
591 1.49 cgd
592 1.49 cgd col = tp->t_column;
593 1.49 cgd switch (CCLASS(c)) {
594 1.49 cgd case BACKSPACE:
595 1.49 cgd if (col > 0)
596 1.49 cgd --col;
597 1.49 cgd break;
598 1.49 cgd case CONTROL:
599 1.49 cgd break;
600 1.49 cgd case NEWLINE:
601 1.49 cgd case RETURN:
602 1.49 cgd col = 0;
603 1.49 cgd break;
604 1.49 cgd case ORDINARY:
605 1.49 cgd ++col;
606 1.49 cgd break;
607 1.49 cgd case TAB:
608 1.49 cgd col = (col + 8) & ~7;
609 1.49 cgd break;
610 1.49 cgd }
611 1.49 cgd tp->t_column = col;
612 1.49 cgd return (-1);
613 1.49 cgd }
614 1.49 cgd
615 1.49 cgd /*
616 1.49 cgd * Ioctls for all tty devices. Called after line-discipline specific ioctl
617 1.49 cgd * has been called to do discipline-specific functions and/or reject any
618 1.49 cgd * of these ioctl commands.
619 1.49 cgd */
620 1.49 cgd /* ARGSUSED */
621 1.49 cgd int
622 1.49 cgd ttioctl(tp, cmd, data, flag, p)
623 1.49 cgd register struct tty *tp;
624 1.55 cgd u_long cmd;
625 1.56 mycroft caddr_t data;
626 1.55 cgd int flag;
627 1.49 cgd struct proc *p;
628 1.49 cgd {
629 1.49 cgd extern struct tty *constty; /* Temporary virtual console. */
630 1.49 cgd extern int nlinesw;
631 1.49 cgd int s, error;
632 1.49 cgd
633 1.49 cgd /* If the ioctl involves modification, hang if in the background. */
634 1.49 cgd switch (cmd) {
635 1.49 cgd case TIOCFLUSH:
636 1.49 cgd case TIOCSETA:
637 1.49 cgd case TIOCSETD:
638 1.49 cgd case TIOCSETAF:
639 1.49 cgd case TIOCSETAW:
640 1.49 cgd #ifdef notdef
641 1.49 cgd case TIOCSPGRP:
642 1.49 cgd #endif
643 1.49 cgd case TIOCSTAT:
644 1.49 cgd case TIOCSTI:
645 1.49 cgd case TIOCSWINSZ:
646 1.63 mycroft #if defined(COMPAT_43) || defined(COMPAT_SUNOS) || defined(COMPAT_SVR4) || \
647 1.63 mycroft defined(COMPAT_FREEBSD)
648 1.49 cgd case TIOCLBIC:
649 1.49 cgd case TIOCLBIS:
650 1.49 cgd case TIOCLSET:
651 1.49 cgd case TIOCSETC:
652 1.49 cgd case OTIOCSETD:
653 1.49 cgd case TIOCSETN:
654 1.49 cgd case TIOCSETP:
655 1.49 cgd case TIOCSLTC:
656 1.49 cgd #endif
657 1.49 cgd while (isbackground(curproc, tp) &&
658 1.49 cgd p->p_pgrp->pg_jobc && (p->p_flag & P_PPWAIT) == 0 &&
659 1.49 cgd (p->p_sigignore & sigmask(SIGTTOU)) == 0 &&
660 1.49 cgd (p->p_sigmask & sigmask(SIGTTOU)) == 0) {
661 1.49 cgd pgsignal(p->p_pgrp, SIGTTOU, 1);
662 1.49 cgd if (error = ttysleep(tp,
663 1.49 cgd &lbolt, TTOPRI | PCATCH, ttybg, 0))
664 1.49 cgd return (error);
665 1.49 cgd }
666 1.49 cgd break;
667 1.49 cgd }
668 1.49 cgd
669 1.49 cgd switch (cmd) { /* Process the ioctl. */
670 1.49 cgd case FIOASYNC: /* set/clear async i/o */
671 1.49 cgd s = spltty();
672 1.49 cgd if (*(int *)data)
673 1.49 cgd SET(tp->t_state, TS_ASYNC);
674 1.49 cgd else
675 1.49 cgd CLR(tp->t_state, TS_ASYNC);
676 1.49 cgd splx(s);
677 1.49 cgd break;
678 1.49 cgd case FIONBIO: /* set/clear non-blocking i/o */
679 1.49 cgd break; /* XXX: delete. */
680 1.49 cgd case FIONREAD: /* get # bytes to read */
681 1.49 cgd *(int *)data = ttnread(tp);
682 1.49 cgd break;
683 1.49 cgd case TIOCEXCL: /* set exclusive use of tty */
684 1.49 cgd s = spltty();
685 1.49 cgd SET(tp->t_state, TS_XCLUDE);
686 1.49 cgd splx(s);
687 1.49 cgd break;
688 1.49 cgd case TIOCFLUSH: { /* flush buffers */
689 1.49 cgd register int flags = *(int *)data;
690 1.49 cgd
691 1.49 cgd if (flags == 0)
692 1.49 cgd flags = FREAD | FWRITE;
693 1.49 cgd else
694 1.49 cgd flags &= FREAD | FWRITE;
695 1.49 cgd ttyflush(tp, flags);
696 1.49 cgd break;
697 1.49 cgd }
698 1.49 cgd case TIOCCONS: /* become virtual console */
699 1.49 cgd if (*(int *)data) {
700 1.49 cgd if (constty && constty != tp &&
701 1.49 cgd ISSET(constty->t_state, TS_CARR_ON | TS_ISOPEN) ==
702 1.49 cgd (TS_CARR_ON | TS_ISOPEN))
703 1.49 cgd return (EBUSY);
704 1.49 cgd #ifndef UCONSOLE
705 1.49 cgd if (error = suser(p->p_ucred, &p->p_acflag))
706 1.49 cgd return (error);
707 1.49 cgd #endif
708 1.49 cgd constty = tp;
709 1.49 cgd } else if (tp == constty)
710 1.49 cgd constty = NULL;
711 1.49 cgd break;
712 1.49 cgd case TIOCDRAIN: /* wait till output drained */
713 1.49 cgd if (error = ttywait(tp))
714 1.49 cgd return (error);
715 1.49 cgd break;
716 1.49 cgd case TIOCGETA: { /* get termios struct */
717 1.49 cgd struct termios *t = (struct termios *)data;
718 1.49 cgd
719 1.49 cgd bcopy(&tp->t_termios, t, sizeof(struct termios));
720 1.49 cgd break;
721 1.49 cgd }
722 1.49 cgd case TIOCGETD: /* get line discipline */
723 1.49 cgd *(int *)data = tp->t_line;
724 1.49 cgd break;
725 1.49 cgd case TIOCGWINSZ: /* get window size */
726 1.49 cgd *(struct winsize *)data = tp->t_winsize;
727 1.49 cgd break;
728 1.49 cgd case TIOCGPGRP: /* get pgrp of tty */
729 1.49 cgd if (!isctty(p, tp))
730 1.49 cgd return (ENOTTY);
731 1.49 cgd *(int *)data = tp->t_pgrp ? tp->t_pgrp->pg_id : NO_PID;
732 1.49 cgd break;
733 1.49 cgd #ifdef TIOCHPCL
734 1.49 cgd case TIOCHPCL: /* hang up on last close */
735 1.49 cgd s = spltty();
736 1.49 cgd SET(tp->t_cflag, HUPCL);
737 1.49 cgd splx(s);
738 1.49 cgd break;
739 1.49 cgd #endif
740 1.49 cgd case TIOCNXCL: /* reset exclusive use of tty */
741 1.49 cgd s = spltty();
742 1.49 cgd CLR(tp->t_state, TS_XCLUDE);
743 1.49 cgd splx(s);
744 1.49 cgd break;
745 1.49 cgd case TIOCOUTQ: /* output queue size */
746 1.49 cgd *(int *)data = tp->t_outq.c_cc;
747 1.49 cgd break;
748 1.49 cgd case TIOCSETA: /* set termios struct */
749 1.49 cgd case TIOCSETAW: /* drain output, set */
750 1.49 cgd case TIOCSETAF: { /* drn out, fls in, set */
751 1.49 cgd register struct termios *t = (struct termios *)data;
752 1.49 cgd
753 1.49 cgd s = spltty();
754 1.49 cgd if (cmd == TIOCSETAW || cmd == TIOCSETAF) {
755 1.49 cgd if (error = ttywait(tp)) {
756 1.49 cgd splx(s);
757 1.49 cgd return (error);
758 1.49 cgd }
759 1.49 cgd if (cmd == TIOCSETAF)
760 1.49 cgd ttyflush(tp, FREAD);
761 1.49 cgd }
762 1.49 cgd if (!ISSET(t->c_cflag, CIGNORE)) {
763 1.49 cgd /*
764 1.49 cgd * Set device hardware.
765 1.49 cgd */
766 1.49 cgd if (tp->t_param && (error = (*tp->t_param)(tp, t))) {
767 1.49 cgd splx(s);
768 1.49 cgd return (error);
769 1.49 cgd } else {
770 1.49 cgd if (!ISSET(tp->t_state, TS_CARR_ON) &&
771 1.49 cgd ISSET(tp->t_cflag, CLOCAL) &&
772 1.49 cgd !ISSET(t->c_cflag, CLOCAL)) {
773 1.49 cgd CLR(tp->t_state, TS_ISOPEN);
774 1.49 cgd SET(tp->t_state, TS_WOPEN);
775 1.49 cgd ttwakeup(tp);
776 1.49 cgd }
777 1.49 cgd tp->t_cflag = t->c_cflag;
778 1.49 cgd tp->t_ispeed = t->c_ispeed;
779 1.49 cgd tp->t_ospeed = t->c_ospeed;
780 1.49 cgd if (t->c_ospeed == 0 && tp->t_session &&
781 1.49 cgd tp->t_session->s_leader)
782 1.49 cgd psignal(tp->t_session->s_leader,
783 1.49 cgd SIGHUP);
784 1.49 cgd }
785 1.49 cgd ttsetwater(tp);
786 1.49 cgd }
787 1.49 cgd if (cmd != TIOCSETAF) {
788 1.49 cgd if (ISSET(t->c_lflag, ICANON) !=
789 1.49 cgd ISSET(tp->t_lflag, ICANON))
790 1.49 cgd if (ISSET(t->c_lflag, ICANON)) {
791 1.49 cgd SET(tp->t_lflag, PENDIN);
792 1.49 cgd ttwakeup(tp);
793 1.49 cgd } else {
794 1.49 cgd struct clist tq;
795 1.49 cgd
796 1.49 cgd catq(&tp->t_rawq, &tp->t_canq);
797 1.49 cgd tq = tp->t_rawq;
798 1.49 cgd tp->t_rawq = tp->t_canq;
799 1.49 cgd tp->t_canq = tq;
800 1.49 cgd CLR(tp->t_lflag, PENDIN);
801 1.49 cgd }
802 1.49 cgd }
803 1.49 cgd tp->t_iflag = t->c_iflag;
804 1.49 cgd tp->t_oflag = t->c_oflag;
805 1.49 cgd /*
806 1.49 cgd * Make the EXTPROC bit read only.
807 1.49 cgd */
808 1.49 cgd if (ISSET(tp->t_lflag, EXTPROC))
809 1.49 cgd SET(t->c_lflag, EXTPROC);
810 1.49 cgd else
811 1.49 cgd CLR(t->c_lflag, EXTPROC);
812 1.49 cgd tp->t_lflag = t->c_lflag | ISSET(tp->t_lflag, PENDIN);
813 1.49 cgd bcopy(t->c_cc, tp->t_cc, sizeof(t->c_cc));
814 1.49 cgd splx(s);
815 1.49 cgd break;
816 1.49 cgd }
817 1.49 cgd case TIOCSETD: { /* set line discipline */
818 1.49 cgd register int t = *(int *)data;
819 1.49 cgd dev_t device = tp->t_dev;
820 1.49 cgd
821 1.49 cgd if ((u_int)t >= nlinesw)
822 1.49 cgd return (ENXIO);
823 1.49 cgd if (t != tp->t_line) {
824 1.49 cgd s = spltty();
825 1.49 cgd (*linesw[tp->t_line].l_close)(tp, flag);
826 1.49 cgd error = (*linesw[t].l_open)(device, tp);
827 1.49 cgd if (error) {
828 1.49 cgd (void)(*linesw[tp->t_line].l_open)(device, tp);
829 1.49 cgd splx(s);
830 1.49 cgd return (error);
831 1.49 cgd }
832 1.49 cgd tp->t_line = t;
833 1.49 cgd splx(s);
834 1.49 cgd }
835 1.49 cgd break;
836 1.49 cgd }
837 1.49 cgd case TIOCSTART: /* start output, like ^Q */
838 1.49 cgd s = spltty();
839 1.49 cgd if (ISSET(tp->t_state, TS_TTSTOP) ||
840 1.49 cgd ISSET(tp->t_lflag, FLUSHO)) {
841 1.49 cgd CLR(tp->t_lflag, FLUSHO);
842 1.49 cgd CLR(tp->t_state, TS_TTSTOP);
843 1.49 cgd ttstart(tp);
844 1.49 cgd }
845 1.49 cgd splx(s);
846 1.49 cgd break;
847 1.49 cgd case TIOCSTI: /* simulate terminal input */
848 1.49 cgd if (p->p_ucred->cr_uid && (flag & FREAD) == 0)
849 1.49 cgd return (EPERM);
850 1.49 cgd if (p->p_ucred->cr_uid && !isctty(p, tp))
851 1.49 cgd return (EACCES);
852 1.49 cgd (*linesw[tp->t_line].l_rint)(*(u_char *)data, tp);
853 1.49 cgd break;
854 1.49 cgd case TIOCSTOP: /* stop output, like ^S */
855 1.49 cgd s = spltty();
856 1.49 cgd if (!ISSET(tp->t_state, TS_TTSTOP)) {
857 1.49 cgd SET(tp->t_state, TS_TTSTOP);
858 1.49 cgd (*cdevsw[major(tp->t_dev)].d_stop)(tp, 0);
859 1.49 cgd }
860 1.49 cgd splx(s);
861 1.49 cgd break;
862 1.49 cgd case TIOCSCTTY: /* become controlling tty */
863 1.49 cgd /* Session ctty vnode pointer set in vnode layer. */
864 1.49 cgd if (!SESS_LEADER(p) ||
865 1.49 cgd (p->p_session->s_ttyvp || tp->t_session) &&
866 1.49 cgd (tp->t_session != p->p_session))
867 1.49 cgd return (EPERM);
868 1.49 cgd tp->t_session = p->p_session;
869 1.49 cgd tp->t_pgrp = p->p_pgrp;
870 1.49 cgd p->p_session->s_ttyp = tp;
871 1.49 cgd p->p_flag |= P_CONTROLT;
872 1.49 cgd break;
873 1.49 cgd case TIOCSPGRP: { /* set pgrp of tty */
874 1.49 cgd register struct pgrp *pgrp = pgfind(*(int *)data);
875 1.49 cgd
876 1.49 cgd if (!isctty(p, tp))
877 1.49 cgd return (ENOTTY);
878 1.49 cgd else if (pgrp == NULL || pgrp->pg_session != p->p_session)
879 1.49 cgd return (EPERM);
880 1.49 cgd tp->t_pgrp = pgrp;
881 1.49 cgd break;
882 1.49 cgd }
883 1.49 cgd case TIOCSTAT: /* get load avg stats */
884 1.49 cgd ttyinfo(tp);
885 1.49 cgd break;
886 1.49 cgd case TIOCSWINSZ: /* set window size */
887 1.49 cgd if (bcmp((caddr_t)&tp->t_winsize, data,
888 1.49 cgd sizeof (struct winsize))) {
889 1.49 cgd tp->t_winsize = *(struct winsize *)data;
890 1.49 cgd pgsignal(tp->t_pgrp, SIGWINCH, 1);
891 1.49 cgd }
892 1.49 cgd break;
893 1.49 cgd default:
894 1.63 mycroft #if defined(COMPAT_43) || defined(COMPAT_SUNOS) || defined(COMPAT_SVR4) || \
895 1.63 mycroft defined(COMPAT_FREEBSD)
896 1.49 cgd return (ttcompat(tp, cmd, data, flag, p));
897 1.49 cgd #else
898 1.49 cgd return (-1);
899 1.49 cgd #endif
900 1.49 cgd }
901 1.49 cgd return (0);
902 1.49 cgd }
903 1.49 cgd
904 1.49 cgd int
905 1.49 cgd ttselect(device, rw, p)
906 1.49 cgd dev_t device;
907 1.49 cgd int rw;
908 1.49 cgd struct proc *p;
909 1.49 cgd {
910 1.49 cgd register struct tty *tp;
911 1.49 cgd int nread, s;
912 1.49 cgd
913 1.58 mycroft tp = (*cdevsw[major(device)].d_tty)(device);
914 1.49 cgd
915 1.49 cgd s = spltty();
916 1.49 cgd switch (rw) {
917 1.49 cgd case FREAD:
918 1.49 cgd nread = ttnread(tp);
919 1.49 cgd if (nread > 0 || !ISSET(tp->t_cflag, CLOCAL) &&
920 1.49 cgd !ISSET(tp->t_state, TS_CARR_ON))
921 1.49 cgd goto win;
922 1.49 cgd selrecord(p, &tp->t_rsel);
923 1.49 cgd break;
924 1.49 cgd case FWRITE:
925 1.49 cgd if (tp->t_outq.c_cc <= tp->t_lowat) {
926 1.49 cgd win: splx(s);
927 1.49 cgd return (1);
928 1.49 cgd }
929 1.49 cgd selrecord(p, &tp->t_wsel);
930 1.49 cgd break;
931 1.49 cgd }
932 1.49 cgd splx(s);
933 1.49 cgd return (0);
934 1.49 cgd }
935 1.49 cgd
936 1.49 cgd static int
937 1.49 cgd ttnread(tp)
938 1.49 cgd struct tty *tp;
939 1.49 cgd {
940 1.49 cgd int nread;
941 1.49 cgd
942 1.49 cgd if (ISSET(tp->t_lflag, PENDIN))
943 1.49 cgd ttypend(tp);
944 1.49 cgd nread = tp->t_canq.c_cc;
945 1.49 cgd if (!ISSET(tp->t_lflag, ICANON)) {
946 1.49 cgd nread += tp->t_rawq.c_cc;
947 1.49 cgd if (nread < tp->t_cc[VMIN] && !tp->t_cc[VTIME])
948 1.49 cgd nread = 0;
949 1.49 cgd }
950 1.49 cgd return (nread);
951 1.49 cgd }
952 1.49 cgd
953 1.49 cgd /*
954 1.49 cgd * Wait for output to drain.
955 1.49 cgd */
956 1.49 cgd int
957 1.49 cgd ttywait(tp)
958 1.49 cgd register struct tty *tp;
959 1.49 cgd {
960 1.49 cgd int error, s;
961 1.49 cgd
962 1.49 cgd error = 0;
963 1.49 cgd s = spltty();
964 1.49 cgd while ((tp->t_outq.c_cc || ISSET(tp->t_state, TS_BUSY)) &&
965 1.49 cgd (ISSET(tp->t_state, TS_CARR_ON) || ISSET(tp->t_cflag, CLOCAL))
966 1.49 cgd && tp->t_oproc) {
967 1.49 cgd (*tp->t_oproc)(tp);
968 1.49 cgd SET(tp->t_state, TS_ASLEEP);
969 1.49 cgd if (error = ttysleep(tp,
970 1.49 cgd &tp->t_outq, TTOPRI | PCATCH, ttyout, 0))
971 1.49 cgd break;
972 1.49 cgd }
973 1.49 cgd splx(s);
974 1.49 cgd return (error);
975 1.49 cgd }
976 1.49 cgd
977 1.49 cgd /*
978 1.49 cgd * Flush if successfully wait.
979 1.49 cgd */
980 1.49 cgd int
981 1.49 cgd ttywflush(tp)
982 1.49 cgd struct tty *tp;
983 1.49 cgd {
984 1.49 cgd int error;
985 1.49 cgd
986 1.49 cgd if ((error = ttywait(tp)) == 0)
987 1.49 cgd ttyflush(tp, FREAD);
988 1.49 cgd return (error);
989 1.49 cgd }
990 1.49 cgd
991 1.49 cgd /*
992 1.49 cgd * Flush tty read and/or write queues, notifying anyone waiting.
993 1.49 cgd */
994 1.49 cgd void
995 1.49 cgd ttyflush(tp, rw)
996 1.49 cgd register struct tty *tp;
997 1.49 cgd int rw;
998 1.49 cgd {
999 1.49 cgd register int s;
1000 1.49 cgd
1001 1.49 cgd s = spltty();
1002 1.49 cgd if (rw & FREAD) {
1003 1.49 cgd FLUSHQ(&tp->t_canq);
1004 1.49 cgd FLUSHQ(&tp->t_rawq);
1005 1.49 cgd tp->t_rocount = 0;
1006 1.49 cgd tp->t_rocol = 0;
1007 1.49 cgd CLR(tp->t_state, TS_LOCAL);
1008 1.49 cgd ttwakeup(tp);
1009 1.49 cgd }
1010 1.49 cgd if (rw & FWRITE) {
1011 1.49 cgd CLR(tp->t_state, TS_TTSTOP);
1012 1.49 cgd (*cdevsw[major(tp->t_dev)].d_stop)(tp, rw);
1013 1.49 cgd FLUSHQ(&tp->t_outq);
1014 1.49 cgd wakeup((caddr_t)&tp->t_outq);
1015 1.49 cgd selwakeup(&tp->t_wsel);
1016 1.49 cgd }
1017 1.49 cgd splx(s);
1018 1.49 cgd }
1019 1.49 cgd
1020 1.49 cgd /*
1021 1.49 cgd * Copy in the default termios characters.
1022 1.49 cgd */
1023 1.49 cgd void
1024 1.49 cgd ttychars(tp)
1025 1.49 cgd struct tty *tp;
1026 1.49 cgd {
1027 1.49 cgd
1028 1.49 cgd bcopy(ttydefchars, tp->t_cc, sizeof(ttydefchars));
1029 1.49 cgd }
1030 1.49 cgd
1031 1.49 cgd /*
1032 1.49 cgd * Send stop character on input overflow.
1033 1.49 cgd */
1034 1.49 cgd static void
1035 1.49 cgd ttyblock(tp)
1036 1.49 cgd register struct tty *tp;
1037 1.49 cgd {
1038 1.49 cgd register int total;
1039 1.49 cgd
1040 1.49 cgd total = tp->t_rawq.c_cc + tp->t_canq.c_cc;
1041 1.49 cgd if (tp->t_rawq.c_cc > TTYHOG) {
1042 1.49 cgd ttyflush(tp, FREAD | FWRITE);
1043 1.49 cgd CLR(tp->t_state, TS_TBLOCK);
1044 1.49 cgd }
1045 1.49 cgd /*
1046 1.49 cgd * Block further input iff: current input > threshold
1047 1.49 cgd * AND input is available to user program.
1048 1.49 cgd */
1049 1.49 cgd if (total >= TTYHOG / 2 &&
1050 1.49 cgd !ISSET(tp->t_state, TS_TBLOCK) &&
1051 1.60 mycroft !ISSET(tp->t_lflag, ICANON) || tp->t_canq.c_cc > 0) {
1052 1.60 mycroft if (ISSET(tp->t_iflag, IXOFF) &&
1053 1.60 mycroft tp->t_cc[VSTOP] != _POSIX_VDISABLE &&
1054 1.60 mycroft putc(tp->t_cc[VSTOP], &tp->t_outq) == 0) {
1055 1.49 cgd SET(tp->t_state, TS_TBLOCK);
1056 1.49 cgd ttstart(tp);
1057 1.49 cgd }
1058 1.59 mycroft /* Try to block remote output via hardware flow control. */
1059 1.49 cgd if (ISSET(tp->t_cflag, CHWFLOW) && tp->t_hwiflow &&
1060 1.49 cgd (*tp->t_hwiflow)(tp, 1) != 0)
1061 1.49 cgd SET(tp->t_state, TS_TBLOCK);
1062 1.49 cgd }
1063 1.49 cgd }
1064 1.49 cgd
1065 1.49 cgd void
1066 1.49 cgd ttrstrt(tp_arg)
1067 1.49 cgd void *tp_arg;
1068 1.49 cgd {
1069 1.49 cgd struct tty *tp;
1070 1.49 cgd int s;
1071 1.49 cgd
1072 1.49 cgd #ifdef DIAGNOSTIC
1073 1.49 cgd if (tp_arg == NULL)
1074 1.49 cgd panic("ttrstrt");
1075 1.49 cgd #endif
1076 1.49 cgd tp = tp_arg;
1077 1.49 cgd s = spltty();
1078 1.49 cgd
1079 1.49 cgd CLR(tp->t_state, TS_TIMEOUT);
1080 1.49 cgd ttstart(tp);
1081 1.49 cgd
1082 1.49 cgd splx(s);
1083 1.49 cgd }
1084 1.49 cgd
1085 1.49 cgd int
1086 1.49 cgd ttstart(tp)
1087 1.49 cgd struct tty *tp;
1088 1.49 cgd {
1089 1.49 cgd
1090 1.49 cgd if (tp->t_oproc != NULL) /* XXX: Kludge for pty. */
1091 1.49 cgd (*tp->t_oproc)(tp);
1092 1.49 cgd return (0);
1093 1.49 cgd }
1094 1.49 cgd
1095 1.49 cgd /*
1096 1.49 cgd * "close" a line discipline
1097 1.49 cgd */
1098 1.49 cgd int
1099 1.49 cgd ttylclose(tp, flag)
1100 1.49 cgd struct tty *tp;
1101 1.49 cgd int flag;
1102 1.49 cgd {
1103 1.49 cgd
1104 1.61 mycroft if (flag & FNONBLOCK)
1105 1.49 cgd ttyflush(tp, FREAD | FWRITE);
1106 1.49 cgd else
1107 1.49 cgd ttywflush(tp);
1108 1.49 cgd return (0);
1109 1.49 cgd }
1110 1.49 cgd
1111 1.49 cgd /*
1112 1.49 cgd * Handle modem control transition on a tty.
1113 1.49 cgd * Flag indicates new state of carrier.
1114 1.49 cgd * Returns 0 if the line should be turned off, otherwise 1.
1115 1.49 cgd */
1116 1.49 cgd int
1117 1.49 cgd ttymodem(tp, flag)
1118 1.49 cgd register struct tty *tp;
1119 1.49 cgd int flag;
1120 1.49 cgd {
1121 1.49 cgd
1122 1.49 cgd if (!ISSET(tp->t_state, TS_WOPEN) && ISSET(tp->t_cflag, MDMBUF)) {
1123 1.49 cgd /*
1124 1.49 cgd * MDMBUF: do flow control according to carrier flag
1125 1.49 cgd */
1126 1.49 cgd if (flag) {
1127 1.49 cgd CLR(tp->t_state, TS_TTSTOP);
1128 1.49 cgd ttstart(tp);
1129 1.49 cgd } else if (!ISSET(tp->t_state, TS_TTSTOP)) {
1130 1.49 cgd SET(tp->t_state, TS_TTSTOP);
1131 1.49 cgd (*cdevsw[major(tp->t_dev)].d_stop)(tp, 0);
1132 1.49 cgd }
1133 1.49 cgd } else if (flag == 0) {
1134 1.49 cgd /*
1135 1.49 cgd * Lost carrier.
1136 1.49 cgd */
1137 1.49 cgd CLR(tp->t_state, TS_CARR_ON);
1138 1.49 cgd if (ISSET(tp->t_state, TS_ISOPEN) &&
1139 1.49 cgd !ISSET(tp->t_cflag, CLOCAL)) {
1140 1.49 cgd if (tp->t_session && tp->t_session->s_leader)
1141 1.49 cgd psignal(tp->t_session->s_leader, SIGHUP);
1142 1.49 cgd ttyflush(tp, FREAD | FWRITE);
1143 1.49 cgd return (0);
1144 1.49 cgd }
1145 1.49 cgd } else {
1146 1.49 cgd /*
1147 1.49 cgd * Carrier now on.
1148 1.49 cgd */
1149 1.49 cgd SET(tp->t_state, TS_CARR_ON);
1150 1.49 cgd ttwakeup(tp);
1151 1.49 cgd }
1152 1.49 cgd return (1);
1153 1.49 cgd }
1154 1.49 cgd
1155 1.49 cgd /*
1156 1.49 cgd * Default modem control routine (for other line disciplines).
1157 1.49 cgd * Return argument flag, to turn off device on carrier drop.
1158 1.49 cgd */
1159 1.49 cgd int
1160 1.49 cgd nullmodem(tp, flag)
1161 1.49 cgd register struct tty *tp;
1162 1.49 cgd int flag;
1163 1.49 cgd {
1164 1.49 cgd
1165 1.49 cgd if (flag)
1166 1.49 cgd SET(tp->t_state, TS_CARR_ON);
1167 1.49 cgd else {
1168 1.49 cgd CLR(tp->t_state, TS_CARR_ON);
1169 1.49 cgd if (!ISSET(tp->t_cflag, CLOCAL)) {
1170 1.49 cgd if (tp->t_session && tp->t_session->s_leader)
1171 1.49 cgd psignal(tp->t_session->s_leader, SIGHUP);
1172 1.49 cgd return (0);
1173 1.49 cgd }
1174 1.49 cgd }
1175 1.49 cgd return (1);
1176 1.49 cgd }
1177 1.49 cgd
1178 1.49 cgd /*
1179 1.49 cgd * Reinput pending characters after state switch
1180 1.49 cgd * call at spltty().
1181 1.49 cgd */
1182 1.49 cgd void
1183 1.49 cgd ttypend(tp)
1184 1.49 cgd register struct tty *tp;
1185 1.49 cgd {
1186 1.49 cgd struct clist tq;
1187 1.49 cgd register c;
1188 1.49 cgd
1189 1.49 cgd CLR(tp->t_lflag, PENDIN);
1190 1.49 cgd SET(tp->t_state, TS_TYPEN);
1191 1.49 cgd tq = tp->t_rawq;
1192 1.49 cgd tp->t_rawq.c_cc = 0;
1193 1.49 cgd tp->t_rawq.c_cf = tp->t_rawq.c_cl = 0;
1194 1.49 cgd while ((c = getc(&tq)) >= 0)
1195 1.49 cgd ttyinput(c, tp);
1196 1.49 cgd CLR(tp->t_state, TS_TYPEN);
1197 1.49 cgd }
1198 1.49 cgd
1199 1.49 cgd /*
1200 1.49 cgd * Process a read call on a tty device.
1201 1.49 cgd */
1202 1.49 cgd int
1203 1.49 cgd ttread(tp, uio, flag)
1204 1.49 cgd register struct tty *tp;
1205 1.49 cgd struct uio *uio;
1206 1.49 cgd int flag;
1207 1.49 cgd {
1208 1.49 cgd register struct clist *qp;
1209 1.49 cgd register int c;
1210 1.49 cgd register long lflag;
1211 1.49 cgd register u_char *cc = tp->t_cc;
1212 1.49 cgd register struct proc *p = curproc;
1213 1.49 cgd int s, first, error = 0;
1214 1.49 cgd struct timeval stime;
1215 1.49 cgd int has_stime = 0, last_cc;
1216 1.49 cgd long slp = 0;
1217 1.49 cgd
1218 1.49 cgd loop: lflag = tp->t_lflag;
1219 1.49 cgd s = spltty();
1220 1.49 cgd /*
1221 1.49 cgd * take pending input first
1222 1.49 cgd */
1223 1.49 cgd if (ISSET(lflag, PENDIN))
1224 1.49 cgd ttypend(tp);
1225 1.49 cgd splx(s);
1226 1.49 cgd
1227 1.49 cgd /*
1228 1.49 cgd * Hang process if it's in the background.
1229 1.49 cgd */
1230 1.49 cgd if (isbackground(p, tp)) {
1231 1.49 cgd if ((p->p_sigignore & sigmask(SIGTTIN)) ||
1232 1.49 cgd (p->p_sigmask & sigmask(SIGTTIN)) ||
1233 1.49 cgd p->p_flag & P_PPWAIT || p->p_pgrp->pg_jobc == 0)
1234 1.49 cgd return (EIO);
1235 1.49 cgd pgsignal(p->p_pgrp, SIGTTIN, 1);
1236 1.49 cgd if (error = ttysleep(tp, &lbolt, TTIPRI | PCATCH, ttybg, 0))
1237 1.49 cgd return (error);
1238 1.49 cgd goto loop;
1239 1.49 cgd }
1240 1.49 cgd
1241 1.49 cgd s = spltty();
1242 1.49 cgd if (!ISSET(lflag, ICANON)) {
1243 1.49 cgd int m = cc[VMIN];
1244 1.49 cgd long t = cc[VTIME];
1245 1.49 cgd
1246 1.49 cgd qp = &tp->t_rawq;
1247 1.49 cgd /*
1248 1.49 cgd * Check each of the four combinations.
1249 1.49 cgd * (m > 0 && t == 0) is the normal read case.
1250 1.49 cgd * It should be fairly efficient, so we check that and its
1251 1.49 cgd * companion case (m == 0 && t == 0) first.
1252 1.49 cgd * For the other two cases, we compute the target sleep time
1253 1.49 cgd * into slp.
1254 1.49 cgd */
1255 1.49 cgd if (t == 0) {
1256 1.49 cgd if (qp->c_cc < m)
1257 1.49 cgd goto sleep;
1258 1.49 cgd goto read;
1259 1.49 cgd }
1260 1.49 cgd t *= 100000; /* time in us */
1261 1.49 cgd #define diff(t1, t2) (((t1).tv_sec - (t2).tv_sec) * 1000000 + \
1262 1.49 cgd ((t1).tv_usec - (t2).tv_usec))
1263 1.49 cgd if (m > 0) {
1264 1.49 cgd if (qp->c_cc <= 0)
1265 1.49 cgd goto sleep;
1266 1.49 cgd if (qp->c_cc >= m)
1267 1.49 cgd goto read;
1268 1.49 cgd if (!has_stime) {
1269 1.49 cgd /* first character, start timer */
1270 1.49 cgd has_stime = 1;
1271 1.49 cgd stime = time;
1272 1.49 cgd slp = t;
1273 1.49 cgd } else if (qp->c_cc > last_cc) {
1274 1.49 cgd /* got a character, restart timer */
1275 1.49 cgd stime = time;
1276 1.49 cgd slp = t;
1277 1.49 cgd } else {
1278 1.49 cgd /* nothing, check expiration */
1279 1.49 cgd slp = t - diff(time, stime);
1280 1.49 cgd }
1281 1.49 cgd } else { /* m == 0 */
1282 1.49 cgd if (qp->c_cc > 0)
1283 1.49 cgd goto read;
1284 1.49 cgd if (!has_stime) {
1285 1.49 cgd has_stime = 1;
1286 1.49 cgd stime = time;
1287 1.49 cgd slp = t;
1288 1.49 cgd } else
1289 1.49 cgd slp = t - diff(time, stime);
1290 1.49 cgd }
1291 1.54 mycroft last_cc = qp->c_cc;
1292 1.49 cgd #undef diff
1293 1.49 cgd if (slp > 0) {
1294 1.49 cgd /*
1295 1.49 cgd * Rounding down may make us wake up just short
1296 1.49 cgd * of the target, so we round up.
1297 1.49 cgd * The formula is ceiling(slp * hz/1000000).
1298 1.49 cgd * 32-bit arithmetic is enough for hz < 169.
1299 1.49 cgd *
1300 1.49 cgd * Also, use plain wakeup() not ttwakeup().
1301 1.49 cgd */
1302 1.49 cgd slp = (long) (((u_long)slp * hz) + 999999) / 1000000;
1303 1.49 cgd goto sleep;
1304 1.49 cgd }
1305 1.49 cgd } else if ((qp = &tp->t_canq)->c_cc <= 0) {
1306 1.49 cgd int carrier;
1307 1.49 cgd
1308 1.49 cgd sleep:
1309 1.49 cgd /*
1310 1.49 cgd * If there is no input, sleep on rawq
1311 1.49 cgd * awaiting hardware receipt and notification.
1312 1.49 cgd * If we have data, we don't need to check for carrier.
1313 1.49 cgd */
1314 1.49 cgd carrier = ISSET(tp->t_state, TS_CARR_ON) ||
1315 1.49 cgd ISSET(tp->t_cflag, CLOCAL);
1316 1.49 cgd if (!carrier && ISSET(tp->t_state, TS_ISOPEN)) {
1317 1.49 cgd splx(s);
1318 1.49 cgd return (0); /* EOF */
1319 1.49 cgd }
1320 1.49 cgd if (flag & IO_NDELAY) {
1321 1.49 cgd splx(s);
1322 1.49 cgd return (EWOULDBLOCK);
1323 1.49 cgd }
1324 1.49 cgd error = ttysleep(tp, &tp->t_rawq, TTIPRI | PCATCH,
1325 1.53 mycroft carrier ? ttyin : ttopen, slp);
1326 1.49 cgd splx(s);
1327 1.54 mycroft if (error && error != EWOULDBLOCK)
1328 1.49 cgd return (error);
1329 1.49 cgd goto loop;
1330 1.49 cgd }
1331 1.49 cgd read:
1332 1.49 cgd splx(s);
1333 1.49 cgd
1334 1.49 cgd /*
1335 1.49 cgd * Input present, check for input mapping and processing.
1336 1.49 cgd */
1337 1.49 cgd first = 1;
1338 1.49 cgd while ((c = getc(qp)) >= 0) {
1339 1.49 cgd /*
1340 1.49 cgd * delayed suspend (^Y)
1341 1.49 cgd */
1342 1.49 cgd if (CCEQ(cc[VDSUSP], c) && ISSET(lflag, ISIG)) {
1343 1.49 cgd pgsignal(tp->t_pgrp, SIGTSTP, 1);
1344 1.49 cgd if (first) {
1345 1.49 cgd if (error = ttysleep(tp,
1346 1.49 cgd &lbolt, TTIPRI | PCATCH, ttybg, 0))
1347 1.49 cgd break;
1348 1.49 cgd goto loop;
1349 1.49 cgd }
1350 1.49 cgd break;
1351 1.49 cgd }
1352 1.49 cgd /*
1353 1.49 cgd * Interpret EOF only in canonical mode.
1354 1.49 cgd */
1355 1.49 cgd if (CCEQ(cc[VEOF], c) && ISSET(lflag, ICANON))
1356 1.49 cgd break;
1357 1.49 cgd /*
1358 1.49 cgd * Give user character.
1359 1.49 cgd */
1360 1.49 cgd error = ureadc(c, uio);
1361 1.49 cgd if (error)
1362 1.49 cgd break;
1363 1.49 cgd if (uio->uio_resid == 0)
1364 1.49 cgd break;
1365 1.49 cgd /*
1366 1.49 cgd * In canonical mode check for a "break character"
1367 1.49 cgd * marking the end of a "line of input".
1368 1.49 cgd */
1369 1.49 cgd if (ISSET(lflag, ICANON) && TTBREAKC(c))
1370 1.49 cgd break;
1371 1.49 cgd first = 0;
1372 1.49 cgd }
1373 1.49 cgd /*
1374 1.49 cgd * Look to unblock output now that (presumably)
1375 1.49 cgd * the input queue has gone down.
1376 1.49 cgd */
1377 1.49 cgd s = spltty();
1378 1.49 cgd if (ISSET(tp->t_state, TS_TBLOCK) && tp->t_rawq.c_cc < TTYHOG/5) {
1379 1.60 mycroft if (ISSET(tp->t_iflag, IXOFF) &&
1380 1.60 mycroft cc[VSTART] != _POSIX_VDISABLE &&
1381 1.49 cgd putc(cc[VSTART], &tp->t_outq) == 0) {
1382 1.49 cgd CLR(tp->t_state, TS_TBLOCK);
1383 1.49 cgd ttstart(tp);
1384 1.49 cgd }
1385 1.59 mycroft /* Try to unblock remote output via hardware flow control. */
1386 1.59 mycroft if (ISSET(tp->t_cflag, CHWFLOW) && tp->t_hwiflow &&
1387 1.49 cgd (*tp->t_hwiflow)(tp, 0) != 0)
1388 1.59 mycroft CLR(tp->t_state, TS_TBLOCK);
1389 1.49 cgd }
1390 1.49 cgd splx(s);
1391 1.49 cgd return (error);
1392 1.49 cgd }
1393 1.49 cgd
1394 1.49 cgd /*
1395 1.49 cgd * Check the output queue on tp for space for a kernel message (from uprintf
1396 1.49 cgd * or tprintf). Allow some space over the normal hiwater mark so we don't
1397 1.49 cgd * lose messages due to normal flow control, but don't let the tty run amok.
1398 1.49 cgd * Sleeps here are not interruptible, but we return prematurely if new signals
1399 1.49 cgd * arrive.
1400 1.49 cgd */
1401 1.49 cgd int
1402 1.49 cgd ttycheckoutq(tp, wait)
1403 1.49 cgd register struct tty *tp;
1404 1.49 cgd int wait;
1405 1.49 cgd {
1406 1.49 cgd int hiwat, s, oldsig;
1407 1.49 cgd
1408 1.49 cgd hiwat = tp->t_hiwat;
1409 1.49 cgd s = spltty();
1410 1.49 cgd oldsig = wait ? curproc->p_siglist : 0;
1411 1.49 cgd if (tp->t_outq.c_cc > hiwat + 200)
1412 1.49 cgd while (tp->t_outq.c_cc > hiwat) {
1413 1.49 cgd ttstart(tp);
1414 1.49 cgd if (wait == 0 || curproc->p_siglist != oldsig) {
1415 1.49 cgd splx(s);
1416 1.49 cgd return (0);
1417 1.49 cgd }
1418 1.49 cgd timeout((void (*)__P((void *)))wakeup,
1419 1.49 cgd (void *)&tp->t_outq, hz);
1420 1.49 cgd SET(tp->t_state, TS_ASLEEP);
1421 1.49 cgd tsleep(&tp->t_outq, PZERO - 1, "ttckoutq", 0);
1422 1.49 cgd }
1423 1.49 cgd splx(s);
1424 1.49 cgd return (1);
1425 1.49 cgd }
1426 1.49 cgd
1427 1.49 cgd /*
1428 1.49 cgd * Process a write call on a tty device.
1429 1.49 cgd */
1430 1.49 cgd int
1431 1.49 cgd ttwrite(tp, uio, flag)
1432 1.49 cgd register struct tty *tp;
1433 1.49 cgd register struct uio *uio;
1434 1.49 cgd int flag;
1435 1.49 cgd {
1436 1.49 cgd register u_char *cp;
1437 1.49 cgd register int cc, ce;
1438 1.49 cgd register struct proc *p;
1439 1.49 cgd int i, hiwat, cnt, error, s;
1440 1.49 cgd u_char obuf[OBUFSIZ];
1441 1.49 cgd
1442 1.49 cgd hiwat = tp->t_hiwat;
1443 1.49 cgd cnt = uio->uio_resid;
1444 1.49 cgd error = 0;
1445 1.49 cgd cc = 0;
1446 1.49 cgd loop:
1447 1.49 cgd s = spltty();
1448 1.49 cgd if (!ISSET(tp->t_state, TS_CARR_ON) &&
1449 1.49 cgd !ISSET(tp->t_cflag, CLOCAL)) {
1450 1.49 cgd if (ISSET(tp->t_state, TS_ISOPEN)) {
1451 1.49 cgd splx(s);
1452 1.49 cgd return (EIO);
1453 1.49 cgd } else if (flag & IO_NDELAY) {
1454 1.49 cgd splx(s);
1455 1.49 cgd error = EWOULDBLOCK;
1456 1.49 cgd goto out;
1457 1.49 cgd } else {
1458 1.49 cgd /* Sleep awaiting carrier. */
1459 1.49 cgd error = ttysleep(tp,
1460 1.49 cgd &tp->t_rawq, TTIPRI | PCATCH, ttopen, 0);
1461 1.49 cgd splx(s);
1462 1.49 cgd if (error)
1463 1.49 cgd goto out;
1464 1.49 cgd goto loop;
1465 1.49 cgd }
1466 1.49 cgd }
1467 1.49 cgd splx(s);
1468 1.49 cgd /*
1469 1.49 cgd * Hang the process if it's in the background.
1470 1.49 cgd */
1471 1.49 cgd p = curproc;
1472 1.49 cgd if (isbackground(p, tp) &&
1473 1.49 cgd ISSET(tp->t_lflag, TOSTOP) && (p->p_flag & P_PPWAIT) == 0 &&
1474 1.49 cgd (p->p_sigignore & sigmask(SIGTTOU)) == 0 &&
1475 1.49 cgd (p->p_sigmask & sigmask(SIGTTOU)) == 0 &&
1476 1.49 cgd p->p_pgrp->pg_jobc) {
1477 1.49 cgd pgsignal(p->p_pgrp, SIGTTOU, 1);
1478 1.49 cgd if (error = ttysleep(tp, &lbolt, TTIPRI | PCATCH, ttybg, 0))
1479 1.49 cgd goto out;
1480 1.49 cgd goto loop;
1481 1.49 cgd }
1482 1.49 cgd /*
1483 1.49 cgd * Process the user's data in at most OBUFSIZ chunks. Perform any
1484 1.49 cgd * output translation. Keep track of high water mark, sleep on
1485 1.49 cgd * overflow awaiting device aid in acquiring new space.
1486 1.49 cgd */
1487 1.49 cgd while (uio->uio_resid > 0 || cc > 0) {
1488 1.49 cgd if (ISSET(tp->t_lflag, FLUSHO)) {
1489 1.49 cgd uio->uio_resid = 0;
1490 1.49 cgd return (0);
1491 1.49 cgd }
1492 1.49 cgd if (tp->t_outq.c_cc > hiwat)
1493 1.49 cgd goto ovhiwat;
1494 1.49 cgd /*
1495 1.49 cgd * Grab a hunk of data from the user, unless we have some
1496 1.49 cgd * leftover from last time.
1497 1.49 cgd */
1498 1.49 cgd if (cc == 0) {
1499 1.49 cgd cc = min(uio->uio_resid, OBUFSIZ);
1500 1.49 cgd cp = obuf;
1501 1.49 cgd error = uiomove(cp, cc, uio);
1502 1.49 cgd if (error) {
1503 1.49 cgd cc = 0;
1504 1.49 cgd break;
1505 1.49 cgd }
1506 1.49 cgd }
1507 1.49 cgd /*
1508 1.49 cgd * If nothing fancy need be done, grab those characters we
1509 1.49 cgd * can handle without any of ttyoutput's processing and
1510 1.49 cgd * just transfer them to the output q. For those chars
1511 1.49 cgd * which require special processing (as indicated by the
1512 1.49 cgd * bits in char_type), call ttyoutput. After processing
1513 1.49 cgd * a hunk of data, look for FLUSHO so ^O's will take effect
1514 1.49 cgd * immediately.
1515 1.49 cgd */
1516 1.49 cgd while (cc > 0) {
1517 1.49 cgd if (!ISSET(tp->t_oflag, OPOST))
1518 1.49 cgd ce = cc;
1519 1.49 cgd else {
1520 1.49 cgd ce = cc - scanc((u_int)cc, cp,
1521 1.49 cgd (u_char *)char_type, CCLASSMASK);
1522 1.49 cgd /*
1523 1.49 cgd * If ce is zero, then we're processing
1524 1.49 cgd * a special character through ttyoutput.
1525 1.49 cgd */
1526 1.49 cgd if (ce == 0) {
1527 1.49 cgd tp->t_rocount = 0;
1528 1.49 cgd if (ttyoutput(*cp, tp) >= 0) {
1529 1.49 cgd #ifdef REAL_CLISTS
1530 1.49 cgd /* No Clists, wait a bit. */
1531 1.49 cgd ttstart(tp);
1532 1.49 cgd if (error = ttysleep(tp, &lbolt,
1533 1.49 cgd TTOPRI | PCATCH, ttybuf, 0))
1534 1.49 cgd break;
1535 1.49 cgd goto loop;
1536 1.49 cgd #else
1537 1.49 cgd /* out of space */
1538 1.49 cgd goto overfull;
1539 1.49 cgd #endif
1540 1.49 cgd }
1541 1.49 cgd cp++;
1542 1.49 cgd cc--;
1543 1.49 cgd if (ISSET(tp->t_lflag, FLUSHO) ||
1544 1.49 cgd tp->t_outq.c_cc > hiwat)
1545 1.49 cgd goto ovhiwat;
1546 1.49 cgd continue;
1547 1.49 cgd }
1548 1.49 cgd }
1549 1.49 cgd /*
1550 1.49 cgd * A bunch of normal characters have been found.
1551 1.49 cgd * Transfer them en masse to the output queue and
1552 1.49 cgd * continue processing at the top of the loop.
1553 1.49 cgd * If there are any further characters in this
1554 1.49 cgd * <= OBUFSIZ chunk, the first should be a character
1555 1.49 cgd * requiring special handling by ttyoutput.
1556 1.49 cgd */
1557 1.49 cgd tp->t_rocount = 0;
1558 1.49 cgd i = b_to_q(cp, ce, &tp->t_outq);
1559 1.49 cgd ce -= i;
1560 1.49 cgd tp->t_column += ce;
1561 1.49 cgd cp += ce, cc -= ce, tk_nout += ce;
1562 1.49 cgd tp->t_outcc += ce;
1563 1.49 cgd if (i > 0) {
1564 1.49 cgd #ifdef REAL_CLISTS
1565 1.49 cgd /* No Clists, wait a bit. */
1566 1.49 cgd ttstart(tp);
1567 1.49 cgd if (error = ttysleep(tp,
1568 1.49 cgd &lbolt, TTOPRI | PCATCH, ttybuf, 0))
1569 1.49 cgd break;
1570 1.49 cgd goto loop;
1571 1.49 cgd #else
1572 1.49 cgd /* out of space */
1573 1.49 cgd goto overfull;
1574 1.49 cgd #endif
1575 1.49 cgd }
1576 1.49 cgd if (ISSET(tp->t_lflag, FLUSHO) ||
1577 1.49 cgd tp->t_outq.c_cc > hiwat)
1578 1.49 cgd break;
1579 1.49 cgd }
1580 1.49 cgd ttstart(tp);
1581 1.49 cgd }
1582 1.49 cgd out:
1583 1.49 cgd /*
1584 1.49 cgd * If cc is nonzero, we leave the uio structure inconsistent, as the
1585 1.49 cgd * offset and iov pointers have moved forward, but it doesn't matter
1586 1.49 cgd * (the call will either return short or restart with a new uio).
1587 1.49 cgd */
1588 1.49 cgd uio->uio_resid += cc;
1589 1.49 cgd return (error);
1590 1.49 cgd
1591 1.49 cgd #ifndef REAL_CLISTS
1592 1.49 cgd overfull:
1593 1.49 cgd /*
1594 1.49 cgd * Since we are using ring buffers, if we can't insert any more into
1595 1.49 cgd * the output queue, we can assume the ring is full and that someone
1596 1.49 cgd * forgot to set the high water mark correctly. We set it and then
1597 1.49 cgd * proceed as normal.
1598 1.49 cgd */
1599 1.49 cgd hiwat = tp->t_outq.c_cc - 1;
1600 1.49 cgd #endif
1601 1.49 cgd
1602 1.49 cgd ovhiwat:
1603 1.49 cgd ttstart(tp);
1604 1.49 cgd s = spltty();
1605 1.49 cgd /*
1606 1.49 cgd * This can only occur if FLUSHO is set in t_lflag,
1607 1.49 cgd * or if ttstart/oproc is synchronous (or very fast).
1608 1.49 cgd */
1609 1.49 cgd if (tp->t_outq.c_cc <= hiwat) {
1610 1.49 cgd splx(s);
1611 1.49 cgd goto loop;
1612 1.49 cgd }
1613 1.49 cgd if (flag & IO_NDELAY) {
1614 1.49 cgd splx(s);
1615 1.49 cgd uio->uio_resid += cc;
1616 1.49 cgd return (uio->uio_resid == cnt ? EWOULDBLOCK : 0);
1617 1.49 cgd }
1618 1.49 cgd SET(tp->t_state, TS_ASLEEP);
1619 1.49 cgd error = ttysleep(tp, &tp->t_outq, TTOPRI | PCATCH, ttyout, 0);
1620 1.49 cgd splx(s);
1621 1.49 cgd if (error)
1622 1.49 cgd goto out;
1623 1.49 cgd goto loop;
1624 1.49 cgd }
1625 1.49 cgd
1626 1.49 cgd /*
1627 1.49 cgd * Rubout one character from the rawq of tp
1628 1.49 cgd * as cleanly as possible.
1629 1.49 cgd */
1630 1.49 cgd void
1631 1.49 cgd ttyrub(c, tp)
1632 1.49 cgd int c;
1633 1.49 cgd register struct tty *tp;
1634 1.49 cgd {
1635 1.49 cgd register u_char *cp;
1636 1.49 cgd register int savecol;
1637 1.49 cgd int tabc, s;
1638 1.49 cgd
1639 1.49 cgd if (!ISSET(tp->t_lflag, ECHO) || ISSET(tp->t_lflag, EXTPROC))
1640 1.49 cgd return;
1641 1.49 cgd CLR(tp->t_lflag, FLUSHO);
1642 1.49 cgd if (ISSET(tp->t_lflag, ECHOE)) {
1643 1.49 cgd if (tp->t_rocount == 0) {
1644 1.49 cgd /*
1645 1.49 cgd * Screwed by ttwrite; retype
1646 1.49 cgd */
1647 1.49 cgd ttyretype(tp);
1648 1.49 cgd return;
1649 1.49 cgd }
1650 1.49 cgd if (c == ('\t' | TTY_QUOTE) || c == ('\n' | TTY_QUOTE))
1651 1.49 cgd ttyrubo(tp, 2);
1652 1.49 cgd else {
1653 1.49 cgd CLR(c, ~TTY_CHARMASK);
1654 1.49 cgd switch (CCLASS(c)) {
1655 1.49 cgd case ORDINARY:
1656 1.49 cgd ttyrubo(tp, 1);
1657 1.49 cgd break;
1658 1.49 cgd case BACKSPACE:
1659 1.49 cgd case CONTROL:
1660 1.49 cgd case NEWLINE:
1661 1.49 cgd case RETURN:
1662 1.49 cgd case VTAB:
1663 1.49 cgd if (ISSET(tp->t_lflag, ECHOCTL))
1664 1.49 cgd ttyrubo(tp, 2);
1665 1.49 cgd break;
1666 1.49 cgd case TAB:
1667 1.49 cgd if (tp->t_rocount < tp->t_rawq.c_cc) {
1668 1.49 cgd ttyretype(tp);
1669 1.49 cgd return;
1670 1.49 cgd }
1671 1.49 cgd s = spltty();
1672 1.49 cgd savecol = tp->t_column;
1673 1.49 cgd SET(tp->t_state, TS_CNTTB);
1674 1.49 cgd SET(tp->t_lflag, FLUSHO);
1675 1.49 cgd tp->t_column = tp->t_rocol;
1676 1.52 deraadt for (cp = firstc(&tp->t_rawq, &tabc); cp;
1677 1.49 cgd cp = nextc(&tp->t_rawq, cp, &tabc))
1678 1.49 cgd ttyecho(tabc, tp);
1679 1.49 cgd CLR(tp->t_lflag, FLUSHO);
1680 1.49 cgd CLR(tp->t_state, TS_CNTTB);
1681 1.49 cgd splx(s);
1682 1.49 cgd
1683 1.49 cgd /* savecol will now be length of the tab. */
1684 1.49 cgd savecol -= tp->t_column;
1685 1.49 cgd tp->t_column += savecol;
1686 1.49 cgd if (savecol > 8)
1687 1.49 cgd savecol = 8; /* overflow screw */
1688 1.49 cgd while (--savecol >= 0)
1689 1.49 cgd (void)ttyoutput('\b', tp);
1690 1.49 cgd break;
1691 1.49 cgd default: /* XXX */
1692 1.49 cgd #define PANICSTR "ttyrub: would panic c = %d, val = %d\n"
1693 1.49 cgd (void)printf(PANICSTR, c, CCLASS(c));
1694 1.49 cgd #ifdef notdef
1695 1.49 cgd panic(PANICSTR, c, CCLASS(c));
1696 1.49 cgd #endif
1697 1.49 cgd }
1698 1.49 cgd }
1699 1.49 cgd } else if (ISSET(tp->t_lflag, ECHOPRT)) {
1700 1.49 cgd if (!ISSET(tp->t_state, TS_ERASE)) {
1701 1.49 cgd SET(tp->t_state, TS_ERASE);
1702 1.49 cgd (void)ttyoutput('\\', tp);
1703 1.49 cgd }
1704 1.49 cgd ttyecho(c, tp);
1705 1.49 cgd } else
1706 1.49 cgd ttyecho(tp->t_cc[VERASE], tp);
1707 1.49 cgd --tp->t_rocount;
1708 1.49 cgd }
1709 1.49 cgd
1710 1.49 cgd /*
1711 1.49 cgd * Back over cnt characters, erasing them.
1712 1.49 cgd */
1713 1.49 cgd static void
1714 1.49 cgd ttyrubo(tp, cnt)
1715 1.49 cgd register struct tty *tp;
1716 1.49 cgd int cnt;
1717 1.49 cgd {
1718 1.49 cgd
1719 1.49 cgd while (cnt-- > 0) {
1720 1.49 cgd (void)ttyoutput('\b', tp);
1721 1.49 cgd (void)ttyoutput(' ', tp);
1722 1.49 cgd (void)ttyoutput('\b', tp);
1723 1.49 cgd }
1724 1.49 cgd }
1725 1.49 cgd
1726 1.49 cgd /*
1727 1.49 cgd * ttyretype --
1728 1.49 cgd * Reprint the rawq line. Note, it is assumed that c_cc has already
1729 1.49 cgd * been checked.
1730 1.49 cgd */
1731 1.49 cgd void
1732 1.49 cgd ttyretype(tp)
1733 1.49 cgd register struct tty *tp;
1734 1.49 cgd {
1735 1.49 cgd register u_char *cp;
1736 1.49 cgd int s, c;
1737 1.49 cgd
1738 1.49 cgd /* Echo the reprint character. */
1739 1.49 cgd if (tp->t_cc[VREPRINT] != _POSIX_VDISABLE)
1740 1.49 cgd ttyecho(tp->t_cc[VREPRINT], tp);
1741 1.49 cgd
1742 1.49 cgd (void)ttyoutput('\n', tp);
1743 1.49 cgd
1744 1.49 cgd s = spltty();
1745 1.49 cgd for (cp = firstc(&tp->t_canq, &c); cp; cp = nextc(&tp->t_canq, cp, &c))
1746 1.49 cgd ttyecho(c, tp);
1747 1.49 cgd for (cp = firstc(&tp->t_rawq, &c); cp; cp = nextc(&tp->t_rawq, cp, &c))
1748 1.49 cgd ttyecho(c, tp);
1749 1.49 cgd CLR(tp->t_state, TS_ERASE);
1750 1.49 cgd splx(s);
1751 1.49 cgd
1752 1.49 cgd tp->t_rocount = tp->t_rawq.c_cc;
1753 1.49 cgd tp->t_rocol = 0;
1754 1.49 cgd }
1755 1.49 cgd
1756 1.49 cgd /*
1757 1.49 cgd * Echo a typed character to the terminal.
1758 1.49 cgd */
1759 1.49 cgd static void
1760 1.49 cgd ttyecho(c, tp)
1761 1.49 cgd register int c;
1762 1.49 cgd register struct tty *tp;
1763 1.49 cgd {
1764 1.49 cgd
1765 1.49 cgd if (!ISSET(tp->t_state, TS_CNTTB))
1766 1.49 cgd CLR(tp->t_lflag, FLUSHO);
1767 1.49 cgd if ((!ISSET(tp->t_lflag, ECHO) &&
1768 1.49 cgd (!ISSET(tp->t_lflag, ECHONL) || c == '\n')) ||
1769 1.49 cgd ISSET(tp->t_lflag, EXTPROC))
1770 1.49 cgd return;
1771 1.49 cgd if (ISSET(tp->t_lflag, ECHOCTL) &&
1772 1.49 cgd (ISSET(c, TTY_CHARMASK) <= 037 && c != '\t' && c != '\n' ||
1773 1.49 cgd ISSET(c, TTY_CHARMASK) == 0177)) {
1774 1.49 cgd (void)ttyoutput('^', tp);
1775 1.49 cgd CLR(c, ~TTY_CHARMASK);
1776 1.49 cgd if (c == 0177)
1777 1.49 cgd c = '?';
1778 1.49 cgd else
1779 1.49 cgd c += 'A' - 1;
1780 1.49 cgd }
1781 1.49 cgd (void)ttyoutput(c, tp);
1782 1.49 cgd }
1783 1.49 cgd
1784 1.49 cgd /*
1785 1.49 cgd * Wake up any readers on a tty.
1786 1.49 cgd */
1787 1.49 cgd void
1788 1.49 cgd ttwakeup(tp)
1789 1.49 cgd register struct tty *tp;
1790 1.49 cgd {
1791 1.49 cgd
1792 1.49 cgd selwakeup(&tp->t_rsel);
1793 1.49 cgd if (ISSET(tp->t_state, TS_ASYNC))
1794 1.49 cgd pgsignal(tp->t_pgrp, SIGIO, 1);
1795 1.49 cgd wakeup((caddr_t)&tp->t_rawq);
1796 1.49 cgd }
1797 1.49 cgd
1798 1.49 cgd /*
1799 1.49 cgd * Look up a code for a specified speed in a conversion table;
1800 1.49 cgd * used by drivers to map software speed values to hardware parameters.
1801 1.49 cgd */
1802 1.49 cgd int
1803 1.49 cgd ttspeedtab(speed, table)
1804 1.49 cgd int speed;
1805 1.49 cgd register struct speedtab *table;
1806 1.49 cgd {
1807 1.49 cgd
1808 1.49 cgd for ( ; table->sp_speed != -1; table++)
1809 1.49 cgd if (table->sp_speed == speed)
1810 1.49 cgd return (table->sp_code);
1811 1.49 cgd return (-1);
1812 1.49 cgd }
1813 1.49 cgd
1814 1.49 cgd /*
1815 1.49 cgd * Set tty hi and low water marks.
1816 1.49 cgd *
1817 1.49 cgd * Try to arrange the dynamics so there's about one second
1818 1.49 cgd * from hi to low water.
1819 1.49 cgd */
1820 1.49 cgd void
1821 1.49 cgd ttsetwater(tp)
1822 1.49 cgd struct tty *tp;
1823 1.49 cgd {
1824 1.49 cgd register int cps, x;
1825 1.49 cgd
1826 1.49 cgd #define CLAMP(x, h, l) ((x) > h ? h : ((x) < l) ? l : (x))
1827 1.49 cgd
1828 1.49 cgd cps = tp->t_ospeed / 10;
1829 1.49 cgd tp->t_lowat = x = CLAMP(cps / 2, TTMAXLOWAT, TTMINLOWAT);
1830 1.49 cgd x += cps;
1831 1.49 cgd x = CLAMP(x, TTMAXHIWAT, TTMINHIWAT);
1832 1.49 cgd tp->t_hiwat = roundup(x, CBSIZE);
1833 1.49 cgd #undef CLAMP
1834 1.49 cgd }
1835 1.49 cgd
1836 1.49 cgd /*
1837 1.49 cgd * Report on state of foreground process group.
1838 1.49 cgd */
1839 1.49 cgd void
1840 1.49 cgd ttyinfo(tp)
1841 1.49 cgd register struct tty *tp;
1842 1.49 cgd {
1843 1.49 cgd register struct proc *p, *pick;
1844 1.49 cgd struct timeval utime, stime;
1845 1.49 cgd int tmp;
1846 1.49 cgd
1847 1.49 cgd if (ttycheckoutq(tp,0) == 0)
1848 1.49 cgd return;
1849 1.49 cgd
1850 1.49 cgd /* Print load average. */
1851 1.49 cgd tmp = (averunnable.ldavg[0] * 100 + FSCALE / 2) >> FSHIFT;
1852 1.49 cgd ttyprintf(tp, "load: %d.%02d ", tmp / 100, tmp % 100);
1853 1.49 cgd
1854 1.49 cgd if (tp->t_session == NULL)
1855 1.49 cgd ttyprintf(tp, "not a controlling terminal\n");
1856 1.49 cgd else if (tp->t_pgrp == NULL)
1857 1.49 cgd ttyprintf(tp, "no foreground process group\n");
1858 1.51 mycroft else if ((p = tp->t_pgrp->pg_members.lh_first) == 0)
1859 1.49 cgd ttyprintf(tp, "empty foreground process group\n");
1860 1.49 cgd else {
1861 1.49 cgd /* Pick interesting process. */
1862 1.51 mycroft for (pick = NULL; p != 0; p = p->p_pglist.le_next)
1863 1.49 cgd if (proc_compare(pick, p))
1864 1.49 cgd pick = p;
1865 1.49 cgd
1866 1.49 cgd ttyprintf(tp, " cmd: %s %d [%s] ", pick->p_comm, pick->p_pid,
1867 1.49 cgd pick->p_stat == SRUN ? "running" :
1868 1.49 cgd pick->p_wmesg ? pick->p_wmesg : "iowait");
1869 1.49 cgd
1870 1.49 cgd calcru(pick, &utime, &stime, NULL);
1871 1.49 cgd
1872 1.62 cgd /* Round up and print user time. */
1873 1.62 cgd utime.tv_usec += 5000;
1874 1.62 cgd if (utime.tv_usec >= 1000000) {
1875 1.62 cgd utime.tv_sec += 1;
1876 1.62 cgd utime.tv_usec -= 1000000;
1877 1.62 cgd }
1878 1.62 cgd ttyprintf(tp, "%d.%02du ", utime.tv_sec,
1879 1.62 cgd utime.tv_usec / 10000);
1880 1.62 cgd
1881 1.62 cgd /* Round up and print system time. */
1882 1.62 cgd stime.tv_usec += 5000;
1883 1.62 cgd if (stime.tv_usec >= 1000000) {
1884 1.62 cgd stime.tv_sec += 1;
1885 1.62 cgd stime.tv_usec -= 1000000;
1886 1.62 cgd }
1887 1.62 cgd ttyprintf(tp, "%d.%02ds ", stime.tv_sec,
1888 1.62 cgd stime.tv_usec / 10000);
1889 1.49 cgd
1890 1.49 cgd #define pgtok(a) (((a) * NBPG) / 1024)
1891 1.49 cgd /* Print percentage cpu, resident set size. */
1892 1.49 cgd tmp = pick->p_pctcpu * 10000 + FSCALE / 2 >> FSHIFT;
1893 1.49 cgd ttyprintf(tp, "%d%% %dk\n",
1894 1.49 cgd tmp / 100,
1895 1.49 cgd pick->p_stat == SIDL || pick->p_stat == SZOMB ? 0 :
1896 1.49 cgd #ifdef pmap_resident_count
1897 1.49 cgd pgtok(pmap_resident_count(&pick->p_vmspace->vm_pmap))
1898 1.49 cgd #else
1899 1.49 cgd pgtok(pick->p_vmspace->vm_rssize)
1900 1.49 cgd #endif
1901 1.49 cgd );
1902 1.49 cgd }
1903 1.49 cgd tp->t_rocount = 0; /* so pending input will be retyped if BS */
1904 1.49 cgd }
1905 1.49 cgd
1906 1.49 cgd /*
1907 1.49 cgd * Returns 1 if p2 is "better" than p1
1908 1.49 cgd *
1909 1.49 cgd * The algorithm for picking the "interesting" process is thus:
1910 1.49 cgd *
1911 1.49 cgd * 1) Only foreground processes are eligible - implied.
1912 1.49 cgd * 2) Runnable processes are favored over anything else. The runner
1913 1.49 cgd * with the highest cpu utilization is picked (p_estcpu). Ties are
1914 1.49 cgd * broken by picking the highest pid.
1915 1.49 cgd * 3) The sleeper with the shortest sleep time is next. With ties,
1916 1.49 cgd * we pick out just "short-term" sleepers (P_SINTR == 0).
1917 1.49 cgd * 4) Further ties are broken by picking the highest pid.
1918 1.49 cgd */
1919 1.49 cgd #define ISRUN(p) (((p)->p_stat == SRUN) || ((p)->p_stat == SIDL))
1920 1.49 cgd #define TESTAB(a, b) ((a)<<1 | (b))
1921 1.49 cgd #define ONLYA 2
1922 1.49 cgd #define ONLYB 1
1923 1.49 cgd #define BOTH 3
1924 1.49 cgd
1925 1.49 cgd static int
1926 1.49 cgd proc_compare(p1, p2)
1927 1.49 cgd register struct proc *p1, *p2;
1928 1.49 cgd {
1929 1.49 cgd
1930 1.49 cgd if (p1 == NULL)
1931 1.49 cgd return (1);
1932 1.49 cgd /*
1933 1.49 cgd * see if at least one of them is runnable
1934 1.49 cgd */
1935 1.49 cgd switch (TESTAB(ISRUN(p1), ISRUN(p2))) {
1936 1.49 cgd case ONLYA:
1937 1.49 cgd return (0);
1938 1.49 cgd case ONLYB:
1939 1.49 cgd return (1);
1940 1.49 cgd case BOTH:
1941 1.49 cgd /*
1942 1.49 cgd * tie - favor one with highest recent cpu utilization
1943 1.49 cgd */
1944 1.49 cgd if (p2->p_estcpu > p1->p_estcpu)
1945 1.49 cgd return (1);
1946 1.49 cgd if (p1->p_estcpu > p2->p_estcpu)
1947 1.49 cgd return (0);
1948 1.49 cgd return (p2->p_pid > p1->p_pid); /* tie - return highest pid */
1949 1.49 cgd }
1950 1.49 cgd /*
1951 1.49 cgd * weed out zombies
1952 1.49 cgd */
1953 1.49 cgd switch (TESTAB(p1->p_stat == SZOMB, p2->p_stat == SZOMB)) {
1954 1.49 cgd case ONLYA:
1955 1.49 cgd return (1);
1956 1.49 cgd case ONLYB:
1957 1.49 cgd return (0);
1958 1.49 cgd case BOTH:
1959 1.49 cgd return (p2->p_pid > p1->p_pid); /* tie - return highest pid */
1960 1.49 cgd }
1961 1.49 cgd /*
1962 1.49 cgd * pick the one with the smallest sleep time
1963 1.49 cgd */
1964 1.49 cgd if (p2->p_slptime > p1->p_slptime)
1965 1.49 cgd return (0);
1966 1.49 cgd if (p1->p_slptime > p2->p_slptime)
1967 1.49 cgd return (1);
1968 1.49 cgd /*
1969 1.49 cgd * favor one sleeping in a non-interruptible sleep
1970 1.49 cgd */
1971 1.49 cgd if (p1->p_flag & P_SINTR && (p2->p_flag & P_SINTR) == 0)
1972 1.49 cgd return (1);
1973 1.49 cgd if (p2->p_flag & P_SINTR && (p1->p_flag & P_SINTR) == 0)
1974 1.49 cgd return (0);
1975 1.49 cgd return (p2->p_pid > p1->p_pid); /* tie - return highest pid */
1976 1.49 cgd }
1977 1.49 cgd
1978 1.49 cgd /*
1979 1.49 cgd * Output char to tty; console putchar style.
1980 1.49 cgd */
1981 1.49 cgd int
1982 1.49 cgd tputchar(c, tp)
1983 1.49 cgd int c;
1984 1.49 cgd struct tty *tp;
1985 1.49 cgd {
1986 1.49 cgd register int s;
1987 1.49 cgd
1988 1.49 cgd s = spltty();
1989 1.49 cgd if (ISSET(tp->t_state,
1990 1.49 cgd TS_CARR_ON | TS_ISOPEN) != (TS_CARR_ON | TS_ISOPEN)) {
1991 1.49 cgd splx(s);
1992 1.49 cgd return (-1);
1993 1.49 cgd }
1994 1.49 cgd if (c == '\n')
1995 1.49 cgd (void)ttyoutput('\r', tp);
1996 1.49 cgd (void)ttyoutput(c, tp);
1997 1.49 cgd ttstart(tp);
1998 1.49 cgd splx(s);
1999 1.49 cgd return (0);
2000 1.49 cgd }
2001 1.49 cgd
2002 1.49 cgd /*
2003 1.49 cgd * Sleep on chan, returning ERESTART if tty changed while we napped and
2004 1.49 cgd * returning any errors (e.g. EINTR/ETIMEDOUT) reported by tsleep. If
2005 1.49 cgd * the tty is revoked, restarting a pending call will redo validation done
2006 1.49 cgd * at the start of the call.
2007 1.49 cgd */
2008 1.49 cgd int
2009 1.49 cgd ttysleep(tp, chan, pri, wmesg, timo)
2010 1.49 cgd struct tty *tp;
2011 1.49 cgd void *chan;
2012 1.49 cgd int pri, timo;
2013 1.49 cgd char *wmesg;
2014 1.49 cgd {
2015 1.49 cgd int error;
2016 1.49 cgd short gen;
2017 1.49 cgd
2018 1.49 cgd gen = tp->t_gen;
2019 1.49 cgd if (error = tsleep(chan, pri, wmesg, timo))
2020 1.49 cgd return (error);
2021 1.49 cgd return (tp->t_gen == gen ? 0 : ERESTART);
2022 1.49 cgd }
2023 1.49 cgd
2024 1.49 cgd /*
2025 1.49 cgd * Allocate a tty structure and its associated buffers.
2026 1.49 cgd */
2027 1.49 cgd struct tty *
2028 1.49 cgd ttymalloc()
2029 1.49 cgd {
2030 1.49 cgd struct tty *tp;
2031 1.49 cgd
2032 1.49 cgd MALLOC(tp, struct tty *, sizeof(struct tty), M_TTYS, M_WAITOK);
2033 1.49 cgd bzero(tp, sizeof *tp);
2034 1.49 cgd /* XXX: default to 1024 chars for now */
2035 1.49 cgd clalloc(&tp->t_rawq, 1024, 1);
2036 1.49 cgd clalloc(&tp->t_canq, 1024, 1);
2037 1.49 cgd /* output queue doesn't need quoting */
2038 1.49 cgd clalloc(&tp->t_outq, 1024, 0);
2039 1.49 cgd return(tp);
2040 1.49 cgd }
2041 1.49 cgd
2042 1.49 cgd /*
2043 1.49 cgd * Free a tty structure and its buffers.
2044 1.49 cgd */
2045 1.49 cgd void
2046 1.49 cgd ttyfree(tp)
2047 1.49 cgd struct tty *tp;
2048 1.49 cgd {
2049 1.49 cgd clfree(&tp->t_rawq);
2050 1.49 cgd clfree(&tp->t_canq);
2051 1.49 cgd clfree(&tp->t_outq);
2052 1.49 cgd FREE(tp, M_TTYS);
2053 1.49 cgd }
2054