vis.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. /* $OpenBSD: vis.c,v 1.25 2015/09/13 11:32:51 guenther Exp $ */
  2. /*-
  3. * Copyright (c) 1989, 1993
  4. * The Regents of the University of California. All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  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.
  17. *
  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
  28. * SUCH DAMAGE.
  29. */
  30. /* OPENBSD ORIGINAL: lib/libc/gen/vis.c */
  31. #include "includes.h"
  32. #if !defined(HAVE_STRNVIS) || defined(BROKEN_STRNVIS)
  33. #include <sys/types.h>
  34. #include <errno.h>
  35. #include <ctype.h>
  36. #include <limits.h>
  37. #include <string.h>
  38. #include <stdlib.h>
  39. #include "vis.h"
  40. #define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7')
  41. #define isvisible(c,flag) \
  42. (((c) == '\\' || (flag & VIS_ALL) == 0) && \
  43. (((u_int)(c) <= UCHAR_MAX && isascii((u_char)(c)) && \
  44. (((c) != '*' && (c) != '?' && (c) != '[' && (c) != '#') || \
  45. (flag & VIS_GLOB) == 0) && isgraph((u_char)(c))) || \
  46. ((flag & VIS_SP) == 0 && (c) == ' ') || \
  47. ((flag & VIS_TAB) == 0 && (c) == '\t') || \
  48. ((flag & VIS_NL) == 0 && (c) == '\n') || \
  49. ((flag & VIS_SAFE) && ((c) == '\b' || \
  50. (c) == '\007' || (c) == '\r' || \
  51. isgraph((u_char)(c))))))
  52. /*
  53. * vis - visually encode characters
  54. */
  55. char *
  56. vis(char *dst, int c, int flag, int nextc)
  57. {
  58. if (isvisible(c, flag)) {
  59. if ((c == '"' && (flag & VIS_DQ) != 0) ||
  60. (c == '\\' && (flag & VIS_NOSLASH) == 0))
  61. *dst++ = '\\';
  62. *dst++ = c;
  63. *dst = '\0';
  64. return (dst);
  65. }
  66. if (flag & VIS_CSTYLE) {
  67. switch(c) {
  68. case '\n':
  69. *dst++ = '\\';
  70. *dst++ = 'n';
  71. goto done;
  72. case '\r':
  73. *dst++ = '\\';
  74. *dst++ = 'r';
  75. goto done;
  76. case '\b':
  77. *dst++ = '\\';
  78. *dst++ = 'b';
  79. goto done;
  80. case '\a':
  81. *dst++ = '\\';
  82. *dst++ = 'a';
  83. goto done;
  84. case '\v':
  85. *dst++ = '\\';
  86. *dst++ = 'v';
  87. goto done;
  88. case '\t':
  89. *dst++ = '\\';
  90. *dst++ = 't';
  91. goto done;
  92. case '\f':
  93. *dst++ = '\\';
  94. *dst++ = 'f';
  95. goto done;
  96. case ' ':
  97. *dst++ = '\\';
  98. *dst++ = 's';
  99. goto done;
  100. case '\0':
  101. *dst++ = '\\';
  102. *dst++ = '0';
  103. if (isoctal(nextc)) {
  104. *dst++ = '0';
  105. *dst++ = '0';
  106. }
  107. goto done;
  108. }
  109. }
  110. if (((c & 0177) == ' ') || (flag & VIS_OCTAL) ||
  111. ((flag & VIS_GLOB) && (c == '*' || c == '?' || c == '[' || c == '#'))) {
  112. *dst++ = '\\';
  113. *dst++ = ((u_char)c >> 6 & 07) + '0';
  114. *dst++ = ((u_char)c >> 3 & 07) + '0';
  115. *dst++ = ((u_char)c & 07) + '0';
  116. goto done;
  117. }
  118. if ((flag & VIS_NOSLASH) == 0)
  119. *dst++ = '\\';
  120. if (c & 0200) {
  121. c &= 0177;
  122. *dst++ = 'M';
  123. }
  124. if (iscntrl((u_char)c)) {
  125. *dst++ = '^';
  126. if (c == 0177)
  127. *dst++ = '?';
  128. else
  129. *dst++ = c + '@';
  130. } else {
  131. *dst++ = '-';
  132. *dst++ = c;
  133. }
  134. done:
  135. *dst = '\0';
  136. return (dst);
  137. }
  138. DEF_WEAK(vis);
  139. /*
  140. * strvis, strnvis, strvisx - visually encode characters from src into dst
  141. *
  142. * Dst must be 4 times the size of src to account for possible
  143. * expansion. The length of dst, not including the trailing NULL,
  144. * is returned.
  145. *
  146. * Strnvis will write no more than siz-1 bytes (and will NULL terminate).
  147. * The number of bytes needed to fully encode the string is returned.
  148. *
  149. * Strvisx encodes exactly len bytes from src into dst.
  150. * This is useful for encoding a block of data.
  151. */
  152. int
  153. strvis(char *dst, const char *src, int flag)
  154. {
  155. char c;
  156. char *start;
  157. for (start = dst; (c = *src);)
  158. dst = vis(dst, c, flag, *++src);
  159. *dst = '\0';
  160. return (dst - start);
  161. }
  162. DEF_WEAK(strvis);
  163. int
  164. strnvis(char *dst, const char *src, size_t siz, int flag)
  165. {
  166. char *start, *end;
  167. char tbuf[5];
  168. int c, i;
  169. i = 0;
  170. for (start = dst, end = start + siz - 1; (c = *src) && dst < end; ) {
  171. if (isvisible(c, flag)) {
  172. if ((c == '"' && (flag & VIS_DQ) != 0) ||
  173. (c == '\\' && (flag & VIS_NOSLASH) == 0)) {
  174. /* need space for the extra '\\' */
  175. if (dst + 1 >= end) {
  176. i = 2;
  177. break;
  178. }
  179. *dst++ = '\\';
  180. }
  181. i = 1;
  182. *dst++ = c;
  183. src++;
  184. } else {
  185. i = vis(tbuf, c, flag, *++src) - tbuf;
  186. if (dst + i <= end) {
  187. memcpy(dst, tbuf, i);
  188. dst += i;
  189. } else {
  190. src--;
  191. break;
  192. }
  193. }
  194. }
  195. if (siz > 0)
  196. *dst = '\0';
  197. if (dst + i > end) {
  198. /* adjust return value for truncation */
  199. while ((c = *src))
  200. dst += vis(tbuf, c, flag, *++src) - tbuf;
  201. }
  202. return (dst - start);
  203. }
  204. int
  205. stravis(char **outp, const char *src, int flag)
  206. {
  207. char *buf;
  208. int len, serrno;
  209. buf = reallocarray(NULL, 4, strlen(src) + 1);
  210. if (buf == NULL)
  211. return -1;
  212. len = strvis(buf, src, flag);
  213. serrno = errno;
  214. *outp = realloc(buf, len + 1);
  215. if (*outp == NULL) {
  216. *outp = buf;
  217. errno = serrno;
  218. }
  219. return (len);
  220. }
  221. int
  222. strvisx(char *dst, const char *src, size_t len, int flag)
  223. {
  224. char c;
  225. char *start;
  226. for (start = dst; len > 1; len--) {
  227. c = *src;
  228. dst = vis(dst, c, flag, *++src);
  229. }
  230. if (len)
  231. dst = vis(dst, *src, flag, '\0');
  232. *dst = '\0';
  233. return (dst - start);
  234. }
  235. #endif