Home | History | Annotate | Line # | Download | only in dev
cons.c revision 1.69.4.1
      1  1.69.4.1     rmind /*	$NetBSD: cons.c,v 1.69.4.1 2014/05/18 17:45:35 rmind 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.69.4.1     rmind __KERNEL_RCSID(0, "$NetBSD: cons.c,v 1.69.4.1 2014/05/18 17:45:35 rmind 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.69.4.1     rmind 	.d_open = cnopen,
     71  1.69.4.1     rmind 	.d_close = cnclose,
     72  1.69.4.1     rmind 	.d_read = cnread,
     73  1.69.4.1     rmind 	.d_write = cnwrite,
     74  1.69.4.1     rmind 	.d_ioctl = cnioctl,
     75  1.69.4.1     rmind 	.d_stop = nostop,
     76  1.69.4.1     rmind 	.d_tty = notty,
     77  1.69.4.1     rmind 	.d_poll = cnpoll,
     78  1.69.4.1     rmind 	.d_mmap = nommap,
     79  1.69.4.1     rmind 	.d_kqfilter = cnkqfilter,
     80  1.69.4.1     rmind 	.d_flag = D_TTY
     81      1.43   gehenna };
     82      1.43   gehenna 
     83      1.10       cgd struct	tty *constty = NULL;	/* virtual console output device */
     84      1.52       cdi struct	consdev *cn_tab;	/* physical console device info */
     85      1.50       dsl struct	vnode *cn_devvp[2];	/* vnode for underlying device. */
     86       1.1       cgd 
     87       1.7    andrew int
     88      1.57  christos cnopen(dev_t dev, int flag, int mode, struct lwp *l)
     89       1.1       cgd {
     90      1.37       mrg 	dev_t cndev;
     91      1.65        ad 	int unit, error;
     92      1.50       dsl 
     93      1.50       dsl 	unit = minor(dev);
     94      1.50       dsl 	if (unit > 1)
     95      1.50       dsl 		return ENODEV;
     96      1.21   mycroft 
     97       1.1       cgd 	if (cn_tab == NULL)
     98       1.1       cgd 		return (0);
     99      1.10       cgd 
    100      1.10       cgd 	/*
    101      1.10       cgd 	 * always open the 'real' console device, so we don't get nailed
    102      1.10       cgd 	 * later.  This follows normal device semantics; they always get
    103      1.10       cgd 	 * open() calls.
    104      1.10       cgd 	 */
    105      1.37       mrg 	cndev = cn_tab->cn_dev;
    106      1.37       mrg 	if (cndev == NODEV) {
    107      1.33       leo 		/*
    108      1.33       leo 		 * This is most likely an error in the console attach
    109      1.53       wiz 		 * code. Panicking looks better than jumping into nowhere
    110      1.33       leo 		 * through cdevsw below....
    111      1.33       leo 		 */
    112      1.44    provos 		panic("cnopen: no console device");
    113      1.33       leo 	}
    114      1.37       mrg 	if (dev == cndev) {
    115      1.37       mrg 		/*
    116      1.37       mrg 		 * This causes cnopen() to be called recursively, which
    117      1.37       mrg 		 * is generally a bad thing.  It is often caused when
    118      1.37       mrg 		 * dev == 0 and cn_dev has not been set, but was probably
    119      1.37       mrg 		 * initialised to 0.
    120      1.37       mrg 		 */
    121      1.44    provos 		panic("cnopen: cn_tab->cn_dev == dev");
    122      1.37       mrg 	}
    123      1.65        ad 	if (cn_devvp[unit] != NULLVP)
    124      1.65        ad 		return 0;
    125      1.65        ad 	if ((error = cdevvp(cndev, &cn_devvp[unit])) != 0)
    126      1.65        ad 		printf("cnopen: unable to get vnode reference\n");
    127      1.65        ad 	error = vn_lock(cn_devvp[unit], LK_EXCLUSIVE | LK_RETRY);
    128      1.65        ad 	if (error == 0) {
    129      1.65        ad 		error = VOP_OPEN(cn_devvp[unit], flag, kauth_cred_get());
    130      1.67   hannken 		VOP_UNLOCK(cn_devvp[unit]);
    131      1.13       cgd 	}
    132      1.65        ad 	return error;
    133       1.1       cgd }
    134      1.54     perry 
    135       1.7    andrew int
    136      1.57  christos cnclose(dev_t dev, int flag, int mode, struct lwp *l)
    137       1.1       cgd {
    138      1.10       cgd 	struct vnode *vp;
    139      1.65        ad 	int unit, error;
    140      1.50       dsl 
    141      1.50       dsl 	unit = minor(dev);
    142      1.10       cgd 
    143       1.1       cgd 	if (cn_tab == NULL)
    144       1.1       cgd 		return (0);
    145      1.10       cgd 
    146      1.65        ad 	vp = cn_devvp[unit];
    147      1.65        ad 	cn_devvp[unit] = NULL;
    148      1.65        ad 	error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    149      1.65        ad 	if (error == 0) {
    150      1.65        ad 		error = VOP_CLOSE(vp, flag, kauth_cred_get());
    151      1.67   hannken 		VOP_UNLOCK(vp);
    152      1.13       cgd 	}
    153      1.65        ad 	return error;
    154       1.1       cgd }
    155      1.54     perry 
    156       1.7    andrew int
    157      1.46      matt cnread(dev_t dev, struct uio *uio, int flag)
    158       1.1       cgd {
    159      1.50       dsl 	int error;
    160      1.21   mycroft 
    161      1.10       cgd 	/*
    162      1.10       cgd 	 * If we would redirect input, punt.  This will keep strange
    163      1.10       cgd 	 * things from happening to people who are using the real
    164      1.10       cgd 	 * console.  Nothing should be using /dev/console for
    165      1.10       cgd 	 * input (except a shell in single-user mode, but then,
    166      1.10       cgd 	 * one wouldn't TIOCCONS then).
    167      1.10       cgd 	 */
    168      1.64        ad 	if (!cn_redirect(&dev, 1, &error))
    169      1.50       dsl 		return error;
    170      1.64        ad 	return cdev_read(dev, uio, flag);
    171       1.1       cgd }
    172      1.54     perry 
    173       1.7    andrew int
    174      1.46      matt cnwrite(dev_t dev, struct uio *uio, int flag)
    175       1.1       cgd {
    176      1.50       dsl 	int error;
    177      1.21   mycroft 
    178      1.50       dsl 	/* Redirect output, if that's appropriate. */
    179      1.64        ad 	if (!cn_redirect(&dev, 0, &error))
    180      1.50       dsl 		return error;
    181      1.64        ad 	return cdev_write(dev, uio, flag);
    182      1.25   mycroft }
    183      1.25   mycroft 
    184       1.7    andrew int
    185      1.63  christos cnioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
    186       1.1       cgd {
    187       1.1       cgd 	int error;
    188       1.1       cgd 
    189      1.62        ad 	error = 0;
    190      1.62        ad 
    191       1.1       cgd 	/*
    192       1.1       cgd 	 * Superuser can always use this to wrest control of console
    193       1.1       cgd 	 * output from the "virtual" console.
    194       1.1       cgd 	 */
    195      1.10       cgd 	if (cmd == TIOCCONS && constty != NULL) {
    196      1.69      elad 		error = kauth_authorize_device_tty(l->l_cred,
    197      1.69      elad 		    KAUTH_DEVICE_TTY_VIRTUAL, constty);
    198      1.62        ad 		if (!error)
    199      1.62        ad 			constty = NULL;
    200      1.62        ad 		return (error);
    201       1.1       cgd 	}
    202      1.10       cgd 
    203      1.10       cgd 	/*
    204      1.10       cgd 	 * Redirect the ioctl, if that's appropriate.
    205      1.10       cgd 	 * Note that strange things can happen, if a program does
    206      1.10       cgd 	 * ioctls on /dev/console, then the console is redirected
    207      1.10       cgd 	 * out from under it.
    208      1.10       cgd 	 */
    209      1.64        ad 	if (!cn_redirect(&dev, 0, &error))
    210      1.64        ad 		return error;
    211      1.64        ad 	return cdev_ioctl(dev, cmd, data, flag, l);
    212       1.1       cgd }
    213       1.1       cgd 
    214       1.1       cgd /*ARGSUSED*/
    215       1.7    andrew int
    216      1.57  christos cnpoll(dev_t dev, int events, struct lwp *l)
    217       1.1       cgd {
    218      1.50       dsl 	int error;
    219      1.21   mycroft 
    220      1.10       cgd 	/*
    221      1.38     lukem 	 * Redirect the poll, if that's appropriate.
    222      1.10       cgd 	 * I don't want to think of the possible side effects
    223      1.10       cgd 	 * of console redirection here.
    224      1.10       cgd 	 */
    225      1.64        ad 	if (!cn_redirect(&dev, 0, &error))
    226      1.56        ws 		return POLLHUP;
    227      1.64        ad 	return cdev_poll(dev, events, l);
    228      1.45  jdolecek }
    229      1.45  jdolecek 
    230      1.45  jdolecek /*ARGSUSED*/
    231      1.45  jdolecek int
    232      1.46      matt cnkqfilter(dev_t dev, struct knote *kn)
    233      1.45  jdolecek {
    234      1.50       dsl 	int error;
    235      1.45  jdolecek 
    236      1.45  jdolecek 	/*
    237      1.45  jdolecek 	 * Redirect the kqfilter, if that's appropriate.
    238      1.45  jdolecek 	 * I don't want to think of the possible side effects
    239      1.45  jdolecek 	 * of console redirection here.
    240      1.45  jdolecek 	 */
    241      1.64        ad 	if (!cn_redirect(&dev, 0, &error))
    242      1.50       dsl 		return error;
    243      1.64        ad 	return cdev_kqfilter(dev, kn);
    244       1.1       cgd }
    245       1.1       cgd 
    246       1.7    andrew int
    247      1.46      matt cngetc(void)
    248       1.1       cgd {
    249       1.1       cgd 	if (cn_tab == NULL)
    250       1.1       cgd 		return (0);
    251  1.69.4.1     rmind 	int s = splhigh();
    252  1.69.4.1     rmind 	for (;;) {
    253  1.69.4.1     rmind 		const int rv = (*cn_tab->cn_getc)(cn_tab->cn_dev);
    254  1.69.4.1     rmind 		if (rv >= 0) {
    255  1.69.4.1     rmind 			splx(s);
    256  1.69.4.1     rmind 			return rv;
    257  1.69.4.1     rmind 		}
    258  1.69.4.1     rmind 		docritpollhooks();
    259  1.69.4.1     rmind 	}
    260      1.36    itojun }
    261      1.36    itojun 
    262      1.36    itojun int
    263      1.46      matt cngetsn(char *cp, int size)
    264      1.36    itojun {
    265      1.36    itojun 	char *lp;
    266      1.36    itojun 	int c, len;
    267      1.36    itojun 
    268      1.36    itojun 	cnpollc(1);
    269      1.36    itojun 
    270      1.36    itojun 	lp = cp;
    271      1.36    itojun 	len = 0;
    272      1.36    itojun 	for (;;) {
    273      1.36    itojun 		c = cngetc();
    274      1.36    itojun 		switch (c) {
    275      1.36    itojun 		case '\n':
    276      1.36    itojun 		case '\r':
    277      1.36    itojun 			printf("\n");
    278      1.36    itojun 			*lp++ = '\0';
    279      1.36    itojun 			cnpollc(0);
    280      1.36    itojun 			return (len);
    281      1.36    itojun 		case '\b':
    282      1.36    itojun 		case '\177':
    283      1.36    itojun 		case '#':
    284      1.36    itojun 			if (len) {
    285      1.36    itojun 				--len;
    286      1.36    itojun 				--lp;
    287      1.36    itojun 				printf("\b \b");
    288      1.36    itojun 			}
    289      1.36    itojun 			continue;
    290      1.36    itojun 		case '@':
    291      1.40  jdolecek 		case 'u'&037:	/* CTRL-u */
    292      1.36    itojun 			len = 0;
    293      1.36    itojun 			lp = cp;
    294      1.36    itojun 			printf("\n");
    295      1.36    itojun 			continue;
    296      1.36    itojun 		default:
    297      1.36    itojun 			if (len + 1 >= size || c < ' ') {
    298      1.40  jdolecek 				printf("\007");
    299      1.36    itojun 				continue;
    300      1.36    itojun 			}
    301      1.36    itojun 			printf("%c", c);
    302      1.36    itojun 			++len;
    303      1.36    itojun 			*lp++ = c;
    304      1.36    itojun 		}
    305      1.36    itojun 	}
    306       1.1       cgd }
    307       1.1       cgd 
    308      1.29  christos void
    309      1.46      matt cnputc(int c)
    310       1.1       cgd {
    311      1.21   mycroft 
    312       1.1       cgd 	if (cn_tab == NULL)
    313      1.54     perry 		return;
    314      1.29  christos 
    315       1.1       cgd 	if (c) {
    316       1.1       cgd 		(*cn_tab->cn_putc)(cn_tab->cn_dev, c);
    317  1.69.4.1     rmind 		if (c == '\n') {
    318  1.69.4.1     rmind 			docritpollhooks();
    319       1.1       cgd 			(*cn_tab->cn_putc)(cn_tab->cn_dev, '\r');
    320  1.69.4.1     rmind 		}
    321       1.1       cgd 	}
    322      1.19   mycroft }
    323      1.19   mycroft 
    324      1.19   mycroft void
    325      1.46      matt cnpollc(int on)
    326      1.19   mycroft {
    327      1.19   mycroft 	static int refcount = 0;
    328      1.19   mycroft 
    329      1.19   mycroft 	if (cn_tab == NULL)
    330      1.19   mycroft 		return;
    331      1.19   mycroft 	if (!on)
    332      1.19   mycroft 		--refcount;
    333      1.19   mycroft 	if (refcount == 0)
    334      1.19   mycroft 		(*cn_tab->cn_pollc)(cn_tab->cn_dev, on);
    335      1.19   mycroft 	if (on)
    336      1.19   mycroft 		++refcount;
    337      1.21   mycroft }
    338      1.21   mycroft 
    339      1.21   mycroft void
    340      1.61  christos nullcnpollc(dev_t dev, int on)
    341      1.21   mycroft {
    342      1.21   mycroft 
    343      1.34   thorpej }
    344      1.34   thorpej 
    345      1.34   thorpej void
    346      1.46      matt cnbell(u_int pitch, u_int period, u_int volume)
    347      1.34   thorpej {
    348      1.34   thorpej 
    349      1.34   thorpej 	if (cn_tab == NULL || cn_tab->cn_bell == NULL)
    350      1.34   thorpej 		return;
    351      1.34   thorpej 	(*cn_tab->cn_bell)(cn_tab->cn_dev, pitch, period, volume);
    352      1.46      matt }
    353      1.46      matt 
    354      1.46      matt void
    355      1.46      matt cnflush(void)
    356      1.46      matt {
    357      1.46      matt 	if (cn_tab == NULL || cn_tab->cn_flush == NULL)
    358      1.46      matt 		return;
    359      1.46      matt 	(*cn_tab->cn_flush)(cn_tab->cn_dev);
    360      1.46      matt }
    361      1.54     perry 
    362      1.46      matt void
    363      1.46      matt cnhalt(void)
    364      1.46      matt {
    365      1.46      matt 	if (cn_tab == NULL || cn_tab->cn_halt == NULL)
    366      1.46      matt 		return;
    367      1.46      matt 	(*cn_tab->cn_halt)(cn_tab->cn_dev);
    368      1.50       dsl }
    369      1.50       dsl 
    370      1.62        ad /*
    371      1.62        ad  * Redirect output, if that's appropriate.  If there's no real console,
    372      1.62        ad  * return ENXIO.
    373      1.62        ad  *
    374      1.62        ad  * Call with tty_mutex held.
    375      1.62        ad  */
    376      1.64        ad static bool
    377      1.50       dsl cn_redirect(dev_t *devp, int is_read, int *error)
    378      1.50       dsl {
    379      1.50       dsl 	dev_t dev = *devp;
    380      1.50       dsl 
    381      1.50       dsl 	*error = ENXIO;
    382      1.50       dsl 	if (constty != NULL && minor(dev) == 0 &&
    383      1.55    martin 	    (cn_tab == NULL || (cn_tab->cn_pri != CN_REMOTE))) {
    384      1.50       dsl 		if (is_read) {
    385      1.50       dsl 			*error = 0;
    386      1.64        ad 			return false;
    387      1.50       dsl 		}
    388      1.50       dsl 		dev = constty->t_dev;
    389      1.50       dsl 	} else if (cn_tab == NULL)
    390      1.64        ad 		return false;
    391      1.50       dsl 	else
    392      1.50       dsl 		dev = cn_tab->cn_dev;
    393      1.50       dsl 	*devp = dev;
    394      1.64        ad 	return true;
    395       1.2       cgd }
    396