xref: /openbsd/bin/stty/cchar.c (revision 404b540a)
1 /*	$OpenBSD: cchar.c,v 1.10 2003/06/11 23:42:12 deraadt Exp $	*/
2 /*	$NetBSD: cchar.c,v 1.10 1996/05/07 18:20:05 jtc Exp $	*/
3 
4 /*-
5  * Copyright (c) 1991, 1993, 1994
6  *	The Regents of the University of California.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32 
33 #ifndef lint
34 #if 0
35 static char sccsid[] = "@(#)cchar.c	8.5 (Berkeley) 4/2/94";
36 #else
37 static char rcsid[] = "$OpenBSD: cchar.c,v 1.10 2003/06/11 23:42:12 deraadt Exp $";
38 #endif
39 #endif /* not lint */
40 
41 #include <sys/types.h>
42 
43 #include <err.h>
44 #include <limits.h>
45 #include <stddef.h>
46 #include <stdlib.h>
47 #include <string.h>
48 
49 #include "stty.h"
50 #include "extern.h"
51 
52 /*
53  * Special control characters.
54  *
55  * Cchars1 are the standard names, cchars2 are the old aliases.
56  * The first are displayed, but both are recognized on the
57  * command line.
58  */
59 const struct cchar cchars1[] = {
60 	{ "discard",	VDISCARD, 	CDISCARD },
61 	{ "dsusp", 	VDSUSP,		CDSUSP },
62 	{ "eof",	VEOF,		CEOF },
63 	{ "eol",	VEOL,		CEOL },
64 	{ "eol2",	VEOL2,		CEOL },
65 	{ "erase",	VERASE,		CERASE },
66 	{ "intr",	VINTR,		CINTR },
67 	{ "kill",	VKILL,		CKILL },
68 	{ "lnext",	VLNEXT,		CLNEXT },
69 	{ "min",	VMIN,		CMIN },
70 	{ "quit",	VQUIT,		CQUIT },
71 	{ "reprint",	VREPRINT, 	CREPRINT },
72 	{ "start",	VSTART,		CSTART },
73 	{ "status",	VSTATUS, 	CSTATUS },
74 	{ "stop",	VSTOP,		CSTOP },
75 	{ "susp",	VSUSP,		CSUSP },
76 	{ "time",	VTIME,		CTIME },
77 	{ "werase",	VWERASE,	CWERASE },
78 	{ NULL },
79 };
80 
81 const struct cchar cchars2[] = {
82 	{ "brk",	VEOL,		CEOL },
83 	{ "flush",	VDISCARD, 	CDISCARD },
84 	{ "rprnt",	VREPRINT, 	CREPRINT },
85 	{ NULL },
86 };
87 
88 static int
89 c_cchar(const void *a, const void *b)
90 {
91 	return (strcmp(((struct cchar *)a)->name, ((struct cchar *)b)->name));
92 }
93 
94 int
95 csearch(char ***argvp, struct info *ip)
96 {
97 	struct cchar *cp, tmp;
98 	long val;
99 	char *arg, *ep, *name;
100 
101 	name = **argvp;
102 
103 	tmp.name = name;
104 	if (!(cp = (struct cchar *)bsearch(&tmp, cchars1,
105 	    sizeof(cchars1)/sizeof(struct cchar) - 1, sizeof(struct cchar),
106 	    c_cchar)) && !(cp = (struct cchar *)bsearch(&tmp, cchars2,
107 	    sizeof(cchars2)/sizeof(struct cchar) - 1, sizeof(struct cchar),
108 	    c_cchar)))
109 		return (0);
110 
111 	arg = *++*argvp;
112 	if (!arg) {
113 		warnx("option requires an argument -- %s", name);
114 		usage();
115 	}
116 
117 #define CHK(s)  (*arg == s[0] && !strcmp(arg, s))
118 	if (CHK("undef") || CHK("<undef>"))
119 		ip->t.c_cc[cp->sub] = _POSIX_VDISABLE;
120 	else if (cp->sub == VMIN || cp->sub == VTIME) {
121 		val = strtol(arg, &ep, 10);
122 		if (val > UCHAR_MAX || val < 0) {
123 			warnx("maximum option value is %d -- %s",
124 			    UCHAR_MAX, name);
125 			usage();
126 		}
127 		if (*ep != '\0') {
128 			warnx("option requires a numeric argument -- %s", name);
129 			usage();
130 		}
131 		ip->t.c_cc[cp->sub] = val;
132 	} else if (arg[0] == '^')
133 		ip->t.c_cc[cp->sub] = (arg[1] == '?') ? 0177 :
134 		    (arg[1] == '-') ? _POSIX_VDISABLE : arg[1] & 037;
135 	else
136 		ip->t.c_cc[cp->sub] = arg[0];
137 	ip->set = 1;
138 	return (1);
139 }
140