Home | History | Annotate | Line # | Download | only in kern
tty_conf.c revision 1.34.2.1
      1  1.34.2.1   thorpej /*	$NetBSD: tty_conf.c,v 1.34.2.1 2001/09/07 04:45:38 thorpej Exp $	*/
      2      1.14       cgd 
      3      1.10       cgd /*-
      4      1.10       cgd  * Copyright (c) 1982, 1986, 1991, 1993
      5      1.10       cgd  *	The Regents of the University of California.  All rights reserved.
      6      1.10       cgd  * (c) UNIX System Laboratories, Inc.
      7      1.10       cgd  * All or some portions of this file are derived from material licensed
      8      1.10       cgd  * to the University of California by American Telephone and Telegraph
      9      1.10       cgd  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     10      1.10       cgd  * the permission of UNIX System Laboratories, Inc.
     11      1.10       cgd  *
     12      1.10       cgd  * Redistribution and use in source and binary forms, with or without
     13      1.10       cgd  * modification, are permitted provided that the following conditions
     14      1.10       cgd  * are met:
     15      1.10       cgd  * 1. Redistributions of source code must retain the above copyright
     16      1.10       cgd  *    notice, this list of conditions and the following disclaimer.
     17      1.10       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     18      1.10       cgd  *    notice, this list of conditions and the following disclaimer in the
     19      1.10       cgd  *    documentation and/or other materials provided with the distribution.
     20      1.10       cgd  * 3. All advertising materials mentioning features or use of this software
     21      1.10       cgd  *    must display the following acknowledgement:
     22      1.10       cgd  *	This product includes software developed by the University of
     23      1.10       cgd  *	California, Berkeley and its contributors.
     24      1.10       cgd  * 4. Neither the name of the University nor the names of its contributors
     25      1.10       cgd  *    may be used to endorse or promote products derived from this software
     26      1.10       cgd  *    without specific prior written permission.
     27      1.10       cgd  *
     28      1.10       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29      1.10       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30      1.10       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31      1.10       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32      1.10       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33      1.10       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34      1.10       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35      1.10       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36      1.10       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37      1.10       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38      1.10       cgd  * SUCH DAMAGE.
     39      1.10       cgd  *
     40      1.20      fvdl  *	@(#)tty_conf.c	8.5 (Berkeley) 1/9/95
     41      1.10       cgd  */
     42      1.22   thorpej 
     43      1.22   thorpej #include "opt_compat_freebsd.h"
     44      1.24  christos #include "opt_compat_43.h"
     45      1.10       cgd 
     46      1.10       cgd #include <sys/param.h>
     47      1.10       cgd #include <sys/systm.h>
     48      1.10       cgd #include <sys/buf.h>
     49      1.10       cgd #include <sys/ioctl.h>
     50      1.10       cgd #include <sys/proc.h>
     51      1.10       cgd #include <sys/tty.h>
     52      1.28       eeh #include <sys/ioctl.h>
     53      1.28       eeh #include <sys/ttycom.h>
     54      1.10       cgd #include <sys/conf.h>
     55      1.28       eeh #include <sys/malloc.h>
     56  1.34.2.1   thorpej #include <sys/vnode.h>
     57      1.10       cgd 
     58      1.10       cgd #include "tb.h"
     59      1.10       cgd #if NTB > 0
     60  1.34.2.1   thorpej int	tbopen __P((struct vnode *devvp, struct tty *tp));
     61      1.10       cgd int	tbclose __P((struct tty *tp, int flags));
     62      1.10       cgd int	tbread __P((struct tty *tp, struct uio *uio, int flags));
     63      1.15       cgd int	tbtioctl __P((struct tty *tp, u_long cmd, caddr_t data,
     64      1.10       cgd 			int flag, struct proc *p));
     65      1.10       cgd int	tbinput __P((int c, struct tty *tp));
     66      1.10       cgd #endif
     67      1.10       cgd 
     68      1.10       cgd #include "sl.h"
     69      1.10       cgd #if NSL > 0
     70  1.34.2.1   thorpej int	slopen __P((struct vnode *devvp, struct tty *tp));
     71      1.10       cgd int	slclose __P((struct tty *tp, int flags));
     72      1.15       cgd int	sltioctl __P((struct tty *tp, u_long cmd, caddr_t data,
     73      1.10       cgd 			int flag, struct proc *p));
     74      1.10       cgd int	slinput __P((int c, struct tty *tp));
     75      1.10       cgd int	slstart __P((struct tty *tp));
     76      1.10       cgd #endif
     77      1.10       cgd 
     78      1.10       cgd #include "ppp.h"
     79      1.10       cgd #if NPPP > 0
     80  1.34.2.1   thorpej int	pppopen __P((struct vnode *devvp, struct tty *tp));
     81      1.10       cgd int	pppclose __P((struct tty *tp, int flags));
     82      1.15       cgd int	ppptioctl __P((struct tty *tp, u_long cmd, caddr_t data,
     83      1.10       cgd 			int flag, struct proc *p));
     84      1.13    paulus int	pppinput __P((int c, struct tty *tp));
     85      1.13    paulus int	pppstart __P((struct tty *tp));
     86      1.10       cgd int	pppread __P((struct tty *tp, struct uio *uio, int flag));
     87      1.10       cgd int	pppwrite __P((struct tty *tp, struct uio *uio, int flag));
     88      1.10       cgd #endif
     89      1.10       cgd 
     90      1.18  jonathan #include "strip.h"
     91      1.18  jonathan #if NSTRIP > 0
     92  1.34.2.1   thorpej int	stripopen __P((struct vnode *devvp, struct tty *tp));
     93      1.18  jonathan int	stripclose __P((struct tty *tp, int flags));
     94      1.18  jonathan int	striptioctl __P((struct tty *tp, u_long cmd, caddr_t data,
     95      1.18  jonathan 			int flag, struct proc *p));
     96      1.18  jonathan int	stripinput __P((int c, struct tty *tp));
     97      1.18  jonathan int	stripstart __P((struct tty *tp));
     98      1.18  jonathan #endif
     99      1.18  jonathan 
    100      1.10       cgd 
    101      1.28       eeh struct  linesw termios_disc =
    102      1.28       eeh 	{ "termios", 0, ttylopen, ttylclose, ttread, ttwrite, nullioctl,
    103      1.32       scw 	  ttyinput, ttstart, ttymodem, ttpoll };	/* 0- termios */
    104      1.28       eeh struct  linesw defunct_disc =
    105      1.28       eeh 	{ "defunct", 1, ttynodisc, ttyerrclose, ttyerrio, ttyerrio, nullioctl,
    106      1.32       scw 	  ttyerrinput, ttyerrstart, nullmodem, ttyerrpoll }; /* 1- defunct */
    107      1.16   mycroft #if defined(COMPAT_43) || defined(COMPAT_FREEBSD)
    108      1.28       eeh struct  linesw ntty_disc =
    109      1.28       eeh 	{ "ntty", 2, ttylopen, ttylclose, ttread, ttwrite, nullioctl,
    110      1.32       scw 	  ttyinput, ttstart, ttymodem, ttpoll };	/* 2- old NTTYDISC */
    111      1.12   mycroft #endif
    112      1.10       cgd #if NTB > 0
    113      1.28       eeh struct  linesw table_disc =
    114      1.31       eeh 	{ "tablet", 3, tbopen, tbclose, tbread, ttyerrio, tbtioctl,
    115      1.32       scw 	  tbinput, ttstart, nullmodem, ttyerrpoll };	/* 3- TABLDISC */
    116      1.10       cgd #endif
    117      1.10       cgd #if NSL > 0
    118      1.28       eeh struct  linesw slip_disc =
    119      1.28       eeh 	{ "slip", 4, slopen, slclose, ttyerrio, ttyerrio, sltioctl,
    120      1.32       scw 	  slinput, slstart, nullmodem, ttyerrpoll };	/* 4- SLIPDISC */
    121      1.10       cgd #endif
    122      1.10       cgd #if NPPP > 0
    123      1.28       eeh struct  linesw ppp_disc =
    124      1.28       eeh 	{ "ppp", 5, pppopen, pppclose, pppread, pppwrite, ppptioctl,
    125      1.32       scw 	  pppinput, pppstart, ttymodem, ttpoll };	/* 5- PPPDISC */
    126      1.18  jonathan #endif
    127      1.18  jonathan #if NSTRIP > 0
    128      1.28       eeh struct  linesw strip_disc =
    129      1.28       eeh 	{ "strip", 6, stripopen, stripclose, ttyerrio, ttyerrio, striptioctl,
    130      1.32       scw 	  stripinput, stripstart, nullmodem, ttyerrpoll }; /* 6- STRIPDISC */
    131      1.25       eeh #endif
    132      1.25       eeh 
    133      1.25       eeh /*
    134      1.28       eeh  * Registered line disciplines.  Don't use this
    135      1.28       eeh  * it will go away.
    136      1.25       eeh  */
    137      1.28       eeh #define LSWITCHBRK	20
    138      1.28       eeh struct	linesw **linesw = NULL;
    139      1.28       eeh int	nlinesw = 0;
    140      1.28       eeh int	slinesw = 0;
    141      1.10       cgd 
    142      1.10       cgd /*
    143      1.10       cgd  * Do nothing specific version of line
    144      1.10       cgd  * discipline specific ioctl command.
    145      1.10       cgd  */
    146      1.10       cgd /*ARGSUSED*/
    147      1.17  christos int
    148      1.10       cgd nullioctl(tp, cmd, data, flags, p)
    149      1.10       cgd 	struct tty *tp;
    150      1.15       cgd 	u_long cmd;
    151      1.10       cgd 	char *data;
    152      1.10       cgd 	int flags;
    153      1.10       cgd 	struct proc *p;
    154      1.10       cgd {
    155      1.10       cgd 
    156      1.10       cgd #ifdef lint
    157      1.10       cgd 	tp = tp; data = data; flags = flags; p = p;
    158      1.10       cgd #endif
    159      1.10       cgd 	return (-1);
    160      1.28       eeh }
    161      1.28       eeh 
    162      1.28       eeh /*
    163      1.28       eeh  * Register a line discipline, optionally providing a
    164      1.28       eeh  * specific discipline number for compatibility, -1 allocates
    165      1.28       eeh  * a new one.  Returns a discipline number, or -1 on
    166      1.28       eeh  * failure.
    167      1.28       eeh  */
    168      1.28       eeh int
    169      1.28       eeh ttyldisc_add(disc, no)
    170      1.28       eeh 	struct linesw *disc;
    171      1.28       eeh 	int no;
    172      1.28       eeh {
    173      1.28       eeh 
    174      1.28       eeh 	/* You are not allowed to exceed TTLINEDNAMELEN */
    175      1.28       eeh 	if (strlen(disc->l_name) > TTLINEDNAMELEN)
    176      1.28       eeh 		return (-1);
    177      1.28       eeh 
    178      1.28       eeh 	/*
    179      1.28       eeh 	 * You are not allowed to specify a line switch
    180      1.28       eeh 	 * compatibility number greater than 10.
    181      1.28       eeh 	 */
    182      1.28       eeh 	if (no > 10)
    183      1.28       eeh 		return (-1);
    184      1.28       eeh 
    185      1.28       eeh 	if (linesw == NULL)
    186      1.28       eeh 		panic("adding uninitialized linesw");
    187      1.32       scw 
    188      1.32       scw #ifdef DEBUG
    189      1.32       scw 	/*
    190      1.32       scw 	 * XXX: For the benefit of LKMs
    191      1.32       scw 	 */
    192      1.32       scw 	if (disc->l_poll == NULL)
    193      1.32       scw 		panic("line discipline must now provide l_poll() entry point");
    194      1.32       scw #endif
    195      1.28       eeh 
    196      1.28       eeh 	if (no == -1) {
    197      1.28       eeh 		/* Hunt for any slot */
    198      1.28       eeh 
    199      1.29     enami 		for (no = slinesw; no-- > 0;)
    200      1.29     enami 			if (linesw[no] == NULL)
    201      1.29     enami 				break;
    202      1.30     enami 		/* if no == -1 we should realloc linesw, but for now... */
    203      1.30     enami 		if (no == -1)
    204      1.30     enami 			return (-1);
    205      1.28       eeh 	}
    206      1.28       eeh 
    207      1.28       eeh 	/* Need a specific slot */
    208      1.28       eeh 	if (linesw[no] != NULL)
    209      1.28       eeh 		return (-1);
    210      1.28       eeh 
    211      1.28       eeh 	linesw[no] = disc;
    212      1.28       eeh 	disc->l_no = no;
    213      1.28       eeh 
    214      1.28       eeh 	/* Define size of table */
    215      1.28       eeh 	if (no >= nlinesw)
    216      1.28       eeh 		nlinesw = no + 1;
    217      1.28       eeh 
    218      1.28       eeh 	return (no);
    219      1.28       eeh }
    220      1.28       eeh 
    221      1.28       eeh /*
    222      1.28       eeh  * Remove a line discipline by its name.  Returns the
    223      1.28       eeh  * discipline on success or NULL on failure.
    224      1.28       eeh  */
    225      1.28       eeh struct linesw *
    226      1.28       eeh ttyldisc_remove(name)
    227      1.28       eeh 	char *name;
    228      1.28       eeh {
    229      1.28       eeh 	struct linesw *disc;
    230      1.28       eeh 	int i;
    231      1.28       eeh 
    232      1.28       eeh 	if (linesw == NULL)
    233      1.28       eeh 		panic("removing uninitialized linesw");
    234      1.28       eeh 
    235      1.29     enami 	for (i = 0; i < nlinesw; i++) {
    236      1.28       eeh 		if (linesw[i] && (strcmp(name, linesw[i]->l_name) == 0)) {
    237      1.28       eeh 			disc = linesw[i];
    238      1.28       eeh 			linesw[i] = NULL;
    239      1.28       eeh 
    240      1.28       eeh 			if (nlinesw == i + 1) {
    241      1.28       eeh 				/* Need to fix up array sizing */
    242      1.30     enami 				while (i-- > 0 && linesw[i] == NULL)
    243      1.30     enami 					continue;
    244      1.30     enami 				nlinesw = i + 1;
    245      1.28       eeh 			}
    246      1.28       eeh 			return (disc);
    247      1.28       eeh 		}
    248      1.28       eeh 	}
    249      1.28       eeh 	return (NULL);
    250      1.28       eeh }
    251      1.28       eeh 
    252      1.28       eeh /*
    253      1.28       eeh  * Look up a line discipline by its name.
    254      1.28       eeh  */
    255      1.28       eeh struct linesw *
    256      1.28       eeh ttyldisc_lookup(name)
    257      1.28       eeh 	char *name;
    258      1.28       eeh {
    259      1.28       eeh 	int i;
    260      1.28       eeh 
    261      1.29     enami 	for (i = 0; i < nlinesw; i++)
    262      1.28       eeh 		if (linesw[i] && (strcmp(name, linesw[i]->l_name) == 0))
    263      1.28       eeh 			return (linesw[i]);
    264      1.28       eeh 	return (NULL);
    265      1.28       eeh }
    266      1.28       eeh 
    267      1.28       eeh #define TTYLDISCINIT(s, v) \
    268      1.28       eeh 	do { \
    269      1.28       eeh 		if (ttyldisc_add(&(s), (v)) != (v)) \
    270      1.33  kristerw 			panic("ttyldisc_init: " __STRING(s)); \
    271      1.29     enami 	} while (0)
    272      1.28       eeh 
    273      1.28       eeh /*
    274      1.28       eeh  * Register the basic line disciplines.
    275      1.28       eeh  */
    276      1.28       eeh void
    277      1.29     enami ttyldisc_init()
    278      1.29     enami {
    279      1.29     enami 
    280      1.28       eeh 	/* Only initialize once */
    281      1.28       eeh 	if (linesw)
    282      1.28       eeh 		return;
    283      1.28       eeh 
    284      1.28       eeh 	slinesw = LSWITCHBRK;
    285      1.28       eeh 	linesw = malloc(slinesw * sizeof(struct linesw *),
    286      1.29     enami 	    M_TTYS, M_WAITOK);
    287      1.34   thorpej 	memset(linesw, 0, slinesw * sizeof(struct linesw *));
    288      1.28       eeh 
    289      1.28       eeh 	TTYLDISCINIT(termios_disc, 0);
    290      1.28       eeh 	/* Do we really need this one? */
    291      1.28       eeh 	TTYLDISCINIT(defunct_disc, 1);
    292      1.28       eeh 
    293      1.28       eeh 	/*
    294      1.28       eeh 	 * The following should really be moved to
    295      1.28       eeh 	 * initialization code for each module.
    296      1.28       eeh 	 */
    297      1.28       eeh 
    298      1.28       eeh #if defined(COMPAT_43) || defined(COMPAT_FREEBSD)
    299      1.28       eeh 	TTYLDISCINIT(ntty_disc, 2);
    300      1.28       eeh #endif
    301      1.28       eeh #if NTB > 0
    302      1.28       eeh 	TTYLDISCINIT(table_disc, 3);
    303      1.28       eeh #endif
    304      1.28       eeh #if NSL > 0
    305      1.28       eeh 	TTYLDISCINIT(slip_disc, 4);
    306      1.28       eeh #endif
    307      1.28       eeh #if NPPP > 0
    308      1.28       eeh 	TTYLDISCINIT(ppp_disc, 5);
    309      1.28       eeh #endif
    310      1.28       eeh #if NSTRIP > 0
    311      1.28       eeh 	TTYLDISCINIT(strip_disc, 6);
    312      1.28       eeh #endif
    313      1.10       cgd }
    314