1 /* $OpenBSD: vis.c,v 1.25 2015/09/13 11:32:51 guenther Exp $ */
3 * Copyright (c) 1989, 1993
4 * The Regents of the University of California. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. Neither the name of the University nor the names of its contributors
15 * may be used to endorse or promote products derived from this software
16 * without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 #include <sys/types.h>
39 #define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7')
40 #define isvisible(c,flag) \
41 (((c) == '\\' || (flag & VIS_ALL) == 0) && \
42 (((u_int)(c) <= UCHAR_MAX && isascii((u_char)(c)) && \
43 (((c) != '*' && (c) != '?' && (c) != '[' && (c) != '#') || \
44 (flag & VIS_GLOB) == 0) && isgraph((u_char)(c))) || \
45 ((flag & VIS_SP) == 0 && (c) == ' ') || \
46 ((flag & VIS_TAB) == 0 && (c) == '\t') || \
47 ((flag & VIS_NL) == 0 && (c) == '\n') || \
48 ((flag & VIS_SAFE) && ((c) == '\b' || \
49 (c) == '\007' || (c) == '\r' || \
50 isgraph((u_char)(c))))))
53 * vis - visually encode characters
56 vis(char *dst
, int c
, int flag
, int nextc
)
58 if (isvisible(c
, flag
)) {
59 if ((c
== '"' && (flag
& VIS_DQ
) != 0) ||
60 (c
== '\\' && (flag
& VIS_NOSLASH
) == 0))
67 if (flag
& VIS_CSTYLE
) {
104 if (isoctal(nextc
)) {
111 if (((c
& 0177) == ' ') || (flag
& VIS_OCTAL
) ||
112 ((flag
& VIS_GLOB
) && (c
== '*' || c
== '?' || c
== '[' || c
== '#'))) {
114 *dst
++ = ((u_char
)c
>> 6 & 07) + '0';
115 *dst
++ = ((u_char
)c
>> 3 & 07) + '0';
116 *dst
++ = ((u_char
)c
& 07) + '0';
119 if ((flag
& VIS_NOSLASH
) == 0)
125 if (iscntrl((u_char
)c
)) {
141 * strvis, strnvis, strvisx - visually encode characters from src into dst
143 * Dst must be 4 times the size of src to account for possible
144 * expansion. The length of dst, not including the trailing NULL,
147 * Strnvis will write no more than siz-1 bytes (and will NULL terminate).
148 * The number of bytes needed to fully encode the string is returned.
150 * Strvisx encodes exactly len bytes from src into dst.
151 * This is useful for encoding a block of data.
154 strvis(char *dst
, const char *src
, int flag
)
159 for (start
= dst
; (c
= *src
);)
160 dst
= vis(dst
, c
, flag
, *++src
);
162 return (dst
- start
);
166 strnvis(char *dst
, const char *src
, size_t siz
, int flag
)
173 for (start
= dst
, end
= start
+ siz
- 1; (c
= *src
) && dst
< end
; ) {
174 if (isvisible(c
, flag
)) {
175 if ((c
== '"' && (flag
& VIS_DQ
) != 0) ||
176 (c
== '\\' && (flag
& VIS_NOSLASH
) == 0)) {
177 /* need space for the extra '\\' */
178 if (dst
+ 1 >= end
) {
188 i
= vis(tbuf
, c
, flag
, *++src
) - tbuf
;
189 if (dst
+ i
<= end
) {
190 memcpy(dst
, tbuf
, i
);
201 /* adjust return value for truncation */
203 dst
+= vis(tbuf
, c
, flag
, *++src
) - tbuf
;
205 return (dst
- start
);
209 stravis(char **outp
, const char *src
, int flag
)
214 buf
= reallocarray(NULL
, 4, strlen(src
) + 1);
217 len
= strvis(buf
, src
, flag
);
219 *outp
= realloc(buf
, len
+ 1);
228 strvisx(char *dst
, const char *src
, size_t len
, int flag
)
233 for (start
= dst
; len
> 1; len
--) {
235 dst
= vis(dst
, c
, flag
, *++src
);
238 dst
= vis(dst
, *src
, flag
, '\0');
240 return (dst
- start
);