Blame view

kernel/linux-imx6_3.14.28/tools/perf/util/quote.c 1.24 KB
6b13f685e   김민수   BSP 최초 추가
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
  #include "cache.h"
  #include "quote.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 == '!');
  }
  
  static void sq_quote_buf(struct strbuf *dst, const char *src)
  {
  	char *to_free = NULL;
  
  	if (dst->buf == src)
  		to_free = strbuf_detach(dst, NULL);
  
  	strbuf_addch(dst, '\'');
  	while (*src) {
  		size_t len = strcspn(src, "'!");
  		strbuf_add(dst, src, len);
  		src += len;
  		while (need_bs_quote(*src)) {
  			strbuf_addstr(dst, "'\\");
  			strbuf_addch(dst, *src++);
  			strbuf_addch(dst, '\'');
  		}
  	}
  	strbuf_addch(dst, '\'');
  	free(to_free);
  }
  
  void sq_quote_argv(struct strbuf *dst, const char** argv, size_t maxlen)
  {
  	int i;
  
  	/* Copy into destination buffer. */
  	strbuf_grow(dst, 255);
  	for (i = 0; argv[i]; ++i) {
  		strbuf_addch(dst, ' ');
  		sq_quote_buf(dst, argv[i]);
  		if (maxlen && dst->len > maxlen)
  			die("Too many or long arguments");
  	}
  }