Home | History | Annotate | Line # | Download | only in dev
cons.c revision 1.72.2.1
      1  1.72.2.1       snj /*	$NetBSD: cons.c,v 1.72.2.1 2015/03/09 08:00:46 snj Exp $	*/
      2      1.18       cgd 
      3       1.1       cgd /*
      4      1.68     rmind  * Copyright (c) 1988 University of Utah.
      5      1.17       cgd  * Copyright (c) 1990, 1993
      6      1.17       cgd  *	The Regents of the University of California.  All rights reserved.
      7       1.1       cgd  *
      8       1.1       cgd  * This code is derived from software contributed to Berkeley by
      9       1.1       cgd  * the Systems Programming Group of the University of Utah Computer
     10       1.1       cgd  * Science Department.
     11       1.1       cgd  *
     12       1.1       cgd  * Redistribution and use in source and binary forms, with or without
     13       1.1       cgd  * modification, are permitted provided that the following conditions
     14       1.1       cgd  * are met:
     15       1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     16       1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     17       1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     18       1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     19       1.1       cgd  *    documentation and/or other materials provided with the distribution.
     20      1.49       agc  * 3. Neither the name of the University nor the names of its contributors
     21      1.49       agc  *    may be used to endorse or promote products derived from this software
     22      1.49       agc  *    without specific prior written permission.
     23      1.49       agc  *
     24      1.49       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25      1.49       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26      1.49       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27      1.49       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28      1.49       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29      1.49       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30      1.49       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31      1.49       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32      1.49       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33      1.49       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34      1.49       agc  * SUCH DAMAGE.
     35      1.49       agc  *
     36      1.49       agc  * from: Utah $Hdr: cons.c 1.7 92/01/21$
     37      1.49       agc  *
     38      1.49       agc  *	@(#)cons.c	8.2 (Berkeley) 1/12/94
     39      1.49       agc  */
     40      1.49       agc 
     41      1.41     lukem #include <sys/cdefs.h>
     42  1.72.2.1       snj __KERNEL_RCSID(0, "$NetBSD: cons.c,v 1.72.2.1 2015/03/09 08:00:46 snj Exp $");
     43       1.1       cgd 
     44      1.10       cgd #include <sys/param.h>
     45      1.10       cgd #include <sys/proc.h>
     46      1.10       cgd #include <sys/systm.h>
     47      1.10       cgd #include <sys/buf.h>
     48      1.10       cgd #include <sys/ioctl.h>
     49      1.56        ws #include <sys/poll.h>
     50      1.10       cgd #include <sys/tty.h>
     51      1.10       cgd #include <sys/file.h>
     52      1.10       cgd #include <sys/conf.h>
     53      1.10       cgd #include <sys/vnode.h>
     54      1.58      elad #include <sys/kauth.h>
     55      1.62        ad #include <sys/mutex.h>
     56       1.1       cgd 
     57      1.11       cgd #include <dev/cons.h>
     58       1.1       cgd 
     59      1.43   gehenna dev_type_open(cnopen);
     60      1.43   gehenna dev_type_close(cnclose);
     61      1.43   gehenna dev_type_read(cnread);
     62      1.43   gehenna dev_type_write(cnwrite);
     63      1.43   gehenna dev_type_ioctl(cnioctl);
     64      1.43   gehenna dev_type_poll(cnpoll);
     65      1.45  jdolecek dev_type_kqfilter(cnkqfilter);
     66      1.43   gehenna 
     67      1.64        ad static bool cn_redirect(dev_t *, int, int *);
     68      1.50       dsl 
     69      1.43   gehenna const struct cdevsw cons_cdevsw = {
     70      1.71  dholland 	.d_open = cnopen,
     71      1.71  dholland 	.d_close = cnclose,
     72      1.71  dholland 	.d_read = cnread,
     73      1.71  dholland 	.d_write = cnwrite,
     74      1.71  dholland 	.d_ioctl = cnioctl,
     75      1.71  dholland 	.d_stop = nostop,
     76      1.71  dholland 	.d_tty = notty,
     77      1.71  dholland 	.d_poll = cnpoll,
     78      1.71  dholland 	.d_mmap = nommap,
     79      1.71  dholland 	.d_kqfilter = cnkqfilter,
     80      1.72  dholland 	.d_discard = nodiscard,
     81      1.71  dholland 	.d_flag = D_TTY
     82      1.43   gehenna };
     83      1.43   gehenna 
     84      1.10       cgd struct	tty *constty = NULL;	/* virtual console output device */
     85      1.52       cdi struct	consdev *cn_tab;	/* physical console device info */
     86      1.50       dsl struct	vnode *cn_devvp[2];	/* vnode for underlying device. */
     87       1.1       cgd 
     88       1.7    andrew int
     89      1.57  christos cnopen(dev_t dev, int flag, int mode, struct lwp *l)
     90       1.1       cgd {
     91      1.37       mrg 	dev_t cndev;
     92      1.65        ad 	int unit, error;
     93      1.50       dsl 
     94      1.50       dsl 	unit = minor(dev);
     95      1.50       dsl 	if (unit > 1)
     96      1.50       dsl 		return ENODEV;
     97      1.21   mycroft 
     98       1.1       cgd 	if (cn_tab == NULL)
     99       1.1       cgd 		return (0);
    100      1.10       cgd 
    101      1.10       cgd 	/*
    102      1.10       cgd 	 * always open the 'real' console device, so we don't get nailed
    103      1.10       cgd 	 * later.  This follows normal device semantics; they always get
    104      1.10       cgd 	 * open() calls.
    105      1.10       cgd 	 */
    106      1.37       mrg 	cndev = cn_tab->cn_dev;
    107      1.37       mrg 	if (cndev == NODEV) {
    108      1.33       leo 		/*
    109      1.33       leo 		 * This is most likely an error in the console attach
    110      1.53       wiz 		 * code. Panicking looks better than jumping into nowhere
    111      1.33       leo 		 * through cdevsw below....
    112      1.33       leo 		 */
    113      1.44    provos 		panic("cnopen: no console device");
    114      1.33       leo 	}
    115      1.37       mrg 	if (dev == cndev) {
    116      1.37       mrg 		/*
    117      1.37       mrg 		 * This causes cnopen() to be called recursively, which
    118      1.37       mrg 		 * is generally a bad thing.  It is often caused when
    119      1.37       mrg 		 * dev == 0 and cn_dev has not been set, but was probably
    120      1.37       mrg 		 * initialised to 0.
    121      1.37       mrg 		 */
    122      1.44    provos 		panic("cnopen: cn_tab->cn_dev == dev");
    123      1.37       mrg 	}
    124      1.65        ad 	if (cn_devvp[unit] != NULLVP)
    125      1.65        ad 		return 0;
    126      1.65        ad 	if ((error = cdevvp(cndev, &cn_devvp[unit])) != 0)
    127      1.65        ad 		printf("cnopen: unable to get vnode reference\n");
    128      1.65        ad 	error = vn_lock(cn_devvp[unit], LK_EXCLUSIVE | LK_RETRY);
    129      1.65        ad 	if (error == 0) {
    130      1.65        ad 		error = VOP_OPEN(cn_devvp[unit], flag, kauth_cred_get());
    131      1.67   hannken 		VOP_UNLOCK(cn_devvp[unit]);
    132      1.13       cgd 	}
    133      1.65        ad 	return error;
    134       1.1       cgd }
    135      1.54     perry 
    136       1.7    andrew int
    137      1.57  christos cnclose(dev_t dev, int flag, int mode, struct lwp *l)
    138       1.1       cgd {
    139      1.10       cgd 	struct vnode *vp;
    140      1.65        ad 	int unit, error;
    141      1.50       dsl 
    142      1.50       dsl 	unit = minor(dev);
    143      1.10       cgd 
    144       1.1       cgd 	if (cn_tab == NULL)
    145       1.1       cgd 		return (0);
    146      1.10       cgd 
    147      1.65        ad 	vp = cn_devvp[unit];
    148      1.65        ad 	cn_devvp[unit] = NULL;
    149      1.65        ad 	error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    150      1.65        ad 	if (error == 0) {
    151      1.65        ad 		error = VOP_CLOSE(vp, flag, kauth_cred_get());
    152      1.67   hannken 		VOP_UNLOCK(vp);
    153      1.13       cgd 	}
    154      1.65        ad 	return error;
    155       1.1       cgd }
    156      1.54     perry 
    157       1.7    andrew int
    158      1.46      matt cnread(dev_t dev, struct uio *uio, int flag)
    159       1.1       cgd {
    160      1.50       dsl 	int error;
    161      1.21   mycroft 
    162      1.10       cgd 	/*
    163      1.10       cgd 	 * If we would redirect input, punt.  This will keep strange
    164      1.10       cgd 	 * things from happening to people who are using the real
    165      1.10       cgd 	 * console.  Nothing should be using /dev/console for
    166      1.10       cgd 	 * input (except a shell in single-user mode, but then,
    167      1.10       cgd 	 * one wouldn't TIOCCONS then).
    168      1.10       cgd 	 */
    169      1.64        ad 	if (!cn_redirect(&dev, 1, &error))
    170      1.50       dsl 		return error;
    171      1.64        ad 	return cdev_read(dev, uio, flag);
    172       1.1       cgd }
    173      1.54     perry 
    174       1.7    andrew int
    175      1.46      matt cnwrite(dev_t dev, struct uio *uio, int flag)
    176       1.1       cgd {
    177      1.50       dsl 	int error;
    178      1.21   mycroft 
    179      1.50       dsl 	/* Redirect output, if that's appropriate. */
    180      1.64        ad 	if (!cn_redirect(&dev, 0, &error))
    181      1.50       dsl 		return error;
    182      1.64        ad 	return cdev_write(dev, uio, flag);
    183      1.25   mycroft }
    184      1.25   mycroft 
    185       1.7    andrew int
    186      1.63  christos cnioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
    187       1.1       cgd {
    188       1.1       cgd 	int error;
    189       1.1       cgd 
    190      1.62        ad 	error = 0;
    191      1.62        ad 
    192       1.1       cgd 	/*
    193       1.1       cgd 	 * Superuser can always use this to wrest control of console
    194       1.1       cgd 	 * output from the "virtual" console.
    195       1.1       cgd 	 */
    196      1.10       cgd 	if (cmd == TIOCCONS && constty != NULL) {
    197      1.69      elad 		error = kauth_authorize_device_tty(l->l_cred,
    198      1.69      elad 		    KAUTH_DEVICE_TTY_VIRTUAL, constty);
    199      1.62        ad 		if (!error)
    200      1.62        ad 			constty = NULL;
    201      1.62        ad 		return (error);
    202       1.1       cgd 	}
    203      1.10       cgd 
    204      1.10       cgd 	/*
    205      1.10       cgd 	 * Redirect the ioctl, if that's appropriate.
    206      1.10       cgd 	 * Note that strange things can happen, if a program does
    207      1.10       cgd 	 * ioctls on /dev/console, then the console is redirected
    208      1.10       cgd 	 * out from under it.
    209      1.10       cgd 	 */
    210      1.64        ad 	if (!cn_redirect(&dev, 0, &error))
    211      1.64        ad 		return error;
    212      1.64        ad 	return cdev_ioctl(dev, cmd, data, flag, l);
    213       1.1       cgd }
    214       1.1       cgd 
    215       1.1       cgd /*ARGSUSED*/
    216       1.7    andrew int
    217      1.57  christos cnpoll(dev_t dev, int events, struct lwp *l)
    218       1.1       cgd {
    219      1.50       dsl 	int error;
    220      1.21   mycroft 
    221      1.10       cgd 	/*
    222      1.38     lukem 	 * Redirect the poll, if that's appropriate.
    223      1.10       cgd 	 * I don't want to think of the possible side effects
    224      1.10       cgd 	 * of console redirection here.
    225      1.10       cgd 	 */
    226      1.64        ad 	if (!cn_redirect(&dev, 0, &error))
    227      1.56        ws 		return POLLHUP;
    228      1.64        ad 	return cdev_poll(dev, events, l);
    229      1.45  jdolecek }
    230      1.45  jdolecek 
    231      1.45  jdolecek /*ARGSUSED*/
    232      1.45  jdolecek int
    233      1.46      matt cnkqfilter(dev_t dev, struct knote *kn)
    234      1.45  jdolecek {
    235      1.50       dsl 	int error;
    236      1.45  jdolecek 
    237      1.45  jdolecek 	/*
    238      1.45  jdolecek 	 * Redirect the kqfilter, if that's appropriate.
    239      1.45  jdolecek 	 * I don't want to think of the possible side effects
    240      1.45  jdolecek 	 * of console redirection here.
    241      1.45  jdolecek 	 */
    242      1.64        ad 	if (!cn_redirect(&dev, 0, &error))
    243      1.50       dsl 		return error;
    244      1.64        ad 	return cdev_kqfilter(dev, kn);
    245       1.1       cgd }
    246       1.1       cgd 
    247       1.7    andrew int
    248      1.46      matt cngetc(void)
    249       1.1       cgd {
    250       1.1       cgd 	if (cn_tab == NULL)
    251       1.1       cgd 		return (0);
    252      1.70      matt 	int s = splhigh();
    253      1.70      matt 	for (;;) {
    254      1.70      matt 		const int rv = (*cn_tab->cn_getc)(cn_tab->cn_dev);
    255      1.70      matt 		if (rv >= 0) {
    256      1.70      matt 			splx(s);
    257      1.70      matt 			return rv;
    258      1.70      matt 		}
    259      1.70      matt 		docritpollhooks();
    260      1.70      matt 	}
    261      1.36    itojun }
    262      1.36    itojun 
    263      1.36    itojun int
    264      1.46      matt cngetsn(char *cp, int size)
    265      1.36    itojun {
    266      1.36    itojun 	char *lp;
    267      1.36    itojun 	int c, len;
    268      1.36    itojun 
    269      1.36    itojun 	cnpollc(1);
    270      1.36    itojun 
    271      1.36    itojun 	lp = cp;
    272      1.36    itojun 	len = 0;
    273      1.36    itojun 	for (;;) {
    274      1.36    itojun 		c = cngetc();
    275      1.36    itojun 		switch (c) {
    276      1.36    itojun 		case '\n':
    277      1.36    itojun 		case '\r':
    278      1.36    itojun 			printf("\n");
    279      1.36    itojun 			*lp++ = '\0';
    280      1.36    itojun 			cnpollc(0);
    281      1.36    itojun 			return (len);
    282      1.36    itojun 		case '\b':
    283      1.36    itojun 		case '\177':
    284      1.36    itojun 		case '#':
    285      1.36    itojun 			if (len) {
    286      1.36    itojun 				--len;
    287      1.36    itojun 				--lp;
    288      1.36    itojun 				printf("\b \b");
    289      1.36    itojun 			}
    290      1.36    itojun 			continue;
    291      1.36    itojun 		case '@':
    292      1.40  jdolecek 		case 'u'&037:	/* CTRL-u */
    293      1.36    itojun 			len = 0;
    294      1.36    itojun 			lp = cp;
    295      1.36    itojun 			printf("\n");
    296      1.36    itojun 			continue;
    297      1.36    itojun 		default:
    298      1.36    itojun 			if (len + 1 >= size || c < ' ') {
    299      1.40  jdolecek 				printf("\007");
    300      1.36    itojun 				continue;
    301      1.36    itojun 			}
    302      1.36    itojun 			printf("%c", c);
    303      1.36    itojun 			++len;
    304      1.36    itojun 			*lp++ = c;
    305      1.36    itojun 		}
    306      1.36    itojun 	}
    307       1.1       cgd }
    308       1.1       cgd 
    309      1.29  christos void
    310      1.46      matt cnputc(int c)
    311       1.1       cgd {
    312      1.21   mycroft 
    313       1.1       cgd 	if (cn_tab == NULL)
    314      1.54     perry 		return;
    315      1.29  christos 
    316       1.1       cgd 	if (c) {
    317      1.70      matt 		if (c == '\n') {
    318       1.1       cgd 			(*cn_tab->cn_putc)(cn_tab->cn_dev, '\r');
    319  1.72.2.1       snj 			docritpollhooks();
    320      1.70      matt 		}
    321  1.72.2.1       snj 		(*cn_tab->cn_putc)(cn_tab->cn_dev, c);
    322       1.1       cgd 	}
    323      1.19   mycroft }
    324      1.19   mycroft 
    325      1.19   mycroft void
    326      1.46      matt cnpollc(int on)
    327      1.19   mycroft {
    328      1.19   mycroft 	static int refcount = 0;
    329      1.19   mycroft 
    330      1.19   mycroft 	if (cn_tab == NULL)
    331      1.19   mycroft 		return;
    332      1.19   mycroft 	if (!on)
    333      1.19   mycroft 		--refcount;
    334      1.19   mycroft 	if (refcount == 0)
    335      1.19   mycroft 		(*cn_tab->cn_pollc)(cn_tab->cn_dev, on);
    336      1.19   mycroft 	if (on)
    337      1.19   mycroft 		++refcount;
    338      1.21   mycroft }
    339      1.21   mycroft 
    340      1.21   mycroft void
    341      1.61  christos nullcnpollc(dev_t dev, int on)
    342      1.21   mycroft {
    343      1.21   mycroft 
    344      1.34   thorpej }
    345      1.34   thorpej 
    346      1.34   thorpej void
    347      1.46      matt cnbell(u_int pitch, u_int period, u_int volume)
    348      1.34   thorpej {
    349      1.34   thorpej 
    350      1.34   thorpej 	if (cn_tab == NULL || cn_tab->cn_bell == NULL)
    351      1.34   thorpej 		return;
    352      1.34   thorpej 	(*cn_tab->cn_bell)(cn_tab->cn_dev, pitch, period, volume);
    353      1.46      matt }
    354      1.46      matt 
    355      1.46      matt void
    356      1.46      matt cnflush(void)
    357      1.46      matt {
    358      1.46      matt 	if (cn_tab == NULL || cn_tab->cn_flush == NULL)
    359      1.46      matt 		return;
    360      1.46      matt 	(*cn_tab->cn_flush)(cn_tab->cn_dev);
    361      1.46      matt }
    362      1.54     perry 
    363      1.46      matt void
    364      1.46      matt cnhalt(void)
    365      1.46      matt {
    366      1.46      matt 	if (cn_tab == NULL || cn_tab->cn_halt == NULL)
    367      1.46      matt 		return;
    368      1.46      matt 	(*cn_tab->cn_halt)(cn_tab->cn_dev);
    369      1.50       dsl }
    370      1.50       dsl 
    371      1.62        ad /*
    372      1.62        ad  * Redirect output, if that's appropriate.  If there's no real console,
    373      1.62        ad  * return ENXIO.
    374      1.62        ad  *
    375      1.62        ad  * Call with tty_mutex held.
    376      1.62        ad  */
    377      1.64        ad static bool
    378      1.50       dsl cn_redirect(dev_t *devp, int is_read, int *error)
    379      1.50       dsl {
    380      1.50       dsl 	dev_t dev = *devp;
    381      1.50       dsl 
    382      1.50       dsl 	*error = ENXIO;
    383      1.50       dsl 	if (constty != NULL && minor(dev) == 0 &&
    384      1.55    martin 	    (cn_tab == NULL || (cn_tab->cn_pri != CN_REMOTE))) {
    385      1.50       dsl 		if (is_read) {
    386      1.50       dsl 			*error = 0;
    387      1.64        ad 			return false;
    388      1.50       dsl 		}
    389      1.50       dsl 		dev = constty->t_dev;
    390      1.50       dsl 	} else if (cn_tab == NULL)
    391      1.64        ad 		return false;
    392      1.50       dsl 	else
    393      1.50       dsl 		dev = cn_tab->cn_dev;
    394      1.50       dsl 	*devp = dev;
    395      1.64        ad 	return true;
    396       1.2       cgd }
    397