blob: 6a520855d6c418ecb1384ef9571b122b134af1af [file] [log] [blame]
Junio C Hamano6fb737b2005-07-07 23:58:32 -07001#include "cache.h"
2#include "quote.h"
3
Dmitry Potapov5b8e6f82008-06-28 00:46:42 +04004int quote_path_fully = 1;
5
Junio C Hamano6fb737b2005-07-07 23:58:32 -07006/* Help to copy the thing properly quoted for the shell safety.
H. Peter Anvin77d604c2005-10-10 14:46:10 -07007 * any single quote is replaced with '\'', any exclamation point
8 * is replaced with '\!', and the whole thing is enclosed in a
Junio C Hamano6fb737b2005-07-07 23:58:32 -07009 *
10 * E.g.
11 * original sq_quote result
12 * name ==> name ==> 'name'
13 * a b ==> a b ==> 'a b'
14 * a'b ==> a'\''b ==> 'a'\''b'
H. Peter Anvin77d604c2005-10-10 14:46:10 -070015 * a!b ==> a'\!'b ==> 'a'\!'b'
Junio C Hamano6fb737b2005-07-07 23:58:32 -070016 */
Linus Torvalds35eb2d32005-10-23 14:30:45 -070017static inline int need_bs_quote(char c)
18{
19 return (c == '\'' || c == '!');
20}
21
Pierre Habouzit7a33bcb2007-09-20 00:42:13 +020022void sq_quote_buf(struct strbuf *dst, const char *src)
Junio C Hamano6fb737b2005-07-07 23:58:32 -070023{
Pierre Habouzit7a33bcb2007-09-20 00:42:13 +020024 char *to_free = NULL;
Junio C Hamano6fb737b2005-07-07 23:58:32 -070025
Pierre Habouzit7a33bcb2007-09-20 00:42:13 +020026 if (dst->buf == src)
Pierre Habouzitb315c5c2007-09-27 12:58:23 +020027 to_free = strbuf_detach(dst, NULL);
Pierre Habouzit7a33bcb2007-09-20 00:42:13 +020028
29 strbuf_addch(dst, '\'');
30 while (*src) {
Johannes Sixtc2015b32007-11-04 21:26:22 +010031 size_t len = strcspn(src, "'!");
Pierre Habouzit7a33bcb2007-09-20 00:42:13 +020032 strbuf_add(dst, src, len);
33 src += len;
34 while (need_bs_quote(*src)) {
35 strbuf_addstr(dst, "'\\");
36 strbuf_addch(dst, *src++);
37 strbuf_addch(dst, '\'');
Junio C Hamano6fb737b2005-07-07 23:58:32 -070038 }
39 }
Pierre Habouzit7a33bcb2007-09-20 00:42:13 +020040 strbuf_addch(dst, '\'');
41 free(to_free);
H. Peter Anvin77d604c2005-10-10 14:46:10 -070042}
43
Matthias Lederhofer575ba9d2006-06-25 15:56:18 +020044void sq_quote_print(FILE *stream, const char *src)
45{
46 char c;
47
48 fputc('\'', stream);
49 while ((c = *src++)) {
50 if (need_bs_quote(c)) {
51 fputs("'\\", stream);
52 fputc(c, stream);
53 fputc('\'', stream);
54 } else {
55 fputc(c, stream);
56 }
57 }
58 fputc('\'', stream);
59}
60
Christian Couderb319ce42007-12-03 05:51:50 +010061void sq_quote_argv(struct strbuf *dst, const char** argv, size_t maxlen)
Christian Couder7cf67202006-08-31 08:42:11 +020062{
Christian Couder7cf67202006-08-31 08:42:11 +020063 int i;
Christian Couder7cf67202006-08-31 08:42:11 +020064
Christian Couder7cf67202006-08-31 08:42:11 +020065 /* Copy into destination buffer. */
Christian Couderb319ce42007-12-03 05:51:50 +010066 strbuf_grow(dst, 255);
67 for (i = 0; argv[i]; ++i) {
Pierre Habouzit7a33bcb2007-09-20 00:42:13 +020068 strbuf_addch(dst, ' ');
69 sq_quote_buf(dst, argv[i]);
70 if (maxlen && dst->len > maxlen)
71 die("Too many or long arguments");
Christian Couder7cf67202006-08-31 08:42:11 +020072 }
Christian Couder86257aa2006-09-11 06:59:22 +020073}
74
Linus Torvalds35eb2d32005-10-23 14:30:45 -070075char *sq_dequote(char *arg)
76{
77 char *dst = arg;
78 char *src = arg;
79 char c;
80
81 if (*src != '\'')
82 return NULL;
83 for (;;) {
84 c = *++src;
85 if (!c)
86 return NULL;
87 if (c != '\'') {
88 *dst++ = c;
89 continue;
90 }
91 /* We stepped out of sq */
92 switch (*++src) {
93 case '\0':
94 *dst = 0;
95 return arg;
96 case '\\':
97 c = *++src;
98 if (need_bs_quote(c) && *++src == '\'') {
99 *dst++ = c;
100 continue;
101 }
102 /* Fallthrough */
103 default:
104 return NULL;
105 }
106 }
107}
108
Pierre Habouzit663af342007-09-20 00:42:15 +0200109/* 1 means: quote as octal
110 * 0 means: quote as octal if (quote_path_fully)
111 * -1 means: never quote
112 * c: quote as "\\c"
113 */
114#define X8(x) x, x, x, x, x, x, x, x
115#define X16(x) X8(x), X8(x)
116static signed char const sq_lookup[256] = {
117 /* 0 1 2 3 4 5 6 7 */
118 /* 0x00 */ 1, 1, 1, 1, 1, 1, 1, 'a',
119 /* 0x08 */ 'b', 't', 'n', 'v', 'f', 'r', 1, 1,
120 /* 0x10 */ X16(1),
121 /* 0x20 */ -1, -1, '"', -1, -1, -1, -1, -1,
122 /* 0x28 */ X16(-1), X16(-1), X16(-1),
123 /* 0x58 */ -1, -1, -1, -1,'\\', -1, -1, -1,
124 /* 0x60 */ X16(-1), X8(-1),
125 /* 0x78 */ -1, -1, -1, -1, -1, -1, -1, 1,
126 /* 0x80 */ /* set to 0 */
127};
128
Junio C Hamanof3fa1832007-11-08 15:35:32 -0800129static inline int sq_must_quote(char c)
130{
Pierre Habouzit663af342007-09-20 00:42:15 +0200131 return sq_lookup[(unsigned char)c] + quote_path_fully > 0;
132}
133
134/* returns the longest prefix not needing a quote up to maxlen if positive.
135 This stops at the first \0 because it's marked as a character needing an
136 escape */
137static size_t next_quote_pos(const char *s, ssize_t maxlen)
138{
139 size_t len;
140 if (maxlen < 0) {
141 for (len = 0; !sq_must_quote(s[len]); len++);
142 } else {
143 for (len = 0; len < maxlen && !sq_must_quote(s[len]); len++);
144 }
145 return len;
146}
147
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700148/*
149 * C-style name quoting.
150 *
Pierre Habouzit663af342007-09-20 00:42:15 +0200151 * (1) if sb and fp are both NULL, inspect the input name and counts the
152 * number of bytes that are needed to hold c_style quoted version of name,
153 * counting the double quotes around it but not terminating NUL, and
154 * returns it.
155 * However, if name does not need c_style quoting, it returns 0.
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700156 *
Pierre Habouzit663af342007-09-20 00:42:15 +0200157 * (2) if sb or fp are not NULL, it emits the c_style quoted version
158 * of name, enclosed with double quotes if asked and needed only.
159 * Return value is the same as in (1).
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700160 */
Pierre Habouzit663af342007-09-20 00:42:15 +0200161static size_t quote_c_style_counted(const char *name, ssize_t maxlen,
162 struct strbuf *sb, FILE *fp, int no_dq)
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700163{
164#undef EMIT
Pierre Habouzit663af342007-09-20 00:42:15 +0200165#define EMIT(c) \
166 do { \
167 if (sb) strbuf_addch(sb, (c)); \
168 if (fp) fputc((c), fp); \
169 count++; \
170 } while (0)
171#define EMITBUF(s, l) \
172 do { \
173 if (sb) strbuf_add(sb, (s), (l)); \
174 if (fp) fwrite((s), (l), 1, fp); \
175 count += (l); \
176 } while (0)
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700177
Pierre Habouzit663af342007-09-20 00:42:15 +0200178 size_t len, count = 0;
179 const char *p = name;
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700180
Pierre Habouzit663af342007-09-20 00:42:15 +0200181 for (;;) {
182 int ch;
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700183
Pierre Habouzit663af342007-09-20 00:42:15 +0200184 len = next_quote_pos(p, maxlen);
185 if (len == maxlen || !p[len])
Pavel Roskin50e7b062005-12-21 15:35:48 -0500186 break;
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700187
Pierre Habouzit663af342007-09-20 00:42:15 +0200188 if (!no_dq && p == name)
189 EMIT('"');
190
191 EMITBUF(p, len);
192 EMIT('\\');
193 p += len;
194 ch = (unsigned char)*p++;
195 if (sq_lookup[ch] >= ' ') {
196 EMIT(sq_lookup[ch]);
197 } else {
198 EMIT(((ch >> 6) & 03) + '0');
199 EMIT(((ch >> 3) & 07) + '0');
200 EMIT(((ch >> 0) & 07) + '0');
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700201 }
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700202 }
Pierre Habouzit663af342007-09-20 00:42:15 +0200203
204 EMITBUF(p, len);
205 if (p == name) /* no ending quote needed */
206 return 0;
207
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700208 if (!no_dq)
209 EMIT('"');
Pierre Habouzit663af342007-09-20 00:42:15 +0200210 return count;
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700211}
212
Pierre Habouzit663af342007-09-20 00:42:15 +0200213size_t quote_c_style(const char *name, struct strbuf *sb, FILE *fp, int nodq)
Junio C Hamano9ef2b3c2005-11-28 22:55:25 -0800214{
Pierre Habouzit663af342007-09-20 00:42:15 +0200215 return quote_c_style_counted(name, -1, sb, fp, nodq);
216}
217
Junio C Hamanod5625092007-12-26 17:13:36 -0800218void quote_two_c_style(struct strbuf *sb, const char *prefix, const char *path, int nodq)
219{
220 if (quote_c_style(prefix, NULL, NULL, 0) ||
221 quote_c_style(path, NULL, NULL, 0)) {
222 if (!nodq)
223 strbuf_addch(sb, '"');
224 quote_c_style(prefix, sb, NULL, 1);
225 quote_c_style(path, sb, NULL, 1);
226 if (!nodq)
227 strbuf_addch(sb, '"');
228 } else {
229 strbuf_addstr(sb, prefix);
230 strbuf_addstr(sb, path);
231 }
232}
233
Pierre Habouzit663af342007-09-20 00:42:15 +0200234void write_name_quoted(const char *name, FILE *fp, int terminator)
235{
236 if (terminator) {
237 quote_c_style(name, NULL, fp, 0);
238 } else {
239 fputs(name, fp);
240 }
241 fputc(terminator, fp);
242}
243
244extern void write_name_quotedpfx(const char *pfx, size_t pfxlen,
245 const char *name, FILE *fp, int terminator)
246{
247 int needquote = 0;
248
249 if (terminator) {
250 needquote = next_quote_pos(pfx, pfxlen) < pfxlen
251 || name[next_quote_pos(name, -1)];
252 }
253 if (needquote) {
254 fputc('"', fp);
255 quote_c_style_counted(pfx, pfxlen, NULL, fp, 1);
256 quote_c_style(name, NULL, fp, 1);
257 fputc('"', fp);
258 } else {
259 fwrite(pfx, pfxlen, 1, fp);
260 fputs(name, fp);
261 }
262 fputc(terminator, fp);
Junio C Hamano9ef2b3c2005-11-28 22:55:25 -0800263}
264
Dmitry Potapova734d0b2008-03-07 05:30:58 +0300265/* quote path as relative to the given prefix */
266char *quote_path_relative(const char *in, int len,
267 struct strbuf *out, const char *prefix)
268{
269 int needquote;
270
271 if (len < 0)
272 len = strlen(in);
273
274 /* "../" prefix itself does not need quoting, but "in" might. */
275 needquote = next_quote_pos(in, len) < len;
276 strbuf_setlen(out, 0);
277 strbuf_grow(out, len);
278
279 if (needquote)
280 strbuf_addch(out, '"');
281 if (prefix) {
282 int off = 0;
283 while (prefix[off] && off < len && prefix[off] == in[off])
284 if (prefix[off] == '/') {
285 prefix += off + 1;
286 in += off + 1;
287 len -= off + 1;
288 off = 0;
289 } else
290 off++;
291
292 for (; *prefix; prefix++)
293 if (*prefix == '/')
294 strbuf_addstr(out, "../");
295 }
296
297 quote_c_style_counted (in, len, out, NULL, 1);
298
299 if (needquote)
300 strbuf_addch(out, '"');
301 if (!out->len)
302 strbuf_addstr(out, "./");
303
304 return out->buf;
305}
306
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700307/*
308 * C-style name unquoting.
309 *
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200310 * Quoted should point at the opening double quote.
311 * + Returns 0 if it was able to unquote the string properly, and appends the
312 * result in the strbuf `sb'.
313 * + Returns -1 in case of error, and doesn't touch the strbuf. Though note
314 * that this function will allocate memory in the strbuf, so calling
315 * strbuf_release is mandatory whichever result unquote_c_style returns.
316 *
317 * Updates endp pointer to point at one past the ending double quote if given.
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700318 */
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200319int unquote_c_style(struct strbuf *sb, const char *quoted, const char **endp)
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700320{
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200321 size_t oldlen = sb->len, len;
322 int ch, ac;
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700323
324 if (*quoted++ != '"')
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200325 return -1;
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700326
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200327 for (;;) {
328 len = strcspn(quoted, "\"\\");
329 strbuf_add(sb, quoted, len);
330 quoted += len;
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700331
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200332 switch (*quoted++) {
333 case '"':
334 if (endp)
Pierre Habouzitc8744d62008-03-06 22:28:19 +0100335 *endp = quoted;
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200336 return 0;
337 case '\\':
338 break;
339 default:
340 goto error;
341 }
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700342
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200343 switch ((ch = *quoted++)) {
344 case 'a': ch = '\a'; break;
345 case 'b': ch = '\b'; break;
346 case 'f': ch = '\f'; break;
347 case 'n': ch = '\n'; break;
348 case 'r': ch = '\r'; break;
349 case 't': ch = '\t'; break;
350 case 'v': ch = '\v'; break;
351
352 case '\\': case '"':
353 break; /* verbatim */
354
355 /* octal values with first digit over 4 overflow */
356 case '0': case '1': case '2': case '3':
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700357 ac = ((ch - '0') << 6);
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200358 if ((ch = *quoted++) < '0' || '7' < ch)
359 goto error;
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700360 ac |= ((ch - '0') << 3);
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200361 if ((ch = *quoted++) < '0' || '7' < ch)
362 goto error;
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700363 ac |= (ch - '0');
364 ch = ac;
365 break;
366 default:
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200367 goto error;
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700368 }
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200369 strbuf_addch(sb, ch);
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700370 }
371
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200372 error:
373 strbuf_setlen(sb, oldlen);
374 return -1;
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -0700375}
376
Junio C Hamano9f613dd2006-09-15 13:30:02 -0700377/* quoting as a string literal for other languages */
378
379void perl_quote_print(FILE *stream, const char *src)
380{
381 const char sq = '\'';
382 const char bq = '\\';
383 char c;
384
385 fputc(sq, stream);
386 while ((c = *src++)) {
387 if (c == sq || c == bq)
388 fputc(bq, stream);
389 fputc(c, stream);
390 }
391 fputc(sq, stream);
392}
393
394void python_quote_print(FILE *stream, const char *src)
395{
396 const char sq = '\'';
397 const char bq = '\\';
398 const char nl = '\n';
399 char c;
400
401 fputc(sq, stream);
402 while ((c = *src++)) {
403 if (c == nl) {
404 fputc(bq, stream);
405 fputc('n', stream);
406 continue;
407 }
408 if (c == sq || c == bq)
409 fputc(bq, stream);
410 fputc(c, stream);
411 }
412 fputc(sq, stream);
413}
Shawn O. Pearce5558e552007-01-28 02:39:13 -0500414
415void tcl_quote_print(FILE *stream, const char *src)
416{
417 char c;
418
419 fputc('"', stream);
420 while ((c = *src++)) {
421 switch (c) {
422 case '[': case ']':
423 case '{': case '}':
424 case '$': case '\\': case '"':
425 fputc('\\', stream);
426 default:
427 fputc(c, stream);
428 break;
429 case '\f':
430 fputs("\\f", stream);
431 break;
432 case '\r':
433 fputs("\\r", stream);
434 break;
435 case '\n':
436 fputs("\\n", stream);
437 break;
438 case '\t':
439 fputs("\\t", stream);
440 break;
441 case '\v':
442 fputs("\\v", stream);
443 break;
444 }
445 }
446 fputc('"', stream);
447}