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