Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 1 | #ifndef QUOTE_H |
| 2 | #define QUOTE_H |
| 3 | |
Jonathan Nieder | cf548ca | 2011-01-04 18:36:34 -0600 | [diff] [blame] | 4 | struct strbuf; |
Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 5 | |
Elijah Newren | 4711556 | 2023-04-11 00:42:04 -0700 | [diff] [blame] | 6 | extern int quote_path_fully; |
| 7 | |
Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 8 | /* Help to copy the thing properly quoted for the shell safety. |
H. Peter Anvin | 77d604c | 2005-10-10 14:46:10 -0700 | [diff] [blame] | 9 | * any single quote is replaced with '\'', any exclamation point |
| 10 | * is replaced with '\!', and the whole thing is enclosed in a |
| 11 | * single quote pair. |
Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 12 | * |
| 13 | * For example, if you are passing the result to system() as an |
| 14 | * argument: |
| 15 | * |
| 16 | * sprintf(cmd, "foobar %s %s", sq_quote(arg0), sq_quote(arg1)) |
| 17 | * |
| 18 | * would be appropriate. If the system() is going to call ssh to |
| 19 | * run the command on the other side: |
| 20 | * |
| 21 | * sprintf(cmd, "git-diff-tree %s %s", sq_quote(arg0), sq_quote(arg1)); |
| 22 | * sprintf(rcmd, "ssh %s %s", sq_quote(host), sq_quote(cmd)); |
| 23 | * |
| 24 | * Note that the above examples leak memory! Remember to free result from |
| 25 | * sq_quote() in a real application. |
H. Peter Anvin | 77d604c | 2005-10-10 14:46:10 -0700 | [diff] [blame] | 26 | * |
| 27 | * sq_quote_buf() writes to an existing buffer of specified size; it |
| 28 | * will return the number of characters that would have been written |
| 29 | * excluding the final null regardless of the buffer size. |
Jacob Keller | e70986d | 2016-02-29 14:58:34 -0800 | [diff] [blame] | 30 | * |
| 31 | * sq_quotef() quotes the entire formatted string as a single result. |
Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 32 | */ |
| 33 | |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 34 | void sq_quote_buf(struct strbuf *, const char *src); |
| 35 | void sq_quote_argv(struct strbuf *, const char **argv); |
Ævar Arnfjörð Bjarmason | 75d31ce | 2021-07-13 10:05:19 +0200 | [diff] [blame] | 36 | __attribute__((format (printf, 2, 3))) |
Denton Liu | b199d71 | 2019-04-29 04:28:20 -0400 | [diff] [blame] | 37 | void sq_quotef(struct strbuf *, const char *fmt, ...); |
Christian Couder | 86257aa | 2006-09-11 06:59:22 +0200 | [diff] [blame] | 38 | |
Jeff King | 1fbdab2 | 2018-01-15 17:59:44 +0700 | [diff] [blame] | 39 | /* |
| 40 | * These match their non-pretty variants, except that they avoid |
| 41 | * quoting when there are no exotic characters. These should only be used for |
| 42 | * human-readable output, as sq_dequote() is not smart enough to dequote it. |
| 43 | */ |
| 44 | void sq_quote_buf_pretty(struct strbuf *, const char *src); |
| 45 | void sq_quote_argv_pretty(struct strbuf *, const char **argv); |
Jeff Hostetler | c2b890a | 2019-08-09 08:00:55 -0700 | [diff] [blame] | 46 | void sq_append_quote_argv_pretty(struct strbuf *dst, const char **argv); |
Jeff King | 1fbdab2 | 2018-01-15 17:59:44 +0700 | [diff] [blame] | 47 | |
Jeff King | 13c4495 | 2021-01-12 13:26:49 +0100 | [diff] [blame] | 48 | /* |
| 49 | * This unwraps what sq_quote() produces in place, but returns |
Linus Torvalds | 35eb2d3 | 2005-10-23 14:30:45 -0700 | [diff] [blame] | 50 | * NULL if the input does not look like what sq_quote would have |
Jeff King | 13c4495 | 2021-01-12 13:26:49 +0100 | [diff] [blame] | 51 | * produced (the full string must be a single quoted item). |
Linus Torvalds | 35eb2d3 | 2005-10-23 14:30:45 -0700 | [diff] [blame] | 52 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 53 | char *sq_dequote(char *); |
Linus Torvalds | 35eb2d3 | 2005-10-23 14:30:45 -0700 | [diff] [blame] | 54 | |
Christian Couder | ebbc088 | 2009-03-29 11:44:44 +0200 | [diff] [blame] | 55 | /* |
Jeff King | 13c4495 | 2021-01-12 13:26:49 +0100 | [diff] [blame] | 56 | * Like sq_dequote(), but dequote a single item, and leave "next" pointing to |
| 57 | * the next character. E.g., in the string: |
| 58 | * |
| 59 | * 'one' 'two' 'three' |
| 60 | * |
| 61 | * after the first call, the return value would be the unquoted string "one", |
| 62 | * with "next" pointing to the space between "one" and "two"). The caller is |
| 63 | * responsible for advancing the pointer to the start of the next item before |
| 64 | * calling sq_dequote_step() again. |
| 65 | */ |
| 66 | char *sq_dequote_step(char *src, char **next); |
| 67 | |
| 68 | /* |
Christian Couder | ebbc088 | 2009-03-29 11:44:44 +0200 | [diff] [blame] | 69 | * Same as the above, but can be used to unwrap many arguments in the |
Jeff King | 7878b07 | 2011-09-13 17:57:47 -0400 | [diff] [blame] | 70 | * same string separated by space. Like sq_quote, it works in place, |
| 71 | * modifying arg and appending pointers into it to argv. |
Christian Couder | ebbc088 | 2009-03-29 11:44:44 +0200 | [diff] [blame] | 72 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 73 | int sq_dequote_to_argv(char *arg, const char ***argv, int *nr, int *alloc); |
Christian Couder | ebbc088 | 2009-03-29 11:44:44 +0200 | [diff] [blame] | 74 | |
Jeff King | 37e8161 | 2011-09-13 17:58:08 -0400 | [diff] [blame] | 75 | /* |
Jeff King | 2745b6b | 2020-07-28 16:24:02 -0400 | [diff] [blame] | 76 | * Same as above, but store the unquoted strings in a strvec. We will |
| 77 | * still modify arg in place, but unlike sq_dequote_to_argv, the strvec |
Jeff King | 37e8161 | 2011-09-13 17:58:08 -0400 | [diff] [blame] | 78 | * will duplicate and take ownership of the strings. |
| 79 | */ |
Jeff King | 873cd28 | 2020-07-28 16:23:25 -0400 | [diff] [blame] | 80 | struct strvec; |
Jeff King | 2745b6b | 2020-07-28 16:24:02 -0400 | [diff] [blame] | 81 | int sq_dequote_to_strvec(char *arg, struct strvec *); |
Jeff King | 37e8161 | 2011-09-13 17:58:08 -0400 | [diff] [blame] | 82 | |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 83 | int unquote_c_style(struct strbuf *, const char *quoted, const char **endp); |
Junio C Hamano | 7c37c97 | 2020-09-10 10:01:59 -0700 | [diff] [blame] | 84 | |
| 85 | /* Bits in the flags parameter to quote_c_style() */ |
| 86 | #define CQUOTE_NODQ 01 |
| 87 | size_t quote_c_style(const char *name, struct strbuf *, FILE *, unsigned); |
| 88 | void quote_two_c_style(struct strbuf *, const char *, const char *, unsigned); |
Junio C Hamano | 4f6fbcd | 2005-10-14 21:54:47 -0700 | [diff] [blame] | 89 | |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 90 | void write_name_quoted(const char *name, FILE *, int terminator); |
| 91 | void write_name_quoted_relative(const char *name, const char *prefix, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 92 | FILE *fp, int terminator); |
Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 93 | |
Dmitry Potapov | a734d0b | 2008-03-07 05:30:58 +0300 | [diff] [blame] | 94 | /* quote path as relative to the given prefix */ |
Junio C Hamano | 88910c9 | 2020-09-10 10:01:54 -0700 | [diff] [blame] | 95 | char *quote_path(const char *in, const char *prefix, struct strbuf *out, unsigned flags); |
Junio C Hamano | f3fc4a1 | 2020-09-10 10:01:55 -0700 | [diff] [blame] | 96 | #define QUOTE_PATH_QUOTE_SP 01 |
Dmitry Potapov | a734d0b | 2008-03-07 05:30:58 +0300 | [diff] [blame] | 97 | |
Junio C Hamano | 9f613dd | 2006-09-15 13:30:02 -0700 | [diff] [blame] | 98 | /* quoting as a string literal for other languages */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 99 | void perl_quote_buf(struct strbuf *sb, const char *src); |
ZheNing Hu | 7121c4d | 2021-07-26 03:26:48 +0000 | [diff] [blame] | 100 | void perl_quote_buf_with_len(struct strbuf *sb, const char *src, size_t len); |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 101 | void python_quote_buf(struct strbuf *sb, const char *src); |
| 102 | void tcl_quote_buf(struct strbuf *sb, const char *src); |
| 103 | void basic_regex_quote_buf(struct strbuf *sb, const char *src); |
Junio C Hamano | 9f613dd | 2006-09-15 13:30:02 -0700 | [diff] [blame] | 104 | |
Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 105 | #endif |