Blame


1 404c43c4 2018-06-21 stsp /*
2 404c43c4 2018-06-21 stsp * Copyright (c) 2018 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 404c43c4 2018-06-21 stsp
38 404c43c4 2018-06-21 stsp struct got_blame_line {
39 404c43c4 2018-06-21 stsp int annotated;
40 9b94757a 2018-06-21 stsp struct got_object_id id;
41 404c43c4 2018-06-21 stsp };
42 404c43c4 2018-06-21 stsp
43 404c43c4 2018-06-21 stsp struct got_blame {
44 404c43c4 2018-06-21 stsp FILE *f;
45 404c43c4 2018-06-21 stsp size_t nlines;
46 404c43c4 2018-06-21 stsp struct got_blame_line *lines; /* one per line */
47 404c43c4 2018-06-21 stsp };
48 404c43c4 2018-06-21 stsp
49 404c43c4 2018-06-21 stsp static const struct got_error *
50 84451b3e 2018-07-10 stsp annotate_line(struct got_blame *blame, int lineno, struct got_object_id *id,
51 84451b3e 2018-07-10 stsp const struct got_error *(*cb)(void *, int, int, struct got_object_id *),
52 84451b3e 2018-07-10 stsp void *arg)
53 404c43c4 2018-06-21 stsp {
54 404c43c4 2018-06-21 stsp const struct got_error *err = NULL;
55 404c43c4 2018-06-21 stsp struct got_blame_line *line;
56 404c43c4 2018-06-21 stsp
57 404c43c4 2018-06-21 stsp if (lineno < 1 || lineno > blame->nlines)
58 84451b3e 2018-07-10 stsp return got_error(GOT_ERR_RANGE);
59 404c43c4 2018-06-21 stsp
60 404c43c4 2018-06-21 stsp line = &blame->lines[lineno - 1];
61 404c43c4 2018-06-21 stsp if (line->annotated)
62 84451b3e 2018-07-10 stsp return NULL;
63 404c43c4 2018-06-21 stsp
64 404c43c4 2018-06-21 stsp memcpy(&line->id, id, sizeof(line->id));
65 404c43c4 2018-06-21 stsp line->annotated = 1;
66 84451b3e 2018-07-10 stsp if (cb)
67 84451b3e 2018-07-10 stsp err = cb(arg, blame->nlines, lineno, id);
68 84451b3e 2018-07-10 stsp return err;
69 404c43c4 2018-06-21 stsp }
70 404c43c4 2018-06-21 stsp
71 404c43c4 2018-06-21 stsp static const struct got_error *
72 404c43c4 2018-06-21 stsp blame_commit(struct got_blame *blame, struct got_object_id *id,
73 84451b3e 2018-07-10 stsp struct got_object_id *pid, const char *path, struct got_repository *repo,
74 84451b3e 2018-07-10 stsp const struct got_error *(*cb)(void *, int, int, struct got_object_id *),
75 84451b3e 2018-07-10 stsp void *arg)
76 404c43c4 2018-06-21 stsp {
77 404c43c4 2018-06-21 stsp const struct got_error *err = NULL;
78 404c43c4 2018-06-21 stsp struct got_object *obj = NULL, *pobj = NULL;
79 404c43c4 2018-06-21 stsp struct got_blob_object *blob = NULL, *pblob = NULL;
80 404c43c4 2018-06-21 stsp struct got_diff_changes *changes = NULL;
81 404c43c4 2018-06-21 stsp
82 404c43c4 2018-06-21 stsp err = got_object_open_by_path(&obj, repo, id, path);
83 404c43c4 2018-06-21 stsp if (err)
84 404c43c4 2018-06-21 stsp goto done;
85 404c43c4 2018-06-21 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_BLOB) {
86 404c43c4 2018-06-21 stsp err = got_error(GOT_ERR_OBJ_TYPE);
87 404c43c4 2018-06-21 stsp goto done;
88 404c43c4 2018-06-21 stsp }
89 404c43c4 2018-06-21 stsp
90 404c43c4 2018-06-21 stsp err = got_object_open_by_path(&pobj, repo, pid, path);
91 404c43c4 2018-06-21 stsp if (err) {
92 404c43c4 2018-06-21 stsp if (err->code == GOT_ERR_NO_OBJ) {
93 404c43c4 2018-06-21 stsp /* Blob's history began in previous commit. */
94 404c43c4 2018-06-21 stsp err = got_error(GOT_ERR_ITER_COMPLETED);
95 404c43c4 2018-06-21 stsp }
96 404c43c4 2018-06-21 stsp goto done;
97 404c43c4 2018-06-21 stsp }
98 404c43c4 2018-06-21 stsp if (got_object_get_type(pobj) != GOT_OBJ_TYPE_BLOB) {
99 404c43c4 2018-06-21 stsp /*
100 404c43c4 2018-06-21 stsp * Encountered a non-blob at the path (probably a tree).
101 404c43c4 2018-06-21 stsp * Blob's history began in previous commit.
102 404c43c4 2018-06-21 stsp */
103 404c43c4 2018-06-21 stsp err = got_error(GOT_ERR_ITER_COMPLETED);
104 404c43c4 2018-06-21 stsp goto done;
105 404c43c4 2018-06-21 stsp }
106 404c43c4 2018-06-21 stsp
107 404c43c4 2018-06-21 stsp /* If blob hashes match then don't bother with diffing. */
108 404c43c4 2018-06-21 stsp if (got_object_id_cmp(&obj->id, &pobj->id) == 0)
109 404c43c4 2018-06-21 stsp goto done;
110 404c43c4 2018-06-21 stsp
111 404c43c4 2018-06-21 stsp err = got_object_blob_open(&blob, repo, obj, 8192);
112 404c43c4 2018-06-21 stsp if (err)
113 404c43c4 2018-06-21 stsp goto done;
114 404c43c4 2018-06-21 stsp
115 404c43c4 2018-06-21 stsp err = got_object_blob_open(&pblob, repo, pobj, 8192);
116 404c43c4 2018-06-21 stsp if (err)
117 404c43c4 2018-06-21 stsp goto done;
118 404c43c4 2018-06-21 stsp
119 404c43c4 2018-06-21 stsp err = got_diff_blob_lines_changed(&changes, blob, pblob);
120 404c43c4 2018-06-21 stsp if (err)
121 404c43c4 2018-06-21 stsp goto done;
122 404c43c4 2018-06-21 stsp
123 404c43c4 2018-06-21 stsp if (changes) {
124 404c43c4 2018-06-21 stsp struct got_diff_change *change;
125 404c43c4 2018-06-21 stsp SIMPLEQ_FOREACH(change, &changes->entries, entry) {
126 404c43c4 2018-06-21 stsp int a = change->cv.a;
127 404c43c4 2018-06-21 stsp int b = change->cv.b;
128 404c43c4 2018-06-21 stsp int lineno;
129 84451b3e 2018-07-10 stsp for (lineno = a; lineno <= b; lineno++) {
130 84451b3e 2018-07-10 stsp err = annotate_line(blame, lineno, id, cb, arg);
131 84451b3e 2018-07-10 stsp if (err)
132 84451b3e 2018-07-10 stsp goto done;
133 84451b3e 2018-07-10 stsp }
134 404c43c4 2018-06-21 stsp }
135 404c43c4 2018-06-21 stsp }
136 404c43c4 2018-06-21 stsp done:
137 404c43c4 2018-06-21 stsp if (obj)
138 404c43c4 2018-06-21 stsp got_object_close(obj);
139 404c43c4 2018-06-21 stsp if (pobj)
140 404c43c4 2018-06-21 stsp got_object_close(pobj);
141 404c43c4 2018-06-21 stsp if (blob)
142 404c43c4 2018-06-21 stsp got_object_blob_close(blob);
143 404c43c4 2018-06-21 stsp if (pblob)
144 404c43c4 2018-06-21 stsp got_object_blob_close(pblob);
145 404c43c4 2018-06-21 stsp return err;
146 404c43c4 2018-06-21 stsp }
147 404c43c4 2018-06-21 stsp
148 404c43c4 2018-06-21 stsp static void
149 404c43c4 2018-06-21 stsp blame_close(struct got_blame *blame)
150 404c43c4 2018-06-21 stsp {
151 404c43c4 2018-06-21 stsp if (blame->f)
152 404c43c4 2018-06-21 stsp fclose(blame->f);
153 404c43c4 2018-06-21 stsp free(blame->lines);
154 404c43c4 2018-06-21 stsp free(blame);
155 404c43c4 2018-06-21 stsp }
156 404c43c4 2018-06-21 stsp
157 404c43c4 2018-06-21 stsp static const struct got_error *
158 404c43c4 2018-06-21 stsp blame_open(struct got_blame **blamep, const char *path,
159 84451b3e 2018-07-10 stsp struct got_object_id *start_commit_id, struct got_repository *repo,
160 84451b3e 2018-07-10 stsp const struct got_error *(*cb)(void *, int, int, struct got_object_id *),
161 84451b3e 2018-07-10 stsp void *arg)
162 404c43c4 2018-06-21 stsp {
163 404c43c4 2018-06-21 stsp const struct got_error *err = NULL;
164 404c43c4 2018-06-21 stsp struct got_object *obj = NULL;
165 404c43c4 2018-06-21 stsp struct got_blob_object *blob = NULL;
166 404c43c4 2018-06-21 stsp struct got_blame *blame = NULL;
167 404c43c4 2018-06-21 stsp struct got_commit_object *commit = NULL;
168 404c43c4 2018-06-21 stsp struct got_object_id *id = NULL;
169 404c43c4 2018-06-21 stsp int lineno;
170 404c43c4 2018-06-21 stsp
171 404c43c4 2018-06-21 stsp *blamep = NULL;
172 404c43c4 2018-06-21 stsp
173 404c43c4 2018-06-21 stsp err = got_object_open_by_path(&obj, repo, start_commit_id, path);
174 404c43c4 2018-06-21 stsp if (err)
175 404c43c4 2018-06-21 stsp return err;
176 404c43c4 2018-06-21 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_BLOB) {
177 404c43c4 2018-06-21 stsp err = got_error(GOT_ERR_OBJ_TYPE);
178 404c43c4 2018-06-21 stsp goto done;
179 404c43c4 2018-06-21 stsp }
180 404c43c4 2018-06-21 stsp
181 404c43c4 2018-06-21 stsp err = got_object_blob_open(&blob, repo, obj, 8192);
182 404c43c4 2018-06-21 stsp if (err)
183 404c43c4 2018-06-21 stsp goto done;
184 404c43c4 2018-06-21 stsp
185 404c43c4 2018-06-21 stsp blame = calloc(1, sizeof(*blame));
186 404c43c4 2018-06-21 stsp if (blame == NULL)
187 404c43c4 2018-06-21 stsp return got_error_from_errno();
188 404c43c4 2018-06-21 stsp
189 404c43c4 2018-06-21 stsp blame->f = got_opentemp();
190 404c43c4 2018-06-21 stsp if (blame->f == NULL) {
191 404c43c4 2018-06-21 stsp err = got_error_from_errno();
192 404c43c4 2018-06-21 stsp goto done;
193 404c43c4 2018-06-21 stsp }
194 84451b3e 2018-07-10 stsp err = got_object_blob_dump_to_file(NULL, &blame->nlines, blame->f,
195 84451b3e 2018-07-10 stsp blob);
196 404c43c4 2018-06-21 stsp if (err)
197 404c43c4 2018-06-21 stsp goto done;
198 404c43c4 2018-06-21 stsp
199 404c43c4 2018-06-21 stsp blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
200 404c43c4 2018-06-21 stsp if (blame->lines == NULL) {
201 404c43c4 2018-06-21 stsp err = got_error_from_errno();
202 404c43c4 2018-06-21 stsp goto done;
203 404c43c4 2018-06-21 stsp }
204 404c43c4 2018-06-21 stsp
205 404c43c4 2018-06-21 stsp /* Loop over first-parent history and try to blame commits. */
206 404c43c4 2018-06-21 stsp err = got_object_open_as_commit(&commit, repo, start_commit_id);
207 404c43c4 2018-06-21 stsp if (err)
208 404c43c4 2018-06-21 stsp goto done;
209 404c43c4 2018-06-21 stsp id = got_object_id_dup(start_commit_id);
210 404c43c4 2018-06-21 stsp if (id == NULL) {
211 404c43c4 2018-06-21 stsp err = got_error_from_errno();
212 404c43c4 2018-06-21 stsp goto done;
213 404c43c4 2018-06-21 stsp }
214 404c43c4 2018-06-21 stsp while (1) {
215 404c43c4 2018-06-21 stsp struct got_object_qid *pid;
216 404c43c4 2018-06-21 stsp
217 404c43c4 2018-06-21 stsp pid = SIMPLEQ_FIRST(&commit->parent_ids);
218 404c43c4 2018-06-21 stsp if (pid == NULL)
219 404c43c4 2018-06-21 stsp break;
220 404c43c4 2018-06-21 stsp
221 84451b3e 2018-07-10 stsp err = blame_commit(blame, id, pid->id, path, repo, cb, arg);
222 404c43c4 2018-06-21 stsp if (err) {
223 404c43c4 2018-06-21 stsp if (err->code == GOT_ERR_ITER_COMPLETED)
224 404c43c4 2018-06-21 stsp err = NULL;
225 404c43c4 2018-06-21 stsp break;
226 404c43c4 2018-06-21 stsp }
227 ed77f2ae 2018-06-21 stsp
228 404c43c4 2018-06-21 stsp free(id);
229 404c43c4 2018-06-21 stsp id = got_object_id_dup(pid->id);
230 404c43c4 2018-06-21 stsp if (id == NULL) {
231 404c43c4 2018-06-21 stsp err = got_error_from_errno();
232 404c43c4 2018-06-21 stsp goto done;
233 404c43c4 2018-06-21 stsp }
234 ed77f2ae 2018-06-21 stsp got_object_commit_close(commit);
235 ed77f2ae 2018-06-21 stsp err = got_object_open_as_commit(&commit, repo, id);
236 ed77f2ae 2018-06-21 stsp if (err)
237 84451b3e 2018-07-10 stsp goto done;
238 404c43c4 2018-06-21 stsp }
239 404c43c4 2018-06-21 stsp
240 404c43c4 2018-06-21 stsp /* Annotate remaining non-annotated lines with last commit. */
241 84451b3e 2018-07-10 stsp for (lineno = 1; lineno <= blame->nlines; lineno++) {
242 84451b3e 2018-07-10 stsp err = annotate_line(blame, lineno, id, cb, arg);
243 84451b3e 2018-07-10 stsp if (err)
244 84451b3e 2018-07-10 stsp goto done;
245 84451b3e 2018-07-10 stsp }
246 404c43c4 2018-06-21 stsp
247 404c43c4 2018-06-21 stsp done:
248 404c43c4 2018-06-21 stsp free(id);
249 404c43c4 2018-06-21 stsp if (obj)
250 404c43c4 2018-06-21 stsp got_object_close(obj);
251 404c43c4 2018-06-21 stsp if (blob)
252 404c43c4 2018-06-21 stsp got_object_blob_close(blob);
253 404c43c4 2018-06-21 stsp if (commit)
254 404c43c4 2018-06-21 stsp got_object_commit_close(commit);
255 1828273a 2018-07-09 stsp if (err) {
256 1828273a 2018-07-09 stsp if (blame)
257 1828273a 2018-07-09 stsp blame_close(blame);
258 1828273a 2018-07-09 stsp } else
259 404c43c4 2018-06-21 stsp *blamep = blame;
260 404c43c4 2018-06-21 stsp
261 404c43c4 2018-06-21 stsp return err;
262 404c43c4 2018-06-21 stsp }
263 404c43c4 2018-06-21 stsp
264 404c43c4 2018-06-21 stsp static const struct got_error *
265 404c43c4 2018-06-21 stsp blame_line(struct got_object_id **id, struct got_blame *blame, int lineno)
266 404c43c4 2018-06-21 stsp {
267 404c43c4 2018-06-21 stsp if (lineno < 1 || lineno > blame->nlines)
268 404c43c4 2018-06-21 stsp return got_error(GOT_ERR_RANGE);
269 404c43c4 2018-06-21 stsp *id = &blame->lines[lineno - 1].id;
270 404c43c4 2018-06-21 stsp return NULL;
271 404c43c4 2018-06-21 stsp }
272 404c43c4 2018-06-21 stsp
273 404c43c4 2018-06-21 stsp static char *
274 404c43c4 2018-06-21 stsp parse_next_line(FILE *f, size_t *len)
275 404c43c4 2018-06-21 stsp {
276 404c43c4 2018-06-21 stsp char *line;
277 404c43c4 2018-06-21 stsp size_t linelen;
278 404c43c4 2018-06-21 stsp size_t lineno;
279 404c43c4 2018-06-21 stsp const char delim[3] = { '\0', '\0', '\0'};
280 404c43c4 2018-06-21 stsp
281 404c43c4 2018-06-21 stsp line = fparseln(f, &linelen, &lineno, delim, 0);
282 404c43c4 2018-06-21 stsp if (len)
283 404c43c4 2018-06-21 stsp *len = linelen;
284 404c43c4 2018-06-21 stsp return line;
285 404c43c4 2018-06-21 stsp }
286 404c43c4 2018-06-21 stsp
287 404c43c4 2018-06-21 stsp const struct got_error *
288 404c43c4 2018-06-21 stsp got_blame(const char *path, struct got_object_id *start_commit_id,
289 404c43c4 2018-06-21 stsp struct got_repository *repo, FILE *outfile)
290 404c43c4 2018-06-21 stsp {
291 404c43c4 2018-06-21 stsp const struct got_error *err = NULL;
292 404c43c4 2018-06-21 stsp struct got_blame *blame;
293 404c43c4 2018-06-21 stsp int lineno;
294 404c43c4 2018-06-21 stsp char *abspath;
295 404c43c4 2018-06-21 stsp
296 404c43c4 2018-06-21 stsp if (asprintf(&abspath, "%s%s", path[0] == '/' ? "" : "/", path) == -1)
297 404c43c4 2018-06-21 stsp return got_error_from_errno();
298 404c43c4 2018-06-21 stsp
299 84451b3e 2018-07-10 stsp err = blame_open(&blame, abspath, start_commit_id, repo, NULL, NULL);
300 404c43c4 2018-06-21 stsp if (err) {
301 404c43c4 2018-06-21 stsp free(abspath);
302 404c43c4 2018-06-21 stsp return err;
303 404c43c4 2018-06-21 stsp }
304 404c43c4 2018-06-21 stsp
305 dd031dc0 2018-07-04 stsp for (lineno = 1; lineno <= blame->nlines; lineno++) {
306 404c43c4 2018-06-21 stsp struct got_object_id *id;
307 404c43c4 2018-06-21 stsp char *line, *id_str;
308 404c43c4 2018-06-21 stsp
309 404c43c4 2018-06-21 stsp line = parse_next_line(blame->f, NULL);
310 404c43c4 2018-06-21 stsp if (line == NULL)
311 404c43c4 2018-06-21 stsp break;
312 404c43c4 2018-06-21 stsp
313 404c43c4 2018-06-21 stsp err = blame_line(&id, blame, lineno);
314 404c43c4 2018-06-21 stsp if (err)
315 404c43c4 2018-06-21 stsp break;
316 404c43c4 2018-06-21 stsp
317 404c43c4 2018-06-21 stsp err = got_object_id_str(&id_str, id);
318 404c43c4 2018-06-21 stsp if (err) {
319 404c43c4 2018-06-21 stsp free(line);
320 404c43c4 2018-06-21 stsp break;
321 404c43c4 2018-06-21 stsp }
322 404c43c4 2018-06-21 stsp
323 404c43c4 2018-06-21 stsp fprintf(outfile, "%.8s %s\n", id_str, line);
324 404c43c4 2018-06-21 stsp free(line);
325 404c43c4 2018-06-21 stsp free(id_str);
326 404c43c4 2018-06-21 stsp }
327 404c43c4 2018-06-21 stsp
328 404c43c4 2018-06-21 stsp blame_close(blame);
329 404c43c4 2018-06-21 stsp free(abspath);
330 404c43c4 2018-06-21 stsp return err;
331 404c43c4 2018-06-21 stsp }
332 84451b3e 2018-07-10 stsp
333 84451b3e 2018-07-10 stsp const struct got_error *
334 84451b3e 2018-07-10 stsp got_blame_incremental(const char *path, struct got_object_id *commit_id,
335 84451b3e 2018-07-10 stsp struct got_repository *repo,
336 84451b3e 2018-07-10 stsp const struct got_error *(*cb)(void *, int, int, struct got_object_id *),
337 84451b3e 2018-07-10 stsp void *arg)
338 84451b3e 2018-07-10 stsp {
339 84451b3e 2018-07-10 stsp const struct got_error *err = NULL;
340 84451b3e 2018-07-10 stsp struct got_blame *blame;
341 84451b3e 2018-07-10 stsp char *abspath;
342 84451b3e 2018-07-10 stsp
343 84451b3e 2018-07-10 stsp if (asprintf(&abspath, "%s%s", path[0] == '/' ? "" : "/", path) == -1)
344 84451b3e 2018-07-10 stsp return got_error_from_errno();
345 84451b3e 2018-07-10 stsp
346 84451b3e 2018-07-10 stsp err = blame_open(&blame, abspath, commit_id, repo, cb, arg);
347 84451b3e 2018-07-10 stsp free(abspath);
348 84451b3e 2018-07-10 stsp blame_close(blame);
349 84451b3e 2018-07-10 stsp return err;
350 84451b3e 2018-07-10 stsp }