xref: /freebsd/bin/stty/print.c (revision ca8f21d65c516e06b8bc96de3da789f082983387)
14b88c807SRodney W. Grimes /*-
24b88c807SRodney W. Grimes  * Copyright (c) 1991, 1993, 1994
34b88c807SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
44b88c807SRodney W. Grimes  *
54b88c807SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
64b88c807SRodney W. Grimes  * modification, are permitted provided that the following conditions
74b88c807SRodney W. Grimes  * are met:
84b88c807SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
94b88c807SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
104b88c807SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
114b88c807SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
124b88c807SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
134b88c807SRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
144b88c807SRodney W. Grimes  *    must display the following acknowledgement:
154b88c807SRodney W. Grimes  *	This product includes software developed by the University of
164b88c807SRodney W. Grimes  *	California, Berkeley and its contributors.
174b88c807SRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
184b88c807SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
194b88c807SRodney W. Grimes  *    without specific prior written permission.
204b88c807SRodney W. Grimes  *
214b88c807SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
224b88c807SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
234b88c807SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
244b88c807SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
254b88c807SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
264b88c807SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
274b88c807SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
284b88c807SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
294b88c807SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
304b88c807SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
314b88c807SRodney W. Grimes  * SUCH DAMAGE.
3289730b29SDavid Greenman  *
33ca8f21d6SEivind Eklund  *	$Id: print.c,v 1.8 1997/02/22 14:05:53 peter Exp $
344b88c807SRodney W. Grimes  */
354b88c807SRodney W. Grimes 
364b88c807SRodney W. Grimes #ifndef lint
374507dafdSSteve Price static char const sccsid[] = "@(#)print.c	8.6 (Berkeley) 4/16/94";
384b88c807SRodney W. Grimes #endif /* not lint */
394b88c807SRodney W. Grimes 
404b88c807SRodney W. Grimes #include <sys/types.h>
414b88c807SRodney W. Grimes 
424b88c807SRodney W. Grimes #include <stddef.h>
434b88c807SRodney W. Grimes #include <stdio.h>
444b88c807SRodney W. Grimes #include <string.h>
454b88c807SRodney W. Grimes 
464b88c807SRodney W. Grimes #include "stty.h"
474b88c807SRodney W. Grimes #include "extern.h"
484b88c807SRodney W. Grimes 
492bf5814aSBruce Evans #include <sys/ioctl_compat.h>	/* XXX NTTYDISC is too well hidden */
502bf5814aSBruce Evans 
514b88c807SRodney W. Grimes static void  binit __P((char *));
524b88c807SRodney W. Grimes static void  bput __P((char *));
534b88c807SRodney W. Grimes static char *ccval __P((struct cchar *, int));
544b88c807SRodney W. Grimes 
554b88c807SRodney W. Grimes void
564b88c807SRodney W. Grimes print(tp, wp, ldisc, fmt)
574b88c807SRodney W. Grimes 	struct termios *tp;
584b88c807SRodney W. Grimes 	struct winsize *wp;
594b88c807SRodney W. Grimes 	int ldisc;
604b88c807SRodney W. Grimes 	enum FMT fmt;
614b88c807SRodney W. Grimes {
624b88c807SRodney W. Grimes 	struct cchar *p;
634b88c807SRodney W. Grimes 	long tmp;
644b88c807SRodney W. Grimes 	u_char *cc;
654b88c807SRodney W. Grimes 	int cnt, ispeed, ospeed;
664b88c807SRodney W. Grimes 	char buf1[100], buf2[100];
674b88c807SRodney W. Grimes 
684b88c807SRodney W. Grimes 	cnt = 0;
694b88c807SRodney W. Grimes 
704b88c807SRodney W. Grimes 	/* Line discipline. */
714b88c807SRodney W. Grimes 	if (ldisc != TTYDISC) {
724b88c807SRodney W. Grimes 		switch(ldisc) {
734b88c807SRodney W. Grimes 		case TABLDISC:
744b88c807SRodney W. Grimes 			cnt += printf("tablet disc; ");
754b88c807SRodney W. Grimes 			break;
762bf5814aSBruce Evans 		case NTTYDISC:
772bf5814aSBruce Evans 			cnt += printf("new tty disc; ");
782bf5814aSBruce Evans 			break;
794b88c807SRodney W. Grimes 		case SLIPDISC:
804b88c807SRodney W. Grimes 			cnt += printf("slip disc; ");
814b88c807SRodney W. Grimes 			break;
820b51c95dSAndrey A. Chernov 		case PPPDISC:
830b51c95dSAndrey A. Chernov 			cnt += printf("ppp disc; ");
840b51c95dSAndrey A. Chernov 			break;
854b88c807SRodney W. Grimes 		default:
864b88c807SRodney W. Grimes 			cnt += printf("#%d disc; ", ldisc);
874b88c807SRodney W. Grimes 			break;
884b88c807SRodney W. Grimes 		}
894b88c807SRodney W. Grimes 	}
904b88c807SRodney W. Grimes 
914b88c807SRodney W. Grimes 	/* Line speed. */
924b88c807SRodney W. Grimes 	ispeed = cfgetispeed(tp);
934b88c807SRodney W. Grimes 	ospeed = cfgetospeed(tp);
944b88c807SRodney W. Grimes 	if (ispeed != ospeed)
954b88c807SRodney W. Grimes 		cnt +=
964b88c807SRodney W. Grimes 		    printf("ispeed %d baud; ospeed %d baud;", ispeed, ospeed);
974b88c807SRodney W. Grimes 	else
984b88c807SRodney W. Grimes 		cnt += printf("speed %d baud;", ispeed);
994b88c807SRodney W. Grimes 	if (fmt >= BSD)
1004b88c807SRodney W. Grimes 		cnt += printf(" %d rows; %d columns;", wp->ws_row, wp->ws_col);
1014b88c807SRodney W. Grimes 	if (cnt)
1024b88c807SRodney W. Grimes 		(void)printf("\n");
1034b88c807SRodney W. Grimes 
1042bf5814aSBruce Evans #define	on(f)	((tmp & (f)) != 0)
1054b88c807SRodney W. Grimes #define put(n, f, d) \
1062bf5814aSBruce Evans 	if (fmt >= BSD || on(f) != (d)) \
1072bf5814aSBruce Evans 		bput((n) + on(f));
1084b88c807SRodney W. Grimes 
1094b88c807SRodney W. Grimes 	/* "local" flags */
1104b88c807SRodney W. Grimes 	tmp = tp->c_lflag;
1114b88c807SRodney W. Grimes 	binit("lflags");
1124b88c807SRodney W. Grimes 	put("-icanon", ICANON, 1);
1134b88c807SRodney W. Grimes 	put("-isig", ISIG, 1);
1144b88c807SRodney W. Grimes 	put("-iexten", IEXTEN, 1);
1154b88c807SRodney W. Grimes 	put("-echo", ECHO, 1);
1164b88c807SRodney W. Grimes 	put("-echoe", ECHOE, 0);
1174b88c807SRodney W. Grimes 	put("-echok", ECHOK, 0);
1184b88c807SRodney W. Grimes 	put("-echoke", ECHOKE, 0);
1194b88c807SRodney W. Grimes 	put("-echonl", ECHONL, 0);
1204b88c807SRodney W. Grimes 	put("-echoctl", ECHOCTL, 0);
1214b88c807SRodney W. Grimes 	put("-echoprt", ECHOPRT, 0);
1224b88c807SRodney W. Grimes 	put("-altwerase", ALTWERASE, 0);
1234b88c807SRodney W. Grimes 	put("-noflsh", NOFLSH, 0);
1244b88c807SRodney W. Grimes 	put("-tostop", TOSTOP, 0);
1254b88c807SRodney W. Grimes 	put("-flusho", FLUSHO, 0);
1264b88c807SRodney W. Grimes 	put("-pendin", PENDIN, 0);
1274b88c807SRodney W. Grimes 	put("-nokerninfo", NOKERNINFO, 0);
1284b88c807SRodney W. Grimes 	put("-extproc", EXTPROC, 0);
1294b88c807SRodney W. Grimes 
1304b88c807SRodney W. Grimes 	/* input flags */
1314b88c807SRodney W. Grimes 	tmp = tp->c_iflag;
1324b88c807SRodney W. Grimes 	binit("iflags");
1334b88c807SRodney W. Grimes 	put("-istrip", ISTRIP, 0);
1344b88c807SRodney W. Grimes 	put("-icrnl", ICRNL, 1);
1354b88c807SRodney W. Grimes 	put("-inlcr", INLCR, 0);
1364b88c807SRodney W. Grimes 	put("-igncr", IGNCR, 0);
1374b88c807SRodney W. Grimes 	put("-ixon", IXON, 1);
1384b88c807SRodney W. Grimes 	put("-ixoff", IXOFF, 0);
1394b88c807SRodney W. Grimes 	put("-ixany", IXANY, 1);
1404b88c807SRodney W. Grimes 	put("-imaxbel", IMAXBEL, 1);
1414b88c807SRodney W. Grimes 	put("-ignbrk", IGNBRK, 0);
1424b88c807SRodney W. Grimes 	put("-brkint", BRKINT, 1);
1434b88c807SRodney W. Grimes 	put("-inpck", INPCK, 0);
1444b88c807SRodney W. Grimes 	put("-ignpar", IGNPAR, 0);
1454b88c807SRodney W. Grimes 	put("-parmrk", PARMRK, 0);
1464b88c807SRodney W. Grimes 
1474b88c807SRodney W. Grimes 	/* output flags */
1484b88c807SRodney W. Grimes 	tmp = tp->c_oflag;
1494b88c807SRodney W. Grimes 	binit("oflags");
1504b88c807SRodney W. Grimes 	put("-opost", OPOST, 1);
1514b88c807SRodney W. Grimes 	put("-onlcr", ONLCR, 1);
1524b88c807SRodney W. Grimes 	put("-oxtabs", OXTABS, 1);
1534b88c807SRodney W. Grimes 
1544b88c807SRodney W. Grimes 	/* control flags (hardware state) */
1554b88c807SRodney W. Grimes 	tmp = tp->c_cflag;
1564b88c807SRodney W. Grimes 	binit("cflags");
1574b88c807SRodney W. Grimes 	put("-cread", CREAD, 1);
1584b88c807SRodney W. Grimes 	switch(tmp&CSIZE) {
1594b88c807SRodney W. Grimes 	case CS5:
1604b88c807SRodney W. Grimes 		bput("cs5");
1614b88c807SRodney W. Grimes 		break;
1624b88c807SRodney W. Grimes 	case CS6:
1634b88c807SRodney W. Grimes 		bput("cs6");
1644b88c807SRodney W. Grimes 		break;
1654b88c807SRodney W. Grimes 	case CS7:
1664b88c807SRodney W. Grimes 		bput("cs7");
1674b88c807SRodney W. Grimes 		break;
1684b88c807SRodney W. Grimes 	case CS8:
1694b88c807SRodney W. Grimes 		bput("cs8");
1704b88c807SRodney W. Grimes 		break;
1714b88c807SRodney W. Grimes 	}
1724b88c807SRodney W. Grimes 	bput("-parenb" + on(PARENB));
1734b88c807SRodney W. Grimes 	put("-parodd", PARODD, 0);
1744b88c807SRodney W. Grimes 	put("-hupcl", HUPCL, 1);
1754b88c807SRodney W. Grimes 	put("-clocal", CLOCAL, 0);
1764b88c807SRodney W. Grimes 	put("-cstopb", CSTOPB, 0);
1772bf5814aSBruce Evans 	switch(tmp & (CCTS_OFLOW | CRTS_IFLOW)) {
1782bf5814aSBruce Evans 	case CCTS_OFLOW:
1792bf5814aSBruce Evans 		bput("ctsflow");
1802bf5814aSBruce Evans 		break;
1812bf5814aSBruce Evans 	case CRTS_IFLOW:
1822bf5814aSBruce Evans 		bput("rtsflow");
1832bf5814aSBruce Evans 		break;
1842bf5814aSBruce Evans 	default:
1852bf5814aSBruce Evans 		put("-crtscts", CCTS_OFLOW | CRTS_IFLOW, 0);
1862bf5814aSBruce Evans 		break;
1872bf5814aSBruce Evans 	}
1882bf5814aSBruce Evans 	put("-dsrflow", CDSR_OFLOW, 0);
1892bf5814aSBruce Evans 	put("-dtrflow", CDTR_IFLOW, 0);
1902bf5814aSBruce Evans 	put("-mdmbuf", MDMBUF, 0);	/* XXX mdmbuf ==  dtrflow */
1914b88c807SRodney W. Grimes 
1924b88c807SRodney W. Grimes 	/* special control characters */
1934b88c807SRodney W. Grimes 	cc = tp->c_cc;
1944b88c807SRodney W. Grimes 	if (fmt == POSIX) {
1954b88c807SRodney W. Grimes 		binit("cchars");
1964b88c807SRodney W. Grimes 		for (p = cchars1; p->name; ++p) {
1974b88c807SRodney W. Grimes 			(void)snprintf(buf1, sizeof(buf1), "%s = %s;",
1984b88c807SRodney W. Grimes 			    p->name, ccval(p, cc[p->sub]));
1994b88c807SRodney W. Grimes 			bput(buf1);
2004b88c807SRodney W. Grimes 		}
2014b88c807SRodney W. Grimes 		binit(NULL);
2024b88c807SRodney W. Grimes 	} else {
2034b88c807SRodney W. Grimes 		binit(NULL);
2044b88c807SRodney W. Grimes 		for (p = cchars1, cnt = 0; p->name; ++p) {
2054b88c807SRodney W. Grimes 			if (fmt != BSD && cc[p->sub] == p->def)
2064b88c807SRodney W. Grimes 				continue;
2074b88c807SRodney W. Grimes #define	WD	"%-8s"
208ca8f21d6SEivind Eklund 			(void)snprintf(buf1 + cnt * 8, sizeof(buf1) - cnt * 8,
209ca8f21d6SEivind Eklund 			    WD, p->name);
210ca8f21d6SEivind Eklund 			(void)snprintf(buf2 + cnt * 8, sizeof(buf2) - cnt * 8,
211ca8f21d6SEivind Eklund 			    WD, ccval(p, cc[p->sub]));
2124b88c807SRodney W. Grimes 			if (++cnt == LINELENGTH / 8) {
2134b88c807SRodney W. Grimes 				cnt = 0;
2144b88c807SRodney W. Grimes 				(void)printf("%s\n", buf1);
2154b88c807SRodney W. Grimes 				(void)printf("%s\n", buf2);
2164b88c807SRodney W. Grimes 			}
2174b88c807SRodney W. Grimes 		}
2184b88c807SRodney W. Grimes 		if (cnt) {
2194b88c807SRodney W. Grimes 			(void)printf("%s\n", buf1);
2204b88c807SRodney W. Grimes 			(void)printf("%s\n", buf2);
2214b88c807SRodney W. Grimes 		}
2224b88c807SRodney W. Grimes 	}
2234b88c807SRodney W. Grimes }
2244b88c807SRodney W. Grimes 
2254b88c807SRodney W. Grimes static int col;
2264b88c807SRodney W. Grimes static char *label;
2274b88c807SRodney W. Grimes 
2284b88c807SRodney W. Grimes static void
2294b88c807SRodney W. Grimes binit(lb)
2304b88c807SRodney W. Grimes 	char *lb;
2314b88c807SRodney W. Grimes {
2324b88c807SRodney W. Grimes 
2334b88c807SRodney W. Grimes 	if (col) {
2344b88c807SRodney W. Grimes 		(void)printf("\n");
2354b88c807SRodney W. Grimes 		col = 0;
2364b88c807SRodney W. Grimes 	}
2374b88c807SRodney W. Grimes 	label = lb;
2384b88c807SRodney W. Grimes }
2394b88c807SRodney W. Grimes 
2404b88c807SRodney W. Grimes static void
2414b88c807SRodney W. Grimes bput(s)
2424b88c807SRodney W. Grimes 	char *s;
2434b88c807SRodney W. Grimes {
2444b88c807SRodney W. Grimes 
2454b88c807SRodney W. Grimes 	if (col == 0) {
2464b88c807SRodney W. Grimes 		col = printf("%s: %s", label, s);
2474b88c807SRodney W. Grimes 		return;
2484b88c807SRodney W. Grimes 	}
2494b88c807SRodney W. Grimes 	if ((col + strlen(s)) > LINELENGTH) {
2504b88c807SRodney W. Grimes 		(void)printf("\n\t");
2514b88c807SRodney W. Grimes 		col = printf("%s", s) + 8;
2524b88c807SRodney W. Grimes 		return;
2534b88c807SRodney W. Grimes 	}
2544b88c807SRodney W. Grimes 	col += printf(" %s", s);
2554b88c807SRodney W. Grimes }
2564b88c807SRodney W. Grimes 
2574b88c807SRodney W. Grimes static char *
2584b88c807SRodney W. Grimes ccval(p, c)
2594b88c807SRodney W. Grimes 	struct cchar *p;
2604b88c807SRodney W. Grimes 	int c;
2614b88c807SRodney W. Grimes {
2624b88c807SRodney W. Grimes 	static char buf[5];
2634b88c807SRodney W. Grimes 	char *bp;
2644b88c807SRodney W. Grimes 
2654b88c807SRodney W. Grimes 	if (p->sub == VMIN || p->sub == VTIME) {
2664b88c807SRodney W. Grimes 		(void)snprintf(buf, sizeof(buf), "%d", c);
2674b88c807SRodney W. Grimes 		return (buf);
2684b88c807SRodney W. Grimes 	}
2690b51c95dSAndrey A. Chernov 	if (c == _POSIX_VDISABLE)
2700b51c95dSAndrey A. Chernov 		return ("<undef>");
2714b88c807SRodney W. Grimes 	bp = buf;
2724b88c807SRodney W. Grimes 	if (c & 0200) {
2734b88c807SRodney W. Grimes 		*bp++ = 'M';
2744b88c807SRodney W. Grimes 		*bp++ = '-';
2754b88c807SRodney W. Grimes 		c &= 0177;
2764b88c807SRodney W. Grimes 	}
2774b88c807SRodney W. Grimes 	if (c == 0177) {
2784b88c807SRodney W. Grimes 		*bp++ = '^';
2794b88c807SRodney W. Grimes 		*bp++ = '?';
2804b88c807SRodney W. Grimes 	}
2814b88c807SRodney W. Grimes 	else if (c < 040) {
2824b88c807SRodney W. Grimes 		*bp++ = '^';
2834b88c807SRodney W. Grimes 		*bp++ = c + '@';
2844b88c807SRodney W. Grimes 	}
2854b88c807SRodney W. Grimes 	else
2864b88c807SRodney W. Grimes 		*bp++ = c;
2874b88c807SRodney W. Grimes 	*bp = '\0';
2884b88c807SRodney W. Grimes 	return (buf);
2894b88c807SRodney W. Grimes }
290