Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Another stupid program, this one parsing the headers of an |
| 3 | * email to figure out authorship and subject |
| 4 | */ |
Junio C Hamano | f1f909e | 2005-11-27 16:29:38 -0800 | [diff] [blame] | 5 | #include "cache.h" |
Lukas Sandström | 34488e3 | 2006-06-13 22:21:50 +0200 | [diff] [blame] | 6 | #include "builtin.h" |
Junio C Hamano | b45974a | 2006-12-23 23:36:55 -0800 | [diff] [blame] | 7 | #include "utf8.h" |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 8 | #include "strbuf.h" |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 9 | |
Lukas Sandström | 34488e3 | 2006-06-13 22:21:50 +0200 | [diff] [blame] | 10 | static FILE *cmitmsg, *patchfile, *fin, *fout; |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 11 | |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 12 | static int keep_subject; |
Junio C Hamano | 17635fc | 2009-07-15 15:31:12 -0700 | [diff] [blame] | 13 | static int keep_non_patch_brackets_in_subject; |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 14 | static const char *metainfo_charset; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 15 | static struct strbuf line = STRBUF_INIT; |
| 16 | static struct strbuf name = STRBUF_INIT; |
| 17 | static struct strbuf email = STRBUF_INIT; |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 18 | |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 19 | static enum { |
Gary V. Vaughan | 4b05548 | 2010-05-14 09:31:35 +0000 | [diff] [blame] | 20 | TE_DONTCARE, TE_QP, TE_BASE64 |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 21 | } transfer_encoding; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 22 | static enum { |
Gary V. Vaughan | 4b05548 | 2010-05-14 09:31:35 +0000 | [diff] [blame] | 23 | TYPE_TEXT, TYPE_OTHER |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 24 | } message_type; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 25 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 26 | static struct strbuf charset = STRBUF_INIT; |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 27 | static int patch_lines; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 28 | static struct strbuf **p_hdr_data, **s_hdr_data; |
Junio C Hamano | 017678b | 2009-08-26 21:36:05 -0700 | [diff] [blame] | 29 | static int use_scissors; |
Lukas Sandström | d25e515 | 2009-11-20 17:12:47 +0100 | [diff] [blame] | 30 | static int use_inbody_headers = 1; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 31 | |
| 32 | #define MAX_HDR_PARSED 10 |
| 33 | #define MAX_BOUNDARIES 5 |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 34 | |
Kirill Smelkov | 08e6710 | 2009-02-01 20:45:05 +0300 | [diff] [blame] | 35 | static void cleanup_space(struct strbuf *sb); |
| 36 | |
| 37 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 38 | static void get_sane_name(struct strbuf *out, struct strbuf *name, struct strbuf *email) |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 39 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 40 | struct strbuf *src = name; |
| 41 | if (name->len < 3 || 60 < name->len || strchr(name->buf, '@') || |
| 42 | strchr(name->buf, '<') || strchr(name->buf, '>')) |
| 43 | src = email; |
| 44 | else if (name == out) |
| 45 | return; |
| 46 | strbuf_reset(out); |
| 47 | strbuf_addbuf(out, src); |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 48 | } |
| 49 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 50 | static void parse_bogus_from(const struct strbuf *line) |
Junio C Hamano | e0e3ba2 | 2005-12-14 16:31:06 -0800 | [diff] [blame] | 51 | { |
| 52 | /* John Doe <johndoe> */ |
Junio C Hamano | e0e3ba2 | 2005-12-14 16:31:06 -0800 | [diff] [blame] | 53 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 54 | char *bra, *ket; |
Junio C Hamano | e0e3ba2 | 2005-12-14 16:31:06 -0800 | [diff] [blame] | 55 | /* This is fallback, so do not bother if we already have an |
| 56 | * e-mail address. |
Lukas Sandström | 34488e3 | 2006-06-13 22:21:50 +0200 | [diff] [blame] | 57 | */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 58 | if (email.len) |
| 59 | return; |
Junio C Hamano | e0e3ba2 | 2005-12-14 16:31:06 -0800 | [diff] [blame] | 60 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 61 | bra = strchr(line->buf, '<'); |
Junio C Hamano | e0e3ba2 | 2005-12-14 16:31:06 -0800 | [diff] [blame] | 62 | if (!bra) |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 63 | return; |
Junio C Hamano | e0e3ba2 | 2005-12-14 16:31:06 -0800 | [diff] [blame] | 64 | ket = strchr(bra, '>'); |
| 65 | if (!ket) |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 66 | return; |
Junio C Hamano | e0e3ba2 | 2005-12-14 16:31:06 -0800 | [diff] [blame] | 67 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 68 | strbuf_reset(&email); |
| 69 | strbuf_add(&email, bra + 1, ket - bra - 1); |
| 70 | |
| 71 | strbuf_reset(&name); |
| 72 | strbuf_add(&name, line->buf, bra - line->buf); |
| 73 | strbuf_trim(&name); |
| 74 | get_sane_name(&name, &name, &email); |
Junio C Hamano | e0e3ba2 | 2005-12-14 16:31:06 -0800 | [diff] [blame] | 75 | } |
| 76 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 77 | static void handle_from(const struct strbuf *from) |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 78 | { |
Eric W. Biederman | 2dec02b | 2006-05-23 13:58:36 -0600 | [diff] [blame] | 79 | char *at; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 80 | size_t el; |
| 81 | struct strbuf f; |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 82 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 83 | strbuf_init(&f, from->len); |
| 84 | strbuf_addbuf(&f, from); |
| 85 | |
| 86 | at = strchr(f.buf, '@'); |
| 87 | if (!at) { |
| 88 | parse_bogus_from(from); |
| 89 | return; |
| 90 | } |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 91 | |
| 92 | /* |
| 93 | * If we already have one email, don't take any confusing lines |
| 94 | */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 95 | if (email.len && strchr(at + 1, '@')) { |
| 96 | strbuf_release(&f); |
| 97 | return; |
| 98 | } |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 99 | |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 100 | /* Pick up the string around '@', possibly delimited with <> |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 101 | * pair; that is the email part. |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 102 | */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 103 | while (at > f.buf) { |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 104 | char c = at[-1]; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 105 | if (isspace(c)) |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 106 | break; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 107 | if (c == '<') { |
| 108 | at[-1] = ' '; |
| 109 | break; |
| 110 | } |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 111 | at--; |
| 112 | } |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 113 | el = strcspn(at, " \n\t\r\v\f>"); |
| 114 | strbuf_reset(&email); |
| 115 | strbuf_add(&email, at, el); |
Jeff King | e9d7d10 | 2008-08-19 13:28:24 -0400 | [diff] [blame] | 116 | strbuf_remove(&f, at - f.buf, el + (at[el] ? 1 : 0)); |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 117 | |
Kirill Smelkov | 08e6710 | 2009-02-01 20:45:05 +0300 | [diff] [blame] | 118 | /* The remainder is name. It could be |
| 119 | * |
| 120 | * - "John Doe <john.doe@xz>" (a), or |
| 121 | * - "john.doe@xz (John Doe)" (b), or |
| 122 | * - "John (zzz) Doe <john.doe@xz> (Comment)" (c) |
| 123 | * |
| 124 | * but we have removed the email part, so |
| 125 | * |
| 126 | * - remove extra spaces which could stay after email (case 'c'), and |
| 127 | * - trim from both ends, possibly removing the () pair at the end |
| 128 | * (cases 'a' and 'b'). |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 129 | */ |
Kirill Smelkov | 08e6710 | 2009-02-01 20:45:05 +0300 | [diff] [blame] | 130 | cleanup_space(&f); |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 131 | strbuf_trim(&f); |
Philippe Bruhat (BooK) | 0d4ede9 | 2008-07-21 15:34:29 +0200 | [diff] [blame] | 132 | if (f.buf[0] == '(' && f.len && f.buf[f.len - 1] == ')') { |
| 133 | strbuf_remove(&f, 0, 1); |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 134 | strbuf_setlen(&f, f.len - 1); |
Philippe Bruhat (BooK) | 0d4ede9 | 2008-07-21 15:34:29 +0200 | [diff] [blame] | 135 | } |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 136 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 137 | get_sane_name(&name, &f, &email); |
| 138 | strbuf_release(&f); |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 141 | static void handle_header(struct strbuf **out, const struct strbuf *line) |
Linus Torvalds | 62c1f6b | 2005-05-01 21:42:53 -0700 | [diff] [blame] | 142 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 143 | if (!*out) { |
| 144 | *out = xmalloc(sizeof(struct strbuf)); |
| 145 | strbuf_init(*out, line->len); |
| 146 | } else |
| 147 | strbuf_reset(*out); |
Linus Torvalds | 62c1f6b | 2005-05-01 21:42:53 -0700 | [diff] [blame] | 148 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 149 | strbuf_addbuf(*out, line); |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 150 | } |
| 151 | |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 152 | /* NOTE NOTE NOTE. We do not claim we do full MIME. We just attempt |
| 153 | * to have enough heuristics to grok MIME encoded patches often found |
| 154 | * on our mailing lists. For example, we do not even treat header lines |
| 155 | * case insensitively. |
| 156 | */ |
| 157 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 158 | static int slurp_attr(const char *line, const char *name, struct strbuf *attr) |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 159 | { |
Timo Hirvonen | 554fe20 | 2006-06-28 12:04:39 +0300 | [diff] [blame] | 160 | const char *ends, *ap = strcasestr(line, name); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 161 | size_t sz; |
| 162 | |
| 163 | if (!ap) { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 164 | strbuf_setlen(attr, 0); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 165 | return 0; |
| 166 | } |
| 167 | ap += strlen(name); |
| 168 | if (*ap == '"') { |
| 169 | ap++; |
| 170 | ends = "\""; |
| 171 | } |
| 172 | else |
| 173 | ends = "; \t"; |
| 174 | sz = strcspn(ap, ends); |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 175 | strbuf_add(attr, ap, sz); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 176 | return 1; |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 177 | } |
| 178 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 179 | static struct strbuf *content[MAX_BOUNDARIES]; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 180 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 181 | static struct strbuf **content_top = content; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 182 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 183 | static void handle_content_type(struct strbuf *line) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 184 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 185 | struct strbuf *boundary = xmalloc(sizeof(struct strbuf)); |
| 186 | strbuf_init(boundary, line->len); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 187 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 188 | if (!strcasestr(line->buf, "text/")) |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 189 | message_type = TYPE_OTHER; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 190 | if (slurp_attr(line->buf, "boundary=", boundary)) { |
| 191 | strbuf_insert(boundary, 0, "--", 2); |
Don Zickus | 289796d | 2008-08-14 11:35:42 -0400 | [diff] [blame] | 192 | if (++content_top > &content[MAX_BOUNDARIES]) { |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 193 | fprintf(stderr, "Too many boundaries to handle\n"); |
| 194 | exit(1); |
| 195 | } |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 196 | *content_top = boundary; |
| 197 | boundary = NULL; |
Junio C Hamano | b893f09 | 2005-09-06 16:46:34 -0700 | [diff] [blame] | 198 | } |
Brandon Casey | ed1e398 | 2009-05-18 18:44:40 -0500 | [diff] [blame] | 199 | slurp_attr(line->buf, "charset=", &charset); |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 200 | |
| 201 | if (boundary) { |
| 202 | strbuf_release(boundary); |
| 203 | free(boundary); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 204 | } |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 205 | } |
| 206 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 207 | static void handle_content_transfer_encoding(const struct strbuf *line) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 208 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 209 | if (strcasestr(line->buf, "base64")) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 210 | transfer_encoding = TE_BASE64; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 211 | else if (strcasestr(line->buf, "quoted-printable")) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 212 | transfer_encoding = TE_QP; |
| 213 | else |
| 214 | transfer_encoding = TE_DONTCARE; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 215 | } |
| 216 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 217 | static int is_multipart_boundary(const struct strbuf *line) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 218 | { |
Junio C Hamano | a9fd138 | 2008-08-09 01:17:24 -0700 | [diff] [blame] | 219 | return (((*content_top)->len <= line->len) && |
| 220 | !memcmp(line->buf, (*content_top)->buf, (*content_top)->len)); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 223 | static void cleanup_subject(struct strbuf *subject) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 224 | { |
Junio C Hamano | 17635fc | 2009-07-15 15:31:12 -0700 | [diff] [blame] | 225 | size_t at = 0; |
| 226 | |
| 227 | while (at < subject->len) { |
| 228 | char *pos; |
| 229 | size_t remove; |
| 230 | |
| 231 | switch (subject->buf[at]) { |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 232 | case 'r': case 'R': |
Junio C Hamano | 17635fc | 2009-07-15 15:31:12 -0700 | [diff] [blame] | 233 | if (subject->len <= at + 3) |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 234 | break; |
Junio C Hamano | 17635fc | 2009-07-15 15:31:12 -0700 | [diff] [blame] | 235 | if (!memcmp(subject->buf + at + 1, "e:", 2)) { |
| 236 | strbuf_remove(subject, at, 3); |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 237 | continue; |
| 238 | } |
Junio C Hamano | 17635fc | 2009-07-15 15:31:12 -0700 | [diff] [blame] | 239 | at++; |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 240 | break; |
| 241 | case ' ': case '\t': case ':': |
Junio C Hamano | 17635fc | 2009-07-15 15:31:12 -0700 | [diff] [blame] | 242 | strbuf_remove(subject, at, 1); |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 243 | continue; |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 244 | case '[': |
Junio C Hamano | 17635fc | 2009-07-15 15:31:12 -0700 | [diff] [blame] | 245 | pos = strchr(subject->buf + at, ']'); |
| 246 | if (!pos) |
| 247 | break; |
| 248 | remove = pos - subject->buf + at + 1; |
| 249 | if (!keep_non_patch_brackets_in_subject || |
| 250 | (7 <= remove && |
| 251 | memmem(subject->buf + at, remove, "PATCH", 5))) |
| 252 | strbuf_remove(subject, at, remove); |
| 253 | else |
| 254 | at += remove; |
| 255 | continue; |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 256 | } |
Junio C Hamano | 17635fc | 2009-07-15 15:31:12 -0700 | [diff] [blame] | 257 | break; |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 258 | } |
Junio C Hamano | 17635fc | 2009-07-15 15:31:12 -0700 | [diff] [blame] | 259 | strbuf_trim(subject); |
Lukas Sandström | 34488e3 | 2006-06-13 22:21:50 +0200 | [diff] [blame] | 260 | } |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 261 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 262 | static void cleanup_space(struct strbuf *sb) |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 263 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 264 | size_t pos, cnt; |
| 265 | for (pos = 0; pos < sb->len; pos++) { |
| 266 | if (isspace(sb->buf[pos])) { |
| 267 | sb->buf[pos] = ' '; |
| 268 | for (cnt = 0; isspace(sb->buf[pos + cnt + 1]); cnt++); |
| 269 | strbuf_remove(sb, pos + 1, cnt); |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 270 | } |
| 271 | } |
| 272 | } |
| 273 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 274 | static void decode_header(struct strbuf *line); |
Shawn O. Pearce | 538dfe7 | 2007-10-21 00:12:12 -0400 | [diff] [blame] | 275 | static const char *header[MAX_HDR_PARSED] = { |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 276 | "From","Subject","Date", |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 277 | }; |
| 278 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 279 | static inline int cmp_header(const struct strbuf *line, const char *hdr) |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 280 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 281 | int len = strlen(hdr); |
| 282 | return !strncasecmp(line->buf, hdr, len) && line->len > len && |
| 283 | line->buf[len] == ':' && isspace(line->buf[len + 1]); |
| 284 | } |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 285 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 286 | static int check_header(const struct strbuf *line, |
| 287 | struct strbuf *hdr_data[], int overwrite) |
| 288 | { |
| 289 | int i, ret = 0, len; |
| 290 | struct strbuf sb = STRBUF_INIT; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 291 | /* search for the interesting parts */ |
| 292 | for (i = 0; header[i]; i++) { |
| 293 | int len = strlen(header[i]); |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 294 | if ((!hdr_data[i] || overwrite) && cmp_header(line, header[i])) { |
Eric W. Biederman | 3350453 | 2006-05-23 13:45:37 -0600 | [diff] [blame] | 295 | /* Unwrap inline B and Q encoding, and optionally |
| 296 | * normalize the meta information to utf8. |
| 297 | */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 298 | strbuf_add(&sb, line->buf + len + 2, line->len - len - 2); |
| 299 | decode_header(&sb); |
| 300 | handle_header(&hdr_data[i], &sb); |
| 301 | ret = 1; |
| 302 | goto check_header_out; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 303 | } |
| 304 | } |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 305 | |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 306 | /* Content stuff */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 307 | if (cmp_header(line, "Content-Type")) { |
| 308 | len = strlen("Content-Type: "); |
| 309 | strbuf_add(&sb, line->buf + len, line->len - len); |
| 310 | decode_header(&sb); |
| 311 | strbuf_insert(&sb, 0, "Content-Type: ", len); |
| 312 | handle_content_type(&sb); |
| 313 | ret = 1; |
| 314 | goto check_header_out; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 315 | } |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 316 | if (cmp_header(line, "Content-Transfer-Encoding")) { |
| 317 | len = strlen("Content-Transfer-Encoding: "); |
| 318 | strbuf_add(&sb, line->buf + len, line->len - len); |
| 319 | decode_header(&sb); |
| 320 | handle_content_transfer_encoding(&sb); |
| 321 | ret = 1; |
| 322 | goto check_header_out; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | /* for inbody stuff */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 326 | if (!prefixcmp(line->buf, ">From") && isspace(line->buf[5])) { |
| 327 | ret = 1; /* Should this return 0? */ |
| 328 | goto check_header_out; |
| 329 | } |
| 330 | if (!prefixcmp(line->buf, "[PATCH]") && isspace(line->buf[7])) { |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 331 | for (i = 0; header[i]; i++) { |
Lukas Sandström | e9fe804 | 2008-07-10 23:41:33 +0200 | [diff] [blame] | 332 | if (!memcmp("Subject", header[i], 7)) { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 333 | handle_header(&hdr_data[i], line); |
| 334 | ret = 1; |
| 335 | goto check_header_out; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 336 | } |
| 337 | } |
| 338 | } |
| 339 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 340 | check_header_out: |
| 341 | strbuf_release(&sb); |
| 342 | return ret; |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 343 | } |
| 344 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 345 | static int is_rfc2822_header(const struct strbuf *line) |
Junio C Hamano | ef29c11 | 2006-05-26 00:46:58 -0700 | [diff] [blame] | 346 | { |
| 347 | /* |
| 348 | * The section that defines the loosest possible |
| 349 | * field name is "3.6.8 Optional fields". |
| 350 | * |
| 351 | * optional-field = field-name ":" unstructured CRLF |
| 352 | * field-name = 1*ftext |
| 353 | * ftext = %d33-57 / %59-126 |
| 354 | */ |
| 355 | int ch; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 356 | char *cp = line->buf; |
Linus Torvalds | 34fc5ce | 2007-02-26 11:10:59 -0800 | [diff] [blame] | 357 | |
| 358 | /* Count mbox From headers as headers */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 359 | if (!prefixcmp(cp, "From ") || !prefixcmp(cp, ">From ")) |
Linus Torvalds | 34fc5ce | 2007-02-26 11:10:59 -0800 | [diff] [blame] | 360 | return 1; |
| 361 | |
Junio C Hamano | ef29c11 | 2006-05-26 00:46:58 -0700 | [diff] [blame] | 362 | while ((ch = *cp++)) { |
| 363 | if (ch == ':') |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 364 | return 1; |
Junio C Hamano | ef29c11 | 2006-05-26 00:46:58 -0700 | [diff] [blame] | 365 | if ((33 <= ch && ch <= 57) || |
| 366 | (59 <= ch && ch <= 126)) |
| 367 | continue; |
| 368 | break; |
| 369 | } |
| 370 | return 0; |
| 371 | } |
| 372 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 373 | static int read_one_header_line(struct strbuf *line, FILE *in) |
Junio C Hamano | 1d8fa41 | 2005-07-23 02:10:31 -0700 | [diff] [blame] | 374 | { |
Linus Torvalds | 34fc5ce | 2007-02-26 11:10:59 -0800 | [diff] [blame] | 375 | /* Get the first part of the line. */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 376 | if (strbuf_getline(line, in, '\n')) |
Linus Torvalds | 34fc5ce | 2007-02-26 11:10:59 -0800 | [diff] [blame] | 377 | return 0; |
| 378 | |
| 379 | /* |
| 380 | * Is it an empty line or not a valid rfc2822 header? |
| 381 | * If so, stop here, and return false ("not a header") |
| 382 | */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 383 | strbuf_rtrim(line); |
| 384 | if (!line->len || !is_rfc2822_header(line)) { |
Linus Torvalds | 34fc5ce | 2007-02-26 11:10:59 -0800 | [diff] [blame] | 385 | /* Re-add the newline */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 386 | strbuf_addch(line, '\n'); |
Linus Torvalds | 34fc5ce | 2007-02-26 11:10:59 -0800 | [diff] [blame] | 387 | return 0; |
| 388 | } |
| 389 | |
| 390 | /* |
| 391 | * Now we need to eat all the continuation lines.. |
| 392 | * Yuck, 2822 header "folding" |
| 393 | */ |
| 394 | for (;;) { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 395 | int peek; |
| 396 | struct strbuf continuation = STRBUF_INIT; |
Linus Torvalds | 34fc5ce | 2007-02-26 11:10:59 -0800 | [diff] [blame] | 397 | |
Eric W. Biederman | f30b202 | 2006-05-23 13:53:20 -0600 | [diff] [blame] | 398 | peek = fgetc(in); ungetc(peek, in); |
| 399 | if (peek != ' ' && peek != '\t') |
| 400 | break; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 401 | if (strbuf_getline(&continuation, in, '\n')) |
Linus Torvalds | 34fc5ce | 2007-02-26 11:10:59 -0800 | [diff] [blame] | 402 | break; |
Jeff King | 5b38456 | 2011-05-26 16:53:38 -0400 | [diff] [blame] | 403 | continuation.buf[0] = ' '; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 404 | strbuf_rtrim(&continuation); |
| 405 | strbuf_addbuf(line, &continuation); |
Junio C Hamano | 1d8fa41 | 2005-07-23 02:10:31 -0700 | [diff] [blame] | 406 | } |
Linus Torvalds | 34fc5ce | 2007-02-26 11:10:59 -0800 | [diff] [blame] | 407 | |
| 408 | return 1; |
Junio C Hamano | 1d8fa41 | 2005-07-23 02:10:31 -0700 | [diff] [blame] | 409 | } |
| 410 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 411 | static struct strbuf *decode_q_segment(const struct strbuf *q_seg, int rfc2047) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 412 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 413 | const char *in = q_seg->buf; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 414 | int c; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 415 | struct strbuf *out = xmalloc(sizeof(struct strbuf)); |
| 416 | strbuf_init(out, q_seg->len); |
| 417 | |
| 418 | while ((c = *in++) != 0) { |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 419 | if (c == '=') { |
| 420 | int d = *in++; |
| 421 | if (d == '\n' || !d) |
| 422 | break; /* drop trailing newline */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 423 | strbuf_addch(out, (hexval(d) << 4) | hexval(*in++)); |
Junio C Hamano | 7573193 | 2006-04-21 00:06:58 -0700 | [diff] [blame] | 424 | continue; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 425 | } |
Junio C Hamano | 7573193 | 2006-04-21 00:06:58 -0700 | [diff] [blame] | 426 | if (rfc2047 && c == '_') /* rfc2047 4.2 (2) */ |
| 427 | c = 0x20; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 428 | strbuf_addch(out, c); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 429 | } |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 430 | return out; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 431 | } |
| 432 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 433 | static struct strbuf *decode_b_segment(const struct strbuf *b_seg) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 434 | { |
| 435 | /* Decode in..ep, possibly in-place to ot */ |
| 436 | int c, pos = 0, acc = 0; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 437 | const char *in = b_seg->buf; |
| 438 | struct strbuf *out = xmalloc(sizeof(struct strbuf)); |
| 439 | strbuf_init(out, b_seg->len); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 440 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 441 | while ((c = *in++) != 0) { |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 442 | if (c == '+') |
| 443 | c = 62; |
| 444 | else if (c == '/') |
| 445 | c = 63; |
| 446 | else if ('A' <= c && c <= 'Z') |
| 447 | c -= 'A'; |
| 448 | else if ('a' <= c && c <= 'z') |
| 449 | c -= 'a' - 26; |
| 450 | else if ('0' <= c && c <= '9') |
| 451 | c -= '0' - 52; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 452 | else |
| 453 | continue; /* garbage */ |
| 454 | switch (pos++) { |
| 455 | case 0: |
| 456 | acc = (c << 2); |
| 457 | break; |
| 458 | case 1: |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 459 | strbuf_addch(out, (acc | (c >> 4))); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 460 | acc = (c & 15) << 4; |
| 461 | break; |
| 462 | case 2: |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 463 | strbuf_addch(out, (acc | (c >> 2))); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 464 | acc = (c & 3) << 6; |
| 465 | break; |
| 466 | case 3: |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 467 | strbuf_addch(out, (acc | c)); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 468 | acc = pos = 0; |
| 469 | break; |
| 470 | } |
| 471 | } |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 472 | return out; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 473 | } |
| 474 | |
Linus Torvalds | b59d398 | 2007-07-17 10:34:44 -0700 | [diff] [blame] | 475 | /* |
| 476 | * When there is no known charset, guess. |
| 477 | * |
| 478 | * Right now we assume that if the target is UTF-8 (the default), |
| 479 | * and it already looks like UTF-8 (which includes US-ASCII as its |
| 480 | * subset, of course) then that is what it is and there is nothing |
| 481 | * to do. |
| 482 | * |
| 483 | * Otherwise, we default to assuming it is Latin1 for historical |
| 484 | * reasons. |
| 485 | */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 486 | static const char *guess_charset(const struct strbuf *line, const char *target_charset) |
Linus Torvalds | b59d398 | 2007-07-17 10:34:44 -0700 | [diff] [blame] | 487 | { |
| 488 | if (is_encoding_utf8(target_charset)) { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 489 | if (is_utf8(line->buf)) |
Linus Torvalds | b59d398 | 2007-07-17 10:34:44 -0700 | [diff] [blame] | 490 | return NULL; |
| 491 | } |
Brandon Casey | 6264500 | 2009-05-18 18:44:41 -0500 | [diff] [blame] | 492 | return "ISO8859-1"; |
Linus Torvalds | b59d398 | 2007-07-17 10:34:44 -0700 | [diff] [blame] | 493 | } |
| 494 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 495 | static void convert_to_utf8(struct strbuf *line, const char *charset) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 496 | { |
Linus Torvalds | b59d398 | 2007-07-17 10:34:44 -0700 | [diff] [blame] | 497 | char *out; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 498 | |
Linus Torvalds | b59d398 | 2007-07-17 10:34:44 -0700 | [diff] [blame] | 499 | if (!charset || !*charset) { |
| 500 | charset = guess_charset(line, metainfo_charset); |
| 501 | if (!charset) |
| 502 | return; |
| 503 | } |
| 504 | |
Brandon Casey | ed1e398 | 2009-05-18 18:44:40 -0500 | [diff] [blame] | 505 | if (!strcasecmp(metainfo_charset, charset)) |
Johannes Schindelin | 7296096 | 2007-07-24 01:03:26 +0100 | [diff] [blame] | 506 | return; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 507 | out = reencode_string(line->buf, metainfo_charset, charset); |
Junio C Hamano | bb1091a | 2007-01-09 21:31:36 -0800 | [diff] [blame] | 508 | if (!out) |
Alexander Potashev | d753070 | 2009-01-04 21:38:41 +0300 | [diff] [blame] | 509 | die("cannot convert from %s to %s", |
Linus Torvalds | b59d398 | 2007-07-17 10:34:44 -0700 | [diff] [blame] | 510 | charset, metainfo_charset); |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 511 | strbuf_attach(line, out, strlen(out), strlen(out)); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 512 | } |
| 513 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 514 | static int decode_header_bq(struct strbuf *it) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 515 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 516 | char *in, *ep, *cp; |
| 517 | struct strbuf outbuf = STRBUF_INIT, *dec; |
| 518 | struct strbuf charset_q = STRBUF_INIT, piecebuf = STRBUF_INIT; |
Junio C Hamano | b75bf2c | 2006-07-05 14:17:49 -0700 | [diff] [blame] | 519 | int rfc2047 = 0; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 520 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 521 | in = it->buf; |
| 522 | while (in - it->buf <= it->len && (ep = strstr(in, "=?")) != NULL) { |
| 523 | int encoding; |
| 524 | strbuf_reset(&charset_q); |
| 525 | strbuf_reset(&piecebuf); |
Junio C Hamano | b75bf2c | 2006-07-05 14:17:49 -0700 | [diff] [blame] | 526 | rfc2047 = 1; |
| 527 | |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 528 | if (in != ep) { |
Kirill Smelkov | 353aaf2 | 2009-01-08 01:43:42 +0300 | [diff] [blame] | 529 | /* |
| 530 | * We are about to process an encoded-word |
| 531 | * that begins at ep, but there is something |
| 532 | * before the encoded word. |
| 533 | */ |
| 534 | char *scan; |
| 535 | for (scan = in; scan < ep; scan++) |
| 536 | if (!isspace(*scan)) |
| 537 | break; |
| 538 | |
| 539 | if (scan != ep || in == it->buf) { |
| 540 | /* |
| 541 | * We should not lose that "something", |
| 542 | * unless we have just processed an |
| 543 | * encoded-word, and there is only LWS |
| 544 | * before the one we are about to process. |
| 545 | */ |
| 546 | strbuf_add(&outbuf, in, ep - in); |
| 547 | } |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 548 | } |
| 549 | /* E.g. |
| 550 | * ep : "=?iso-2022-jp?B?GyR...?= foo" |
| 551 | * ep : "=?ISO-8859-1?Q?Foo=FCbar?= baz" |
| 552 | */ |
| 553 | ep += 2; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 554 | |
| 555 | if (ep - it->buf >= it->len || !(cp = strchr(ep, '?'))) |
| 556 | goto decode_header_bq_out; |
| 557 | |
| 558 | if (cp + 3 - it->buf > it->len) |
| 559 | goto decode_header_bq_out; |
| 560 | strbuf_add(&charset_q, ep, cp - ep); |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 561 | |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 562 | encoding = cp[1]; |
| 563 | if (!encoding || cp[2] != '?') |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 564 | goto decode_header_bq_out; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 565 | ep = strstr(cp + 3, "?="); |
| 566 | if (!ep) |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 567 | goto decode_header_bq_out; |
| 568 | strbuf_add(&piecebuf, cp + 3, ep - cp - 3); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 569 | switch (tolower(encoding)) { |
| 570 | default: |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 571 | goto decode_header_bq_out; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 572 | case 'b': |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 573 | dec = decode_b_segment(&piecebuf); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 574 | break; |
| 575 | case 'q': |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 576 | dec = decode_q_segment(&piecebuf, 1); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 577 | break; |
| 578 | } |
Junio C Hamano | 650e4be | 2005-11-27 16:22:16 -0800 | [diff] [blame] | 579 | if (metainfo_charset) |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 580 | convert_to_utf8(dec, charset_q.buf); |
Alex Riesen | 8dabdfc | 2007-08-30 23:48:24 +0200 | [diff] [blame] | 581 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 582 | strbuf_addbuf(&outbuf, dec); |
| 583 | strbuf_release(dec); |
| 584 | free(dec); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 585 | in = ep + 2; |
| 586 | } |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 587 | strbuf_addstr(&outbuf, in); |
| 588 | strbuf_reset(it); |
| 589 | strbuf_addbuf(it, &outbuf); |
| 590 | decode_header_bq_out: |
| 591 | strbuf_release(&outbuf); |
| 592 | strbuf_release(&charset_q); |
| 593 | strbuf_release(&piecebuf); |
Junio C Hamano | b75bf2c | 2006-07-05 14:17:49 -0700 | [diff] [blame] | 594 | return rfc2047; |
| 595 | } |
| 596 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 597 | static void decode_header(struct strbuf *it) |
Junio C Hamano | b75bf2c | 2006-07-05 14:17:49 -0700 | [diff] [blame] | 598 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 599 | if (decode_header_bq(it)) |
Junio C Hamano | b75bf2c | 2006-07-05 14:17:49 -0700 | [diff] [blame] | 600 | return; |
| 601 | /* otherwise "it" is a straight copy of the input. |
| 602 | * This can be binary guck but there is no charset specified. |
| 603 | */ |
| 604 | if (metainfo_charset) |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 605 | convert_to_utf8(it, ""); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 606 | } |
| 607 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 608 | static void decode_transfer_encoding(struct strbuf *line) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 609 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 610 | struct strbuf *ret; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 611 | |
| 612 | switch (transfer_encoding) { |
| 613 | case TE_QP: |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 614 | ret = decode_q_segment(line, 0); |
| 615 | break; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 616 | case TE_BASE64: |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 617 | ret = decode_b_segment(line); |
| 618 | break; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 619 | case TE_DONTCARE: |
Junio C Hamano | 9aa2309 | 2008-05-25 01:16:05 -0700 | [diff] [blame] | 620 | default: |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 621 | return; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 622 | } |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 623 | strbuf_reset(line); |
| 624 | strbuf_addbuf(line, ret); |
| 625 | strbuf_release(ret); |
| 626 | free(ret); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 627 | } |
| 628 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 629 | static void handle_filter(struct strbuf *line); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 630 | |
| 631 | static int find_boundary(void) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 632 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 633 | while (!strbuf_getline(&line, fin, '\n')) { |
Don Zickus | 289796d | 2008-08-14 11:35:42 -0400 | [diff] [blame] | 634 | if (*content_top && is_multipart_boundary(&line)) |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 635 | return 1; |
| 636 | } |
| 637 | return 0; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 638 | } |
| 639 | |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 640 | static int handle_boundary(void) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 641 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 642 | struct strbuf newline = STRBUF_INIT; |
| 643 | |
| 644 | strbuf_addch(&newline, '\n'); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 645 | again: |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 646 | if (line.len >= (*content_top)->len + 2 && |
| 647 | !memcmp(line.buf + (*content_top)->len, "--", 2)) { |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 648 | /* we hit an end boundary */ |
| 649 | /* pop the current boundary off the stack */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 650 | strbuf_release(*content_top); |
| 651 | free(*content_top); |
| 652 | *content_top = NULL; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 653 | |
| 654 | /* technically won't happen as is_multipart_boundary() |
| 655 | will fail first. But just in case.. |
| 656 | */ |
Don Zickus | 289796d | 2008-08-14 11:35:42 -0400 | [diff] [blame] | 657 | if (--content_top < content) { |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 658 | fprintf(stderr, "Detected mismatched boundaries, " |
| 659 | "can't recover\n"); |
| 660 | exit(1); |
| 661 | } |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 662 | handle_filter(&newline); |
| 663 | strbuf_release(&newline); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 664 | |
| 665 | /* skip to the next boundary */ |
| 666 | if (!find_boundary()) |
| 667 | return 0; |
| 668 | goto again; |
| 669 | } |
| 670 | |
| 671 | /* set some defaults */ |
| 672 | transfer_encoding = TE_DONTCARE; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 673 | strbuf_reset(&charset); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 674 | message_type = TYPE_TEXT; |
| 675 | |
| 676 | /* slurp in this section's info */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 677 | while (read_one_header_line(&line, fin)) |
| 678 | check_header(&line, p_hdr_data, 0); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 679 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 680 | strbuf_release(&newline); |
Junio C Hamano | a9fd138 | 2008-08-09 01:17:24 -0700 | [diff] [blame] | 681 | /* replenish line */ |
| 682 | if (strbuf_getline(&line, fin, '\n')) |
| 683 | return 0; |
| 684 | strbuf_addch(&line, '\n'); |
| 685 | return 1; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 686 | } |
| 687 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 688 | static inline int patchbreak(const struct strbuf *line) |
Don Zickus | f0658cf | 2007-03-12 15:52:06 -0400 | [diff] [blame] | 689 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 690 | size_t i; |
| 691 | |
Don Zickus | f0658cf | 2007-03-12 15:52:06 -0400 | [diff] [blame] | 692 | /* Beginning of a "diff -" header? */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 693 | if (!prefixcmp(line->buf, "diff -")) |
Don Zickus | f0658cf | 2007-03-12 15:52:06 -0400 | [diff] [blame] | 694 | return 1; |
| 695 | |
| 696 | /* CVS "Index: " line? */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 697 | if (!prefixcmp(line->buf, "Index: ")) |
Don Zickus | f0658cf | 2007-03-12 15:52:06 -0400 | [diff] [blame] | 698 | return 1; |
| 699 | |
| 700 | /* |
| 701 | * "--- <filename>" starts patches without headers |
| 702 | * "---<sp>*" is a manual separator |
| 703 | */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 704 | if (line->len < 4) |
| 705 | return 0; |
| 706 | |
| 707 | if (!prefixcmp(line->buf, "---")) { |
Don Zickus | f0658cf | 2007-03-12 15:52:06 -0400 | [diff] [blame] | 708 | /* space followed by a filename? */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 709 | if (line->buf[3] == ' ' && !isspace(line->buf[4])) |
Don Zickus | f0658cf | 2007-03-12 15:52:06 -0400 | [diff] [blame] | 710 | return 1; |
| 711 | /* Just whitespace? */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 712 | for (i = 3; i < line->len; i++) { |
| 713 | unsigned char c = line->buf[i]; |
Don Zickus | f0658cf | 2007-03-12 15:52:06 -0400 | [diff] [blame] | 714 | if (c == '\n') |
| 715 | return 1; |
| 716 | if (!isspace(c)) |
| 717 | break; |
| 718 | } |
| 719 | return 0; |
| 720 | } |
| 721 | return 0; |
| 722 | } |
| 723 | |
Junio C Hamano | 200c75f | 2009-08-23 01:56:19 -0700 | [diff] [blame] | 724 | static int is_scissors_line(const struct strbuf *line) |
| 725 | { |
| 726 | size_t i, len = line->len; |
| 727 | int scissors = 0, gap = 0; |
| 728 | int first_nonblank = -1; |
| 729 | int last_nonblank = 0, visible, perforation = 0, in_perforation = 0; |
| 730 | const char *buf = line->buf; |
| 731 | |
| 732 | for (i = 0; i < len; i++) { |
| 733 | if (isspace(buf[i])) { |
| 734 | if (in_perforation) { |
| 735 | perforation++; |
| 736 | gap++; |
| 737 | } |
| 738 | continue; |
| 739 | } |
| 740 | last_nonblank = i; |
| 741 | if (first_nonblank < 0) |
| 742 | first_nonblank = i; |
| 743 | if (buf[i] == '-') { |
| 744 | in_perforation = 1; |
| 745 | perforation++; |
| 746 | continue; |
| 747 | } |
| 748 | if (i + 1 < len && |
Jonathan Nieder | 9974e29 | 2010-04-03 14:52:17 -0500 | [diff] [blame] | 749 | (!memcmp(buf + i, ">8", 2) || !memcmp(buf + i, "8<", 2) || |
| 750 | !memcmp(buf + i, ">%", 2) || !memcmp(buf + i, "%<", 2))) { |
Junio C Hamano | 200c75f | 2009-08-23 01:56:19 -0700 | [diff] [blame] | 751 | in_perforation = 1; |
| 752 | perforation += 2; |
| 753 | scissors += 2; |
| 754 | i++; |
| 755 | continue; |
| 756 | } |
| 757 | in_perforation = 0; |
| 758 | } |
| 759 | |
| 760 | /* |
| 761 | * The mark must be at least 8 bytes long (e.g. "-- >8 --"). |
| 762 | * Even though there can be arbitrary cruft on the same line |
| 763 | * (e.g. "cut here"), in order to avoid misidentification, the |
| 764 | * perforation must occupy more than a third of the visible |
| 765 | * width of the line, and dashes and scissors must occupy more |
| 766 | * than half of the perforation. |
| 767 | */ |
| 768 | |
| 769 | visible = last_nonblank - first_nonblank + 1; |
| 770 | return (scissors && 8 <= visible && |
| 771 | visible < perforation * 3 && |
| 772 | gap * 2 < perforation); |
| 773 | } |
| 774 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 775 | static int handle_commit_msg(struct strbuf *line) |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 776 | { |
| 777 | static int still_looking = 1; |
| 778 | |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 779 | if (!cmitmsg) |
| 780 | return 0; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 781 | |
| 782 | if (still_looking) { |
Junio C Hamano | 470b452 | 2010-02-19 21:55:33 -0800 | [diff] [blame] | 783 | if (!line->len || (line->len == 1 && line->buf[0] == '\n')) |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 784 | return 0; |
Lukas Sandström | d25e515 | 2009-11-20 17:12:47 +0100 | [diff] [blame] | 785 | } |
| 786 | |
| 787 | if (use_inbody_headers && still_looking) { |
Junio C Hamano | 200c75f | 2009-08-23 01:56:19 -0700 | [diff] [blame] | 788 | still_looking = check_header(line, s_hdr_data, 0); |
| 789 | if (still_looking) |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 790 | return 0; |
Lukas Sandström | d25e515 | 2009-11-20 17:12:47 +0100 | [diff] [blame] | 791 | } else |
| 792 | /* Only trim the first (blank) line of the commit message |
| 793 | * when ignoring in-body headers. |
| 794 | */ |
| 795 | still_looking = 0; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 796 | |
Don Zickus | 86747c1 | 2007-03-30 12:18:45 -0400 | [diff] [blame] | 797 | /* normalize the log message to UTF-8. */ |
| 798 | if (metainfo_charset) |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 799 | convert_to_utf8(line, charset.buf); |
Don Zickus | 86747c1 | 2007-03-30 12:18:45 -0400 | [diff] [blame] | 800 | |
Junio C Hamano | 017678b | 2009-08-26 21:36:05 -0700 | [diff] [blame] | 801 | if (use_scissors && is_scissors_line(line)) { |
Junio C Hamano | 200c75f | 2009-08-23 01:56:19 -0700 | [diff] [blame] | 802 | int i; |
Junio C Hamano | 1be224b | 2009-09-28 23:40:08 -0700 | [diff] [blame] | 803 | if (fseek(cmitmsg, 0L, SEEK_SET)) |
| 804 | die_errno("Could not rewind output message file"); |
| 805 | if (ftruncate(fileno(cmitmsg), 0)) |
| 806 | die_errno("Could not truncate output message file at scissors"); |
Junio C Hamano | 200c75f | 2009-08-23 01:56:19 -0700 | [diff] [blame] | 807 | still_looking = 1; |
| 808 | |
| 809 | /* |
| 810 | * We may have already read "secondary headers"; purge |
| 811 | * them to give ourselves a clean restart. |
| 812 | */ |
| 813 | for (i = 0; header[i]; i++) { |
| 814 | if (s_hdr_data[i]) |
| 815 | strbuf_release(s_hdr_data[i]); |
| 816 | s_hdr_data[i] = NULL; |
| 817 | } |
| 818 | return 0; |
| 819 | } |
| 820 | |
Don Zickus | f0658cf | 2007-03-12 15:52:06 -0400 | [diff] [blame] | 821 | if (patchbreak(line)) { |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 822 | fclose(cmitmsg); |
| 823 | cmitmsg = NULL; |
| 824 | return 1; |
| 825 | } |
| 826 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 827 | fputs(line->buf, cmitmsg); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 828 | return 0; |
| 829 | } |
| 830 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 831 | static void handle_patch(const struct strbuf *line) |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 832 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 833 | fwrite(line->buf, 1, line->len, patchfile); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 834 | patch_lines++; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 835 | } |
| 836 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 837 | static void handle_filter(struct strbuf *line) |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 838 | { |
| 839 | static int filter = 0; |
| 840 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 841 | /* filter tells us which part we left off on */ |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 842 | switch (filter) { |
| 843 | case 0: |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 844 | if (!handle_commit_msg(line)) |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 845 | break; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 846 | filter++; |
| 847 | case 1: |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 848 | handle_patch(line); |
| 849 | break; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 850 | } |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 851 | } |
| 852 | |
| 853 | static void handle_body(void) |
| 854 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 855 | struct strbuf prev = STRBUF_INIT; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 856 | |
| 857 | /* Skip up to the first boundary */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 858 | if (*content_top) { |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 859 | if (!find_boundary()) |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 860 | goto handle_body_out; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 861 | } |
| 862 | |
| 863 | do { |
| 864 | /* process any boundary lines */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 865 | if (*content_top && is_multipart_boundary(&line)) { |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 866 | /* flush any leftover */ |
Junio C Hamano | a9fd138 | 2008-08-09 01:17:24 -0700 | [diff] [blame] | 867 | if (prev.len) { |
| 868 | handle_filter(&prev); |
| 869 | strbuf_reset(&prev); |
| 870 | } |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 871 | if (!handle_boundary()) |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 872 | goto handle_body_out; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 873 | } |
| 874 | |
Don Zickus | 86747c1 | 2007-03-30 12:18:45 -0400 | [diff] [blame] | 875 | /* Unwrap transfer encoding */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 876 | decode_transfer_encoding(&line); |
Eric W. Biederman | 8b4525f | 2006-05-23 13:47:28 -0600 | [diff] [blame] | 877 | |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 878 | switch (transfer_encoding) { |
| 879 | case TE_BASE64: |
Jay Soffian | 87f1b88 | 2008-02-15 16:53:36 -0500 | [diff] [blame] | 880 | case TE_QP: |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 881 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 882 | struct strbuf **lines, **it, *sb; |
| 883 | |
| 884 | /* Prepend any previous partial lines */ |
| 885 | strbuf_insert(&line, 0, prev.buf, prev.len); |
| 886 | strbuf_reset(&prev); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 887 | |
| 888 | /* binary data most likely doesn't have newlines */ |
| 889 | if (message_type != TYPE_TEXT) { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 890 | handle_filter(&line); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 891 | break; |
| 892 | } |
Junio C Hamano | 9aa2309 | 2008-05-25 01:16:05 -0700 | [diff] [blame] | 893 | /* |
| 894 | * This is a decoded line that may contain |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 895 | * multiple new lines. Pass only one chunk |
| 896 | * at a time to handle_filter() |
| 897 | */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 898 | lines = strbuf_split(&line, '\n'); |
| 899 | for (it = lines; (sb = *it); it++) { |
| 900 | if (*(it + 1) == NULL) /* The last line */ |
| 901 | if (sb->buf[sb->len - 1] != '\n') { |
| 902 | /* Partial line, save it for later. */ |
| 903 | strbuf_addbuf(&prev, sb); |
| 904 | break; |
| 905 | } |
| 906 | handle_filter(sb); |
| 907 | } |
Junio C Hamano | 9aa2309 | 2008-05-25 01:16:05 -0700 | [diff] [blame] | 908 | /* |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 909 | * The partial chunk is saved in "prev" and will be |
Junio C Hamano | 9aa2309 | 2008-05-25 01:16:05 -0700 | [diff] [blame] | 910 | * appended by the next iteration of read_line_with_nul(). |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 911 | */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 912 | strbuf_list_free(lines); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 913 | break; |
| 914 | } |
| 915 | default: |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 916 | handle_filter(&line); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 917 | } |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 918 | |
Brandon Casey | c8f373a | 2009-08-04 22:31:57 -0500 | [diff] [blame] | 919 | } while (!strbuf_getwholeline(&line, fin, '\n')); |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 920 | |
| 921 | handle_body_out: |
| 922 | strbuf_release(&prev); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 923 | } |
| 924 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 925 | static void output_header_lines(FILE *fout, const char *hdr, const struct strbuf *data) |
Junio C Hamano | d7f6bae | 2007-07-28 17:57:25 -0700 | [diff] [blame] | 926 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 927 | const char *sp = data->buf; |
Junio C Hamano | d7f6bae | 2007-07-28 17:57:25 -0700 | [diff] [blame] | 928 | while (1) { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 929 | char *ep = strchr(sp, '\n'); |
Junio C Hamano | d7f6bae | 2007-07-28 17:57:25 -0700 | [diff] [blame] | 930 | int len; |
| 931 | if (!ep) |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 932 | len = strlen(sp); |
Junio C Hamano | d7f6bae | 2007-07-28 17:57:25 -0700 | [diff] [blame] | 933 | else |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 934 | len = ep - sp; |
| 935 | fprintf(fout, "%s: %.*s\n", hdr, len, sp); |
Junio C Hamano | d7f6bae | 2007-07-28 17:57:25 -0700 | [diff] [blame] | 936 | if (!ep) |
| 937 | break; |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 938 | sp = ep + 1; |
Junio C Hamano | d7f6bae | 2007-07-28 17:57:25 -0700 | [diff] [blame] | 939 | } |
| 940 | } |
| 941 | |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 942 | static void handle_info(void) |
| 943 | { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 944 | struct strbuf *hdr; |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 945 | int i; |
| 946 | |
| 947 | for (i = 0; header[i]; i++) { |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 948 | /* only print inbody headers if we output a patch file */ |
| 949 | if (patch_lines && s_hdr_data[i]) |
| 950 | hdr = s_hdr_data[i]; |
| 951 | else if (p_hdr_data[i]) |
| 952 | hdr = p_hdr_data[i]; |
| 953 | else |
Eric W. Biederman | 8b4525f | 2006-05-23 13:47:28 -0600 | [diff] [blame] | 954 | continue; |
| 955 | |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 956 | if (!memcmp(header[i], "Subject", 7)) { |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 957 | if (!keep_subject) { |
| 958 | cleanup_subject(hdr); |
| 959 | cleanup_space(hdr); |
Junio C Hamano | d7f6bae | 2007-07-28 17:57:25 -0700 | [diff] [blame] | 960 | } |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 961 | output_header_lines(fout, "Subject", hdr); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 962 | } else if (!memcmp(header[i], "From", 4)) { |
Kirill Smelkov | ddfb369 | 2009-01-12 15:22:11 -0800 | [diff] [blame] | 963 | cleanup_space(hdr); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 964 | handle_from(hdr); |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 965 | fprintf(fout, "Author: %s\n", name.buf); |
| 966 | fprintf(fout, "Email: %s\n", email.buf); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 967 | } else { |
| 968 | cleanup_space(hdr); |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 969 | fprintf(fout, "%s: %s\n", header[i], hdr->buf); |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 970 | } |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 971 | } |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 972 | fprintf(fout, "\n"); |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 973 | } |
| 974 | |
Junio C Hamano | 606417b | 2009-08-26 22:17:25 -0700 | [diff] [blame] | 975 | static int mailinfo(FILE *in, FILE *out, const char *msg, const char *patch) |
Lukas Sandström | 34488e3 | 2006-06-13 22:21:50 +0200 | [diff] [blame] | 976 | { |
Simon Sasburg | f88a545 | 2007-11-01 23:57:45 +0100 | [diff] [blame] | 977 | int peek; |
Lukas Sandström | 34488e3 | 2006-06-13 22:21:50 +0200 | [diff] [blame] | 978 | fin = in; |
| 979 | fout = out; |
| 980 | |
| 981 | cmitmsg = fopen(msg, "w"); |
| 982 | if (!cmitmsg) { |
| 983 | perror(msg); |
| 984 | return -1; |
| 985 | } |
| 986 | patchfile = fopen(patch, "w"); |
| 987 | if (!patchfile) { |
| 988 | perror(patch); |
| 989 | fclose(cmitmsg); |
| 990 | return -1; |
| 991 | } |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 992 | |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 993 | p_hdr_data = xcalloc(MAX_HDR_PARSED, sizeof(*p_hdr_data)); |
| 994 | s_hdr_data = xcalloc(MAX_HDR_PARSED, sizeof(*s_hdr_data)); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 995 | |
Simon Sasburg | f88a545 | 2007-11-01 23:57:45 +0100 | [diff] [blame] | 996 | do { |
| 997 | peek = fgetc(in); |
| 998 | } while (isspace(peek)); |
| 999 | ungetc(peek, in); |
| 1000 | |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 1001 | /* process the email header */ |
Lukas Sandström | 3b6121f | 2008-07-13 20:30:12 +0200 | [diff] [blame] | 1002 | while (read_one_header_line(&line, fin)) |
| 1003 | check_header(&line, p_hdr_data, 1); |
Don Zickus | 87ab799 | 2007-03-12 15:52:04 -0400 | [diff] [blame] | 1004 | |
| 1005 | handle_body(); |
| 1006 | handle_info(); |
Lukas Sandström | 34488e3 | 2006-06-13 22:21:50 +0200 | [diff] [blame] | 1007 | |
| 1008 | return 0; |
| 1009 | } |
| 1010 | |
Junio C Hamano | 43485d3 | 2009-08-26 22:30:33 -0700 | [diff] [blame] | 1011 | static int git_mailinfo_config(const char *var, const char *value, void *unused) |
| 1012 | { |
| 1013 | if (prefixcmp(var, "mailinfo.")) |
| 1014 | return git_default_config(var, value, unused); |
| 1015 | if (!strcmp(var, "mailinfo.scissors")) { |
| 1016 | use_scissors = git_config_bool(var, value); |
| 1017 | return 0; |
| 1018 | } |
| 1019 | /* perhaps others here */ |
| 1020 | return 0; |
| 1021 | } |
| 1022 | |
Junio C Hamano | 6bff6a6 | 2005-08-16 22:18:27 -0700 | [diff] [blame] | 1023 | static const char mailinfo_usage[] = |
Junio C Hamano | d268cb9 | 2009-11-30 14:43:24 -0800 | [diff] [blame] | 1024 | "git mailinfo [-k|-b] [-u | --encoding=<encoding> | -n] [--scissors | --no-scissors] msg patch < mail >info"; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 1025 | |
Linus Torvalds | a633fca | 2006-07-28 22:44:25 -0700 | [diff] [blame] | 1026 | int cmd_mailinfo(int argc, const char **argv, const char *prefix) |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 1027 | { |
Junio C Hamano | bb1091a | 2007-01-09 21:31:36 -0800 | [diff] [blame] | 1028 | const char *def_charset; |
| 1029 | |
Junio C Hamano | f1f909e | 2005-11-27 16:29:38 -0800 | [diff] [blame] | 1030 | /* NEEDSWORK: might want to do the optional .git/ directory |
| 1031 | * discovery |
| 1032 | */ |
Junio C Hamano | 43485d3 | 2009-08-26 22:30:33 -0700 | [diff] [blame] | 1033 | git_config(git_mailinfo_config, NULL); |
Junio C Hamano | f1f909e | 2005-11-27 16:29:38 -0800 | [diff] [blame] | 1034 | |
Pat Notz | a6fa599 | 2010-11-02 13:59:07 -0600 | [diff] [blame] | 1035 | def_charset = get_commit_output_encoding(); |
Junio C Hamano | bb1091a | 2007-01-09 21:31:36 -0800 | [diff] [blame] | 1036 | metainfo_charset = def_charset; |
| 1037 | |
Junio C Hamano | 6bff6a6 | 2005-08-16 22:18:27 -0700 | [diff] [blame] | 1038 | while (1 < argc && argv[1][0] == '-') { |
| 1039 | if (!strcmp(argv[1], "-k")) |
| 1040 | keep_subject = 1; |
Junio C Hamano | 17635fc | 2009-07-15 15:31:12 -0700 | [diff] [blame] | 1041 | else if (!strcmp(argv[1], "-b")) |
| 1042 | keep_non_patch_brackets_in_subject = 1; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 1043 | else if (!strcmp(argv[1], "-u")) |
Junio C Hamano | bb1091a | 2007-01-09 21:31:36 -0800 | [diff] [blame] | 1044 | metainfo_charset = def_charset; |
| 1045 | else if (!strcmp(argv[1], "-n")) |
| 1046 | metainfo_charset = NULL; |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 1047 | else if (!prefixcmp(argv[1], "--encoding=")) |
Junio C Hamano | 9f63892 | 2005-11-28 01:29:52 -0800 | [diff] [blame] | 1048 | metainfo_charset = argv[1] + 11; |
Junio C Hamano | 017678b | 2009-08-26 21:36:05 -0700 | [diff] [blame] | 1049 | else if (!strcmp(argv[1], "--scissors")) |
| 1050 | use_scissors = 1; |
| 1051 | else if (!strcmp(argv[1], "--no-scissors")) |
| 1052 | use_scissors = 0; |
Lukas Sandström | d25e515 | 2009-11-20 17:12:47 +0100 | [diff] [blame] | 1053 | else if (!strcmp(argv[1], "--no-inbody-headers")) |
| 1054 | use_inbody_headers = 0; |
Junio C Hamano | d4a9ce7 | 2005-08-28 12:33:16 -0700 | [diff] [blame] | 1055 | else |
Junio C Hamano | f1f909e | 2005-11-27 16:29:38 -0800 | [diff] [blame] | 1056 | usage(mailinfo_usage); |
Junio C Hamano | 6bff6a6 | 2005-08-16 22:18:27 -0700 | [diff] [blame] | 1057 | argc--; argv++; |
| 1058 | } |
| 1059 | |
Linus Torvalds | a196d8d | 2005-06-23 09:40:23 -0700 | [diff] [blame] | 1060 | if (argc != 3) |
Junio C Hamano | f1f909e | 2005-11-27 16:29:38 -0800 | [diff] [blame] | 1061 | usage(mailinfo_usage); |
Lukas Sandström | 34488e3 | 2006-06-13 22:21:50 +0200 | [diff] [blame] | 1062 | |
Junio C Hamano | 606417b | 2009-08-26 22:17:25 -0700 | [diff] [blame] | 1063 | return !!mailinfo(stdin, stdout, argv[1], argv[2]); |
Linus Torvalds | 2744b23 | 2005-04-11 23:46:50 -0700 | [diff] [blame] | 1064 | } |