Blame


1 8a35f56c 2022-07-16 thomas /*
2 8a35f56c 2022-07-16 thomas * Copyright (c) 2020-2022 Tracey Emery <tracey@traceyemery.net>
3 8a35f56c 2022-07-16 thomas * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
4 8a35f56c 2022-07-16 thomas *
5 8a35f56c 2022-07-16 thomas * Permission to use, copy, modify, and distribute this software for any
6 8a35f56c 2022-07-16 thomas * purpose with or without fee is hereby granted, provided that the above
7 8a35f56c 2022-07-16 thomas * copyright notice and this permission notice appear in all copies.
8 8a35f56c 2022-07-16 thomas *
9 8a35f56c 2022-07-16 thomas * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 8a35f56c 2022-07-16 thomas * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 8a35f56c 2022-07-16 thomas * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 8a35f56c 2022-07-16 thomas * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 8a35f56c 2022-07-16 thomas * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 8a35f56c 2022-07-16 thomas * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 8a35f56c 2022-07-16 thomas * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 8a35f56c 2022-07-16 thomas */
17 8a35f56c 2022-07-16 thomas
18 3e12c168 2022-07-16 thomas #include <sys/queue.h>
19 8a35f56c 2022-07-16 thomas #include <sys/socket.h>
20 8a35f56c 2022-07-16 thomas #include <sys/stat.h>
21 8a35f56c 2022-07-16 thomas
22 8a35f56c 2022-07-16 thomas #include <event.h>
23 588a8092 2023-02-23 thomas #include <imsg.h>
24 588a8092 2023-02-23 thomas #include <sha2.h>
25 8a35f56c 2022-07-16 thomas #include <stdlib.h>
26 8a35f56c 2022-07-16 thomas #include <stdio.h>
27 8a35f56c 2022-07-16 thomas #include <string.h>
28 8a35f56c 2022-07-16 thomas #include <unistd.h>
29 8a35f56c 2022-07-16 thomas
30 8a35f56c 2022-07-16 thomas #include "got_error.h"
31 8a35f56c 2022-07-16 thomas #include "got_object.h"
32 8a35f56c 2022-07-16 thomas #include "got_reference.h"
33 8a35f56c 2022-07-16 thomas #include "got_repository.h"
34 8a35f56c 2022-07-16 thomas #include "got_path.h"
35 8a35f56c 2022-07-16 thomas #include "got_cancel.h"
36 8a35f56c 2022-07-16 thomas #include "got_diff.h"
37 8a35f56c 2022-07-16 thomas #include "got_commit_graph.h"
38 8a35f56c 2022-07-16 thomas #include "got_blame.h"
39 8a35f56c 2022-07-16 thomas #include "got_privsep.h"
40 ff36aeea 2022-07-16 thomas
41 ff36aeea 2022-07-16 thomas #include "got_compat.h"
42 8a35f56c 2022-07-16 thomas
43 8a35f56c 2022-07-16 thomas #include "proc.h"
44 8a35f56c 2022-07-16 thomas #include "gotwebd.h"
45 8a35f56c 2022-07-16 thomas
46 8a35f56c 2022-07-16 thomas static const struct got_error *got_init_repo_commit(struct repo_commit **);
47 8a35f56c 2022-07-16 thomas static const struct got_error *got_init_repo_tag(struct repo_tag **);
48 8a35f56c 2022-07-16 thomas static const struct got_error *got_get_repo_commit(struct request *,
49 8a35f56c 2022-07-16 thomas struct repo_commit *, struct got_commit_object *, struct got_reflist_head *,
50 8a35f56c 2022-07-16 thomas struct got_object_id *);
51 8a35f56c 2022-07-16 thomas static const struct got_error *got_gotweb_dupfd(int *, int *);
52 8a35f56c 2022-07-16 thomas static const struct got_error *got_gotweb_openfile(FILE **, int *, int *);
53 8a35f56c 2022-07-16 thomas static const struct got_error *got_gotweb_blame_cb(void *, int, int,
54 8a35f56c 2022-07-16 thomas struct got_commit_object *,struct got_object_id *);
55 8a35f56c 2022-07-16 thomas
56 dccd05b4 2023-01-10 thomas const struct got_error *
57 8a35f56c 2022-07-16 thomas got_gotweb_flushfile(FILE *f, int fd)
58 8a35f56c 2022-07-16 thomas {
59 8a35f56c 2022-07-16 thomas if (fseek(f, 0, SEEK_SET) == -1)
60 8a35f56c 2022-07-16 thomas return got_error_from_errno("fseek");
61 8a35f56c 2022-07-16 thomas
62 8a35f56c 2022-07-16 thomas if (ftruncate(fd, 0) == -1)
63 8a35f56c 2022-07-16 thomas return got_error_from_errno("ftruncate");
64 8a35f56c 2022-07-16 thomas
65 8a35f56c 2022-07-16 thomas if (fsync(fd) == -1)
66 8a35f56c 2022-07-16 thomas return got_error_from_errno("fsync");
67 8a35f56c 2022-07-16 thomas
68 8a35f56c 2022-07-16 thomas if (f && fclose(f) == EOF)
69 8a35f56c 2022-07-16 thomas return got_error_from_errno("fclose");
70 8a35f56c 2022-07-16 thomas
71 8a35f56c 2022-07-16 thomas if (fd != -1 && close(fd) != -1)
72 8a35f56c 2022-07-16 thomas return got_error_from_errno("close");
73 8a35f56c 2022-07-16 thomas
74 8a35f56c 2022-07-16 thomas return NULL;
75 8a35f56c 2022-07-16 thomas }
76 8a35f56c 2022-07-16 thomas
77 8a35f56c 2022-07-16 thomas static const struct got_error *
78 8a35f56c 2022-07-16 thomas got_gotweb_openfile(FILE **f, int *priv_fd, int *fd)
79 8a35f56c 2022-07-16 thomas {
80 8a35f56c 2022-07-16 thomas *fd = dup(*priv_fd);
81 6e596ed0 2022-08-31 thomas if (*fd == -1)
82 6e596ed0 2022-08-31 thomas return got_error_from_errno("dup");
83 8a35f56c 2022-07-16 thomas
84 8a35f56c 2022-07-16 thomas *f = fdopen(*fd, "w+");
85 8a35f56c 2022-07-16 thomas if (*f == NULL) {
86 8a35f56c 2022-07-16 thomas close(*fd);
87 e2af4cd7 2022-08-31 thomas return got_error(GOT_ERR_PRIVSEP_NO_FD);
88 8a35f56c 2022-07-16 thomas }
89 8a35f56c 2022-07-16 thomas
90 e2af4cd7 2022-08-31 thomas return NULL;
91 8a35f56c 2022-07-16 thomas }
92 8a35f56c 2022-07-16 thomas
93 8a35f56c 2022-07-16 thomas static const struct got_error *
94 8a35f56c 2022-07-16 thomas got_gotweb_dupfd(int *priv_fd, int *fd)
95 8a35f56c 2022-07-16 thomas {
96 8a35f56c 2022-07-16 thomas *fd = dup(*priv_fd);
97 8a35f56c 2022-07-16 thomas
98 a66a4a50 2023-02-03 thomas if (*fd == -1)
99 a66a4a50 2023-02-03 thomas return got_error_from_errno("dup");
100 8a35f56c 2022-07-16 thomas
101 e2af4cd7 2022-08-31 thomas return NULL;
102 8a35f56c 2022-07-16 thomas }
103 8a35f56c 2022-07-16 thomas
104 8a35f56c 2022-07-16 thomas const struct got_error *
105 6c7f10f7 2022-11-23 thomas got_get_repo_owner(char **owner, struct request *c)
106 8a35f56c 2022-07-16 thomas {
107 8a35f56c 2022-07-16 thomas struct server *srv = c->srv;
108 8a35f56c 2022-07-16 thomas struct transport *t = c->t;
109 8a35f56c 2022-07-16 thomas struct got_repository *repo = t->repo;
110 8a35f56c 2022-07-16 thomas const char *gitconfig_owner;
111 8a35f56c 2022-07-16 thomas
112 8a35f56c 2022-07-16 thomas *owner = NULL;
113 8a35f56c 2022-07-16 thomas
114 8a35f56c 2022-07-16 thomas if (srv->show_repo_owner == 0)
115 8a35f56c 2022-07-16 thomas return NULL;
116 8a35f56c 2022-07-16 thomas
117 8a35f56c 2022-07-16 thomas gitconfig_owner = got_repo_get_gitconfig_owner(repo);
118 8a35f56c 2022-07-16 thomas if (gitconfig_owner) {
119 8a35f56c 2022-07-16 thomas *owner = strdup(gitconfig_owner);
120 2f26d334 2022-08-30 thomas if (*owner == NULL)
121 2f26d334 2022-08-30 thomas return got_error_from_errno("strdup");
122 2f26d334 2022-08-30 thomas } else {
123 2f26d334 2022-08-30 thomas *owner = strdup("");
124 8a35f56c 2022-07-16 thomas if (*owner == NULL)
125 8a35f56c 2022-07-16 thomas return got_error_from_errno("strdup");
126 8a35f56c 2022-07-16 thomas }
127 e2af4cd7 2022-08-31 thomas return NULL;
128 8a35f56c 2022-07-16 thomas }
129 8a35f56c 2022-07-16 thomas
130 8a35f56c 2022-07-16 thomas const struct got_error *
131 53bf32b8 2023-01-23 thomas got_get_repo_age(time_t *repo_age, struct request *c, const char *refname)
132 8a35f56c 2022-07-16 thomas {
133 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
134 8a35f56c 2022-07-16 thomas struct server *srv = c->srv;
135 8a35f56c 2022-07-16 thomas struct transport *t = c->t;
136 8a35f56c 2022-07-16 thomas struct got_repository *repo = t->repo;
137 8a35f56c 2022-07-16 thomas struct got_commit_object *commit = NULL;
138 8a35f56c 2022-07-16 thomas struct got_reflist_head refs;
139 8a35f56c 2022-07-16 thomas struct got_reflist_entry *re;
140 8a35f56c 2022-07-16 thomas time_t committer_time = 0, cmp_time = 0;
141 8a35f56c 2022-07-16 thomas
142 8a35f56c 2022-07-16 thomas TAILQ_INIT(&refs);
143 8a35f56c 2022-07-16 thomas
144 8a35f56c 2022-07-16 thomas if (srv->show_repo_age == 0)
145 8a35f56c 2022-07-16 thomas return NULL;
146 8a35f56c 2022-07-16 thomas
147 8a35f56c 2022-07-16 thomas error = got_ref_list(&refs, repo, "refs/heads",
148 8a35f56c 2022-07-16 thomas got_ref_cmp_by_name, NULL);
149 8a35f56c 2022-07-16 thomas if (error)
150 8a35f56c 2022-07-16 thomas goto done;
151 8a35f56c 2022-07-16 thomas
152 8a35f56c 2022-07-16 thomas /*
153 8a35f56c 2022-07-16 thomas * Find the youngest branch tip in the repository, or the age of
154 8a35f56c 2022-07-16 thomas * the a specific branch tip if a name was provided by the caller.
155 8a35f56c 2022-07-16 thomas */
156 8a35f56c 2022-07-16 thomas TAILQ_FOREACH(re, &refs, entry) {
157 8a35f56c 2022-07-16 thomas struct got_object_id *id = NULL;
158 8a35f56c 2022-07-16 thomas
159 8a35f56c 2022-07-16 thomas if (refname && strcmp(got_ref_get_name(re->ref), refname) != 0)
160 8a35f56c 2022-07-16 thomas continue;
161 8a35f56c 2022-07-16 thomas
162 8a35f56c 2022-07-16 thomas error = got_ref_resolve(&id, repo, re->ref);
163 8a35f56c 2022-07-16 thomas if (error)
164 8a35f56c 2022-07-16 thomas goto done;
165 8a35f56c 2022-07-16 thomas
166 8a35f56c 2022-07-16 thomas error = got_object_open_as_commit(&commit, repo, id);
167 8a35f56c 2022-07-16 thomas free(id);
168 8a35f56c 2022-07-16 thomas if (error)
169 8a35f56c 2022-07-16 thomas goto done;
170 8a35f56c 2022-07-16 thomas
171 8a35f56c 2022-07-16 thomas committer_time =
172 8a35f56c 2022-07-16 thomas got_object_commit_get_committer_time(commit);
173 8a35f56c 2022-07-16 thomas got_object_commit_close(commit);
174 8a35f56c 2022-07-16 thomas if (cmp_time < committer_time)
175 8a35f56c 2022-07-16 thomas cmp_time = committer_time;
176 8a35f56c 2022-07-16 thomas
177 8a35f56c 2022-07-16 thomas if (refname)
178 8a35f56c 2022-07-16 thomas break;
179 8a35f56c 2022-07-16 thomas }
180 8a35f56c 2022-07-16 thomas
181 53bf32b8 2023-01-23 thomas if (cmp_time != 0)
182 53bf32b8 2023-01-23 thomas *repo_age = cmp_time;
183 8a35f56c 2022-07-16 thomas done:
184 8a35f56c 2022-07-16 thomas got_ref_list_free(&refs);
185 8a35f56c 2022-07-16 thomas return error;
186 8a35f56c 2022-07-16 thomas }
187 8a35f56c 2022-07-16 thomas
188 8a35f56c 2022-07-16 thomas static const struct got_error *
189 8a35f56c 2022-07-16 thomas got_get_repo_commit(struct request *c, struct repo_commit *repo_commit,
190 8a35f56c 2022-07-16 thomas struct got_commit_object *commit, struct got_reflist_head *refs,
191 8a35f56c 2022-07-16 thomas struct got_object_id *id)
192 8a35f56c 2022-07-16 thomas {
193 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
194 8a35f56c 2022-07-16 thomas struct got_reflist_entry *re;
195 8a35f56c 2022-07-16 thomas struct got_object_id *id2 = NULL;
196 8a35f56c 2022-07-16 thomas struct got_object_qid *parent_id;
197 8a35f56c 2022-07-16 thomas struct transport *t = c->t;
198 8a35f56c 2022-07-16 thomas struct querystring *qs = c->t->qs;
199 8a35f56c 2022-07-16 thomas char *commit_msg = NULL, *commit_msg0;
200 8a35f56c 2022-07-16 thomas
201 8a35f56c 2022-07-16 thomas TAILQ_FOREACH(re, refs, entry) {
202 8a35f56c 2022-07-16 thomas char *s;
203 8a35f56c 2022-07-16 thomas const char *name;
204 8a35f56c 2022-07-16 thomas struct got_tag_object *tag = NULL;
205 8a35f56c 2022-07-16 thomas struct got_object_id *ref_id;
206 8a35f56c 2022-07-16 thomas int cmp;
207 8a35f56c 2022-07-16 thomas
208 8a35f56c 2022-07-16 thomas if (got_ref_is_symbolic(re->ref))
209 8a35f56c 2022-07-16 thomas continue;
210 8a35f56c 2022-07-16 thomas
211 8a35f56c 2022-07-16 thomas name = got_ref_get_name(re->ref);
212 8a35f56c 2022-07-16 thomas if (strncmp(name, "refs/", 5) == 0)
213 8a35f56c 2022-07-16 thomas name += 5;
214 8a35f56c 2022-07-16 thomas if (strncmp(name, "got/", 4) == 0)
215 8a35f56c 2022-07-16 thomas continue;
216 8a35f56c 2022-07-16 thomas if (strncmp(name, "heads/", 6) == 0)
217 8a35f56c 2022-07-16 thomas name += 6;
218 8a35f56c 2022-07-16 thomas if (strncmp(name, "remotes/", 8) == 0) {
219 8a35f56c 2022-07-16 thomas name += 8;
220 6b42af1e 2022-09-02 thomas if (strstr(name, "/" GOT_REF_HEAD) != NULL)
221 8a35f56c 2022-07-16 thomas continue;
222 8a35f56c 2022-07-16 thomas }
223 8a35f56c 2022-07-16 thomas error = got_ref_resolve(&ref_id, t->repo, re->ref);
224 8a35f56c 2022-07-16 thomas if (error)
225 8a35f56c 2022-07-16 thomas return error;
226 8a35f56c 2022-07-16 thomas if (strncmp(name, "tags/", 5) == 0) {
227 8a35f56c 2022-07-16 thomas error = got_object_open_as_tag(&tag, t->repo, ref_id);
228 8a35f56c 2022-07-16 thomas if (error) {
229 8a35f56c 2022-07-16 thomas if (error->code != GOT_ERR_OBJ_TYPE) {
230 8a35f56c 2022-07-16 thomas free(ref_id);
231 8a35f56c 2022-07-16 thomas continue;
232 8a35f56c 2022-07-16 thomas }
233 8a35f56c 2022-07-16 thomas /*
234 8a35f56c 2022-07-16 thomas * Ref points at something other
235 8a35f56c 2022-07-16 thomas * than a tag.
236 8a35f56c 2022-07-16 thomas */
237 8a35f56c 2022-07-16 thomas error = NULL;
238 8a35f56c 2022-07-16 thomas tag = NULL;
239 8a35f56c 2022-07-16 thomas }
240 8a35f56c 2022-07-16 thomas }
241 8a35f56c 2022-07-16 thomas cmp = got_object_id_cmp(tag ?
242 8a35f56c 2022-07-16 thomas got_object_tag_get_object_id(tag) : ref_id, id);
243 8a35f56c 2022-07-16 thomas free(ref_id);
244 8a35f56c 2022-07-16 thomas if (tag)
245 8a35f56c 2022-07-16 thomas got_object_tag_close(tag);
246 8a35f56c 2022-07-16 thomas if (cmp != 0)
247 8a35f56c 2022-07-16 thomas continue;
248 8a35f56c 2022-07-16 thomas s = repo_commit->refs_str;
249 8a35f56c 2022-07-16 thomas if (asprintf(&repo_commit->refs_str, "%s%s%s", s ? s : "",
250 8a35f56c 2022-07-16 thomas s ? ", " : "", name) == -1) {
251 8a35f56c 2022-07-16 thomas error = got_error_from_errno("asprintf");
252 8a35f56c 2022-07-16 thomas free(s);
253 8a35f56c 2022-07-16 thomas repo_commit->refs_str = NULL;
254 8a35f56c 2022-07-16 thomas return error;
255 8a35f56c 2022-07-16 thomas }
256 8a35f56c 2022-07-16 thomas free(s);
257 8a35f56c 2022-07-16 thomas }
258 8a35f56c 2022-07-16 thomas
259 8a35f56c 2022-07-16 thomas error = got_object_id_str(&repo_commit->commit_id, id);
260 8a35f56c 2022-07-16 thomas if (error)
261 8a35f56c 2022-07-16 thomas return error;
262 8a35f56c 2022-07-16 thomas
263 8a35f56c 2022-07-16 thomas error = got_object_id_str(&repo_commit->tree_id,
264 8a35f56c 2022-07-16 thomas got_object_commit_get_tree_id(commit));
265 8a35f56c 2022-07-16 thomas if (error)
266 8a35f56c 2022-07-16 thomas return error;
267 8a35f56c 2022-07-16 thomas
268 8a35f56c 2022-07-16 thomas if (qs->action == DIFF) {
269 8a35f56c 2022-07-16 thomas parent_id = STAILQ_FIRST(
270 8a35f56c 2022-07-16 thomas got_object_commit_get_parent_ids(commit));
271 8a35f56c 2022-07-16 thomas if (parent_id != NULL) {
272 8a35f56c 2022-07-16 thomas id2 = got_object_id_dup(&parent_id->id);
273 8a35f56c 2022-07-16 thomas error = got_object_id_str(&repo_commit->parent_id, id2);
274 8a35f56c 2022-07-16 thomas if (error)
275 8a35f56c 2022-07-16 thomas return error;
276 8a35f56c 2022-07-16 thomas free(id2);
277 8a35f56c 2022-07-16 thomas } else {
278 8a35f56c 2022-07-16 thomas repo_commit->parent_id = strdup("/dev/null");
279 8a35f56c 2022-07-16 thomas if (repo_commit->parent_id == NULL) {
280 8a35f56c 2022-07-16 thomas error = got_error_from_errno("strdup");
281 8a35f56c 2022-07-16 thomas return error;
282 8a35f56c 2022-07-16 thomas }
283 8a35f56c 2022-07-16 thomas }
284 8a35f56c 2022-07-16 thomas }
285 8a35f56c 2022-07-16 thomas
286 8a35f56c 2022-07-16 thomas repo_commit->committer_time =
287 8a35f56c 2022-07-16 thomas got_object_commit_get_committer_time(commit);
288 8a35f56c 2022-07-16 thomas
289 8a35f56c 2022-07-16 thomas repo_commit->author =
290 8a35f56c 2022-07-16 thomas strdup(got_object_commit_get_author(commit));
291 8a35f56c 2022-07-16 thomas if (repo_commit->author == NULL) {
292 8a35f56c 2022-07-16 thomas error = got_error_from_errno("strdup");
293 8a35f56c 2022-07-16 thomas return error;
294 8a35f56c 2022-07-16 thomas }
295 8a35f56c 2022-07-16 thomas repo_commit->committer =
296 8a35f56c 2022-07-16 thomas strdup(got_object_commit_get_committer(commit));
297 8a35f56c 2022-07-16 thomas if (repo_commit->committer == NULL) {
298 8a35f56c 2022-07-16 thomas error = got_error_from_errno("strdup");
299 8a35f56c 2022-07-16 thomas return error;
300 8a35f56c 2022-07-16 thomas }
301 8a35f56c 2022-07-16 thomas error = got_object_commit_get_logmsg(&commit_msg0, commit);
302 8a35f56c 2022-07-16 thomas if (error)
303 8a35f56c 2022-07-16 thomas return error;
304 8a35f56c 2022-07-16 thomas
305 8a35f56c 2022-07-16 thomas commit_msg = commit_msg0;
306 8a35f56c 2022-07-16 thomas while (*commit_msg == '\n')
307 8a35f56c 2022-07-16 thomas commit_msg++;
308 8a35f56c 2022-07-16 thomas
309 8a35f56c 2022-07-16 thomas repo_commit->commit_msg = strdup(commit_msg);
310 8a35f56c 2022-07-16 thomas if (repo_commit->commit_msg == NULL)
311 8a35f56c 2022-07-16 thomas error = got_error_from_errno("strdup");
312 8a35f56c 2022-07-16 thomas free(commit_msg0);
313 8a35f56c 2022-07-16 thomas return error;
314 8a35f56c 2022-07-16 thomas }
315 8a35f56c 2022-07-16 thomas
316 8a35f56c 2022-07-16 thomas const struct got_error *
317 8a35f56c 2022-07-16 thomas got_get_repo_commits(struct request *c, int limit)
318 8a35f56c 2022-07-16 thomas {
319 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
320 8a35f56c 2022-07-16 thomas struct got_object_id *id = NULL;
321 8a35f56c 2022-07-16 thomas struct got_commit_graph *graph = NULL;
322 8a35f56c 2022-07-16 thomas struct got_commit_object *commit = NULL;
323 8a35f56c 2022-07-16 thomas struct got_reflist_head refs;
324 4d0573ec 2022-09-02 thomas struct got_reference *ref = NULL;
325 8a35f56c 2022-07-16 thomas struct repo_commit *repo_commit = NULL;
326 8a35f56c 2022-07-16 thomas struct server *srv = c->srv;
327 8a35f56c 2022-07-16 thomas struct transport *t = c->t;
328 8a35f56c 2022-07-16 thomas struct got_repository *repo = t->repo;
329 8a35f56c 2022-07-16 thomas struct querystring *qs = t->qs;
330 8a35f56c 2022-07-16 thomas struct repo_dir *repo_dir = t->repo_dir;
331 8a35f56c 2022-07-16 thomas char *in_repo_path = NULL, *repo_path = NULL, *file_path = NULL;
332 42814e01 2023-01-23 thomas int chk_next = 0, chk_multi = 0;
333 8a35f56c 2022-07-16 thomas
334 8a35f56c 2022-07-16 thomas TAILQ_INIT(&refs);
335 8a35f56c 2022-07-16 thomas
336 8a35f56c 2022-07-16 thomas if (qs->file != NULL && strlen(qs->file) > 0)
337 8a35f56c 2022-07-16 thomas if (asprintf(&file_path, "%s/%s", qs->folder ? qs->folder : "",
338 8a35f56c 2022-07-16 thomas qs->file) == -1)
339 8a35f56c 2022-07-16 thomas return got_error_from_errno("asprintf");
340 8a35f56c 2022-07-16 thomas
341 8a35f56c 2022-07-16 thomas if (asprintf(&repo_path, "%s/%s", srv->repos_path,
342 31797419 2022-09-02 thomas repo_dir->name) == -1) {
343 31797419 2022-09-02 thomas error = got_error_from_errno("asprintf");
344 31797419 2022-09-02 thomas goto done;
345 31797419 2022-09-02 thomas }
346 8a35f56c 2022-07-16 thomas
347 42814e01 2023-01-23 thomas if (qs->commit) {
348 42814e01 2023-01-23 thomas error = got_repo_match_object_id_prefix(&id, qs->commit,
349 42814e01 2023-01-23 thomas GOT_OBJ_TYPE_COMMIT, repo);
350 42814e01 2023-01-23 thomas if (error)
351 42814e01 2023-01-23 thomas goto done;
352 42814e01 2023-01-23 thomas } else {
353 8a35f56c 2022-07-16 thomas error = got_ref_open(&ref, repo, qs->headref, 0);
354 8a35f56c 2022-07-16 thomas if (error)
355 8a35f56c 2022-07-16 thomas goto done;
356 8a35f56c 2022-07-16 thomas
357 8a35f56c 2022-07-16 thomas error = got_ref_resolve(&id, repo, ref);
358 8a35f56c 2022-07-16 thomas if (error)
359 8a35f56c 2022-07-16 thomas goto done;
360 8a35f56c 2022-07-16 thomas }
361 8a35f56c 2022-07-16 thomas
362 8a35f56c 2022-07-16 thomas error = got_repo_map_path(&in_repo_path, repo, repo_path);
363 8a35f56c 2022-07-16 thomas if (error)
364 8a35f56c 2022-07-16 thomas goto done;
365 8a35f56c 2022-07-16 thomas
366 8a35f56c 2022-07-16 thomas error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
367 8a35f56c 2022-07-16 thomas if (error)
368 8a35f56c 2022-07-16 thomas goto done;
369 8a35f56c 2022-07-16 thomas
370 8a35f56c 2022-07-16 thomas if (qs->file != NULL && strlen(qs->file) > 0) {
371 8a35f56c 2022-07-16 thomas error = got_commit_graph_open(&graph, file_path, 0);
372 8a35f56c 2022-07-16 thomas if (error)
373 8a35f56c 2022-07-16 thomas goto done;
374 8a35f56c 2022-07-16 thomas } else {
375 8a35f56c 2022-07-16 thomas error = got_commit_graph_open(&graph, in_repo_path, 0);
376 8a35f56c 2022-07-16 thomas if (error)
377 8a35f56c 2022-07-16 thomas goto done;
378 8a35f56c 2022-07-16 thomas }
379 8a35f56c 2022-07-16 thomas
380 8a35f56c 2022-07-16 thomas error = got_commit_graph_iter_start(graph, id, repo, NULL, NULL);
381 8a35f56c 2022-07-16 thomas if (error)
382 8a35f56c 2022-07-16 thomas goto done;
383 8a35f56c 2022-07-16 thomas
384 8a35f56c 2022-07-16 thomas for (;;) {
385 7210b715 2022-09-11 thomas struct got_object_id next_id;
386 95326260 2022-09-05 thomas
387 95326260 2022-09-05 thomas error = got_commit_graph_iter_next(&next_id, graph, repo, NULL,
388 8a35f56c 2022-07-16 thomas NULL);
389 8a35f56c 2022-07-16 thomas if (error) {
390 8a35f56c 2022-07-16 thomas if (error->code == GOT_ERR_ITER_COMPLETED)
391 8a35f56c 2022-07-16 thomas error = NULL;
392 8a35f56c 2022-07-16 thomas goto done;
393 95326260 2022-09-05 thomas }
394 8a35f56c 2022-07-16 thomas
395 7210b715 2022-09-11 thomas error = got_object_open_as_commit(&commit, repo, &next_id);
396 8a35f56c 2022-07-16 thomas if (error)
397 8a35f56c 2022-07-16 thomas goto done;
398 8a35f56c 2022-07-16 thomas
399 df9fed09 2022-09-02 thomas error = got_init_repo_commit(&repo_commit);
400 df9fed09 2022-09-02 thomas if (error)
401 df9fed09 2022-09-02 thomas goto done;
402 df9fed09 2022-09-02 thomas
403 8a35f56c 2022-07-16 thomas error = got_get_repo_commit(c, repo_commit, commit,
404 7210b715 2022-09-11 thomas &refs, &next_id);
405 349f6f39 2022-09-07 thomas if (error) {
406 349f6f39 2022-09-07 thomas gotweb_free_repo_commit(repo_commit);
407 8a35f56c 2022-07-16 thomas goto done;
408 349f6f39 2022-09-07 thomas }
409 349f6f39 2022-09-07 thomas
410 349f6f39 2022-09-07 thomas TAILQ_INSERT_TAIL(&t->repo_commits, repo_commit, entry);
411 349f6f39 2022-09-07 thomas
412 42814e01 2023-01-23 thomas if (!chk_multi || limit != 1 ||
413 42814e01 2023-01-23 thomas srv->max_commits_display == 1) {
414 8a35f56c 2022-07-16 thomas chk_multi = 1;
415 8a35f56c 2022-07-16 thomas
416 8a35f56c 2022-07-16 thomas /*
417 8a35f56c 2022-07-16 thomas * check for one more commit before breaking,
418 8a35f56c 2022-07-16 thomas * so we know whether to navigate through briefs
419 8a35f56c 2022-07-16 thomas * commits and summary
420 8a35f56c 2022-07-16 thomas */
421 8a35f56c 2022-07-16 thomas if (chk_next && (qs->action == BRIEFS ||
422 8a35f56c 2022-07-16 thomas qs->action == COMMITS || qs->action == SUMMARY)) {
423 20bab626 2023-02-03 thomas t->more_id = strdup(repo_commit->commit_id);
424 20bab626 2023-02-03 thomas if (t->more_id == NULL) {
425 8a35f56c 2022-07-16 thomas error = got_error_from_errno("strdup");
426 8a35f56c 2022-07-16 thomas goto done;
427 8a35f56c 2022-07-16 thomas }
428 ddcb4a8e 2023-02-03 thomas got_object_commit_close(commit);
429 ddcb4a8e 2023-02-03 thomas commit = NULL;
430 df9fed09 2022-09-02 thomas TAILQ_REMOVE(&t->repo_commits, repo_commit,
431 8a35f56c 2022-07-16 thomas entry);
432 df9fed09 2022-09-02 thomas gotweb_free_repo_commit(repo_commit);
433 8a35f56c 2022-07-16 thomas goto done;
434 8a35f56c 2022-07-16 thomas }
435 8a35f56c 2022-07-16 thomas }
436 8a35f56c 2022-07-16 thomas if (error || (limit && --limit == 0)) {
437 42814e01 2023-01-23 thomas if (qs->file != NULL && *qs->file != '\0')
438 8a35f56c 2022-07-16 thomas if (chk_multi == 0)
439 8a35f56c 2022-07-16 thomas break;
440 8a35f56c 2022-07-16 thomas chk_next = 1;
441 8a35f56c 2022-07-16 thomas }
442 8a35f56c 2022-07-16 thomas if (commit) {
443 8a35f56c 2022-07-16 thomas got_object_commit_close(commit);
444 8a35f56c 2022-07-16 thomas commit = NULL;
445 8a35f56c 2022-07-16 thomas }
446 8a35f56c 2022-07-16 thomas }
447 8a35f56c 2022-07-16 thomas done:
448 4d0573ec 2022-09-02 thomas if (ref)
449 4d0573ec 2022-09-02 thomas got_ref_close(ref);
450 8a35f56c 2022-07-16 thomas if (commit)
451 8a35f56c 2022-07-16 thomas got_object_commit_close(commit);
452 8a35f56c 2022-07-16 thomas if (graph)
453 8a35f56c 2022-07-16 thomas got_commit_graph_close(graph);
454 8a35f56c 2022-07-16 thomas got_ref_list_free(&refs);
455 bc4d9cc8 2022-09-02 thomas free(in_repo_path);
456 8a35f56c 2022-07-16 thomas free(file_path);
457 8a35f56c 2022-07-16 thomas free(repo_path);
458 8a35f56c 2022-07-16 thomas free(id);
459 8a35f56c 2022-07-16 thomas return error;
460 8a35f56c 2022-07-16 thomas }
461 8a35f56c 2022-07-16 thomas
462 8a35f56c 2022-07-16 thomas const struct got_error *
463 8a35f56c 2022-07-16 thomas got_get_repo_tags(struct request *c, int limit)
464 8a35f56c 2022-07-16 thomas {
465 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
466 8a35f56c 2022-07-16 thomas struct got_object_id *id = NULL;
467 8a35f56c 2022-07-16 thomas struct got_commit_object *commit = NULL;
468 8a35f56c 2022-07-16 thomas struct got_reflist_head refs;
469 8a35f56c 2022-07-16 thomas struct got_reference *ref;
470 8a35f56c 2022-07-16 thomas struct got_reflist_entry *re;
471 8a35f56c 2022-07-16 thomas struct server *srv = c->srv;
472 8a35f56c 2022-07-16 thomas struct transport *t = c->t;
473 8a35f56c 2022-07-16 thomas struct got_repository *repo = t->repo;
474 8a35f56c 2022-07-16 thomas struct querystring *qs = t->qs;
475 8a35f56c 2022-07-16 thomas struct repo_dir *repo_dir = t->repo_dir;
476 8a35f56c 2022-07-16 thomas struct got_tag_object *tag = NULL;
477 8a35f56c 2022-07-16 thomas struct repo_tag *rt = NULL, *trt = NULL;
478 8a35f56c 2022-07-16 thomas char *in_repo_path = NULL, *repo_path = NULL, *id_str = NULL;
479 217813df 2022-09-02 thomas char *tag_commit = NULL, *tag_commit0 = NULL;
480 8a35f56c 2022-07-16 thomas char *commit_msg = NULL, *commit_msg0 = NULL;
481 8a35f56c 2022-07-16 thomas int chk_next = 0, chk_multi = 1, commit_found = 0, c_cnt = 0;
482 8a35f56c 2022-07-16 thomas
483 8a35f56c 2022-07-16 thomas TAILQ_INIT(&refs);
484 8a35f56c 2022-07-16 thomas
485 8a35f56c 2022-07-16 thomas if (asprintf(&repo_path, "%s/%s", srv->repos_path,
486 8a35f56c 2022-07-16 thomas repo_dir->name) == -1)
487 8a35f56c 2022-07-16 thomas return got_error_from_errno("asprintf");
488 8a35f56c 2022-07-16 thomas
489 d6795e9f 2022-12-30 thomas if (qs->commit == NULL && (qs->action == TAGS || qs->action == RSS)) {
490 8a35f56c 2022-07-16 thomas error = got_ref_open(&ref, repo, qs->headref, 0);
491 8a35f56c 2022-07-16 thomas if (error)
492 8a35f56c 2022-07-16 thomas goto err;
493 8a35f56c 2022-07-16 thomas error = got_ref_resolve(&id, repo, ref);
494 8a35f56c 2022-07-16 thomas got_ref_close(ref);
495 8a35f56c 2022-07-16 thomas if (error)
496 8a35f56c 2022-07-16 thomas goto err;
497 8a35f56c 2022-07-16 thomas } else if (qs->commit == NULL && qs->action == TAG) {
498 8a35f56c 2022-07-16 thomas error = got_error_msg(GOT_ERR_EOF, "commit id missing");
499 8a35f56c 2022-07-16 thomas goto err;
500 8a35f56c 2022-07-16 thomas } else {
501 8a35f56c 2022-07-16 thomas error = got_repo_match_object_id_prefix(&id, qs->commit,
502 8a35f56c 2022-07-16 thomas GOT_OBJ_TYPE_COMMIT, repo);
503 8a35f56c 2022-07-16 thomas if (error)
504 8a35f56c 2022-07-16 thomas goto err;
505 8a35f56c 2022-07-16 thomas }
506 8a35f56c 2022-07-16 thomas
507 8a35f56c 2022-07-16 thomas if (qs->action != SUMMARY && qs->action != TAGS) {
508 8a35f56c 2022-07-16 thomas error = got_object_open_as_commit(&commit, repo, id);
509 8a35f56c 2022-07-16 thomas if (error)
510 8a35f56c 2022-07-16 thomas goto err;
511 8a35f56c 2022-07-16 thomas error = got_object_commit_get_logmsg(&commit_msg0, commit);
512 8a35f56c 2022-07-16 thomas if (error)
513 8a35f56c 2022-07-16 thomas goto err;
514 8a35f56c 2022-07-16 thomas if (commit) {
515 8a35f56c 2022-07-16 thomas got_object_commit_close(commit);
516 8a35f56c 2022-07-16 thomas commit = NULL;
517 8a35f56c 2022-07-16 thomas }
518 8a35f56c 2022-07-16 thomas }
519 8a35f56c 2022-07-16 thomas
520 8a35f56c 2022-07-16 thomas error = got_repo_map_path(&in_repo_path, repo, repo_path);
521 8a35f56c 2022-07-16 thomas if (error)
522 8a35f56c 2022-07-16 thomas goto err;
523 8a35f56c 2022-07-16 thomas
524 8a35f56c 2022-07-16 thomas error = got_ref_list(&refs, repo, "refs/tags", got_ref_cmp_tags,
525 8a35f56c 2022-07-16 thomas repo);
526 8a35f56c 2022-07-16 thomas if (error)
527 8a35f56c 2022-07-16 thomas goto err;
528 8a35f56c 2022-07-16 thomas
529 8a35f56c 2022-07-16 thomas if (limit == 1)
530 8a35f56c 2022-07-16 thomas chk_multi = 0;
531 8a35f56c 2022-07-16 thomas
532 8a35f56c 2022-07-16 thomas /*
533 8a35f56c 2022-07-16 thomas * XXX: again, see previous message about caching
534 8a35f56c 2022-07-16 thomas */
535 8a35f56c 2022-07-16 thomas
536 8a35f56c 2022-07-16 thomas TAILQ_FOREACH(re, &refs, entry) {
537 8a35f56c 2022-07-16 thomas struct repo_tag *new_repo_tag = NULL;
538 8a35f56c 2022-07-16 thomas error = got_init_repo_tag(&new_repo_tag);
539 8a35f56c 2022-07-16 thomas if (error)
540 8a35f56c 2022-07-16 thomas goto err;
541 8a35f56c 2022-07-16 thomas
542 8a35f56c 2022-07-16 thomas TAILQ_INSERT_TAIL(&t->repo_tags, new_repo_tag, entry);
543 8a35f56c 2022-07-16 thomas
544 8a35f56c 2022-07-16 thomas new_repo_tag->tag_name = strdup(got_ref_get_name(re->ref));
545 8a35f56c 2022-07-16 thomas if (new_repo_tag->tag_name == NULL) {
546 8a35f56c 2022-07-16 thomas error = got_error_from_errno("strdup");
547 8a35f56c 2022-07-16 thomas goto err;
548 8a35f56c 2022-07-16 thomas }
549 8a35f56c 2022-07-16 thomas
550 19d60ee3 2022-09-02 thomas free(id);
551 19d60ee3 2022-09-02 thomas id = NULL;
552 19d60ee3 2022-09-02 thomas
553 19d60ee3 2022-09-02 thomas free(id_str);
554 19d60ee3 2022-09-02 thomas id_str = NULL;
555 19d60ee3 2022-09-02 thomas
556 8a35f56c 2022-07-16 thomas error = got_ref_resolve(&id, repo, re->ref);
557 8a35f56c 2022-07-16 thomas if (error)
558 8a35f56c 2022-07-16 thomas goto done;
559 8a35f56c 2022-07-16 thomas
560 acd4ff87 2022-09-02 thomas if (tag)
561 acd4ff87 2022-09-02 thomas got_object_tag_close(tag);
562 8a35f56c 2022-07-16 thomas error = got_object_open_as_tag(&tag, repo, id);
563 8a35f56c 2022-07-16 thomas if (error) {
564 19d60ee3 2022-09-02 thomas if (error->code != GOT_ERR_OBJ_TYPE)
565 8a35f56c 2022-07-16 thomas goto done;
566 8a35f56c 2022-07-16 thomas /* "lightweight" tag */
567 8a35f56c 2022-07-16 thomas error = got_object_open_as_commit(&commit, repo, id);
568 19d60ee3 2022-09-02 thomas if (error)
569 8a35f56c 2022-07-16 thomas goto done;
570 8a35f56c 2022-07-16 thomas new_repo_tag->tagger =
571 8a35f56c 2022-07-16 thomas strdup(got_object_commit_get_committer(commit));
572 8a35f56c 2022-07-16 thomas if (new_repo_tag->tagger == NULL) {
573 8a35f56c 2022-07-16 thomas error = got_error_from_errno("strdup");
574 8a35f56c 2022-07-16 thomas goto err;
575 8a35f56c 2022-07-16 thomas }
576 8a35f56c 2022-07-16 thomas new_repo_tag->tagger_time =
577 8a35f56c 2022-07-16 thomas got_object_commit_get_committer_time(commit);
578 8a35f56c 2022-07-16 thomas error = got_object_id_str(&id_str, id);
579 8a35f56c 2022-07-16 thomas if (error)
580 8a35f56c 2022-07-16 thomas goto err;
581 8a35f56c 2022-07-16 thomas } else {
582 8a35f56c 2022-07-16 thomas new_repo_tag->tagger =
583 8a35f56c 2022-07-16 thomas strdup(got_object_tag_get_tagger(tag));
584 8a35f56c 2022-07-16 thomas if (new_repo_tag->tagger == NULL) {
585 8a35f56c 2022-07-16 thomas error = got_error_from_errno("strdup");
586 8a35f56c 2022-07-16 thomas goto err;
587 8a35f56c 2022-07-16 thomas }
588 8a35f56c 2022-07-16 thomas new_repo_tag->tagger_time =
589 8a35f56c 2022-07-16 thomas got_object_tag_get_tagger_time(tag);
590 8a35f56c 2022-07-16 thomas error = got_object_id_str(&id_str,
591 8a35f56c 2022-07-16 thomas got_object_tag_get_object_id(tag));
592 8a35f56c 2022-07-16 thomas if (error)
593 8a35f56c 2022-07-16 thomas goto err;
594 8a35f56c 2022-07-16 thomas }
595 8a35f56c 2022-07-16 thomas
596 8a35f56c 2022-07-16 thomas new_repo_tag->commit_id = strdup(id_str);
597 8a35f56c 2022-07-16 thomas if (new_repo_tag->commit_id == NULL)
598 8a35f56c 2022-07-16 thomas goto err;
599 8a35f56c 2022-07-16 thomas
600 8a35f56c 2022-07-16 thomas if (commit_found == 0 && qs->commit != NULL &&
601 8a35f56c 2022-07-16 thomas strncmp(id_str, qs->commit, strlen(id_str)) != 0)
602 8a35f56c 2022-07-16 thomas continue;
603 8a35f56c 2022-07-16 thomas else
604 8a35f56c 2022-07-16 thomas commit_found = 1;
605 8a35f56c 2022-07-16 thomas
606 8a35f56c 2022-07-16 thomas t->tag_count++;
607 8a35f56c 2022-07-16 thomas
608 8a35f56c 2022-07-16 thomas /*
609 8a35f56c 2022-07-16 thomas * check for one more commit before breaking,
610 8a35f56c 2022-07-16 thomas * so we know whether to navigate through briefs
611 8a35f56c 2022-07-16 thomas * commits and summary
612 8a35f56c 2022-07-16 thomas */
613 8a35f56c 2022-07-16 thomas if (chk_next) {
614 8a35f56c 2022-07-16 thomas t->next_id = strdup(new_repo_tag->commit_id);
615 8a35f56c 2022-07-16 thomas if (t->next_id == NULL) {
616 8a35f56c 2022-07-16 thomas error = got_error_from_errno("strdup");
617 8a35f56c 2022-07-16 thomas goto err;
618 8a35f56c 2022-07-16 thomas }
619 8a35f56c 2022-07-16 thomas if (commit) {
620 8a35f56c 2022-07-16 thomas got_object_commit_close(commit);
621 8a35f56c 2022-07-16 thomas commit = NULL;
622 8a35f56c 2022-07-16 thomas }
623 8a35f56c 2022-07-16 thomas TAILQ_REMOVE(&t->repo_tags, new_repo_tag, entry);
624 8a35f56c 2022-07-16 thomas gotweb_free_repo_tag(new_repo_tag);
625 8a35f56c 2022-07-16 thomas goto done;
626 8a35f56c 2022-07-16 thomas }
627 8a35f56c 2022-07-16 thomas
628 8a35f56c 2022-07-16 thomas if (commit) {
629 217813df 2022-09-02 thomas error = got_object_commit_get_logmsg(&tag_commit0,
630 217813df 2022-09-02 thomas commit);
631 8a35f56c 2022-07-16 thomas if (error)
632 217813df 2022-09-02 thomas goto err;
633 8a35f56c 2022-07-16 thomas got_object_commit_close(commit);
634 8a35f56c 2022-07-16 thomas commit = NULL;
635 8a35f56c 2022-07-16 thomas } else {
636 217813df 2022-09-02 thomas tag_commit0 = strdup(got_object_tag_get_message(tag));
637 217813df 2022-09-02 thomas if (tag_commit0 == NULL) {
638 8a35f56c 2022-07-16 thomas error = got_error_from_errno("strdup");
639 217813df 2022-09-02 thomas goto err;
640 8a35f56c 2022-07-16 thomas }
641 8a35f56c 2022-07-16 thomas }
642 8a35f56c 2022-07-16 thomas
643 217813df 2022-09-02 thomas tag_commit = tag_commit0;
644 217813df 2022-09-02 thomas while (*tag_commit == '\n')
645 217813df 2022-09-02 thomas tag_commit++;
646 217813df 2022-09-02 thomas new_repo_tag->tag_commit = strdup(tag_commit);
647 217813df 2022-09-02 thomas if (new_repo_tag->tag_commit == NULL) {
648 217813df 2022-09-02 thomas error = got_error_from_errno("strdup");
649 217813df 2022-09-02 thomas free(tag_commit0);
650 217813df 2022-09-02 thomas goto err;
651 217813df 2022-09-02 thomas }
652 217813df 2022-09-02 thomas free(tag_commit0);
653 8a35f56c 2022-07-16 thomas
654 8a35f56c 2022-07-16 thomas if (qs->action != SUMMARY && qs->action != TAGS) {
655 8a35f56c 2022-07-16 thomas commit_msg = commit_msg0;
656 8a35f56c 2022-07-16 thomas while (*commit_msg == '\n')
657 8a35f56c 2022-07-16 thomas commit_msg++;
658 8a35f56c 2022-07-16 thomas
659 8a35f56c 2022-07-16 thomas new_repo_tag->commit_msg = strdup(commit_msg);
660 8a35f56c 2022-07-16 thomas if (new_repo_tag->commit_msg == NULL) {
661 8a35f56c 2022-07-16 thomas error = got_error_from_errno("strdup");
662 8a35f56c 2022-07-16 thomas goto err;
663 8a35f56c 2022-07-16 thomas }
664 8a35f56c 2022-07-16 thomas }
665 8a35f56c 2022-07-16 thomas
666 8a35f56c 2022-07-16 thomas if (limit && --limit == 0) {
667 8a35f56c 2022-07-16 thomas if (chk_multi == 0)
668 8a35f56c 2022-07-16 thomas break;
669 8a35f56c 2022-07-16 thomas chk_next = 1;
670 8a35f56c 2022-07-16 thomas }
671 8a35f56c 2022-07-16 thomas }
672 8a35f56c 2022-07-16 thomas
673 8a35f56c 2022-07-16 thomas done:
674 8a35f56c 2022-07-16 thomas /*
675 8a35f56c 2022-07-16 thomas * we have tailq populated, so find previous commit id
676 8a35f56c 2022-07-16 thomas * for navigation through briefs and commits
677 8a35f56c 2022-07-16 thomas */
678 8a35f56c 2022-07-16 thomas if (t->tag_count == 0) {
679 8a35f56c 2022-07-16 thomas TAILQ_FOREACH_SAFE(rt, &t->repo_tags, entry, trt) {
680 8a35f56c 2022-07-16 thomas TAILQ_REMOVE(&t->repo_tags, rt, entry);
681 8a35f56c 2022-07-16 thomas gotweb_free_repo_tag(rt);
682 8a35f56c 2022-07-16 thomas }
683 8a35f56c 2022-07-16 thomas }
684 8a35f56c 2022-07-16 thomas if (t->tag_count > 0 && t->prev_id == NULL && qs->commit != NULL) {
685 8a35f56c 2022-07-16 thomas commit_found = 0;
686 8a35f56c 2022-07-16 thomas TAILQ_FOREACH_REVERSE(rt, &t->repo_tags, repo_tags_head,
687 8a35f56c 2022-07-16 thomas entry) {
688 8a35f56c 2022-07-16 thomas if (commit_found == 0 && rt->commit_id != NULL &&
689 8a35f56c 2022-07-16 thomas strcmp(qs->commit, rt->commit_id) != 0) {
690 8a35f56c 2022-07-16 thomas continue;
691 8a35f56c 2022-07-16 thomas } else
692 8a35f56c 2022-07-16 thomas commit_found = 1;
693 8a35f56c 2022-07-16 thomas if (c_cnt == srv->max_commits_display ||
694 8a35f56c 2022-07-16 thomas rt == TAILQ_FIRST(&t->repo_tags)) {
695 8a35f56c 2022-07-16 thomas t->prev_id = strdup(rt->commit_id);
696 8a35f56c 2022-07-16 thomas if (t->prev_id == NULL)
697 8a35f56c 2022-07-16 thomas error = got_error_from_errno("strdup");
698 8a35f56c 2022-07-16 thomas break;
699 8a35f56c 2022-07-16 thomas }
700 8a35f56c 2022-07-16 thomas c_cnt++;
701 8a35f56c 2022-07-16 thomas }
702 8a35f56c 2022-07-16 thomas }
703 8a35f56c 2022-07-16 thomas err:
704 8a35f56c 2022-07-16 thomas if (commit)
705 8a35f56c 2022-07-16 thomas got_object_commit_close(commit);
706 19d60ee3 2022-09-02 thomas if (tag)
707 19d60ee3 2022-09-02 thomas got_object_tag_close(tag);
708 8a35f56c 2022-07-16 thomas got_ref_list_free(&refs);
709 ddcf1d33 2022-09-02 thomas free(commit_msg0);
710 19d60ee3 2022-09-02 thomas free(in_repo_path);
711 8a35f56c 2022-07-16 thomas free(repo_path);
712 8a35f56c 2022-07-16 thomas free(id);
713 19d60ee3 2022-09-02 thomas free(id_str);
714 8a35f56c 2022-07-16 thomas return error;
715 8a35f56c 2022-07-16 thomas }
716 8a35f56c 2022-07-16 thomas
717 3c14c1f2 2023-01-06 thomas int
718 3c14c1f2 2023-01-06 thomas got_output_repo_tree(struct request *c,
719 3c14c1f2 2023-01-06 thomas int (*cb)(struct template *, struct got_tree_entry *))
720 8a35f56c 2022-07-16 thomas {
721 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
722 8a35f56c 2022-07-16 thomas struct transport *t = c->t;
723 8a35f56c 2022-07-16 thomas struct got_commit_object *commit = NULL;
724 8a35f56c 2022-07-16 thomas struct got_repository *repo = t->repo;
725 8a35f56c 2022-07-16 thomas struct querystring *qs = t->qs;
726 8a35f56c 2022-07-16 thomas struct repo_commit *rc = NULL;
727 8a35f56c 2022-07-16 thomas struct got_object_id *tree_id = NULL, *commit_id = NULL;
728 8a35f56c 2022-07-16 thomas struct got_reflist_head refs;
729 8a35f56c 2022-07-16 thomas struct got_tree_object *tree = NULL;
730 3c14c1f2 2023-01-06 thomas struct got_tree_entry *te;
731 8a35f56c 2022-07-16 thomas struct repo_dir *repo_dir = t->repo_dir;
732 06325330 2022-09-02 thomas char *escaped_name = NULL, *path = NULL;
733 3c14c1f2 2023-01-06 thomas int nentries, i;
734 8a35f56c 2022-07-16 thomas
735 8a35f56c 2022-07-16 thomas TAILQ_INIT(&refs);
736 8a35f56c 2022-07-16 thomas
737 8a35f56c 2022-07-16 thomas rc = TAILQ_FIRST(&t->repo_commits);
738 8a35f56c 2022-07-16 thomas
739 8a35f56c 2022-07-16 thomas if (qs->folder != NULL) {
740 8a35f56c 2022-07-16 thomas path = strdup(qs->folder);
741 8a35f56c 2022-07-16 thomas if (path == NULL) {
742 8a35f56c 2022-07-16 thomas error = got_error_from_errno("strdup");
743 8a35f56c 2022-07-16 thomas goto done;
744 8a35f56c 2022-07-16 thomas }
745 8a35f56c 2022-07-16 thomas } else {
746 557d32ee 2022-09-02 thomas error = got_repo_map_path(&path, repo, repo_dir->path);
747 8a35f56c 2022-07-16 thomas if (error)
748 8a35f56c 2022-07-16 thomas goto done;
749 8a35f56c 2022-07-16 thomas }
750 8a35f56c 2022-07-16 thomas
751 8a35f56c 2022-07-16 thomas error = got_repo_match_object_id(&commit_id, NULL, rc->commit_id,
752 8a35f56c 2022-07-16 thomas GOT_OBJ_TYPE_COMMIT, &refs, repo);
753 8a35f56c 2022-07-16 thomas if (error)
754 8a35f56c 2022-07-16 thomas goto done;
755 8a35f56c 2022-07-16 thomas
756 8a35f56c 2022-07-16 thomas error = got_object_open_as_commit(&commit, repo, commit_id);
757 8a35f56c 2022-07-16 thomas if (error)
758 8a35f56c 2022-07-16 thomas goto done;
759 8a35f56c 2022-07-16 thomas
760 8a35f56c 2022-07-16 thomas error = got_object_id_by_path(&tree_id, repo, commit, path);
761 8a35f56c 2022-07-16 thomas if (error)
762 8a35f56c 2022-07-16 thomas goto done;
763 8a35f56c 2022-07-16 thomas
764 8a35f56c 2022-07-16 thomas error = got_object_open_as_tree(&tree, repo, tree_id);
765 8a35f56c 2022-07-16 thomas if (error)
766 8a35f56c 2022-07-16 thomas goto done;
767 8a35f56c 2022-07-16 thomas
768 8a35f56c 2022-07-16 thomas nentries = got_object_tree_get_nentries(tree);
769 8a35f56c 2022-07-16 thomas
770 8a35f56c 2022-07-16 thomas for (i = 0; i < nentries; i++) {
771 8a35f56c 2022-07-16 thomas te = got_object_tree_get_entry(tree, i);
772 8f464e92 2023-02-17 thomas if (cb(c->tp, te) == -1) {
773 8f464e92 2023-02-17 thomas error = got_error(GOT_ERR_CANCELLED);
774 3c14c1f2 2023-01-06 thomas break;
775 8f464e92 2023-02-17 thomas }
776 8a35f56c 2022-07-16 thomas }
777 8a35f56c 2022-07-16 thomas done:
778 df610f47 2022-08-27 thomas free(escaped_name);
779 8a35f56c 2022-07-16 thomas free(path);
780 8a35f56c 2022-07-16 thomas got_ref_list_free(&refs);
781 8a35f56c 2022-07-16 thomas if (commit)
782 8a35f56c 2022-07-16 thomas got_object_commit_close(commit);
783 12e242cc 2022-09-06 thomas if (tree)
784 12e242cc 2022-09-06 thomas got_object_tree_close(tree);
785 8a35f56c 2022-07-16 thomas free(commit_id);
786 8a35f56c 2022-07-16 thomas free(tree_id);
787 3c14c1f2 2023-01-06 thomas if (error) {
788 3c14c1f2 2023-01-06 thomas log_warnx("%s: %s", __func__, error->msg);
789 3c14c1f2 2023-01-06 thomas return -1;
790 3c14c1f2 2023-01-06 thomas }
791 3c14c1f2 2023-01-06 thomas return 0;
792 8a35f56c 2022-07-16 thomas }
793 8a35f56c 2022-07-16 thomas
794 8a35f56c 2022-07-16 thomas const struct got_error *
795 b82440e1 2023-01-06 thomas got_open_blob_for_output(struct got_blob_object **blob, int *fd,
796 b82440e1 2023-01-06 thomas int *binary, struct request *c)
797 8a35f56c 2022-07-16 thomas {
798 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
799 8a35f56c 2022-07-16 thomas struct transport *t = c->t;
800 8a35f56c 2022-07-16 thomas struct got_repository *repo = t->repo;
801 8a35f56c 2022-07-16 thomas struct querystring *qs = c->t->qs;
802 8a35f56c 2022-07-16 thomas struct got_commit_object *commit = NULL;
803 8a35f56c 2022-07-16 thomas struct got_object_id *commit_id = NULL;
804 8a35f56c 2022-07-16 thomas struct got_reflist_head refs;
805 8a35f56c 2022-07-16 thomas char *path = NULL, *in_repo_path = NULL;
806 b82440e1 2023-01-06 thomas int obj_type;
807 8a35f56c 2022-07-16 thomas
808 8a35f56c 2022-07-16 thomas TAILQ_INIT(&refs);
809 8a35f56c 2022-07-16 thomas
810 b82440e1 2023-01-06 thomas *blob = NULL;
811 b82440e1 2023-01-06 thomas *fd = -1;
812 b82440e1 2023-01-06 thomas *binary = 0;
813 b82440e1 2023-01-06 thomas
814 8a35f56c 2022-07-16 thomas if (asprintf(&path, "%s%s%s", qs->folder ? qs->folder : "",
815 8a35f56c 2022-07-16 thomas qs->folder ? "/" : "", qs->file) == -1) {
816 8a35f56c 2022-07-16 thomas error = got_error_from_errno("asprintf");
817 8a35f56c 2022-07-16 thomas goto done;
818 8a35f56c 2022-07-16 thomas }
819 8a35f56c 2022-07-16 thomas
820 8a35f56c 2022-07-16 thomas error = got_repo_map_path(&in_repo_path, repo, path);
821 8a35f56c 2022-07-16 thomas if (error)
822 8a35f56c 2022-07-16 thomas goto done;
823 8a35f56c 2022-07-16 thomas
824 8a35f56c 2022-07-16 thomas error = got_repo_match_object_id(&commit_id, NULL, qs->commit,
825 8a35f56c 2022-07-16 thomas GOT_OBJ_TYPE_COMMIT, &refs, repo);
826 8a35f56c 2022-07-16 thomas if (error)
827 8a35f56c 2022-07-16 thomas goto done;
828 8a35f56c 2022-07-16 thomas
829 8a35f56c 2022-07-16 thomas error = got_object_open_as_commit(&commit, repo, commit_id);
830 8a35f56c 2022-07-16 thomas if (error)
831 8a35f56c 2022-07-16 thomas goto done;
832 8a35f56c 2022-07-16 thomas
833 8a35f56c 2022-07-16 thomas error = got_object_id_by_path(&commit_id, repo, commit, in_repo_path);
834 8a35f56c 2022-07-16 thomas if (error)
835 8a35f56c 2022-07-16 thomas goto done;
836 8a35f56c 2022-07-16 thomas
837 8a35f56c 2022-07-16 thomas if (commit_id == NULL) {
838 8a35f56c 2022-07-16 thomas error = got_error(GOT_ERR_NO_OBJ);
839 8a35f56c 2022-07-16 thomas goto done;
840 8a35f56c 2022-07-16 thomas }
841 8a35f56c 2022-07-16 thomas
842 8a35f56c 2022-07-16 thomas error = got_object_get_type(&obj_type, repo, commit_id);
843 8a35f56c 2022-07-16 thomas if (error)
844 8a35f56c 2022-07-16 thomas goto done;
845 8a35f56c 2022-07-16 thomas
846 8a35f56c 2022-07-16 thomas if (obj_type != GOT_OBJ_TYPE_BLOB) {
847 8a35f56c 2022-07-16 thomas error = got_error(GOT_ERR_OBJ_TYPE);
848 8a35f56c 2022-07-16 thomas goto done;
849 8a35f56c 2022-07-16 thomas }
850 8a35f56c 2022-07-16 thomas
851 b82440e1 2023-01-06 thomas error = got_gotweb_dupfd(&c->priv_fd[BLOB_FD_1], fd);
852 8a35f56c 2022-07-16 thomas if (error)
853 8a35f56c 2022-07-16 thomas goto done;
854 8a35f56c 2022-07-16 thomas
855 b82440e1 2023-01-06 thomas error = got_object_open_as_blob(blob, repo, commit_id, BUF, *fd);
856 8a35f56c 2022-07-16 thomas if (error)
857 8a35f56c 2022-07-16 thomas goto done;
858 efe3fd03 2023-01-06 thomas
859 b82440e1 2023-01-06 thomas error = got_object_blob_is_binary(binary, *blob);
860 efe3fd03 2023-01-06 thomas if (error)
861 efe3fd03 2023-01-06 thomas goto done;
862 efe3fd03 2023-01-06 thomas
863 b82440e1 2023-01-06 thomas done:
864 b82440e1 2023-01-06 thomas if (commit)
865 b82440e1 2023-01-06 thomas got_object_commit_close(commit);
866 b82440e1 2023-01-06 thomas
867 b82440e1 2023-01-06 thomas if (error) {
868 b82440e1 2023-01-06 thomas if (*fd != -1)
869 b82440e1 2023-01-06 thomas close(*fd);
870 b82440e1 2023-01-06 thomas if (*blob)
871 b82440e1 2023-01-06 thomas got_object_blob_close(*blob);
872 b82440e1 2023-01-06 thomas *fd = -1;
873 b82440e1 2023-01-06 thomas *blob = NULL;
874 b82440e1 2023-01-06 thomas }
875 b82440e1 2023-01-06 thomas
876 b82440e1 2023-01-06 thomas free(in_repo_path);
877 b82440e1 2023-01-06 thomas free(commit_id);
878 b82440e1 2023-01-06 thomas free(path);
879 8a35f56c 2022-07-16 thomas return error;
880 b82440e1 2023-01-06 thomas }
881 b82440e1 2023-01-06 thomas
882 b82440e1 2023-01-06 thomas int
883 b82440e1 2023-01-06 thomas got_output_blob_by_lines(struct template *tp, struct got_blob_object *blob,
884 b82440e1 2023-01-06 thomas int (*cb)(struct template *, const char *, size_t))
885 b82440e1 2023-01-06 thomas {
886 b82440e1 2023-01-06 thomas const struct got_error *err;
887 b82440e1 2023-01-06 thomas char *line = NULL;
888 b82440e1 2023-01-06 thomas size_t linesize = 0;
889 b82440e1 2023-01-06 thomas size_t lineno = 0;
890 b82440e1 2023-01-06 thomas ssize_t linelen = 0;
891 b82440e1 2023-01-06 thomas
892 b82440e1 2023-01-06 thomas for (;;) {
893 b82440e1 2023-01-06 thomas err = got_object_blob_getline(&line, &linelen, &linesize,
894 b82440e1 2023-01-06 thomas blob);
895 b82440e1 2023-01-06 thomas if (err || linelen == -1)
896 b82440e1 2023-01-06 thomas break;
897 b82440e1 2023-01-06 thomas lineno++;
898 8f464e92 2023-02-17 thomas if (cb(tp, line, lineno) == -1) {
899 8f464e92 2023-02-17 thomas err = got_error(GOT_ERR_CANCELLED);
900 b82440e1 2023-01-06 thomas break;
901 8f464e92 2023-02-17 thomas }
902 b82440e1 2023-01-06 thomas }
903 b82440e1 2023-01-06 thomas
904 b82440e1 2023-01-06 thomas free(line);
905 b82440e1 2023-01-06 thomas
906 b82440e1 2023-01-06 thomas if (err) {
907 b82440e1 2023-01-06 thomas log_warnx("%s: got_object_blob_getline failed: %s",
908 b82440e1 2023-01-06 thomas __func__, err->msg);
909 b82440e1 2023-01-06 thomas return -1;
910 b82440e1 2023-01-06 thomas }
911 b82440e1 2023-01-06 thomas return 0;
912 8a35f56c 2022-07-16 thomas }
913 8a35f56c 2022-07-16 thomas
914 8a35f56c 2022-07-16 thomas struct blame_cb_args {
915 8a35f56c 2022-07-16 thomas struct blame_line *lines;
916 8a35f56c 2022-07-16 thomas int nlines;
917 8a35f56c 2022-07-16 thomas int nlines_prec;
918 8a35f56c 2022-07-16 thomas int lineno_cur;
919 8a35f56c 2022-07-16 thomas off_t *line_offsets;
920 8a35f56c 2022-07-16 thomas FILE *f;
921 8a35f56c 2022-07-16 thomas struct got_repository *repo;
922 8a35f56c 2022-07-16 thomas struct request *c;
923 1cd5d437 2023-01-15 thomas got_render_blame_line_cb cb;
924 8a35f56c 2022-07-16 thomas };
925 8a35f56c 2022-07-16 thomas
926 8a35f56c 2022-07-16 thomas static const struct got_error *
927 8a35f56c 2022-07-16 thomas got_gotweb_blame_cb(void *arg, int nlines, int lineno,
928 8a35f56c 2022-07-16 thomas struct got_commit_object *commit, struct got_object_id *id)
929 8a35f56c 2022-07-16 thomas {
930 8a35f56c 2022-07-16 thomas const struct got_error *err = NULL;
931 8a35f56c 2022-07-16 thomas struct blame_cb_args *a = arg;
932 8a35f56c 2022-07-16 thomas struct blame_line *bline;
933 8a35f56c 2022-07-16 thomas struct request *c = a->c;
934 1cd5d437 2023-01-15 thomas char *line = NULL;
935 8a35f56c 2022-07-16 thomas size_t linesize = 0;
936 8a35f56c 2022-07-16 thomas off_t offset;
937 8a35f56c 2022-07-16 thomas struct tm tm;
938 8a35f56c 2022-07-16 thomas time_t committer_time;
939 8a35f56c 2022-07-16 thomas
940 8a35f56c 2022-07-16 thomas if (nlines != a->nlines ||
941 8a35f56c 2022-07-16 thomas (lineno != -1 && lineno < 1) || lineno > a->nlines)
942 8a35f56c 2022-07-16 thomas return got_error(GOT_ERR_RANGE);
943 8a35f56c 2022-07-16 thomas
944 8a35f56c 2022-07-16 thomas if (lineno == -1)
945 8a35f56c 2022-07-16 thomas return NULL; /* no change in this commit */
946 8a35f56c 2022-07-16 thomas
947 8a35f56c 2022-07-16 thomas /* Annotate this line. */
948 8a35f56c 2022-07-16 thomas bline = &a->lines[lineno - 1];
949 8a35f56c 2022-07-16 thomas if (bline->annotated)
950 8a35f56c 2022-07-16 thomas return NULL;
951 8a35f56c 2022-07-16 thomas err = got_object_id_str(&bline->id_str, id);
952 8a35f56c 2022-07-16 thomas if (err)
953 8a35f56c 2022-07-16 thomas return err;
954 8a35f56c 2022-07-16 thomas
955 8a35f56c 2022-07-16 thomas bline->committer = strdup(got_object_commit_get_committer(commit));
956 8a35f56c 2022-07-16 thomas if (bline->committer == NULL) {
957 8a35f56c 2022-07-16 thomas err = got_error_from_errno("strdup");
958 8a35f56c 2022-07-16 thomas goto done;
959 8a35f56c 2022-07-16 thomas }
960 8a35f56c 2022-07-16 thomas
961 8a35f56c 2022-07-16 thomas committer_time = got_object_commit_get_committer_time(commit);
962 8a35f56c 2022-07-16 thomas if (gmtime_r(&committer_time, &tm) == NULL)
963 8a35f56c 2022-07-16 thomas return got_error_from_errno("gmtime_r");
964 8a35f56c 2022-07-16 thomas if (strftime(bline->datebuf, sizeof(bline->datebuf), "%G-%m-%d",
965 8a35f56c 2022-07-16 thomas &tm) == 0) {
966 8a35f56c 2022-07-16 thomas err = got_error(GOT_ERR_NO_SPACE);
967 8a35f56c 2022-07-16 thomas goto done;
968 8a35f56c 2022-07-16 thomas }
969 8a35f56c 2022-07-16 thomas bline->annotated = 1;
970 8a35f56c 2022-07-16 thomas
971 8a35f56c 2022-07-16 thomas /* Print lines annotated so far. */
972 8a35f56c 2022-07-16 thomas bline = &a->lines[a->lineno_cur - 1];
973 8a35f56c 2022-07-16 thomas if (!bline->annotated)
974 8a35f56c 2022-07-16 thomas goto done;
975 8a35f56c 2022-07-16 thomas
976 8a35f56c 2022-07-16 thomas offset = a->line_offsets[a->lineno_cur - 1];
977 8a35f56c 2022-07-16 thomas if (fseeko(a->f, offset, SEEK_SET) == -1) {
978 8a35f56c 2022-07-16 thomas err = got_error_from_errno("fseeko");
979 8a35f56c 2022-07-16 thomas goto done;
980 8a35f56c 2022-07-16 thomas }
981 8a35f56c 2022-07-16 thomas
982 b5c07627 2022-08-18 thomas while (a->lineno_cur <= a->nlines && bline->annotated) {
983 8a35f56c 2022-07-16 thomas if (getline(&line, &linesize, a->f) == -1) {
984 8a35f56c 2022-07-16 thomas if (ferror(a->f))
985 8a35f56c 2022-07-16 thomas err = got_error_from_errno("getline");
986 8a35f56c 2022-07-16 thomas break;
987 8a35f56c 2022-07-16 thomas }
988 8a35f56c 2022-07-16 thomas
989 1cd5d437 2023-01-15 thomas if (a->cb(c->tp, line, bline, a->nlines_prec,
990 ad5cb26d 2023-02-17 thomas a->lineno_cur) == -1) {
991 ad5cb26d 2023-02-17 thomas err = got_error(GOT_ERR_CANCELLED);
992 1cd5d437 2023-01-15 thomas break;
993 ad5cb26d 2023-02-17 thomas }
994 79393471 2022-08-27 thomas
995 8a35f56c 2022-07-16 thomas a->lineno_cur++;
996 8a35f56c 2022-07-16 thomas bline = &a->lines[a->lineno_cur - 1];
997 8a35f56c 2022-07-16 thomas }
998 8a35f56c 2022-07-16 thomas done:
999 8a35f56c 2022-07-16 thomas free(line);
1000 8a35f56c 2022-07-16 thomas return err;
1001 8a35f56c 2022-07-16 thomas }
1002 8a35f56c 2022-07-16 thomas
1003 8a35f56c 2022-07-16 thomas const struct got_error *
1004 1cd5d437 2023-01-15 thomas got_output_file_blame(struct request *c, got_render_blame_line_cb cb)
1005 8a35f56c 2022-07-16 thomas {
1006 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
1007 8a35f56c 2022-07-16 thomas struct transport *t = c->t;
1008 8a35f56c 2022-07-16 thomas struct got_repository *repo = t->repo;
1009 8a35f56c 2022-07-16 thomas struct querystring *qs = c->t->qs;
1010 8a35f56c 2022-07-16 thomas struct got_object_id *obj_id = NULL, *commit_id = NULL;
1011 8a35f56c 2022-07-16 thomas struct got_commit_object *commit = NULL;
1012 8a35f56c 2022-07-16 thomas struct got_reflist_head refs;
1013 8a35f56c 2022-07-16 thomas struct got_blob_object *blob = NULL;
1014 8a35f56c 2022-07-16 thomas char *path = NULL, *in_repo_path = NULL;
1015 8a35f56c 2022-07-16 thomas struct blame_cb_args bca;
1016 8a35f56c 2022-07-16 thomas int i, obj_type, fd1 = -1, fd2 = -1, fd3 = -1, fd4 = -1, fd5 = -1;
1017 8a35f56c 2022-07-16 thomas int fd6 = -1;
1018 8a35f56c 2022-07-16 thomas off_t filesize;
1019 8a35f56c 2022-07-16 thomas FILE *f1 = NULL, *f2 = NULL;
1020 8a35f56c 2022-07-16 thomas
1021 8a35f56c 2022-07-16 thomas TAILQ_INIT(&refs);
1022 8a35f56c 2022-07-16 thomas bca.f = NULL;
1023 8a35f56c 2022-07-16 thomas bca.lines = NULL;
1024 1cd5d437 2023-01-15 thomas bca.cb = cb;
1025 8a35f56c 2022-07-16 thomas
1026 8a35f56c 2022-07-16 thomas if (asprintf(&path, "%s%s%s", qs->folder ? qs->folder : "",
1027 8a35f56c 2022-07-16 thomas qs->folder ? "/" : "", qs->file) == -1) {
1028 8a35f56c 2022-07-16 thomas error = got_error_from_errno("asprintf");
1029 8a35f56c 2022-07-16 thomas goto done;
1030 8a35f56c 2022-07-16 thomas }
1031 8a35f56c 2022-07-16 thomas
1032 8a35f56c 2022-07-16 thomas error = got_repo_map_path(&in_repo_path, repo, path);
1033 8a35f56c 2022-07-16 thomas if (error)
1034 8a35f56c 2022-07-16 thomas goto done;
1035 8a35f56c 2022-07-16 thomas
1036 8a35f56c 2022-07-16 thomas error = got_repo_match_object_id(&commit_id, NULL, qs->commit,
1037 8a35f56c 2022-07-16 thomas GOT_OBJ_TYPE_COMMIT, &refs, repo);
1038 8a35f56c 2022-07-16 thomas if (error)
1039 8a35f56c 2022-07-16 thomas goto done;
1040 8a35f56c 2022-07-16 thomas
1041 8a35f56c 2022-07-16 thomas error = got_object_open_as_commit(&commit, repo, commit_id);
1042 8a35f56c 2022-07-16 thomas if (error)
1043 8a35f56c 2022-07-16 thomas goto done;
1044 8a35f56c 2022-07-16 thomas
1045 8a35f56c 2022-07-16 thomas error = got_object_id_by_path(&obj_id, repo, commit, in_repo_path);
1046 8a35f56c 2022-07-16 thomas if (error)
1047 8a35f56c 2022-07-16 thomas goto done;
1048 8a35f56c 2022-07-16 thomas
1049 8a35f56c 2022-07-16 thomas error = got_object_get_type(&obj_type, repo, obj_id);
1050 8a35f56c 2022-07-16 thomas if (error)
1051 8a35f56c 2022-07-16 thomas goto done;
1052 8a35f56c 2022-07-16 thomas
1053 8a35f56c 2022-07-16 thomas if (obj_type != GOT_OBJ_TYPE_BLOB) {
1054 8a35f56c 2022-07-16 thomas error = got_error(GOT_ERR_OBJ_TYPE);
1055 8a35f56c 2022-07-16 thomas goto done;
1056 8a35f56c 2022-07-16 thomas }
1057 8a35f56c 2022-07-16 thomas
1058 8a35f56c 2022-07-16 thomas error = got_gotweb_openfile(&bca.f, &c->priv_fd[BLAME_FD_1], &fd1);
1059 8a35f56c 2022-07-16 thomas if (error)
1060 8a35f56c 2022-07-16 thomas goto done;
1061 8a35f56c 2022-07-16 thomas
1062 8a35f56c 2022-07-16 thomas error = got_gotweb_dupfd(&c->priv_fd[BLAME_FD_2], &fd2);
1063 8a35f56c 2022-07-16 thomas if (error)
1064 8a35f56c 2022-07-16 thomas goto done;
1065 8a35f56c 2022-07-16 thomas
1066 8a35f56c 2022-07-16 thomas error = got_object_open_as_blob(&blob, repo, obj_id, BUF, fd2);
1067 8a35f56c 2022-07-16 thomas if (error)
1068 8a35f56c 2022-07-16 thomas goto done;
1069 8a35f56c 2022-07-16 thomas
1070 8a35f56c 2022-07-16 thomas error = got_object_blob_dump_to_file(&filesize, &bca.nlines,
1071 8a35f56c 2022-07-16 thomas &bca.line_offsets, bca.f, blob);
1072 8a35f56c 2022-07-16 thomas if (error || bca.nlines == 0)
1073 8a35f56c 2022-07-16 thomas goto done;
1074 8a35f56c 2022-07-16 thomas
1075 8a35f56c 2022-07-16 thomas /* Don't include \n at EOF in the blame line count. */
1076 8a35f56c 2022-07-16 thomas if (bca.line_offsets[bca.nlines - 1] == filesize)
1077 8a35f56c 2022-07-16 thomas bca.nlines--;
1078 8a35f56c 2022-07-16 thomas
1079 8a35f56c 2022-07-16 thomas bca.lines = calloc(bca.nlines, sizeof(*bca.lines));
1080 8a35f56c 2022-07-16 thomas if (bca.lines == NULL) {
1081 8a35f56c 2022-07-16 thomas error = got_error_from_errno("calloc");
1082 8a35f56c 2022-07-16 thomas goto done;
1083 8a35f56c 2022-07-16 thomas }
1084 8a35f56c 2022-07-16 thomas bca.lineno_cur = 1;
1085 8a35f56c 2022-07-16 thomas bca.nlines_prec = 0;
1086 8a35f56c 2022-07-16 thomas i = bca.nlines;
1087 8a35f56c 2022-07-16 thomas while (i > 0) {
1088 8a35f56c 2022-07-16 thomas i /= 10;
1089 8a35f56c 2022-07-16 thomas bca.nlines_prec++;
1090 8a35f56c 2022-07-16 thomas }
1091 8a35f56c 2022-07-16 thomas bca.repo = repo;
1092 8a35f56c 2022-07-16 thomas bca.c = c;
1093 8a35f56c 2022-07-16 thomas
1094 8a35f56c 2022-07-16 thomas error = got_gotweb_dupfd(&c->priv_fd[BLAME_FD_3], &fd3);
1095 8a35f56c 2022-07-16 thomas if (error)
1096 8a35f56c 2022-07-16 thomas goto done;
1097 8a35f56c 2022-07-16 thomas
1098 8a35f56c 2022-07-16 thomas error = got_gotweb_dupfd(&c->priv_fd[BLAME_FD_4], &fd4);
1099 8a35f56c 2022-07-16 thomas if (error)
1100 8a35f56c 2022-07-16 thomas goto done;
1101 8a35f56c 2022-07-16 thomas
1102 8a35f56c 2022-07-16 thomas error = got_gotweb_openfile(&f1, &c->priv_fd[BLAME_FD_5], &fd5);
1103 8a35f56c 2022-07-16 thomas if (error)
1104 8a35f56c 2022-07-16 thomas goto done;
1105 8a35f56c 2022-07-16 thomas
1106 8a35f56c 2022-07-16 thomas error = got_gotweb_openfile(&f2, &c->priv_fd[BLAME_FD_6], &fd6);
1107 8a35f56c 2022-07-16 thomas if (error)
1108 8a35f56c 2022-07-16 thomas goto done;
1109 8a35f56c 2022-07-16 thomas
1110 8a35f56c 2022-07-16 thomas error = got_blame(in_repo_path, commit_id, repo,
1111 8a35f56c 2022-07-16 thomas GOT_DIFF_ALGORITHM_MYERS, got_gotweb_blame_cb, &bca, NULL, NULL,
1112 8a35f56c 2022-07-16 thomas fd3, fd4, f1, f2);
1113 8a35f56c 2022-07-16 thomas
1114 d38635a3 2022-09-03 thomas done:
1115 d38635a3 2022-09-03 thomas if (bca.lines) {
1116 8a35f56c 2022-07-16 thomas free(bca.line_offsets);
1117 8a35f56c 2022-07-16 thomas for (i = 0; i < bca.nlines; i++) {
1118 8a35f56c 2022-07-16 thomas struct blame_line *bline = &bca.lines[i];
1119 8a35f56c 2022-07-16 thomas free(bline->id_str);
1120 8a35f56c 2022-07-16 thomas free(bline->committer);
1121 8a35f56c 2022-07-16 thomas }
1122 8a35f56c 2022-07-16 thomas }
1123 8a35f56c 2022-07-16 thomas free(bca.lines);
1124 8a35f56c 2022-07-16 thomas if (fd2 != -1 && close(fd2) == -1 && error == NULL)
1125 8a35f56c 2022-07-16 thomas error = got_error_from_errno("close");
1126 8a35f56c 2022-07-16 thomas if (fd3 != -1 && close(fd3) == -1 && error == NULL)
1127 8a35f56c 2022-07-16 thomas error = got_error_from_errno("close");
1128 8a35f56c 2022-07-16 thomas if (fd4 != -1 && close(fd4) == -1 && error == NULL)
1129 8a35f56c 2022-07-16 thomas error = got_error_from_errno("close");
1130 8a35f56c 2022-07-16 thomas if (bca.f) {
1131 8a35f56c 2022-07-16 thomas const struct got_error *bca_err =
1132 8a35f56c 2022-07-16 thomas got_gotweb_flushfile(bca.f, fd1);
1133 8a35f56c 2022-07-16 thomas if (error == NULL)
1134 8a35f56c 2022-07-16 thomas error = bca_err;
1135 8a35f56c 2022-07-16 thomas }
1136 8a35f56c 2022-07-16 thomas if (f1) {
1137 8a35f56c 2022-07-16 thomas const struct got_error *f1_err =
1138 8a35f56c 2022-07-16 thomas got_gotweb_flushfile(f1, fd5);
1139 8a35f56c 2022-07-16 thomas if (error == NULL)
1140 8a35f56c 2022-07-16 thomas error = f1_err;
1141 8a35f56c 2022-07-16 thomas }
1142 8a35f56c 2022-07-16 thomas if (f2) {
1143 8a35f56c 2022-07-16 thomas const struct got_error *f2_err =
1144 8a35f56c 2022-07-16 thomas got_gotweb_flushfile(f2, fd6);
1145 8a35f56c 2022-07-16 thomas if (error == NULL)
1146 8a35f56c 2022-07-16 thomas error = f2_err;
1147 8a35f56c 2022-07-16 thomas }
1148 8a35f56c 2022-07-16 thomas if (commit)
1149 8a35f56c 2022-07-16 thomas got_object_commit_close(commit);
1150 8a35f56c 2022-07-16 thomas if (blob)
1151 8a35f56c 2022-07-16 thomas got_object_blob_close(blob);
1152 8a35f56c 2022-07-16 thomas free(in_repo_path);
1153 8a35f56c 2022-07-16 thomas free(commit_id);
1154 aefd24c9 2022-09-03 thomas free(obj_id);
1155 8a35f56c 2022-07-16 thomas free(path);
1156 aefd24c9 2022-09-03 thomas got_ref_list_free(&refs);
1157 8a35f56c 2022-07-16 thomas return error;
1158 8a35f56c 2022-07-16 thomas }
1159 8a35f56c 2022-07-16 thomas
1160 8a35f56c 2022-07-16 thomas const struct got_error *
1161 dccd05b4 2023-01-10 thomas got_open_diff_for_output(FILE **fp, int *fd, struct request *c)
1162 8a35f56c 2022-07-16 thomas {
1163 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
1164 8a35f56c 2022-07-16 thomas struct transport *t = c->t;
1165 8a35f56c 2022-07-16 thomas struct got_repository *repo = t->repo;
1166 8a35f56c 2022-07-16 thomas struct repo_commit *rc = NULL;
1167 8a35f56c 2022-07-16 thomas struct got_object_id *id1 = NULL, *id2 = NULL;
1168 8a35f56c 2022-07-16 thomas struct got_reflist_head refs;
1169 8a35f56c 2022-07-16 thomas FILE *f1 = NULL, *f2 = NULL, *f3 = NULL;
1170 8a35f56c 2022-07-16 thomas int obj_type, fd1, fd2, fd3, fd4 = -1, fd5 = -1;
1171 5d860bce 2023-01-07 thomas
1172 dccd05b4 2023-01-10 thomas *fp = NULL;
1173 dccd05b4 2023-01-10 thomas *fd = -1;
1174 dccd05b4 2023-01-10 thomas
1175 8a35f56c 2022-07-16 thomas TAILQ_INIT(&refs);
1176 8a35f56c 2022-07-16 thomas
1177 8a35f56c 2022-07-16 thomas error = got_gotweb_openfile(&f1, &c->priv_fd[DIFF_FD_1], &fd1);
1178 8a35f56c 2022-07-16 thomas if (error)
1179 8a35f56c 2022-07-16 thomas return error;
1180 8a35f56c 2022-07-16 thomas
1181 8a35f56c 2022-07-16 thomas error = got_gotweb_openfile(&f2, &c->priv_fd[DIFF_FD_2], &fd2);
1182 8a35f56c 2022-07-16 thomas if (error)
1183 8a35f56c 2022-07-16 thomas return error;
1184 8a35f56c 2022-07-16 thomas
1185 8a35f56c 2022-07-16 thomas error = got_gotweb_openfile(&f3, &c->priv_fd[DIFF_FD_3], &fd3);
1186 8a35f56c 2022-07-16 thomas if (error)
1187 8a35f56c 2022-07-16 thomas return error;
1188 8a35f56c 2022-07-16 thomas
1189 8a35f56c 2022-07-16 thomas rc = TAILQ_FIRST(&t->repo_commits);
1190 8a35f56c 2022-07-16 thomas
1191 8a35f56c 2022-07-16 thomas if (rc->parent_id != NULL &&
1192 8a35f56c 2022-07-16 thomas strncmp(rc->parent_id, "/dev/null", 9) != 0) {
1193 dccd05b4 2023-01-10 thomas error = got_repo_match_object_id(&id1, NULL,
1194 8a35f56c 2022-07-16 thomas rc->parent_id, GOT_OBJ_TYPE_ANY,
1195 8a35f56c 2022-07-16 thomas &refs, repo);
1196 8a35f56c 2022-07-16 thomas if (error)
1197 8a35f56c 2022-07-16 thomas goto done;
1198 8a35f56c 2022-07-16 thomas }
1199 8a35f56c 2022-07-16 thomas
1200 dccd05b4 2023-01-10 thomas error = got_repo_match_object_id(&id2, NULL, rc->commit_id,
1201 8a35f56c 2022-07-16 thomas GOT_OBJ_TYPE_ANY, &refs, repo);
1202 8a35f56c 2022-07-16 thomas if (error)
1203 8a35f56c 2022-07-16 thomas goto done;
1204 8a35f56c 2022-07-16 thomas
1205 8a35f56c 2022-07-16 thomas error = got_object_get_type(&obj_type, repo, id2);
1206 8a35f56c 2022-07-16 thomas if (error)
1207 8a35f56c 2022-07-16 thomas goto done;
1208 8a35f56c 2022-07-16 thomas
1209 8a35f56c 2022-07-16 thomas error = got_gotweb_dupfd(&c->priv_fd[DIFF_FD_4], &fd4);
1210 8a35f56c 2022-07-16 thomas if (error)
1211 8a35f56c 2022-07-16 thomas goto done;
1212 8a35f56c 2022-07-16 thomas
1213 8a35f56c 2022-07-16 thomas error = got_gotweb_dupfd(&c->priv_fd[DIFF_FD_5], &fd5);
1214 8a35f56c 2022-07-16 thomas if (error)
1215 8a35f56c 2022-07-16 thomas goto done;
1216 8a35f56c 2022-07-16 thomas
1217 8a35f56c 2022-07-16 thomas switch (obj_type) {
1218 8a35f56c 2022-07-16 thomas case GOT_OBJ_TYPE_BLOB:
1219 8a35f56c 2022-07-16 thomas error = got_diff_objects_as_blobs(NULL, NULL, f1, f2, fd4, fd5,
1220 8a35f56c 2022-07-16 thomas id1, id2, NULL, NULL, GOT_DIFF_ALGORITHM_MYERS, 3, 0, 0,
1221 be97ab03 2023-01-19 thomas NULL, repo, f3);
1222 8a35f56c 2022-07-16 thomas break;
1223 8a35f56c 2022-07-16 thomas case GOT_OBJ_TYPE_TREE:
1224 8a35f56c 2022-07-16 thomas error = got_diff_objects_as_trees(NULL, NULL, f1, f2, fd4, fd5,
1225 8a35f56c 2022-07-16 thomas id1, id2, NULL, "", "", GOT_DIFF_ALGORITHM_MYERS, 3, 0, 0,
1226 be97ab03 2023-01-19 thomas NULL, repo, f3);
1227 8a35f56c 2022-07-16 thomas break;
1228 8a35f56c 2022-07-16 thomas case GOT_OBJ_TYPE_COMMIT:
1229 8a35f56c 2022-07-16 thomas error = got_diff_objects_as_commits(NULL, NULL, f1, f2, fd4,
1230 8a35f56c 2022-07-16 thomas fd5, id1, id2, NULL, GOT_DIFF_ALGORITHM_MYERS, 3, 0, 0,
1231 be97ab03 2023-01-19 thomas NULL, repo, f3);
1232 8a35f56c 2022-07-16 thomas break;
1233 8a35f56c 2022-07-16 thomas default:
1234 8a35f56c 2022-07-16 thomas error = got_error(GOT_ERR_OBJ_TYPE);
1235 8a35f56c 2022-07-16 thomas }
1236 8a35f56c 2022-07-16 thomas if (error)
1237 8a35f56c 2022-07-16 thomas goto done;
1238 8a35f56c 2022-07-16 thomas
1239 8a35f56c 2022-07-16 thomas if (fseek(f1, 0, SEEK_SET) == -1) {
1240 8a35f56c 2022-07-16 thomas error = got_ferror(f1, GOT_ERR_IO);
1241 8a35f56c 2022-07-16 thomas goto done;
1242 8a35f56c 2022-07-16 thomas }
1243 8a35f56c 2022-07-16 thomas
1244 8a35f56c 2022-07-16 thomas if (fseek(f2, 0, SEEK_SET) == -1) {
1245 8a35f56c 2022-07-16 thomas error = got_ferror(f2, GOT_ERR_IO);
1246 8a35f56c 2022-07-16 thomas goto done;
1247 8a35f56c 2022-07-16 thomas }
1248 8a35f56c 2022-07-16 thomas
1249 8a35f56c 2022-07-16 thomas if (fseek(f3, 0, SEEK_SET) == -1) {
1250 8a35f56c 2022-07-16 thomas error = got_ferror(f3, GOT_ERR_IO);
1251 8a35f56c 2022-07-16 thomas goto done;
1252 8a35f56c 2022-07-16 thomas }
1253 8a35f56c 2022-07-16 thomas
1254 dccd05b4 2023-01-10 thomas *fp = f3;
1255 dccd05b4 2023-01-10 thomas *fd = fd3;
1256 79393471 2022-08-27 thomas
1257 8a35f56c 2022-07-16 thomas done:
1258 8a35f56c 2022-07-16 thomas if (fd4 != -1 && close(fd4) == -1 && error == NULL)
1259 8a35f56c 2022-07-16 thomas error = got_error_from_errno("close");
1260 8a35f56c 2022-07-16 thomas if (fd5 != -1 && close(fd5) == -1 && error == NULL)
1261 8a35f56c 2022-07-16 thomas error = got_error_from_errno("close");
1262 8a35f56c 2022-07-16 thomas if (f1) {
1263 8a35f56c 2022-07-16 thomas const struct got_error *f1_err =
1264 8a35f56c 2022-07-16 thomas got_gotweb_flushfile(f1, fd1);
1265 8a35f56c 2022-07-16 thomas if (error == NULL)
1266 8a35f56c 2022-07-16 thomas error = f1_err;
1267 8a35f56c 2022-07-16 thomas }
1268 8a35f56c 2022-07-16 thomas if (f2) {
1269 8a35f56c 2022-07-16 thomas const struct got_error *f2_err =
1270 8a35f56c 2022-07-16 thomas got_gotweb_flushfile(f2, fd2);
1271 8a35f56c 2022-07-16 thomas if (error == NULL)
1272 8a35f56c 2022-07-16 thomas error = f2_err;
1273 8a35f56c 2022-07-16 thomas }
1274 dccd05b4 2023-01-10 thomas if (error && f3) {
1275 dccd05b4 2023-01-10 thomas got_gotweb_flushfile(f3, fd3);
1276 dccd05b4 2023-01-10 thomas *fp = NULL;
1277 dccd05b4 2023-01-10 thomas *fd = -1;
1278 8a35f56c 2022-07-16 thomas }
1279 8a35f56c 2022-07-16 thomas got_ref_list_free(&refs);
1280 8a35f56c 2022-07-16 thomas free(id1);
1281 8a35f56c 2022-07-16 thomas free(id2);
1282 8a35f56c 2022-07-16 thomas return error;
1283 8a35f56c 2022-07-16 thomas }
1284 8a35f56c 2022-07-16 thomas
1285 8a35f56c 2022-07-16 thomas static const struct got_error *
1286 8a35f56c 2022-07-16 thomas got_init_repo_commit(struct repo_commit **rc)
1287 8a35f56c 2022-07-16 thomas {
1288 8a35f56c 2022-07-16 thomas *rc = calloc(1, sizeof(**rc));
1289 8a35f56c 2022-07-16 thomas if (*rc == NULL)
1290 8a35f56c 2022-07-16 thomas return got_error_from_errno2("%s: calloc", __func__);
1291 8a35f56c 2022-07-16 thomas
1292 8a35f56c 2022-07-16 thomas (*rc)->path = NULL;
1293 8a35f56c 2022-07-16 thomas (*rc)->refs_str = NULL;
1294 8a35f56c 2022-07-16 thomas (*rc)->commit_id = NULL;
1295 8a35f56c 2022-07-16 thomas (*rc)->committer = NULL;
1296 8a35f56c 2022-07-16 thomas (*rc)->author = NULL;
1297 8a35f56c 2022-07-16 thomas (*rc)->parent_id = NULL;
1298 8a35f56c 2022-07-16 thomas (*rc)->tree_id = NULL;
1299 8a35f56c 2022-07-16 thomas (*rc)->commit_msg = NULL;
1300 8a35f56c 2022-07-16 thomas
1301 e2af4cd7 2022-08-31 thomas return NULL;
1302 8a35f56c 2022-07-16 thomas }
1303 8a35f56c 2022-07-16 thomas
1304 8a35f56c 2022-07-16 thomas static const struct got_error *
1305 8a35f56c 2022-07-16 thomas got_init_repo_tag(struct repo_tag **rt)
1306 8a35f56c 2022-07-16 thomas {
1307 8a35f56c 2022-07-16 thomas *rt = calloc(1, sizeof(**rt));
1308 8a35f56c 2022-07-16 thomas if (*rt == NULL)
1309 8a35f56c 2022-07-16 thomas return got_error_from_errno2("%s: calloc", __func__);
1310 8a35f56c 2022-07-16 thomas
1311 8a35f56c 2022-07-16 thomas (*rt)->commit_id = NULL;
1312 8a35f56c 2022-07-16 thomas (*rt)->tag_name = NULL;
1313 8a35f56c 2022-07-16 thomas (*rt)->tag_commit = NULL;
1314 8a35f56c 2022-07-16 thomas (*rt)->commit_msg = NULL;
1315 8a35f56c 2022-07-16 thomas (*rt)->tagger = NULL;
1316 8a35f56c 2022-07-16 thomas
1317 e2af4cd7 2022-08-31 thomas return NULL;
1318 8a35f56c 2022-07-16 thomas }