Release 4.11 tools/perf/util/quote.c
#include <stdlib.h>
#include "strbuf.h"
#include "quote.h"
#include "util.h"
/* Help to copy the thing properly quoted for the shell safety.
* any single quote is replaced with '\'', any exclamation point
* is replaced with '\!', and the whole thing is enclosed in a
*
* E.g.
* original sq_quote result
* name ==> name ==> 'name'
* a b ==> a b ==> 'a b'
* a'b ==> a'\''b ==> 'a'\''b'
* a!b ==> a'\!'b ==> 'a'\!'b'
*/
static inline int need_bs_quote(char c)
{
return (c == '\'' || c == '!');
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ingo Molnar | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
static int sq_quote_buf(struct strbuf *dst, const char *src)
{
char *to_free = NULL;
int ret;
if (dst->buf == src)
to_free = strbuf_detach(dst, NULL);
ret = strbuf_addch(dst, '\'');
while (!ret && *src) {
size_t len = strcspn(src, "'!");
ret = strbuf_add(dst, src, len);
src += len;
while (!ret && need_bs_quote(*src))
ret = strbuf_addf(dst, "'\\%c\'", *src++);
}
if (!ret)
ret = strbuf_addch(dst, '\'');
free(to_free);
return ret;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ingo Molnar | 103 | 78.03% | 1 | 33.33% |
Masami Hiramatsu | 28 | 21.21% | 1 | 33.33% |
Arnaldo Carvalho de Melo | 1 | 0.76% | 1 | 33.33% |
Total | 132 | 100.00% | 3 | 100.00% |
int sq_quote_argv(struct strbuf *dst, const char** argv, size_t maxlen)
{
int i, ret;
/* Copy into destination buffer. */
ret = strbuf_grow(dst, 255);
for (i = 0; !ret && argv[i]; ++i) {
ret = strbuf_addch(dst, ' ');
if (ret)
break;
ret = sq_quote_buf(dst, argv[i]);
if (maxlen && dst->len > maxlen)
return -ENOSPC;
}
return ret;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ingo Molnar | 72 | 75.00% | 1 | 33.33% |
Masami Hiramatsu | 20 | 20.83% | 1 | 33.33% |
Arnaldo Carvalho de Melo | 4 | 4.17% | 1 | 33.33% |
Total | 96 | 100.00% | 3 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ingo Molnar | 202 | 77.10% | 1 | 20.00% |
Masami Hiramatsu | 48 | 18.32% | 1 | 20.00% |
Arnaldo Carvalho de Melo | 12 | 4.58% | 3 | 60.00% |
Total | 262 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.