Try handle strerror_r more correct
[heimdal.git] / lib / roken / vis.c
blob155b148e86885925b9dd90c2e84217f7b0067d6a
1 /* $NetBSD: vis.c,v 1.37 2008/07/25 22:29:23 dsl 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 /*-
33 * Copyright (c) 1999, 2005 The NetBSD Foundation, Inc.
34 * All rights reserved.
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
45 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
46 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
47 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
48 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
49 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
50 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
51 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
52 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
53 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
54 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
55 * POSSIBILITY OF SUCH DAMAGE.
58 #if 1
59 #include <config.h>
60 #include "roken.h"
61 #ifndef _DIAGASSERT
62 #define _DIAGASSERT(X)
63 #endif
64 #else /* heimdal */
65 #include <sys/cdefs.h>
66 #if defined(LIBC_SCCS) && !defined(lint)
67 __RCSID("$NetBSD: vis.c,v 1.37 2008/07/25 22:29:23 dsl Exp $");
68 #endif /* LIBC_SCCS and not lint */
70 #include "namespace.h"
71 #endif /* heimdal */
73 #include <sys/types.h>
75 #include <assert.h>
76 #include <ctype.h>
77 #include <limits.h>
78 #include <stdio.h>
79 #include <string.h>
80 #include <vis.h>
81 #include <stdlib.h>
83 #if 0
84 #ifdef __weak_alias
85 __weak_alias(strsvis,_strsvis)
86 __weak_alias(strsvisx,_strsvisx)
87 __weak_alias(strvis,_strvis)
88 __weak_alias(strvisx,_strvisx)
89 __weak_alias(svis,_svis)
90 __weak_alias(vis,_vis)
91 #endif
92 #endif
94 #if !HAVE_VIS || !HAVE_SVIS
95 #include <ctype.h>
96 #include <limits.h>
97 #include <stdio.h>
98 #include <string.h>
100 static char *do_svis(char *, int, int, int, const char *);
102 #undef BELL
103 #if defined(__STDC__)
104 #define BELL '\a'
105 #else
106 #define BELL '\007'
107 #endif
109 char * ROKEN_LIB_FUNCTION
110 rk_vis (char *, int, int, int);
111 char * ROKEN_LIB_FUNCTION
112 rk_svis (char *, int, int, int, const char *);
113 int ROKEN_LIB_FUNCTION
114 rk_strvis (char *, const char *, int);
115 int ROKEN_LIB_FUNCTION
116 rk_strsvis (char *, const char *, int, const char *);
117 int ROKEN_LIB_FUNCTION
118 rk_strvisx (char *, const char *, size_t, int);
119 int ROKEN_LIB_FUNCTION
120 rk_strsvisx (char *, const char *, size_t, int, const char *);
123 #define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7')
124 #define iswhite(c) (c == ' ' || c == '\t' || c == '\n')
125 #define issafe(c) (c == '\b' || c == BELL || c == '\r')
126 #define xtoa(c) "0123456789abcdef"[c]
128 #define MAXEXTRAS 5
130 #define MAKEEXTRALIST(flag, extra, orig_str) \
131 do { \
132 const char *orig = orig_str; \
133 const char *o = orig; \
134 char *e; \
135 while (*o++) \
136 continue; \
137 extra = malloc((size_t)((o - orig) + MAXEXTRAS)); \
138 if (!extra) break; \
139 for (o = orig, e = extra; (*e++ = *o++) != '\0';) \
140 continue; \
141 e--; \
142 if (flag & VIS_SP) *e++ = ' '; \
143 if (flag & VIS_TAB) *e++ = '\t'; \
144 if (flag & VIS_NL) *e++ = '\n'; \
145 if ((flag & VIS_NOSLASH) == 0) *e++ = '\\'; \
146 *e = '\0'; \
147 } while (/*CONSTCOND*/0)
150 * This is do_hvis, for HTTP style (RFC 1808)
152 static char *
153 do_hvis(char *dst, int c, int flag, int nextc, const char *extra)
155 if (!isascii(c) || !isalnum(c) || strchr("$-_.+!*'(),", c) != NULL) {
156 *dst++ = '%';
157 *dst++ = xtoa(((unsigned int)c >> 4) & 0xf);
158 *dst++ = xtoa((unsigned int)c & 0xf);
159 } else {
160 dst = do_svis(dst, c, flag, nextc, extra);
162 return dst;
166 * This is do_vis, the central code of vis.
167 * dst: Pointer to the destination buffer
168 * c: Character to encode
169 * flag: Flag word
170 * nextc: The character following 'c'
171 * extra: Pointer to the list of extra characters to be
172 * backslash-protected.
174 static char *
175 do_svis(char *dst, int c, int flag, int nextc, const char *extra)
177 int isextra;
178 isextra = strchr(extra, c) != NULL;
179 if (!isextra && isascii(c) && (isgraph(c) || iswhite(c) ||
180 ((flag & VIS_SAFE) && issafe(c)))) {
181 *dst++ = c;
182 return dst;
184 if (flag & VIS_CSTYLE) {
185 switch (c) {
186 case '\n':
187 *dst++ = '\\'; *dst++ = 'n';
188 return dst;
189 case '\r':
190 *dst++ = '\\'; *dst++ = 'r';
191 return dst;
192 case '\b':
193 *dst++ = '\\'; *dst++ = 'b';
194 return dst;
195 case BELL:
196 *dst++ = '\\'; *dst++ = 'a';
197 return dst;
198 case '\v':
199 *dst++ = '\\'; *dst++ = 'v';
200 return dst;
201 case '\t':
202 *dst++ = '\\'; *dst++ = 't';
203 return dst;
204 case '\f':
205 *dst++ = '\\'; *dst++ = 'f';
206 return dst;
207 case ' ':
208 *dst++ = '\\'; *dst++ = 's';
209 return dst;
210 case '\0':
211 *dst++ = '\\'; *dst++ = '0';
212 if (isoctal(nextc)) {
213 *dst++ = '0';
214 *dst++ = '0';
216 return dst;
217 default:
218 if (isgraph(c)) {
219 *dst++ = '\\'; *dst++ = c;
220 return dst;
224 if (isextra || ((c & 0177) == ' ') || (flag & VIS_OCTAL)) {
225 *dst++ = '\\';
226 *dst++ = (u_char)(((unsigned int)(u_char)c >> 6) & 03) + '0';
227 *dst++ = (u_char)(((unsigned int)(u_char)c >> 3) & 07) + '0';
228 *dst++ = (u_char)( c & 07) + '0';
229 } else {
230 if ((flag & VIS_NOSLASH) == 0) *dst++ = '\\';
231 if (c & 0200) {
232 c &= 0177; *dst++ = 'M';
234 if (iscntrl(c)) {
235 *dst++ = '^';
236 if (c == 0177)
237 *dst++ = '?';
238 else
239 *dst++ = c + '@';
240 } else {
241 *dst++ = '-'; *dst++ = c;
244 return dst;
249 * svis - visually encode characters, also encoding the characters
250 * pointed to by `extra'
252 char * ROKEN_LIB_FUNCTION
253 rk_svis(char *dst, int c, int flag, int nextc, const char *extra)
255 char *nextra = NULL;
257 _DIAGASSERT(dst != NULL);
258 _DIAGASSERT(extra != NULL);
259 MAKEEXTRALIST(flag, nextra, extra);
260 if (!nextra) {
261 *dst = '\0'; /* can't create nextra, return "" */
262 return dst;
264 if (flag & VIS_HTTPSTYLE)
265 dst = do_hvis(dst, c, flag, nextc, nextra);
266 else
267 dst = do_svis(dst, c, flag, nextc, nextra);
268 free(nextra);
269 *dst = '\0';
270 return dst;
275 * strsvis, strsvisx - visually encode characters from src into dst
277 * Extra is a pointer to a \0-terminated list of characters to
278 * be encoded, too. These functions are useful e. g. to
279 * encode strings in such a way so that they are not interpreted
280 * by a shell.
282 * Dst must be 4 times the size of src to account for possible
283 * expansion. The length of dst, not including the trailing NULL,
284 * is returned.
286 * Strsvisx encodes exactly len bytes from src into dst.
287 * This is useful for encoding a block of data.
289 int ROKEN_LIB_FUNCTION
290 rk_strsvis(char *dst, const char *csrc, int flag, const char *extra)
292 int c;
293 char *start;
294 char *nextra = NULL;
295 const unsigned char *src = (const unsigned char *)csrc;
297 _DIAGASSERT(dst != NULL);
298 _DIAGASSERT(src != NULL);
299 _DIAGASSERT(extra != NULL);
300 MAKEEXTRALIST(flag, nextra, extra);
301 if (!nextra) {
302 *dst = '\0'; /* can't create nextra, return "" */
303 return 0;
305 if (flag & VIS_HTTPSTYLE) {
306 for (start = dst; (c = *src++) != '\0'; /* empty */)
307 dst = do_hvis(dst, c, flag, *src, nextra);
308 } else {
309 for (start = dst; (c = *src++) != '\0'; /* empty */)
310 dst = do_svis(dst, c, flag, *src, nextra);
312 free(nextra);
313 *dst = '\0';
314 return (dst - start);
318 int ROKEN_LIB_FUNCTION
319 rk_strsvisx(char *dst, const char *csrc, size_t len, int flag, const char *extra)
321 unsigned char c;
322 char *start;
323 char *nextra = NULL;
324 const unsigned char *src = (const unsigned char *)csrc;
326 _DIAGASSERT(dst != NULL);
327 _DIAGASSERT(src != NULL);
328 _DIAGASSERT(extra != NULL);
329 MAKEEXTRALIST(flag, nextra, extra);
330 if (! nextra) {
331 *dst = '\0'; /* can't create nextra, return "" */
332 return 0;
335 if (flag & VIS_HTTPSTYLE) {
336 for (start = dst; len > 0; len--) {
337 c = *src++;
338 dst = do_hvis(dst, c, flag, len ? *src : '\0', nextra);
340 } else {
341 for (start = dst; len > 0; len--) {
342 c = *src++;
343 dst = do_svis(dst, c, flag, len ? *src : '\0', nextra);
346 free(nextra);
347 *dst = '\0';
348 return (dst - start);
350 #endif
352 #if !HAVE_VIS
354 * vis - visually encode characters
356 char * ROKEN_LIB_FUNCTION
357 rk_vis(char *dst, int c, int flag, int nextc)
359 char *extra = NULL;
360 unsigned char uc = (unsigned char)c;
362 _DIAGASSERT(dst != NULL);
364 MAKEEXTRALIST(flag, extra, "");
365 if (! extra) {
366 *dst = '\0'; /* can't create extra, return "" */
367 return dst;
369 if (flag & VIS_HTTPSTYLE)
370 dst = do_hvis(dst, uc, flag, nextc, extra);
371 else
372 dst = do_svis(dst, uc, flag, nextc, extra);
373 free(extra);
374 *dst = '\0';
375 return dst;
380 * strvis, strvisx - visually encode characters from src into dst
382 * Dst must be 4 times the size of src to account for possible
383 * expansion. The length of dst, not including the trailing NULL,
384 * is returned.
386 * Strvisx encodes exactly len bytes from src into dst.
387 * This is useful for encoding a block of data.
389 int ROKEN_LIB_FUNCTION
390 rk_strvis(char *dst, const char *src, int flag)
392 char *extra = NULL;
393 int rv;
395 MAKEEXTRALIST(flag, extra, "");
396 if (!extra) {
397 *dst = '\0'; /* can't create extra, return "" */
398 return 0;
400 rv = strsvis(dst, src, flag, extra);
401 free(extra);
402 return rv;
406 int ROKEN_LIB_FUNCTION
407 rk_strvisx(char *dst, const char *src, size_t len, int flag)
409 char *extra = NULL;
410 int rv;
412 MAKEEXTRALIST(flag, extra, "");
413 if (!extra) {
414 *dst = '\0'; /* can't create extra, return "" */
415 return 0;
417 rv = strsvisx(dst, src, len, flag, extra);
418 free(extra);
419 return rv;
421 #endif