2 * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
3 * Copyright (c) 2020 Neels Hofmeyr <neels@hofmeyr.de>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
29 #include "got_compat.h"
31 #include "got_error.h"
32 #include "got_object.h"
33 #include "got_cancel.h"
34 #include "got_commit_graph.h"
35 #include "got_opentemp.h"
37 #include "got_blame.h"
39 #include "got_lib_inflate.h"
40 #include "got_lib_delta.h"
41 #include "got_lib_object.h"
42 #include "got_lib_diff.h"
45 #define MAX(_a,_b) ((_a) > (_b) ? (_a) : (_b))
48 struct got_blame_line
{
50 struct got_object_id id
;
54 struct diff_config
*cfg
;
55 int nlines
; /* number of lines in file being blamed */
56 int nannotated
; /* number of lines already annotated */
57 struct got_blame_line
*lines
; /* one per line */
61 * These change with every traversed commit. After diffing
62 * commits N:N-1, in preparation for diffing commits N-1:N-2,
63 * data for commit N is retained and flipped into data for N-1.
66 FILE *f1
; /* older version from commit N-1. */
67 FILE *f2
; /* newer version from commit N. */
79 * Map line numbers of an older version of the file to valid line
80 * numbers in the version of the file being blamed. This map is
81 * updated with each commit we traverse throughout the file's history.
82 * Lines mapped to -1 do not correspond to any line in the version
88 struct diff_data
*data1
;
89 struct diff_data
*data2
;
92 static const struct got_error
*
93 annotate_line(struct got_blame
*blame
, int lineno
,
94 struct got_commit_object
*commit
, struct got_object_id
*id
,
95 got_blame_cb cb
, void *arg
)
97 const struct got_error
*err
= NULL
;
98 struct got_blame_line
*line
;
100 if (lineno
< 0 || lineno
>= blame
->nlines
)
103 line
= &blame
->lines
[lineno
];
107 memcpy(&line
->id
, id
, sizeof(line
->id
));
111 err
= cb(arg
, blame
->nlines
, lineno
+ 1, commit
, id
);
115 static const struct got_error
*
116 blame_changes(struct got_blame
*blame
, struct diff_result
*diff_result
,
117 struct got_commit_object
*commit
, struct got_object_id
*commit_id
,
118 got_blame_cb cb
, void *arg
)
120 const struct got_error
*err
= NULL
;
122 int idx1
= 0, idx2
= 0;
124 for (i
= 0; i
< diff_result
->chunks
.len
&&
125 blame
->nannotated
< blame
->nlines
; i
++) {
126 struct diff_chunk
*c
= diff_chunk_get(diff_result
, i
);
127 unsigned int left_count
, right_count
;
131 * We do not need to worry about idx1/idx2 growing out
132 * of bounds because the diff implementation ensures
133 * that chunk ranges never exceed the number of lines
134 * in the left/right input files.
136 left_count
= diff_chunk_get_left_count(c
);
137 right_count
= diff_chunk_get_right_count(c
);
139 if (left_count
== right_count
) {
140 for (j
= 0; j
< left_count
; j
++) {
141 blame
->linemap1
[idx1
++] =
142 blame
->linemap2
[idx2
++];
147 if (right_count
== 0) {
148 for (j
= 0; j
< left_count
; j
++) {
149 blame
->linemap1
[idx1
++] = -1;
154 for (j
= 0; j
< right_count
; j
++) {
155 int ln
= blame
->linemap2
[idx2
++];
156 err
= annotate_line(blame
, ln
, commit
, commit_id
,
160 if (blame
->nlines
== blame
->nannotated
)
168 static const struct got_error
*
169 blame_prepare_file(FILE *f
, unsigned char **p
, off_t
*size
,
170 int *nlines
, off_t
**line_offsets
, struct diff_data
*diff_data
,
171 const struct diff_config
*cfg
, struct got_blob_object
*blob
)
173 const struct got_error
*err
= NULL
;
174 int diff_flags
= 0, rc
;
176 err
= got_object_blob_dump_to_file(size
, nlines
, line_offsets
,
181 #ifndef GOT_DIFF_NO_MMAP
182 *p
= mmap(NULL
, *size
, PROT_READ
, MAP_PRIVATE
, fileno(f
), 0);
183 if (*p
== MAP_FAILED
)
185 *p
= NULL
; /* fall back on file I/O */
187 /* Allow blaming lines in binary files even though it's useless. */
188 diff_flags
|= DIFF_FLAG_FORCE_TEXT_DATA
;
190 rc
= diff_atomize_file(diff_data
, cfg
, f
, *p
, *size
, diff_flags
);
192 return got_error_set_errno(rc
, "diff_atomize_file");
197 static const struct got_error
*
198 blame_commit(struct got_blame
*blame
, struct got_object_id
*id
,
199 const char *path
, struct got_repository
*repo
,
200 got_blame_cb cb
, void *arg
)
202 const struct got_error
*err
= NULL
;
203 struct got_commit_object
*commit
= NULL
, *pcommit
= NULL
;
204 struct got_object_qid
*pid
= NULL
;
205 struct got_object_id
*pblob_id
= NULL
;
206 struct got_blob_object
*pblob
= NULL
;
207 struct diff_result
*diff_result
= NULL
;
209 err
= got_object_open_as_commit(&commit
, repo
, id
);
213 pid
= STAILQ_FIRST(got_object_commit_get_parent_ids(commit
));
215 got_object_commit_close(commit
);
219 err
= got_object_open_as_commit(&pcommit
, repo
, &pid
->id
);
223 err
= got_object_id_by_path(&pblob_id
, repo
, pcommit
, path
);
225 if (err
->code
== GOT_ERR_NO_TREE_ENTRY
)
230 err
= got_object_open_as_blob(&pblob
, repo
, pblob_id
, 8192, blame
->fd
);
234 err
= blame_prepare_file(blame
->f1
, &blame
->map1
, &blame
->size1
,
235 &blame
->nlines1
, &blame
->line_offsets1
, blame
->data1
,
240 diff_result
= diff_main(blame
->cfg
, blame
->data1
, blame
->data2
);
241 if (diff_result
== NULL
) {
242 err
= got_error_set_errno(ENOMEM
, "malloc");
245 if (diff_result
->rc
!= DIFF_RC_OK
) {
246 err
= got_error_set_errno(diff_result
->rc
, "diff");
249 if (diff_result
->chunks
.len
> 0) {
250 if (blame
->nlines1
> 0) {
251 blame
->linemap1
= calloc(blame
->nlines1
,
252 sizeof(*blame
->linemap1
));
253 if (blame
->linemap1
== NULL
) {
254 err
= got_error_from_errno("malloc");
258 err
= blame_changes(blame
, diff_result
, commit
, id
, cb
, arg
);
262 err
= cb(arg
, blame
->nlines
, -1, commit
, id
);
265 diff_result_free(diff_result
);
267 got_object_commit_close(commit
);
269 got_object_commit_close(pcommit
);
272 got_object_blob_close(pblob
);
276 static const struct got_error
*
277 blame_close(struct got_blame
*blame
)
279 const struct got_error
*err
= NULL
;
281 diff_data_free(blame
->data1
);
283 diff_data_free(blame
->data2
);
286 if (munmap(blame
->map1
, blame
->size1
) == -1 && err
== NULL
)
287 err
= got_error_from_errno("munmap");
290 if (munmap(blame
->map2
, blame
->size2
) == -1 && err
== NULL
)
291 err
= got_error_from_errno("munmap");
294 free(blame
->line_offsets1
);
295 free(blame
->line_offsets2
);
296 free(blame
->linemap1
);
297 free(blame
->linemap2
);
304 atomize_file(struct diff_data
*d
, FILE *f
, off_t filesize
, int nlines
,
307 int i
, rc
= DIFF_RC_OK
;
308 int embedded_nul
= 0;
310 ARRAYLIST_INIT(d
->atoms
, nlines
);
312 for (i
= 0; i
< nlines
; i
++) {
313 struct diff_atom
*atom
;
314 off_t len
, pos
= line_offsets
[i
];
315 unsigned int hash
= 0;
318 ARRAYLIST_ADD(atom
, d
->atoms
);
325 len
= line_offsets
[i
+ 1] - pos
;
327 len
= filesize
- pos
;
329 if (fseeko(f
, pos
, SEEK_SET
) == -1) {
333 for (j
= 0; j
< len
; j
++) {
337 rc
= EIO
; /* unexpected EOF */
343 hash
= diff_atom_hash_update(hash
, (unsigned char)c
);
349 *atom
= (struct diff_atom
){
352 .at
= NULL
, /* atom data is not memory-mapped */
358 /* File are considered binary if they contain embedded '\0' bytes. */
360 d
->atomizer_flags
|= DIFF_ATOMIZER_FOUND_BINARY_DATA
;
363 ARRAYLIST_FREE(d
->atoms
);
369 atomize_file_mmap(struct diff_data
*d
, unsigned char *p
,
370 off_t filesize
, int nlines
, off_t
*line_offsets
)
372 int i
, rc
= DIFF_RC_OK
;
373 int embedded_nul
= 0;
375 ARRAYLIST_INIT(d
->atoms
, nlines
);
377 for (i
= 0; i
< nlines
; i
++) {
378 struct diff_atom
*atom
;
379 off_t len
, pos
= line_offsets
[i
];
380 unsigned int hash
= 0;
383 ARRAYLIST_ADD(atom
, d
->atoms
);
390 len
= line_offsets
[i
+ 1] - pos
;
392 len
= filesize
- pos
;
394 for (j
= 0; j
< len
; j
++)
395 hash
= diff_atom_hash_update(hash
, p
[pos
+ j
]);
397 if (!embedded_nul
&& memchr(&p
[pos
], '\0', len
) != NULL
)
400 *atom
= (struct diff_atom
){
409 /* File are considered binary if they contain embedded '\0' bytes. */
411 d
->atomizer_flags
|= DIFF_ATOMIZER_FOUND_BINARY_DATA
;
414 ARRAYLIST_FREE(d
->atoms
);
419 /* Implements diff_atomize_func_t */
421 blame_atomize_file(void *arg
, struct diff_data
*d
)
423 struct got_blame
*blame
= arg
;
425 if (d
->f
== blame
->f1
) {
427 return atomize_file_mmap(d
, blame
->map1
,
428 blame
->size1
, blame
->nlines1
,
429 blame
->line_offsets1
);
431 return atomize_file(d
, blame
->f1
, blame
->size1
,
432 blame
->nlines1
, blame
->line_offsets1
);
433 } else if (d
->f
== blame
->f2
) {
434 if (d
->atoms
.len
> 0) {
435 /* Re-use data from previous commit. */
439 return atomize_file_mmap(d
, blame
->map2
,
440 blame
->size2
, blame
->nlines2
,
441 blame
->line_offsets2
);
443 return atomize_file(d
, blame
->f2
, blame
->size2
,
444 blame
->nlines2
, blame
->line_offsets2
);
450 static const struct got_error
*
451 flip_files(struct got_blame
*blame
)
453 const struct got_error
*err
= NULL
;
457 free(blame
->line_offsets2
);
458 blame
->line_offsets2
= blame
->line_offsets1
;
459 blame
->line_offsets1
= NULL
;
461 free(blame
->linemap2
);
462 blame
->linemap2
= blame
->linemap1
;
463 blame
->linemap1
= NULL
;
466 if (munmap(blame
->map2
, blame
->size2
) == -1)
467 return got_error_from_errno("munmap");
468 blame
->map2
= blame
->map1
;
471 blame
->size2
= blame
->size1
;
473 err
= got_opentemp_truncate(blame
->f2
);
477 blame
->f2
= blame
->f1
;
481 blame
->nlines2
= blame
->nlines1
;
484 diff_data_free(blame
->data2
); /* does not free pointer itself */
485 memset(blame
->data2
, 0, sizeof(*blame
->data2
));
487 blame
->data2
= blame
->data1
;
493 static const struct got_error
*
494 blame_open(struct got_blame
**blamep
, const char *path
,
495 struct got_object_id
*start_commit_id
, struct got_repository
*repo
,
496 enum got_diff_algorithm diff_algo
, got_blame_cb cb
, void *arg
,
497 got_cancel_cb cancel_cb
, void *cancel_arg
,
498 int fd1
, int fd2
, FILE *f1
, FILE *f2
)
500 const struct got_error
*err
= NULL
;
501 struct got_commit_object
*start_commit
= NULL
, *last_commit
= NULL
;
502 struct got_object_id
*obj_id
= NULL
;
503 struct got_blob_object
*blob
= NULL
;
504 struct got_blame
*blame
= NULL
;
505 struct got_object_id
*id
= NULL
;
507 struct got_commit_graph
*graph
= NULL
;
511 err
= got_object_open_as_commit(&start_commit
, repo
, start_commit_id
);
515 err
= got_object_id_by_path(&obj_id
, repo
, start_commit
, path
);
519 err
= got_object_open_as_blob(&blob
, repo
, obj_id
, 8192, fd1
);
523 blame
= calloc(1, sizeof(*blame
));
525 err
= got_error_from_errno("calloc");
529 blame
->data1
= calloc(1, sizeof(*blame
->data1
));
530 if (blame
->data1
== NULL
) {
531 err
= got_error_from_errno("calloc");
534 blame
->data2
= calloc(1, sizeof(*blame
->data2
));
535 if (blame
->data2
== NULL
) {
536 err
= got_error_from_errno("calloc");
544 err
= got_diff_get_config(&blame
->cfg
, diff_algo
, blame_atomize_file
,
549 err
= blame_prepare_file(blame
->f2
, &blame
->map2
, &blame
->size2
,
550 &blame
->nlines2
, &blame
->line_offsets2
, blame
->data2
,
552 blame
->nlines
= blame
->nlines2
;
553 if (err
|| blame
->nlines
== 0)
556 got_object_blob_close(blob
);
559 /* Don't include \n at EOF in the blame line count. */
560 if (blame
->line_offsets2
[blame
->nlines
- 1] == blame
->size2
)
563 blame
->lines
= calloc(blame
->nlines
, sizeof(*blame
->lines
));
564 if (blame
->lines
== NULL
) {
565 err
= got_error_from_errno("calloc");
569 blame
->linemap2
= calloc(blame
->nlines2
, sizeof(*blame
->linemap2
));
570 if (blame
->linemap2
== NULL
) {
571 err
= got_error_from_errno("calloc");
574 for (lineno
= 0; lineno
< blame
->nlines2
; lineno
++)
575 blame
->linemap2
[lineno
] = lineno
;
577 err
= got_commit_graph_open(&graph
, path
, 1);
581 err
= got_commit_graph_iter_start(graph
, start_commit_id
, repo
,
582 cancel_cb
, cancel_arg
);
586 struct got_object_id
*next_id
;
587 err
= got_commit_graph_iter_next(&next_id
, graph
, repo
,
588 cancel_cb
, cancel_arg
);
590 if (err
->code
== GOT_ERR_ITER_COMPLETED
) {
598 err
= blame_commit(blame
, id
, path
, repo
, cb
, arg
);
600 if (err
->code
== GOT_ERR_ITER_COMPLETED
)
604 if (blame
->nannotated
== blame
->nlines
)
607 err
= flip_files(blame
);
613 if (id
&& blame
->nannotated
< blame
->nlines
) {
614 /* Annotate remaining non-annotated lines with last commit. */
615 err
= got_object_open_as_commit(&last_commit
, repo
, id
);
618 for (lineno
= 0; lineno
< blame
->nlines
; lineno
++) {
619 err
= annotate_line(blame
, lineno
, last_commit
, id
,
628 got_commit_graph_close(graph
);
631 got_object_blob_close(blob
);
633 got_object_commit_close(start_commit
);
635 got_object_commit_close(last_commit
);
645 const struct got_error
*
646 got_blame(const char *path
, struct got_object_id
*commit_id
,
647 struct got_repository
*repo
, enum got_diff_algorithm diff_algo
,
648 got_blame_cb cb
, void *arg
, got_cancel_cb cancel_cb
, void* cancel_arg
,
649 int fd1
, int fd2
, FILE *f1
, FILE *f2
)
651 const struct got_error
*err
= NULL
, *close_err
= NULL
;
652 struct got_blame
*blame
;
655 if (asprintf(&abspath
, "%s%s", path
[0] == '/' ? "" : "/", path
) == -1)
656 return got_error_from_errno2("asprintf", path
);
658 err
= blame_open(&blame
, abspath
, commit_id
, repo
, diff_algo
,
659 cb
, arg
, cancel_cb
, cancel_arg
, fd1
, fd2
, f1
, f2
);
662 close_err
= blame_close(blame
);
663 return err
? err
: close_err
;