Blame


1 404c43c4 2018-06-21 stsp /*
2 4c9641fd 2019-08-21 stsp * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
3 404c43c4 2018-06-21 stsp *
4 404c43c4 2018-06-21 stsp * Permission to use, copy, modify, and distribute this software for any
5 404c43c4 2018-06-21 stsp * purpose with or without fee is hereby granted, provided that the above
6 404c43c4 2018-06-21 stsp * copyright notice and this permission notice appear in all copies.
7 404c43c4 2018-06-21 stsp *
8 404c43c4 2018-06-21 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 404c43c4 2018-06-21 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 404c43c4 2018-06-21 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 404c43c4 2018-06-21 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 404c43c4 2018-06-21 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 404c43c4 2018-06-21 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 404c43c4 2018-06-21 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 404c43c4 2018-06-21 stsp */
16 404c43c4 2018-06-21 stsp
17 404c43c4 2018-06-21 stsp #include <sys/queue.h>
18 404c43c4 2018-06-21 stsp #include <sys/stat.h>
19 404c43c4 2018-06-21 stsp
20 404c43c4 2018-06-21 stsp #include <sha1.h>
21 404c43c4 2018-06-21 stsp #include <string.h>
22 404c43c4 2018-06-21 stsp #include <stdio.h>
23 404c43c4 2018-06-21 stsp #include <stdlib.h>
24 404c43c4 2018-06-21 stsp #include <time.h>
25 404c43c4 2018-06-21 stsp #include <util.h>
26 404c43c4 2018-06-21 stsp #include <zlib.h>
27 404c43c4 2018-06-21 stsp
28 404c43c4 2018-06-21 stsp #include "got_error.h"
29 404c43c4 2018-06-21 stsp #include "got_object.h"
30 404c43c4 2018-06-21 stsp #include "got_blame.h"
31 404c43c4 2018-06-21 stsp #include "got_opentemp.h"
32 404c43c4 2018-06-21 stsp
33 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
34 404c43c4 2018-06-21 stsp #include "got_lib_delta.h"
35 404c43c4 2018-06-21 stsp #include "got_lib_object.h"
36 404c43c4 2018-06-21 stsp #include "got_lib_diff.h"
37 293f6400 2018-09-20 stsp #include "got_commit_graph.h"
38 404c43c4 2018-06-21 stsp
39 404c43c4 2018-06-21 stsp struct got_blame_line {
40 404c43c4 2018-06-21 stsp int annotated;
41 9b94757a 2018-06-21 stsp struct got_object_id id;
42 404c43c4 2018-06-21 stsp };
43 404c43c4 2018-06-21 stsp
44 404c43c4 2018-06-21 stsp struct got_blame {
45 404c43c4 2018-06-21 stsp FILE *f;
46 6c4c42e0 2019-06-24 stsp size_t filesize;
47 6fcac457 2018-11-19 stsp int nlines;
48 06ca4d09 2018-11-19 stsp int nannotated;
49 404c43c4 2018-06-21 stsp struct got_blame_line *lines; /* one per line */
50 6c4c42e0 2019-06-24 stsp off_t *line_offsets; /* one per line */
51 c35a7943 2018-07-12 stsp int ncommits;
52 404c43c4 2018-06-21 stsp };
53 404c43c4 2018-06-21 stsp
54 404c43c4 2018-06-21 stsp static const struct got_error *
55 84451b3e 2018-07-10 stsp annotate_line(struct got_blame *blame, int lineno, struct got_object_id *id,
56 84451b3e 2018-07-10 stsp const struct got_error *(*cb)(void *, int, int, struct got_object_id *),
57 84451b3e 2018-07-10 stsp void *arg)
58 404c43c4 2018-06-21 stsp {
59 404c43c4 2018-06-21 stsp const struct got_error *err = NULL;
60 404c43c4 2018-06-21 stsp struct got_blame_line *line;
61 404c43c4 2018-06-21 stsp
62 404c43c4 2018-06-21 stsp if (lineno < 1 || lineno > blame->nlines)
63 f2e233d8 2018-11-19 stsp return NULL;
64 404c43c4 2018-06-21 stsp
65 404c43c4 2018-06-21 stsp line = &blame->lines[lineno - 1];
66 404c43c4 2018-06-21 stsp if (line->annotated)
67 84451b3e 2018-07-10 stsp return NULL;
68 404c43c4 2018-06-21 stsp
69 404c43c4 2018-06-21 stsp memcpy(&line->id, id, sizeof(line->id));
70 404c43c4 2018-06-21 stsp line->annotated = 1;
71 06ca4d09 2018-11-19 stsp blame->nannotated++;
72 84451b3e 2018-07-10 stsp if (cb)
73 84451b3e 2018-07-10 stsp err = cb(arg, blame->nlines, lineno, id);
74 84451b3e 2018-07-10 stsp return err;
75 404c43c4 2018-06-21 stsp }
76 404c43c4 2018-06-21 stsp
77 404c43c4 2018-06-21 stsp static const struct got_error *
78 c35a7943 2018-07-12 stsp blame_changes(struct got_blame *blame, struct got_diff_changes *changes,
79 c35a7943 2018-07-12 stsp struct got_object_id *commit_id,
80 c35a7943 2018-07-12 stsp const struct got_error *(*cb)(void *, int, int, struct got_object_id *),
81 c35a7943 2018-07-12 stsp void *arg)
82 c35a7943 2018-07-12 stsp {
83 c35a7943 2018-07-12 stsp const struct got_error *err = NULL;
84 c35a7943 2018-07-12 stsp struct got_diff_change *change;
85 c35a7943 2018-07-12 stsp
86 c35a7943 2018-07-12 stsp SIMPLEQ_FOREACH(change, &changes->entries, entry) {
87 c35a7943 2018-07-12 stsp int c = change->cv.c;
88 c35a7943 2018-07-12 stsp int d = change->cv.d;
89 4c9641fd 2019-08-21 stsp int new_lineno = (c < d ? c : d);
90 c35a7943 2018-07-12 stsp int new_length = (c < d ? d - c + 1 : (c == d ? 1 : 0));
91 c35a7943 2018-07-12 stsp int ln;
92 c35a7943 2018-07-12 stsp
93 c35a7943 2018-07-12 stsp for (ln = new_lineno; ln < new_lineno + new_length; ln++) {
94 4c9641fd 2019-08-21 stsp err = annotate_line(blame, ln, commit_id, cb, arg);
95 c35a7943 2018-07-12 stsp if (err)
96 c35a7943 2018-07-12 stsp return err;
97 06ca4d09 2018-11-19 stsp if (blame->nlines == blame->nannotated)
98 4c9641fd 2019-08-21 stsp break;
99 c35a7943 2018-07-12 stsp }
100 c35a7943 2018-07-12 stsp }
101 c35a7943 2018-07-12 stsp
102 c35a7943 2018-07-12 stsp return NULL;
103 c35a7943 2018-07-12 stsp }
104 c35a7943 2018-07-12 stsp
105 c35a7943 2018-07-12 stsp static const struct got_error *
106 4c9641fd 2019-08-21 stsp blame_commit(struct got_blame *blame, struct got_object_id *parent_id,
107 4c9641fd 2019-08-21 stsp struct got_object_id *id, const char *path, struct got_repository *repo,
108 84451b3e 2018-07-10 stsp const struct got_error *(*cb)(void *, int, int, struct got_object_id *),
109 84451b3e 2018-07-10 stsp void *arg)
110 404c43c4 2018-06-21 stsp {
111 404c43c4 2018-06-21 stsp const struct got_error *err = NULL;
112 404c43c4 2018-06-21 stsp struct got_object *obj = NULL, *pobj = NULL;
113 4c9641fd 2019-08-21 stsp struct got_object_id *obj_id = NULL;
114 8d725ae1 2019-08-18 stsp struct got_commit_object *commit = NULL;
115 4c9641fd 2019-08-21 stsp struct got_blob_object *blob = NULL;
116 404c43c4 2018-06-21 stsp struct got_diff_changes *changes = NULL;
117 404c43c4 2018-06-21 stsp
118 4c9641fd 2019-08-21 stsp err = got_object_open_as_commit(&commit, repo, parent_id);
119 8d725ae1 2019-08-18 stsp if (err)
120 8d725ae1 2019-08-18 stsp return err;
121 8d725ae1 2019-08-18 stsp
122 4c9641fd 2019-08-21 stsp err = got_object_id_by_path(&obj_id, repo, parent_id, path);
123 4c9641fd 2019-08-21 stsp if (err) {
124 4c9641fd 2019-08-21 stsp if (err->code == GOT_ERR_NO_TREE_ENTRY)
125 4c9641fd 2019-08-21 stsp err = NULL;
126 404c43c4 2018-06-21 stsp goto done;
127 4c9641fd 2019-08-21 stsp }
128 27d434c2 2018-09-15 stsp
129 27d434c2 2018-09-15 stsp err = got_object_open(&obj, repo, obj_id);
130 27d434c2 2018-09-15 stsp if (err)
131 27d434c2 2018-09-15 stsp goto done;
132 27d434c2 2018-09-15 stsp
133 15a94983 2018-12-23 stsp if (obj->type != GOT_OBJ_TYPE_BLOB) {
134 404c43c4 2018-06-21 stsp err = got_error(GOT_ERR_OBJ_TYPE);
135 404c43c4 2018-06-21 stsp goto done;
136 404c43c4 2018-06-21 stsp }
137 404c43c4 2018-06-21 stsp
138 404c43c4 2018-06-21 stsp err = got_object_blob_open(&blob, repo, obj, 8192);
139 404c43c4 2018-06-21 stsp if (err)
140 404c43c4 2018-06-21 stsp goto done;
141 404c43c4 2018-06-21 stsp
142 4c9641fd 2019-08-21 stsp if (fseek(blame->f, 0L, SEEK_SET) == -1) {
143 4c9641fd 2019-08-21 stsp err = got_ferror(blame->f, GOT_ERR_IO);
144 4c9641fd 2019-08-21 stsp goto done;
145 4c9641fd 2019-08-21 stsp }
146 4c9641fd 2019-08-21 stsp
147 4c9641fd 2019-08-21 stsp err = got_diff_blob_file_lines_changed(&changes, blob, blame->f,
148 4c9641fd 2019-08-21 stsp blame->filesize);
149 404c43c4 2018-06-21 stsp if (err)
150 404c43c4 2018-06-21 stsp goto done;
151 404c43c4 2018-06-21 stsp
152 404c43c4 2018-06-21 stsp if (changes) {
153 c35a7943 2018-07-12 stsp err = blame_changes(blame, changes, id, cb, arg);
154 ce7f1bfe 2018-07-13 stsp got_diff_free_changes(changes);
155 d68a0a7d 2018-07-10 stsp } else if (cb)
156 3bf198ba 2018-07-10 stsp err = cb(arg, blame->nlines, -1, id);
157 404c43c4 2018-06-21 stsp done:
158 8d725ae1 2019-08-18 stsp if (commit)
159 8d725ae1 2019-08-18 stsp got_object_commit_close(commit);
160 27d434c2 2018-09-15 stsp free(obj_id);
161 404c43c4 2018-06-21 stsp if (obj)
162 404c43c4 2018-06-21 stsp got_object_close(obj);
163 404c43c4 2018-06-21 stsp if (pobj)
164 404c43c4 2018-06-21 stsp got_object_close(pobj);
165 404c43c4 2018-06-21 stsp if (blob)
166 404c43c4 2018-06-21 stsp got_object_blob_close(blob);
167 404c43c4 2018-06-21 stsp return err;
168 404c43c4 2018-06-21 stsp }
169 404c43c4 2018-06-21 stsp
170 fb43ecf1 2019-02-11 stsp static const struct got_error *
171 404c43c4 2018-06-21 stsp blame_close(struct got_blame *blame)
172 404c43c4 2018-06-21 stsp {
173 fb43ecf1 2019-02-11 stsp const struct got_error *err = NULL;
174 c35a7943 2018-07-12 stsp
175 fb43ecf1 2019-02-11 stsp if (blame->f && fclose(blame->f) != 0)
176 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
177 404c43c4 2018-06-21 stsp free(blame->lines);
178 404c43c4 2018-06-21 stsp free(blame);
179 fb43ecf1 2019-02-11 stsp return err;
180 404c43c4 2018-06-21 stsp }
181 404c43c4 2018-06-21 stsp
182 404c43c4 2018-06-21 stsp static const struct got_error *
183 404c43c4 2018-06-21 stsp blame_open(struct got_blame **blamep, const char *path,
184 84451b3e 2018-07-10 stsp struct got_object_id *start_commit_id, struct got_repository *repo,
185 84451b3e 2018-07-10 stsp const struct got_error *(*cb)(void *, int, int, struct got_object_id *),
186 84451b3e 2018-07-10 stsp void *arg)
187 404c43c4 2018-06-21 stsp {
188 404c43c4 2018-06-21 stsp const struct got_error *err = NULL;
189 404c43c4 2018-06-21 stsp struct got_object *obj = NULL;
190 27d434c2 2018-09-15 stsp struct got_object_id *obj_id = NULL;
191 404c43c4 2018-06-21 stsp struct got_blob_object *blob = NULL;
192 404c43c4 2018-06-21 stsp struct got_blame *blame = NULL;
193 4c9641fd 2019-08-21 stsp struct got_object_id *id = NULL, *pid = NULL;
194 404c43c4 2018-06-21 stsp int lineno;
195 293f6400 2018-09-20 stsp struct got_commit_graph *graph = NULL;
196 404c43c4 2018-06-21 stsp
197 404c43c4 2018-06-21 stsp *blamep = NULL;
198 404c43c4 2018-06-21 stsp
199 27d434c2 2018-09-15 stsp err = got_object_id_by_path(&obj_id, repo, start_commit_id, path);
200 404c43c4 2018-06-21 stsp if (err)
201 404c43c4 2018-06-21 stsp return err;
202 27d434c2 2018-09-15 stsp
203 27d434c2 2018-09-15 stsp err = got_object_open(&obj, repo, obj_id);
204 27d434c2 2018-09-15 stsp if (err)
205 27d434c2 2018-09-15 stsp goto done;
206 27d434c2 2018-09-15 stsp
207 15a94983 2018-12-23 stsp if (obj->type != GOT_OBJ_TYPE_BLOB) {
208 404c43c4 2018-06-21 stsp err = got_error(GOT_ERR_OBJ_TYPE);
209 404c43c4 2018-06-21 stsp goto done;
210 404c43c4 2018-06-21 stsp }
211 404c43c4 2018-06-21 stsp
212 404c43c4 2018-06-21 stsp err = got_object_blob_open(&blob, repo, obj, 8192);
213 404c43c4 2018-06-21 stsp if (err)
214 404c43c4 2018-06-21 stsp goto done;
215 404c43c4 2018-06-21 stsp
216 404c43c4 2018-06-21 stsp blame = calloc(1, sizeof(*blame));
217 404c43c4 2018-06-21 stsp if (blame == NULL)
218 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
219 404c43c4 2018-06-21 stsp
220 404c43c4 2018-06-21 stsp blame->f = got_opentemp();
221 404c43c4 2018-06-21 stsp if (blame->f == NULL) {
222 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
223 404c43c4 2018-06-21 stsp goto done;
224 404c43c4 2018-06-21 stsp }
225 6c4c42e0 2019-06-24 stsp err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
226 6c4c42e0 2019-06-24 stsp &blame->line_offsets, blame->f, blob);
227 b02560ec 2019-08-19 stsp if (err || blame->nlines == 0)
228 404c43c4 2018-06-21 stsp goto done;
229 b02560ec 2019-08-19 stsp
230 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
231 b02560ec 2019-08-19 stsp if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
232 b02560ec 2019-08-19 stsp blame->nlines--;
233 404c43c4 2018-06-21 stsp
234 404c43c4 2018-06-21 stsp blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
235 404c43c4 2018-06-21 stsp if (blame->lines == NULL) {
236 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
237 404c43c4 2018-06-21 stsp goto done;
238 404c43c4 2018-06-21 stsp }
239 404c43c4 2018-06-21 stsp
240 8d725ae1 2019-08-18 stsp err = got_commit_graph_open(&graph, start_commit_id, path, 1, repo);
241 404c43c4 2018-06-21 stsp if (err)
242 293f6400 2018-09-20 stsp return err;
243 293f6400 2018-09-20 stsp err = got_commit_graph_iter_start(graph, start_commit_id, repo);
244 293f6400 2018-09-20 stsp if (err)
245 404c43c4 2018-06-21 stsp goto done;
246 4c9641fd 2019-08-21 stsp id = start_commit_id;
247 656b1f76 2019-05-11 jcs for (;;) {
248 4c9641fd 2019-08-21 stsp err = got_commit_graph_iter_next(&pid, graph);
249 404c43c4 2018-06-21 stsp if (err) {
250 293f6400 2018-09-20 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
251 4c9641fd 2019-08-21 stsp err = NULL;
252 293f6400 2018-09-20 stsp break;
253 293f6400 2018-09-20 stsp }
254 293f6400 2018-09-20 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
255 293f6400 2018-09-20 stsp break;
256 293f6400 2018-09-20 stsp err = got_commit_graph_fetch_commits(graph, 1, repo);
257 293f6400 2018-09-20 stsp if (err)
258 293f6400 2018-09-20 stsp break;
259 78695fb7 2019-08-12 stsp continue;
260 293f6400 2018-09-20 stsp }
261 4c9641fd 2019-08-21 stsp if (pid) {
262 4c9641fd 2019-08-21 stsp err = blame_commit(blame, pid, id, path, repo, cb, arg);
263 293f6400 2018-09-20 stsp if (err) {
264 293f6400 2018-09-20 stsp if (err->code == GOT_ERR_ITER_COMPLETED)
265 293f6400 2018-09-20 stsp err = NULL;
266 293f6400 2018-09-20 stsp break;
267 293f6400 2018-09-20 stsp }
268 06ca4d09 2018-11-19 stsp if (blame->nannotated == blame->nlines)
269 06ca4d09 2018-11-19 stsp break;
270 404c43c4 2018-06-21 stsp }
271 4c9641fd 2019-08-21 stsp id = pid;
272 293f6400 2018-09-20 stsp }
273 ed77f2ae 2018-06-21 stsp
274 06ca4d09 2018-11-19 stsp if (id && blame->nannotated < blame->nlines) {
275 293f6400 2018-09-20 stsp /* Annotate remaining non-annotated lines with last commit. */
276 293f6400 2018-09-20 stsp for (lineno = 1; lineno <= blame->nlines; lineno++) {
277 293f6400 2018-09-20 stsp err = annotate_line(blame, lineno, id, cb, arg);
278 293f6400 2018-09-20 stsp if (err)
279 293f6400 2018-09-20 stsp goto done;
280 404c43c4 2018-06-21 stsp }
281 404c43c4 2018-06-21 stsp }
282 404c43c4 2018-06-21 stsp
283 404c43c4 2018-06-21 stsp done:
284 293f6400 2018-09-20 stsp if (graph)
285 293f6400 2018-09-20 stsp got_commit_graph_close(graph);
286 27d434c2 2018-09-15 stsp free(obj_id);
287 404c43c4 2018-06-21 stsp if (obj)
288 404c43c4 2018-06-21 stsp got_object_close(obj);
289 404c43c4 2018-06-21 stsp if (blob)
290 404c43c4 2018-06-21 stsp got_object_blob_close(blob);
291 1828273a 2018-07-09 stsp if (err) {
292 1828273a 2018-07-09 stsp if (blame)
293 1828273a 2018-07-09 stsp blame_close(blame);
294 1828273a 2018-07-09 stsp } else
295 404c43c4 2018-06-21 stsp *blamep = blame;
296 404c43c4 2018-06-21 stsp
297 404c43c4 2018-06-21 stsp return err;
298 404c43c4 2018-06-21 stsp }
299 84451b3e 2018-07-10 stsp
300 84451b3e 2018-07-10 stsp const struct got_error *
301 0d8ff7d5 2019-08-14 stsp got_blame(const char *path, struct got_object_id *commit_id,
302 84451b3e 2018-07-10 stsp struct got_repository *repo,
303 84451b3e 2018-07-10 stsp const struct got_error *(*cb)(void *, int, int, struct got_object_id *),
304 84451b3e 2018-07-10 stsp void *arg)
305 84451b3e 2018-07-10 stsp {
306 fb43ecf1 2019-02-11 stsp const struct got_error *err = NULL, *close_err = NULL;
307 84451b3e 2018-07-10 stsp struct got_blame *blame;
308 84451b3e 2018-07-10 stsp char *abspath;
309 84451b3e 2018-07-10 stsp
310 84451b3e 2018-07-10 stsp if (asprintf(&abspath, "%s%s", path[0] == '/' ? "" : "/", path) == -1)
311 638f9024 2019-05-13 stsp return got_error_from_errno2("asprintf", path);
312 84451b3e 2018-07-10 stsp
313 84451b3e 2018-07-10 stsp err = blame_open(&blame, abspath, commit_id, repo, cb, arg);
314 84451b3e 2018-07-10 stsp free(abspath);
315 26206841 2018-07-12 stsp if (blame)
316 fb43ecf1 2019-02-11 stsp close_err = blame_close(blame);
317 fb43ecf1 2019-02-11 stsp return err ? err : close_err;
318 84451b3e 2018-07-10 stsp }