kernel - Implement sbrk(), change low-address mmap hinting
[dragonfly.git] / contrib / libedit / src / unvis.c
blobd2c65aa3d5d8444659ad67f7a2b93480c03cf700
1 /* $NetBSD: unvis.c,v 1.44 2014/09/26 15:43:36 roy Exp $ */
3 /*-
4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved.
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 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
32 #include "config.h"
33 #if defined(LIBC_SCCS) && !defined(lint)
34 #if 0
35 static char sccsid[] = "@(#)unvis.c 8.1 (Berkeley) 6/4/93";
36 #else
37 __RCSID("$NetBSD: unvis.c,v 1.44 2014/09/26 15:43:36 roy Exp $");
38 #endif
39 #endif /* LIBC_SCCS and not lint */
41 #include <sys/types.h>
43 #include <assert.h>
44 #include <ctype.h>
45 #ifdef HAVE_STDINT_H
46 #include <stdint.h>
47 #endif
48 #include <stdio.h>
49 #include <errno.h>
50 #include <vis.h>
52 #ifdef __weak_alias
53 __weak_alias(strnunvisx,_strnunvisx)
54 #endif
56 #if !HAVE_VIS
58 * decode driven by state machine
60 #define S_GROUND 0 /* haven't seen escape char */
61 #define S_START 1 /* start decoding special sequence */
62 #define S_META 2 /* metachar started (M) */
63 #define S_META1 3 /* metachar more, regular char (-) */
64 #define S_CTRL 4 /* control char started (^) */
65 #define S_OCTAL2 5 /* octal digit 2 */
66 #define S_OCTAL3 6 /* octal digit 3 */
67 #define S_HEX 7 /* mandatory hex digit */
68 #define S_HEX1 8 /* http hex digit */
69 #define S_HEX2 9 /* http hex digit 2 */
70 #define S_MIME1 10 /* mime hex digit 1 */
71 #define S_MIME2 11 /* mime hex digit 2 */
72 #define S_EATCRNL 12 /* mime eating CRNL */
73 #define S_AMP 13 /* seen & */
74 #define S_NUMBER 14 /* collecting number */
75 #define S_STRING 15 /* collecting string */
77 #define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7')
78 #define xtod(c) (isdigit(c) ? (c - '0') : ((tolower(c) - 'a') + 10))
79 #define XTOD(c) (isdigit(c) ? (c - '0') : ((c - 'A') + 10))
82 * RFC 1866
84 static const struct nv {
85 char name[7];
86 uint8_t value;
87 } nv[] = {
88 { "AElig", 198 }, /* capital AE diphthong (ligature) */
89 { "Aacute", 193 }, /* capital A, acute accent */
90 { "Acirc", 194 }, /* capital A, circumflex accent */
91 { "Agrave", 192 }, /* capital A, grave accent */
92 { "Aring", 197 }, /* capital A, ring */
93 { "Atilde", 195 }, /* capital A, tilde */
94 { "Auml", 196 }, /* capital A, dieresis or umlaut mark */
95 { "Ccedil", 199 }, /* capital C, cedilla */
96 { "ETH", 208 }, /* capital Eth, Icelandic */
97 { "Eacute", 201 }, /* capital E, acute accent */
98 { "Ecirc", 202 }, /* capital E, circumflex accent */
99 { "Egrave", 200 }, /* capital E, grave accent */
100 { "Euml", 203 }, /* capital E, dieresis or umlaut mark */
101 { "Iacute", 205 }, /* capital I, acute accent */
102 { "Icirc", 206 }, /* capital I, circumflex accent */
103 { "Igrave", 204 }, /* capital I, grave accent */
104 { "Iuml", 207 }, /* capital I, dieresis or umlaut mark */
105 { "Ntilde", 209 }, /* capital N, tilde */
106 { "Oacute", 211 }, /* capital O, acute accent */
107 { "Ocirc", 212 }, /* capital O, circumflex accent */
108 { "Ograve", 210 }, /* capital O, grave accent */
109 { "Oslash", 216 }, /* capital O, slash */
110 { "Otilde", 213 }, /* capital O, tilde */
111 { "Ouml", 214 }, /* capital O, dieresis or umlaut mark */
112 { "THORN", 222 }, /* capital THORN, Icelandic */
113 { "Uacute", 218 }, /* capital U, acute accent */
114 { "Ucirc", 219 }, /* capital U, circumflex accent */
115 { "Ugrave", 217 }, /* capital U, grave accent */
116 { "Uuml", 220 }, /* capital U, dieresis or umlaut mark */
117 { "Yacute", 221 }, /* capital Y, acute accent */
118 { "aacute", 225 }, /* small a, acute accent */
119 { "acirc", 226 }, /* small a, circumflex accent */
120 { "acute", 180 }, /* acute accent */
121 { "aelig", 230 }, /* small ae diphthong (ligature) */
122 { "agrave", 224 }, /* small a, grave accent */
123 { "amp", 38 }, /* ampersand */
124 { "aring", 229 }, /* small a, ring */
125 { "atilde", 227 }, /* small a, tilde */
126 { "auml", 228 }, /* small a, dieresis or umlaut mark */
127 { "brvbar", 166 }, /* broken (vertical) bar */
128 { "ccedil", 231 }, /* small c, cedilla */
129 { "cedil", 184 }, /* cedilla */
130 { "cent", 162 }, /* cent sign */
131 { "copy", 169 }, /* copyright sign */
132 { "curren", 164 }, /* general currency sign */
133 { "deg", 176 }, /* degree sign */
134 { "divide", 247 }, /* divide sign */
135 { "eacute", 233 }, /* small e, acute accent */
136 { "ecirc", 234 }, /* small e, circumflex accent */
137 { "egrave", 232 }, /* small e, grave accent */
138 { "eth", 240 }, /* small eth, Icelandic */
139 { "euml", 235 }, /* small e, dieresis or umlaut mark */
140 { "frac12", 189 }, /* fraction one-half */
141 { "frac14", 188 }, /* fraction one-quarter */
142 { "frac34", 190 }, /* fraction three-quarters */
143 { "gt", 62 }, /* greater than */
144 { "iacute", 237 }, /* small i, acute accent */
145 { "icirc", 238 }, /* small i, circumflex accent */
146 { "iexcl", 161 }, /* inverted exclamation mark */
147 { "igrave", 236 }, /* small i, grave accent */
148 { "iquest", 191 }, /* inverted question mark */
149 { "iuml", 239 }, /* small i, dieresis or umlaut mark */
150 { "laquo", 171 }, /* angle quotation mark, left */
151 { "lt", 60 }, /* less than */
152 { "macr", 175 }, /* macron */
153 { "micro", 181 }, /* micro sign */
154 { "middot", 183 }, /* middle dot */
155 { "nbsp", 160 }, /* no-break space */
156 { "not", 172 }, /* not sign */
157 { "ntilde", 241 }, /* small n, tilde */
158 { "oacute", 243 }, /* small o, acute accent */
159 { "ocirc", 244 }, /* small o, circumflex accent */
160 { "ograve", 242 }, /* small o, grave accent */
161 { "ordf", 170 }, /* ordinal indicator, feminine */
162 { "ordm", 186 }, /* ordinal indicator, masculine */
163 { "oslash", 248 }, /* small o, slash */
164 { "otilde", 245 }, /* small o, tilde */
165 { "ouml", 246 }, /* small o, dieresis or umlaut mark */
166 { "para", 182 }, /* pilcrow (paragraph sign) */
167 { "plusmn", 177 }, /* plus-or-minus sign */
168 { "pound", 163 }, /* pound sterling sign */
169 { "quot", 34 }, /* double quote */
170 { "raquo", 187 }, /* angle quotation mark, right */
171 { "reg", 174 }, /* registered sign */
172 { "sect", 167 }, /* section sign */
173 { "shy", 173 }, /* soft hyphen */
174 { "sup1", 185 }, /* superscript one */
175 { "sup2", 178 }, /* superscript two */
176 { "sup3", 179 }, /* superscript three */
177 { "szlig", 223 }, /* small sharp s, German (sz ligature) */
178 { "thorn", 254 }, /* small thorn, Icelandic */
179 { "times", 215 }, /* multiply sign */
180 { "uacute", 250 }, /* small u, acute accent */
181 { "ucirc", 251 }, /* small u, circumflex accent */
182 { "ugrave", 249 }, /* small u, grave accent */
183 { "uml", 168 }, /* umlaut (dieresis) */
184 { "uuml", 252 }, /* small u, dieresis or umlaut mark */
185 { "yacute", 253 }, /* small y, acute accent */
186 { "yen", 165 }, /* yen sign */
187 { "yuml", 255 }, /* small y, dieresis or umlaut mark */
191 * unvis - decode characters previously encoded by vis
194 unvis(char *cp, int c, int *astate, int flag)
196 unsigned char uc = (unsigned char)c;
197 unsigned char st, ia, is, lc;
200 * Bottom 8 bits of astate hold the state machine state.
201 * Top 8 bits hold the current character in the http 1866 nv string decoding
203 #define GS(a) ((a) & 0xff)
204 #define SS(a, b) (((uint32_t)(a) << 24) | (b))
205 #define GI(a) ((uint32_t)(a) >> 24)
207 _DIAGASSERT(cp != NULL);
208 _DIAGASSERT(astate != NULL);
209 st = GS(*astate);
211 if (flag & UNVIS_END) {
212 switch (st) {
213 case S_OCTAL2:
214 case S_OCTAL3:
215 case S_HEX2:
216 *astate = SS(0, S_GROUND);
217 return UNVIS_VALID;
218 case S_GROUND:
219 return UNVIS_NOCHAR;
220 default:
221 return UNVIS_SYNBAD;
225 switch (st) {
227 case S_GROUND:
228 *cp = 0;
229 if ((flag & VIS_NOESCAPE) == 0 && c == '\\') {
230 *astate = SS(0, S_START);
231 return UNVIS_NOCHAR;
233 if ((flag & VIS_HTTP1808) && c == '%') {
234 *astate = SS(0, S_HEX1);
235 return UNVIS_NOCHAR;
237 if ((flag & VIS_HTTP1866) && c == '&') {
238 *astate = SS(0, S_AMP);
239 return UNVIS_NOCHAR;
241 if ((flag & VIS_MIMESTYLE) && c == '=') {
242 *astate = SS(0, S_MIME1);
243 return UNVIS_NOCHAR;
245 *cp = c;
246 return UNVIS_VALID;
248 case S_START:
249 switch(c) {
250 case '\\':
251 *cp = c;
252 *astate = SS(0, S_GROUND);
253 return UNVIS_VALID;
254 case '0': case '1': case '2': case '3':
255 case '4': case '5': case '6': case '7':
256 *cp = (c - '0');
257 *astate = SS(0, S_OCTAL2);
258 return UNVIS_NOCHAR;
259 case 'M':
260 *cp = (char)0200;
261 *astate = SS(0, S_META);
262 return UNVIS_NOCHAR;
263 case '^':
264 *astate = SS(0, S_CTRL);
265 return UNVIS_NOCHAR;
266 case 'n':
267 *cp = '\n';
268 *astate = SS(0, S_GROUND);
269 return UNVIS_VALID;
270 case 'r':
271 *cp = '\r';
272 *astate = SS(0, S_GROUND);
273 return UNVIS_VALID;
274 case 'b':
275 *cp = '\b';
276 *astate = SS(0, S_GROUND);
277 return UNVIS_VALID;
278 case 'a':
279 *cp = '\007';
280 *astate = SS(0, S_GROUND);
281 return UNVIS_VALID;
282 case 'v':
283 *cp = '\v';
284 *astate = SS(0, S_GROUND);
285 return UNVIS_VALID;
286 case 't':
287 *cp = '\t';
288 *astate = SS(0, S_GROUND);
289 return UNVIS_VALID;
290 case 'f':
291 *cp = '\f';
292 *astate = SS(0, S_GROUND);
293 return UNVIS_VALID;
294 case 's':
295 *cp = ' ';
296 *astate = SS(0, S_GROUND);
297 return UNVIS_VALID;
298 case 'E':
299 *cp = '\033';
300 *astate = SS(0, S_GROUND);
301 return UNVIS_VALID;
302 case 'x':
303 *astate = SS(0, S_HEX);
304 return UNVIS_NOCHAR;
305 case '\n':
307 * hidden newline
309 *astate = SS(0, S_GROUND);
310 return UNVIS_NOCHAR;
311 case '$':
313 * hidden marker
315 *astate = SS(0, S_GROUND);
316 return UNVIS_NOCHAR;
317 default:
318 if (isgraph(c)) {
319 *cp = c;
320 *astate = SS(0, S_GROUND);
321 return UNVIS_VALID;
324 goto bad;
326 case S_META:
327 if (c == '-')
328 *astate = SS(0, S_META1);
329 else if (c == '^')
330 *astate = SS(0, S_CTRL);
331 else
332 goto bad;
333 return UNVIS_NOCHAR;
335 case S_META1:
336 *astate = SS(0, S_GROUND);
337 *cp |= c;
338 return UNVIS_VALID;
340 case S_CTRL:
341 if (c == '?')
342 *cp |= 0177;
343 else
344 *cp |= c & 037;
345 *astate = SS(0, S_GROUND);
346 return UNVIS_VALID;
348 case S_OCTAL2: /* second possible octal digit */
349 if (isoctal(uc)) {
351 * yes - and maybe a third
353 *cp = (*cp << 3) + (c - '0');
354 *astate = SS(0, S_OCTAL3);
355 return UNVIS_NOCHAR;
358 * no - done with current sequence, push back passed char
360 *astate = SS(0, S_GROUND);
361 return UNVIS_VALIDPUSH;
363 case S_OCTAL3: /* third possible octal digit */
364 *astate = SS(0, S_GROUND);
365 if (isoctal(uc)) {
366 *cp = (*cp << 3) + (c - '0');
367 return UNVIS_VALID;
370 * we were done, push back passed char
372 return UNVIS_VALIDPUSH;
374 case S_HEX:
375 if (!isxdigit(uc))
376 goto bad;
377 /*FALLTHROUGH*/
378 case S_HEX1:
379 if (isxdigit(uc)) {
380 *cp = xtod(uc);
381 *astate = SS(0, S_HEX2);
382 return UNVIS_NOCHAR;
385 * no - done with current sequence, push back passed char
387 *astate = SS(0, S_GROUND);
388 return UNVIS_VALIDPUSH;
390 case S_HEX2:
391 *astate = S_GROUND;
392 if (isxdigit(uc)) {
393 *cp = xtod(uc) | (*cp << 4);
394 return UNVIS_VALID;
396 return UNVIS_VALIDPUSH;
398 case S_MIME1:
399 if (uc == '\n' || uc == '\r') {
400 *astate = SS(0, S_EATCRNL);
401 return UNVIS_NOCHAR;
403 if (isxdigit(uc) && (isdigit(uc) || isupper(uc))) {
404 *cp = XTOD(uc);
405 *astate = SS(0, S_MIME2);
406 return UNVIS_NOCHAR;
408 goto bad;
410 case S_MIME2:
411 if (isxdigit(uc) && (isdigit(uc) || isupper(uc))) {
412 *astate = SS(0, S_GROUND);
413 *cp = XTOD(uc) | (*cp << 4);
414 return UNVIS_VALID;
416 goto bad;
418 case S_EATCRNL:
419 switch (uc) {
420 case '\r':
421 case '\n':
422 return UNVIS_NOCHAR;
423 case '=':
424 *astate = SS(0, S_MIME1);
425 return UNVIS_NOCHAR;
426 default:
427 *cp = uc;
428 *astate = SS(0, S_GROUND);
429 return UNVIS_VALID;
432 case S_AMP:
433 *cp = 0;
434 if (uc == '#') {
435 *astate = SS(0, S_NUMBER);
436 return UNVIS_NOCHAR;
438 *astate = SS(0, S_STRING);
439 /*FALLTHROUGH*/
441 case S_STRING:
442 ia = *cp; /* index in the array */
443 is = GI(*astate); /* index in the string */
444 lc = is == 0 ? 0 : nv[ia].name[is - 1]; /* last character */
446 if (uc == ';')
447 uc = '\0';
449 for (; ia < __arraycount(nv); ia++) {
450 if (is != 0 && nv[ia].name[is - 1] != lc)
451 goto bad;
452 if (nv[ia].name[is] == uc)
453 break;
456 if (ia == __arraycount(nv))
457 goto bad;
459 if (uc != 0) {
460 *cp = ia;
461 *astate = SS(is + 1, S_STRING);
462 return UNVIS_NOCHAR;
465 *cp = nv[ia].value;
466 *astate = SS(0, S_GROUND);
467 return UNVIS_VALID;
469 case S_NUMBER:
470 if (uc == ';')
471 return UNVIS_VALID;
472 if (!isdigit(uc))
473 goto bad;
474 *cp += (*cp * 10) + uc - '0';
475 return UNVIS_NOCHAR;
477 default:
478 bad:
480 * decoder in unknown state - (probably uninitialized)
482 *astate = SS(0, S_GROUND);
483 return UNVIS_SYNBAD;
488 * strnunvisx - decode src into dst
490 * Number of chars decoded into dst is returned, -1 on error.
491 * Dst is null terminated.
495 strnunvisx(char *dst, size_t dlen, const char *src, int flag)
497 char c;
498 char t = '\0', *start = dst;
499 int state = 0;
501 _DIAGASSERT(src != NULL);
502 _DIAGASSERT(dst != NULL);
503 #define CHECKSPACE() \
504 do { \
505 if (dlen-- == 0) { \
506 errno = ENOSPC; \
507 return -1; \
509 } while (/*CONSTCOND*/0)
511 while ((c = *src++) != '\0') {
512 again:
513 switch (unvis(&t, c, &state, flag)) {
514 case UNVIS_VALID:
515 CHECKSPACE();
516 *dst++ = t;
517 break;
518 case UNVIS_VALIDPUSH:
519 CHECKSPACE();
520 *dst++ = t;
521 goto again;
522 case 0:
523 case UNVIS_NOCHAR:
524 break;
525 case UNVIS_SYNBAD:
526 errno = EINVAL;
527 return -1;
528 default:
529 _DIAGASSERT(/*CONSTCOND*/0);
530 errno = EINVAL;
531 return -1;
534 if (unvis(&t, c, &state, UNVIS_END) == UNVIS_VALID) {
535 CHECKSPACE();
536 *dst++ = t;
538 CHECKSPACE();
539 *dst = '\0';
540 return (int)(dst - start);
544 strunvisx(char *dst, const char *src, int flag)
546 return strnunvisx(dst, (size_t)~0, src, flag);
550 strunvis(char *dst, const char *src)
552 return strnunvisx(dst, (size_t)~0, src, 0);
556 strnunvis(char *dst, size_t dlen, const char *src)
558 return strnunvisx(dst, dlen, src, 0);
560 #endif