2 * Another stupid program, this one parsing the headers of an
3 * email to figure out authorship and subject
9 static FILE *cmitmsg, *patchfile, *fin, *fout;
11 static int keep_subject;
12 static const char *metainfo_charset;
13 static char line[1000];
14 static char name[1000];
15 static char email[1000];
18 TE_DONTCARE, TE_QP, TE_BASE64,
21 TYPE_TEXT, TYPE_OTHER,
24 static char charset[256];
25 static int patch_lines;
26 static char **p_hdr_data, **s_hdr_data;
28 #define MAX_HDR_PARSED 10
29 #define MAX_BOUNDARIES 5
31 static char *sanity_check(char *name, char *email)
33 int len = strlen(name);
34 if (len < 3 || len > 60)
36 if (strchr(name, '@') || strchr(name, '<') || strchr(name, '>'))
41 static int bogus_from(char *line)
43 /* John Doe <johndoe> */
44 char *bra, *ket, *dst, *cp;
46 /* This is fallback, so do not bother if we already have an
52 bra = strchr(line, '<');
55 ket = strchr(bra, '>');
59 for (dst = email, cp = bra+1; cp < ket; )
62 for (cp = line; isspace(*cp); cp++)
64 for (bra--; isspace(*bra); bra--)
66 cp = sanity_check(cp, email);
71 static int handle_from(char *in_line)
77 strcpy(line, in_line);
78 at = strchr(line, '@');
80 return bogus_from(line);
83 * If we already have one email, don't take any confusing lines
85 if (*email && strchr(at+1, '@'))
88 /* Pick up the string around '@', possibly delimited with <>
89 * pair; that is the email part. White them out while copying.
103 unsigned char c = *at;
104 if (!c || c == '>' || isspace(c)) {
114 /* The remainder is name. It could be "John Doe <john.doe@xz>"
115 * or "john.doe@xz (John Doe)", but we have whited out the
116 * email part, so trim from both ends, possibly removing
117 * the () pair at the end.
119 at = line + strlen(line);
121 unsigned char c = *--at;
123 at[(c == ')') ? 0 : 1] = 0;
130 unsigned char c = *at;
131 if (!c || !isspace(c)) {
138 at = sanity_check(at, email);
143 static int handle_header(char *line, char *data, int ofs)
148 strcpy(data, line+ofs);
153 /* NOTE NOTE NOTE. We do not claim we do full MIME. We just attempt
154 * to have enough heuristics to grok MIME encoded patches often found
155 * on our mailing lists. For example, we do not even treat header lines
156 * case insensitively.
159 static int slurp_attr(const char *line, const char *name, char *attr)
161 const char *ends, *ap = strcasestr(line, name);
175 sz = strcspn(ap, ends);
176 memcpy(attr, ap, sz);
181 struct content_type {
186 static struct content_type content[MAX_BOUNDARIES];
188 static struct content_type *content_top = content;
190 static int handle_content_type(char *line)
194 if (strcasestr(line, "text/") == NULL)
195 message_type = TYPE_OTHER;
196 if (slurp_attr(line, "boundary=", boundary + 2)) {
197 memcpy(boundary, "--", 2);
198 if (content_top++ >= &content[MAX_BOUNDARIES]) {
199 fprintf(stderr, "Too many boundaries to handle\n");
202 content_top->boundary_len = strlen(boundary);
203 content_top->boundary = xmalloc(content_top->boundary_len+1);
204 strcpy(content_top->boundary, boundary);
206 if (slurp_attr(line, "charset=", charset)) {
208 for (i = 0; (c = charset[i]) != 0; i++)
209 charset[i] = tolower(c);
214 static int handle_content_transfer_encoding(char *line)
216 if (strcasestr(line, "base64"))
217 transfer_encoding = TE_BASE64;
218 else if (strcasestr(line, "quoted-printable"))
219 transfer_encoding = TE_QP;
221 transfer_encoding = TE_DONTCARE;
225 static int is_multipart_boundary(const char *line)
227 return (!memcmp(line, content_top->boundary, content_top->boundary_len));
230 static int eatspace(char *line)
232 int len = strlen(line);
233 while (len > 0 && isspace(line[len-1]))
238 static char *cleanup_subject(char *subject)
245 if (!memcmp("e:", subject+1, 2)) {
250 case ' ': case '\t': case ':':
255 p = strchr(subject, ']');
261 remove = p - subject;
262 if (remove <= len *2) {
273 static void cleanup_space(char *buf)
276 while ((c = *buf) != 0) {
282 int len = strlen(buf);
283 memmove(buf, buf+1, len);
290 static void decode_header(char *it);
291 static char *header[MAX_HDR_PARSED] = {
292 "From","Subject","Date",
295 static int check_header(char *line, char **hdr_data, int overwrite)
299 /* search for the interesting parts */
300 for (i = 0; header[i]; i++) {
301 int len = strlen(header[i]);
302 if ((!hdr_data[i] || overwrite) &&
303 !strncasecmp(line, header[i], len) &&
304 line[len] == ':' && isspace(line[len + 1])) {
305 /* Unwrap inline B and Q encoding, and optionally
306 * normalize the meta information to utf8.
308 decode_header(line + len + 2);
309 hdr_data[i] = xmalloc(1000 * sizeof(char));
310 if (! handle_header(line, hdr_data[i], len + 2)) {
317 if (!strncasecmp(line, "Content-Type", 12) &&
318 line[12] == ':' && isspace(line[12 + 1])) {
319 decode_header(line + 12 + 2);
320 if (! handle_content_type(line)) {
324 if (!strncasecmp(line, "Content-Transfer-Encoding", 25) &&
325 line[25] == ':' && isspace(line[25 + 1])) {
326 decode_header(line + 25 + 2);
327 if (! handle_content_transfer_encoding(line)) {
332 /* for inbody stuff */
333 if (!memcmp(">From", line, 5) && isspace(line[5]))
335 if (!memcmp("[PATCH]", line, 7) && isspace(line[7])) {
336 for (i = 0; header[i]; i++) {
337 if (!memcmp("Subject: ", header[i], 9)) {
338 if (! handle_header(line, hdr_data[i], 0)) {
349 static int is_rfc2822_header(char *line)
352 * The section that defines the loosest possible
353 * field name is "3.6.8 Optional fields".
355 * optional-field = field-name ":" unstructured CRLF
356 * field-name = 1*ftext
357 * ftext = %d33-57 / %59-126
362 /* Count mbox From headers as headers */
363 if (!memcmp(line, "From ", 5) || !memcmp(line, ">From ", 6))
366 while ((ch = *cp++)) {
369 if ((33 <= ch && ch <= 57) ||
370 (59 <= ch && ch <= 126))
378 * sz is size of 'line' buffer in bytes. Must be reasonably
379 * long enough to hold one physical real-world e-mail line.
381 static int read_one_header_line(char *line, int sz, FILE *in)
386 * We will read at most (sz-1) bytes and then potentially
387 * re-add NUL after it. Accessing line[sz] after this is safe
388 * and we can allow len to grow up to and including sz.
392 /* Get the first part of the line. */
393 if (!fgets(line, sz, in))
397 * Is it an empty line or not a valid rfc2822 header?
398 * If so, stop here, and return false ("not a header")
400 len = eatspace(line);
401 if (!len || !is_rfc2822_header(line)) {
402 /* Re-add the newline */
404 line[len + 1] = '\0';
409 * Now we need to eat all the continuation lines..
410 * Yuck, 2822 header "folding"
414 static char continuation[1000];
416 peek = fgetc(in); ungetc(peek, in);
417 if (peek != ' ' && peek != '\t')
419 if (!fgets(continuation, sizeof(continuation), in))
421 addlen = eatspace(continuation);
423 if (addlen >= sz - len)
424 addlen = sz - len - 1;
425 memcpy(line + len, continuation, addlen);
435 static int decode_q_segment(char *in, char *ot, char *ep, int rfc2047)
438 while ((c = *in++) != 0 && (in <= ep)) {
442 break; /* drop trailing newline */
443 *ot++ = ((hexval(d) << 4) | hexval(*in++));
446 if (rfc2047 && c == '_') /* rfc2047 4.2 (2) */
454 static int decode_b_segment(char *in, char *ot, char *ep)
456 /* Decode in..ep, possibly in-place to ot */
457 int c, pos = 0, acc = 0;
459 while ((c = *in++) != 0 && (in <= ep)) {
464 else if ('A' <= c && c <= 'Z')
466 else if ('a' <= c && c <= 'z')
468 else if ('0' <= c && c <= '9')
471 /* padding is almost like (c == 0), except we do
472 * not output NUL resulting only from it;
473 * for now we just trust the data.
478 continue; /* garbage */
484 *ot++ = (acc | (c >> 4));
488 *ot++ = (acc | (c >> 2));
502 * When there is no known charset, guess.
504 * Right now we assume that if the target is UTF-8 (the default),
505 * and it already looks like UTF-8 (which includes US-ASCII as its
506 * subset, of course) then that is what it is and there is nothing
509 * Otherwise, we default to assuming it is Latin1 for historical
512 static const char *guess_charset(const char *line, const char *target_charset)
514 if (is_encoding_utf8(target_charset)) {
521 static void convert_to_utf8(char *line, const char *charset)
525 if (!charset || !*charset) {
526 charset = guess_charset(line, metainfo_charset);
531 if (!strcmp(metainfo_charset, charset))
533 out = reencode_string(line, metainfo_charset, charset);
535 die("cannot convert from %s to %s\n",
536 charset, metainfo_charset);
541 static int decode_header_bq(char *it)
543 char *in, *out, *ep, *cp, *sp;
549 while ((ep = strstr(in, "=?")) != NULL) {
551 char charset_q[256], piecebuf[256];
561 * ep : "=?iso-2022-jp?B?GyR...?= foo"
562 * ep : "=?ISO-8859-1?Q?Foo=FCbar?= baz"
565 cp = strchr(ep, '?');
567 return rfc2047; /* no munging */
568 for (sp = ep; sp < cp; sp++)
569 charset_q[sp - ep] = tolower(*sp);
570 charset_q[cp - ep] = 0;
572 if (!encoding || cp[2] != '?')
573 return rfc2047; /* no munging */
574 ep = strstr(cp + 3, "?=");
576 return rfc2047; /* no munging */
577 switch (tolower(encoding)) {
579 return rfc2047; /* no munging */
581 sz = decode_b_segment(cp + 3, piecebuf, ep);
584 sz = decode_q_segment(cp + 3, piecebuf, ep, 1);
589 if (metainfo_charset)
590 convert_to_utf8(piecebuf, charset_q);
591 strcpy(out, piecebuf);
600 static void decode_header(char *it)
603 if (decode_header_bq(it))
605 /* otherwise "it" is a straight copy of the input.
606 * This can be binary guck but there is no charset specified.
608 if (metainfo_charset)
609 convert_to_utf8(it, "");
612 static void decode_transfer_encoding(char *line)
616 switch (transfer_encoding) {
618 ep = line + strlen(line);
619 decode_q_segment(line, line, ep, 0);
622 ep = line + strlen(line);
623 decode_b_segment(line, line, ep);
630 static int handle_filter(char *line);
632 static int find_boundary(void)
634 while(fgets(line, sizeof(line), fin) != NULL) {
635 if (is_multipart_boundary(line))
641 static int handle_boundary(void)
645 if (!memcmp(line+content_top->boundary_len, "--", 2)) {
646 /* we hit an end boundary */
647 /* pop the current boundary off the stack */
648 free(content_top->boundary);
650 /* technically won't happen as is_multipart_boundary()
651 will fail first. But just in case..
653 if (content_top-- < content) {
654 fprintf(stderr, "Detected mismatched boundaries, "
658 handle_filter(newline);
660 /* skip to the next boundary */
661 if (!find_boundary())
666 /* set some defaults */
667 transfer_encoding = TE_DONTCARE;
669 message_type = TYPE_TEXT;
671 /* slurp in this section's info */
672 while (read_one_header_line(line, sizeof(line), fin))
673 check_header(line, p_hdr_data, 0);
675 /* eat the blank line after section info */
676 return (fgets(line, sizeof(line), fin) != NULL);
679 static inline int patchbreak(const char *line)
681 /* Beginning of a "diff -" header? */
682 if (!memcmp("diff -", line, 6))
685 /* CVS "Index: " line? */
686 if (!memcmp("Index: ", line, 7))
690 * "--- <filename>" starts patches without headers
691 * "---<sp>*" is a manual separator
693 if (!memcmp("---", line, 3)) {
695 /* space followed by a filename? */
696 if (line[0] == ' ' && !isspace(line[1]))
698 /* Just whitespace? */
700 unsigned char c = *line++;
712 static int handle_commit_msg(char *line)
714 static int still_looking = 1;
721 if (isspace(*line)) {
722 for (cp = line + 1; *cp; cp++) {
729 if ((still_looking = check_header(cp, s_hdr_data, 0)) != 0)
733 /* normalize the log message to UTF-8. */
734 if (metainfo_charset)
735 convert_to_utf8(line, charset);
737 if (patchbreak(line)) {
743 fputs(line, cmitmsg);
747 static int handle_patch(char *line)
749 fputs(line, patchfile);
754 static int handle_filter(char *line)
756 static int filter = 0;
758 /* filter tells us which part we left off on
759 * a non-zero return indicates we hit a filter point
763 if (!handle_commit_msg(line))
767 if (!handle_patch(line))
777 static void handle_body(void)
780 static char newline[2000];
781 static char *np = newline;
783 /* Skip up to the first boundary */
784 if (content_top->boundary) {
785 if (!find_boundary())
790 /* process any boundary lines */
791 if (content_top->boundary && is_multipart_boundary(line)) {
792 /* flush any leftover */
793 if ((transfer_encoding == TE_BASE64) &&
795 handle_filter(newline);
797 if (!handle_boundary())
801 /* Unwrap transfer encoding */
802 decode_transfer_encoding(line);
804 switch (transfer_encoding) {
809 /* binary data most likely doesn't have newlines */
810 if (message_type != TYPE_TEXT) {
811 rc = handle_filter(line);
815 /* this is a decoded line that may contain
816 * multiple new lines. Pass only one chunk
817 * at a time to handle_filter()
821 while (*op != '\n' && *op != 0)
825 /* should be sitting on a new line */
828 rc = handle_filter(newline);
832 /* the partial chunk is saved in newline and
833 * will be appended by the next iteration of fgets
838 rc = handle_filter(line);
841 /* nothing left to filter */
843 } while (fgets(line, sizeof(line), fin));
848 static void output_header_lines(FILE *fout, const char *hdr, char *data)
851 char *ep = strchr(data, '\n');
857 fprintf(fout, "%s: %.*s\n", hdr, len, data);
864 static void handle_info(void)
870 for (i = 0; header[i]; i++) {
872 /* only print inbody headers if we output a patch file */
873 if (patch_lines && s_hdr_data[i])
875 else if (p_hdr_data[i])
880 if (!memcmp(header[i], "Subject", 7)) {
884 sub = cleanup_subject(hdr);
887 output_header_lines(fout, "Subject", sub);
888 } else if (!memcmp(header[i], "From", 4)) {
890 fprintf(fout, "Author: %s\n", name);
891 fprintf(fout, "Email: %s\n", email);
894 fprintf(fout, "%s: %s\n", header[i], hdr);
900 static int mailinfo(FILE *in, FILE *out, int ks, const char *encoding,
901 const char *msg, const char *patch)
904 metainfo_charset = encoding;
908 cmitmsg = fopen(msg, "w");
913 patchfile = fopen(patch, "w");
920 p_hdr_data = xcalloc(MAX_HDR_PARSED, sizeof(char *));
921 s_hdr_data = xcalloc(MAX_HDR_PARSED, sizeof(char *));
923 /* process the email header */
924 while (read_one_header_line(line, sizeof(line), fin))
925 check_header(line, p_hdr_data, 1);
933 static const char mailinfo_usage[] =
934 "git-mailinfo [-k] [-u | --encoding=<encoding>] msg patch <mail >info";
936 int cmd_mailinfo(int argc, const char **argv, const char *prefix)
938 const char *def_charset;
940 /* NEEDSWORK: might want to do the optional .git/ directory
943 git_config(git_default_config);
945 def_charset = (git_commit_encoding ? git_commit_encoding : "utf-8");
946 metainfo_charset = def_charset;
948 while (1 < argc && argv[1][0] == '-') {
949 if (!strcmp(argv[1], "-k"))
951 else if (!strcmp(argv[1], "-u"))
952 metainfo_charset = def_charset;
953 else if (!strcmp(argv[1], "-n"))
954 metainfo_charset = NULL;
955 else if (!prefixcmp(argv[1], "--encoding="))
956 metainfo_charset = argv[1] + 11;
958 usage(mailinfo_usage);
963 usage(mailinfo_usage);
965 return !!mailinfo(stdin, stdout, keep_subject, metainfo_charset, argv[1], argv[2]);