1993-06-12 14:58:17 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1988 University of Utah.
|
|
|
|
* Copyright (c) 1991 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* the Systems Programming Group of the University of Utah Computer
|
|
|
|
* Science Department.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1993-10-16 14:15:10 +00:00
|
|
|
* from: @(#)cons.c 7.2 (Berkeley) 5/9/91
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1993-06-12 14:58:17 +00:00
|
|
|
*/
|
|
|
|
|
2001-12-11 10:21:26 +00:00
|
|
|
#include "opt_ddb.h"
|
|
|
|
|
1994-08-13 03:50:34 +00:00
|
|
|
#include <sys/param.h>
|
1994-05-25 09:21:21 +00:00
|
|
|
#include <sys/systm.h>
|
1995-01-21 14:12:15 +00:00
|
|
|
#include <sys/conf.h>
|
2000-01-24 11:48:11 +00:00
|
|
|
#include <sys/cons.h>
|
2001-10-25 00:14:16 +00:00
|
|
|
#include <sys/fcntl.h>
|
1995-12-08 11:19:42 +00:00
|
|
|
#include <sys/kernel.h>
|
2001-10-23 20:25:50 +00:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/namei.h>
|
2000-12-12 21:18:13 +00:00
|
|
|
#include <sys/proc.h>
|
2001-10-23 20:25:50 +00:00
|
|
|
#include <sys/queue.h>
|
1996-10-16 00:19:40 +00:00
|
|
|
#include <sys/reboot.h>
|
1995-12-09 20:39:47 +00:00
|
|
|
#include <sys/sysctl.h>
|
1994-08-13 03:50:34 +00:00
|
|
|
#include <sys/tty.h>
|
1998-03-28 10:33:27 +00:00
|
|
|
#include <sys/uio.h>
|
2001-10-23 20:25:50 +00:00
|
|
|
#include <sys/vnode.h>
|
1993-06-12 14:58:17 +00:00
|
|
|
|
2001-12-10 20:02:22 +00:00
|
|
|
#include <ddb/ddb.h>
|
|
|
|
|
1995-12-09 20:39:47 +00:00
|
|
|
#include <machine/cpu.h>
|
1993-06-12 14:58:17 +00:00
|
|
|
|
1995-12-08 11:19:42 +00:00
|
|
|
static d_open_t cnopen;
|
|
|
|
static d_close_t cnclose;
|
|
|
|
static d_read_t cnread;
|
|
|
|
static d_write_t cnwrite;
|
|
|
|
static d_ioctl_t cnioctl;
|
1997-09-14 03:19:42 +00:00
|
|
|
static d_poll_t cnpoll;
|
2001-02-15 16:34:11 +00:00
|
|
|
static d_kqfilter_t cnkqfilter;
|
1995-12-08 11:19:42 +00:00
|
|
|
|
1998-08-23 08:26:42 +00:00
|
|
|
#define CDEV_MAJOR 0
|
1999-05-30 16:53:49 +00:00
|
|
|
static struct cdevsw cn_cdevsw = {
|
|
|
|
/* open */ cnopen,
|
|
|
|
/* close */ cnclose,
|
|
|
|
/* read */ cnread,
|
|
|
|
/* write */ cnwrite,
|
|
|
|
/* ioctl */ cnioctl,
|
|
|
|
/* poll */ cnpoll,
|
|
|
|
/* mmap */ nommap,
|
|
|
|
/* strategy */ nostrategy,
|
|
|
|
/* name */ "console",
|
|
|
|
/* maj */ CDEV_MAJOR,
|
|
|
|
/* dump */ nodump,
|
|
|
|
/* psize */ nopsize,
|
2001-02-15 16:34:11 +00:00
|
|
|
/* flags */ D_TTY | D_KQFILTER,
|
|
|
|
/* kqfilter */ cnkqfilter,
|
1998-08-23 08:26:42 +00:00
|
|
|
};
|
1995-12-08 11:19:42 +00:00
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
struct cn_device {
|
|
|
|
STAILQ_ENTRY(cn_device) cnd_next;
|
|
|
|
char cnd_name[16];
|
|
|
|
struct vnode *cnd_vp;
|
|
|
|
struct consdev *cnd_cn;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define CNDEVPATHMAX 32
|
|
|
|
#define CNDEVTAB_SIZE 4
|
|
|
|
static struct cn_device cn_devtab[CNDEVTAB_SIZE];
|
|
|
|
static STAILQ_HEAD(, cn_device) cn_devlist =
|
|
|
|
STAILQ_HEAD_INITIALIZER(cn_devlist);
|
|
|
|
|
|
|
|
#define CND_INVALID(cnd, td) \
|
|
|
|
(cnd == NULL || cnd->cnd_vp == NULL || \
|
|
|
|
(cnd->cnd_vp->v_type == VBAD && !cn_devopen(cnd, td, 1)))
|
|
|
|
|
1999-07-24 09:41:06 +00:00
|
|
|
static udev_t cn_udev_t;
|
1998-12-09 02:26:45 +00:00
|
|
|
SYSCTL_OPAQUE(_machdep, CPU_CONSDEV, consdev, CTLFLAG_RD,
|
1999-07-24 09:41:06 +00:00
|
|
|
&cn_udev_t, sizeof cn_udev_t, "T,dev_t", "");
|
1997-08-08 20:09:50 +00:00
|
|
|
|
1995-04-08 21:32:11 +00:00
|
|
|
int cons_unavail = 0; /* XXX:
|
|
|
|
* physical console not available for
|
|
|
|
* input (i.e., it is in graphics mode)
|
|
|
|
*/
|
2001-10-23 20:25:50 +00:00
|
|
|
static int cn_mute;
|
|
|
|
static int openflag; /* how /dev/console was opened */
|
|
|
|
static int cn_is_open;
|
2000-01-24 11:48:11 +00:00
|
|
|
static dev_t cn_devfsdev; /* represents the device private info */
|
2001-12-10 20:02:22 +00:00
|
|
|
static u_char console_pausing; /* pause after each line during probe */
|
|
|
|
static char *console_pausestr=
|
|
|
|
"<pause; press any key to proceed to next line or '.' to end pause mode>";
|
1995-01-21 14:12:15 +00:00
|
|
|
|
2001-10-25 00:14:16 +00:00
|
|
|
void cndebug(char *);
|
|
|
|
|
2000-01-11 14:54:01 +00:00
|
|
|
CONS_DRIVER(cons, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
2001-06-13 10:58:39 +00:00
|
|
|
SET_DECLARE(cons_set, struct consdev);
|
1999-01-07 14:14:24 +00:00
|
|
|
|
1993-11-25 01:38:01 +00:00
|
|
|
void
|
2001-10-23 20:25:50 +00:00
|
|
|
cninit(void)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
2001-10-23 20:25:50 +00:00
|
|
|
struct consdev *best_cn, *cn, **list;
|
1995-09-10 18:57:26 +00:00
|
|
|
|
1996-10-16 00:19:40 +00:00
|
|
|
/*
|
|
|
|
* Check if we should mute the console (for security reasons perhaps)
|
|
|
|
* It can be changes dynamically using sysctl kern.consmute
|
|
|
|
* once we are up and going.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
cn_mute = ((boothowto & (RB_MUTE
|
|
|
|
|RB_SINGLE
|
|
|
|
|RB_VERBOSE
|
|
|
|
|RB_ASKNAME
|
|
|
|
|RB_CONFIG)) == RB_MUTE);
|
2001-10-23 20:25:50 +00:00
|
|
|
|
1993-06-12 14:58:17 +00:00
|
|
|
/*
|
2001-10-23 20:25:50 +00:00
|
|
|
* Find the first console with the highest priority.
|
1993-06-12 14:58:17 +00:00
|
|
|
*/
|
2001-10-23 20:25:50 +00:00
|
|
|
best_cn = NULL;
|
|
|
|
SET_FOREACH(list, cons_set) {
|
|
|
|
cn = *list;
|
|
|
|
if (cn->cn_probe == NULL)
|
|
|
|
continue;
|
|
|
|
cn->cn_probe(cn);
|
|
|
|
if (cn->cn_pri == CN_DEAD)
|
|
|
|
continue;
|
|
|
|
if (best_cn == NULL || cn->cn_pri > best_cn->cn_pri)
|
|
|
|
best_cn = cn;
|
|
|
|
if (boothowto & RB_MULTIPLE) {
|
|
|
|
/*
|
|
|
|
* Initialize console, and attach to it.
|
|
|
|
*/
|
|
|
|
cnadd(cn);
|
|
|
|
cn->cn_init(cn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (best_cn == NULL)
|
1995-09-10 18:57:26 +00:00
|
|
|
return;
|
2001-10-23 20:25:50 +00:00
|
|
|
if ((boothowto & RB_MULTIPLE) == 0) {
|
|
|
|
cnadd(best_cn);
|
|
|
|
best_cn->cn_init(best_cn);
|
1995-09-10 18:57:26 +00:00
|
|
|
}
|
2001-12-10 20:02:22 +00:00
|
|
|
if (boothowto & RB_PAUSE)
|
|
|
|
console_pausing = 1;
|
1995-09-10 18:57:26 +00:00
|
|
|
/*
|
2001-10-23 20:25:50 +00:00
|
|
|
* Make the best console the preferred console.
|
1995-09-10 18:57:26 +00:00
|
|
|
*/
|
2001-10-23 20:25:50 +00:00
|
|
|
cnselect(best_cn);
|
|
|
|
}
|
|
|
|
|
2001-12-10 20:02:22 +00:00
|
|
|
void
|
|
|
|
cninit_finish()
|
|
|
|
{
|
|
|
|
console_pausing = 0;
|
|
|
|
}
|
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
/* add a new physical console to back the virtual console */
|
|
|
|
int
|
|
|
|
cnadd(struct consdev *cn)
|
|
|
|
{
|
|
|
|
struct cn_device *cnd;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
STAILQ_FOREACH(cnd, &cn_devlist, cnd_next)
|
|
|
|
if (cnd->cnd_cn == cn)
|
|
|
|
return (0);
|
|
|
|
for (i = 0; i < CNDEVTAB_SIZE; i++) {
|
|
|
|
cnd = &cn_devtab[i];
|
|
|
|
if (cnd->cnd_cn == NULL)
|
|
|
|
break;
|
The second phase of syscons reorganization.
- Split syscons source code into manageable chunks and reorganize
some of complicated functions.
- Many static variables are moved to the softc structure.
- Added a new key function, PREV. When this key is pressed, the vty
immediately before the current vty will become foreground. Analogue
to PREV, which is usually assigned to the PrntScrn key.
PR: kern/10113
Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de>
- Modified the kernel console input function sccngetc() so that it
handles function keys properly.
- Reorganized the screen update routine.
- VT switching code is reorganized. It now should be slightly more
robust than before.
- Added the DEVICE_RESUME function so that syscons no longer hooks the
APM resume event directly.
- New kernel configuration options: SC_NO_CUTPASTE, SC_NO_FONT_LOADING,
SC_NO_HISTORY and SC_NO_SYSMOUSE.
Various parts of syscons can be omitted so that the kernel size is
reduced.
SC_PIXEL_MODE
Made the VESA 800x600 mode an option, rather than a standard part of
syscons.
SC_DISABLE_DDBKEY
Disables the `debug' key combination.
SC_ALT_MOUSE_IMAGE
Inverse the character cell at the mouse cursor position in the text
console, rather than drawing an arrow on the screen.
Submitted by: Nick Hibma (n_hibma@FreeBSD.ORG)
SC_DFLT_FONT
makeoptions "SC_DFLT_FONT=_font_name_"
Include the named font as the default font of syscons. 16-line,
14-line and 8-line font data will be compiled in. This option replaces
the existing STD8X16FONT option, which loads 16-line font data only.
- The VGA driver is split into /sys/dev/fb/vga.c and /sys/isa/vga_isa.c.
- The video driver provides a set of ioctl commands to manipulate the
frame buffer.
- New kernel configuration option: VGA_WIDTH90
Enables 90 column modes: 90x25, 90x30, 90x43, 90x50, 90x60. These
modes are mot always supported by the video card.
PR: i386/7510
Submitted by: kbyanc@freedomnet.com and alexv@sui.gda.itesm.mx.
- The header file machine/console.h is reorganized; its contents is now
split into sys/fbio.h, sys/kbio.h (a new file) and sys/consio.h
(another new file). machine/console.h is still maintained for
compatibility reasons.
- Kernel console selection/installation routines are fixed and
slightly rebumped so that it should now be possible to switch between
the interanl kernel console (sc or vt) and a remote kernel console
(sio) again, as it was in 2.x, 3.0 and 3.1.
- Screen savers and splash screen decoders
Because of the header file reorganization described above, screen
savers and splash screen decoders are slightly modified. After this
update, /sys/modules/syscons/saver.h is no longer necessary and is
removed.
1999-06-22 14:14:06 +00:00
|
|
|
}
|
2001-10-23 20:25:50 +00:00
|
|
|
if (cnd->cnd_cn != NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
cnd->cnd_cn = cn;
|
|
|
|
STAILQ_INSERT_TAIL(&cn_devlist, cnd, cnd_next);
|
|
|
|
return (0);
|
1995-09-10 18:57:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-10-23 20:25:50 +00:00
|
|
|
cnremove(struct consdev *cn)
|
1995-09-10 18:57:26 +00:00
|
|
|
{
|
2001-10-23 20:25:50 +00:00
|
|
|
struct cn_device *cnd;
|
1995-09-10 18:57:26 +00:00
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) {
|
|
|
|
if (cnd->cnd_cn != cn)
|
|
|
|
continue;
|
|
|
|
STAILQ_REMOVE(&cn_devlist, cnd, cn_device, cnd_next);
|
|
|
|
if (cnd->cnd_vp != NULL)
|
|
|
|
vn_close(cnd->cnd_vp, openflag, NOCRED, NULL);
|
|
|
|
cnd->cnd_vp = NULL;
|
|
|
|
cnd->cnd_cn = NULL;
|
|
|
|
cnd->cnd_name[0] = '\0';
|
|
|
|
#if 0
|
|
|
|
/*
|
|
|
|
* XXX
|
|
|
|
* syscons gets really confused if console resources are
|
|
|
|
* freed after the system has initialized.
|
|
|
|
*/
|
|
|
|
if (cn->cn_term != NULL)
|
|
|
|
cn->cn_term(cn);
|
|
|
|
#endif
|
1993-06-12 14:58:17 +00:00
|
|
|
return;
|
2000-01-25 09:20:08 +00:00
|
|
|
}
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
void
|
|
|
|
cnselect(struct consdev *cn)
|
1997-08-08 20:09:50 +00:00
|
|
|
{
|
2001-10-23 20:25:50 +00:00
|
|
|
struct cn_device *cnd;
|
1997-08-08 20:09:50 +00:00
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) {
|
|
|
|
if (cnd->cnd_cn != cn)
|
|
|
|
continue;
|
|
|
|
if (cnd == STAILQ_FIRST(&cn_devlist))
|
|
|
|
return;
|
|
|
|
STAILQ_REMOVE(&cn_devlist, cnd, cn_device, cnd_next);
|
|
|
|
STAILQ_INSERT_HEAD(&cn_devlist, cnd, cnd_next);
|
1997-08-08 20:09:50 +00:00
|
|
|
return;
|
2001-10-23 20:25:50 +00:00
|
|
|
}
|
|
|
|
}
|
1997-08-08 20:09:50 +00:00
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
void
|
|
|
|
cndebug(char *str)
|
|
|
|
{
|
|
|
|
int i, len;
|
|
|
|
|
|
|
|
len = strlen(str);
|
|
|
|
cnputc('>'); cnputc('>'); cnputc('>'); cnputc(' ');
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
cnputc(str[i]);
|
|
|
|
cnputc('\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
sysctl_kern_console(SYSCTL_HANDLER_ARGS)
|
|
|
|
{
|
|
|
|
struct cn_device *cnd;
|
|
|
|
struct consdev *cp, **list;
|
|
|
|
char *name, *p;
|
|
|
|
int delete, len, error;
|
|
|
|
|
|
|
|
len = 2;
|
|
|
|
SET_FOREACH(list, cons_set) {
|
|
|
|
cp = *list;
|
|
|
|
if (cp->cn_dev != NULL)
|
|
|
|
len += strlen(devtoname(cp->cn_dev)) + 1;
|
|
|
|
}
|
|
|
|
STAILQ_FOREACH(cnd, &cn_devlist, cnd_next)
|
|
|
|
len += strlen(devtoname(cnd->cnd_cn->cn_dev)) + 1;
|
|
|
|
len = len > CNDEVPATHMAX ? len : CNDEVPATHMAX;
|
|
|
|
MALLOC(name, char *, len, M_TEMP, M_WAITOK | M_ZERO);
|
|
|
|
p = name;
|
|
|
|
STAILQ_FOREACH(cnd, &cn_devlist, cnd_next)
|
|
|
|
p += sprintf(p, "%s,", devtoname(cnd->cnd_cn->cn_dev));
|
|
|
|
*p++ = '/';
|
|
|
|
SET_FOREACH(list, cons_set) {
|
|
|
|
cp = *list;
|
|
|
|
if (cp->cn_dev != NULL)
|
|
|
|
p += sprintf(p, "%s,", devtoname(cp->cn_dev));
|
|
|
|
}
|
|
|
|
error = sysctl_handle_string(oidp, name, len, req);
|
|
|
|
if (error == 0 && req->newptr != NULL) {
|
|
|
|
p = name;
|
|
|
|
error = ENXIO;
|
|
|
|
delete = 0;
|
|
|
|
if (*p == '-') {
|
|
|
|
delete = 1;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
SET_FOREACH(list, cons_set) {
|
|
|
|
cp = *list;
|
|
|
|
if (cp->cn_dev == NULL ||
|
|
|
|
strcmp(p, devtoname(cp->cn_dev)) != 0)
|
|
|
|
continue;
|
|
|
|
if (delete) {
|
|
|
|
cnremove(cp);
|
|
|
|
error = 0;
|
|
|
|
} else {
|
|
|
|
error = cnadd(cp);
|
|
|
|
if (error == 0)
|
|
|
|
cnselect(cp);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2000-01-25 09:20:08 +00:00
|
|
|
}
|
2001-10-23 20:25:50 +00:00
|
|
|
FREE(name, M_TEMP);
|
|
|
|
return (error);
|
1997-08-08 20:09:50 +00:00
|
|
|
}
|
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
SYSCTL_PROC(_kern, OID_AUTO, console, CTLTYPE_STRING|CTLFLAG_RW,
|
|
|
|
0, 0, sysctl_kern_console, "A", "Console device control");
|
|
|
|
|
1997-08-08 20:09:50 +00:00
|
|
|
/*
|
|
|
|
* User has changed the state of the console muting.
|
|
|
|
* This may require us to open or close the device in question.
|
|
|
|
*/
|
|
|
|
static int
|
2000-07-04 11:25:35 +00:00
|
|
|
sysctl_kern_consmute(SYSCTL_HANDLER_ARGS)
|
1997-08-08 20:09:50 +00:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
int ocn_mute;
|
|
|
|
|
|
|
|
ocn_mute = cn_mute;
|
|
|
|
error = sysctl_handle_int(oidp, &cn_mute, 0, req);
|
2001-10-23 20:25:50 +00:00
|
|
|
if (error != 0 || req->newptr == NULL)
|
|
|
|
return (error);
|
|
|
|
if (ocn_mute && !cn_mute && cn_is_open)
|
|
|
|
error = cnopen(NODEV, openflag, 0, curthread);
|
|
|
|
else if (!ocn_mute && cn_mute && cn_is_open) {
|
|
|
|
error = cnclose(NODEV, openflag, 0, curthread);
|
|
|
|
cn_is_open = 1; /* XXX hack */
|
1997-08-08 20:09:50 +00:00
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSCTL_PROC(_kern, OID_AUTO, consmute, CTLTYPE_INT|CTLFLAG_RW,
|
2001-10-23 20:25:50 +00:00
|
|
|
0, sizeof(cn_mute), sysctl_kern_consmute, "I", "");
|
1997-08-08 20:09:50 +00:00
|
|
|
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2001-10-23 20:25:50 +00:00
|
|
|
cn_devopen(struct cn_device *cnd, struct thread *td, int forceopen)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
2001-10-23 20:25:50 +00:00
|
|
|
char path[CNDEVPATHMAX];
|
2001-11-02 17:04:32 +00:00
|
|
|
struct nameidata nd;
|
|
|
|
struct vnode *vp;
|
2001-10-23 20:25:50 +00:00
|
|
|
dev_t dev;
|
|
|
|
int error;
|
1994-01-23 19:17:17 +00:00
|
|
|
|
2001-11-02 17:04:32 +00:00
|
|
|
if ((vp = cnd->cnd_vp) != NULL) {
|
|
|
|
if (!forceopen && vp->v_type != VBAD) {
|
|
|
|
dev = vp->v_rdev;
|
2001-10-23 20:25:50 +00:00
|
|
|
return ((*devsw(dev)->d_open)(dev, openflag, 0, td));
|
1997-08-08 20:09:50 +00:00
|
|
|
}
|
2001-10-23 20:25:50 +00:00
|
|
|
cnd->cnd_vp = NULL;
|
2002-02-27 18:32:23 +00:00
|
|
|
vn_close(vp, openflag, td->td_ucred, td);
|
2001-10-23 20:25:50 +00:00
|
|
|
}
|
|
|
|
if (cnd->cnd_name[0] == '\0')
|
|
|
|
strncpy(cnd->cnd_name, devtoname(cnd->cnd_cn->cn_dev),
|
|
|
|
sizeof(cnd->cnd_name));
|
|
|
|
snprintf(path, sizeof(path), "/dev/%s", cnd->cnd_name);
|
|
|
|
NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, path, td);
|
|
|
|
error = vn_open(&nd, &openflag, 0);
|
|
|
|
if (error == 0) {
|
|
|
|
NDFREE(&nd, NDF_ONLY_PNBUF);
|
|
|
|
VOP_UNLOCK(nd.ni_vp, 0, td);
|
|
|
|
if (nd.ni_vp->v_type == VCHR)
|
|
|
|
cnd->cnd_vp = nd.ni_vp;
|
|
|
|
else
|
2002-02-27 18:32:23 +00:00
|
|
|
vn_close(nd.ni_vp, openflag, td->td_ucred, td);
|
1995-01-21 14:12:15 +00:00
|
|
|
}
|
2001-10-23 20:25:50 +00:00
|
|
|
return (cnd->cnd_vp != NULL);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2001-10-23 20:25:50 +00:00
|
|
|
cnopen(dev_t dev, int flag, int mode, struct thread *td)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
2001-10-23 20:25:50 +00:00
|
|
|
struct cn_device *cnd;
|
1994-01-23 19:17:17 +00:00
|
|
|
|
2001-10-25 00:14:16 +00:00
|
|
|
openflag = flag | FWRITE; /* XXX */
|
2001-10-23 20:25:50 +00:00
|
|
|
cn_is_open = 1; /* console is logically open */
|
|
|
|
if (cn_mute)
|
1993-06-12 14:58:17 +00:00
|
|
|
return (0);
|
2001-10-23 20:25:50 +00:00
|
|
|
STAILQ_FOREACH(cnd, &cn_devlist, cnd_next)
|
|
|
|
cn_devopen(cnd, td, 0);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
cnclose(dev_t dev, int flag, int mode, struct thread *td)
|
|
|
|
{
|
|
|
|
struct cn_device *cnd;
|
2001-10-25 04:51:37 +00:00
|
|
|
struct vnode *vp;
|
2001-10-23 20:25:50 +00:00
|
|
|
|
|
|
|
STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) {
|
2001-10-25 04:51:37 +00:00
|
|
|
if ((vp = cnd->cnd_vp) == NULL)
|
2001-10-23 20:25:50 +00:00
|
|
|
continue;
|
|
|
|
cnd->cnd_vp = NULL;
|
2002-02-27 18:32:23 +00:00
|
|
|
vn_close(vp, openflag, td->td_ucred, td);
|
1995-01-21 14:12:15 +00:00
|
|
|
}
|
2001-10-23 20:25:50 +00:00
|
|
|
cn_is_open = 0;
|
1997-08-08 20:09:50 +00:00
|
|
|
return (0);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2001-10-23 20:25:50 +00:00
|
|
|
cnread(dev_t dev, struct uio *uio, int flag)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
2001-10-23 20:25:50 +00:00
|
|
|
struct cn_device *cnd;
|
2000-01-25 09:20:08 +00:00
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
cnd = STAILQ_FIRST(&cn_devlist);
|
|
|
|
if (cn_mute || CND_INVALID(cnd, curthread))
|
1993-06-12 14:58:17 +00:00
|
|
|
return (0);
|
2001-10-23 20:25:50 +00:00
|
|
|
dev = cnd->cnd_vp->v_rdev;
|
1999-05-08 06:40:31 +00:00
|
|
|
return ((*devsw(dev)->d_read)(dev, uio, flag));
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2001-10-23 20:25:50 +00:00
|
|
|
cnwrite(dev_t dev, struct uio *uio, int flag)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
2001-10-23 20:25:50 +00:00
|
|
|
struct cn_device *cnd;
|
2000-01-25 09:20:08 +00:00
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
cnd = STAILQ_FIRST(&cn_devlist);
|
|
|
|
if (cn_mute || CND_INVALID(cnd, curthread))
|
|
|
|
goto done;
|
1994-01-26 20:42:18 +00:00
|
|
|
if (constty)
|
1993-06-12 14:58:17 +00:00
|
|
|
dev = constty->t_dev;
|
|
|
|
else
|
2001-10-23 20:25:50 +00:00
|
|
|
dev = cnd->cnd_vp->v_rdev;
|
|
|
|
if (dev != NULL) {
|
|
|
|
log_console(uio);
|
|
|
|
return ((*devsw(dev)->d_write)(dev, uio, flag));
|
|
|
|
}
|
|
|
|
done:
|
|
|
|
uio->uio_resid = 0; /* dump the data */
|
|
|
|
return (0);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2001-10-23 20:25:50 +00:00
|
|
|
cnioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct thread *td)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
2001-10-23 20:25:50 +00:00
|
|
|
struct cn_device *cnd;
|
1993-06-12 14:58:17 +00:00
|
|
|
int error;
|
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
cnd = STAILQ_FIRST(&cn_devlist);
|
|
|
|
if (cn_mute || CND_INVALID(cnd, td))
|
1993-06-12 14:58:17 +00:00
|
|
|
return (0);
|
|
|
|
/*
|
|
|
|
* Superuser can always use this to wrest control of console
|
|
|
|
* output from the "virtual" console.
|
|
|
|
*/
|
|
|
|
if (cmd == TIOCCONS && constty) {
|
2002-04-01 21:31:13 +00:00
|
|
|
error = suser(td);
|
1993-06-12 14:58:17 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
constty = NULL;
|
|
|
|
return (0);
|
|
|
|
}
|
2001-10-23 20:25:50 +00:00
|
|
|
dev = cnd->cnd_vp->v_rdev;
|
|
|
|
if (dev != NULL)
|
|
|
|
return ((*devsw(dev)->d_ioctl)(dev, cmd, data, flag, td));
|
|
|
|
return (0);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
/*
|
|
|
|
* XXX
|
|
|
|
* poll/kqfilter do not appear to be correct
|
|
|
|
*/
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2001-10-23 20:25:50 +00:00
|
|
|
cnpoll(dev_t dev, int events, struct thread *td)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
2001-10-23 20:25:50 +00:00
|
|
|
struct cn_device *cnd;
|
1995-02-25 20:09:44 +00:00
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
cnd = STAILQ_FIRST(&cn_devlist);
|
|
|
|
if (cn_mute || CND_INVALID(cnd, td))
|
|
|
|
return (0);
|
|
|
|
dev = cnd->cnd_vp->v_rdev;
|
|
|
|
if (dev != NULL)
|
|
|
|
return ((*devsw(dev)->d_poll)(dev, events, td));
|
|
|
|
return (0);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
2001-02-15 16:34:11 +00:00
|
|
|
static int
|
2001-10-23 20:25:50 +00:00
|
|
|
cnkqfilter(dev_t dev, struct knote *kn)
|
2001-02-15 16:34:11 +00:00
|
|
|
{
|
2001-10-23 20:25:50 +00:00
|
|
|
struct cn_device *cnd;
|
2001-02-15 16:34:11 +00:00
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
cnd = STAILQ_FIRST(&cn_devlist);
|
|
|
|
if (cn_mute || CND_INVALID(cnd, curthread))
|
|
|
|
return (1);
|
|
|
|
dev = cnd->cnd_vp->v_rdev;
|
|
|
|
if (dev != NULL)
|
2001-02-15 16:34:11 +00:00
|
|
|
return ((*devsw(dev)->d_kqfilter)(dev, kn));
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
2001-10-23 20:25:50 +00:00
|
|
|
/*
|
|
|
|
* Low level console routines.
|
|
|
|
*/
|
1993-11-25 01:38:01 +00:00
|
|
|
int
|
2001-10-23 20:25:50 +00:00
|
|
|
cngetc(void)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
1994-12-18 19:35:59 +00:00
|
|
|
int c;
|
2001-10-23 20:25:50 +00:00
|
|
|
|
|
|
|
if (cn_mute)
|
1996-10-30 21:40:25 +00:00
|
|
|
return (-1);
|
2001-10-23 20:25:50 +00:00
|
|
|
while ((c = cncheckc()) == -1)
|
|
|
|
;
|
|
|
|
if (c == '\r')
|
|
|
|
c = '\n'; /* console input is always ICRNL */
|
1994-12-18 19:35:59 +00:00
|
|
|
return (c);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
1994-10-20 00:08:31 +00:00
|
|
|
int
|
2001-10-23 20:25:50 +00:00
|
|
|
cncheckc(void)
|
1994-10-20 00:08:31 +00:00
|
|
|
{
|
2001-10-23 20:25:50 +00:00
|
|
|
struct cn_device *cnd;
|
|
|
|
struct consdev *cn;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
if (cn_mute)
|
1996-09-14 04:25:32 +00:00
|
|
|
return (-1);
|
2001-10-23 20:25:50 +00:00
|
|
|
STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) {
|
|
|
|
cn = cnd->cnd_cn;
|
|
|
|
c = cn->cn_checkc(cn->cn_dev);
|
|
|
|
if (c != -1) {
|
|
|
|
return (c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (-1);
|
1994-10-20 00:08:31 +00:00
|
|
|
}
|
|
|
|
|
1993-11-25 01:38:01 +00:00
|
|
|
void
|
2001-10-23 20:25:50 +00:00
|
|
|
cnputc(int c)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
2001-10-23 20:25:50 +00:00
|
|
|
struct cn_device *cnd;
|
|
|
|
struct consdev *cn;
|
2001-12-10 20:02:22 +00:00
|
|
|
char *cp;
|
2001-10-23 20:25:50 +00:00
|
|
|
|
|
|
|
if (cn_mute || c == '\0')
|
1993-06-12 14:58:17 +00:00
|
|
|
return;
|
2001-10-23 20:25:50 +00:00
|
|
|
STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) {
|
|
|
|
cn = cnd->cnd_cn;
|
1993-06-12 14:58:17 +00:00
|
|
|
if (c == '\n')
|
2001-10-23 20:25:50 +00:00
|
|
|
cn->cn_putc(cn->cn_dev, '\r');
|
|
|
|
cn->cn_putc(cn->cn_dev, c);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
2001-12-11 10:21:26 +00:00
|
|
|
#ifdef DDB
|
2001-12-10 20:02:22 +00:00
|
|
|
if (console_pausing && !db_active && (c == '\n')) {
|
2001-12-11 10:21:26 +00:00
|
|
|
#else
|
|
|
|
if (console_pausing && (c == '\n')) {
|
|
|
|
#endif
|
2001-12-10 20:02:22 +00:00
|
|
|
for (cp = console_pausestr; *cp != '\0'; cp++)
|
|
|
|
cnputc(*cp);
|
|
|
|
if (cngetc() == '.')
|
|
|
|
console_pausing = 0;
|
|
|
|
cnputc('\r');
|
|
|
|
for (cp = console_pausestr; *cp != '\0'; cp++)
|
|
|
|
cnputc(' ');
|
|
|
|
cnputc('\r');
|
|
|
|
}
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
2000-01-11 14:54:01 +00:00
|
|
|
void
|
2001-10-23 20:25:50 +00:00
|
|
|
cndbctl(int on)
|
2000-01-11 14:54:01 +00:00
|
|
|
{
|
2001-10-23 20:25:50 +00:00
|
|
|
struct cn_device *cnd;
|
|
|
|
struct consdev *cn;
|
2000-01-11 14:54:01 +00:00
|
|
|
static int refcount;
|
|
|
|
|
|
|
|
if (!on)
|
|
|
|
refcount--;
|
2001-10-23 20:25:50 +00:00
|
|
|
if (refcount == 0)
|
|
|
|
STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) {
|
|
|
|
cn = cnd->cnd_cn;
|
|
|
|
if (cn->cn_dbctl != NULL)
|
|
|
|
cn->cn_dbctl(cn->cn_dev, on);
|
|
|
|
}
|
2000-01-11 14:54:01 +00:00
|
|
|
if (on)
|
|
|
|
refcount++;
|
|
|
|
}
|
|
|
|
|
1995-12-08 11:19:42 +00:00
|
|
|
static void
|
|
|
|
cn_drvinit(void *unused)
|
1995-11-29 10:49:16 +00:00
|
|
|
{
|
|
|
|
|
2000-01-24 11:48:11 +00:00
|
|
|
cn_devfsdev = make_dev(&cn_cdevsw, 0, UID_ROOT, GID_WHEEL, 0600,
|
|
|
|
"console");
|
1995-11-29 10:49:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SYSINIT(cndev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,cn_drvinit,NULL)
|