kern_cons.c revision 70239
1/*
2 * Copyright (c) 1988 University of Utah.
3 * Copyright (c) 1991 The Regents of the University of California.
4 * All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * the Systems Programming Group of the University of Utah Computer
8 * Science Department.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 *    notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 *    notice, this list of conditions and the following disclaimer in the
17 *    documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 *    must display the following acknowledgement:
20 *	This product includes software developed by the University of
21 *	California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 *    may be used to endorse or promote products derived from this software
24 *    without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 *	from: @(#)cons.c	7.2 (Berkeley) 5/9/91
39 * $FreeBSD: head/sys/kern/tty_cons.c 70239 2000-12-20 21:50:37Z phk $
40 */
41
42#include <sys/param.h>
43#include <sys/systm.h>
44#include <sys/conf.h>
45#include <sys/cons.h>
46#include <sys/kernel.h>
47#include <sys/proc.h>
48#include <sys/reboot.h>
49#include <sys/sysctl.h>
50#include <sys/tty.h>
51#include <sys/uio.h>
52
53#include <machine/cpu.h>
54
55static	d_open_t	cnopen;
56static	d_close_t	cnclose;
57static	d_read_t	cnread;
58static	d_write_t	cnwrite;
59static	d_ioctl_t	cnioctl;
60static	d_poll_t	cnpoll;
61
62#define	CDEV_MAJOR	0
63static struct cdevsw cn_cdevsw = {
64	/* open */	cnopen,
65	/* close */	cnclose,
66	/* read */	cnread,
67	/* write */	cnwrite,
68	/* ioctl */	cnioctl,
69	/* poll */	cnpoll,
70	/* mmap */	nommap,
71	/* strategy */	nostrategy,
72	/* name */	"console",
73	/* maj */	CDEV_MAJOR,
74	/* dump */	nodump,
75	/* psize */	nopsize,
76	/* flags */	D_TTY,
77	/* bmaj */	-1
78};
79
80static dev_t	cn_dev_t; 	/* seems to be never really used */
81static udev_t	cn_udev_t;
82SYSCTL_OPAQUE(_machdep, CPU_CONSDEV, consdev, CTLFLAG_RD,
83	&cn_udev_t, sizeof cn_udev_t, "T,dev_t", "");
84
85static int cn_mute;
86
87int	cons_unavail = 0;	/* XXX:
88				 * physical console not available for
89				 * input (i.e., it is in graphics mode)
90				 */
91
92static u_char cn_is_open;		/* nonzero if logical console is open */
93static int openmode, openflag;		/* how /dev/console was openned */
94static dev_t cn_devfsdev;		/* represents the device private info */
95static u_char cn_phys_is_open;		/* nonzero if physical device is open */
96static d_close_t *cn_phys_close;	/* physical device close function */
97static d_open_t *cn_phys_open;		/* physical device open function */
98       struct consdev *cn_tab;		/* physical console device info */
99
100CONS_DRIVER(cons, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
101
102void
103cninit()
104{
105	struct consdev *best_cp, *cp, **list;
106
107	/*
108	 * Find the first console with the highest priority.
109	 */
110	best_cp = NULL;
111	list = (struct consdev **)cons_set.ls_items;
112	while ((cp = *list++) != NULL) {
113		if (cp->cn_probe == NULL)
114			continue;
115		(*cp->cn_probe)(cp);
116		if (cp->cn_pri > CN_DEAD &&
117		    (best_cp == NULL || cp->cn_pri > best_cp->cn_pri))
118			best_cp = cp;
119	}
120
121	/*
122	 * Check if we should mute the console (for security reasons perhaps)
123	 * It can be changes dynamically using sysctl kern.consmute
124	 * once we are up and going.
125	 *
126	 */
127        cn_mute = ((boothowto & (RB_MUTE
128			|RB_SINGLE
129			|RB_VERBOSE
130			|RB_ASKNAME
131			|RB_CONFIG)) == RB_MUTE);
132
133	/*
134	 * If no console, give up.
135	 */
136	if (best_cp == NULL) {
137		if (cn_tab != NULL && cn_tab->cn_term != NULL)
138			(*cn_tab->cn_term)(cn_tab);
139		cn_tab = best_cp;
140		return;
141	}
142
143	/*
144	 * Initialize console, then attach to it.  This ordering allows
145	 * debugging using the previous console, if any.
146	 */
147	(*best_cp->cn_init)(best_cp);
148	if (cn_tab != NULL && cn_tab != best_cp) {
149		/* Turn off the previous console.  */
150		if (cn_tab->cn_term != NULL)
151			(*cn_tab->cn_term)(cn_tab);
152	}
153	cn_tab = best_cp;
154}
155
156void
157cninit_finish()
158{
159	struct cdevsw *cdp;
160
161	if ((cn_tab == NULL) || cn_mute)
162		return;
163
164	/*
165	 * Hook the open and close functions.
166	 */
167	cdp = devsw(cn_tab->cn_dev);
168	if (cdp != NULL) {
169		cn_phys_close = cdp->d_close;
170		cdp->d_close = cnclose;
171		cn_phys_open = cdp->d_open;
172		cdp->d_open = cnopen;
173	}
174	cn_dev_t = cn_tab->cn_dev;
175	cn_udev_t = dev2udev(cn_dev_t);
176}
177
178static void
179cnuninit(void)
180{
181	struct cdevsw *cdp;
182
183	if (cn_tab == NULL)
184		return;
185
186	/*
187	 * Unhook the open and close functions.
188	 */
189	cdp = devsw(cn_tab->cn_dev);
190	if (cdp != NULL) {
191		cdp->d_close = cn_phys_close;
192		cdp->d_open = cn_phys_open;
193	}
194	cn_phys_close = NULL;
195	cn_phys_open = NULL;
196	cn_dev_t = NODEV;
197	cn_udev_t = NOUDEV;
198}
199
200/*
201 * User has changed the state of the console muting.
202 * This may require us to open or close the device in question.
203 */
204static int
205sysctl_kern_consmute(SYSCTL_HANDLER_ARGS)
206{
207	int error;
208	int ocn_mute;
209
210	ocn_mute = cn_mute;
211	error = sysctl_handle_int(oidp, &cn_mute, 0, req);
212	if((error == 0) && (cn_tab != NULL) && (req->newptr != NULL)) {
213		if(ocn_mute && !cn_mute) {
214			/*
215			 * going from muted to unmuted.. open the physical dev
216			 * if the console has been openned
217			 */
218			cninit_finish();
219			if(cn_is_open)
220				/* XXX curproc is not what we want really */
221				error = cnopen(cn_dev_t, openflag,
222					openmode, curproc);
223			/* if it failed, back it out */
224			if ( error != 0) cnuninit();
225		} else if (!ocn_mute && cn_mute) {
226			/*
227			 * going from unmuted to muted.. close the physical dev
228			 * if it's only open via /dev/console
229			 */
230			if(cn_is_open)
231				error = cnclose(cn_dev_t, openflag,
232					openmode, curproc);
233			if ( error == 0) cnuninit();
234		}
235		if (error != 0) {
236			/*
237	 		 * back out the change if there was an error
238			 */
239			cn_mute = ocn_mute;
240		}
241	}
242	return (error);
243}
244
245SYSCTL_PROC(_kern, OID_AUTO, consmute, CTLTYPE_INT|CTLFLAG_RW,
246	0, sizeof cn_mute, sysctl_kern_consmute, "I", "");
247
248static int
249cnopen(dev, flag, mode, p)
250	dev_t dev;
251	int flag, mode;
252	struct proc *p;
253{
254	dev_t cndev, physdev;
255	int retval = 0;
256
257	if (cn_tab == NULL || cn_phys_open == NULL)
258		return (0);
259	cndev = cn_tab->cn_dev;
260	physdev = (major(dev) == major(cndev) ? dev : cndev);
261	/*
262	 * If mute is active, then non console opens don't get here
263	 * so we don't need to check for that. They
264	 * bypass this and go straight to the device.
265	 */
266	if(!cn_mute)
267		retval = (*cn_phys_open)(physdev, flag, mode, p);
268	if (retval == 0) {
269		/*
270		 * check if we openned it via /dev/console or
271		 * via the physical entry (e.g. /dev/sio0).
272		 */
273		if (dev == cndev)
274			cn_phys_is_open = 1;
275		else if (physdev == cndev) {
276			openmode = mode;
277			openflag = flag;
278			cn_is_open = 1;
279		}
280		dev->si_tty = physdev->si_tty;
281	}
282	return (retval);
283}
284
285static int
286cnclose(dev, flag, mode, p)
287	dev_t dev;
288	int flag, mode;
289	struct proc *p;
290{
291	dev_t cndev;
292	struct tty *cn_tp;
293
294	if (cn_tab == NULL || cn_phys_open == NULL)
295		return (0);
296	cndev = cn_tab->cn_dev;
297	cn_tp = cndev->si_tty;
298	/*
299	 * act appropriatly depending on whether it's /dev/console
300	 * or the pysical device (e.g. /dev/sio) that's being closed.
301	 * in either case, don't actually close the device unless
302	 * both are closed.
303	 */
304	if (dev == cndev) {
305		/* the physical device is about to be closed */
306		cn_phys_is_open = 0;
307		if (cn_is_open) {
308			if (cn_tp) {
309				/* perform a ttyhalfclose() */
310				/* reset session and proc group */
311				cn_tp->t_pgrp = NULL;
312				cn_tp->t_session = NULL;
313			}
314			return (0);
315		}
316	} else if (major(dev) != major(cndev)) {
317		/* the logical console is about to be closed */
318		cn_is_open = 0;
319		if (cn_phys_is_open)
320			return (0);
321		dev = cndev;
322	}
323	if(cn_phys_close)
324		return ((*cn_phys_close)(dev, flag, mode, p));
325	return (0);
326}
327
328static int
329cnread(dev, uio, flag)
330	dev_t dev;
331	struct uio *uio;
332	int flag;
333{
334
335	if (cn_tab == NULL || cn_phys_open == NULL)
336		return (0);
337	dev = cn_tab->cn_dev;
338	return ((*devsw(dev)->d_read)(dev, uio, flag));
339}
340
341static int
342cnwrite(dev, uio, flag)
343	dev_t dev;
344	struct uio *uio;
345	int flag;
346{
347
348	if (cn_tab == NULL || cn_phys_open == NULL) {
349		uio->uio_resid = 0; /* dump the data */
350		return (0);
351	}
352	if (constty)
353		dev = constty->t_dev;
354	else
355		dev = cn_tab->cn_dev;
356	log_console(uio);
357	return ((*devsw(dev)->d_write)(dev, uio, flag));
358}
359
360static int
361cnioctl(dev, cmd, data, flag, p)
362	dev_t dev;
363	u_long cmd;
364	caddr_t data;
365	int flag;
366	struct proc *p;
367{
368	int error;
369
370	if (cn_tab == NULL || cn_phys_open == NULL)
371		return (0);
372	/*
373	 * Superuser can always use this to wrest control of console
374	 * output from the "virtual" console.
375	 */
376	if (cmd == TIOCCONS && constty) {
377		error = suser(p);
378		if (error)
379			return (error);
380		constty = NULL;
381		return (0);
382	}
383	dev = cn_tab->cn_dev;
384	return ((*devsw(dev)->d_ioctl)(dev, cmd, data, flag, p));
385}
386
387static int
388cnpoll(dev, events, p)
389	dev_t dev;
390	int events;
391	struct proc *p;
392{
393	if ((cn_tab == NULL) || cn_mute)
394		return (1);
395
396	dev = cn_tab->cn_dev;
397
398	return ((*devsw(dev)->d_poll)(dev, events, p));
399}
400
401int
402cngetc()
403{
404	int c;
405	if ((cn_tab == NULL) || cn_mute)
406		return (-1);
407	c = (*cn_tab->cn_getc)(cn_tab->cn_dev);
408	if (c == '\r') c = '\n'; /* console input is always ICRNL */
409	return (c);
410}
411
412int
413cncheckc()
414{
415	if ((cn_tab == NULL) || cn_mute)
416		return (-1);
417	return ((*cn_tab->cn_checkc)(cn_tab->cn_dev));
418}
419
420void
421cnputc(c)
422	register int c;
423{
424	if ((cn_tab == NULL) || cn_mute)
425		return;
426	if (c) {
427		if (c == '\n')
428			(*cn_tab->cn_putc)(cn_tab->cn_dev, '\r');
429		(*cn_tab->cn_putc)(cn_tab->cn_dev, c);
430	}
431}
432
433void
434cndbctl(on)
435	int on;
436{
437	static int refcount;
438
439	if (cn_tab == NULL)
440		return;
441	if (!on)
442		refcount--;
443	if (refcount == 0 && cn_tab->cn_dbctl != NULL)
444		(*cn_tab->cn_dbctl)(cn_tab->cn_dev, on);
445	if (on)
446		refcount++;
447}
448
449static void
450cn_drvinit(void *unused)
451{
452
453	cn_devfsdev = make_dev(&cn_cdevsw, 0, UID_ROOT, GID_WHEEL, 0600,
454	    "console");
455}
456
457SYSINIT(cndev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,cn_drvinit,NULL)
458