blob: 0300c291041b02464e55e36a6c820a9faecf260f [file] [log] [blame]
Junio C Hamano6fb737b2005-07-07 23:58:32 -07001#ifndef QUOTE_H
2#define QUOTE_H
3
Jonathan Niedercf548ca2011-01-04 18:36:34 -06004struct strbuf;
Junio C Hamano6fb737b2005-07-07 23:58:32 -07005
Elijah Newren47115562023-04-11 00:42:04 -07006extern int quote_path_fully;
7
Junio C Hamano6fb737b2005-07-07 23:58:32 -07008/* Help to copy the thing properly quoted for the shell safety.
H. Peter Anvin77d604c2005-10-10 14:46:10 -07009 * 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 Hamano6fb737b2005-07-07 23:58:32 -070012 *
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 Anvin77d604c2005-10-10 14:46:10 -070026 *
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 Kellere70986d2016-02-29 14:58:34 -080030 *
31 * sq_quotef() quotes the entire formatted string as a single result.
Junio C Hamano6fb737b2005-07-07 23:58:32 -070032 */
33
Denton Liu55454422019-04-29 04:28:14 -040034void sq_quote_buf(struct strbuf *, const char *src);
35void sq_quote_argv(struct strbuf *, const char **argv);
Ævar Arnfjörð Bjarmason75d31ce2021-07-13 10:05:19 +020036__attribute__((format (printf, 2, 3)))
Denton Liub199d712019-04-29 04:28:20 -040037void sq_quotef(struct strbuf *, const char *fmt, ...);
Christian Couder86257aa2006-09-11 06:59:22 +020038
Jeff King1fbdab22018-01-15 17:59:44 +070039/*
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 */
44void sq_quote_buf_pretty(struct strbuf *, const char *src);
45void sq_quote_argv_pretty(struct strbuf *, const char **argv);
Jeff Hostetlerc2b890a2019-08-09 08:00:55 -070046void sq_append_quote_argv_pretty(struct strbuf *dst, const char **argv);
Jeff King1fbdab22018-01-15 17:59:44 +070047
Jeff King13c44952021-01-12 13:26:49 +010048/*
49 * This unwraps what sq_quote() produces in place, but returns
Linus Torvalds35eb2d32005-10-23 14:30:45 -070050 * NULL if the input does not look like what sq_quote would have
Jeff King13c44952021-01-12 13:26:49 +010051 * produced (the full string must be a single quoted item).
Linus Torvalds35eb2d32005-10-23 14:30:45 -070052 */
Denton Liu55454422019-04-29 04:28:14 -040053char *sq_dequote(char *);
Linus Torvalds35eb2d32005-10-23 14:30:45 -070054
Christian Couderebbc0882009-03-29 11:44:44 +020055/*
Jeff King13c44952021-01-12 13:26:49 +010056 * 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 */
66char *sq_dequote_step(char *src, char **next);
67
68/*
Christian Couderebbc0882009-03-29 11:44:44 +020069 * Same as the above, but can be used to unwrap many arguments in the
Jeff King7878b072011-09-13 17:57:47 -040070 * same string separated by space. Like sq_quote, it works in place,
71 * modifying arg and appending pointers into it to argv.
Christian Couderebbc0882009-03-29 11:44:44 +020072 */
Denton Liu55454422019-04-29 04:28:14 -040073int sq_dequote_to_argv(char *arg, const char ***argv, int *nr, int *alloc);
Christian Couderebbc0882009-03-29 11:44:44 +020074
Jeff King37e81612011-09-13 17:58:08 -040075/*
Jeff King2745b6b2020-07-28 16:24:02 -040076 * 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 King37e81612011-09-13 17:58:08 -040078 * will duplicate and take ownership of the strings.
79 */
Jeff King873cd282020-07-28 16:23:25 -040080struct strvec;
Jeff King2745b6b2020-07-28 16:24:02 -040081int sq_dequote_to_strvec(char *arg, struct strvec *);
Jeff King37e81612011-09-13 17:58:08 -040082
Denton Liu55454422019-04-29 04:28:14 -040083int unquote_c_style(struct strbuf *, const char *quoted, const char **endp);
Junio C Hamano7c37c972020-09-10 10:01:59 -070084
85/* Bits in the flags parameter to quote_c_style() */
86#define CQUOTE_NODQ 01
87size_t quote_c_style(const char *name, struct strbuf *, FILE *, unsigned);
88void quote_two_c_style(struct strbuf *, const char *, const char *, unsigned);
Junio C Hamano4f6fbcd2005-10-14 21:54:47 -070089
Denton Liu55454422019-04-29 04:28:14 -040090void write_name_quoted(const char *name, FILE *, int terminator);
91void write_name_quoted_relative(const char *name, const char *prefix,
Denton Liuad6dad02019-04-29 04:28:23 -040092 FILE *fp, int terminator);
Junio C Hamano6fb737b2005-07-07 23:58:32 -070093
Dmitry Potapova734d0b2008-03-07 05:30:58 +030094/* quote path as relative to the given prefix */
Junio C Hamano88910c92020-09-10 10:01:54 -070095char *quote_path(const char *in, const char *prefix, struct strbuf *out, unsigned flags);
Junio C Hamanof3fc4a12020-09-10 10:01:55 -070096#define QUOTE_PATH_QUOTE_SP 01
Dmitry Potapova734d0b2008-03-07 05:30:58 +030097
Junio C Hamano9f613dd2006-09-15 13:30:02 -070098/* quoting as a string literal for other languages */
Denton Liu55454422019-04-29 04:28:14 -040099void perl_quote_buf(struct strbuf *sb, const char *src);
ZheNing Hu7121c4d2021-07-26 03:26:48 +0000100void perl_quote_buf_with_len(struct strbuf *sb, const char *src, size_t len);
Denton Liu55454422019-04-29 04:28:14 -0400101void python_quote_buf(struct strbuf *sb, const char *src);
102void tcl_quote_buf(struct strbuf *sb, const char *src);
103void basic_regex_quote_buf(struct strbuf *sb, const char *src);
Junio C Hamano9f613dd2006-09-15 13:30:02 -0700104
Junio C Hamano6fb737b2005-07-07 23:58:32 -0700105#endif