xref: /freebsd/sys/kern/kern_cons.c (revision 9d6ae1e3c26a0c3334a268b587f17dccb9a503d7)
1c9dba40cSEd Schouten /*-
251369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni  *
4c9dba40cSEd Schouten  * Copyright (c) 1988 University of Utah.
5c9dba40cSEd Schouten  * Copyright (c) 1991 The Regents of the University of California.
6f389bc95SAndriy Gapon  * Copyright (c) 1999 Michael Smith
7f389bc95SAndriy Gapon  * Copyright (c) 2005 Pawel Jakub Dawidek <pjd@FreeBSD.org>
8f389bc95SAndriy Gapon  *
9c9dba40cSEd Schouten  * All rights reserved.
10c9dba40cSEd Schouten  *
11c9dba40cSEd Schouten  * This code is derived from software contributed to Berkeley by
12c9dba40cSEd Schouten  * the Systems Programming Group of the University of Utah Computer
13c9dba40cSEd Schouten  * Science Department.
14c9dba40cSEd Schouten  *
15c9dba40cSEd Schouten  * Redistribution and use in source and binary forms, with or without
16c9dba40cSEd Schouten  * modification, are permitted provided that the following conditions
17c9dba40cSEd Schouten  * are met:
18c9dba40cSEd Schouten  * 1. Redistributions of source code must retain the above copyright
19c9dba40cSEd Schouten  *    notice, this list of conditions and the following disclaimer.
20c9dba40cSEd Schouten  * 2. Redistributions in binary form must reproduce the above copyright
21c9dba40cSEd Schouten  *    notice, this list of conditions and the following disclaimer in the
22c9dba40cSEd Schouten  *    documentation and/or other materials provided with the distribution.
2369a28758SEd Maste  * 3. Neither the name of the University nor the names of its contributors
24c9dba40cSEd Schouten  *    may be used to endorse or promote products derived from this software
25c9dba40cSEd Schouten  *    without specific prior written permission.
26c9dba40cSEd Schouten  *
27c9dba40cSEd Schouten  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28c9dba40cSEd Schouten  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29c9dba40cSEd Schouten  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30c9dba40cSEd Schouten  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31c9dba40cSEd Schouten  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32c9dba40cSEd Schouten  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33c9dba40cSEd Schouten  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34c9dba40cSEd Schouten  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35c9dba40cSEd Schouten  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36c9dba40cSEd Schouten  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37c9dba40cSEd Schouten  * SUCH DAMAGE.
38c9dba40cSEd Schouten  *
39c9dba40cSEd Schouten  *	from: @(#)cons.c	7.2 (Berkeley) 5/9/91
40c9dba40cSEd Schouten  */
41c9dba40cSEd Schouten 
42c9dba40cSEd Schouten #include <sys/cdefs.h>
43c9dba40cSEd Schouten __FBSDID("$FreeBSD$");
44c9dba40cSEd Schouten 
45c9dba40cSEd Schouten #include "opt_ddb.h"
4659644098SEd Maste #include "opt_syscons.h"
47c9dba40cSEd Schouten 
48c9dba40cSEd Schouten #include <sys/param.h>
49c9dba40cSEd Schouten #include <sys/systm.h>
50c9dba40cSEd Schouten #include <sys/lock.h>
51c9dba40cSEd Schouten #include <sys/mutex.h>
52c9dba40cSEd Schouten #include <sys/conf.h>
53c9dba40cSEd Schouten #include <sys/cons.h>
54c9dba40cSEd Schouten #include <sys/fcntl.h>
553ed7166aSKyle Evans #include <sys/kbio.h>
56c9dba40cSEd Schouten #include <sys/kdb.h>
57c9dba40cSEd Schouten #include <sys/kernel.h>
58c9dba40cSEd Schouten #include <sys/malloc.h>
59c9dba40cSEd Schouten #include <sys/msgbuf.h>
60c9dba40cSEd Schouten #include <sys/namei.h>
61c9dba40cSEd Schouten #include <sys/priv.h>
62c9dba40cSEd Schouten #include <sys/proc.h>
63c9dba40cSEd Schouten #include <sys/queue.h>
64c9dba40cSEd Schouten #include <sys/reboot.h>
65c9dba40cSEd Schouten #include <sys/sysctl.h>
66c9dba40cSEd Schouten #include <sys/sbuf.h>
67*9d6ae1e3SColin Percival #include <sys/tslog.h>
68c9dba40cSEd Schouten #include <sys/tty.h>
69c9dba40cSEd Schouten #include <sys/uio.h>
70c9dba40cSEd Schouten #include <sys/vnode.h>
71c9dba40cSEd Schouten 
72c9dba40cSEd Schouten #include <ddb/ddb.h>
73c9dba40cSEd Schouten 
743ed7166aSKyle Evans #include <dev/kbd/kbdreg.h>
753ed7166aSKyle Evans 
76c9dba40cSEd Schouten #include <machine/cpu.h>
77c9dba40cSEd Schouten #include <machine/clock.h>
78c9dba40cSEd Schouten 
79c9dba40cSEd Schouten static MALLOC_DEFINE(M_TTYCONS, "tty console", "tty console handling");
80c9dba40cSEd Schouten 
81c9dba40cSEd Schouten struct cn_device {
82c9dba40cSEd Schouten 	STAILQ_ENTRY(cn_device) cnd_next;
83c9dba40cSEd Schouten 	struct		consdev *cnd_cn;
84c9dba40cSEd Schouten };
85c9dba40cSEd Schouten 
86c9dba40cSEd Schouten #define CNDEVPATHMAX	32
87c9dba40cSEd Schouten #define CNDEVTAB_SIZE	4
88c9dba40cSEd Schouten static struct cn_device cn_devtab[CNDEVTAB_SIZE];
89c9dba40cSEd Schouten static STAILQ_HEAD(, cn_device) cn_devlist =
90c9dba40cSEd Schouten     STAILQ_HEAD_INITIALIZER(cn_devlist);
91c9dba40cSEd Schouten 
92c9dba40cSEd Schouten int	cons_avail_mask = 0;	/* Bit mask. Each registered low level console
93c9dba40cSEd Schouten 				 * which is currently unavailable for inpit
94c9dba40cSEd Schouten 				 * (i.e., if it is in graphics mode) will have
95c9dba40cSEd Schouten 				 * this bit cleared.
96c9dba40cSEd Schouten 				 */
97780766ebSMark Johnston 
98c9dba40cSEd Schouten static int cn_mute;
99780766ebSMark Johnston SYSCTL_INT(_kern, OID_AUTO, consmute, CTLFLAG_RW, &cn_mute, 0,
100780766ebSMark Johnston     "State of the console muting");
101780766ebSMark Johnston 
102c9dba40cSEd Schouten static char *consbuf;			/* buffer used by `consmsgbuf' */
103c9dba40cSEd Schouten static struct callout conscallout;	/* callout for outputting to constty */
104c9dba40cSEd Schouten struct msgbuf consmsgbuf;		/* message buffer for console tty */
1052bfdc1eeSWarner Losh static bool console_pausing;		/* pause after each line during probe */
106fe20aaecSRyan Libby static const char console_pausestr[] =
107c9dba40cSEd Schouten "<pause; press any key to proceed to next line or '.' to end pause mode>";
108c9dba40cSEd Schouten struct tty *constty;			/* pointer to console "window" tty */
109bd6085c6SAlexander Motin static struct mtx constty_mtx;		/* Mutex for constty assignment. */
110bd6085c6SAlexander Motin MTX_SYSINIT(constty_mtx, &constty_mtx, "constty_mtx", MTX_DEF);
111c9dba40cSEd Schouten static struct mtx cnputs_mtx;		/* Mutex for cnputs(). */
112bd6085c6SAlexander Motin MTX_SYSINIT(cnputs_mtx, &cnputs_mtx, "cnputs_mtx", MTX_SPIN | MTX_NOWITNESS);
113c9dba40cSEd Schouten 
114c9dba40cSEd Schouten static void constty_timeout(void *arg);
115c9dba40cSEd Schouten 
116c9dba40cSEd Schouten static struct consdev cons_consdev;
117c9dba40cSEd Schouten DATA_SET(cons_set, cons_consdev);
118c9dba40cSEd Schouten SET_DECLARE(cons_set, struct consdev);
119c9dba40cSEd Schouten 
120f46412c0SKyle Evans /*
121f46412c0SKyle Evans  * Stub for configurations that don't actually have a keyboard driver. Inclusion
122f46412c0SKyle Evans  * of kbd.c is contingent on any number of keyboard/console drivers being
123f46412c0SKyle Evans  * present in the kernel; rather than trying to catch them all, we'll just
124f46412c0SKyle Evans  * maintain this weak kbdinit that will be overridden by the strong version in
125f46412c0SKyle Evans  * kbd.c if it's present.
126f46412c0SKyle Evans  */
127f46412c0SKyle Evans __weak_symbol void
128f46412c0SKyle Evans kbdinit(void)
129f46412c0SKyle Evans {
130f46412c0SKyle Evans 
131f46412c0SKyle Evans }
132f46412c0SKyle Evans 
133c9dba40cSEd Schouten void
134c9dba40cSEd Schouten cninit(void)
135c9dba40cSEd Schouten {
136c9dba40cSEd Schouten 	struct consdev *best_cn, *cn, **list;
137c9dba40cSEd Schouten 
138*9d6ae1e3SColin Percival 	TSENTER();
139c9dba40cSEd Schouten 	/*
140c9dba40cSEd Schouten 	 * Check if we should mute the console (for security reasons perhaps)
141c9dba40cSEd Schouten 	 * It can be changes dynamically using sysctl kern.consmute
142c9dba40cSEd Schouten 	 * once we are up and going.
143c9dba40cSEd Schouten 	 *
144c9dba40cSEd Schouten 	 */
145c9dba40cSEd Schouten         cn_mute = ((boothowto & (RB_MUTE
146c9dba40cSEd Schouten 			|RB_SINGLE
147c9dba40cSEd Schouten 			|RB_VERBOSE
148c9dba40cSEd Schouten 			|RB_ASKNAME)) == RB_MUTE);
149c9dba40cSEd Schouten 
150c9dba40cSEd Schouten 	/*
1513ed7166aSKyle Evans 	 * Bring up the kbd layer just in time for cnprobe.  Console drivers
1523ed7166aSKyle Evans 	 * have a dependency on kbd being ready, so this fits nicely between the
1533ed7166aSKyle Evans 	 * machdep callers of cninit() and MI probing/initialization of consoles
1543ed7166aSKyle Evans 	 * here.
1553ed7166aSKyle Evans 	 */
1563ed7166aSKyle Evans 	kbdinit();
1573ed7166aSKyle Evans 
1583ed7166aSKyle Evans 	/*
159c9dba40cSEd Schouten 	 * Find the first console with the highest priority.
160c9dba40cSEd Schouten 	 */
161c9dba40cSEd Schouten 	best_cn = NULL;
162c9dba40cSEd Schouten 	SET_FOREACH(list, cons_set) {
163c9dba40cSEd Schouten 		cn = *list;
164c9dba40cSEd Schouten 		cnremove(cn);
1652992abe0SEd Schouten 		/* Skip cons_consdev. */
1662992abe0SEd Schouten 		if (cn->cn_ops == NULL)
167c9dba40cSEd Schouten 			continue;
1682992abe0SEd Schouten 		cn->cn_ops->cn_probe(cn);
169c9dba40cSEd Schouten 		if (cn->cn_pri == CN_DEAD)
170c9dba40cSEd Schouten 			continue;
171c9dba40cSEd Schouten 		if (best_cn == NULL || cn->cn_pri > best_cn->cn_pri)
172c9dba40cSEd Schouten 			best_cn = cn;
173c9dba40cSEd Schouten 		if (boothowto & RB_MULTIPLE) {
174c9dba40cSEd Schouten 			/*
175c9dba40cSEd Schouten 			 * Initialize console, and attach to it.
176c9dba40cSEd Schouten 			 */
1772992abe0SEd Schouten 			cn->cn_ops->cn_init(cn);
178c9dba40cSEd Schouten 			cnadd(cn);
179c9dba40cSEd Schouten 		}
180c9dba40cSEd Schouten 	}
181c9dba40cSEd Schouten 	if (best_cn == NULL)
182c9dba40cSEd Schouten 		return;
183c9dba40cSEd Schouten 	if ((boothowto & RB_MULTIPLE) == 0) {
1842992abe0SEd Schouten 		best_cn->cn_ops->cn_init(best_cn);
185c9dba40cSEd Schouten 		cnadd(best_cn);
186c9dba40cSEd Schouten 	}
187c9dba40cSEd Schouten 	if (boothowto & RB_PAUSE)
1882bfdc1eeSWarner Losh 		console_pausing = true;
189c9dba40cSEd Schouten 	/*
190c9dba40cSEd Schouten 	 * Make the best console the preferred console.
191c9dba40cSEd Schouten 	 */
192c9dba40cSEd Schouten 	cnselect(best_cn);
193dc61566fSZbigniew Bodek 
194dc61566fSZbigniew Bodek #ifdef EARLY_PRINTF
195dc61566fSZbigniew Bodek 	/*
196dc61566fSZbigniew Bodek 	 * Release early console.
197dc61566fSZbigniew Bodek 	 */
198dc61566fSZbigniew Bodek 	early_putc = NULL;
199dc61566fSZbigniew Bodek #endif
200*9d6ae1e3SColin Percival 	TSEXIT();
201c9dba40cSEd Schouten }
202c9dba40cSEd Schouten 
203c9dba40cSEd Schouten void
2049806e82aSDimitry Andric cninit_finish(void)
205c9dba40cSEd Schouten {
2062bfdc1eeSWarner Losh 	console_pausing = false;
207c9dba40cSEd Schouten }
208c9dba40cSEd Schouten 
209c9dba40cSEd Schouten /* add a new physical console to back the virtual console */
210c9dba40cSEd Schouten int
211c9dba40cSEd Schouten cnadd(struct consdev *cn)
212c9dba40cSEd Schouten {
213c9dba40cSEd Schouten 	struct cn_device *cnd;
214c9dba40cSEd Schouten 	int i;
215c9dba40cSEd Schouten 
216c9dba40cSEd Schouten 	STAILQ_FOREACH(cnd, &cn_devlist, cnd_next)
217c9dba40cSEd Schouten 		if (cnd->cnd_cn == cn)
218c9dba40cSEd Schouten 			return (0);
219c9dba40cSEd Schouten 	for (i = 0; i < CNDEVTAB_SIZE; i++) {
220c9dba40cSEd Schouten 		cnd = &cn_devtab[i];
221c9dba40cSEd Schouten 		if (cnd->cnd_cn == NULL)
222c9dba40cSEd Schouten 			break;
223c9dba40cSEd Schouten 	}
224c9dba40cSEd Schouten 	if (cnd->cnd_cn != NULL)
225c9dba40cSEd Schouten 		return (ENOMEM);
226c9dba40cSEd Schouten 	cnd->cnd_cn = cn;
227c9dba40cSEd Schouten 	if (cn->cn_name[0] == '\0') {
228c9dba40cSEd Schouten 		/* XXX: it is unclear if/where this print might output */
229c9dba40cSEd Schouten 		printf("WARNING: console at %p has no name\n", cn);
230c9dba40cSEd Schouten 	}
231c9dba40cSEd Schouten 	STAILQ_INSERT_TAIL(&cn_devlist, cnd, cnd_next);
232c9dba40cSEd Schouten 	if (STAILQ_FIRST(&cn_devlist) == cnd)
233c9dba40cSEd Schouten 		ttyconsdev_select(cnd->cnd_cn->cn_name);
234c9dba40cSEd Schouten 
235c9dba40cSEd Schouten 	/* Add device to the active mask. */
236c9dba40cSEd Schouten 	cnavailable(cn, (cn->cn_flags & CN_FLAG_NOAVAIL) == 0);
237c9dba40cSEd Schouten 
238c9dba40cSEd Schouten 	return (0);
239c9dba40cSEd Schouten }
240c9dba40cSEd Schouten 
241c9dba40cSEd Schouten void
242c9dba40cSEd Schouten cnremove(struct consdev *cn)
243c9dba40cSEd Schouten {
244c9dba40cSEd Schouten 	struct cn_device *cnd;
245c9dba40cSEd Schouten 	int i;
246c9dba40cSEd Schouten 
247c9dba40cSEd Schouten 	STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) {
248c9dba40cSEd Schouten 		if (cnd->cnd_cn != cn)
249c9dba40cSEd Schouten 			continue;
250c9dba40cSEd Schouten 		if (STAILQ_FIRST(&cn_devlist) == cnd)
251c9dba40cSEd Schouten 			ttyconsdev_select(NULL);
252c9dba40cSEd Schouten 		STAILQ_REMOVE(&cn_devlist, cnd, cn_device, cnd_next);
253c9dba40cSEd Schouten 		cnd->cnd_cn = NULL;
254c9dba40cSEd Schouten 
255c9dba40cSEd Schouten 		/* Remove this device from available mask. */
256c9dba40cSEd Schouten 		for (i = 0; i < CNDEVTAB_SIZE; i++)
257c9dba40cSEd Schouten 			if (cnd == &cn_devtab[i]) {
258c9dba40cSEd Schouten 				cons_avail_mask &= ~(1 << i);
259c9dba40cSEd Schouten 				break;
260c9dba40cSEd Schouten 			}
261c9dba40cSEd Schouten #if 0
262c9dba40cSEd Schouten 		/*
263c9dba40cSEd Schouten 		 * XXX
264c9dba40cSEd Schouten 		 * syscons gets really confused if console resources are
265c9dba40cSEd Schouten 		 * freed after the system has initialized.
266c9dba40cSEd Schouten 		 */
267c9dba40cSEd Schouten 		if (cn->cn_term != NULL)
2682992abe0SEd Schouten 			cn->cn_ops->cn_term(cn);
269c9dba40cSEd Schouten #endif
270c9dba40cSEd Schouten 		return;
271c9dba40cSEd Schouten 	}
272c9dba40cSEd Schouten }
273c9dba40cSEd Schouten 
274c9dba40cSEd Schouten void
275c9dba40cSEd Schouten cnselect(struct consdev *cn)
276c9dba40cSEd Schouten {
277c9dba40cSEd Schouten 	struct cn_device *cnd;
278c9dba40cSEd Schouten 
279c9dba40cSEd Schouten 	STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) {
280c9dba40cSEd Schouten 		if (cnd->cnd_cn != cn)
281c9dba40cSEd Schouten 			continue;
282c9dba40cSEd Schouten 		if (cnd == STAILQ_FIRST(&cn_devlist))
283c9dba40cSEd Schouten 			return;
284c9dba40cSEd Schouten 		STAILQ_REMOVE(&cn_devlist, cnd, cn_device, cnd_next);
285c9dba40cSEd Schouten 		STAILQ_INSERT_HEAD(&cn_devlist, cnd, cnd_next);
286c9dba40cSEd Schouten 		ttyconsdev_select(cnd->cnd_cn->cn_name);
287c9dba40cSEd Schouten 		return;
288c9dba40cSEd Schouten 	}
289c9dba40cSEd Schouten }
290c9dba40cSEd Schouten 
291c9dba40cSEd Schouten void
292c9dba40cSEd Schouten cnavailable(struct consdev *cn, int available)
293c9dba40cSEd Schouten {
294c9dba40cSEd Schouten 	int i;
295c9dba40cSEd Schouten 
296c9dba40cSEd Schouten 	for (i = 0; i < CNDEVTAB_SIZE; i++) {
297c9dba40cSEd Schouten 		if (cn_devtab[i].cnd_cn == cn)
298c9dba40cSEd Schouten 			break;
299c9dba40cSEd Schouten 	}
300c9dba40cSEd Schouten 	if (available) {
301c9dba40cSEd Schouten 		if (i < CNDEVTAB_SIZE)
302c9dba40cSEd Schouten 			cons_avail_mask |= (1 << i);
303c9dba40cSEd Schouten 		cn->cn_flags &= ~CN_FLAG_NOAVAIL;
304c9dba40cSEd Schouten 	} else {
305c9dba40cSEd Schouten 		if (i < CNDEVTAB_SIZE)
306c9dba40cSEd Schouten 			cons_avail_mask &= ~(1 << i);
307c9dba40cSEd Schouten 		cn->cn_flags |= CN_FLAG_NOAVAIL;
308c9dba40cSEd Schouten 	}
309c9dba40cSEd Schouten }
310c9dba40cSEd Schouten 
311c9dba40cSEd Schouten int
312c9dba40cSEd Schouten cnunavailable(void)
313c9dba40cSEd Schouten {
314c9dba40cSEd Schouten 
315c9dba40cSEd Schouten 	return (cons_avail_mask == 0);
316c9dba40cSEd Schouten }
317c9dba40cSEd Schouten 
318c9dba40cSEd Schouten /*
319c9dba40cSEd Schouten  * sysctl_kern_console() provides output parseable in conscontrol(1).
320c9dba40cSEd Schouten  */
321c9dba40cSEd Schouten static int
322c9dba40cSEd Schouten sysctl_kern_console(SYSCTL_HANDLER_ARGS)
323c9dba40cSEd Schouten {
324c9dba40cSEd Schouten 	struct cn_device *cnd;
325c9dba40cSEd Schouten 	struct consdev *cp, **list;
326c9dba40cSEd Schouten 	char *p;
3272bfdc1eeSWarner Losh 	bool delete;
3282bfdc1eeSWarner Losh 	int error;
329c9dba40cSEd Schouten 	struct sbuf *sb;
330c9dba40cSEd Schouten 
331657282e0SIan Lepore 	sb = sbuf_new(NULL, NULL, CNDEVPATHMAX * 2, SBUF_AUTOEXTEND |
332657282e0SIan Lepore 	    SBUF_INCLUDENUL);
333c9dba40cSEd Schouten 	if (sb == NULL)
334c9dba40cSEd Schouten 		return (ENOMEM);
335c9dba40cSEd Schouten 	sbuf_clear(sb);
336c9dba40cSEd Schouten 	STAILQ_FOREACH(cnd, &cn_devlist, cnd_next)
337c9dba40cSEd Schouten 		sbuf_printf(sb, "%s,", cnd->cnd_cn->cn_name);
338c9dba40cSEd Schouten 	sbuf_printf(sb, "/");
339c9dba40cSEd Schouten 	SET_FOREACH(list, cons_set) {
340c9dba40cSEd Schouten 		cp = *list;
341c9dba40cSEd Schouten 		if (cp->cn_name[0] != '\0')
342c9dba40cSEd Schouten 			sbuf_printf(sb, "%s,", cp->cn_name);
343c9dba40cSEd Schouten 	}
344c9dba40cSEd Schouten 	sbuf_finish(sb);
345c9dba40cSEd Schouten 	error = sysctl_handle_string(oidp, sbuf_data(sb), sbuf_len(sb), req);
346c9dba40cSEd Schouten 	if (error == 0 && req->newptr != NULL) {
347c9dba40cSEd Schouten 		p = sbuf_data(sb);
348c9dba40cSEd Schouten 		error = ENXIO;
3492bfdc1eeSWarner Losh 		delete = false;
350c9dba40cSEd Schouten 		if (*p == '-') {
3512bfdc1eeSWarner Losh 			delete = true;
352c9dba40cSEd Schouten 			p++;
353c9dba40cSEd Schouten 		}
354c9dba40cSEd Schouten 		SET_FOREACH(list, cons_set) {
355c9dba40cSEd Schouten 			cp = *list;
356c9dba40cSEd Schouten 			if (strcmp(p, cp->cn_name) != 0)
357c9dba40cSEd Schouten 				continue;
358c9dba40cSEd Schouten 			if (delete) {
359c9dba40cSEd Schouten 				cnremove(cp);
360c9dba40cSEd Schouten 				error = 0;
361c9dba40cSEd Schouten 			} else {
362c9dba40cSEd Schouten 				error = cnadd(cp);
363c9dba40cSEd Schouten 				if (error == 0)
364c9dba40cSEd Schouten 					cnselect(cp);
365c9dba40cSEd Schouten 			}
366c9dba40cSEd Schouten 			break;
367c9dba40cSEd Schouten 		}
368c9dba40cSEd Schouten 	}
369c9dba40cSEd Schouten 	sbuf_delete(sb);
370c9dba40cSEd Schouten 	return (error);
371c9dba40cSEd Schouten }
372c9dba40cSEd Schouten 
3737029da5cSPawel Biernacki SYSCTL_PROC(_kern, OID_AUTO, console,
3747029da5cSPawel Biernacki     CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_NEEDGIANT, 0, 0,
3757029da5cSPawel Biernacki     sysctl_kern_console, "A",
3767029da5cSPawel Biernacki     "Console device control");
377c9dba40cSEd Schouten 
3789976156fSAndriy Gapon void
3799806e82aSDimitry Andric cngrab(void)
3809976156fSAndriy Gapon {
3819976156fSAndriy Gapon 	struct cn_device *cnd;
3829976156fSAndriy Gapon 	struct consdev *cn;
3839976156fSAndriy Gapon 
3849976156fSAndriy Gapon 	STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) {
3859976156fSAndriy Gapon 		cn = cnd->cnd_cn;
3869976156fSAndriy Gapon 		if (!kdb_active || !(cn->cn_flags & CN_FLAG_NODEBUG))
3879976156fSAndriy Gapon 			cn->cn_ops->cn_grab(cn);
3889976156fSAndriy Gapon 	}
3899976156fSAndriy Gapon }
3909976156fSAndriy Gapon 
3919976156fSAndriy Gapon void
3929806e82aSDimitry Andric cnungrab(void)
3939976156fSAndriy Gapon {
3949976156fSAndriy Gapon 	struct cn_device *cnd;
3959976156fSAndriy Gapon 	struct consdev *cn;
3969976156fSAndriy Gapon 
3979976156fSAndriy Gapon 	STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) {
3989976156fSAndriy Gapon 		cn = cnd->cnd_cn;
3999976156fSAndriy Gapon 		if (!kdb_active || !(cn->cn_flags & CN_FLAG_NODEBUG))
4009976156fSAndriy Gapon 			cn->cn_ops->cn_ungrab(cn);
4019976156fSAndriy Gapon 	}
4029976156fSAndriy Gapon }
4039976156fSAndriy Gapon 
404ec6faf94SAndriy Gapon void
4059806e82aSDimitry Andric cnresume(void)
406ec6faf94SAndriy Gapon {
407ec6faf94SAndriy Gapon 	struct cn_device *cnd;
408ec6faf94SAndriy Gapon 	struct consdev *cn;
409ec6faf94SAndriy Gapon 
410ec6faf94SAndriy Gapon 	STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) {
411ec6faf94SAndriy Gapon 		cn = cnd->cnd_cn;
412ec6faf94SAndriy Gapon 		if (cn->cn_ops->cn_resume != NULL)
413ec6faf94SAndriy Gapon 			cn->cn_ops->cn_resume(cn);
414ec6faf94SAndriy Gapon 	}
415ec6faf94SAndriy Gapon }
416ec6faf94SAndriy Gapon 
417c9dba40cSEd Schouten /*
418c9dba40cSEd Schouten  * Low level console routines.
419c9dba40cSEd Schouten  */
420c9dba40cSEd Schouten int
421c9dba40cSEd Schouten cngetc(void)
422c9dba40cSEd Schouten {
423c9dba40cSEd Schouten 	int c;
424c9dba40cSEd Schouten 
425c9dba40cSEd Schouten 	if (cn_mute)
426c9dba40cSEd Schouten 		return (-1);
427c9dba40cSEd Schouten 	while ((c = cncheckc()) == -1)
428298fbd16SAndriy Gapon 		cpu_spinwait();
429c9dba40cSEd Schouten 	if (c == '\r')
430c9dba40cSEd Schouten 		c = '\n';		/* console input is always ICRNL */
431c9dba40cSEd Schouten 	return (c);
432c9dba40cSEd Schouten }
433c9dba40cSEd Schouten 
434c9dba40cSEd Schouten int
435c9dba40cSEd Schouten cncheckc(void)
436c9dba40cSEd Schouten {
437c9dba40cSEd Schouten 	struct cn_device *cnd;
438c9dba40cSEd Schouten 	struct consdev *cn;
439c9dba40cSEd Schouten 	int c;
440c9dba40cSEd Schouten 
441c9dba40cSEd Schouten 	if (cn_mute)
442c9dba40cSEd Schouten 		return (-1);
443c9dba40cSEd Schouten 	STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) {
444c9dba40cSEd Schouten 		cn = cnd->cnd_cn;
445c9dba40cSEd Schouten 		if (!kdb_active || !(cn->cn_flags & CN_FLAG_NODEBUG)) {
4462992abe0SEd Schouten 			c = cn->cn_ops->cn_getc(cn);
4472992abe0SEd Schouten 			if (c != -1)
448c9dba40cSEd Schouten 				return (c);
449c9dba40cSEd Schouten 		}
450c9dba40cSEd Schouten 	}
451c9dba40cSEd Schouten 	return (-1);
452c9dba40cSEd Schouten }
453c9dba40cSEd Schouten 
454c9dba40cSEd Schouten void
4558e628542SAndriy Gapon cngets(char *cp, size_t size, int visible)
4568e628542SAndriy Gapon {
4578e628542SAndriy Gapon 	char *lp, *end;
4588e628542SAndriy Gapon 	int c;
4598e628542SAndriy Gapon 
4608e628542SAndriy Gapon 	cngrab();
4618e628542SAndriy Gapon 
4628e628542SAndriy Gapon 	lp = cp;
4638e628542SAndriy Gapon 	end = cp + size - 1;
4648e628542SAndriy Gapon 	for (;;) {
4658e628542SAndriy Gapon 		c = cngetc() & 0177;
4668e628542SAndriy Gapon 		switch (c) {
4678e628542SAndriy Gapon 		case '\n':
4688e628542SAndriy Gapon 		case '\r':
4698e628542SAndriy Gapon 			cnputc(c);
4708e628542SAndriy Gapon 			*lp = '\0';
4718e628542SAndriy Gapon 			cnungrab();
4728e628542SAndriy Gapon 			return;
4738e628542SAndriy Gapon 		case '\b':
4748e628542SAndriy Gapon 		case '\177':
4758e628542SAndriy Gapon 			if (lp > cp) {
4769520f952SWarner Losh 				if (visible)
4779520f952SWarner Losh 					cnputs("\b \b");
4788e628542SAndriy Gapon 				lp--;
4798e628542SAndriy Gapon 			}
4808e628542SAndriy Gapon 			continue;
4818e628542SAndriy Gapon 		case '\0':
4828e628542SAndriy Gapon 			continue;
4838e628542SAndriy Gapon 		default:
4848e628542SAndriy Gapon 			if (lp < end) {
4858e628542SAndriy Gapon 				switch (visible) {
4868e628542SAndriy Gapon 				case GETS_NOECHO:
4878e628542SAndriy Gapon 					break;
4888e628542SAndriy Gapon 				case GETS_ECHOPASS:
4898e628542SAndriy Gapon 					cnputc('*');
4908e628542SAndriy Gapon 					break;
4918e628542SAndriy Gapon 				default:
4928e628542SAndriy Gapon 					cnputc(c);
4938e628542SAndriy Gapon 					break;
4948e628542SAndriy Gapon 				}
4958e628542SAndriy Gapon 				*lp++ = c;
4968e628542SAndriy Gapon 			}
4978e628542SAndriy Gapon 		}
4988e628542SAndriy Gapon 	}
4998e628542SAndriy Gapon }
5008e628542SAndriy Gapon 
5018e628542SAndriy Gapon void
502c9dba40cSEd Schouten cnputc(int c)
503c9dba40cSEd Schouten {
504c9dba40cSEd Schouten 	struct cn_device *cnd;
505c9dba40cSEd Schouten 	struct consdev *cn;
506fe20aaecSRyan Libby 	const char *cp;
507c9dba40cSEd Schouten 
50842c8459bSIan Lepore #ifdef EARLY_PRINTF
50942c8459bSIan Lepore 	if (early_putc != NULL) {
51042c8459bSIan Lepore 		if (c == '\n')
51142c8459bSIan Lepore 			early_putc('\r');
51242c8459bSIan Lepore 		early_putc(c);
51342c8459bSIan Lepore 		return;
51442c8459bSIan Lepore 	}
51542c8459bSIan Lepore #endif
51642c8459bSIan Lepore 
517c9dba40cSEd Schouten 	if (cn_mute || c == '\0')
518c9dba40cSEd Schouten 		return;
519c9dba40cSEd Schouten 	STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) {
520c9dba40cSEd Schouten 		cn = cnd->cnd_cn;
521c9dba40cSEd Schouten 		if (!kdb_active || !(cn->cn_flags & CN_FLAG_NODEBUG)) {
522c9dba40cSEd Schouten 			if (c == '\n')
5232992abe0SEd Schouten 				cn->cn_ops->cn_putc(cn, '\r');
5242992abe0SEd Schouten 			cn->cn_ops->cn_putc(cn, c);
525c9dba40cSEd Schouten 		}
526c9dba40cSEd Schouten 	}
527c9dba40cSEd Schouten 	if (console_pausing && c == '\n' && !kdb_active) {
528c9dba40cSEd Schouten 		for (cp = console_pausestr; *cp != '\0'; cp++)
529c9dba40cSEd Schouten 			cnputc(*cp);
530bf8696b4SAndriy Gapon 		cngrab();
531c9dba40cSEd Schouten 		if (cngetc() == '.')
5322bfdc1eeSWarner Losh 			console_pausing = false;
533bf8696b4SAndriy Gapon 		cnungrab();
534c9dba40cSEd Schouten 		cnputc('\r');
535c9dba40cSEd Schouten 		for (cp = console_pausestr; *cp != '\0'; cp++)
536c9dba40cSEd Schouten 			cnputc(' ');
537c9dba40cSEd Schouten 		cnputc('\r');
538c9dba40cSEd Schouten 	}
539c9dba40cSEd Schouten }
540c9dba40cSEd Schouten 
541c9dba40cSEd Schouten void
5426858c2ccSConrad Meyer cnputsn(const char *p, size_t n)
543c9dba40cSEd Schouten {
5446858c2ccSConrad Meyer 	size_t i;
5452bfdc1eeSWarner Losh 	bool unlock_reqd = false;
546c9dba40cSEd Schouten 
547bd6085c6SAlexander Motin 	if (mtx_initialized(&cnputs_mtx)) {
54804a8159dSHans Petter Selasky 		/*
54904a8159dSHans Petter Selasky 		 * NOTE: Debug prints and/or witness printouts in
55004a8159dSHans Petter Selasky 		 * console driver clients can cause the "cnputs_mtx"
55104a8159dSHans Petter Selasky 		 * mutex to recurse. Simply return if that happens.
55204a8159dSHans Petter Selasky 		 */
55304a8159dSHans Petter Selasky 		if (mtx_owned(&cnputs_mtx))
55404a8159dSHans Petter Selasky 			return;
555c9dba40cSEd Schouten 		mtx_lock_spin(&cnputs_mtx);
5562bfdc1eeSWarner Losh 		unlock_reqd = true;
557c9dba40cSEd Schouten 	}
558c9dba40cSEd Schouten 
5596858c2ccSConrad Meyer 	for (i = 0; i < n; i++)
5606858c2ccSConrad Meyer 		cnputc(p[i]);
561c9dba40cSEd Schouten 
562c9dba40cSEd Schouten 	if (unlock_reqd)
563c9dba40cSEd Schouten 		mtx_unlock_spin(&cnputs_mtx);
564c9dba40cSEd Schouten }
565c9dba40cSEd Schouten 
5666858c2ccSConrad Meyer void
567fe20aaecSRyan Libby cnputs(const char *p)
5686858c2ccSConrad Meyer {
5696858c2ccSConrad Meyer 	cnputsn(p, strlen(p));
5706858c2ccSConrad Meyer }
5716858c2ccSConrad Meyer 
572bd6085c6SAlexander Motin static unsigned int consmsgbuf_size = 65536;
573bd6085c6SAlexander Motin SYSCTL_UINT(_kern, OID_AUTO, consmsgbuf_size, CTLFLAG_RWTUN, &consmsgbuf_size,
574bd6085c6SAlexander Motin     0, "Console tty buffer size");
575c9dba40cSEd Schouten 
576c9dba40cSEd Schouten /*
577c9dba40cSEd Schouten  * Redirect console output to a tty.
578c9dba40cSEd Schouten  */
579bd6085c6SAlexander Motin int
580c9dba40cSEd Schouten constty_set(struct tty *tp)
581c9dba40cSEd Schouten {
582bd6085c6SAlexander Motin 	int size = consmsgbuf_size;
583bd6085c6SAlexander Motin 	void *buf = NULL;
584c9dba40cSEd Schouten 
585bd6085c6SAlexander Motin 	tty_assert_locked(tp);
586bd6085c6SAlexander Motin 	if (constty == tp)
587bd6085c6SAlexander Motin 		return (0);
588bd6085c6SAlexander Motin 	if (constty != NULL)
589bd6085c6SAlexander Motin 		return (EBUSY);
590bd6085c6SAlexander Motin 
591c9dba40cSEd Schouten 	if (consbuf == NULL) {
592bd6085c6SAlexander Motin 		tty_unlock(tp);
593bd6085c6SAlexander Motin 		buf = malloc(size, M_TTYCONS, M_WAITOK);
594bd6085c6SAlexander Motin 		tty_lock(tp);
595c9dba40cSEd Schouten 	}
596bd6085c6SAlexander Motin 	mtx_lock(&constty_mtx);
597bd6085c6SAlexander Motin 	if (constty != NULL) {
598bd6085c6SAlexander Motin 		mtx_unlock(&constty_mtx);
599bd6085c6SAlexander Motin 		free(buf, M_TTYCONS);
600bd6085c6SAlexander Motin 		return (EBUSY);
601bd6085c6SAlexander Motin 	}
602bd6085c6SAlexander Motin 	if (consbuf == NULL) {
603bd6085c6SAlexander Motin 		consbuf = buf;
604bd6085c6SAlexander Motin 		msgbuf_init(&consmsgbuf, buf, size);
605bd6085c6SAlexander Motin 	} else
606bd6085c6SAlexander Motin 		free(buf, M_TTYCONS);
607c9dba40cSEd Schouten 	constty = tp;
608bd6085c6SAlexander Motin 	mtx_unlock(&constty_mtx);
609bd6085c6SAlexander Motin 
610bd6085c6SAlexander Motin 	callout_init_mtx(&conscallout, tty_getlock(tp), 0);
611bd6085c6SAlexander Motin 	constty_timeout(tp);
612bd6085c6SAlexander Motin 	return (0);
613c9dba40cSEd Schouten }
614c9dba40cSEd Schouten 
615c9dba40cSEd Schouten /*
616c9dba40cSEd Schouten  * Disable console redirection to a tty.
617c9dba40cSEd Schouten  */
618bd6085c6SAlexander Motin int
619bd6085c6SAlexander Motin constty_clear(struct tty *tp)
620c9dba40cSEd Schouten {
621c9dba40cSEd Schouten 	int c;
622c9dba40cSEd Schouten 
623bd6085c6SAlexander Motin 	tty_assert_locked(tp);
624bd6085c6SAlexander Motin 	if (constty != tp)
625bd6085c6SAlexander Motin 		return (ENXIO);
626c9dba40cSEd Schouten 	callout_stop(&conscallout);
627bd6085c6SAlexander Motin 	mtx_lock(&constty_mtx);
628bd6085c6SAlexander Motin 	constty = NULL;
629bd6085c6SAlexander Motin 	mtx_unlock(&constty_mtx);
630c9dba40cSEd Schouten 	while ((c = msgbuf_getchar(&consmsgbuf)) != -1)
631c9dba40cSEd Schouten 		cnputc(c);
632bd6085c6SAlexander Motin 	/* We never free consbuf because it can still be in use. */
633bd6085c6SAlexander Motin 	return (0);
634c9dba40cSEd Schouten }
635c9dba40cSEd Schouten 
636c9dba40cSEd Schouten /* Times per second to check for pending console tty messages. */
637bd6085c6SAlexander Motin static int constty_wakeups_per_second = 15;
638c9dba40cSEd Schouten SYSCTL_INT(_kern, OID_AUTO, constty_wakeups_per_second, CTLFLAG_RW,
639a0c87b74SGavin Atkinson     &constty_wakeups_per_second, 0,
640a0c87b74SGavin Atkinson     "Times per second to check for pending console tty messages");
641c9dba40cSEd Schouten 
642c9dba40cSEd Schouten static void
643c9dba40cSEd Schouten constty_timeout(void *arg)
644c9dba40cSEd Schouten {
645bd6085c6SAlexander Motin 	struct tty *tp = arg;
646c9dba40cSEd Schouten 	int c;
647c9dba40cSEd Schouten 
648bd6085c6SAlexander Motin 	tty_assert_locked(tp);
649c9dba40cSEd Schouten 	while ((c = msgbuf_getchar(&consmsgbuf)) != -1) {
650bd6085c6SAlexander Motin 		if (tty_putchar(tp, c) < 0) {
651bd6085c6SAlexander Motin 			constty_clear(tp);
652bd6085c6SAlexander Motin 			return;
653c9dba40cSEd Schouten 		}
654c9dba40cSEd Schouten 	}
655bd6085c6SAlexander Motin 	callout_reset_sbt(&conscallout, SBT_1S / constty_wakeups_per_second,
656bd6085c6SAlexander Motin 	    0, constty_timeout, tp, C_PREL(1));
657c9dba40cSEd Schouten }
658c9dba40cSEd Schouten 
659c9dba40cSEd Schouten /*
660c9dba40cSEd Schouten  * Sysbeep(), if we have hardware for it
661c9dba40cSEd Schouten  */
662c9dba40cSEd Schouten 
663c9dba40cSEd Schouten #ifdef HAS_TIMER_SPKR
664c9dba40cSEd Schouten 
665072d5b98SWarner Losh static bool beeping;
666fadf3fb9SJohn Baldwin static struct callout beeping_timer;
667c9dba40cSEd Schouten 
668c9dba40cSEd Schouten static void
669c9dba40cSEd Schouten sysbeepstop(void *chan)
670c9dba40cSEd Schouten {
671c9dba40cSEd Schouten 
672c9dba40cSEd Schouten 	timer_spkr_release();
673072d5b98SWarner Losh 	beeping = false;
674c9dba40cSEd Schouten }
675c9dba40cSEd Schouten 
676c9dba40cSEd Schouten int
677072d5b98SWarner Losh sysbeep(int pitch, sbintime_t duration)
678c9dba40cSEd Schouten {
679c9dba40cSEd Schouten 
680c9dba40cSEd Schouten 	if (timer_spkr_acquire()) {
681c9dba40cSEd Schouten 		if (!beeping) {
682c9dba40cSEd Schouten 			/* Something else owns it. */
683c9dba40cSEd Schouten 			return (EBUSY);
684c9dba40cSEd Schouten 		}
685c9dba40cSEd Schouten 	}
686c9dba40cSEd Schouten 	timer_spkr_setfreq(pitch);
687c9dba40cSEd Schouten 	if (!beeping) {
688072d5b98SWarner Losh 		beeping = true;
689072d5b98SWarner Losh 		callout_reset_sbt(&beeping_timer, duration, 0, sysbeepstop,
690072d5b98SWarner Losh 		    NULL, C_PREL(5));
691c9dba40cSEd Schouten 	}
692c9dba40cSEd Schouten 	return (0);
693c9dba40cSEd Schouten }
694c9dba40cSEd Schouten 
695fadf3fb9SJohn Baldwin static void
696fadf3fb9SJohn Baldwin sysbeep_init(void *unused)
697fadf3fb9SJohn Baldwin {
698fadf3fb9SJohn Baldwin 
699fd90e2edSJung-uk Kim 	callout_init(&beeping_timer, 1);
700fadf3fb9SJohn Baldwin }
701fadf3fb9SJohn Baldwin SYSINIT(sysbeep, SI_SUB_SOFTINTR, SI_ORDER_ANY, sysbeep_init, NULL);
702c9dba40cSEd Schouten #else
703c9dba40cSEd Schouten 
704c9dba40cSEd Schouten /*
705c9dba40cSEd Schouten  * No hardware, no sound
706c9dba40cSEd Schouten  */
707c9dba40cSEd Schouten 
708c9dba40cSEd Schouten int
709072d5b98SWarner Losh sysbeep(int pitch __unused, sbintime_t duration __unused)
710c9dba40cSEd Schouten {
711c9dba40cSEd Schouten 
712c9dba40cSEd Schouten 	return (ENODEV);
713c9dba40cSEd Schouten }
714c9dba40cSEd Schouten 
715c9dba40cSEd Schouten #endif
716c9dba40cSEd Schouten 
71759644098SEd Maste /*
71859644098SEd Maste  * Temporary support for sc(4) to vt(4) transition.
71959644098SEd Maste  */
720018147eeSEd Maste static unsigned vty_prefer;
721af3b2549SHans Petter Selasky static char vty_name[16];
722af3b2549SHans Petter Selasky SYSCTL_STRING(_kern, OID_AUTO, vty, CTLFLAG_RDTUN | CTLFLAG_NOFETCH, vty_name,
723af3b2549SHans Petter Selasky     0, "Console vty driver");
72459644098SEd Maste 
72559644098SEd Maste int
72659644098SEd Maste vty_enabled(unsigned vty)
72759644098SEd Maste {
72859644098SEd Maste 	static unsigned vty_selected = 0;
72959644098SEd Maste 
73059644098SEd Maste 	if (vty_selected == 0) {
73159644098SEd Maste 		TUNABLE_STR_FETCH("kern.vty", vty_name, sizeof(vty_name));
73259644098SEd Maste 		do {
73359644098SEd Maste #if defined(DEV_SC)
73459644098SEd Maste 			if (strcmp(vty_name, "sc") == 0) {
73559644098SEd Maste 				vty_selected = VTY_SC;
73659644098SEd Maste 				break;
73759644098SEd Maste 			}
73859644098SEd Maste #endif
73959644098SEd Maste #if defined(DEV_VT)
74059644098SEd Maste 			if (strcmp(vty_name, "vt") == 0) {
74159644098SEd Maste 				vty_selected = VTY_VT;
74259644098SEd Maste 				break;
74359644098SEd Maste 			}
74459644098SEd Maste #endif
745018147eeSEd Maste 			if (vty_prefer != 0) {
746018147eeSEd Maste 				vty_selected = vty_prefer;
747018147eeSEd Maste 				break;
748018147eeSEd Maste 			}
7492d6f6d63SJean-Sébastien Pédron #if defined(DEV_VT)
75059644098SEd Maste 			vty_selected = VTY_VT;
7512d6f6d63SJean-Sébastien Pédron #elif defined(DEV_SC)
7522d6f6d63SJean-Sébastien Pédron 			vty_selected = VTY_SC;
75359644098SEd Maste #endif
75459644098SEd Maste 		} while (0);
75559644098SEd Maste 
75659644098SEd Maste 		if (vty_selected == VTY_VT)
75759644098SEd Maste 			strcpy(vty_name, "vt");
75859644098SEd Maste 		else if (vty_selected == VTY_SC)
75959644098SEd Maste 			strcpy(vty_name, "sc");
76059644098SEd Maste 	}
76159644098SEd Maste 	return ((vty_selected & vty) != 0);
76259644098SEd Maste }
76359644098SEd Maste 
764018147eeSEd Maste void
765018147eeSEd Maste vty_set_preferred(unsigned vty)
766018147eeSEd Maste {
767018147eeSEd Maste 
768018147eeSEd Maste 	vty_prefer = vty;
769018147eeSEd Maste #if !defined(DEV_SC)
770969d3cc2SEd Maste 	vty_prefer &= ~VTY_SC;
771018147eeSEd Maste #endif
772018147eeSEd Maste #if !defined(DEV_VT)
773969d3cc2SEd Maste 	vty_prefer &= ~VTY_VT;
774018147eeSEd Maste #endif
775018147eeSEd Maste }
776