summaryrefslogtreecommitdiff
path: root/quote.c
blob: 5e6fda311c5f5fdaa20b7e9d64e46c13b7d9cce8 (plain)
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
#include "cache.h"
#include "quote.h"
 
/* Help to copy the thing properly quoted for the shell safety.
 * any single quote is replaced with '\'', and the caller is
 * expected to enclose the result within a single quote pair.
 *
 * E.g.
 *  original     sq_quote     result
 *  name     ==> name      ==> 'name'
 *  a b      ==> a b       ==> 'a b'
 *  a'b      ==> a'\''b    ==> 'a'\''b'
 */
char *sq_quote(const char *src)
{
	static char *buf = NULL;
	int cnt, c;
	const char *cp;
	char *bp;
 
	/* count bytes needed to store the quoted string. */
	for (cnt = 3, cp = src; *cp; cnt++, cp++)
		if (*cp == '\'')
			cnt += 3;
 
	buf = xmalloc(cnt);
	bp = buf;
	*bp++ = '\'';
	while ((c = *src++)) {
		if (c != '\'')
			*bp++ = c;
		else {
			bp = strcpy(bp, "'\\''");
			bp += 4;
		}
	}
	*bp++ = '\'';
	*bp = 0;
	return buf;
}