Home | History | Annotate | Line # | Download | only in common
tty_43.c revision 1.31
      1 /*	$NetBSD: tty_43.c,v 1.31 2019/01/27 02:08:39 pgoyette Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2008 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  *
     16  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26  * POSSIBILITY OF SUCH DAMAGE.
     27  */
     28 
     29 /*-
     30  * Copyright (c) 1982, 1986, 1991, 1993
     31  *	The Regents of the University of California.  All rights reserved.
     32  *
     33  * Redistribution and use in source and binary forms, with or without
     34  * modification, are permitted provided that the following conditions
     35  * are met:
     36  * 1. Redistributions of source code must retain the above copyright
     37  *    notice, this list of conditions and the following disclaimer.
     38  * 2. Redistributions in binary form must reproduce the above copyright
     39  *    notice, this list of conditions and the following disclaimer in the
     40  *    documentation and/or other materials provided with the distribution.
     41  * 3. Neither the name of the University nor the names of its contributors
     42  *    may be used to endorse or promote products derived from this software
     43  *    without specific prior written permission.
     44  *
     45  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     46  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     47  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     48  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     49  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     50  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     51  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     52  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     53  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     54  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     55  * SUCH DAMAGE.
     56  *
     57  *	@(#)tty_compat.c	8.2 (Berkeley) 1/9/95
     58  */
     59 
     60 /*
     61  * mapping routines for old line discipline (yuck)
     62  */
     63 
     64 #include <sys/cdefs.h>
     65 __KERNEL_RCSID(0, "$NetBSD: tty_43.c,v 1.31 2019/01/27 02:08:39 pgoyette Exp $");
     66 
     67 #if defined(_KERNEL_OPT)
     68 #include "opt_compat_netbsd.h"
     69 #endif
     70 
     71 #include <sys/param.h>
     72 #include <sys/systm.h>
     73 #include <sys/ioctl.h>
     74 #include <sys/proc.h>
     75 #include <sys/conf.h>
     76 #include <sys/tty.h>
     77 #include <sys/termios.h>
     78 #include <sys/file.h>
     79 #include <sys/kernel.h>
     80 #include <sys/syslog.h>
     81 #include <sys/ioctl_compat.h>
     82 
     83 #include <compat/common/compat_mod.h>
     84 
     85 int ttydebug = 0;
     86 
     87 static const struct speedtab compatspeeds[] = {
     88 #define MAX_SPEED	17
     89 	{ 115200, 17 },
     90 	{ 57600, 16 },
     91 	{ 38400, 15 },
     92 	{ 19200, 14 },
     93 	{ 9600,	13 },
     94 	{ 4800,	12 },
     95 	{ 2400,	11 },
     96 	{ 1800,	10 },
     97 	{ 1200,	9 },
     98 	{ 600,	8 },
     99 	{ 300,	7 },
    100 	{ 200,	6 },
    101 	{ 150,	5 },
    102 	{ 134,	4 },
    103 	{ 110,	3 },
    104 	{ 75,	2 },
    105 	{ 50,	1 },
    106 	{ 0,	0 },
    107 	{ -1,	-1 },
    108 };
    109 static const int compatspcodes[] = {
    110 	0, 50, 75, 110, 134, 150, 200, 300, 600, 1200,
    111 	1800, 2400, 4800, 9600, 19200, 38400, 57600, 115200
    112 };
    113 
    114 static int ttcompatgetflags(struct tty *);
    115 static void ttcompatsetflags(struct tty *, struct termios *);
    116 static void ttcompatsetlflags(struct tty *, struct termios *);
    117 int	ttcompat(struct tty *, u_long, void *, int, struct lwp *);
    118 
    119 /*ARGSUSED*/
    120 int
    121 ttcompat(struct tty *tp, u_long com, void *data, int flag, struct lwp *l)
    122 {
    123 
    124 	switch (com) {
    125 	case TIOCGETP: {
    126 		struct sgttyb *sg = (struct sgttyb *)data;
    127 		int speed;
    128 
    129 		mutex_spin_enter(&tty_lock);
    130 		speed = ttspeedtab(tp->t_ospeed, compatspeeds);
    131 		sg->sg_ospeed = (speed == -1) ? MAX_SPEED : speed;
    132 		if (tp->t_ispeed == 0)
    133 			sg->sg_ispeed = sg->sg_ospeed;
    134 		else {
    135 			speed = ttspeedtab(tp->t_ispeed, compatspeeds);
    136 			sg->sg_ispeed = (speed == -1) ? MAX_SPEED : speed;
    137 		}
    138 		sg->sg_erase = tty_getctrlchar(tp, VERASE);
    139 		sg->sg_kill = tty_getctrlchar(tp, VKILL);
    140 		sg->sg_flags = ttcompatgetflags(tp);
    141 		mutex_spin_exit(&tty_lock);
    142 		break;
    143 	}
    144 
    145 	case TIOCSETP:
    146 	case TIOCSETN: {
    147 		struct sgttyb *sg = (struct sgttyb *)data;
    148 		struct termios term;
    149 		int speed;
    150 
    151 		mutex_spin_enter(&tty_lock);
    152 		term = tp->t_termios;
    153 		if ((speed = sg->sg_ispeed) > MAX_SPEED || speed < 0)
    154 			term.c_ispeed = speed;
    155 		else
    156 			term.c_ispeed = compatspcodes[speed];
    157 		if ((speed = sg->sg_ospeed) > MAX_SPEED || speed < 0)
    158 			term.c_ospeed = speed;
    159 		else
    160 			term.c_ospeed = compatspcodes[speed];
    161 		term.c_cc[VERASE] = sg->sg_erase;
    162 		term.c_cc[VKILL] = sg->sg_kill;
    163 		tp->t_flags = (ttcompatgetflags(tp)&0xffff0000) | (sg->sg_flags&0xffff);
    164 		ttcompatsetflags(tp, &term);
    165 		mutex_spin_exit(&tty_lock);
    166 		return (ttioctl(tp, com == TIOCSETP ? TIOCSETAF : TIOCSETA,
    167 			(void *)&term, flag, l));
    168 	}
    169 
    170 	case TIOCGETC: {
    171 		struct tchars *tc = (struct tchars *)data;
    172 
    173 		tc->t_intrc = tty_getctrlchar(tp, VINTR);
    174 		tc->t_quitc = tty_getctrlchar(tp, VQUIT);
    175 		tc->t_startc = tty_getctrlchar(tp, VSTART);
    176 		tc->t_stopc = tty_getctrlchar(tp, VSTOP);
    177 		tc->t_eofc = tty_getctrlchar(tp, VEOF);
    178 		tc->t_brkc = tty_getctrlchar(tp, VEOL);
    179 		break;
    180 	}
    181 	case TIOCSETC: {
    182 		struct tchars *tc = (struct tchars *)data;
    183 
    184 		tty_setctrlchar(tp, VINTR, tc->t_intrc);
    185 		tty_setctrlchar(tp, VQUIT, tc->t_quitc);
    186 		tty_setctrlchar(tp, VSTART, tc->t_startc);
    187 		tty_setctrlchar(tp, VSTOP, tc->t_stopc);
    188 		tty_setctrlchar(tp, VEOF, tc->t_eofc);
    189 		tty_setctrlchar(tp, VEOL, tc->t_brkc);
    190 		if (tc->t_brkc == (char)-1)
    191 			tty_setctrlchar(tp, VEOL2, _POSIX_VDISABLE);
    192 		break;
    193 	}
    194 	case TIOCSLTC: {
    195 		struct ltchars *ltc = (struct ltchars *)data;
    196 
    197 		tty_setctrlchar(tp, VSUSP, ltc->t_suspc);
    198 		tty_setctrlchar(tp, VDSUSP, ltc->t_dsuspc);
    199 		tty_setctrlchar(tp, VREPRINT, ltc->t_rprntc);
    200 		tty_setctrlchar(tp, VDISCARD, ltc->t_flushc);
    201 		tty_setctrlchar(tp, VWERASE, ltc->t_werasc);
    202 		tty_setctrlchar(tp, VLNEXT, ltc->t_lnextc);
    203 		break;
    204 	}
    205 	case TIOCGLTC: {
    206 		struct ltchars *ltc = (struct ltchars *)data;
    207 
    208 		ltc->t_suspc = tty_getctrlchar(tp, VSUSP);
    209 		ltc->t_dsuspc = tty_getctrlchar(tp, VDSUSP);
    210 		ltc->t_rprntc = tty_getctrlchar(tp, VREPRINT);
    211 		ltc->t_flushc = tty_getctrlchar(tp, VDISCARD);
    212 		ltc->t_werasc = tty_getctrlchar(tp, VWERASE);
    213 		ltc->t_lnextc = tty_getctrlchar(tp, VLNEXT);
    214 		break;
    215 	}
    216 	case TIOCLBIS:
    217 	case TIOCLBIC:
    218 	case TIOCLSET: {
    219 		struct termios term;
    220 		int flags;
    221 
    222 		mutex_spin_enter(&tty_lock);
    223 		term = tp->t_termios;
    224 		flags = ttcompatgetflags(tp);
    225 		switch (com) {
    226 		case TIOCLSET:
    227 			tp->t_flags = (flags&0xffff) | (*(int *)data<<16);
    228 			break;
    229 		case TIOCLBIS:
    230 			tp->t_flags = flags | (*(int *)data<<16);
    231 			break;
    232 		case TIOCLBIC:
    233 			tp->t_flags = flags & ~(*(int *)data<<16);
    234 			break;
    235 		}
    236 		ttcompatsetlflags(tp, &term);
    237 		mutex_spin_exit(&tty_lock);
    238 		return (ttioctl(tp, TIOCSETA, (void *)&term, flag, l));
    239 	}
    240 	case TIOCLGET:
    241 		mutex_spin_enter(&tty_lock);
    242 		*(int *)data = ttcompatgetflags(tp)>>16;
    243 		mutex_spin_exit(&tty_lock);
    244 		if (ttydebug)
    245 			printf("CLGET: returning %x\n", *(int *)data);
    246 		break;
    247 
    248 	case OTIOCGETD:
    249 		mutex_spin_enter(&tty_lock);
    250 		*(int *)data = (tp->t_linesw == NULL) ?
    251 		    2 /* XXX old NTTYDISC */ : tp->t_linesw->l_no;
    252 		mutex_spin_exit(&tty_lock);
    253 		break;
    254 
    255 	case OTIOCSETD: {
    256 		int ldisczero = 0;
    257 
    258 		return (ttioctl(tp, TIOCSETD,
    259 			*(int *)data == 2 ? (void *)&ldisczero : data, flag,
    260 			l));
    261 	    }
    262 
    263 	case OTIOCCONS:
    264 		*(int *)data = 1;
    265 		return (ttioctl(tp, TIOCCONS, data, flag, l));
    266 
    267 	case TIOCHPCL:
    268 		mutex_spin_enter(&tty_lock);
    269 		SET(tp->t_cflag, HUPCL);
    270 		mutex_spin_exit(&tty_lock);
    271 		break;
    272 
    273 	case TIOCGSID:
    274 		mutex_enter(proc_lock);
    275 		if (tp->t_session == NULL) {
    276 			mutex_exit(proc_lock);
    277 			return ENOTTY;
    278 		}
    279 		if (tp->t_session->s_leader == NULL) {
    280 			mutex_exit(proc_lock);
    281 			return ENOTTY;
    282 		}
    283 		*(int *) data =  tp->t_session->s_leader->p_pid;
    284 		mutex_exit(proc_lock);
    285 		break;
    286 
    287 	default:
    288 		return (EPASSTHROUGH);
    289 	}
    290 	return (0);
    291 }
    292 
    293 static int
    294 ttcompatgetflags(struct tty *tp)
    295 {
    296 	tcflag_t iflag = tp->t_iflag;
    297 	tcflag_t lflag = tp->t_lflag;
    298 	tcflag_t oflag = tp->t_oflag;
    299 	tcflag_t cflag = tp->t_cflag;
    300 	int flags = 0;
    301 
    302 	KASSERT(mutex_owned(&tty_lock));
    303 
    304 	if (ISSET(iflag, IXOFF))
    305 		SET(flags, TANDEM);
    306 	if (ISSET(iflag, ICRNL) || ISSET(oflag, ONLCR))
    307 		SET(flags, CRMOD);
    308 	if (ISSET(cflag, PARENB)) {
    309 		if (ISSET(iflag, INPCK)) {
    310 			if (ISSET(cflag, PARODD))
    311 				SET(flags, ODDP);
    312 			else
    313 				SET(flags, EVENP);
    314 		} else
    315 			SET(flags, ANYP);
    316 	}
    317 
    318 	if (!ISSET(lflag, ICANON)) {
    319 		/* fudge */
    320 		if (ISSET(iflag, IXON) || ISSET(lflag, ISIG|IEXTEN) ||
    321 		    ISSET(cflag, PARENB))
    322 			SET(flags, CBREAK);
    323 		else
    324 			SET(flags, RAW);
    325 	}
    326 
    327 	if (ISSET(flags, RAW))
    328 		SET(flags, ISSET(tp->t_flags, LITOUT|PASS8));
    329 	else if (ISSET(cflag, CSIZE) == CS8) {
    330 		if (!ISSET(oflag, OPOST))
    331 			SET(flags, LITOUT);
    332 		if (!ISSET(iflag, ISTRIP))
    333 			SET(flags, PASS8);
    334 	}
    335 
    336 	if (ISSET(cflag, MDMBUF))
    337 		SET(flags, MDMBUF);
    338 	if (!ISSET(cflag, HUPCL))
    339 		SET(flags, NOHANG);
    340 	if (ISSET(oflag, OXTABS))
    341 		SET(flags, XTABS);
    342 	if (ISSET(lflag, ECHOE))
    343 		SET(flags, CRTERA|CRTBS);
    344 	if (ISSET(lflag, ECHOKE))
    345 		SET(flags, CRTKIL|CRTBS);
    346 	if (ISSET(lflag, ECHOPRT))
    347 		SET(flags, PRTERA);
    348 	if (ISSET(lflag, ECHOCTL))
    349 		SET(flags, CTLECH);
    350 	if (!ISSET(iflag, IXANY))
    351 		SET(flags, DECCTQ);
    352 	SET(flags, ISSET(lflag, ECHO|TOSTOP|FLUSHO|PENDIN|NOFLSH));
    353 	if (ttydebug)
    354 		printf("getflags: %x\n", flags);
    355 	return (flags);
    356 }
    357 
    358 static void
    359 ttcompatsetflags(struct tty *tp, struct termios *t)
    360 {
    361 	int flags = tp->t_flags;
    362 
    363 	KASSERT(mutex_owned(&tty_lock));
    364 
    365 	tcflag_t iflag = t->c_iflag;
    366 	tcflag_t oflag = t->c_oflag;
    367 	tcflag_t lflag = t->c_lflag;
    368 	tcflag_t cflag = t->c_cflag;
    369 
    370 	if (ISSET(flags, TANDEM))
    371 		SET(iflag, IXOFF);
    372 	else
    373 		CLR(iflag, IXOFF);
    374 	if (ISSET(flags, ECHO))
    375 		SET(lflag, ECHO);
    376 	else
    377 		CLR(lflag, ECHO);
    378 	if (ISSET(flags, CRMOD)) {
    379 		SET(iflag, ICRNL);
    380 		SET(oflag, ONLCR);
    381 	} else {
    382 		CLR(iflag, ICRNL);
    383 		CLR(oflag, ONLCR);
    384 	}
    385 	if (ISSET(flags, XTABS))
    386 		SET(oflag, OXTABS);
    387 	else
    388 		CLR(oflag, OXTABS);
    389 
    390 
    391 	if (ISSET(flags, RAW)) {
    392 		iflag &= IXOFF;
    393 		CLR(lflag, ISIG|ICANON|IEXTEN);
    394 		CLR(cflag, PARENB);
    395 	} else {
    396 		SET(iflag, BRKINT|IXON|IMAXBEL);
    397 		SET(lflag, ISIG|IEXTEN);
    398 		if (ISSET(flags, CBREAK))
    399 			CLR(lflag, ICANON);
    400 		else
    401 			SET(lflag, ICANON);
    402 		switch (ISSET(flags, ANYP)) {
    403 		case 0:
    404 			CLR(cflag, PARENB);
    405 			break;
    406 		case ANYP:
    407 			SET(cflag, PARENB);
    408 			CLR(iflag, INPCK);
    409 			break;
    410 		case EVENP:
    411 			SET(cflag, PARENB);
    412 			SET(iflag, INPCK);
    413 			CLR(cflag, PARODD);
    414 			break;
    415 		case ODDP:
    416 			SET(cflag, PARENB);
    417 			SET(iflag, INPCK);
    418 			SET(cflag, PARODD);
    419 			break;
    420 		}
    421 	}
    422 
    423 	if (ISSET(flags, RAW|LITOUT|PASS8)) {
    424 		CLR(cflag, CSIZE);
    425 		SET(cflag, CS8);
    426 		if (!ISSET(flags, RAW|PASS8))
    427 			SET(iflag, ISTRIP);
    428 		else
    429 			CLR(iflag, ISTRIP);
    430 		if (!ISSET(flags, RAW|LITOUT))
    431 			SET(oflag, OPOST);
    432 		else
    433 			CLR(oflag, OPOST);
    434 	} else {
    435 		CLR(cflag, CSIZE);
    436 		SET(cflag, CS7);
    437 		SET(iflag, ISTRIP);
    438 		SET(oflag, OPOST);
    439 	}
    440 
    441 	t->c_iflag = iflag;
    442 	t->c_oflag = oflag;
    443 	t->c_lflag = lflag;
    444 	t->c_cflag = cflag;
    445 }
    446 
    447 static void
    448 ttcompatsetlflags(struct tty *tp, struct termios *t)
    449 {
    450 	int flags = tp->t_flags;
    451 	tcflag_t iflag = t->c_iflag;
    452 	tcflag_t oflag = t->c_oflag;
    453 	tcflag_t lflag = t->c_lflag;
    454 	tcflag_t cflag = t->c_cflag;
    455 
    456 	KASSERT(mutex_owned(&tty_lock));
    457 
    458 	/* Nothing we can do with CRTBS. */
    459 	if (ISSET(flags, PRTERA))
    460 		SET(lflag, ECHOPRT);
    461 	else
    462 		CLR(lflag, ECHOPRT);
    463 	if (ISSET(flags, CRTERA))
    464 		SET(lflag, ECHOE);
    465 	else
    466 		CLR(lflag, ECHOE);
    467 	/* Nothing we can do with TILDE. */
    468 	if (ISSET(flags, MDMBUF))
    469 		SET(cflag, MDMBUF);
    470 	else
    471 		CLR(cflag, MDMBUF);
    472 	if (ISSET(flags, NOHANG))
    473 		CLR(cflag, HUPCL);
    474 	else
    475 		SET(cflag, HUPCL);
    476 	if (ISSET(flags, CRTKIL))
    477 		SET(lflag, ECHOKE);
    478 	else
    479 		CLR(lflag, ECHOKE);
    480 	if (ISSET(flags, CTLECH))
    481 		SET(lflag, ECHOCTL);
    482 	else
    483 		CLR(lflag, ECHOCTL);
    484 	if (!ISSET(flags, DECCTQ))
    485 		SET(iflag, IXANY);
    486 	else
    487 		CLR(iflag, IXANY);
    488 	CLR(lflag, TOSTOP|FLUSHO|PENDIN|NOFLSH);
    489 	SET(lflag, ISSET(flags, TOSTOP|FLUSHO|PENDIN|NOFLSH));
    490 
    491 	if (ISSET(flags, RAW|LITOUT|PASS8)) {
    492 		CLR(cflag, CSIZE);
    493 		SET(cflag, CS8);
    494 		if (!ISSET(flags, RAW|PASS8))
    495 			SET(iflag, ISTRIP);
    496 		else
    497 			CLR(iflag, ISTRIP);
    498 		if (!ISSET(flags, RAW|LITOUT))
    499 			SET(oflag, OPOST);
    500 		else
    501 			CLR(oflag, OPOST);
    502 	} else {
    503 		CLR(cflag, CSIZE);
    504 		SET(cflag, CS7);
    505 		SET(iflag, ISTRIP);
    506 		SET(oflag, OPOST);
    507 	}
    508 
    509 	t->c_iflag = iflag;
    510 	t->c_oflag = oflag;
    511 	t->c_lflag = lflag;
    512 	t->c_cflag = cflag;
    513 }
    514 
    515 int
    516 tty_43_init(void)
    517 {
    518 
    519 	return 0;
    520 }
    521 
    522 int
    523 tty_43_fini(void)
    524 {
    525 
    526 	return 0;
    527 }
    528