2019-12-06 07:15:38 +03:00
|
|
|
/* $NetBSD: cons.c,v 1.77 2019/12/06 04:15:38 riastradh Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
2011-02-08 23:20:06 +03:00
|
|
|
* Copyright (c) 1988 University of Utah.
|
1994-06-27 23:40:57 +04:00
|
|
|
* Copyright (c) 1990, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* 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.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. 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.
|
|
|
|
*
|
2019-12-06 07:15:38 +03:00
|
|
|
* from: Utah $Hdr: cons.c 1.7 92/01/21$
|
2003-08-07 20:26:28 +04:00
|
|
|
*
|
|
|
|
* @(#)cons.c 8.2 (Berkeley) 1/12/94
|
|
|
|
*/
|
|
|
|
|
2001-11-13 08:32:49 +03:00
|
|
|
#include <sys/cdefs.h>
|
2019-12-06 07:15:38 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: cons.c,v 1.77 2019/12/06 04:15:38 riastradh Exp $");
|
2001-11-13 08:32:49 +03:00
|
|
|
|
1994-01-27 10:55:44 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/ioctl.h>
|
2005-06-21 18:01:11 +04:00
|
|
|
#include <sys/poll.h>
|
1994-01-27 10:55:44 +03:00
|
|
|
#include <sys/tty.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/vnode.h>
|
2006-05-15 01:42:26 +04:00
|
|
|
#include <sys/kauth.h>
|
2007-02-10 00:55:00 +03:00
|
|
|
#include <sys/mutex.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-02-01 06:35:06 +03:00
|
|
|
#include <dev/cons.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2015-02-23 09:54:12 +03:00
|
|
|
#include "nullcons.h"
|
|
|
|
|
2002-09-06 17:18:43 +04:00
|
|
|
dev_type_open(cnopen);
|
|
|
|
dev_type_close(cnclose);
|
|
|
|
dev_type_read(cnread);
|
|
|
|
dev_type_write(cnwrite);
|
|
|
|
dev_type_ioctl(cnioctl);
|
|
|
|
dev_type_poll(cnpoll);
|
2002-10-23 13:10:23 +04:00
|
|
|
dev_type_kqfilter(cnkqfilter);
|
2002-09-06 17:18:43 +04:00
|
|
|
|
2007-07-10 00:51:58 +04:00
|
|
|
static bool cn_redirect(dev_t *, int, int *);
|
2003-10-03 17:15:52 +04:00
|
|
|
|
2002-09-06 17:18:43 +04:00
|
|
|
const struct cdevsw cons_cdevsw = {
|
2014-03-16 09:20:22 +04:00
|
|
|
.d_open = cnopen,
|
|
|
|
.d_close = cnclose,
|
|
|
|
.d_read = cnread,
|
|
|
|
.d_write = cnwrite,
|
|
|
|
.d_ioctl = cnioctl,
|
|
|
|
.d_stop = nostop,
|
|
|
|
.d_tty = notty,
|
|
|
|
.d_poll = cnpoll,
|
|
|
|
.d_mmap = nommap,
|
|
|
|
.d_kqfilter = cnkqfilter,
|
2014-07-25 12:10:31 +04:00
|
|
|
.d_discard = nodiscard,
|
2014-03-16 09:20:22 +04:00
|
|
|
.d_flag = D_TTY
|
2002-09-06 17:18:43 +04:00
|
|
|
};
|
|
|
|
|
1994-01-27 10:55:44 +03:00
|
|
|
struct tty *constty = NULL; /* virtual console output device */
|
2003-10-19 01:26:22 +04:00
|
|
|
struct consdev *cn_tab; /* physical console device info */
|
2003-10-03 17:15:52 +04:00
|
|
|
struct vnode *cn_devvp[2]; /* vnode for underlying device. */
|
1994-04-10 05:11:28 +04:00
|
|
|
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2005-12-11 15:16:03 +03:00
|
|
|
cnopen(dev_t dev, int flag, int mode, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-06-12 09:02:22 +04:00
|
|
|
dev_t cndev;
|
2008-01-24 20:32:52 +03:00
|
|
|
int unit, error;
|
2003-10-03 17:15:52 +04:00
|
|
|
|
|
|
|
unit = minor(dev);
|
|
|
|
if (unit > 1)
|
|
|
|
return ENODEV;
|
1994-10-31 01:16:37 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
if (cn_tab == NULL)
|
|
|
|
return (0);
|
1994-01-27 10:55:44 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* always open the 'real' console device, so we don't get nailed
|
|
|
|
* later. This follows normal device semantics; they always get
|
|
|
|
* open() calls.
|
|
|
|
*/
|
2000-06-12 09:02:22 +04:00
|
|
|
cndev = cn_tab->cn_dev;
|
2015-02-23 09:54:12 +03:00
|
|
|
#if NNULLCONS > 0
|
|
|
|
if (cndev == NODEV) {
|
|
|
|
nullconsattach(0);
|
|
|
|
}
|
|
|
|
#else /* NNULLCONS > 0 */
|
2000-06-12 09:02:22 +04:00
|
|
|
if (cndev == NODEV) {
|
1999-08-04 18:40:54 +04:00
|
|
|
/*
|
|
|
|
* This is most likely an error in the console attach
|
2004-05-16 19:44:10 +04:00
|
|
|
* code. Panicking looks better than jumping into nowhere
|
1999-08-04 18:40:54 +04:00
|
|
|
* through cdevsw below....
|
|
|
|
*/
|
2002-09-27 19:35:29 +04:00
|
|
|
panic("cnopen: no console device");
|
1999-08-04 18:40:54 +04:00
|
|
|
}
|
2015-02-23 09:54:12 +03:00
|
|
|
#endif /* NNULLCONS > 0 */
|
2000-06-12 09:02:22 +04:00
|
|
|
if (dev == cndev) {
|
|
|
|
/*
|
|
|
|
* This causes cnopen() to be called recursively, which
|
|
|
|
* is generally a bad thing. It is often caused when
|
|
|
|
* dev == 0 and cn_dev has not been set, but was probably
|
|
|
|
* initialised to 0.
|
|
|
|
*/
|
2002-09-27 19:35:29 +04:00
|
|
|
panic("cnopen: cn_tab->cn_dev == dev");
|
2000-06-12 09:02:22 +04:00
|
|
|
}
|
2008-01-24 20:32:52 +03:00
|
|
|
if (cn_devvp[unit] != NULLVP)
|
|
|
|
return 0;
|
|
|
|
if ((error = cdevvp(cndev, &cn_devvp[unit])) != 0)
|
|
|
|
printf("cnopen: unable to get vnode reference\n");
|
|
|
|
error = vn_lock(cn_devvp[unit], LK_EXCLUSIVE | LK_RETRY);
|
|
|
|
if (error == 0) {
|
|
|
|
error = VOP_OPEN(cn_devvp[unit], flag, kauth_cred_get());
|
2010-06-24 16:58:48 +04:00
|
|
|
VOP_UNLOCK(cn_devvp[unit]);
|
1994-04-10 05:11:28 +04:00
|
|
|
}
|
2008-01-24 20:32:52 +03:00
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2005-02-27 03:26:58 +03:00
|
|
|
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2005-12-11 15:16:03 +03:00
|
|
|
cnclose(dev_t dev, int flag, int mode, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-01-27 10:55:44 +03:00
|
|
|
struct vnode *vp;
|
2008-01-24 20:32:52 +03:00
|
|
|
int unit, error;
|
2003-10-03 17:15:52 +04:00
|
|
|
|
|
|
|
unit = minor(dev);
|
1994-01-27 10:55:44 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
if (cn_tab == NULL)
|
|
|
|
return (0);
|
1994-01-27 10:55:44 +03:00
|
|
|
|
2008-01-24 20:32:52 +03:00
|
|
|
vp = cn_devvp[unit];
|
|
|
|
cn_devvp[unit] = NULL;
|
|
|
|
error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
|
|
|
|
if (error == 0) {
|
|
|
|
error = VOP_CLOSE(vp, flag, kauth_cred_get());
|
2010-06-24 16:58:48 +04:00
|
|
|
VOP_UNLOCK(vp);
|
2019-12-06 06:45:33 +03:00
|
|
|
vrele(vp);
|
1994-04-10 05:11:28 +04:00
|
|
|
}
|
2008-01-24 20:32:52 +03:00
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2005-02-27 03:26:58 +03:00
|
|
|
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2003-03-06 03:38:26 +03:00
|
|
|
cnread(dev_t dev, struct uio *uio, int flag)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2003-10-03 17:15:52 +04:00
|
|
|
int error;
|
1994-10-31 01:16:37 +03:00
|
|
|
|
1994-01-27 10:55:44 +03:00
|
|
|
/*
|
|
|
|
* If we would redirect input, punt. This will keep strange
|
|
|
|
* things from happening to people who are using the real
|
|
|
|
* console. Nothing should be using /dev/console for
|
|
|
|
* input (except a shell in single-user mode, but then,
|
|
|
|
* one wouldn't TIOCCONS then).
|
|
|
|
*/
|
2007-07-10 00:51:58 +04:00
|
|
|
if (!cn_redirect(&dev, 1, &error))
|
2003-10-03 17:15:52 +04:00
|
|
|
return error;
|
2007-07-10 00:51:58 +04:00
|
|
|
return cdev_read(dev, uio, flag);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2005-02-27 03:26:58 +03:00
|
|
|
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2003-03-06 03:38:26 +03:00
|
|
|
cnwrite(dev_t dev, struct uio *uio, int flag)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2003-10-03 17:15:52 +04:00
|
|
|
int error;
|
1994-10-31 01:16:37 +03:00
|
|
|
|
2003-10-03 17:15:52 +04:00
|
|
|
/* Redirect output, if that's appropriate. */
|
2007-07-10 00:51:58 +04:00
|
|
|
if (!cn_redirect(&dev, 0, &error))
|
2003-10-03 17:15:52 +04:00
|
|
|
return error;
|
2007-07-10 00:51:58 +04:00
|
|
|
return cdev_write(dev, uio, flag);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1995-04-10 10:30:52 +04:00
|
|
|
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2007-03-04 08:59:00 +03:00
|
|
|
cnioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
2007-02-10 00:55:00 +03:00
|
|
|
error = 0;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Superuser can always use this to wrest control of console
|
|
|
|
* output from the "virtual" console.
|
|
|
|
*/
|
1994-01-27 10:55:44 +03:00
|
|
|
if (cmd == TIOCCONS && constty != NULL) {
|
2012-03-13 22:40:26 +04:00
|
|
|
error = kauth_authorize_device_tty(l->l_cred,
|
|
|
|
KAUTH_DEVICE_TTY_VIRTUAL, constty);
|
2007-02-10 00:55:00 +03:00
|
|
|
if (!error)
|
|
|
|
constty = NULL;
|
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-01-27 10:55:44 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Redirect the ioctl, if that's appropriate.
|
|
|
|
* Note that strange things can happen, if a program does
|
|
|
|
* ioctls on /dev/console, then the console is redirected
|
|
|
|
* out from under it.
|
|
|
|
*/
|
2007-07-10 00:51:58 +04:00
|
|
|
if (!cn_redirect(&dev, 0, &error))
|
|
|
|
return error;
|
|
|
|
return cdev_ioctl(dev, cmd, data, flag, l);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2005-12-11 15:16:03 +03:00
|
|
|
cnpoll(dev_t dev, int events, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2003-10-03 17:15:52 +04:00
|
|
|
int error;
|
1994-10-31 01:16:37 +03:00
|
|
|
|
1994-01-27 10:55:44 +03:00
|
|
|
/*
|
2001-06-03 18:29:42 +04:00
|
|
|
* Redirect the poll, if that's appropriate.
|
1994-01-27 10:55:44 +03:00
|
|
|
* I don't want to think of the possible side effects
|
|
|
|
* of console redirection here.
|
|
|
|
*/
|
2007-07-10 00:51:58 +04:00
|
|
|
if (!cn_redirect(&dev, 0, &error))
|
2005-06-21 18:01:11 +04:00
|
|
|
return POLLHUP;
|
2007-07-10 00:51:58 +04:00
|
|
|
return cdev_poll(dev, events, l);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2002-10-23 13:10:23 +04:00
|
|
|
/*ARGSUSED*/
|
|
|
|
int
|
2003-03-06 03:38:26 +03:00
|
|
|
cnkqfilter(dev_t dev, struct knote *kn)
|
2002-10-23 13:10:23 +04:00
|
|
|
{
|
2003-10-03 17:15:52 +04:00
|
|
|
int error;
|
2002-10-23 13:10:23 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Redirect the kqfilter, if that's appropriate.
|
|
|
|
* I don't want to think of the possible side effects
|
|
|
|
* of console redirection here.
|
|
|
|
*/
|
2007-07-10 00:51:58 +04:00
|
|
|
if (!cn_redirect(&dev, 0, &error))
|
2003-10-03 17:15:52 +04:00
|
|
|
return error;
|
2007-07-10 00:51:58 +04:00
|
|
|
return cdev_kqfilter(dev, kn);
|
2002-10-23 13:10:23 +04:00
|
|
|
}
|
|
|
|
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2003-03-06 03:38:26 +03:00
|
|
|
cngetc(void)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
if (cn_tab == NULL)
|
|
|
|
return (0);
|
2013-12-22 22:05:40 +04:00
|
|
|
int s = splhigh();
|
|
|
|
for (;;) {
|
|
|
|
const int rv = (*cn_tab->cn_getc)(cn_tab->cn_dev);
|
|
|
|
if (rv >= 0) {
|
|
|
|
splx(s);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
docritpollhooks();
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2000-05-08 20:30:57 +04:00
|
|
|
int
|
2003-03-06 03:38:26 +03:00
|
|
|
cngetsn(char *cp, int size)
|
2000-05-08 20:30:57 +04:00
|
|
|
{
|
|
|
|
char *lp;
|
|
|
|
int c, len;
|
|
|
|
|
|
|
|
cnpollc(1);
|
|
|
|
|
|
|
|
lp = cp;
|
|
|
|
len = 0;
|
|
|
|
for (;;) {
|
|
|
|
c = cngetc();
|
|
|
|
switch (c) {
|
|
|
|
case '\n':
|
|
|
|
case '\r':
|
|
|
|
printf("\n");
|
|
|
|
*lp++ = '\0';
|
|
|
|
cnpollc(0);
|
|
|
|
return (len);
|
|
|
|
case '\b':
|
|
|
|
case '\177':
|
|
|
|
case '#':
|
|
|
|
if (len) {
|
|
|
|
--len;
|
|
|
|
--lp;
|
|
|
|
printf("\b \b");
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
case '@':
|
2001-06-04 13:45:03 +04:00
|
|
|
case 'u'&037: /* CTRL-u */
|
2000-05-08 20:30:57 +04:00
|
|
|
len = 0;
|
|
|
|
lp = cp;
|
|
|
|
printf("\n");
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
if (len + 1 >= size || c < ' ') {
|
2001-06-04 13:45:03 +04:00
|
|
|
printf("\007");
|
2000-05-08 20:30:57 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
printf("%c", c);
|
|
|
|
++len;
|
|
|
|
*lp++ = c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1996-02-04 05:04:08 +03:00
|
|
|
void
|
2003-03-06 03:38:26 +03:00
|
|
|
cnputc(int c)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-10-31 01:16:37 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
if (cn_tab == NULL)
|
2005-02-27 03:26:58 +03:00
|
|
|
return;
|
1996-02-04 05:04:08 +03:00
|
|
|
|
2015-05-29 19:26:45 +03:00
|
|
|
/*
|
|
|
|
* XXX
|
|
|
|
* for some reason this causes ARCS firmware to output an endless stream of
|
|
|
|
* whitespaces with n32 kernels, so use the pre-1.74 code for now until I can
|
|
|
|
* figure out why this happens
|
|
|
|
*/
|
|
|
|
#ifndef sgimips
|
1993-03-21 12:45:37 +03:00
|
|
|
if (c) {
|
2013-12-22 22:05:40 +04:00
|
|
|
if (c == '\n') {
|
1993-03-21 12:45:37 +03:00
|
|
|
(*cn_tab->cn_putc)(cn_tab->cn_dev, '\r');
|
2015-03-05 17:02:55 +03:00
|
|
|
docritpollhooks();
|
2013-12-22 22:05:40 +04:00
|
|
|
}
|
2015-03-05 17:02:55 +03:00
|
|
|
(*cn_tab->cn_putc)(cn_tab->cn_dev, c);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2015-05-29 19:26:45 +03:00
|
|
|
#else
|
|
|
|
if (c) {
|
|
|
|
(*cn_tab->cn_putc)(cn_tab->cn_dev, c);
|
|
|
|
if (c == '\n') {
|
|
|
|
docritpollhooks();
|
|
|
|
(*cn_tab->cn_putc)(cn_tab->cn_dev, '\r');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-10-26 20:56:53 +03:00
|
|
|
|
|
|
|
void
|
2003-03-06 03:38:26 +03:00
|
|
|
cnpollc(int on)
|
1994-10-26 20:56:53 +03:00
|
|
|
{
|
|
|
|
static int refcount = 0;
|
|
|
|
|
|
|
|
if (cn_tab == NULL)
|
|
|
|
return;
|
|
|
|
if (!on)
|
|
|
|
--refcount;
|
|
|
|
if (refcount == 0)
|
|
|
|
(*cn_tab->cn_pollc)(cn_tab->cn_dev, on);
|
|
|
|
if (on)
|
|
|
|
++refcount;
|
|
|
|
}
|
1994-10-31 01:16:37 +03:00
|
|
|
|
|
|
|
void
|
2006-11-16 04:32:37 +03:00
|
|
|
nullcnpollc(dev_t dev, int on)
|
1994-10-31 01:16:37 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2000-03-07 00:36:05 +03:00
|
|
|
|
|
|
|
void
|
2003-03-06 03:38:26 +03:00
|
|
|
cnbell(u_int pitch, u_int period, u_int volume)
|
2000-03-07 00:36:05 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
if (cn_tab == NULL || cn_tab->cn_bell == NULL)
|
|
|
|
return;
|
|
|
|
(*cn_tab->cn_bell)(cn_tab->cn_dev, pitch, period, volume);
|
|
|
|
}
|
2003-03-06 03:38:26 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
cnflush(void)
|
|
|
|
{
|
|
|
|
if (cn_tab == NULL || cn_tab->cn_flush == NULL)
|
|
|
|
return;
|
|
|
|
(*cn_tab->cn_flush)(cn_tab->cn_dev);
|
|
|
|
}
|
2005-02-27 03:26:58 +03:00
|
|
|
|
2003-03-06 03:38:26 +03:00
|
|
|
void
|
|
|
|
cnhalt(void)
|
|
|
|
{
|
|
|
|
if (cn_tab == NULL || cn_tab->cn_halt == NULL)
|
|
|
|
return;
|
|
|
|
(*cn_tab->cn_halt)(cn_tab->cn_dev);
|
|
|
|
}
|
2003-10-03 17:15:52 +04:00
|
|
|
|
2007-02-10 00:55:00 +03:00
|
|
|
/*
|
|
|
|
* Redirect output, if that's appropriate. If there's no real console,
|
|
|
|
* return ENXIO.
|
|
|
|
*
|
|
|
|
* Call with tty_mutex held.
|
|
|
|
*/
|
2007-07-10 00:51:58 +04:00
|
|
|
static bool
|
2003-10-03 17:15:52 +04:00
|
|
|
cn_redirect(dev_t *devp, int is_read, int *error)
|
|
|
|
{
|
|
|
|
dev_t dev = *devp;
|
|
|
|
|
|
|
|
*error = ENXIO;
|
|
|
|
if (constty != NULL && minor(dev) == 0 &&
|
2005-04-28 11:54:39 +04:00
|
|
|
(cn_tab == NULL || (cn_tab->cn_pri != CN_REMOTE))) {
|
2003-10-03 17:15:52 +04:00
|
|
|
if (is_read) {
|
|
|
|
*error = 0;
|
2007-07-10 00:51:58 +04:00
|
|
|
return false;
|
2003-10-03 17:15:52 +04:00
|
|
|
}
|
|
|
|
dev = constty->t_dev;
|
|
|
|
} else if (cn_tab == NULL)
|
2007-07-10 00:51:58 +04:00
|
|
|
return false;
|
2003-10-03 17:15:52 +04:00
|
|
|
else
|
|
|
|
dev = cn_tab->cn_dev;
|
|
|
|
*devp = dev;
|
2007-07-10 00:51:58 +04:00
|
|
|
return true;
|
2003-10-03 17:15:52 +04:00
|
|
|
}
|