2003-08-07 20:26:28 +04:00
|
|
|
/* $NetBSD: tty_conf.c,v 1.43 2003/08/07 16:31:56 agc Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1994-05-05 09:35:42 +04:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1982, 1986, 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
* (c) UNIX System Laboratories, Inc.
|
|
|
|
* All or some portions of this file are derived from material licensed
|
|
|
|
* to the University of California by American Telephone and Telegraph
|
|
|
|
* Co. or Unix System Laboratories, Inc. and are reproduced herein with
|
|
|
|
* the permission of UNIX System Laboratories, Inc.
|
|
|
|
*
|
|
|
|
* 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
|
1994-05-05 09:35:42 +04:00
|
|
|
* 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.
|
|
|
|
*
|
1998-03-01 05:20:01 +03:00
|
|
|
* @(#)tty_conf.c 8.5 (Berkeley) 1/9/95
|
1994-05-05 09:35:42 +04:00
|
|
|
*/
|
|
|
|
|
2001-11-12 18:25:01 +03:00
|
|
|
#include <sys/cdefs.h>
|
2003-08-07 20:26:28 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: tty_conf.c,v 1.43 2003/08/07 16:31:56 agc Exp $");
|
2001-11-12 18:25:01 +03:00
|
|
|
|
1998-06-26 02:49:18 +04:00
|
|
|
#include "opt_compat_freebsd.h"
|
1998-12-10 18:07:01 +03:00
|
|
|
#include "opt_compat_43.h"
|
1998-06-26 02:49:18 +04:00
|
|
|
|
1994-05-05 09:35:42 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/tty.h>
|
2000-11-02 02:51:38 +03:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/ttycom.h>
|
1994-05-05 09:35:42 +04:00
|
|
|
#include <sys/conf.h>
|
2000-11-02 02:51:38 +03:00
|
|
|
#include <sys/malloc.h>
|
1994-05-05 09:35:42 +04:00
|
|
|
|
|
|
|
#include "tb.h"
|
|
|
|
#if NTB > 0
|
|
|
|
int tbopen __P((dev_t dev, struct tty *tp));
|
|
|
|
int tbclose __P((struct tty *tp, int flags));
|
|
|
|
int tbread __P((struct tty *tp, struct uio *uio, int flags));
|
1994-10-31 00:43:03 +03:00
|
|
|
int tbtioctl __P((struct tty *tp, u_long cmd, caddr_t data,
|
2003-06-30 02:28:00 +04:00
|
|
|
int flag, struct proc *p));
|
1994-05-05 09:35:42 +04:00
|
|
|
int tbinput __P((int c, struct tty *tp));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "sl.h"
|
|
|
|
#if NSL > 0
|
|
|
|
int slopen __P((dev_t dev, struct tty *tp));
|
|
|
|
int slclose __P((struct tty *tp, int flags));
|
1994-10-31 00:43:03 +03:00
|
|
|
int sltioctl __P((struct tty *tp, u_long cmd, caddr_t data,
|
2003-06-30 02:28:00 +04:00
|
|
|
int flag, struct proc *p));
|
1994-05-05 09:35:42 +04:00
|
|
|
int slinput __P((int c, struct tty *tp));
|
|
|
|
int slstart __P((struct tty *tp));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "ppp.h"
|
|
|
|
#if NPPP > 0
|
|
|
|
int pppopen __P((dev_t dev, struct tty *tp));
|
|
|
|
int pppclose __P((struct tty *tp, int flags));
|
1994-10-31 00:43:03 +03:00
|
|
|
int ppptioctl __P((struct tty *tp, u_long cmd, caddr_t data,
|
2003-06-30 02:28:00 +04:00
|
|
|
int flag, struct proc *p));
|
1994-06-20 04:32:31 +04:00
|
|
|
int pppinput __P((int c, struct tty *tp));
|
|
|
|
int pppstart __P((struct tty *tp));
|
1994-05-05 09:35:42 +04:00
|
|
|
int pppread __P((struct tty *tp, struct uio *uio, int flag));
|
|
|
|
int pppwrite __P((struct tty *tp, struct uio *uio, int flag));
|
|
|
|
#endif
|
|
|
|
|
1996-05-19 21:17:50 +04:00
|
|
|
#include "strip.h"
|
|
|
|
#if NSTRIP > 0
|
|
|
|
int stripopen __P((dev_t dev, struct tty *tp));
|
|
|
|
int stripclose __P((struct tty *tp, int flags));
|
|
|
|
int striptioctl __P((struct tty *tp, u_long cmd, caddr_t data,
|
2003-06-30 02:28:00 +04:00
|
|
|
int flag, struct proc *p));
|
1996-05-19 21:17:50 +04:00
|
|
|
int stripinput __P((int c, struct tty *tp));
|
|
|
|
int stripstart __P((struct tty *tp));
|
|
|
|
#endif
|
|
|
|
|
2001-12-04 02:30:37 +03:00
|
|
|
#include "irframetty.h"
|
|
|
|
#if NIRFRAMETTY > 0
|
|
|
|
int irframetopen __P((dev_t dev, struct tty *tp));
|
|
|
|
int irframetclose __P((struct tty *tp, int flags));
|
|
|
|
int irframetioctl __P((struct tty *tp, u_long cmd, caddr_t data,
|
2003-06-30 02:28:00 +04:00
|
|
|
int flag, struct proc *p));
|
2001-12-04 02:30:37 +03:00
|
|
|
int irframetinput __P((int c, struct tty *tp));
|
|
|
|
int irframetstart __P((struct tty *tp));
|
|
|
|
int irframetread __P((struct tty *tp, struct uio *uio, int flag));
|
|
|
|
int irframetwrite __P((struct tty *tp, struct uio *uio, int flag));
|
2003-06-30 02:28:00 +04:00
|
|
|
int irframetpoll __P((struct tty *tp, int events, struct proc *p));
|
2001-12-04 02:30:37 +03:00
|
|
|
#endif
|
|
|
|
|
1994-05-05 09:35:42 +04:00
|
|
|
|
2000-11-02 02:51:38 +03:00
|
|
|
struct linesw termios_disc =
|
2002-09-06 17:18:43 +04:00
|
|
|
{ "termios", TTYDISC, ttylopen, ttylclose, ttread, ttwrite,
|
|
|
|
ttynullioctl, ttyinput, ttstart, ttymodem, ttpoll }; /* 0- termios */
|
2000-11-02 02:51:38 +03:00
|
|
|
struct linesw defunct_disc =
|
2002-09-06 17:18:43 +04:00
|
|
|
{ "defunct", 1, ttynodisc, ttyerrclose, ttyerrio, ttyerrio,
|
|
|
|
ttynullioctl, ttyerrinput, ttyerrstart, nullmodem, ttyerrpoll }; /* 1- defunct */
|
1995-10-10 04:26:36 +03:00
|
|
|
#if defined(COMPAT_43) || defined(COMPAT_FREEBSD)
|
2000-11-02 02:51:38 +03:00
|
|
|
struct linesw ntty_disc =
|
2002-09-06 17:18:43 +04:00
|
|
|
{ "ntty", 2, ttylopen, ttylclose, ttread, ttwrite, ttynullioctl,
|
2001-05-02 14:32:08 +04:00
|
|
|
ttyinput, ttstart, ttymodem, ttpoll }; /* 2- old NTTYDISC */
|
1994-06-16 21:54:52 +04:00
|
|
|
#endif
|
1994-05-05 09:35:42 +04:00
|
|
|
#if NTB > 0
|
2000-11-02 02:51:38 +03:00
|
|
|
struct linesw table_disc =
|
2001-12-04 02:30:37 +03:00
|
|
|
{ "tablet", TABLDISC, tbopen, tbclose, tbread, ttyerrio, tbtioctl,
|
2001-05-02 14:32:08 +04:00
|
|
|
tbinput, ttstart, nullmodem, ttyerrpoll }; /* 3- TABLDISC */
|
1994-05-05 09:35:42 +04:00
|
|
|
#endif
|
|
|
|
#if NSL > 0
|
2000-11-02 02:51:38 +03:00
|
|
|
struct linesw slip_disc =
|
2001-12-04 02:30:37 +03:00
|
|
|
{ "slip", SLIPDISC, slopen, slclose, ttyerrio, ttyerrio, sltioctl,
|
2001-05-02 14:32:08 +04:00
|
|
|
slinput, slstart, nullmodem, ttyerrpoll }; /* 4- SLIPDISC */
|
1994-05-05 09:35:42 +04:00
|
|
|
#endif
|
|
|
|
#if NPPP > 0
|
2000-11-02 02:51:38 +03:00
|
|
|
struct linesw ppp_disc =
|
2001-12-04 02:30:37 +03:00
|
|
|
{ "ppp", PPPDISC, pppopen, pppclose, pppread, pppwrite, ppptioctl,
|
2001-05-02 14:32:08 +04:00
|
|
|
pppinput, pppstart, ttymodem, ttpoll }; /* 5- PPPDISC */
|
1994-05-05 09:35:42 +04:00
|
|
|
#endif
|
1996-05-19 21:17:50 +04:00
|
|
|
#if NSTRIP > 0
|
2000-11-02 02:51:38 +03:00
|
|
|
struct linesw strip_disc =
|
2001-12-04 02:30:37 +03:00
|
|
|
{ "strip", STRIPDISC, stripopen, stripclose, ttyerrio, ttyerrio,
|
|
|
|
striptioctl, stripinput, stripstart, nullmodem, ttyerrpoll };
|
|
|
|
/* 6- STRIPDISC */
|
|
|
|
#endif
|
|
|
|
#if NIRFRAMETTY > 0
|
|
|
|
struct linesw irframet_disc =
|
|
|
|
{ "irframe", IRFRAMEDISC, irframetopen, irframetclose, ttyerrio,
|
|
|
|
ttyerrio, irframetioctl, irframetinput, irframetstart,
|
|
|
|
ttymodem, ttyerrpoll }; /* 10- IRFRAMEDISC */
|
1996-05-19 21:17:50 +04:00
|
|
|
#endif
|
2000-09-22 03:31:14 +04:00
|
|
|
|
|
|
|
/*
|
2000-11-02 02:51:38 +03:00
|
|
|
* Registered line disciplines. Don't use this
|
|
|
|
* it will go away.
|
2000-09-22 03:31:14 +04:00
|
|
|
*/
|
2000-11-02 02:51:38 +03:00
|
|
|
#define LSWITCHBRK 20
|
|
|
|
struct linesw **linesw = NULL;
|
|
|
|
int nlinesw = 0;
|
|
|
|
int slinesw = 0;
|
1994-05-05 09:35:42 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Do nothing specific version of line
|
|
|
|
* discipline specific ioctl command.
|
|
|
|
*/
|
|
|
|
/*ARGSUSED*/
|
1996-02-04 05:15:01 +03:00
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
ttynullioctl(tp, cmd, data, flags, p)
|
1994-05-05 09:35:42 +04:00
|
|
|
struct tty *tp;
|
1994-10-31 00:43:03 +03:00
|
|
|
u_long cmd;
|
1994-05-05 09:35:42 +04:00
|
|
|
char *data;
|
|
|
|
int flags;
|
2003-06-30 02:28:00 +04:00
|
|
|
struct proc *p;
|
1994-05-05 09:35:42 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef lint
|
2003-06-30 02:28:00 +04:00
|
|
|
tp = tp; data = data; flags = flags; p = p;
|
1994-05-05 09:35:42 +04:00
|
|
|
#endif
|
2002-03-17 22:40:26 +03:00
|
|
|
return (EPASSTHROUGH);
|
1994-05-05 09:35:42 +04:00
|
|
|
}
|
2000-11-02 02:51:38 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Register a line discipline, optionally providing a
|
|
|
|
* specific discipline number for compatibility, -1 allocates
|
|
|
|
* a new one. Returns a discipline number, or -1 on
|
|
|
|
* failure.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
ttyldisc_add(disc, no)
|
|
|
|
struct linesw *disc;
|
|
|
|
int no;
|
|
|
|
{
|
|
|
|
|
|
|
|
/* You are not allowed to exceed TTLINEDNAMELEN */
|
2002-02-08 21:36:53 +03:00
|
|
|
if (strlen(disc->l_name) >= TTLINEDNAMELEN)
|
2000-11-02 02:51:38 +03:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* You are not allowed to specify a line switch
|
|
|
|
* compatibility number greater than 10.
|
|
|
|
*/
|
|
|
|
if (no > 10)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (linesw == NULL)
|
|
|
|
panic("adding uninitialized linesw");
|
|
|
|
|
2001-05-02 14:32:08 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
/*
|
|
|
|
* XXX: For the benefit of LKMs
|
|
|
|
*/
|
|
|
|
if (disc->l_poll == NULL)
|
|
|
|
panic("line discipline must now provide l_poll() entry point");
|
|
|
|
#endif
|
|
|
|
|
2000-11-02 02:51:38 +03:00
|
|
|
if (no == -1) {
|
|
|
|
/* Hunt for any slot */
|
|
|
|
|
2000-11-15 04:41:22 +03:00
|
|
|
for (no = slinesw; no-- > 0;)
|
|
|
|
if (linesw[no] == NULL)
|
|
|
|
break;
|
2000-11-15 04:42:53 +03:00
|
|
|
/* if no == -1 we should realloc linesw, but for now... */
|
|
|
|
if (no == -1)
|
|
|
|
return (-1);
|
2000-11-02 02:51:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Need a specific slot */
|
|
|
|
if (linesw[no] != NULL)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
linesw[no] = disc;
|
|
|
|
disc->l_no = no;
|
|
|
|
|
|
|
|
/* Define size of table */
|
|
|
|
if (no >= nlinesw)
|
|
|
|
nlinesw = no + 1;
|
|
|
|
|
|
|
|
return (no);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove a line discipline by its name. Returns the
|
|
|
|
* discipline on success or NULL on failure.
|
|
|
|
*/
|
|
|
|
struct linesw *
|
|
|
|
ttyldisc_remove(name)
|
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
struct linesw *disc;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (linesw == NULL)
|
|
|
|
panic("removing uninitialized linesw");
|
|
|
|
|
2000-11-15 04:41:22 +03:00
|
|
|
for (i = 0; i < nlinesw; i++) {
|
2000-11-02 02:51:38 +03:00
|
|
|
if (linesw[i] && (strcmp(name, linesw[i]->l_name) == 0)) {
|
|
|
|
disc = linesw[i];
|
|
|
|
linesw[i] = NULL;
|
|
|
|
|
|
|
|
if (nlinesw == i + 1) {
|
|
|
|
/* Need to fix up array sizing */
|
2000-11-15 04:42:53 +03:00
|
|
|
while (i-- > 0 && linesw[i] == NULL)
|
|
|
|
continue;
|
|
|
|
nlinesw = i + 1;
|
2000-11-02 02:51:38 +03:00
|
|
|
}
|
|
|
|
return (disc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Look up a line discipline by its name.
|
|
|
|
*/
|
|
|
|
struct linesw *
|
|
|
|
ttyldisc_lookup(name)
|
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2000-11-15 04:41:22 +03:00
|
|
|
for (i = 0; i < nlinesw; i++)
|
2000-11-02 02:51:38 +03:00
|
|
|
if (linesw[i] && (strcmp(name, linesw[i]->l_name) == 0))
|
|
|
|
return (linesw[i]);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define TTYLDISCINIT(s, v) \
|
|
|
|
do { \
|
|
|
|
if (ttyldisc_add(&(s), (v)) != (v)) \
|
2001-05-24 14:33:08 +04:00
|
|
|
panic("ttyldisc_init: " __STRING(s)); \
|
2002-11-02 10:20:42 +03:00
|
|
|
} while (/*CONSTCOND*/ 0)
|
2000-11-02 02:51:38 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Register the basic line disciplines.
|
|
|
|
*/
|
|
|
|
void
|
2000-11-15 04:41:22 +03:00
|
|
|
ttyldisc_init()
|
|
|
|
{
|
|
|
|
|
2000-11-02 02:51:38 +03:00
|
|
|
/* Only initialize once */
|
|
|
|
if (linesw)
|
|
|
|
return;
|
|
|
|
|
|
|
|
slinesw = LSWITCHBRK;
|
|
|
|
linesw = malloc(slinesw * sizeof(struct linesw *),
|
2000-11-15 04:41:22 +03:00
|
|
|
M_TTYS, M_WAITOK);
|
2001-07-18 10:48:27 +04:00
|
|
|
memset(linesw, 0, slinesw * sizeof(struct linesw *));
|
2000-11-02 02:51:38 +03:00
|
|
|
|
|
|
|
TTYLDISCINIT(termios_disc, 0);
|
|
|
|
/* Do we really need this one? */
|
|
|
|
TTYLDISCINIT(defunct_disc, 1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The following should really be moved to
|
|
|
|
* initialization code for each module.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(COMPAT_43) || defined(COMPAT_FREEBSD)
|
|
|
|
TTYLDISCINIT(ntty_disc, 2);
|
|
|
|
#endif
|
|
|
|
#if NTB > 0
|
|
|
|
TTYLDISCINIT(table_disc, 3);
|
|
|
|
#endif
|
|
|
|
#if NSL > 0
|
|
|
|
TTYLDISCINIT(slip_disc, 4);
|
|
|
|
#endif
|
|
|
|
#if NPPP > 0
|
|
|
|
TTYLDISCINIT(ppp_disc, 5);
|
|
|
|
#endif
|
|
|
|
#if NSTRIP > 0
|
|
|
|
TTYLDISCINIT(strip_disc, 6);
|
|
|
|
#endif
|
2001-12-04 02:30:37 +03:00
|
|
|
#if NIRFRAMETTY > 0
|
|
|
|
ttyldisc_add(&irframet_disc, -1);
|
|
|
|
#endif
|
2000-11-02 02:51:38 +03:00
|
|
|
}
|