builtin / blame.con commit mailmap: simplify map_user() interface (ea02ffa)
   1/*
   2 * Blame
   3 *
   4 * Copyright (c) 2006, Junio C Hamano
   5 */
   6
   7#include "cache.h"
   8#include "builtin.h"
   9#include "blob.h"
  10#include "commit.h"
  11#include "tag.h"
  12#include "tree-walk.h"
  13#include "diff.h"
  14#include "diffcore.h"
  15#include "revision.h"
  16#include "quote.h"
  17#include "xdiff-interface.h"
  18#include "cache-tree.h"
  19#include "string-list.h"
  20#include "mailmap.h"
  21#include "parse-options.h"
  22#include "utf8.h"
  23#include "userdiff.h"
  24
  25static char blame_usage[] = N_("git blame [options] [rev-opts] [rev] [--] file");
  26
  27static const char *blame_opt_usage[] = {
  28        blame_usage,
  29        "",
  30        N_("[rev-opts] are documented in git-rev-list(1)"),
  31        NULL
  32};
  33
  34static int longest_file;
  35static int longest_author;
  36static int max_orig_digits;
  37static int max_digits;
  38static int max_score_digits;
  39static int show_root;
  40static int reverse;
  41static int blank_boundary;
  42static int incremental;
  43static int xdl_opts;
  44static int abbrev = -1;
  45
  46static enum date_mode blame_date_mode = DATE_ISO8601;
  47static size_t blame_date_width;
  48
  49static struct string_list mailmap;
  50
  51#ifndef DEBUG
  52#define DEBUG 0
  53#endif
  54
  55/* stats */
  56static int num_read_blob;
  57static int num_get_patch;
  58static int num_commits;
  59
  60#define PICKAXE_BLAME_MOVE              01
  61#define PICKAXE_BLAME_COPY              02
  62#define PICKAXE_BLAME_COPY_HARDER       04
  63#define PICKAXE_BLAME_COPY_HARDEST      010
  64
  65/*
  66 * blame for a blame_entry with score lower than these thresholds
  67 * is not passed to the parent using move/copy logic.
  68 */
  69static unsigned blame_move_score;
  70static unsigned blame_copy_score;
  71#define BLAME_DEFAULT_MOVE_SCORE        20
  72#define BLAME_DEFAULT_COPY_SCORE        40
  73
  74/* bits #0..7 in revision.h, #8..11 used for merge_bases() in commit.c */
  75#define METAINFO_SHOWN          (1u<<12)
  76#define MORE_THAN_ONE_PATH      (1u<<13)
  77
  78/*
  79 * One blob in a commit that is being suspected
  80 */
  81struct origin {
  82        int refcnt;
  83        struct origin *previous;
  84        struct commit *commit;
  85        mmfile_t file;
  86        unsigned char blob_sha1[20];
  87        unsigned mode;
  88        char path[FLEX_ARRAY];
  89};
  90
  91static int diff_hunks(mmfile_t *file_a, mmfile_t *file_b, long ctxlen,
  92                      xdl_emit_hunk_consume_func_t hunk_func, void *cb_data)
  93{
  94        xpparam_t xpp = {0};
  95        xdemitconf_t xecfg = {0};
  96        xdemitcb_t ecb = {NULL};
  97
  98        xpp.flags = xdl_opts;
  99        xecfg.ctxlen = ctxlen;
 100        xecfg.hunk_func = hunk_func;
 101        ecb.priv = cb_data;
 102        return xdi_diff(file_a, file_b, &xpp, &xecfg, &ecb);
 103}
 104
 105/*
 106 * Prepare diff_filespec and convert it using diff textconv API
 107 * if the textconv driver exists.
 108 * Return 1 if the conversion succeeds, 0 otherwise.
 109 */
 110int textconv_object(const char *path,
 111                    unsigned mode,
 112                    const unsigned char *sha1,
 113                    int sha1_valid,
 114                    char **buf,
 115                    unsigned long *buf_size)
 116{
 117        struct diff_filespec *df;
 118        struct userdiff_driver *textconv;
 119
 120        df = alloc_filespec(path);
 121        fill_filespec(df, sha1, sha1_valid, mode);
 122        textconv = get_textconv(df);
 123        if (!textconv) {
 124                free_filespec(df);
 125                return 0;
 126        }
 127
 128        *buf_size = fill_textconv(textconv, df, buf);
 129        free_filespec(df);
 130        return 1;
 131}
 132
 133/*
 134 * Given an origin, prepare mmfile_t structure to be used by the
 135 * diff machinery
 136 */
 137static void fill_origin_blob(struct diff_options *opt,
 138                             struct origin *o, mmfile_t *file)
 139{
 140        if (!o->file.ptr) {
 141                enum object_type type;
 142                unsigned long file_size;
 143
 144                num_read_blob++;
 145                if (DIFF_OPT_TST(opt, ALLOW_TEXTCONV) &&
 146                    textconv_object(o->path, o->mode, o->blob_sha1, 1, &file->ptr, &file_size))
 147                        ;
 148                else
 149                        file->ptr = read_sha1_file(o->blob_sha1, &type, &file_size);
 150                file->size = file_size;
 151
 152                if (!file->ptr)
 153                        die("Cannot read blob %s for path %s",
 154                            sha1_to_hex(o->blob_sha1),
 155                            o->path);
 156                o->file = *file;
 157        }
 158        else
 159                *file = o->file;
 160}
 161
 162/*
 163 * Origin is refcounted and usually we keep the blob contents to be
 164 * reused.
 165 */
 166static inline struct origin *origin_incref(struct origin *o)
 167{
 168        if (o)
 169                o->refcnt++;
 170        return o;
 171}
 172
 173static void origin_decref(struct origin *o)
 174{
 175        if (o && --o->refcnt <= 0) {
 176                if (o->previous)
 177                        origin_decref(o->previous);
 178                free(o->file.ptr);
 179                free(o);
 180        }
 181}
 182
 183static void drop_origin_blob(struct origin *o)
 184{
 185        if (o->file.ptr) {
 186                free(o->file.ptr);
 187                o->file.ptr = NULL;
 188        }
 189}
 190
 191/*
 192 * Each group of lines is described by a blame_entry; it can be split
 193 * as we pass blame to the parents.  They form a linked list in the
 194 * scoreboard structure, sorted by the target line number.
 195 */
 196struct blame_entry {
 197        struct blame_entry *prev;
 198        struct blame_entry *next;
 199
 200        /* the first line of this group in the final image;
 201         * internally all line numbers are 0 based.
 202         */
 203        int lno;
 204
 205        /* how many lines this group has */
 206        int num_lines;
 207
 208        /* the commit that introduced this group into the final image */
 209        struct origin *suspect;
 210
 211        /* true if the suspect is truly guilty; false while we have not
 212         * checked if the group came from one of its parents.
 213         */
 214        char guilty;
 215
 216        /* true if the entry has been scanned for copies in the current parent
 217         */
 218        char scanned;
 219
 220        /* the line number of the first line of this group in the
 221         * suspect's file; internally all line numbers are 0 based.
 222         */
 223        int s_lno;
 224
 225        /* how significant this entry is -- cached to avoid
 226         * scanning the lines over and over.
 227         */
 228        unsigned score;
 229};
 230
 231/*
 232 * The current state of the blame assignment.
 233 */
 234struct scoreboard {
 235        /* the final commit (i.e. where we started digging from) */
 236        struct commit *final;
 237        struct rev_info *revs;
 238        const char *path;
 239
 240        /*
 241         * The contents in the final image.
 242         * Used by many functions to obtain contents of the nth line,
 243         * indexed with scoreboard.lineno[blame_entry.lno].
 244         */
 245        const char *final_buf;
 246        unsigned long final_buf_size;
 247
 248        /* linked list of blames */
 249        struct blame_entry *ent;
 250
 251        /* look-up a line in the final buffer */
 252        int num_lines;
 253        int *lineno;
 254};
 255
 256static inline int same_suspect(struct origin *a, struct origin *b)
 257{
 258        if (a == b)
 259                return 1;
 260        if (a->commit != b->commit)
 261                return 0;
 262        return !strcmp(a->path, b->path);
 263}
 264
 265static void sanity_check_refcnt(struct scoreboard *);
 266
 267/*
 268 * If two blame entries that are next to each other came from
 269 * contiguous lines in the same origin (i.e. <commit, path> pair),
 270 * merge them together.
 271 */
 272static void coalesce(struct scoreboard *sb)
 273{
 274        struct blame_entry *ent, *next;
 275
 276        for (ent = sb->ent; ent && (next = ent->next); ent = next) {
 277                if (same_suspect(ent->suspect, next->suspect) &&
 278                    ent->guilty == next->guilty &&
 279                    ent->s_lno + ent->num_lines == next->s_lno) {
 280                        ent->num_lines += next->num_lines;
 281                        ent->next = next->next;
 282                        if (ent->next)
 283                                ent->next->prev = ent;
 284                        origin_decref(next->suspect);
 285                        free(next);
 286                        ent->score = 0;
 287                        next = ent; /* again */
 288                }
 289        }
 290
 291        if (DEBUG) /* sanity */
 292                sanity_check_refcnt(sb);
 293}
 294
 295/*
 296 * Given a commit and a path in it, create a new origin structure.
 297 * The callers that add blame to the scoreboard should use
 298 * get_origin() to obtain shared, refcounted copy instead of calling
 299 * this function directly.
 300 */
 301static struct origin *make_origin(struct commit *commit, const char *path)
 302{
 303        struct origin *o;
 304        o = xcalloc(1, sizeof(*o) + strlen(path) + 1);
 305        o->commit = commit;
 306        o->refcnt = 1;
 307        strcpy(o->path, path);
 308        return o;
 309}
 310
 311/*
 312 * Locate an existing origin or create a new one.
 313 */
 314static struct origin *get_origin(struct scoreboard *sb,
 315                                 struct commit *commit,
 316                                 const char *path)
 317{
 318        struct blame_entry *e;
 319
 320        for (e = sb->ent; e; e = e->next) {
 321                if (e->suspect->commit == commit &&
 322                    !strcmp(e->suspect->path, path))
 323                        return origin_incref(e->suspect);
 324        }
 325        return make_origin(commit, path);
 326}
 327
 328/*
 329 * Fill the blob_sha1 field of an origin if it hasn't, so that later
 330 * call to fill_origin_blob() can use it to locate the data.  blob_sha1
 331 * for an origin is also used to pass the blame for the entire file to
 332 * the parent to detect the case where a child's blob is identical to
 333 * that of its parent's.
 334 *
 335 * This also fills origin->mode for corresponding tree path.
 336 */
 337static int fill_blob_sha1_and_mode(struct origin *origin)
 338{
 339        if (!is_null_sha1(origin->blob_sha1))
 340                return 0;
 341        if (get_tree_entry(origin->commit->object.sha1,
 342                           origin->path,
 343                           origin->blob_sha1, &origin->mode))
 344                goto error_out;
 345        if (sha1_object_info(origin->blob_sha1, NULL) != OBJ_BLOB)
 346                goto error_out;
 347        return 0;
 348 error_out:
 349        hashclr(origin->blob_sha1);
 350        origin->mode = S_IFINVALID;
 351        return -1;
 352}
 353
 354/*
 355 * We have an origin -- check if the same path exists in the
 356 * parent and return an origin structure to represent it.
 357 */
 358static struct origin *find_origin(struct scoreboard *sb,
 359                                  struct commit *parent,
 360                                  struct origin *origin)
 361{
 362        struct origin *porigin = NULL;
 363        struct diff_options diff_opts;
 364        const char *paths[2];
 365
 366        if (parent->util) {
 367                /*
 368                 * Each commit object can cache one origin in that
 369                 * commit.  This is a freestanding copy of origin and
 370                 * not refcounted.
 371                 */
 372                struct origin *cached = parent->util;
 373                if (!strcmp(cached->path, origin->path)) {
 374                        /*
 375                         * The same path between origin and its parent
 376                         * without renaming -- the most common case.
 377                         */
 378                        porigin = get_origin(sb, parent, cached->path);
 379
 380                        /*
 381                         * If the origin was newly created (i.e. get_origin
 382                         * would call make_origin if none is found in the
 383                         * scoreboard), it does not know the blob_sha1/mode,
 384                         * so copy it.  Otherwise porigin was in the
 385                         * scoreboard and already knows blob_sha1/mode.
 386                         */
 387                        if (porigin->refcnt == 1) {
 388                                hashcpy(porigin->blob_sha1, cached->blob_sha1);
 389                                porigin->mode = cached->mode;
 390                        }
 391                        return porigin;
 392                }
 393                /* otherwise it was not very useful; free it */
 394                free(parent->util);
 395                parent->util = NULL;
 396        }
 397
 398        /* See if the origin->path is different between parent
 399         * and origin first.  Most of the time they are the
 400         * same and diff-tree is fairly efficient about this.
 401         */
 402        diff_setup(&diff_opts);
 403        DIFF_OPT_SET(&diff_opts, RECURSIVE);
 404        diff_opts.detect_rename = 0;
 405        diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
 406        paths[0] = origin->path;
 407        paths[1] = NULL;
 408
 409        diff_tree_setup_paths(paths, &diff_opts);
 410        diff_setup_done(&diff_opts);
 411
 412        if (is_null_sha1(origin->commit->object.sha1))
 413                do_diff_cache(parent->tree->object.sha1, &diff_opts);
 414        else
 415                diff_tree_sha1(parent->tree->object.sha1,
 416                               origin->commit->tree->object.sha1,
 417                               "", &diff_opts);
 418        diffcore_std(&diff_opts);
 419
 420        if (!diff_queued_diff.nr) {
 421                /* The path is the same as parent */
 422                porigin = get_origin(sb, parent, origin->path);
 423                hashcpy(porigin->blob_sha1, origin->blob_sha1);
 424                porigin->mode = origin->mode;
 425        } else {
 426                /*
 427                 * Since origin->path is a pathspec, if the parent
 428                 * commit had it as a directory, we will see a whole
 429                 * bunch of deletion of files in the directory that we
 430                 * do not care about.
 431                 */
 432                int i;
 433                struct diff_filepair *p = NULL;
 434                for (i = 0; i < diff_queued_diff.nr; i++) {
 435                        const char *name;
 436                        p = diff_queued_diff.queue[i];
 437                        name = p->one->path ? p->one->path : p->two->path;
 438                        if (!strcmp(name, origin->path))
 439                                break;
 440                }
 441                if (!p)
 442                        die("internal error in blame::find_origin");
 443                switch (p->status) {
 444                default:
 445                        die("internal error in blame::find_origin (%c)",
 446                            p->status);
 447                case 'M':
 448                        porigin = get_origin(sb, parent, origin->path);
 449                        hashcpy(porigin->blob_sha1, p->one->sha1);
 450                        porigin->mode = p->one->mode;
 451                        break;
 452                case 'A':
 453                case 'T':
 454                        /* Did not exist in parent, or type changed */
 455                        break;
 456                }
 457        }
 458        diff_flush(&diff_opts);
 459        diff_tree_release_paths(&diff_opts);
 460        if (porigin) {
 461                /*
 462                 * Create a freestanding copy that is not part of
 463                 * the refcounted origin found in the scoreboard, and
 464                 * cache it in the commit.
 465                 */
 466                struct origin *cached;
 467
 468                cached = make_origin(porigin->commit, porigin->path);
 469                hashcpy(cached->blob_sha1, porigin->blob_sha1);
 470                cached->mode = porigin->mode;
 471                parent->util = cached;
 472        }
 473        return porigin;
 474}
 475
 476/*
 477 * We have an origin -- find the path that corresponds to it in its
 478 * parent and return an origin structure to represent it.
 479 */
 480static struct origin *find_rename(struct scoreboard *sb,
 481                                  struct commit *parent,
 482                                  struct origin *origin)
 483{
 484        struct origin *porigin = NULL;
 485        struct diff_options diff_opts;
 486        int i;
 487        const char *paths[2];
 488
 489        diff_setup(&diff_opts);
 490        DIFF_OPT_SET(&diff_opts, RECURSIVE);
 491        diff_opts.detect_rename = DIFF_DETECT_RENAME;
 492        diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
 493        diff_opts.single_follow = origin->path;
 494        paths[0] = NULL;
 495        diff_tree_setup_paths(paths, &diff_opts);
 496        diff_setup_done(&diff_opts);
 497
 498        if (is_null_sha1(origin->commit->object.sha1))
 499                do_diff_cache(parent->tree->object.sha1, &diff_opts);
 500        else
 501                diff_tree_sha1(parent->tree->object.sha1,
 502                               origin->commit->tree->object.sha1,
 503                               "", &diff_opts);
 504        diffcore_std(&diff_opts);
 505
 506        for (i = 0; i < diff_queued_diff.nr; i++) {
 507                struct diff_filepair *p = diff_queued_diff.queue[i];
 508                if ((p->status == 'R' || p->status == 'C') &&
 509                    !strcmp(p->two->path, origin->path)) {
 510                        porigin = get_origin(sb, parent, p->one->path);
 511                        hashcpy(porigin->blob_sha1, p->one->sha1);
 512                        porigin->mode = p->one->mode;
 513                        break;
 514                }
 515        }
 516        diff_flush(&diff_opts);
 517        diff_tree_release_paths(&diff_opts);
 518        return porigin;
 519}
 520
 521/*
 522 * Link in a new blame entry to the scoreboard.  Entries that cover the
 523 * same line range have been removed from the scoreboard previously.
 524 */
 525static void add_blame_entry(struct scoreboard *sb, struct blame_entry *e)
 526{
 527        struct blame_entry *ent, *prev = NULL;
 528
 529        origin_incref(e->suspect);
 530
 531        for (ent = sb->ent; ent && ent->lno < e->lno; ent = ent->next)
 532                prev = ent;
 533
 534        /* prev, if not NULL, is the last one that is below e */
 535        e->prev = prev;
 536        if (prev) {
 537                e->next = prev->next;
 538                prev->next = e;
 539        }
 540        else {
 541                e->next = sb->ent;
 542                sb->ent = e;
 543        }
 544        if (e->next)
 545                e->next->prev = e;
 546}
 547
 548/*
 549 * src typically is on-stack; we want to copy the information in it to
 550 * a malloced blame_entry that is already on the linked list of the
 551 * scoreboard.  The origin of dst loses a refcnt while the origin of src
 552 * gains one.
 553 */
 554static void dup_entry(struct blame_entry *dst, struct blame_entry *src)
 555{
 556        struct blame_entry *p, *n;
 557
 558        p = dst->prev;
 559        n = dst->next;
 560        origin_incref(src->suspect);
 561        origin_decref(dst->suspect);
 562        memcpy(dst, src, sizeof(*src));
 563        dst->prev = p;
 564        dst->next = n;
 565        dst->score = 0;
 566}
 567
 568static const char *nth_line(struct scoreboard *sb, int lno)
 569{
 570        return sb->final_buf + sb->lineno[lno];
 571}
 572
 573/*
 574 * It is known that lines between tlno to same came from parent, and e
 575 * has an overlap with that range.  it also is known that parent's
 576 * line plno corresponds to e's line tlno.
 577 *
 578 *                <---- e ----->
 579 *                   <------>
 580 *                   <------------>
 581 *             <------------>
 582 *             <------------------>
 583 *
 584 * Split e into potentially three parts; before this chunk, the chunk
 585 * to be blamed for the parent, and after that portion.
 586 */
 587static void split_overlap(struct blame_entry *split,
 588                          struct blame_entry *e,
 589                          int tlno, int plno, int same,
 590                          struct origin *parent)
 591{
 592        int chunk_end_lno;
 593        memset(split, 0, sizeof(struct blame_entry [3]));
 594
 595        if (e->s_lno < tlno) {
 596                /* there is a pre-chunk part not blamed on parent */
 597                split[0].suspect = origin_incref(e->suspect);
 598                split[0].lno = e->lno;
 599                split[0].s_lno = e->s_lno;
 600                split[0].num_lines = tlno - e->s_lno;
 601                split[1].lno = e->lno + tlno - e->s_lno;
 602                split[1].s_lno = plno;
 603        }
 604        else {
 605                split[1].lno = e->lno;
 606                split[1].s_lno = plno + (e->s_lno - tlno);
 607        }
 608
 609        if (same < e->s_lno + e->num_lines) {
 610                /* there is a post-chunk part not blamed on parent */
 611                split[2].suspect = origin_incref(e->suspect);
 612                split[2].lno = e->lno + (same - e->s_lno);
 613                split[2].s_lno = e->s_lno + (same - e->s_lno);
 614                split[2].num_lines = e->s_lno + e->num_lines - same;
 615                chunk_end_lno = split[2].lno;
 616        }
 617        else
 618                chunk_end_lno = e->lno + e->num_lines;
 619        split[1].num_lines = chunk_end_lno - split[1].lno;
 620
 621        /*
 622         * if it turns out there is nothing to blame the parent for,
 623         * forget about the splitting.  !split[1].suspect signals this.
 624         */
 625        if (split[1].num_lines < 1)
 626                return;
 627        split[1].suspect = origin_incref(parent);
 628}
 629
 630/*
 631 * split_overlap() divided an existing blame e into up to three parts
 632 * in split.  Adjust the linked list of blames in the scoreboard to
 633 * reflect the split.
 634 */
 635static void split_blame(struct scoreboard *sb,
 636                        struct blame_entry *split,
 637                        struct blame_entry *e)
 638{
 639        struct blame_entry *new_entry;
 640
 641        if (split[0].suspect && split[2].suspect) {
 642                /* The first part (reuse storage for the existing entry e) */
 643                dup_entry(e, &split[0]);
 644
 645                /* The last part -- me */
 646                new_entry = xmalloc(sizeof(*new_entry));
 647                memcpy(new_entry, &(split[2]), sizeof(struct blame_entry));
 648                add_blame_entry(sb, new_entry);
 649
 650                /* ... and the middle part -- parent */
 651                new_entry = xmalloc(sizeof(*new_entry));
 652                memcpy(new_entry, &(split[1]), sizeof(struct blame_entry));
 653                add_blame_entry(sb, new_entry);
 654        }
 655        else if (!split[0].suspect && !split[2].suspect)
 656                /*
 657                 * The parent covers the entire area; reuse storage for
 658                 * e and replace it with the parent.
 659                 */
 660                dup_entry(e, &split[1]);
 661        else if (split[0].suspect) {
 662                /* me and then parent */
 663                dup_entry(e, &split[0]);
 664
 665                new_entry = xmalloc(sizeof(*new_entry));
 666                memcpy(new_entry, &(split[1]), sizeof(struct blame_entry));
 667                add_blame_entry(sb, new_entry);
 668        }
 669        else {
 670                /* parent and then me */
 671                dup_entry(e, &split[1]);
 672
 673                new_entry = xmalloc(sizeof(*new_entry));
 674                memcpy(new_entry, &(split[2]), sizeof(struct blame_entry));
 675                add_blame_entry(sb, new_entry);
 676        }
 677
 678        if (DEBUG) { /* sanity */
 679                struct blame_entry *ent;
 680                int lno = sb->ent->lno, corrupt = 0;
 681
 682                for (ent = sb->ent; ent; ent = ent->next) {
 683                        if (lno != ent->lno)
 684                                corrupt = 1;
 685                        if (ent->s_lno < 0)
 686                                corrupt = 1;
 687                        lno += ent->num_lines;
 688                }
 689                if (corrupt) {
 690                        lno = sb->ent->lno;
 691                        for (ent = sb->ent; ent; ent = ent->next) {
 692                                printf("L %8d l %8d n %8d\n",
 693                                       lno, ent->lno, ent->num_lines);
 694                                lno = ent->lno + ent->num_lines;
 695                        }
 696                        die("oops");
 697                }
 698        }
 699}
 700
 701/*
 702 * After splitting the blame, the origins used by the
 703 * on-stack blame_entry should lose one refcnt each.
 704 */
 705static void decref_split(struct blame_entry *split)
 706{
 707        int i;
 708
 709        for (i = 0; i < 3; i++)
 710                origin_decref(split[i].suspect);
 711}
 712
 713/*
 714 * Helper for blame_chunk().  blame_entry e is known to overlap with
 715 * the patch hunk; split it and pass blame to the parent.
 716 */
 717static void blame_overlap(struct scoreboard *sb, struct blame_entry *e,
 718                          int tlno, int plno, int same,
 719                          struct origin *parent)
 720{
 721        struct blame_entry split[3];
 722
 723        split_overlap(split, e, tlno, plno, same, parent);
 724        if (split[1].suspect)
 725                split_blame(sb, split, e);
 726        decref_split(split);
 727}
 728
 729/*
 730 * Find the line number of the last line the target is suspected for.
 731 */
 732static int find_last_in_target(struct scoreboard *sb, struct origin *target)
 733{
 734        struct blame_entry *e;
 735        int last_in_target = -1;
 736
 737        for (e = sb->ent; e; e = e->next) {
 738                if (e->guilty || !same_suspect(e->suspect, target))
 739                        continue;
 740                if (last_in_target < e->s_lno + e->num_lines)
 741                        last_in_target = e->s_lno + e->num_lines;
 742        }
 743        return last_in_target;
 744}
 745
 746/*
 747 * Process one hunk from the patch between the current suspect for
 748 * blame_entry e and its parent.  Find and split the overlap, and
 749 * pass blame to the overlapping part to the parent.
 750 */
 751static void blame_chunk(struct scoreboard *sb,
 752                        int tlno, int plno, int same,
 753                        struct origin *target, struct origin *parent)
 754{
 755        struct blame_entry *e;
 756
 757        for (e = sb->ent; e; e = e->next) {
 758                if (e->guilty || !same_suspect(e->suspect, target))
 759                        continue;
 760                if (same <= e->s_lno)
 761                        continue;
 762                if (tlno < e->s_lno + e->num_lines)
 763                        blame_overlap(sb, e, tlno, plno, same, parent);
 764        }
 765}
 766
 767struct blame_chunk_cb_data {
 768        struct scoreboard *sb;
 769        struct origin *target;
 770        struct origin *parent;
 771        long plno;
 772        long tlno;
 773};
 774
 775static int blame_chunk_cb(long start_a, long count_a,
 776                          long start_b, long count_b, void *data)
 777{
 778        struct blame_chunk_cb_data *d = data;
 779        blame_chunk(d->sb, d->tlno, d->plno, start_b, d->target, d->parent);
 780        d->plno = start_a + count_a;
 781        d->tlno = start_b + count_b;
 782        return 0;
 783}
 784
 785/*
 786 * We are looking at the origin 'target' and aiming to pass blame
 787 * for the lines it is suspected to its parent.  Run diff to find
 788 * which lines came from parent and pass blame for them.
 789 */
 790static int pass_blame_to_parent(struct scoreboard *sb,
 791                                struct origin *target,
 792                                struct origin *parent)
 793{
 794        int last_in_target;
 795        mmfile_t file_p, file_o;
 796        struct blame_chunk_cb_data d;
 797
 798        memset(&d, 0, sizeof(d));
 799        d.sb = sb; d.target = target; d.parent = parent;
 800        last_in_target = find_last_in_target(sb, target);
 801        if (last_in_target < 0)
 802                return 1; /* nothing remains for this target */
 803
 804        fill_origin_blob(&sb->revs->diffopt, parent, &file_p);
 805        fill_origin_blob(&sb->revs->diffopt, target, &file_o);
 806        num_get_patch++;
 807
 808        diff_hunks(&file_p, &file_o, 0, blame_chunk_cb, &d);
 809        /* The rest (i.e. anything after tlno) are the same as the parent */
 810        blame_chunk(sb, d.tlno, d.plno, last_in_target, target, parent);
 811
 812        return 0;
 813}
 814
 815/*
 816 * The lines in blame_entry after splitting blames many times can become
 817 * very small and trivial, and at some point it becomes pointless to
 818 * blame the parents.  E.g. "\t\t}\n\t}\n\n" appears everywhere in any
 819 * ordinary C program, and it is not worth to say it was copied from
 820 * totally unrelated file in the parent.
 821 *
 822 * Compute how trivial the lines in the blame_entry are.
 823 */
 824static unsigned ent_score(struct scoreboard *sb, struct blame_entry *e)
 825{
 826        unsigned score;
 827        const char *cp, *ep;
 828
 829        if (e->score)
 830                return e->score;
 831
 832        score = 1;
 833        cp = nth_line(sb, e->lno);
 834        ep = nth_line(sb, e->lno + e->num_lines);
 835        while (cp < ep) {
 836                unsigned ch = *((unsigned char *)cp);
 837                if (isalnum(ch))
 838                        score++;
 839                cp++;
 840        }
 841        e->score = score;
 842        return score;
 843}
 844
 845/*
 846 * best_so_far[] and this[] are both a split of an existing blame_entry
 847 * that passes blame to the parent.  Maintain best_so_far the best split
 848 * so far, by comparing this and best_so_far and copying this into
 849 * bst_so_far as needed.
 850 */
 851static void copy_split_if_better(struct scoreboard *sb,
 852                                 struct blame_entry *best_so_far,
 853                                 struct blame_entry *this)
 854{
 855        int i;
 856
 857        if (!this[1].suspect)
 858                return;
 859        if (best_so_far[1].suspect) {
 860                if (ent_score(sb, &this[1]) < ent_score(sb, &best_so_far[1]))
 861                        return;
 862        }
 863
 864        for (i = 0; i < 3; i++)
 865                origin_incref(this[i].suspect);
 866        decref_split(best_so_far);
 867        memcpy(best_so_far, this, sizeof(struct blame_entry [3]));
 868}
 869
 870/*
 871 * We are looking at a part of the final image represented by
 872 * ent (tlno and same are offset by ent->s_lno).
 873 * tlno is where we are looking at in the final image.
 874 * up to (but not including) same match preimage.
 875 * plno is where we are looking at in the preimage.
 876 *
 877 * <-------------- final image ---------------------->
 878 *       <------ent------>
 879 *         ^tlno ^same
 880 *    <---------preimage----->
 881 *         ^plno
 882 *
 883 * All line numbers are 0-based.
 884 */
 885static void handle_split(struct scoreboard *sb,
 886                         struct blame_entry *ent,
 887                         int tlno, int plno, int same,
 888                         struct origin *parent,
 889                         struct blame_entry *split)
 890{
 891        if (ent->num_lines <= tlno)
 892                return;
 893        if (tlno < same) {
 894                struct blame_entry this[3];
 895                tlno += ent->s_lno;
 896                same += ent->s_lno;
 897                split_overlap(this, ent, tlno, plno, same, parent);
 898                copy_split_if_better(sb, split, this);
 899                decref_split(this);
 900        }
 901}
 902
 903struct handle_split_cb_data {
 904        struct scoreboard *sb;
 905        struct blame_entry *ent;
 906        struct origin *parent;
 907        struct blame_entry *split;
 908        long plno;
 909        long tlno;
 910};
 911
 912static int handle_split_cb(long start_a, long count_a,
 913                           long start_b, long count_b, void *data)
 914{
 915        struct handle_split_cb_data *d = data;
 916        handle_split(d->sb, d->ent, d->tlno, d->plno, start_b, d->parent,
 917                     d->split);
 918        d->plno = start_a + count_a;
 919        d->tlno = start_b + count_b;
 920        return 0;
 921}
 922
 923/*
 924 * Find the lines from parent that are the same as ent so that
 925 * we can pass blames to it.  file_p has the blob contents for
 926 * the parent.
 927 */
 928static void find_copy_in_blob(struct scoreboard *sb,
 929                              struct blame_entry *ent,
 930                              struct origin *parent,
 931                              struct blame_entry *split,
 932                              mmfile_t *file_p)
 933{
 934        const char *cp;
 935        int cnt;
 936        mmfile_t file_o;
 937        struct handle_split_cb_data d;
 938
 939        memset(&d, 0, sizeof(d));
 940        d.sb = sb; d.ent = ent; d.parent = parent; d.split = split;
 941        /*
 942         * Prepare mmfile that contains only the lines in ent.
 943         */
 944        cp = nth_line(sb, ent->lno);
 945        file_o.ptr = (char *) cp;
 946        cnt = ent->num_lines;
 947
 948        while (cnt && cp < sb->final_buf + sb->final_buf_size) {
 949                if (*cp++ == '\n')
 950                        cnt--;
 951        }
 952        file_o.size = cp - file_o.ptr;
 953
 954        /*
 955         * file_o is a part of final image we are annotating.
 956         * file_p partially may match that image.
 957         */
 958        memset(split, 0, sizeof(struct blame_entry [3]));
 959        diff_hunks(file_p, &file_o, 1, handle_split_cb, &d);
 960        /* remainder, if any, all match the preimage */
 961        handle_split(sb, ent, d.tlno, d.plno, ent->num_lines, parent, split);
 962}
 963
 964/*
 965 * See if lines currently target is suspected for can be attributed to
 966 * parent.
 967 */
 968static int find_move_in_parent(struct scoreboard *sb,
 969                               struct origin *target,
 970                               struct origin *parent)
 971{
 972        int last_in_target, made_progress;
 973        struct blame_entry *e, split[3];
 974        mmfile_t file_p;
 975
 976        last_in_target = find_last_in_target(sb, target);
 977        if (last_in_target < 0)
 978                return 1; /* nothing remains for this target */
 979
 980        fill_origin_blob(&sb->revs->diffopt, parent, &file_p);
 981        if (!file_p.ptr)
 982                return 0;
 983
 984        made_progress = 1;
 985        while (made_progress) {
 986                made_progress = 0;
 987                for (e = sb->ent; e; e = e->next) {
 988                        if (e->guilty || !same_suspect(e->suspect, target) ||
 989                            ent_score(sb, e) < blame_move_score)
 990                                continue;
 991                        find_copy_in_blob(sb, e, parent, split, &file_p);
 992                        if (split[1].suspect &&
 993                            blame_move_score < ent_score(sb, &split[1])) {
 994                                split_blame(sb, split, e);
 995                                made_progress = 1;
 996                        }
 997                        decref_split(split);
 998                }
 999        }
1000        return 0;
1001}
1002
1003struct blame_list {
1004        struct blame_entry *ent;
1005        struct blame_entry split[3];
1006};
1007
1008/*
1009 * Count the number of entries the target is suspected for,
1010 * and prepare a list of entry and the best split.
1011 */
1012static struct blame_list *setup_blame_list(struct scoreboard *sb,
1013                                           struct origin *target,
1014                                           int min_score,
1015                                           int *num_ents_p)
1016{
1017        struct blame_entry *e;
1018        int num_ents, i;
1019        struct blame_list *blame_list = NULL;
1020
1021        for (e = sb->ent, num_ents = 0; e; e = e->next)
1022                if (!e->scanned && !e->guilty &&
1023                    same_suspect(e->suspect, target) &&
1024                    min_score < ent_score(sb, e))
1025                        num_ents++;
1026        if (num_ents) {
1027                blame_list = xcalloc(num_ents, sizeof(struct blame_list));
1028                for (e = sb->ent, i = 0; e; e = e->next)
1029                        if (!e->scanned && !e->guilty &&
1030                            same_suspect(e->suspect, target) &&
1031                            min_score < ent_score(sb, e))
1032                                blame_list[i++].ent = e;
1033        }
1034        *num_ents_p = num_ents;
1035        return blame_list;
1036}
1037
1038/*
1039 * Reset the scanned status on all entries.
1040 */
1041static void reset_scanned_flag(struct scoreboard *sb)
1042{
1043        struct blame_entry *e;
1044        for (e = sb->ent; e; e = e->next)
1045                e->scanned = 0;
1046}
1047
1048/*
1049 * For lines target is suspected for, see if we can find code movement
1050 * across file boundary from the parent commit.  porigin is the path
1051 * in the parent we already tried.
1052 */
1053static int find_copy_in_parent(struct scoreboard *sb,
1054                               struct origin *target,
1055                               struct commit *parent,
1056                               struct origin *porigin,
1057                               int opt)
1058{
1059        struct diff_options diff_opts;
1060        const char *paths[1];
1061        int i, j;
1062        int retval;
1063        struct blame_list *blame_list;
1064        int num_ents;
1065
1066        blame_list = setup_blame_list(sb, target, blame_copy_score, &num_ents);
1067        if (!blame_list)
1068                return 1; /* nothing remains for this target */
1069
1070        diff_setup(&diff_opts);
1071        DIFF_OPT_SET(&diff_opts, RECURSIVE);
1072        diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
1073
1074        paths[0] = NULL;
1075        diff_tree_setup_paths(paths, &diff_opts);
1076        diff_setup_done(&diff_opts);
1077
1078        /* Try "find copies harder" on new path if requested;
1079         * we do not want to use diffcore_rename() actually to
1080         * match things up; find_copies_harder is set only to
1081         * force diff_tree_sha1() to feed all filepairs to diff_queue,
1082         * and this code needs to be after diff_setup_done(), which
1083         * usually makes find-copies-harder imply copy detection.
1084         */
1085        if ((opt & PICKAXE_BLAME_COPY_HARDEST)
1086            || ((opt & PICKAXE_BLAME_COPY_HARDER)
1087                && (!porigin || strcmp(target->path, porigin->path))))
1088                DIFF_OPT_SET(&diff_opts, FIND_COPIES_HARDER);
1089
1090        if (is_null_sha1(target->commit->object.sha1))
1091                do_diff_cache(parent->tree->object.sha1, &diff_opts);
1092        else
1093                diff_tree_sha1(parent->tree->object.sha1,
1094                               target->commit->tree->object.sha1,
1095                               "", &diff_opts);
1096
1097        if (!DIFF_OPT_TST(&diff_opts, FIND_COPIES_HARDER))
1098                diffcore_std(&diff_opts);
1099
1100        retval = 0;
1101        while (1) {
1102                int made_progress = 0;
1103
1104                for (i = 0; i < diff_queued_diff.nr; i++) {
1105                        struct diff_filepair *p = diff_queued_diff.queue[i];
1106                        struct origin *norigin;
1107                        mmfile_t file_p;
1108                        struct blame_entry this[3];
1109
1110                        if (!DIFF_FILE_VALID(p->one))
1111                                continue; /* does not exist in parent */
1112                        if (S_ISGITLINK(p->one->mode))
1113                                continue; /* ignore git links */
1114                        if (porigin && !strcmp(p->one->path, porigin->path))
1115                                /* find_move already dealt with this path */
1116                                continue;
1117
1118                        norigin = get_origin(sb, parent, p->one->path);
1119                        hashcpy(norigin->blob_sha1, p->one->sha1);
1120                        norigin->mode = p->one->mode;
1121                        fill_origin_blob(&sb->revs->diffopt, norigin, &file_p);
1122                        if (!file_p.ptr)
1123                                continue;
1124
1125                        for (j = 0; j < num_ents; j++) {
1126                                find_copy_in_blob(sb, blame_list[j].ent,
1127                                                  norigin, this, &file_p);
1128                                copy_split_if_better(sb, blame_list[j].split,
1129                                                     this);
1130                                decref_split(this);
1131                        }
1132                        origin_decref(norigin);
1133                }
1134
1135                for (j = 0; j < num_ents; j++) {
1136                        struct blame_entry *split = blame_list[j].split;
1137                        if (split[1].suspect &&
1138                            blame_copy_score < ent_score(sb, &split[1])) {
1139                                split_blame(sb, split, blame_list[j].ent);
1140                                made_progress = 1;
1141                        }
1142                        else
1143                                blame_list[j].ent->scanned = 1;
1144                        decref_split(split);
1145                }
1146                free(blame_list);
1147
1148                if (!made_progress)
1149                        break;
1150                blame_list = setup_blame_list(sb, target, blame_copy_score, &num_ents);
1151                if (!blame_list) {
1152                        retval = 1;
1153                        break;
1154                }
1155        }
1156        reset_scanned_flag(sb);
1157        diff_flush(&diff_opts);
1158        diff_tree_release_paths(&diff_opts);
1159        return retval;
1160}
1161
1162/*
1163 * The blobs of origin and porigin exactly match, so everything
1164 * origin is suspected for can be blamed on the parent.
1165 */
1166static void pass_whole_blame(struct scoreboard *sb,
1167                             struct origin *origin, struct origin *porigin)
1168{
1169        struct blame_entry *e;
1170
1171        if (!porigin->file.ptr && origin->file.ptr) {
1172                /* Steal its file */
1173                porigin->file = origin->file;
1174                origin->file.ptr = NULL;
1175        }
1176        for (e = sb->ent; e; e = e->next) {
1177                if (!same_suspect(e->suspect, origin))
1178                        continue;
1179                origin_incref(porigin);
1180                origin_decref(e->suspect);
1181                e->suspect = porigin;
1182        }
1183}
1184
1185/*
1186 * We pass blame from the current commit to its parents.  We keep saying
1187 * "parent" (and "porigin"), but what we mean is to find scapegoat to
1188 * exonerate ourselves.
1189 */
1190static struct commit_list *first_scapegoat(struct rev_info *revs, struct commit *commit)
1191{
1192        if (!reverse)
1193                return commit->parents;
1194        return lookup_decoration(&revs->children, &commit->object);
1195}
1196
1197static int num_scapegoats(struct rev_info *revs, struct commit *commit)
1198{
1199        int cnt;
1200        struct commit_list *l = first_scapegoat(revs, commit);
1201        for (cnt = 0; l; l = l->next)
1202                cnt++;
1203        return cnt;
1204}
1205
1206#define MAXSG 16
1207
1208static void pass_blame(struct scoreboard *sb, struct origin *origin, int opt)
1209{
1210        struct rev_info *revs = sb->revs;
1211        int i, pass, num_sg;
1212        struct commit *commit = origin->commit;
1213        struct commit_list *sg;
1214        struct origin *sg_buf[MAXSG];
1215        struct origin *porigin, **sg_origin = sg_buf;
1216
1217        num_sg = num_scapegoats(revs, commit);
1218        if (!num_sg)
1219                goto finish;
1220        else if (num_sg < ARRAY_SIZE(sg_buf))
1221                memset(sg_buf, 0, sizeof(sg_buf));
1222        else
1223                sg_origin = xcalloc(num_sg, sizeof(*sg_origin));
1224
1225        /*
1226         * The first pass looks for unrenamed path to optimize for
1227         * common cases, then we look for renames in the second pass.
1228         */
1229        for (pass = 0; pass < 2; pass++) {
1230                struct origin *(*find)(struct scoreboard *,
1231                                       struct commit *, struct origin *);
1232                find = pass ? find_rename : find_origin;
1233
1234                for (i = 0, sg = first_scapegoat(revs, commit);
1235                     i < num_sg && sg;
1236                     sg = sg->next, i++) {
1237                        struct commit *p = sg->item;
1238                        int j, same;
1239
1240                        if (sg_origin[i])
1241                                continue;
1242                        if (parse_commit(p))
1243                                continue;
1244                        porigin = find(sb, p, origin);
1245                        if (!porigin)
1246                                continue;
1247                        if (!hashcmp(porigin->blob_sha1, origin->blob_sha1)) {
1248                                pass_whole_blame(sb, origin, porigin);
1249                                origin_decref(porigin);
1250                                goto finish;
1251                        }
1252                        for (j = same = 0; j < i; j++)
1253                                if (sg_origin[j] &&
1254                                    !hashcmp(sg_origin[j]->blob_sha1,
1255                                             porigin->blob_sha1)) {
1256                                        same = 1;
1257                                        break;
1258                                }
1259                        if (!same)
1260                                sg_origin[i] = porigin;
1261                        else
1262                                origin_decref(porigin);
1263                }
1264        }
1265
1266        num_commits++;
1267        for (i = 0, sg = first_scapegoat(revs, commit);
1268             i < num_sg && sg;
1269             sg = sg->next, i++) {
1270                struct origin *porigin = sg_origin[i];
1271                if (!porigin)
1272                        continue;
1273                if (!origin->previous) {
1274                        origin_incref(porigin);
1275                        origin->previous = porigin;
1276                }
1277                if (pass_blame_to_parent(sb, origin, porigin))
1278                        goto finish;
1279        }
1280
1281        /*
1282         * Optionally find moves in parents' files.
1283         */
1284        if (opt & PICKAXE_BLAME_MOVE)
1285                for (i = 0, sg = first_scapegoat(revs, commit);
1286                     i < num_sg && sg;
1287                     sg = sg->next, i++) {
1288                        struct origin *porigin = sg_origin[i];
1289                        if (!porigin)
1290                                continue;
1291                        if (find_move_in_parent(sb, origin, porigin))
1292                                goto finish;
1293                }
1294
1295        /*
1296         * Optionally find copies from parents' files.
1297         */
1298        if (opt & PICKAXE_BLAME_COPY)
1299                for (i = 0, sg = first_scapegoat(revs, commit);
1300                     i < num_sg && sg;
1301                     sg = sg->next, i++) {
1302                        struct origin *porigin = sg_origin[i];
1303                        if (find_copy_in_parent(sb, origin, sg->item,
1304                                                porigin, opt))
1305                                goto finish;
1306                }
1307
1308 finish:
1309        for (i = 0; i < num_sg; i++) {
1310                if (sg_origin[i]) {
1311                        drop_origin_blob(sg_origin[i]);
1312                        origin_decref(sg_origin[i]);
1313                }
1314        }
1315        drop_origin_blob(origin);
1316        if (sg_buf != sg_origin)
1317                free(sg_origin);
1318}
1319
1320/*
1321 * Information on commits, used for output.
1322 */
1323struct commit_info {
1324        struct strbuf author;
1325        struct strbuf author_mail;
1326        unsigned long author_time;
1327        struct strbuf author_tz;
1328
1329        /* filled only when asked for details */
1330        struct strbuf committer;
1331        struct strbuf committer_mail;
1332        unsigned long committer_time;
1333        struct strbuf committer_tz;
1334
1335        struct strbuf summary;
1336};
1337
1338/*
1339 * Parse author/committer line in the commit object buffer
1340 */
1341static void get_ac_line(const char *inbuf, const char *what,
1342        struct strbuf *name, struct strbuf *mail,
1343        unsigned long *time, struct strbuf *tz)
1344{
1345        struct ident_split ident;
1346        size_t len, maillen, namelen;
1347        char *tmp, *endp;
1348        const char *namebuf, *mailbuf;
1349
1350        tmp = strstr(inbuf, what);
1351        if (!tmp)
1352                goto error_out;
1353        tmp += strlen(what);
1354        endp = strchr(tmp, '\n');
1355        if (!endp)
1356                len = strlen(tmp);
1357        else
1358                len = endp - tmp;
1359
1360        if (split_ident_line(&ident, tmp, len)) {
1361        error_out:
1362                /* Ugh */
1363                tmp = "(unknown)";
1364                strbuf_addstr(name, tmp);
1365                strbuf_addstr(mail, tmp);
1366                strbuf_addstr(tz, tmp);
1367                *time = 0;
1368                return;
1369        }
1370
1371        namelen = ident.name_end - ident.name_begin;
1372        namebuf = ident.name_begin;
1373
1374        maillen = ident.mail_end - ident.mail_begin;
1375        mailbuf = ident.mail_begin;
1376
1377        *time = strtoul(ident.date_begin, NULL, 10);
1378
1379        len = ident.tz_end - ident.tz_begin;
1380        strbuf_add(tz, ident.tz_begin, len);
1381
1382        /*
1383         * Now, convert both name and e-mail using mailmap
1384         */
1385        map_user(&mailmap, &mailbuf, &maillen,
1386                 &namebuf, &namelen);
1387
1388        strbuf_addf(mail, "<%.*s>", (int)maillen, mailbuf);
1389        strbuf_add(name, namebuf, namelen);
1390}
1391
1392static void commit_info_init(struct commit_info *ci)
1393{
1394
1395        strbuf_init(&ci->author, 0);
1396        strbuf_init(&ci->author_mail, 0);
1397        strbuf_init(&ci->author_tz, 0);
1398        strbuf_init(&ci->committer, 0);
1399        strbuf_init(&ci->committer_mail, 0);
1400        strbuf_init(&ci->committer_tz, 0);
1401        strbuf_init(&ci->summary, 0);
1402}
1403
1404static void commit_info_destroy(struct commit_info *ci)
1405{
1406
1407        strbuf_release(&ci->author);
1408        strbuf_release(&ci->author_mail);
1409        strbuf_release(&ci->author_tz);
1410        strbuf_release(&ci->committer);
1411        strbuf_release(&ci->committer_mail);
1412        strbuf_release(&ci->committer_tz);
1413        strbuf_release(&ci->summary);
1414}
1415
1416static void get_commit_info(struct commit *commit,
1417                            struct commit_info *ret,
1418                            int detailed)
1419{
1420        int len;
1421        const char *subject, *encoding;
1422        char *reencoded, *message;
1423
1424        commit_info_init(ret);
1425
1426        /*
1427         * We've operated without save_commit_buffer, so
1428         * we now need to populate them for output.
1429         */
1430        if (!commit->buffer) {
1431                enum object_type type;
1432                unsigned long size;
1433                commit->buffer =
1434                        read_sha1_file(commit->object.sha1, &type, &size);
1435                if (!commit->buffer)
1436                        die("Cannot read commit %s",
1437                            sha1_to_hex(commit->object.sha1));
1438        }
1439        encoding = get_log_output_encoding();
1440        reencoded = logmsg_reencode(commit, encoding);
1441        message   = reencoded ? reencoded : commit->buffer;
1442        get_ac_line(message, "\nauthor ",
1443                    &ret->author, &ret->author_mail,
1444                    &ret->author_time, &ret->author_tz);
1445
1446        if (!detailed) {
1447                free(reencoded);
1448                return;
1449        }
1450
1451        get_ac_line(message, "\ncommitter ",
1452                    &ret->committer, &ret->committer_mail,
1453                    &ret->committer_time, &ret->committer_tz);
1454
1455        len = find_commit_subject(message, &subject);
1456        if (len)
1457                strbuf_add(&ret->summary, subject, len);
1458        else
1459                strbuf_addf(&ret->summary, "(%s)", sha1_to_hex(commit->object.sha1));
1460
1461        free(reencoded);
1462}
1463
1464/*
1465 * To allow LF and other nonportable characters in pathnames,
1466 * they are c-style quoted as needed.
1467 */
1468static void write_filename_info(const char *path)
1469{
1470        printf("filename ");
1471        write_name_quoted(path, stdout, '\n');
1472}
1473
1474/*
1475 * Porcelain/Incremental format wants to show a lot of details per
1476 * commit.  Instead of repeating this every line, emit it only once,
1477 * the first time each commit appears in the output (unless the
1478 * user has specifically asked for us to repeat).
1479 */
1480static int emit_one_suspect_detail(struct origin *suspect, int repeat)
1481{
1482        struct commit_info ci;
1483
1484        if (!repeat && (suspect->commit->object.flags & METAINFO_SHOWN))
1485                return 0;
1486
1487        suspect->commit->object.flags |= METAINFO_SHOWN;
1488        get_commit_info(suspect->commit, &ci, 1);
1489        printf("author %s\n", ci.author.buf);
1490        printf("author-mail %s\n", ci.author_mail.buf);
1491        printf("author-time %lu\n", ci.author_time);
1492        printf("author-tz %s\n", ci.author_tz.buf);
1493        printf("committer %s\n", ci.committer.buf);
1494        printf("committer-mail %s\n", ci.committer_mail.buf);
1495        printf("committer-time %lu\n", ci.committer_time);
1496        printf("committer-tz %s\n", ci.committer_tz.buf);
1497        printf("summary %s\n", ci.summary.buf);
1498        if (suspect->commit->object.flags & UNINTERESTING)
1499                printf("boundary\n");
1500        if (suspect->previous) {
1501                struct origin *prev = suspect->previous;
1502                printf("previous %s ", sha1_to_hex(prev->commit->object.sha1));
1503                write_name_quoted(prev->path, stdout, '\n');
1504        }
1505
1506        commit_info_destroy(&ci);
1507
1508        return 1;
1509}
1510
1511/*
1512 * The blame_entry is found to be guilty for the range.  Mark it
1513 * as such, and show it in incremental output.
1514 */
1515static void found_guilty_entry(struct blame_entry *ent)
1516{
1517        if (ent->guilty)
1518                return;
1519        ent->guilty = 1;
1520        if (incremental) {
1521                struct origin *suspect = ent->suspect;
1522
1523                printf("%s %d %d %d\n",
1524                       sha1_to_hex(suspect->commit->object.sha1),
1525                       ent->s_lno + 1, ent->lno + 1, ent->num_lines);
1526                emit_one_suspect_detail(suspect, 0);
1527                write_filename_info(suspect->path);
1528                maybe_flush_or_die(stdout, "stdout");
1529        }
1530}
1531
1532/*
1533 * The main loop -- while the scoreboard has lines whose true origin
1534 * is still unknown, pick one blame_entry, and allow its current
1535 * suspect to pass blames to its parents.
1536 */
1537static void assign_blame(struct scoreboard *sb, int opt)
1538{
1539        struct rev_info *revs = sb->revs;
1540
1541        while (1) {
1542                struct blame_entry *ent;
1543                struct commit *commit;
1544                struct origin *suspect = NULL;
1545
1546                /* find one suspect to break down */
1547                for (ent = sb->ent; !suspect && ent; ent = ent->next)
1548                        if (!ent->guilty)
1549                                suspect = ent->suspect;
1550                if (!suspect)
1551                        return; /* all done */
1552
1553                /*
1554                 * We will use this suspect later in the loop,
1555                 * so hold onto it in the meantime.
1556                 */
1557                origin_incref(suspect);
1558                commit = suspect->commit;
1559                if (!commit->object.parsed)
1560                        parse_commit(commit);
1561                if (reverse ||
1562                    (!(commit->object.flags & UNINTERESTING) &&
1563                     !(revs->max_age != -1 && commit->date < revs->max_age)))
1564                        pass_blame(sb, suspect, opt);
1565                else {
1566                        commit->object.flags |= UNINTERESTING;
1567                        if (commit->object.parsed)
1568                                mark_parents_uninteresting(commit);
1569                }
1570                /* treat root commit as boundary */
1571                if (!commit->parents && !show_root)
1572                        commit->object.flags |= UNINTERESTING;
1573
1574                /* Take responsibility for the remaining entries */
1575                for (ent = sb->ent; ent; ent = ent->next)
1576                        if (same_suspect(ent->suspect, suspect))
1577                                found_guilty_entry(ent);
1578                origin_decref(suspect);
1579
1580                if (DEBUG) /* sanity */
1581                        sanity_check_refcnt(sb);
1582        }
1583}
1584
1585static const char *format_time(unsigned long time, const char *tz_str,
1586                               int show_raw_time)
1587{
1588        static char time_buf[128];
1589        const char *time_str;
1590        int time_len;
1591        int tz;
1592
1593        if (show_raw_time) {
1594                snprintf(time_buf, sizeof(time_buf), "%lu %s", time, tz_str);
1595        }
1596        else {
1597                tz = atoi(tz_str);
1598                time_str = show_date(time, tz, blame_date_mode);
1599                time_len = strlen(time_str);
1600                memcpy(time_buf, time_str, time_len);
1601                memset(time_buf + time_len, ' ', blame_date_width - time_len);
1602        }
1603        return time_buf;
1604}
1605
1606#define OUTPUT_ANNOTATE_COMPAT  001
1607#define OUTPUT_LONG_OBJECT_NAME 002
1608#define OUTPUT_RAW_TIMESTAMP    004
1609#define OUTPUT_PORCELAIN        010
1610#define OUTPUT_SHOW_NAME        020
1611#define OUTPUT_SHOW_NUMBER      040
1612#define OUTPUT_SHOW_SCORE      0100
1613#define OUTPUT_NO_AUTHOR       0200
1614#define OUTPUT_SHOW_EMAIL       0400
1615#define OUTPUT_LINE_PORCELAIN 01000
1616
1617static void emit_porcelain_details(struct origin *suspect, int repeat)
1618{
1619        if (emit_one_suspect_detail(suspect, repeat) ||
1620            (suspect->commit->object.flags & MORE_THAN_ONE_PATH))
1621                write_filename_info(suspect->path);
1622}
1623
1624static void emit_porcelain(struct scoreboard *sb, struct blame_entry *ent,
1625                           int opt)
1626{
1627        int repeat = opt & OUTPUT_LINE_PORCELAIN;
1628        int cnt;
1629        const char *cp;
1630        struct origin *suspect = ent->suspect;
1631        char hex[41];
1632
1633        strcpy(hex, sha1_to_hex(suspect->commit->object.sha1));
1634        printf("%s%c%d %d %d\n",
1635               hex,
1636               ent->guilty ? ' ' : '*', /* purely for debugging */
1637               ent->s_lno + 1,
1638               ent->lno + 1,
1639               ent->num_lines);
1640        emit_porcelain_details(suspect, repeat);
1641
1642        cp = nth_line(sb, ent->lno);
1643        for (cnt = 0; cnt < ent->num_lines; cnt++) {
1644                char ch;
1645                if (cnt) {
1646                        printf("%s %d %d\n", hex,
1647                               ent->s_lno + 1 + cnt,
1648                               ent->lno + 1 + cnt);
1649                        if (repeat)
1650                                emit_porcelain_details(suspect, 1);
1651                }
1652                putchar('\t');
1653                do {
1654                        ch = *cp++;
1655                        putchar(ch);
1656                } while (ch != '\n' &&
1657                         cp < sb->final_buf + sb->final_buf_size);
1658        }
1659
1660        if (sb->final_buf_size && cp[-1] != '\n')
1661                putchar('\n');
1662}
1663
1664static void emit_other(struct scoreboard *sb, struct blame_entry *ent, int opt)
1665{
1666        int cnt;
1667        const char *cp;
1668        struct origin *suspect = ent->suspect;
1669        struct commit_info ci;
1670        char hex[41];
1671        int show_raw_time = !!(opt & OUTPUT_RAW_TIMESTAMP);
1672
1673        get_commit_info(suspect->commit, &ci, 1);
1674        strcpy(hex, sha1_to_hex(suspect->commit->object.sha1));
1675
1676        cp = nth_line(sb, ent->lno);
1677        for (cnt = 0; cnt < ent->num_lines; cnt++) {
1678                char ch;
1679                int length = (opt & OUTPUT_LONG_OBJECT_NAME) ? 40 : abbrev;
1680
1681                if (suspect->commit->object.flags & UNINTERESTING) {
1682                        if (blank_boundary)
1683                                memset(hex, ' ', length);
1684                        else if (!(opt & OUTPUT_ANNOTATE_COMPAT)) {
1685                                length--;
1686                                putchar('^');
1687                        }
1688                }
1689
1690                printf("%.*s", length, hex);
1691                if (opt & OUTPUT_ANNOTATE_COMPAT) {
1692                        const char *name;
1693                        if (opt & OUTPUT_SHOW_EMAIL)
1694                                name = ci.author_mail.buf;
1695                        else
1696                                name = ci.author.buf;
1697                        printf("\t(%10s\t%10s\t%d)", name,
1698                               format_time(ci.author_time, ci.author_tz.buf,
1699                                           show_raw_time),
1700                               ent->lno + 1 + cnt);
1701                } else {
1702                        if (opt & OUTPUT_SHOW_SCORE)
1703                                printf(" %*d %02d",
1704                                       max_score_digits, ent->score,
1705                                       ent->suspect->refcnt);
1706                        if (opt & OUTPUT_SHOW_NAME)
1707                                printf(" %-*.*s", longest_file, longest_file,
1708                                       suspect->path);
1709                        if (opt & OUTPUT_SHOW_NUMBER)
1710                                printf(" %*d", max_orig_digits,
1711                                       ent->s_lno + 1 + cnt);
1712
1713                        if (!(opt & OUTPUT_NO_AUTHOR)) {
1714                                const char *name;
1715                                int pad;
1716                                if (opt & OUTPUT_SHOW_EMAIL)
1717                                        name = ci.author_mail.buf;
1718                                else
1719                                        name = ci.author.buf;
1720                                pad = longest_author - utf8_strwidth(name);
1721                                printf(" (%s%*s %10s",
1722                                       name, pad, "",
1723                                       format_time(ci.author_time,
1724                                                   ci.author_tz.buf,
1725                                                   show_raw_time));
1726                        }
1727                        printf(" %*d) ",
1728                               max_digits, ent->lno + 1 + cnt);
1729                }
1730                do {
1731                        ch = *cp++;
1732                        putchar(ch);
1733                } while (ch != '\n' &&
1734                         cp < sb->final_buf + sb->final_buf_size);
1735        }
1736
1737        if (sb->final_buf_size && cp[-1] != '\n')
1738                putchar('\n');
1739
1740        commit_info_destroy(&ci);
1741}
1742
1743static void output(struct scoreboard *sb, int option)
1744{
1745        struct blame_entry *ent;
1746
1747        if (option & OUTPUT_PORCELAIN) {
1748                for (ent = sb->ent; ent; ent = ent->next) {
1749                        struct blame_entry *oth;
1750                        struct origin *suspect = ent->suspect;
1751                        struct commit *commit = suspect->commit;
1752                        if (commit->object.flags & MORE_THAN_ONE_PATH)
1753                                continue;
1754                        for (oth = ent->next; oth; oth = oth->next) {
1755                                if ((oth->suspect->commit != commit) ||
1756                                    !strcmp(oth->suspect->path, suspect->path))
1757                                        continue;
1758                                commit->object.flags |= MORE_THAN_ONE_PATH;
1759                                break;
1760                        }
1761                }
1762        }
1763
1764        for (ent = sb->ent; ent; ent = ent->next) {
1765                if (option & OUTPUT_PORCELAIN)
1766                        emit_porcelain(sb, ent, option);
1767                else {
1768                        emit_other(sb, ent, option);
1769                }
1770        }
1771}
1772
1773/*
1774 * To allow quick access to the contents of nth line in the
1775 * final image, prepare an index in the scoreboard.
1776 */
1777static int prepare_lines(struct scoreboard *sb)
1778{
1779        const char *buf = sb->final_buf;
1780        unsigned long len = sb->final_buf_size;
1781        int num = 0, incomplete = 0, bol = 1;
1782
1783        if (len && buf[len-1] != '\n')
1784                incomplete++; /* incomplete line at the end */
1785        while (len--) {
1786                if (bol) {
1787                        sb->lineno = xrealloc(sb->lineno,
1788                                              sizeof(int *) * (num + 1));
1789                        sb->lineno[num] = buf - sb->final_buf;
1790                        bol = 0;
1791                }
1792                if (*buf++ == '\n') {
1793                        num++;
1794                        bol = 1;
1795                }
1796        }
1797        sb->lineno = xrealloc(sb->lineno,
1798                              sizeof(int *) * (num + incomplete + 1));
1799        sb->lineno[num + incomplete] = buf - sb->final_buf;
1800        sb->num_lines = num + incomplete;
1801        return sb->num_lines;
1802}
1803
1804/*
1805 * Add phony grafts for use with -S; this is primarily to
1806 * support git's cvsserver that wants to give a linear history
1807 * to its clients.
1808 */
1809static int read_ancestry(const char *graft_file)
1810{
1811        FILE *fp = fopen(graft_file, "r");
1812        char buf[1024];
1813        if (!fp)
1814                return -1;
1815        while (fgets(buf, sizeof(buf), fp)) {
1816                /* The format is just "Commit Parent1 Parent2 ...\n" */
1817                int len = strlen(buf);
1818                struct commit_graft *graft = read_graft_line(buf, len);
1819                if (graft)
1820                        register_commit_graft(graft, 0);
1821        }
1822        fclose(fp);
1823        return 0;
1824}
1825
1826static int update_auto_abbrev(int auto_abbrev, struct origin *suspect)
1827{
1828        const char *uniq = find_unique_abbrev(suspect->commit->object.sha1,
1829                                              auto_abbrev);
1830        int len = strlen(uniq);
1831        if (auto_abbrev < len)
1832                return len;
1833        return auto_abbrev;
1834}
1835
1836/*
1837 * How many columns do we need to show line numbers, authors,
1838 * and filenames?
1839 */
1840static void find_alignment(struct scoreboard *sb, int *option)
1841{
1842        int longest_src_lines = 0;
1843        int longest_dst_lines = 0;
1844        unsigned largest_score = 0;
1845        struct blame_entry *e;
1846        int compute_auto_abbrev = (abbrev < 0);
1847        int auto_abbrev = default_abbrev;
1848
1849        for (e = sb->ent; e; e = e->next) {
1850                struct origin *suspect = e->suspect;
1851                struct commit_info ci;
1852                int num;
1853
1854                if (compute_auto_abbrev)
1855                        auto_abbrev = update_auto_abbrev(auto_abbrev, suspect);
1856                if (strcmp(suspect->path, sb->path))
1857                        *option |= OUTPUT_SHOW_NAME;
1858                num = strlen(suspect->path);
1859                if (longest_file < num)
1860                        longest_file = num;
1861                if (!(suspect->commit->object.flags & METAINFO_SHOWN)) {
1862                        suspect->commit->object.flags |= METAINFO_SHOWN;
1863                        get_commit_info(suspect->commit, &ci, 1);
1864                        if (*option & OUTPUT_SHOW_EMAIL)
1865                                num = utf8_strwidth(ci.author_mail.buf);
1866                        else
1867                                num = utf8_strwidth(ci.author.buf);
1868                        if (longest_author < num)
1869                                longest_author = num;
1870                }
1871                num = e->s_lno + e->num_lines;
1872                if (longest_src_lines < num)
1873                        longest_src_lines = num;
1874                num = e->lno + e->num_lines;
1875                if (longest_dst_lines < num)
1876                        longest_dst_lines = num;
1877                if (largest_score < ent_score(sb, e))
1878                        largest_score = ent_score(sb, e);
1879
1880                commit_info_destroy(&ci);
1881        }
1882        max_orig_digits = decimal_width(longest_src_lines);
1883        max_digits = decimal_width(longest_dst_lines);
1884        max_score_digits = decimal_width(largest_score);
1885
1886        if (compute_auto_abbrev)
1887                /* one more abbrev length is needed for the boundary commit */
1888                abbrev = auto_abbrev + 1;
1889}
1890
1891/*
1892 * For debugging -- origin is refcounted, and this asserts that
1893 * we do not underflow.
1894 */
1895static void sanity_check_refcnt(struct scoreboard *sb)
1896{
1897        int baa = 0;
1898        struct blame_entry *ent;
1899
1900        for (ent = sb->ent; ent; ent = ent->next) {
1901                /* Nobody should have zero or negative refcnt */
1902                if (ent->suspect->refcnt <= 0) {
1903                        fprintf(stderr, "%s in %s has negative refcnt %d\n",
1904                                ent->suspect->path,
1905                                sha1_to_hex(ent->suspect->commit->object.sha1),
1906                                ent->suspect->refcnt);
1907                        baa = 1;
1908                }
1909        }
1910        if (baa) {
1911                int opt = 0160;
1912                find_alignment(sb, &opt);
1913                output(sb, opt);
1914                die("Baa %d!", baa);
1915        }
1916}
1917
1918/*
1919 * Used for the command line parsing; check if the path exists
1920 * in the working tree.
1921 */
1922static int has_string_in_work_tree(const char *path)
1923{
1924        struct stat st;
1925        return !lstat(path, &st);
1926}
1927
1928static unsigned parse_score(const char *arg)
1929{
1930        char *end;
1931        unsigned long score = strtoul(arg, &end, 10);
1932        if (*end)
1933                return 0;
1934        return score;
1935}
1936
1937static const char *add_prefix(const char *prefix, const char *path)
1938{
1939        return prefix_path(prefix, prefix ? strlen(prefix) : 0, path);
1940}
1941
1942/*
1943 * Parsing of (comma separated) one item in the -L option
1944 */
1945static const char *parse_loc(const char *spec,
1946                             struct scoreboard *sb, long lno,
1947                             long begin, long *ret)
1948{
1949        char *term;
1950        const char *line;
1951        long num;
1952        int reg_error;
1953        regex_t regexp;
1954        regmatch_t match[1];
1955
1956        /* Allow "-L <something>,+20" to mean starting at <something>
1957         * for 20 lines, or "-L <something>,-5" for 5 lines ending at
1958         * <something>.
1959         */
1960        if (1 < begin && (spec[0] == '+' || spec[0] == '-')) {
1961                num = strtol(spec + 1, &term, 10);
1962                if (term != spec + 1) {
1963                        if (spec[0] == '-')
1964                                num = 0 - num;
1965                        if (0 < num)
1966                                *ret = begin + num - 2;
1967                        else if (!num)
1968                                *ret = begin;
1969                        else
1970                                *ret = begin + num;
1971                        return term;
1972                }
1973                return spec;
1974        }
1975        num = strtol(spec, &term, 10);
1976        if (term != spec) {
1977                *ret = num;
1978                return term;
1979        }
1980        if (spec[0] != '/')
1981                return spec;
1982
1983        /* it could be a regexp of form /.../ */
1984        for (term = (char *) spec + 1; *term && *term != '/'; term++) {
1985                if (*term == '\\')
1986                        term++;
1987        }
1988        if (*term != '/')
1989                return spec;
1990
1991        /* try [spec+1 .. term-1] as regexp */
1992        *term = 0;
1993        begin--; /* input is in human terms */
1994        line = nth_line(sb, begin);
1995
1996        if (!(reg_error = regcomp(&regexp, spec + 1, REG_NEWLINE)) &&
1997            !(reg_error = regexec(&regexp, line, 1, match, 0))) {
1998                const char *cp = line + match[0].rm_so;
1999                const char *nline;
2000
2001                while (begin++ < lno) {
2002                        nline = nth_line(sb, begin);
2003                        if (line <= cp && cp < nline)
2004                                break;
2005                        line = nline;
2006                }
2007                *ret = begin;
2008                regfree(&regexp);
2009                *term++ = '/';
2010                return term;
2011        }
2012        else {
2013                char errbuf[1024];
2014                regerror(reg_error, &regexp, errbuf, 1024);
2015                die("-L parameter '%s': %s", spec + 1, errbuf);
2016        }
2017}
2018
2019/*
2020 * Parsing of -L option
2021 */
2022static void prepare_blame_range(struct scoreboard *sb,
2023                                const char *bottomtop,
2024                                long lno,
2025                                long *bottom, long *top)
2026{
2027        const char *term;
2028
2029        term = parse_loc(bottomtop, sb, lno, 1, bottom);
2030        if (*term == ',') {
2031                term = parse_loc(term + 1, sb, lno, *bottom + 1, top);
2032                if (*term)
2033                        usage(blame_usage);
2034        }
2035        if (*term)
2036                usage(blame_usage);
2037}
2038
2039static int git_blame_config(const char *var, const char *value, void *cb)
2040{
2041        if (!strcmp(var, "blame.showroot")) {
2042                show_root = git_config_bool(var, value);
2043                return 0;
2044        }
2045        if (!strcmp(var, "blame.blankboundary")) {
2046                blank_boundary = git_config_bool(var, value);
2047                return 0;
2048        }
2049        if (!strcmp(var, "blame.date")) {
2050                if (!value)
2051                        return config_error_nonbool(var);
2052                blame_date_mode = parse_date_format(value);
2053                return 0;
2054        }
2055
2056        if (userdiff_config(var, value) < 0)
2057                return -1;
2058
2059        return git_default_config(var, value, cb);
2060}
2061
2062static void verify_working_tree_path(struct commit *work_tree, const char *path)
2063{
2064        struct commit_list *parents;
2065
2066        for (parents = work_tree->parents; parents; parents = parents->next) {
2067                const unsigned char *commit_sha1 = parents->item->object.sha1;
2068                unsigned char blob_sha1[20];
2069                unsigned mode;
2070
2071                if (!get_tree_entry(commit_sha1, path, blob_sha1, &mode) &&
2072                    sha1_object_info(blob_sha1, NULL) == OBJ_BLOB)
2073                        return;
2074        }
2075        die("no such path '%s' in HEAD", path);
2076}
2077
2078static struct commit_list **append_parent(struct commit_list **tail, const unsigned char *sha1)
2079{
2080        struct commit *parent;
2081
2082        parent = lookup_commit_reference(sha1);
2083        if (!parent)
2084                die("no such commit %s", sha1_to_hex(sha1));
2085        return &commit_list_insert(parent, tail)->next;
2086}
2087
2088static void append_merge_parents(struct commit_list **tail)
2089{
2090        int merge_head;
2091        const char *merge_head_file = git_path("MERGE_HEAD");
2092        struct strbuf line = STRBUF_INIT;
2093
2094        merge_head = open(merge_head_file, O_RDONLY);
2095        if (merge_head < 0) {
2096                if (errno == ENOENT)
2097                        return;
2098                die("cannot open '%s' for reading", merge_head_file);
2099        }
2100
2101        while (!strbuf_getwholeline_fd(&line, merge_head, '\n')) {
2102                unsigned char sha1[20];
2103                if (line.len < 40 || get_sha1_hex(line.buf, sha1))
2104                        die("unknown line in '%s': %s", merge_head_file, line.buf);
2105                tail = append_parent(tail, sha1);
2106        }
2107        close(merge_head);
2108        strbuf_release(&line);
2109}
2110
2111/*
2112 * Prepare a dummy commit that represents the work tree (or staged) item.
2113 * Note that annotating work tree item never works in the reverse.
2114 */
2115static struct commit *fake_working_tree_commit(struct diff_options *opt,
2116                                               const char *path,
2117                                               const char *contents_from)
2118{
2119        struct commit *commit;
2120        struct origin *origin;
2121        struct commit_list **parent_tail, *parent;
2122        unsigned char head_sha1[20];
2123        struct strbuf buf = STRBUF_INIT;
2124        const char *ident;
2125        time_t now;
2126        int size, len;
2127        struct cache_entry *ce;
2128        unsigned mode;
2129        struct strbuf msg = STRBUF_INIT;
2130
2131        time(&now);
2132        commit = xcalloc(1, sizeof(*commit));
2133        commit->object.parsed = 1;
2134        commit->date = now;
2135        commit->object.type = OBJ_COMMIT;
2136        parent_tail = &commit->parents;
2137
2138        if (!resolve_ref_unsafe("HEAD", head_sha1, 1, NULL))
2139                die("no such ref: HEAD");
2140
2141        parent_tail = append_parent(parent_tail, head_sha1);
2142        append_merge_parents(parent_tail);
2143        verify_working_tree_path(commit, path);
2144
2145        origin = make_origin(commit, path);
2146
2147        ident = fmt_ident("Not Committed Yet", "not.committed.yet", NULL, 0);
2148        strbuf_addstr(&msg, "tree 0000000000000000000000000000000000000000\n");
2149        for (parent = commit->parents; parent; parent = parent->next)
2150                strbuf_addf(&msg, "parent %s\n",
2151                            sha1_to_hex(parent->item->object.sha1));
2152        strbuf_addf(&msg,
2153                    "author %s\n"
2154                    "committer %s\n\n"
2155                    "Version of %s from %s\n",
2156                    ident, ident, path,
2157                    (!contents_from ? path :
2158                     (!strcmp(contents_from, "-") ? "standard input" : contents_from)));
2159        commit->buffer = strbuf_detach(&msg, NULL);
2160
2161        if (!contents_from || strcmp("-", contents_from)) {
2162                struct stat st;
2163                const char *read_from;
2164                char *buf_ptr;
2165                unsigned long buf_len;
2166
2167                if (contents_from) {
2168                        if (stat(contents_from, &st) < 0)
2169                                die_errno("Cannot stat '%s'", contents_from);
2170                        read_from = contents_from;
2171                }
2172                else {
2173                        if (lstat(path, &st) < 0)
2174                                die_errno("Cannot lstat '%s'", path);
2175                        read_from = path;
2176                }
2177                mode = canon_mode(st.st_mode);
2178
2179                switch (st.st_mode & S_IFMT) {
2180                case S_IFREG:
2181                        if (DIFF_OPT_TST(opt, ALLOW_TEXTCONV) &&
2182                            textconv_object(read_from, mode, null_sha1, 0, &buf_ptr, &buf_len))
2183                                strbuf_attach(&buf, buf_ptr, buf_len, buf_len + 1);
2184                        else if (strbuf_read_file(&buf, read_from, st.st_size) != st.st_size)
2185                                die_errno("cannot open or read '%s'", read_from);
2186                        break;
2187                case S_IFLNK:
2188                        if (strbuf_readlink(&buf, read_from, st.st_size) < 0)
2189                                die_errno("cannot readlink '%s'", read_from);
2190                        break;
2191                default:
2192                        die("unsupported file type %s", read_from);
2193                }
2194        }
2195        else {
2196                /* Reading from stdin */
2197                mode = 0;
2198                if (strbuf_read(&buf, 0, 0) < 0)
2199                        die_errno("failed to read from stdin");
2200        }
2201        convert_to_git(path, buf.buf, buf.len, &buf, 0);
2202        origin->file.ptr = buf.buf;
2203        origin->file.size = buf.len;
2204        pretend_sha1_file(buf.buf, buf.len, OBJ_BLOB, origin->blob_sha1);
2205        commit->util = origin;
2206
2207        /*
2208         * Read the current index, replace the path entry with
2209         * origin->blob_sha1 without mucking with its mode or type
2210         * bits; we are not going to write this index out -- we just
2211         * want to run "diff-index --cached".
2212         */
2213        discard_cache();
2214        read_cache();
2215
2216        len = strlen(path);
2217        if (!mode) {
2218                int pos = cache_name_pos(path, len);
2219                if (0 <= pos)
2220                        mode = active_cache[pos]->ce_mode;
2221                else
2222                        /* Let's not bother reading from HEAD tree */
2223                        mode = S_IFREG | 0644;
2224        }
2225        size = cache_entry_size(len);
2226        ce = xcalloc(1, size);
2227        hashcpy(ce->sha1, origin->blob_sha1);
2228        memcpy(ce->name, path, len);
2229        ce->ce_flags = create_ce_flags(0);
2230        ce->ce_namelen = len;
2231        ce->ce_mode = create_ce_mode(mode);
2232        add_cache_entry(ce, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
2233
2234        /*
2235         * We are not going to write this out, so this does not matter
2236         * right now, but someday we might optimize diff-index --cached
2237         * with cache-tree information.
2238         */
2239        cache_tree_invalidate_path(active_cache_tree, path);
2240
2241        return commit;
2242}
2243
2244static const char *prepare_final(struct scoreboard *sb)
2245{
2246        int i;
2247        const char *final_commit_name = NULL;
2248        struct rev_info *revs = sb->revs;
2249
2250        /*
2251         * There must be one and only one positive commit in the
2252         * revs->pending array.
2253         */
2254        for (i = 0; i < revs->pending.nr; i++) {
2255                struct object *obj = revs->pending.objects[i].item;
2256                if (obj->flags & UNINTERESTING)
2257                        continue;
2258                while (obj->type == OBJ_TAG)
2259                        obj = deref_tag(obj, NULL, 0);
2260                if (obj->type != OBJ_COMMIT)
2261                        die("Non commit %s?", revs->pending.objects[i].name);
2262                if (sb->final)
2263                        die("More than one commit to dig from %s and %s?",
2264                            revs->pending.objects[i].name,
2265                            final_commit_name);
2266                sb->final = (struct commit *) obj;
2267                final_commit_name = revs->pending.objects[i].name;
2268        }
2269        return final_commit_name;
2270}
2271
2272static const char *prepare_initial(struct scoreboard *sb)
2273{
2274        int i;
2275        const char *final_commit_name = NULL;
2276        struct rev_info *revs = sb->revs;
2277
2278        /*
2279         * There must be one and only one negative commit, and it must be
2280         * the boundary.
2281         */
2282        for (i = 0; i < revs->pending.nr; i++) {
2283                struct object *obj = revs->pending.objects[i].item;
2284                if (!(obj->flags & UNINTERESTING))
2285                        continue;
2286                while (obj->type == OBJ_TAG)
2287                        obj = deref_tag(obj, NULL, 0);
2288                if (obj->type != OBJ_COMMIT)
2289                        die("Non commit %s?", revs->pending.objects[i].name);
2290                if (sb->final)
2291                        die("More than one commit to dig down to %s and %s?",
2292                            revs->pending.objects[i].name,
2293                            final_commit_name);
2294                sb->final = (struct commit *) obj;
2295                final_commit_name = revs->pending.objects[i].name;
2296        }
2297        if (!final_commit_name)
2298                die("No commit to dig down to?");
2299        return final_commit_name;
2300}
2301
2302static int blame_copy_callback(const struct option *option, const char *arg, int unset)
2303{
2304        int *opt = option->value;
2305
2306        /*
2307         * -C enables copy from removed files;
2308         * -C -C enables copy from existing files, but only
2309         *       when blaming a new file;
2310         * -C -C -C enables copy from existing files for
2311         *          everybody
2312         */
2313        if (*opt & PICKAXE_BLAME_COPY_HARDER)
2314                *opt |= PICKAXE_BLAME_COPY_HARDEST;
2315        if (*opt & PICKAXE_BLAME_COPY)
2316                *opt |= PICKAXE_BLAME_COPY_HARDER;
2317        *opt |= PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE;
2318
2319        if (arg)
2320                blame_copy_score = parse_score(arg);
2321        return 0;
2322}
2323
2324static int blame_move_callback(const struct option *option, const char *arg, int unset)
2325{
2326        int *opt = option->value;
2327
2328        *opt |= PICKAXE_BLAME_MOVE;
2329
2330        if (arg)
2331                blame_move_score = parse_score(arg);
2332        return 0;
2333}
2334
2335static int blame_bottomtop_callback(const struct option *option, const char *arg, int unset)
2336{
2337        const char **bottomtop = option->value;
2338        if (!arg)
2339                return -1;
2340        if (*bottomtop)
2341                die("More than one '-L n,m' option given");
2342        *bottomtop = arg;
2343        return 0;
2344}
2345
2346int cmd_blame(int argc, const char **argv, const char *prefix)
2347{
2348        struct rev_info revs;
2349        const char *path;
2350        struct scoreboard sb;
2351        struct origin *o;
2352        struct blame_entry *ent;
2353        long dashdash_pos, bottom, top, lno;
2354        const char *final_commit_name = NULL;
2355        enum object_type type;
2356
2357        static const char *bottomtop = NULL;
2358        static int output_option = 0, opt = 0;
2359        static int show_stats = 0;
2360        static const char *revs_file = NULL;
2361        static const char *contents_from = NULL;
2362        static const struct option options[] = {
2363                OPT_BOOLEAN(0, "incremental", &incremental, N_("Show blame entries as we find them, incrementally")),
2364                OPT_BOOLEAN('b', NULL, &blank_boundary, N_("Show blank SHA-1 for boundary commits (Default: off)")),
2365                OPT_BOOLEAN(0, "root", &show_root, N_("Do not treat root commits as boundaries (Default: off)")),
2366                OPT_BOOLEAN(0, "show-stats", &show_stats, N_("Show work cost statistics")),
2367                OPT_BIT(0, "score-debug", &output_option, N_("Show output score for blame entries"), OUTPUT_SHOW_SCORE),
2368                OPT_BIT('f', "show-name", &output_option, N_("Show original filename (Default: auto)"), OUTPUT_SHOW_NAME),
2369                OPT_BIT('n', "show-number", &output_option, N_("Show original linenumber (Default: off)"), OUTPUT_SHOW_NUMBER),
2370                OPT_BIT('p', "porcelain", &output_option, N_("Show in a format designed for machine consumption"), OUTPUT_PORCELAIN),
2371                OPT_BIT(0, "line-porcelain", &output_option, N_("Show porcelain format with per-line commit information"), OUTPUT_PORCELAIN|OUTPUT_LINE_PORCELAIN),
2372                OPT_BIT('c', NULL, &output_option, N_("Use the same output mode as git-annotate (Default: off)"), OUTPUT_ANNOTATE_COMPAT),
2373                OPT_BIT('t', NULL, &output_option, N_("Show raw timestamp (Default: off)"), OUTPUT_RAW_TIMESTAMP),
2374                OPT_BIT('l', NULL, &output_option, N_("Show long commit SHA1 (Default: off)"), OUTPUT_LONG_OBJECT_NAME),
2375                OPT_BIT('s', NULL, &output_option, N_("Suppress author name and timestamp (Default: off)"), OUTPUT_NO_AUTHOR),
2376                OPT_BIT('e', "show-email", &output_option, N_("Show author email instead of name (Default: off)"), OUTPUT_SHOW_EMAIL),
2377                OPT_BIT('w', NULL, &xdl_opts, N_("Ignore whitespace differences"), XDF_IGNORE_WHITESPACE),
2378                OPT_BIT(0, "minimal", &xdl_opts, N_("Spend extra cycles to find better match"), XDF_NEED_MINIMAL),
2379                OPT_STRING('S', NULL, &revs_file, N_("file"), N_("Use revisions from <file> instead of calling git-rev-list")),
2380                OPT_STRING(0, "contents", &contents_from, N_("file"), N_("Use <file>'s contents as the final image")),
2381                { OPTION_CALLBACK, 'C', NULL, &opt, N_("score"), N_("Find line copies within and across files"), PARSE_OPT_OPTARG, blame_copy_callback },
2382                { OPTION_CALLBACK, 'M', NULL, &opt, N_("score"), N_("Find line movements within and across files"), PARSE_OPT_OPTARG, blame_move_callback },
2383                OPT_CALLBACK('L', NULL, &bottomtop, N_("n,m"), N_("Process only line range n,m, counting from 1"), blame_bottomtop_callback),
2384                OPT__ABBREV(&abbrev),
2385                OPT_END()
2386        };
2387
2388        struct parse_opt_ctx_t ctx;
2389        int cmd_is_annotate = !strcmp(argv[0], "annotate");
2390
2391        git_config(git_blame_config, NULL);
2392        init_revisions(&revs, NULL);
2393        revs.date_mode = blame_date_mode;
2394        DIFF_OPT_SET(&revs.diffopt, ALLOW_TEXTCONV);
2395
2396        save_commit_buffer = 0;
2397        dashdash_pos = 0;
2398
2399        parse_options_start(&ctx, argc, argv, prefix, options,
2400                            PARSE_OPT_KEEP_DASHDASH | PARSE_OPT_KEEP_ARGV0);
2401        for (;;) {
2402                switch (parse_options_step(&ctx, options, blame_opt_usage)) {
2403                case PARSE_OPT_HELP:
2404                        exit(129);
2405                case PARSE_OPT_DONE:
2406                        if (ctx.argv[0])
2407                                dashdash_pos = ctx.cpidx;
2408                        goto parse_done;
2409                }
2410
2411                if (!strcmp(ctx.argv[0], "--reverse")) {
2412                        ctx.argv[0] = "--children";
2413                        reverse = 1;
2414                }
2415                parse_revision_opt(&revs, &ctx, options, blame_opt_usage);
2416        }
2417parse_done:
2418        argc = parse_options_end(&ctx);
2419
2420        if (0 < abbrev)
2421                /* one more abbrev length is needed for the boundary commit */
2422                abbrev++;
2423
2424        if (revs_file && read_ancestry(revs_file))
2425                die_errno("reading graft file '%s' failed", revs_file);
2426
2427        if (cmd_is_annotate) {
2428                output_option |= OUTPUT_ANNOTATE_COMPAT;
2429                blame_date_mode = DATE_ISO8601;
2430        } else {
2431                blame_date_mode = revs.date_mode;
2432        }
2433
2434        /* The maximum width used to show the dates */
2435        switch (blame_date_mode) {
2436        case DATE_RFC2822:
2437                blame_date_width = sizeof("Thu, 19 Oct 2006 16:00:04 -0700");
2438                break;
2439        case DATE_ISO8601:
2440                blame_date_width = sizeof("2006-10-19 16:00:04 -0700");
2441                break;
2442        case DATE_RAW:
2443                blame_date_width = sizeof("1161298804 -0700");
2444                break;
2445        case DATE_SHORT:
2446                blame_date_width = sizeof("2006-10-19");
2447                break;
2448        case DATE_RELATIVE:
2449                /* "normal" is used as the fallback for "relative" */
2450        case DATE_LOCAL:
2451        case DATE_NORMAL:
2452                blame_date_width = sizeof("Thu Oct 19 16:00:04 2006 -0700");
2453                break;
2454        }
2455        blame_date_width -= 1; /* strip the null */
2456
2457        if (DIFF_OPT_TST(&revs.diffopt, FIND_COPIES_HARDER))
2458                opt |= (PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE |
2459                        PICKAXE_BLAME_COPY_HARDER);
2460
2461        if (!blame_move_score)
2462                blame_move_score = BLAME_DEFAULT_MOVE_SCORE;
2463        if (!blame_copy_score)
2464                blame_copy_score = BLAME_DEFAULT_COPY_SCORE;
2465
2466        /*
2467         * We have collected options unknown to us in argv[1..unk]
2468         * which are to be passed to revision machinery if we are
2469         * going to do the "bottom" processing.
2470         *
2471         * The remaining are:
2472         *
2473         * (1) if dashdash_pos != 0, it is either
2474         *     "blame [revisions] -- <path>" or
2475         *     "blame -- <path> <rev>"
2476         *
2477         * (2) otherwise, it is one of the two:
2478         *     "blame [revisions] <path>"
2479         *     "blame <path> <rev>"
2480         *
2481         * Note that we must strip out <path> from the arguments: we do not
2482         * want the path pruning but we may want "bottom" processing.
2483         */
2484        if (dashdash_pos) {
2485                switch (argc - dashdash_pos - 1) {
2486                case 2: /* (1b) */
2487                        if (argc != 4)
2488                                usage_with_options(blame_opt_usage, options);
2489                        /* reorder for the new way: <rev> -- <path> */
2490                        argv[1] = argv[3];
2491                        argv[3] = argv[2];
2492                        argv[2] = "--";
2493                        /* FALLTHROUGH */
2494                case 1: /* (1a) */
2495                        path = add_prefix(prefix, argv[--argc]);
2496                        argv[argc] = NULL;
2497                        break;
2498                default:
2499                        usage_with_options(blame_opt_usage, options);
2500                }
2501        } else {
2502                if (argc < 2)
2503                        usage_with_options(blame_opt_usage, options);
2504                path = add_prefix(prefix, argv[argc - 1]);
2505                if (argc == 3 && !has_string_in_work_tree(path)) { /* (2b) */
2506                        path = add_prefix(prefix, argv[1]);
2507                        argv[1] = argv[2];
2508                }
2509                argv[argc - 1] = "--";
2510
2511                setup_work_tree();
2512                if (!has_string_in_work_tree(path))
2513                        die_errno("cannot stat path '%s'", path);
2514        }
2515
2516        revs.disable_stdin = 1;
2517        setup_revisions(argc, argv, &revs, NULL);
2518        memset(&sb, 0, sizeof(sb));
2519
2520        sb.revs = &revs;
2521        if (!reverse)
2522                final_commit_name = prepare_final(&sb);
2523        else if (contents_from)
2524                die("--contents and --children do not blend well.");
2525        else
2526                final_commit_name = prepare_initial(&sb);
2527
2528        if (!sb.final) {
2529                /*
2530                 * "--not A B -- path" without anything positive;
2531                 * do not default to HEAD, but use the working tree
2532                 * or "--contents".
2533                 */
2534                setup_work_tree();
2535                sb.final = fake_working_tree_commit(&sb.revs->diffopt,
2536                                                    path, contents_from);
2537                add_pending_object(&revs, &(sb.final->object), ":");
2538        }
2539        else if (contents_from)
2540                die("Cannot use --contents with final commit object name");
2541
2542        /*
2543         * If we have bottom, this will mark the ancestors of the
2544         * bottom commits we would reach while traversing as
2545         * uninteresting.
2546         */
2547        if (prepare_revision_walk(&revs))
2548                die("revision walk setup failed");
2549
2550        if (is_null_sha1(sb.final->object.sha1)) {
2551                char *buf;
2552                o = sb.final->util;
2553                buf = xmalloc(o->file.size + 1);
2554                memcpy(buf, o->file.ptr, o->file.size + 1);
2555                sb.final_buf = buf;
2556                sb.final_buf_size = o->file.size;
2557        }
2558        else {
2559                o = get_origin(&sb, sb.final, path);
2560                if (fill_blob_sha1_and_mode(o))
2561                        die("no such path %s in %s", path, final_commit_name);
2562
2563                if (DIFF_OPT_TST(&sb.revs->diffopt, ALLOW_TEXTCONV) &&
2564                    textconv_object(path, o->mode, o->blob_sha1, 1, (char **) &sb.final_buf,
2565                                    &sb.final_buf_size))
2566                        ;
2567                else
2568                        sb.final_buf = read_sha1_file(o->blob_sha1, &type,
2569                                                      &sb.final_buf_size);
2570
2571                if (!sb.final_buf)
2572                        die("Cannot read blob %s for path %s",
2573                            sha1_to_hex(o->blob_sha1),
2574                            path);
2575        }
2576        num_read_blob++;
2577        lno = prepare_lines(&sb);
2578
2579        bottom = top = 0;
2580        if (bottomtop)
2581                prepare_blame_range(&sb, bottomtop, lno, &bottom, &top);
2582        if (bottom && top && top < bottom) {
2583                long tmp;
2584                tmp = top; top = bottom; bottom = tmp;
2585        }
2586        if (bottom < 1)
2587                bottom = 1;
2588        if (top < 1)
2589                top = lno;
2590        bottom--;
2591        if (lno < top || lno < bottom)
2592                die("file %s has only %lu lines", path, lno);
2593
2594        ent = xcalloc(1, sizeof(*ent));
2595        ent->lno = bottom;
2596        ent->num_lines = top - bottom;
2597        ent->suspect = o;
2598        ent->s_lno = bottom;
2599
2600        sb.ent = ent;
2601        sb.path = path;
2602
2603        read_mailmap(&mailmap, NULL);
2604
2605        if (!incremental)
2606                setup_pager();
2607
2608        assign_blame(&sb, opt);
2609
2610        if (incremental)
2611                return 0;
2612
2613        coalesce(&sb);
2614
2615        if (!(output_option & OUTPUT_PORCELAIN))
2616                find_alignment(&sb, &output_option);
2617
2618        output(&sb, output_option);
2619        free((void *)sb.final_buf);
2620        for (ent = sb.ent; ent; ) {
2621                struct blame_entry *e = ent->next;
2622                free(ent);
2623                ent = e;
2624        }
2625
2626        if (show_stats) {
2627                printf("num read blob: %d\n", num_read_blob);
2628                printf("num get patch: %d\n", num_get_patch);
2629                printf("num commits: %d\n", num_commits);
2630        }
2631        return 0;
2632}