1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/* ISC license. */
#include <string.h>
#include <errno.h>
#include <skalibs/fmtscan.h>
#include <skalibs/stralloc.h>
#include <skalibs/skamisc.h>
int string_quote_nodelim_mustquote (stralloc *sa, char const *s, size_t len, char const *delim, size_t delimlen)
{
char class[256] = "dddddddaaaaaaaddddddddddddddddddcccccccccccccccceeeeeeeeeeccccccccccccccccccccccccccccccccccbcccceeeeeecccccccecccececececcccccddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd" ;
size_t base = sa->len ;
size_t i = 0 ;
int wasnull = !sa->s ;
for (; i < delimlen ; i++)
if (class[(unsigned char)delim[i]] == 'c')
class[(unsigned char)delim[i]] = 'b' ;
else return (errno = EINVAL, 0) ;
for (i = 0 ; i < len ; i++)
{
switch (class[(unsigned char)s[i]])
{
case 'a' :
{
static char const tab[7] = "abtnvfr" ;
char fmt[2] = "\\" ;
fmt[1] = tab[s[i] - 7] ;
if (!stralloc_catb(sa, fmt, 2)) goto err ;
break ;
}
case 'b' :
{
char fmt[2] = "\\" ;
fmt[1] = s[i] ;
if (!stralloc_catb(sa, fmt, 2)) goto err ;
break ;
}
case 'c' :
case 'e' :
{
if (!stralloc_catb(sa, s+i, 1)) goto err ;
break ;
}
case 'd' :
{
char fmt[5] = "\\0x" ;
ucharn_fmt(fmt+3, s+i, 1) ;
if (!stralloc_catb(sa, fmt, 5)) goto err ;
break ;
}
default : errno = EFAULT ; goto err ; /* can't happen */
}
}
return 1 ;
err:
if (wasnull) stralloc_free(sa) ; else sa->len = base ;
return 0 ;
}
|