Merge branch 'vendor/LIBARCHIVE'
[dragonfly.git] / bin / stty / modes.c
1 /*-
2  * Copyright (c) 1991, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * @(#)modes.c  8.3 (Berkeley) 4/2/94
34  * $FreeBSD: src/bin/stty/modes.c,v 1.8.2.2 2001/07/04 22:40:00 kris Exp $
35  * $DragonFly: src/bin/stty/modes.c,v 1.4 2003/09/28 14:39:15 hmp Exp $
36  */
37
38 #include <sys/types.h>
39 #include <stddef.h>
40 #include <string.h>
41 #include "stty.h"
42
43 int msearch (char ***, struct info *);
44
45 struct modes {
46         const char *name;
47         long set;
48         long unset;
49 };
50
51 /*
52  * The code in optlist() depends on minus options following regular
53  * options, i.e. "foo" must immediately precede "-foo".
54  */
55 struct modes cmodes[] = {
56         { "cs5",        CS5, CSIZE },
57         { "cs6",        CS6, CSIZE },
58         { "cs7",        CS7, CSIZE },
59         { "cs8",        CS8, CSIZE },
60         { "cstopb",     CSTOPB, 0 },
61         { "-cstopb",    0, CSTOPB },
62         { "cread",      CREAD, 0 },
63         { "-cread",     0, CREAD },
64         { "parenb",     PARENB, 0 },
65         { "-parenb",    0, PARENB },
66         { "parodd",     PARODD, 0 },
67         { "-parodd",    0, PARODD },
68         { "parity",     PARENB | CS7, PARODD | CSIZE },
69         { "-parity",    CS8, PARODD | PARENB | CSIZE },
70         { "evenp",      PARENB | CS7, PARODD | CSIZE },
71         { "-evenp",     CS8, PARODD | PARENB | CSIZE },
72         { "oddp",       PARENB | CS7 | PARODD, CSIZE },
73         { "-oddp",      CS8, PARODD | PARENB | CSIZE },
74         { "pass8",      CS8, PARODD | PARENB | CSIZE },
75         { "-pass8",     PARENB | CS7, PARODD | CSIZE },
76         { "hupcl",      HUPCL, 0 },
77         { "-hupcl",     0, HUPCL },
78         { "hup",        HUPCL, 0 },
79         { "-hup",       0, HUPCL },
80         { "clocal",     CLOCAL, 0 },
81         { "-clocal",    0, CLOCAL },
82         { "crtscts",    CRTSCTS, 0 },
83         { "-crtscts",   0, CRTSCTS },
84         { "ctsflow",    CCTS_OFLOW, 0 },
85         { "-ctsflow",   0, CCTS_OFLOW },
86         { "dsrflow",    CDSR_OFLOW, 0 },
87         { "-dsrflow",   0, CDSR_OFLOW },
88         { "dtrflow",    CDTR_IFLOW, 0 },
89         { "-dtrflow",   0, CDTR_IFLOW },
90         { "rtsflow",    CRTS_IFLOW, 0 },
91         { "-rtsflow",   0, CRTS_IFLOW },
92         { "mdmbuf",     MDMBUF, 0 },
93         { "-mdmbuf",    0, MDMBUF },
94         { NULL,         0, 0 },
95 };
96
97 struct modes imodes[] = {
98         { "ignbrk",     IGNBRK, 0 },
99         { "-ignbrk",    0, IGNBRK },
100         { "brkint",     BRKINT, 0 },
101         { "-brkint",    0, BRKINT },
102         { "ignpar",     IGNPAR, 0 },
103         { "-ignpar",    0, IGNPAR },
104         { "parmrk",     PARMRK, 0 },
105         { "-parmrk",    0, PARMRK },
106         { "inpck",      INPCK, 0 },
107         { "-inpck",     0, INPCK },
108         { "istrip",     ISTRIP, 0 },
109         { "-istrip",    0, ISTRIP },
110         { "inlcr",      INLCR, 0 },
111         { "-inlcr",     0, INLCR },
112         { "igncr",      IGNCR, 0 },
113         { "-igncr",     0, IGNCR },
114         { "icrnl",      ICRNL, 0 },
115         { "-icrnl",     0, ICRNL },
116         { "ixon",       IXON, 0 },
117         { "-ixon",      0, IXON },
118         { "flow",       IXON, 0 },
119         { "-flow",      0, IXON },
120         { "ixoff",      IXOFF, 0 },
121         { "-ixoff",     0, IXOFF },
122         { "tandem",     IXOFF, 0 },
123         { "-tandem",    0, IXOFF },
124         { "ixany",      IXANY, 0 },
125         { "-ixany",     0, IXANY },
126         { "decctlq",    0, IXANY },
127         { "-decctlq",   IXANY, 0 },
128         { "imaxbel",    IMAXBEL, 0 },
129         { "-imaxbel",   0, IMAXBEL },
130         { NULL,         0, 0 },
131 };
132
133 struct modes lmodes[] = {
134         { "echo",       ECHO, 0 },
135         { "-echo",      0, ECHO },
136         { "echoe",      ECHOE, 0 },
137         { "-echoe",     0, ECHOE },
138         { "crterase",   ECHOE, 0 },
139         { "-crterase",  0, ECHOE },
140         { "crtbs",      ECHOE, 0 },     /* crtbs not supported, close enough */
141         { "-crtbs",     0, ECHOE },
142         { "echok",      ECHOK, 0 },
143         { "-echok",     0, ECHOK },
144         { "echoke",     ECHOKE, 0 },
145         { "-echoke",    0, ECHOKE },
146         { "crtkill",    ECHOKE, 0 },
147         { "-crtkill",   0, ECHOKE },
148         { "altwerase",  ALTWERASE, 0 },
149         { "-altwerase", 0, ALTWERASE },
150         { "iexten",     IEXTEN, 0 },
151         { "-iexten",    0, IEXTEN },
152         { "echonl",     ECHONL, 0 },
153         { "-echonl",    0, ECHONL },
154         { "echoctl",    ECHOCTL, 0 },
155         { "-echoctl",   0, ECHOCTL },
156         { "ctlecho",    ECHOCTL, 0 },
157         { "-ctlecho",   0, ECHOCTL },
158         { "echoprt",    ECHOPRT, 0 },
159         { "-echoprt",   0, ECHOPRT },
160         { "prterase",   ECHOPRT, 0 },
161         { "-prterase",  0, ECHOPRT },
162         { "isig",       ISIG, 0 },
163         { "-isig",      0, ISIG },
164         { "icanon",     ICANON, 0 },
165         { "-icanon",    0, ICANON },
166         { "noflsh",     NOFLSH, 0 },
167         { "-noflsh",    0, NOFLSH },
168         { "tostop",     TOSTOP, 0 },
169         { "-tostop",    0, TOSTOP },
170         { "flusho",     FLUSHO, 0 },
171         { "-flusho",    0, FLUSHO },
172         { "pendin",     PENDIN, 0 },
173         { "-pendin",    0, PENDIN },
174         { "crt",        ECHOE|ECHOKE|ECHOCTL, ECHOK|ECHOPRT },
175         { "-crt",       ECHOK, ECHOE|ECHOKE|ECHOCTL },
176         { "newcrt",     ECHOE|ECHOKE|ECHOCTL, ECHOK|ECHOPRT },
177         { "-newcrt",    ECHOK, ECHOE|ECHOKE|ECHOCTL },
178         { "nokerninfo", NOKERNINFO, 0 },
179         { "-nokerninfo",0, NOKERNINFO },
180         { "kerninfo",   0, NOKERNINFO },
181         { "-kerninfo",  NOKERNINFO, 0 },
182         { NULL,         0, 0 },
183 };
184
185 struct modes omodes[] = {
186         { "opost",      OPOST, 0 },
187         { "-opost",     0, OPOST },
188         { "litout",     0, OPOST },
189         { "-litout",    OPOST, 0 },
190         { "onlcr",      ONLCR, 0 },
191         { "-onlcr",     0, ONLCR },
192         { "ocrnl",      OCRNL, 0 },
193         { "-ocrnl",     0, OCRNL },
194         { "tabs",       0, OXTABS },            /* "preserve" tabs */
195         { "-tabs",      OXTABS, 0 },
196         { "oxtabs",     OXTABS, 0 },
197         { "-oxtabs",    0, OXTABS },
198         { "onocr",      ONOCR, 0 },
199         { "-onocr",     0, ONOCR },
200         { "onlret",     ONLRET, 0 },
201         { "-onlret",    0, ONLRET },
202         { NULL,         0, 0 },
203 };
204
205 #define CHK(s)  (*name == s[0] && !strcmp(name, s))
206
207 int
208 msearch(char ***argvp, struct info *ip)
209 {
210         struct modes *mp;
211         char *name;
212
213         name = **argvp;
214
215         for (mp = cmodes; mp->name; ++mp)
216                 if (CHK(mp->name)) {
217                         ip->t.c_cflag &= ~mp->unset;
218                         ip->t.c_cflag |= mp->set;
219                         ip->set = 1;
220                         return (1);
221                 }
222         for (mp = imodes; mp->name; ++mp)
223                 if (CHK(mp->name)) {
224                         ip->t.c_iflag &= ~mp->unset;
225                         ip->t.c_iflag |= mp->set;
226                         ip->set = 1;
227                         return (1);
228                 }
229         for (mp = lmodes; mp->name; ++mp)
230                 if (CHK(mp->name)) {
231                         ip->t.c_lflag &= ~mp->unset;
232                         ip->t.c_lflag |= mp->set;
233                         ip->set = 1;
234                         return (1);
235                 }
236         for (mp = omodes; mp->name; ++mp)
237                 if (CHK(mp->name)) {
238                         ip->t.c_oflag &= ~mp->unset;
239                         ip->t.c_oflag |= mp->set;
240                         ip->set = 1;
241                         return (1);
242                 }
243         return (0);
244 }