2 9460dac0 2020-01-15 tracey * Copyright (c) 2019, 2020 Tracey Emery <tracey@traceyemery.net>
3 2c251c14 2020-01-15 tracey * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
5 2c251c14 2020-01-15 tracey * Permission to use, copy, modify, and distribute this software for any
6 2c251c14 2020-01-15 tracey * purpose with or without fee is hereby granted, provided that the above
7 2c251c14 2020-01-15 tracey * copyright notice and this permission notice appear in all copies.
9 2c251c14 2020-01-15 tracey * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 2c251c14 2020-01-15 tracey * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 2c251c14 2020-01-15 tracey * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 2c251c14 2020-01-15 tracey * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 2c251c14 2020-01-15 tracey * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 2c251c14 2020-01-15 tracey * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 2c251c14 2020-01-15 tracey * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 2c251c14 2020-01-15 tracey #include <sys/queue.h>
19 2c251c14 2020-01-15 tracey #include <sys/stat.h>
20 2c251c14 2020-01-15 tracey #include <sys/types.h>
22 017d6da3 2020-01-29 tracey #include <ctype.h>
23 2c251c14 2020-01-15 tracey #include <dirent.h>
24 2c251c14 2020-01-15 tracey #include <err.h>
25 c25c2314 2020-01-28 stsp #include <errno.h>
26 474370cb 2020-01-15 tracey #include <regex.h>
27 d7b5a0e8 2022-04-20 stsp #include <sha1.h>
28 2c251c14 2020-01-15 tracey #include <stdarg.h>
29 2c251c14 2020-01-15 tracey #include <stdint.h>
30 2c251c14 2020-01-15 tracey #include <stdio.h>
31 2c251c14 2020-01-15 tracey #include <stdlib.h>
32 2c251c14 2020-01-15 tracey #include <string.h>
33 2c251c14 2020-01-15 tracey #include <unistd.h>
35 c34ec417 2020-06-22 tracey #include <got_error.h>
36 2c251c14 2020-01-15 tracey #include <got_object.h>
37 2c251c14 2020-01-15 tracey #include <got_reference.h>
38 2c251c14 2020-01-15 tracey #include <got_repository.h>
39 2c251c14 2020-01-15 tracey #include <got_path.h>
40 2c251c14 2020-01-15 tracey #include <got_cancel.h>
41 2c251c14 2020-01-15 tracey #include <got_worktree.h>
42 2c251c14 2020-01-15 tracey #include <got_diff.h>
43 2c251c14 2020-01-15 tracey #include <got_commit_graph.h>
44 2c251c14 2020-01-15 tracey #include <got_blame.h>
45 2c251c14 2020-01-15 tracey #include <got_privsep.h>
46 2c251c14 2020-01-15 tracey #include <got_opentemp.h>
48 2c251c14 2020-01-15 tracey #include <kcgi.h>
49 2c251c14 2020-01-15 tracey #include <kcgihtml.h>
51 2c251c14 2020-01-15 tracey #include "gotweb.h"
53 2c251c14 2020-01-15 tracey #ifndef nitems
54 2c251c14 2020-01-15 tracey #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
57 54415d85 2020-01-15 tracey struct gw_trans {
58 f2f46662 2020-01-23 tracey TAILQ_HEAD(headers, gw_header) gw_headers;
59 f2f46662 2020-01-23 tracey TAILQ_HEAD(dirs, gw_dir) gw_dirs;
60 deac617c 2020-02-14 tracey struct got_repository *repo;
61 46b9c89b 2020-01-15 tracey struct gw_dir *gw_dir;
62 c34ec417 2020-06-22 tracey struct gotweb_config *gw_conf;
63 2c251c14 2020-01-15 tracey struct ktemplate *gw_tmpl;
64 2c251c14 2020-01-15 tracey struct khtmlreq *gw_html_req;
65 2c251c14 2020-01-15 tracey struct kreq *gw_req;
66 f1200fe3 2020-02-13 tracey const struct got_error *error;
67 f652ec0c 2020-02-13 stsp const char *repo_name;
68 2c251c14 2020-01-15 tracey char *repo_path;
69 56997cd3 2020-02-14 tracey char *commit_id;
70 55e46400 2020-02-18 tracey char *next_id;
71 55e46400 2020-02-18 tracey char *prev_id;
72 4d6abe2b 2020-02-13 stsp const char *repo_file;
73 ec46ccd7 2020-01-15 tracey char *repo_folder;
74 742ba378 2020-02-14 stsp const char *headref;
75 2c251c14 2020-01-15 tracey unsigned int action;
76 2c251c14 2020-01-15 tracey unsigned int page;
77 2c251c14 2020-01-15 tracey unsigned int repos_total;
78 387a29ba 2020-01-15 tracey enum kmime mime;
79 b0c3aa90 2022-06-15 tracey int *pack_fds;
82 f2f46662 2020-01-23 tracey struct gw_header {
83 f2f46662 2020-01-23 tracey TAILQ_ENTRY(gw_header) entry;
84 f2f46662 2020-01-23 tracey struct got_reflist_head refs;
85 f2f46662 2020-01-23 tracey char *path;
87 f2f46662 2020-01-23 tracey char *refs_str;
88 f2f46662 2020-01-23 tracey char *commit_id; /* id_str1 */
89 f2f46662 2020-01-23 tracey char *parent_id; /* id_str2 */
90 f2f46662 2020-01-23 tracey char *tree_id;
91 4e8d6e3e 2020-02-14 tracey char *author;
92 4e8d6e3e 2020-02-14 tracey char *committer;
93 f2f46662 2020-01-23 tracey char *commit_msg;
94 f2f46662 2020-01-23 tracey time_t committer_time;
97 2c251c14 2020-01-15 tracey struct gw_dir {
98 2c251c14 2020-01-15 tracey TAILQ_ENTRY(gw_dir) entry;
99 2c251c14 2020-01-15 tracey char *name;
100 2c251c14 2020-01-15 tracey char *owner;
101 2c251c14 2020-01-15 tracey char *description;
102 2c251c14 2020-01-15 tracey char *url;
103 2c251c14 2020-01-15 tracey char *age;
104 2c251c14 2020-01-15 tracey char *path;
107 f2f46662 2020-01-23 tracey enum gw_key {
108 f2f46662 2020-01-23 tracey KEY_ACTION,
109 f2f46662 2020-01-23 tracey KEY_COMMIT_ID,
110 f2f46662 2020-01-23 tracey KEY_FILE,
111 f2f46662 2020-01-23 tracey KEY_FOLDER,
112 f2f46662 2020-01-23 tracey KEY_HEADREF,
113 f2f46662 2020-01-23 tracey KEY_PAGE,
114 f2f46662 2020-01-23 tracey KEY_PATH,
115 55e46400 2020-02-18 tracey KEY_PREV_ID,
116 f2f46662 2020-01-23 tracey KEY__ZMAX
119 54415d85 2020-01-15 tracey enum gw_tmpl {
120 f2f46662 2020-01-23 tracey TEMPL_CONTENT,
121 2c251c14 2020-01-15 tracey TEMPL_HEAD,
122 2c251c14 2020-01-15 tracey TEMPL_HEADER,
123 f2f46662 2020-01-23 tracey TEMPL_SEARCH,
124 2c251c14 2020-01-15 tracey TEMPL_SITEPATH,
125 2c251c14 2020-01-15 tracey TEMPL_SITEOWNER,
126 2c251c14 2020-01-15 tracey TEMPL_TITLE,
127 2c251c14 2020-01-15 tracey TEMPL__MAX
130 54415d85 2020-01-15 tracey enum gw_ref_tm {
135 ff4bb25f 2020-02-19 tracey enum gw_tags_type {
136 87f9ebf5 2020-01-15 tracey TAGBRIEF,
140 54415d85 2020-01-15 tracey static const char *const gw_templs[TEMPL__MAX] = {
141 f2f46662 2020-01-23 tracey "content",
143 2c251c14 2020-01-15 tracey "header",
144 f2f46662 2020-01-23 tracey "search",
145 2c251c14 2020-01-15 tracey "sitepath",
146 2c251c14 2020-01-15 tracey "siteowner",
150 ec46ccd7 2020-01-15 tracey static const struct kvalid gw_keys[KEY__ZMAX] = {
151 2c251c14 2020-01-15 tracey { kvalid_stringne, "action" },
152 2c251c14 2020-01-15 tracey { kvalid_stringne, "commit" },
153 2c251c14 2020-01-15 tracey { kvalid_stringne, "file" },
154 ec46ccd7 2020-01-15 tracey { kvalid_stringne, "folder" },
155 8087c3c5 2020-01-15 tracey { kvalid_stringne, "headref" },
156 ec46ccd7 2020-01-15 tracey { kvalid_int, "page" },
157 ec46ccd7 2020-01-15 tracey { kvalid_stringne, "path" },
158 55e46400 2020-02-18 tracey { kvalid_stringne, "prev" },
161 f2f46662 2020-01-23 tracey static struct gw_header *gw_init_header(void);
163 b0a1bc86 2020-02-14 stsp static void gw_free_header(struct gw_header *);
165 00f13350 2020-02-10 tracey static int gw_template(size_t, void *);
167 f1200fe3 2020-02-13 tracey static const struct got_error *gw_error(struct gw_trans *);
168 f1200fe3 2020-02-13 tracey static const struct got_error *gw_init_gw_dir(struct gw_dir **, const char *);
169 185ba3ba 2020-02-04 tracey static const struct got_error *gw_get_repo_description(char **,
170 185ba3ba 2020-02-04 tracey struct gw_trans *, char *);
171 9a1cc63f 2020-02-03 stsp static const struct got_error *gw_get_repo_owner(char **, struct gw_trans *,
173 55ccf528 2020-02-03 stsp static const struct got_error *gw_get_time_str(char **, time_t, int);
174 d126c1b7 2020-01-29 stsp static const struct got_error *gw_get_repo_age(char **, struct gw_trans *,
175 2011c142 2020-02-14 stsp char *, const char *, int);
176 84de9106 2020-12-26 stsp static const struct got_error *gw_output_file_blame(struct gw_trans *,
177 84de9106 2020-12-26 stsp struct gw_header *);
178 84de9106 2020-12-26 stsp static const struct got_error *gw_output_blob_buf(struct gw_trans *,
179 84de9106 2020-12-26 stsp struct gw_header *);
180 84de9106 2020-12-26 stsp static const struct got_error *gw_output_repo_tree(struct gw_trans *,
181 84de9106 2020-12-26 stsp struct gw_header *);
182 38b240fb 2020-02-06 tracey static const struct got_error *gw_output_diff(struct gw_trans *,
183 f2f46662 2020-01-23 tracey struct gw_header *);
184 38b240fb 2020-02-06 tracey static const struct got_error *gw_output_repo_tags(struct gw_trans *,
185 4ff7391f 2020-01-28 tracey struct gw_header *, int, int);
186 9eed6f10 2020-02-08 tracey static const struct got_error *gw_output_repo_heads(struct gw_trans *);
187 4ae179a2 2020-02-08 tracey static const struct got_error *gw_output_site_link(struct gw_trans *);
188 185ba3ba 2020-02-04 tracey static const struct got_error *gw_get_clone_url(char **, struct gw_trans *,
190 f7cc9480 2020-02-05 tracey static const struct got_error *gw_colordiff_line(struct gw_trans *, char *);
192 21a55cc7 2020-02-04 tracey static const struct got_error *gw_gen_commit_header(struct gw_trans *, char *,
194 f7cc9480 2020-02-05 tracey static const struct got_error *gw_gen_diff_header(struct gw_trans *, char *,
196 21a55cc7 2020-02-04 tracey static const struct got_error *gw_gen_author_header(struct gw_trans *,
197 21a55cc7 2020-02-04 tracey const char *);
198 21a55cc7 2020-02-04 tracey static const struct got_error *gw_gen_age_header(struct gw_trans *,
199 21a55cc7 2020-02-04 tracey const char *);
200 21a55cc7 2020-02-04 tracey static const struct got_error *gw_gen_committer_header(struct gw_trans *,
201 21a55cc7 2020-02-04 tracey const char *);
202 f7cc9480 2020-02-05 tracey static const struct got_error *gw_gen_commit_msg_header(struct gw_trans*,
204 f7cc9480 2020-02-05 tracey static const struct got_error *gw_gen_tree_header(struct gw_trans *, char *);
205 00f13350 2020-02-10 tracey static const struct got_error *gw_display_open(struct gw_trans *, enum khttp,
206 2c251c14 2020-01-15 tracey enum kmime);
207 00f13350 2020-02-10 tracey static const struct got_error *gw_display_index(struct gw_trans *);
208 00f13350 2020-02-10 tracey static const struct got_error *gw_get_header(struct gw_trans *,
209 f2f46662 2020-01-23 tracey struct gw_header *, int);
210 00f13350 2020-02-10 tracey static const struct got_error *gw_get_commits(struct gw_trans *,
211 3c245a0e 2020-02-14 tracey struct gw_header *, int,
212 3c245a0e 2020-02-14 tracey struct got_object_id *);
213 00f13350 2020-02-10 tracey static const struct got_error *gw_get_commit(struct gw_trans *,
214 4e8d6e3e 2020-02-14 tracey struct gw_header *,
215 4e8d6e3e 2020-02-14 tracey struct got_commit_object *,
216 3c245a0e 2020-02-14 tracey struct got_object_id *);
217 d4159696 2020-02-13 stsp static const struct got_error *gw_apply_unveil(const char *);
218 00f13350 2020-02-10 tracey static const struct got_error *gw_blame_cb(void *, int, int,
219 392891ce 2022-04-07 stsp struct got_commit_object *,
220 ec46ccd7 2020-01-15 tracey struct got_object_id *);
221 00f13350 2020-02-10 tracey static const struct got_error *gw_load_got_paths(struct gw_trans *);
222 00f13350 2020-02-10 tracey static const struct got_error *gw_load_got_path(struct gw_trans *,
223 2c251c14 2020-01-15 tracey struct gw_dir *);
224 00f13350 2020-02-10 tracey static const struct got_error *gw_parse_querystring(struct gw_trans *);
225 00f13350 2020-02-10 tracey static const struct got_error *gw_blame(struct gw_trans *);
226 00f13350 2020-02-10 tracey static const struct got_error *gw_blob(struct gw_trans *);
227 00f13350 2020-02-10 tracey static const struct got_error *gw_diff(struct gw_trans *);
228 00f13350 2020-02-10 tracey static const struct got_error *gw_index(struct gw_trans *);
229 00f13350 2020-02-10 tracey static const struct got_error *gw_commits(struct gw_trans *);
230 00f13350 2020-02-10 tracey static const struct got_error *gw_briefs(struct gw_trans *);
231 00f13350 2020-02-10 tracey static const struct got_error *gw_summary(struct gw_trans *);
232 00f13350 2020-02-10 tracey static const struct got_error *gw_tree(struct gw_trans *);
233 00f13350 2020-02-10 tracey static const struct got_error *gw_tag(struct gw_trans *);
234 ff4bb25f 2020-02-19 tracey static const struct got_error *gw_tags(struct gw_trans *);
236 2c251c14 2020-01-15 tracey struct gw_query_action {
237 2c251c14 2020-01-15 tracey unsigned int func_id;
238 2c251c14 2020-01-15 tracey const char *func_name;
239 54415d85 2020-01-15 tracey const struct got_error *(*func_main)(struct gw_trans *);
240 58e31a80 2022-06-27 op const char *template;
243 2c251c14 2020-01-15 tracey enum gw_query_actions {
244 2c251c14 2020-01-15 tracey GW_BLAME,
246 f2f46662 2020-01-23 tracey GW_BRIEFS,
247 f2f46662 2020-01-23 tracey GW_COMMITS,
250 2c251c14 2020-01-15 tracey GW_INDEX,
251 2c251c14 2020-01-15 tracey GW_SUMMARY,
257 d58ddaf3 2022-03-17 naddy static const struct gw_query_action gw_query_funcs[] = {
258 f2f46662 2020-01-23 tracey { GW_BLAME, "blame", gw_blame, "gw_tmpl/blame.tmpl" },
259 017d6da3 2020-01-29 tracey { GW_BLOB, "blob", NULL, NULL },
260 f2f46662 2020-01-23 tracey { GW_BRIEFS, "briefs", gw_briefs, "gw_tmpl/briefs.tmpl" },
261 f2f46662 2020-01-23 tracey { GW_COMMITS, "commits", gw_commits, "gw_tmpl/commit.tmpl" },
262 f2f46662 2020-01-23 tracey { GW_DIFF, "diff", gw_diff, "gw_tmpl/diff.tmpl" },
263 f1200fe3 2020-02-13 tracey { GW_ERR, "error", gw_error, "gw_tmpl/err.tmpl" },
264 f2f46662 2020-01-23 tracey { GW_INDEX, "index", gw_index, "gw_tmpl/index.tmpl" },
265 f2f46662 2020-01-23 tracey { GW_SUMMARY, "summary", gw_summary, "gw_tmpl/summry.tmpl" },
266 4ff7391f 2020-01-28 tracey { GW_TAG, "tag", gw_tag, "gw_tmpl/tag.tmpl" },
267 ff4bb25f 2020-02-19 tracey { GW_TAGS, "tags", gw_tags, "gw_tmpl/tags.tmpl" },
268 f2f46662 2020-01-23 tracey { GW_TREE, "tree", gw_tree, "gw_tmpl/tree.tmpl" },
271 5d1296de 2020-02-13 stsp static const char *
272 5d1296de 2020-02-13 stsp gw_get_action_name(struct gw_trans *gw_trans)
274 5d1296de 2020-02-13 stsp return gw_query_funcs[gw_trans->action].func_name;
277 c25c2314 2020-01-28 stsp static const struct got_error *
278 c25c2314 2020-01-28 stsp gw_kcgi_error(enum kcgi_err kerr)
280 c25c2314 2020-01-28 stsp if (kerr == KCGI_OK)
281 c25c2314 2020-01-28 stsp return NULL;
283 c25c2314 2020-01-28 stsp if (kerr == KCGI_EXIT || kerr == KCGI_HUP)
284 c25c2314 2020-01-28 stsp return got_error(GOT_ERR_CANCELLED);
286 c25c2314 2020-01-28 stsp if (kerr == KCGI_ENOMEM)
287 f7cc9480 2020-02-05 tracey return got_error_set_errno(ENOMEM,
288 7afec891 2020-02-06 stsp kcgi_strerror(kerr));
290 c25c2314 2020-01-28 stsp if (kerr == KCGI_ENFILE)
291 f7cc9480 2020-02-05 tracey return got_error_set_errno(ENFILE,
292 7afec891 2020-02-06 stsp kcgi_strerror(kerr));
294 c25c2314 2020-01-28 stsp if (kerr == KCGI_EAGAIN)
295 f7cc9480 2020-02-05 tracey return got_error_set_errno(EAGAIN,
296 7afec891 2020-02-06 stsp kcgi_strerror(kerr));
298 c25c2314 2020-01-28 stsp if (kerr == KCGI_FORM)
299 f7cc9480 2020-02-05 tracey return got_error_msg(GOT_ERR_IO,
300 7afec891 2020-02-06 stsp kcgi_strerror(kerr));
302 7afec891 2020-02-06 stsp return got_error_from_errno(kcgi_strerror(kerr));
305 2c251c14 2020-01-15 tracey static const struct got_error *
306 d4159696 2020-02-13 stsp gw_apply_unveil(const char *repo_path)
308 2c251c14 2020-01-15 tracey const struct got_error *err;
310 245c7240 2021-06-17 stsp #ifdef PROFILE
311 245c7240 2021-06-17 stsp if (unveil("gmon.out", "rwc") != 0)
312 245c7240 2021-06-17 stsp return got_error_from_errno2("unveil", "gmon.out");
314 2c251c14 2020-01-15 tracey if (repo_path && unveil(repo_path, "r") != 0)
315 2c251c14 2020-01-15 tracey return got_error_from_errno2("unveil", repo_path);
317 bb63914a 2020-02-17 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
318 bb63914a 2020-02-17 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
320 2c251c14 2020-01-15 tracey err = got_privsep_unveil_exec_helpers();
321 2c251c14 2020-01-15 tracey if (err != NULL)
322 2c251c14 2020-01-15 tracey return err;
324 2c251c14 2020-01-15 tracey if (unveil(NULL, NULL) != 0)
325 2c251c14 2020-01-15 tracey return got_error_from_errno("unveil");
327 32cd4d18 2020-02-03 stsp return NULL;
331 e0857cfe 2020-02-06 tracey isbinary(const uint8_t *buf, size_t n)
333 e0857cfe 2020-02-06 tracey size_t i;
335 e0857cfe 2020-02-06 tracey for (i = 0; i < n; i++)
336 e0857cfe 2020-02-06 tracey if (buf[i] == 0)
337 e0857cfe 2020-02-06 tracey return 1;
338 e0857cfe 2020-02-06 tracey return 0;
341 32cd4d18 2020-02-03 stsp static const struct got_error *
342 54415d85 2020-01-15 tracey gw_blame(struct gw_trans *gw_trans)
344 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
345 f2f46662 2020-01-23 tracey struct gw_header *header = NULL;
346 78a9dab5 2020-02-07 tracey char *age = NULL;
347 1b33afc0 2020-02-14 tracey enum kcgi_err kerr = KCGI_OK;
349 7a6dddae 2021-06-18 stsp #ifndef PROFILE
350 6bee13de 2020-01-16 tracey if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
351 f2f46662 2020-01-23 tracey NULL) == -1)
352 f2f46662 2020-01-23 tracey return got_error_from_errno("pledge");
354 f2f46662 2020-01-23 tracey if ((header = gw_init_header()) == NULL)
355 f2f46662 2020-01-23 tracey return got_error_from_errno("malloc");
357 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_dir->path);
358 ec46ccd7 2020-01-15 tracey if (error)
361 1b33afc0 2020-02-14 tracey /* check querystring */
362 1b33afc0 2020-02-14 tracey if (gw_trans->repo_file == NULL) {
363 1b33afc0 2020-02-14 tracey error = got_error_msg(GOT_ERR_QUERYSTRING,
364 1b33afc0 2020-02-14 tracey "file required in querystring");
365 1b33afc0 2020-02-14 tracey goto done;
367 1b33afc0 2020-02-14 tracey if (gw_trans->commit_id == NULL) {
368 1b33afc0 2020-02-14 tracey error = got_error_msg(GOT_ERR_QUERYSTRING,
369 1b33afc0 2020-02-14 tracey "commit required in querystring");
370 1b33afc0 2020-02-14 tracey goto done;
373 f2f46662 2020-01-23 tracey error = gw_get_header(gw_trans, header, 1);
374 f2f46662 2020-01-23 tracey if (error)
376 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
377 9a9d12ca 2020-02-06 tracey "blame_header_wrapper", KATTR__MAX);
378 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
379 9a9d12ca 2020-02-06 tracey goto done;
380 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
381 9a9d12ca 2020-02-06 tracey "blame_header", KATTR__MAX);
382 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
383 9a9d12ca 2020-02-06 tracey goto done;
384 9a9d12ca 2020-02-06 tracey error = gw_get_time_str(&age, header->committer_time,
385 9a9d12ca 2020-02-06 tracey TM_LONG);
388 9a9d12ca 2020-02-06 tracey error = gw_gen_age_header(gw_trans, age ?age : "");
391 9a9d12ca 2020-02-06 tracey error = gw_gen_commit_msg_header(gw_trans, header->commit_msg);
392 9a9d12ca 2020-02-06 tracey if (error)
394 9a9d12ca 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
395 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
397 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
398 9a9d12ca 2020-02-06 tracey "dotted_line", KATTR__MAX);
399 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
400 9a9d12ca 2020-02-06 tracey goto done;
401 9a9d12ca 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
402 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
403 9a9d12ca 2020-02-06 tracey goto done;
405 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
406 9a9d12ca 2020-02-06 tracey "blame", KATTR__MAX);
407 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
408 9a9d12ca 2020-02-06 tracey goto done;
409 84de9106 2020-12-26 stsp error = gw_output_file_blame(gw_trans, header);
410 9a9d12ca 2020-02-06 tracey if (error)
411 9a9d12ca 2020-02-06 tracey goto done;
412 9a9d12ca 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
414 b0a1bc86 2020-02-14 stsp gw_free_header(header);
415 9a9d12ca 2020-02-06 tracey if (error == NULL && kerr != KCGI_OK)
416 9a9d12ca 2020-02-06 tracey error = gw_kcgi_error(kerr);
417 2c251c14 2020-01-15 tracey return error;
420 2c251c14 2020-01-15 tracey static const struct got_error *
421 e46f587c 2020-01-29 tracey gw_blob(struct gw_trans *gw_trans)
423 3b7fdcf4 2020-02-14 tracey const struct got_error *error = NULL, *err = NULL;
424 e46f587c 2020-01-29 tracey struct gw_header *header = NULL;
425 3b7fdcf4 2020-02-14 tracey enum kcgi_err kerr = KCGI_OK;
427 7a6dddae 2021-06-18 stsp #ifndef PROFILE
428 e46f587c 2020-01-29 tracey if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
429 e46f587c 2020-01-29 tracey NULL) == -1)
430 e46f587c 2020-01-29 tracey return got_error_from_errno("pledge");
432 e46f587c 2020-01-29 tracey if ((header = gw_init_header()) == NULL)
433 e46f587c 2020-01-29 tracey return got_error_from_errno("malloc");
435 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_dir->path);
436 e46f587c 2020-01-29 tracey if (error)
437 e46f587c 2020-01-29 tracey goto done;
439 3b7fdcf4 2020-02-14 tracey /* check querystring */
440 3b7fdcf4 2020-02-14 tracey if (gw_trans->repo_file == NULL) {
441 3b7fdcf4 2020-02-14 tracey error = got_error_msg(GOT_ERR_QUERYSTRING,
442 3b7fdcf4 2020-02-14 tracey "file required in querystring");
443 3b7fdcf4 2020-02-14 tracey goto done;
445 3b7fdcf4 2020-02-14 tracey if (gw_trans->commit_id == NULL) {
446 3b7fdcf4 2020-02-14 tracey error = got_error_msg(GOT_ERR_QUERYSTRING,
447 3b7fdcf4 2020-02-14 tracey "commit required in querystring");
448 3b7fdcf4 2020-02-14 tracey goto done;
450 e46f587c 2020-01-29 tracey error = gw_get_header(gw_trans, header, 1);
451 e46f587c 2020-01-29 tracey if (error)
452 e46f587c 2020-01-29 tracey goto done;
454 84de9106 2020-12-26 stsp error = gw_output_blob_buf(gw_trans, header);
456 3b7fdcf4 2020-02-14 tracey if (error) {
457 3b7fdcf4 2020-02-14 tracey gw_trans->mime = KMIME_TEXT_PLAIN;
458 3b7fdcf4 2020-02-14 tracey err = gw_display_index(gw_trans);
459 3b7fdcf4 2020-02-14 tracey if (err) {
460 3b7fdcf4 2020-02-14 tracey error = err;
461 3b7fdcf4 2020-02-14 tracey goto errored;
463 3b7fdcf4 2020-02-14 tracey kerr = khttp_puts(gw_trans->gw_req, error->msg);
466 b0a1bc86 2020-02-14 stsp gw_free_header(header);
467 3b7fdcf4 2020-02-14 tracey if (error == NULL && kerr != KCGI_OK)
468 3b7fdcf4 2020-02-14 tracey error = gw_kcgi_error(kerr);
469 e46f587c 2020-01-29 tracey return error;
472 e46f587c 2020-01-29 tracey static const struct got_error *
473 f2f46662 2020-01-23 tracey gw_diff(struct gw_trans *gw_trans)
475 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
476 f2f46662 2020-01-23 tracey struct gw_header *header = NULL;
477 78a9dab5 2020-02-07 tracey char *age = NULL;
478 f7cc9480 2020-02-05 tracey enum kcgi_err kerr = KCGI_OK;
480 7a6dddae 2021-06-18 stsp #ifndef PROFILE
481 f2f46662 2020-01-23 tracey if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
482 f2f46662 2020-01-23 tracey NULL) == -1)
483 f2f46662 2020-01-23 tracey return got_error_from_errno("pledge");
485 ae36ed87 2020-01-28 stsp if ((header = gw_init_header()) == NULL)
486 f2f46662 2020-01-23 tracey return got_error_from_errno("malloc");
488 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_dir->path);
489 8087c3c5 2020-01-15 tracey if (error)
492 f2f46662 2020-01-23 tracey error = gw_get_header(gw_trans, header, 1);
493 f2f46662 2020-01-23 tracey if (error)
496 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
497 f7cc9480 2020-02-05 tracey "diff_header_wrapper", KATTR__MAX);
498 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
499 f7cc9480 2020-02-05 tracey goto done;
500 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
501 f7cc9480 2020-02-05 tracey "diff_header", KATTR__MAX);
502 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
503 f7cc9480 2020-02-05 tracey goto done;
504 f7cc9480 2020-02-05 tracey error = gw_gen_diff_header(gw_trans, header->parent_id,
505 f7cc9480 2020-02-05 tracey header->commit_id);
506 f7cc9480 2020-02-05 tracey if (error)
507 f7cc9480 2020-02-05 tracey goto done;
508 f7cc9480 2020-02-05 tracey error = gw_gen_commit_header(gw_trans, header->commit_id,
509 f7cc9480 2020-02-05 tracey header->refs_str);
510 f7cc9480 2020-02-05 tracey if (error)
511 f7cc9480 2020-02-05 tracey goto done;
512 f7cc9480 2020-02-05 tracey error = gw_gen_tree_header(gw_trans, header->tree_id);
513 f7cc9480 2020-02-05 tracey if (error)
514 f7cc9480 2020-02-05 tracey goto done;
515 f7cc9480 2020-02-05 tracey error = gw_gen_author_header(gw_trans, header->author);
516 f7cc9480 2020-02-05 tracey if (error)
517 f7cc9480 2020-02-05 tracey goto done;
518 f7cc9480 2020-02-05 tracey error = gw_gen_committer_header(gw_trans, header->author);
519 f7cc9480 2020-02-05 tracey if (error)
520 f7cc9480 2020-02-05 tracey goto done;
521 f7cc9480 2020-02-05 tracey error = gw_get_time_str(&age, header->committer_time,
522 f7cc9480 2020-02-05 tracey TM_LONG);
523 f7cc9480 2020-02-05 tracey if (error)
524 f7cc9480 2020-02-05 tracey goto done;
525 f7cc9480 2020-02-05 tracey error = gw_gen_age_header(gw_trans, age ?age : "");
528 f7cc9480 2020-02-05 tracey error = gw_gen_commit_msg_header(gw_trans, header->commit_msg);
529 f7cc9480 2020-02-05 tracey if (error)
531 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
532 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
534 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
535 f7cc9480 2020-02-05 tracey "dotted_line", KATTR__MAX);
536 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
537 f7cc9480 2020-02-05 tracey goto done;
538 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
539 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
540 f7cc9480 2020-02-05 tracey goto done;
542 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
543 f7cc9480 2020-02-05 tracey "diff", KATTR__MAX);
544 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
545 f7cc9480 2020-02-05 tracey goto done;
546 38b240fb 2020-02-06 tracey error = gw_output_diff(gw_trans, header);
547 f7cc9480 2020-02-05 tracey if (error)
548 f7cc9480 2020-02-05 tracey goto done;
550 b4fba448 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
552 b0a1bc86 2020-02-14 stsp gw_free_header(header);
554 f7cc9480 2020-02-05 tracey if (error == NULL && kerr != KCGI_OK)
555 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
556 2204c934 2020-01-15 tracey return error;
559 2204c934 2020-01-15 tracey static const struct got_error *
560 54415d85 2020-01-15 tracey gw_index(struct gw_trans *gw_trans)
562 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
563 46b9c89b 2020-01-15 tracey struct gw_dir *gw_dir = NULL;
564 b3f1f953 2020-02-09 tracey char *href_next = NULL, *href_prev = NULL, *href_summary = NULL;
565 b3f1f953 2020-02-09 tracey char *href_briefs = NULL, *href_commits = NULL, *href_tree = NULL;
566 ff4bb25f 2020-02-19 tracey char *href_tags = NULL;
567 387a29ba 2020-01-15 tracey unsigned int prev_disp = 0, next_disp = 1, dir_c = 0;
568 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
570 7a6dddae 2021-06-18 stsp #ifndef PROFILE
571 0ae84acc 2022-06-15 tracey if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
572 6bee13de 2020-01-16 tracey NULL) == -1) {
573 6bee13de 2020-01-16 tracey error = got_error_from_errno("pledge");
574 6bee13de 2020-01-16 tracey return error;
577 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_conf->got_repos_path);
578 46b9c89b 2020-01-15 tracey if (error)
579 46b9c89b 2020-01-15 tracey return error;
581 2c251c14 2020-01-15 tracey error = gw_load_got_paths(gw_trans);
582 46b9c89b 2020-01-15 tracey if (error)
583 2c251c14 2020-01-15 tracey return error;
585 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
586 b3f1f953 2020-02-09 tracey "index_header", KATTR__MAX);
587 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
588 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
589 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
590 b3f1f953 2020-02-09 tracey "index_header_project", KATTR__MAX);
591 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
592 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
593 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Project");
594 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
595 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
596 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
597 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
598 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
600 b3f1f953 2020-02-09 tracey if (gw_trans->gw_conf->got_show_repo_description) {
601 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
602 b3f1f953 2020-02-09 tracey "index_header_description", KATTR__MAX);
603 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
604 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
605 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Description");
606 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
607 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
608 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
609 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
610 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
613 b3f1f953 2020-02-09 tracey if (gw_trans->gw_conf->got_show_repo_owner) {
614 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
615 b3f1f953 2020-02-09 tracey "index_header_owner", KATTR__MAX);
616 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
617 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
618 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Owner");
619 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
620 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
621 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
622 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
623 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
626 b3f1f953 2020-02-09 tracey if (gw_trans->gw_conf->got_show_repo_age) {
627 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
628 b3f1f953 2020-02-09 tracey "index_header_age", KATTR__MAX);
629 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
630 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
631 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Last Change");
632 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
633 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
634 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
635 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
636 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
639 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
640 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
641 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
643 b3f1f953 2020-02-09 tracey if (TAILQ_EMPTY(&gw_trans->gw_dirs)) {
644 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
645 b3f1f953 2020-02-09 tracey "index_wrapper", KATTR__MAX);
646 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
647 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
648 32b9f7ed 2020-04-14 tracey kerr = khtml_printf(gw_trans->gw_html_req,
649 32b9f7ed 2020-04-14 tracey "No repositories found in %s",
650 b3f1f953 2020-02-09 tracey gw_trans->gw_conf->got_repos_path);
651 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
652 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
653 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
654 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
655 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
656 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
657 b3f1f953 2020-02-09 tracey "dotted_line", KATTR__MAX);
658 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
659 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
660 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
661 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
662 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
663 c25c2314 2020-01-28 stsp return error;
666 46b9c89b 2020-01-15 tracey TAILQ_FOREACH(gw_dir, &gw_trans->gw_dirs, entry)
669 46b9c89b 2020-01-15 tracey TAILQ_FOREACH(gw_dir, &gw_trans->gw_dirs, entry) {
670 2c251c14 2020-01-15 tracey if (gw_trans->page > 0 && (gw_trans->page *
671 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_max_repos_display) > prev_disp) {
672 2c251c14 2020-01-15 tracey prev_disp++;
673 2c251c14 2020-01-15 tracey continue;
676 2c251c14 2020-01-15 tracey prev_disp++;
678 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
679 b3f1f953 2020-02-09 tracey "index_wrapper", KATTR__MAX);
680 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
683 2796ac23 2020-04-14 tracey href_summary = khttp_urlpart(NULL, NULL, "gotweb", "path",
684 2796ac23 2020-04-14 tracey gw_dir->name, "action", "summary", NULL);
685 19ff7638 2020-04-14 tracey if (href_summary == NULL) {
686 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
687 19ff7638 2020-04-14 tracey goto done;
689 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
690 b3f1f953 2020-02-09 tracey "index_project", KATTR__MAX);
691 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
692 b3f1f953 2020-02-09 tracey goto done;
693 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
694 b3f1f953 2020-02-09 tracey href_summary, KATTR__MAX);
695 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
696 b3f1f953 2020-02-09 tracey goto done;
697 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, gw_dir->name);
698 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
699 b3f1f953 2020-02-09 tracey goto done;
700 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
701 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
702 b3f1f953 2020-02-09 tracey goto done;
703 b3f1f953 2020-02-09 tracey if (gw_trans->gw_conf->got_show_repo_description) {
704 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
705 b3f1f953 2020-02-09 tracey KATTR_ID, "index_project_description", KATTR__MAX);
706 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
707 b3f1f953 2020-02-09 tracey goto done;
708 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req,
709 b3f1f953 2020-02-09 tracey gw_dir->description ? gw_dir->description : "");
710 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
711 b3f1f953 2020-02-09 tracey goto done;
712 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
713 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
714 b3f1f953 2020-02-09 tracey goto done;
716 b3f1f953 2020-02-09 tracey if (gw_trans->gw_conf->got_show_repo_owner) {
717 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
718 b3f1f953 2020-02-09 tracey KATTR_ID, "index_project_owner", KATTR__MAX);
719 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
720 b3f1f953 2020-02-09 tracey goto done;
721 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req,
722 b3f1f953 2020-02-09 tracey gw_dir->owner ? gw_dir->owner : "");
723 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
724 b3f1f953 2020-02-09 tracey goto done;
725 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
726 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
727 b3f1f953 2020-02-09 tracey goto done;
729 b3f1f953 2020-02-09 tracey if (gw_trans->gw_conf->got_show_repo_age) {
730 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
731 b3f1f953 2020-02-09 tracey KATTR_ID, "index_project_age", KATTR__MAX);
732 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
733 b3f1f953 2020-02-09 tracey goto done;
734 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req,
735 b3f1f953 2020-02-09 tracey gw_dir->age ? gw_dir->age : "");
736 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
737 b3f1f953 2020-02-09 tracey goto done;
738 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
739 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
740 b3f1f953 2020-02-09 tracey goto done;
743 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
744 b3f1f953 2020-02-09 tracey "navs_wrapper", KATTR__MAX);
745 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
746 b3f1f953 2020-02-09 tracey goto done;
747 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
748 b3f1f953 2020-02-09 tracey "navs", KATTR__MAX);
749 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
750 b3f1f953 2020-02-09 tracey goto done;
752 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
753 b3f1f953 2020-02-09 tracey href_summary, KATTR__MAX);
754 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
755 b3f1f953 2020-02-09 tracey goto done;
756 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "summary");
757 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
758 b3f1f953 2020-02-09 tracey goto done;
759 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
760 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
761 b3f1f953 2020-02-09 tracey goto done;
763 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
764 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
765 b3f1f953 2020-02-09 tracey goto done;
767 2796ac23 2020-04-14 tracey href_briefs = khttp_urlpart(NULL, NULL, "gotweb", "path",
768 2796ac23 2020-04-14 tracey gw_dir->name, "action", "briefs", NULL);
769 19ff7638 2020-04-14 tracey if (href_briefs == NULL) {
770 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
771 19ff7638 2020-04-14 tracey goto done;
773 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
774 b3f1f953 2020-02-09 tracey href_briefs, KATTR__MAX);
775 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
776 b3f1f953 2020-02-09 tracey goto done;
777 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "commit briefs");
778 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
779 b3f1f953 2020-02-09 tracey goto done;
780 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
781 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
782 b3f1f953 2020-02-09 tracey error = gw_kcgi_error(kerr);
784 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
785 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
786 b3f1f953 2020-02-09 tracey goto done;
788 2796ac23 2020-04-14 tracey href_commits = khttp_urlpart(NULL, NULL, "gotweb", "path",
789 2796ac23 2020-04-14 tracey gw_dir->name, "action", "commits", NULL);
790 19ff7638 2020-04-14 tracey if (href_commits == NULL) {
791 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
792 19ff7638 2020-04-14 tracey goto done;
794 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
795 b3f1f953 2020-02-09 tracey href_commits, KATTR__MAX);
796 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
797 b3f1f953 2020-02-09 tracey goto done;
798 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "commits");
799 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
800 b3f1f953 2020-02-09 tracey goto done;
801 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
802 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
803 b3f1f953 2020-02-09 tracey goto done;
805 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
806 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
807 b3f1f953 2020-02-09 tracey goto done;
809 2796ac23 2020-04-14 tracey href_tags = khttp_urlpart(NULL, NULL, "gotweb", "path",
810 2796ac23 2020-04-14 tracey gw_dir->name, "action", "tags", NULL);
811 19ff7638 2020-04-14 tracey if (href_tags == NULL) {
812 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
813 19ff7638 2020-04-14 tracey goto done;
815 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
816 ff4bb25f 2020-02-19 tracey href_tags, KATTR__MAX);
817 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
818 ff4bb25f 2020-02-19 tracey goto done;
819 ff4bb25f 2020-02-19 tracey kerr = khtml_puts(gw_trans->gw_html_req, "tags");
820 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
821 ff4bb25f 2020-02-19 tracey goto done;
822 ff4bb25f 2020-02-19 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
823 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
824 ff4bb25f 2020-02-19 tracey goto done;
826 ff4bb25f 2020-02-19 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
827 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
828 ff4bb25f 2020-02-19 tracey goto done;
830 2796ac23 2020-04-14 tracey href_tree = khttp_urlpart(NULL, NULL, "gotweb", "path",
831 2796ac23 2020-04-14 tracey gw_dir->name, "action", "tree", NULL);
832 19ff7638 2020-04-14 tracey if (href_tree == NULL) {
833 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
834 19ff7638 2020-04-14 tracey goto done;
836 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
837 b3f1f953 2020-02-09 tracey href_tree, KATTR__MAX);
838 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
839 b3f1f953 2020-02-09 tracey goto done;
840 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "tree");
841 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
842 b3f1f953 2020-02-09 tracey goto done;
844 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 4);
845 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
846 b3f1f953 2020-02-09 tracey goto done;
847 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
848 b3f1f953 2020-02-09 tracey "dotted_line", KATTR__MAX);
849 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
850 b3f1f953 2020-02-09 tracey goto done;
851 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
852 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
853 b3f1f953 2020-02-09 tracey goto done;
855 b3f1f953 2020-02-09 tracey free(href_summary);
856 b3f1f953 2020-02-09 tracey href_summary = NULL;
857 b3f1f953 2020-02-09 tracey free(href_briefs);
858 b3f1f953 2020-02-09 tracey href_briefs = NULL;
859 b3f1f953 2020-02-09 tracey free(href_commits);
860 b3f1f953 2020-02-09 tracey href_commits = NULL;
861 ff4bb25f 2020-02-19 tracey free(href_tags);
862 ff4bb25f 2020-02-19 tracey href_tags = NULL;
863 b3f1f953 2020-02-09 tracey free(href_tree);
864 b3f1f953 2020-02-09 tracey href_tree = NULL;
866 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_max_repos_display == 0)
867 2c251c14 2020-01-15 tracey continue;
869 75f21c89 2020-02-18 tracey if ((next_disp == gw_trans->gw_conf->got_max_repos_display) ||
870 75f21c89 2020-02-18 tracey ((gw_trans->gw_conf->got_max_repos_display > 0) &&
871 2c251c14 2020-01-15 tracey (gw_trans->page > 0) &&
872 2c251c14 2020-01-15 tracey (next_disp == gw_trans->gw_conf->got_max_repos_display ||
873 75f21c89 2020-02-18 tracey prev_disp == gw_trans->repos_total))) {
874 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
875 63ee0dca 2020-02-08 tracey KATTR_ID, "np_wrapper", KATTR__MAX);
876 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
877 b3f1f953 2020-02-09 tracey goto done;
878 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
879 63ee0dca 2020-02-08 tracey KATTR_ID, "nav_prev", KATTR__MAX);
880 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
881 b3f1f953 2020-02-09 tracey goto done;
884 2c251c14 2020-01-15 tracey if ((gw_trans->gw_conf->got_max_repos_display > 0) &&
885 2c251c14 2020-01-15 tracey (gw_trans->page > 0) &&
886 2c251c14 2020-01-15 tracey (next_disp == gw_trans->gw_conf->got_max_repos_display ||
887 2c251c14 2020-01-15 tracey prev_disp == gw_trans->repos_total)) {
888 2796ac23 2020-04-14 tracey href_prev = khttp_urlpartx(NULL, NULL, "gotweb", "page",
889 2796ac23 2020-04-14 tracey KATTRX_INT, (int64_t)(gw_trans->page - 1), NULL);
890 19ff7638 2020-04-14 tracey if (href_prev == NULL) {
891 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
892 19ff7638 2020-04-14 tracey goto done;
894 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
895 63ee0dca 2020-02-08 tracey KATTR_HREF, href_prev, KATTR__MAX);
896 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
897 565d9dcb 2020-02-09 tracey goto done;
898 63ee0dca 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Previous");
899 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
900 b3f1f953 2020-02-09 tracey goto done;
901 63ee0dca 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
902 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
903 b3f1f953 2020-02-09 tracey goto done;
906 63ee0dca 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
907 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
908 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
910 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_max_repos_display > 0 &&
911 2c251c14 2020-01-15 tracey next_disp == gw_trans->gw_conf->got_max_repos_display &&
912 2c251c14 2020-01-15 tracey dir_c != (gw_trans->page + 1) *
913 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_max_repos_display) {
914 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
915 63ee0dca 2020-02-08 tracey KATTR_ID, "nav_next", KATTR__MAX);
916 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
917 b3f1f953 2020-02-09 tracey goto done;
918 2796ac23 2020-04-14 tracey href_next = khttp_urlpartx(NULL, NULL, "gotweb", "page",
919 2796ac23 2020-04-14 tracey KATTRX_INT, (int64_t)(gw_trans->page + 1), NULL);
920 19ff7638 2020-04-14 tracey if (href_next == NULL) {
921 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
922 19ff7638 2020-04-14 tracey goto done;
924 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
925 63ee0dca 2020-02-08 tracey KATTR_HREF, href_next, KATTR__MAX);
926 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
927 b3f1f953 2020-02-09 tracey goto done;
928 63ee0dca 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Next");
929 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
930 b3f1f953 2020-02-09 tracey goto done;
931 63ee0dca 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
932 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
933 b3f1f953 2020-02-09 tracey goto done;
934 2c251c14 2020-01-15 tracey next_disp = 0;
938 2c251c14 2020-01-15 tracey if ((gw_trans->gw_conf->got_max_repos_display > 0) &&
939 2c251c14 2020-01-15 tracey (gw_trans->page > 0) &&
940 2c251c14 2020-01-15 tracey (next_disp == gw_trans->gw_conf->got_max_repos_display ||
941 c25c2314 2020-01-28 stsp prev_disp == gw_trans->repos_total)) {
942 63ee0dca 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
943 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
944 b3f1f953 2020-02-09 tracey goto done;
946 2c251c14 2020-01-15 tracey next_disp++;
949 00f13350 2020-02-10 tracey free(href_prev);
950 00f13350 2020-02-10 tracey free(href_next);
951 b3f1f953 2020-02-09 tracey free(href_summary);
952 b3f1f953 2020-02-09 tracey free(href_briefs);
953 b3f1f953 2020-02-09 tracey free(href_commits);
954 ff4bb25f 2020-02-19 tracey free(href_tags);
955 b3f1f953 2020-02-09 tracey free(href_tree);
956 565d9dcb 2020-02-09 tracey if (error == NULL && kerr != KCGI_OK)
957 565d9dcb 2020-02-09 tracey error = gw_kcgi_error(kerr);
958 2c251c14 2020-01-15 tracey return error;
961 2c251c14 2020-01-15 tracey static const struct got_error *
962 f2f46662 2020-01-23 tracey gw_commits(struct gw_trans *gw_trans)
964 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
965 f2f46662 2020-01-23 tracey struct gw_header *header = NULL, *n_header = NULL;
966 038dfa29 2020-04-14 tracey char *age = NULL, *href_diff = NULL, *href_tree = NULL;
967 55e46400 2020-02-18 tracey char *href_prev = NULL, *href_next = NULL;
968 21a55cc7 2020-02-04 tracey enum kcgi_err kerr = KCGI_OK;
969 5a911940 2021-06-25 tracey int commit_found = 0;
971 ae36ed87 2020-01-28 stsp if ((header = gw_init_header()) == NULL)
972 f2f46662 2020-01-23 tracey return got_error_from_errno("malloc");
974 7a6dddae 2021-06-18 stsp #ifndef PROFILE
975 0ae84acc 2022-06-15 tracey if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
976 6bee13de 2020-01-16 tracey NULL) == -1) {
977 6bee13de 2020-01-16 tracey error = got_error_from_errno("pledge");
981 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_dir->path);
982 8087c3c5 2020-01-15 tracey if (error)
985 f2f46662 2020-01-23 tracey error = gw_get_header(gw_trans, header,
986 f2f46662 2020-01-23 tracey gw_trans->gw_conf->got_max_commits_display);
990 f2f46662 2020-01-23 tracey TAILQ_FOREACH(n_header, &gw_trans->gw_headers, entry) {
991 5a911940 2021-06-25 tracey if (commit_found == 0 && gw_trans->commit_id != NULL) {
992 5a911940 2021-06-25 tracey if (strcmp(gw_trans->commit_id,
993 5a911940 2021-06-25 tracey n_header->commit_id) != 0)
994 5a911940 2021-06-25 tracey continue;
996 5a911940 2021-06-25 tracey commit_found = 1;
998 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
999 21a55cc7 2020-02-04 tracey "commits_line_wrapper", KATTR__MAX);
1000 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1001 18da9978 2020-01-29 stsp goto done;
1002 21a55cc7 2020-02-04 tracey error = gw_gen_commit_header(gw_trans, n_header->commit_id,
1003 21a55cc7 2020-02-04 tracey n_header->refs_str);
1004 f7cc9480 2020-02-05 tracey if (error)
1005 f7cc9480 2020-02-05 tracey goto done;
1006 21a55cc7 2020-02-04 tracey error = gw_gen_author_header(gw_trans, n_header->author);
1007 21a55cc7 2020-02-04 tracey if (error)
1008 21a55cc7 2020-02-04 tracey goto done;
1009 21a55cc7 2020-02-04 tracey error = gw_gen_committer_header(gw_trans, n_header->author);
1010 21a55cc7 2020-02-04 tracey if (error)
1011 21a55cc7 2020-02-04 tracey goto done;
1012 55ccf528 2020-02-03 stsp error = gw_get_time_str(&age, n_header->committer_time,
1014 55ccf528 2020-02-03 stsp if (error)
1015 55ccf528 2020-02-03 stsp goto done;
1016 21a55cc7 2020-02-04 tracey error = gw_gen_age_header(gw_trans, age ?age : "");
1017 21a55cc7 2020-02-04 tracey if (error)
1018 55ccf528 2020-02-03 stsp goto done;
1019 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1020 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1021 21a55cc7 2020-02-04 tracey goto done;
1023 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1024 21a55cc7 2020-02-04 tracey "dotted_line", KATTR__MAX);
1025 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1026 21a55cc7 2020-02-04 tracey goto done;
1027 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1028 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1029 21a55cc7 2020-02-04 tracey goto done;
1031 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1032 21a55cc7 2020-02-04 tracey "commit", KATTR__MAX);
1033 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1034 21a55cc7 2020-02-04 tracey goto done;
1035 78a9dab5 2020-02-07 tracey kerr = khttp_puts(gw_trans->gw_req, n_header->commit_msg);
1036 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1037 21a55cc7 2020-02-04 tracey goto done;
1038 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1039 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1040 21a55cc7 2020-02-04 tracey goto done;
1042 038dfa29 2020-04-14 tracey href_diff = khttp_urlpart(NULL, NULL, "gotweb", "path",
1043 038dfa29 2020-04-14 tracey gw_trans->repo_name, "action", "diff", "commit",
1044 038dfa29 2020-04-14 tracey n_header->commit_id, NULL);
1045 19ff7638 2020-04-14 tracey if (href_diff == NULL) {
1046 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
1047 19ff7638 2020-04-14 tracey goto done;
1049 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1050 21a55cc7 2020-02-04 tracey KATTR_ID, "navs_wrapper", KATTR__MAX);
1051 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1052 21a55cc7 2020-02-04 tracey goto done;
1053 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1054 21a55cc7 2020-02-04 tracey KATTR_ID, "navs", KATTR__MAX);
1055 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1056 21a55cc7 2020-02-04 tracey goto done;
1057 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1058 21a55cc7 2020-02-04 tracey KATTR_HREF, href_diff, KATTR__MAX);
1059 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1060 21a55cc7 2020-02-04 tracey goto done;
1061 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, "diff");
1062 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1063 21a55cc7 2020-02-04 tracey goto done;
1064 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1065 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1066 21a55cc7 2020-02-04 tracey goto done;
1068 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
1069 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1070 21a55cc7 2020-02-04 tracey goto done;
1072 038dfa29 2020-04-14 tracey href_tree = khttp_urlpart(NULL, NULL, "gotweb", "path",
1073 038dfa29 2020-04-14 tracey gw_trans->repo_name, "action", "tree", "commit",
1074 19ff7638 2020-04-14 tracey n_header->commit_id, NULL);
1075 19ff7638 2020-04-14 tracey if (href_tree == NULL) {
1076 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
1077 19ff7638 2020-04-14 tracey goto done;
1079 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1080 038dfa29 2020-04-14 tracey KATTR_HREF, href_tree, KATTR__MAX);
1081 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1082 21a55cc7 2020-02-04 tracey goto done;
1083 21a55cc7 2020-02-04 tracey khtml_puts(gw_trans->gw_html_req, "tree");
1084 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1085 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1086 21a55cc7 2020-02-04 tracey goto done;
1087 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1088 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1089 21a55cc7 2020-02-04 tracey goto done;
1091 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1092 21a55cc7 2020-02-04 tracey "solid_line", KATTR__MAX);
1093 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1094 21a55cc7 2020-02-04 tracey goto done;
1095 b4fba448 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1096 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1097 21a55cc7 2020-02-04 tracey goto done;
1099 55ccf528 2020-02-03 stsp free(age);
1100 55ccf528 2020-02-03 stsp age = NULL;
1103 5a911940 2021-06-25 tracey if (gw_trans->next_id || gw_trans->prev_id) {
1104 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1105 55e46400 2020-02-18 tracey KATTR_ID, "np_wrapper", KATTR__MAX);
1106 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1107 55e46400 2020-02-18 tracey goto done;
1108 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1109 55e46400 2020-02-18 tracey KATTR_ID, "nav_prev", KATTR__MAX);
1110 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1111 55e46400 2020-02-18 tracey goto done;
1114 5a911940 2021-06-25 tracey if (gw_trans->prev_id) {
1115 038dfa29 2020-04-14 tracey href_prev = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1116 038dfa29 2020-04-14 tracey KATTRX_STRING, gw_trans->repo_name, "page",
1117 038dfa29 2020-04-14 tracey KATTRX_INT, (int64_t) (gw_trans->page - 1), "action",
1118 038dfa29 2020-04-14 tracey KATTRX_STRING, "commits", "commit", KATTRX_STRING,
1119 5a911940 2021-06-25 tracey gw_trans->prev_id ? gw_trans->prev_id : "", NULL);
1120 19ff7638 2020-04-14 tracey if (href_prev == NULL) {
1121 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
1122 19ff7638 2020-04-14 tracey goto done;
1124 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1125 55e46400 2020-02-18 tracey KATTR_HREF, href_prev, KATTR__MAX);
1126 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1127 55e46400 2020-02-18 tracey goto done;
1128 55e46400 2020-02-18 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Previous");
1129 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1130 55e46400 2020-02-18 tracey goto done;
1131 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1132 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1133 55e46400 2020-02-18 tracey goto done;
1136 55e46400 2020-02-18 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1137 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1138 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1139 55e46400 2020-02-18 tracey return gw_kcgi_error(kerr);
1142 55e46400 2020-02-18 tracey if (gw_trans->next_id) {
1143 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1144 55e46400 2020-02-18 tracey KATTR_ID, "nav_next", KATTR__MAX);
1145 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1146 55e46400 2020-02-18 tracey goto done;
1147 038dfa29 2020-04-14 tracey href_next = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1148 038dfa29 2020-04-14 tracey KATTRX_STRING, gw_trans->repo_name, "page",
1149 038dfa29 2020-04-14 tracey KATTRX_INT, (int64_t) (gw_trans->page + 1), "action",
1150 038dfa29 2020-04-14 tracey KATTRX_STRING, "commits", "commit", KATTRX_STRING,
1151 5a911940 2021-06-25 tracey gw_trans->next_id, NULL);
1152 19ff7638 2020-04-14 tracey if (href_next == NULL) {
1153 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
1154 19ff7638 2020-04-14 tracey goto done;
1156 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1157 55e46400 2020-02-18 tracey KATTR_HREF, href_next, KATTR__MAX);
1158 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1159 55e46400 2020-02-18 tracey goto done;
1160 55e46400 2020-02-18 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Next");
1161 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1162 55e46400 2020-02-18 tracey goto done;
1163 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
1164 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1165 55e46400 2020-02-18 tracey goto done;
1168 55e46400 2020-02-18 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1169 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1170 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1171 55e46400 2020-02-18 tracey goto done;
1174 b0a1bc86 2020-02-14 stsp gw_free_header(header);
1175 f2f46662 2020-01-23 tracey TAILQ_FOREACH(n_header, &gw_trans->gw_headers, entry)
1176 b0a1bc86 2020-02-14 stsp gw_free_header(n_header);
1177 55ccf528 2020-02-03 stsp free(age);
1178 55e46400 2020-02-18 tracey free(href_next);
1179 55e46400 2020-02-18 tracey free(href_prev);
1180 21a55cc7 2020-02-04 tracey free(href_diff);
1181 038dfa29 2020-04-14 tracey free(href_tree);
1182 21a55cc7 2020-02-04 tracey if (error == NULL && kerr != KCGI_OK)
1183 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
1184 2c251c14 2020-01-15 tracey return error;
1187 2c251c14 2020-01-15 tracey static const struct got_error *
1188 f2f46662 2020-01-23 tracey gw_briefs(struct gw_trans *gw_trans)
1190 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
1191 bd275801 2020-02-03 tracey struct gw_header *header = NULL, *n_header = NULL;
1192 9ba68833 2020-04-14 tracey char *age = NULL, *href_diff = NULL, *href_tree = NULL;
1193 55e46400 2020-02-18 tracey char *href_prev = NULL, *href_next = NULL;
1194 bd275801 2020-02-03 tracey char *newline, *smallerthan;
1195 ef72fe2c 2020-02-04 stsp enum kcgi_err kerr = KCGI_OK;
1196 5a911940 2021-06-25 tracey int commit_found = 0;
1198 ae36ed87 2020-01-28 stsp if ((header = gw_init_header()) == NULL)
1199 f2f46662 2020-01-23 tracey return got_error_from_errno("malloc");
1201 7a6dddae 2021-06-18 stsp #ifndef PROFILE
1202 0ae84acc 2022-06-15 tracey if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
1203 6bee13de 2020-01-16 tracey NULL) == -1) {
1204 6bee13de 2020-01-16 tracey error = got_error_from_errno("pledge");
1205 5ddf0079 2020-01-29 stsp goto done;
1208 85993e64 2020-02-17 tracey if (gw_trans->action != GW_SUMMARY) {
1209 85993e64 2020-02-17 tracey error = gw_apply_unveil(gw_trans->gw_dir->path);
1210 85993e64 2020-02-17 tracey if (error)
1211 85993e64 2020-02-17 tracey goto done;
1214 f2f46662 2020-01-23 tracey if (gw_trans->action == GW_SUMMARY)
1215 f2f46662 2020-01-23 tracey error = gw_get_header(gw_trans, header, D_MAXSLCOMMDISP);
1217 f2f46662 2020-01-23 tracey error = gw_get_header(gw_trans, header,
1218 f2f46662 2020-01-23 tracey gw_trans->gw_conf->got_max_commits_display);
1219 c25c2314 2020-01-28 stsp if (error)
1220 0e00e8f4 2020-01-29 stsp goto done;
1222 f2f46662 2020-01-23 tracey TAILQ_FOREACH(n_header, &gw_trans->gw_headers, entry) {
1223 5a911940 2021-06-25 tracey if (commit_found == 0 && gw_trans->commit_id != NULL) {
1224 5a911940 2021-06-25 tracey if (strcmp(gw_trans->commit_id,
1225 5a911940 2021-06-25 tracey n_header->commit_id) != 0)
1226 5a911940 2021-06-25 tracey continue;
1228 5a911940 2021-06-25 tracey commit_found = 1;
1230 bd275801 2020-02-03 tracey error = gw_get_time_str(&age, n_header->committer_time,
1231 bd275801 2020-02-03 tracey TM_DIFF);
1232 bd275801 2020-02-03 tracey if (error)
1233 bd275801 2020-02-03 tracey goto done;
1235 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1236 bd275801 2020-02-03 tracey KATTR_ID, "briefs_wrapper", KATTR__MAX);
1237 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1238 bd275801 2020-02-03 tracey goto done;
1240 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1241 bd275801 2020-02-03 tracey KATTR_ID, "briefs_age", KATTR__MAX);
1242 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1243 bd275801 2020-02-03 tracey goto done;
1244 53e81e48 2020-02-13 tracey kerr = khtml_puts(gw_trans->gw_html_req, age ? age : "");
1245 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1246 bd275801 2020-02-03 tracey goto done;
1247 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1248 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1249 bd275801 2020-02-03 tracey goto done;
1251 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1252 bd275801 2020-02-03 tracey KATTR_ID, "briefs_author", KATTR__MAX);
1253 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1254 bd275801 2020-02-03 tracey goto done;
1255 bd275801 2020-02-03 tracey smallerthan = strchr(n_header->author, '<');
1256 bd275801 2020-02-03 tracey if (smallerthan)
1257 bd275801 2020-02-03 tracey *smallerthan = '\0';
1258 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, n_header->author);
1259 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1260 bd275801 2020-02-03 tracey goto done;
1261 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1262 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1263 bd275801 2020-02-03 tracey goto done;
1265 9ba68833 2020-04-14 tracey href_diff = khttp_urlpart(NULL, NULL, "gotweb", "path",
1266 9ba68833 2020-04-14 tracey gw_trans->repo_name, "action", "diff", "commit",
1267 9ba68833 2020-04-14 tracey n_header->commit_id, NULL);
1268 19ff7638 2020-04-14 tracey if (href_diff == NULL) {
1269 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
1270 19ff7638 2020-04-14 tracey goto done;
1272 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1273 bd275801 2020-02-03 tracey KATTR_ID, "briefs_log", KATTR__MAX);
1274 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1275 bd275801 2020-02-03 tracey goto done;
1276 f2f46662 2020-01-23 tracey newline = strchr(n_header->commit_msg, '\n');
1277 f2f46662 2020-01-23 tracey if (newline)
1278 f2f46662 2020-01-23 tracey *newline = '\0';
1279 52f8346c 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1280 52f8346c 2020-02-03 tracey KATTR_HREF, href_diff, KATTR__MAX);
1281 52f8346c 2020-02-03 tracey if (kerr != KCGI_OK)
1282 52f8346c 2020-02-03 tracey goto done;
1283 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, n_header->commit_msg);
1284 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1285 55ccf528 2020-02-03 stsp goto done;
1286 bf93a5c0 2020-02-15 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1287 bf93a5c0 2020-02-15 tracey if (kerr != KCGI_OK)
1288 bf93a5c0 2020-02-15 tracey goto done;
1290 bf93a5c0 2020-02-15 tracey if (n_header->refs_str) {
1291 bf93a5c0 2020-02-15 tracey kerr = khtml_puts(gw_trans->gw_html_req, " ");
1292 bf93a5c0 2020-02-15 tracey if (kerr != KCGI_OK)
1293 bf93a5c0 2020-02-15 tracey goto done;
1294 bf93a5c0 2020-02-15 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_SPAN,
1295 bf93a5c0 2020-02-15 tracey KATTR_ID, "refs_str", KATTR__MAX);
1296 bf93a5c0 2020-02-15 tracey if (kerr != KCGI_OK)
1297 bf93a5c0 2020-02-15 tracey goto done;
1298 32b9f7ed 2020-04-14 tracey kerr = khtml_printf(gw_trans->gw_html_req, "(%s)",
1299 bf93a5c0 2020-02-15 tracey n_header->refs_str);
1300 bf93a5c0 2020-02-15 tracey if (kerr != KCGI_OK)
1301 bf93a5c0 2020-02-15 tracey goto done;
1302 bf93a5c0 2020-02-15 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1303 bf93a5c0 2020-02-15 tracey if (kerr != KCGI_OK)
1304 bf93a5c0 2020-02-15 tracey goto done;
1307 bf93a5c0 2020-02-15 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1308 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1309 bd275801 2020-02-03 tracey goto done;
1311 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1312 bd275801 2020-02-03 tracey KATTR_ID, "navs_wrapper", KATTR__MAX);
1313 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1314 bd275801 2020-02-03 tracey goto done;
1315 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1316 bd275801 2020-02-03 tracey KATTR_ID, "navs", KATTR__MAX);
1317 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1318 bd275801 2020-02-03 tracey goto done;
1319 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1320 bd275801 2020-02-03 tracey KATTR_HREF, href_diff, KATTR__MAX);
1321 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1322 070fee27 2020-02-03 stsp goto done;
1323 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, "diff");
1324 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1325 bd275801 2020-02-03 tracey goto done;
1326 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1327 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1328 bd275801 2020-02-03 tracey goto done;
1330 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
1331 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1332 bd275801 2020-02-03 tracey goto done;
1334 9ba68833 2020-04-14 tracey href_tree = khttp_urlpart(NULL, NULL, "gotweb", "path",
1335 9ba68833 2020-04-14 tracey gw_trans->repo_name, "action", "tree", "commit",
1336 9ba68833 2020-04-14 tracey n_header->commit_id, NULL);
1337 19ff7638 2020-04-14 tracey if (href_tree == NULL) {
1338 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
1339 19ff7638 2020-04-14 tracey goto done;
1341 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1342 9ba68833 2020-04-14 tracey KATTR_HREF, href_tree, KATTR__MAX);
1343 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1344 bd275801 2020-02-03 tracey goto done;
1345 bd275801 2020-02-03 tracey khtml_puts(gw_trans->gw_html_req, "tree");
1346 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1347 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1348 bd275801 2020-02-03 tracey goto done;
1349 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1350 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1351 bd275801 2020-02-03 tracey goto done;
1353 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1354 bd275801 2020-02-03 tracey KATTR_ID, "dotted_line", KATTR__MAX);
1355 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1356 bd275801 2020-02-03 tracey goto done;
1357 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
1358 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1359 bd275801 2020-02-03 tracey goto done;
1361 55ccf528 2020-02-03 stsp free(age);
1362 55ccf528 2020-02-03 stsp age = NULL;
1363 bd275801 2020-02-03 tracey free(href_diff);
1364 bd275801 2020-02-03 tracey href_diff = NULL;
1365 9ba68833 2020-04-14 tracey free(href_tree);
1366 9ba68833 2020-04-14 tracey href_tree = NULL;
1369 5a911940 2021-06-25 tracey if (gw_trans->next_id || gw_trans->prev_id) {
1370 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1371 55e46400 2020-02-18 tracey KATTR_ID, "np_wrapper", KATTR__MAX);
1372 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1373 55e46400 2020-02-18 tracey goto done;
1374 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1375 55e46400 2020-02-18 tracey KATTR_ID, "nav_prev", KATTR__MAX);
1376 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1377 55e46400 2020-02-18 tracey goto done;
1380 5a911940 2021-06-25 tracey if (gw_trans->prev_id) {
1381 9ba68833 2020-04-14 tracey href_prev = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1382 9ba68833 2020-04-14 tracey KATTRX_STRING, gw_trans->repo_name, "page",
1383 9ba68833 2020-04-14 tracey KATTRX_INT, (int64_t) (gw_trans->page - 1), "action",
1384 9ba68833 2020-04-14 tracey KATTRX_STRING, "briefs", "commit", KATTRX_STRING,
1385 5a911940 2021-06-25 tracey gw_trans->prev_id ? gw_trans->prev_id : "", NULL);
1386 19ff7638 2020-04-14 tracey if (href_prev == NULL) {
1387 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
1388 19ff7638 2020-04-14 tracey goto done;
1390 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1391 55e46400 2020-02-18 tracey KATTR_HREF, href_prev, KATTR__MAX);
1392 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1393 55e46400 2020-02-18 tracey goto done;
1394 55e46400 2020-02-18 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Previous");
1395 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1396 55e46400 2020-02-18 tracey goto done;
1397 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1398 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1399 55e46400 2020-02-18 tracey goto done;
1402 55e46400 2020-02-18 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1403 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1404 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1405 55e46400 2020-02-18 tracey return gw_kcgi_error(kerr);
1408 55e46400 2020-02-18 tracey if (gw_trans->next_id) {
1409 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1410 55e46400 2020-02-18 tracey KATTR_ID, "nav_next", KATTR__MAX);
1411 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1412 55e46400 2020-02-18 tracey goto done;
1414 9ba68833 2020-04-14 tracey href_next = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1415 9ba68833 2020-04-14 tracey KATTRX_STRING, gw_trans->repo_name, "page",
1416 9ba68833 2020-04-14 tracey KATTRX_INT, (int64_t) (gw_trans->page + 1), "action",
1417 9ba68833 2020-04-14 tracey KATTRX_STRING, "briefs", "commit", KATTRX_STRING,
1418 5a911940 2021-06-25 tracey gw_trans->next_id, NULL);
1419 19ff7638 2020-04-14 tracey if (href_next == NULL) {
1420 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
1421 19ff7638 2020-04-14 tracey goto done;
1423 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1424 55e46400 2020-02-18 tracey KATTR_HREF, href_next, KATTR__MAX);
1425 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1426 55e46400 2020-02-18 tracey goto done;
1427 55e46400 2020-02-18 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Next");
1428 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1429 55e46400 2020-02-18 tracey goto done;
1430 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
1431 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1432 55e46400 2020-02-18 tracey goto done;
1435 55e46400 2020-02-18 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1436 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1437 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1438 55e46400 2020-02-18 tracey goto done;
1441 b0a1bc86 2020-02-14 stsp gw_free_header(header);
1442 f2f46662 2020-01-23 tracey TAILQ_FOREACH(n_header, &gw_trans->gw_headers, entry)
1443 b0a1bc86 2020-02-14 stsp gw_free_header(n_header);
1444 55ccf528 2020-02-03 stsp free(age);
1445 55e46400 2020-02-18 tracey free(href_next);
1446 55e46400 2020-02-18 tracey free(href_prev);
1447 bd275801 2020-02-03 tracey free(href_diff);
1448 9ba68833 2020-04-14 tracey free(href_tree);
1449 ef72fe2c 2020-02-04 stsp if (error == NULL && kerr != KCGI_OK)
1450 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
1451 2c251c14 2020-01-15 tracey return error;
1454 2c251c14 2020-01-15 tracey static const struct got_error *
1455 54415d85 2020-01-15 tracey gw_summary(struct gw_trans *gw_trans)
1457 387a29ba 2020-01-15 tracey const struct got_error *error = NULL;
1458 9eed6f10 2020-02-08 tracey char *age = NULL;
1459 21a55cc7 2020-02-04 tracey enum kcgi_err kerr = KCGI_OK;
1461 7a6dddae 2021-06-18 stsp #ifndef PROFILE
1462 0ae84acc 2022-06-15 tracey if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
1463 0ae84acc 2022-06-15 tracey NULL) == -1)
1464 f4df82f9 2020-01-29 stsp return got_error_from_errno("pledge");
1466 85993e64 2020-02-17 tracey error = gw_apply_unveil(gw_trans->gw_dir->path);
1467 85993e64 2020-02-17 tracey if (error)
1468 85993e64 2020-02-17 tracey goto done;
1470 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1471 783ec107 2020-02-03 tracey "summary_wrapper", KATTR__MAX);
1472 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
1473 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
1475 783ec107 2020-02-03 tracey if (gw_trans->gw_conf->got_show_repo_description &&
1476 783ec107 2020-02-03 tracey gw_trans->gw_dir->description != NULL &&
1477 783ec107 2020-02-03 tracey (strcmp(gw_trans->gw_dir->description, "") != 0)) {
1478 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1479 783ec107 2020-02-03 tracey KATTR_ID, "description_title", KATTR__MAX);
1480 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1481 783ec107 2020-02-03 tracey goto done;
1482 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Description: ");
1483 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1484 783ec107 2020-02-03 tracey goto done;
1485 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1486 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1487 783ec107 2020-02-03 tracey goto done;
1488 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1489 783ec107 2020-02-03 tracey KATTR_ID, "description", KATTR__MAX);
1490 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1491 783ec107 2020-02-03 tracey goto done;
1492 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req,
1493 783ec107 2020-02-03 tracey gw_trans->gw_dir->description);
1494 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1495 783ec107 2020-02-03 tracey goto done;
1496 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1497 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1498 783ec107 2020-02-03 tracey goto done;
1501 9a1cc63f 2020-02-03 stsp if (gw_trans->gw_conf->got_show_repo_owner &&
1502 a942aa37 2020-02-10 tracey gw_trans->gw_dir->owner != NULL &&
1503 a942aa37 2020-02-10 tracey (strcmp(gw_trans->gw_dir->owner, "") != 0)) {
1504 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1505 783ec107 2020-02-03 tracey KATTR_ID, "repo_owner_title", KATTR__MAX);
1506 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1507 9a1cc63f 2020-02-03 stsp goto done;
1508 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Owner: ");
1509 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1510 9a1cc63f 2020-02-03 stsp goto done;
1511 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1512 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1513 783ec107 2020-02-03 tracey goto done;
1514 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1515 783ec107 2020-02-03 tracey KATTR_ID, "repo_owner", KATTR__MAX);
1516 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1517 783ec107 2020-02-03 tracey goto done;
1518 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req,
1519 62d463ca 2020-10-20 naddy gw_trans->gw_dir->owner);
1520 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1521 783ec107 2020-02-03 tracey goto done;
1522 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1523 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1524 783ec107 2020-02-03 tracey goto done;
1527 46b9c89b 2020-01-15 tracey if (gw_trans->gw_conf->got_show_repo_age) {
1528 d126c1b7 2020-01-29 stsp error = gw_get_repo_age(&age, gw_trans, gw_trans->gw_dir->path,
1529 2011c142 2020-02-14 stsp NULL, TM_LONG);
1530 d126c1b7 2020-01-29 stsp if (error)
1531 20f34652 2020-01-29 stsp goto done;
1532 55ccf528 2020-02-03 stsp if (age != NULL) {
1533 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1534 783ec107 2020-02-03 tracey KATTR_ID, "last_change_title", KATTR__MAX);
1535 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1536 20f34652 2020-01-29 stsp goto done;
1537 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req,
1538 783ec107 2020-02-03 tracey "Last Change: ");
1539 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1540 20f34652 2020-01-29 stsp goto done;
1541 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1542 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1543 20f34652 2020-01-29 stsp goto done;
1544 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1545 783ec107 2020-02-03 tracey KATTR_ID, "last_change", KATTR__MAX);
1546 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1547 20f34652 2020-01-29 stsp goto done;
1548 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, age);
1549 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1550 783ec107 2020-02-03 tracey goto done;
1551 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1552 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1553 783ec107 2020-02-03 tracey goto done;
1557 783ec107 2020-02-03 tracey if (gw_trans->gw_conf->got_show_repo_cloneurl &&
1558 783ec107 2020-02-03 tracey gw_trans->gw_dir->url != NULL &&
1559 783ec107 2020-02-03 tracey (strcmp(gw_trans->gw_dir->url, "") != 0)) {
1560 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1561 783ec107 2020-02-03 tracey KATTR_ID, "cloneurl_title", KATTR__MAX);
1562 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1563 783ec107 2020-02-03 tracey goto done;
1564 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Clone URL: ");
1565 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1566 783ec107 2020-02-03 tracey goto done;
1567 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1568 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1569 783ec107 2020-02-03 tracey goto done;
1570 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1571 783ec107 2020-02-03 tracey KATTR_ID, "cloneurl", KATTR__MAX);
1572 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1573 783ec107 2020-02-03 tracey goto done;
1574 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, gw_trans->gw_dir->url);
1575 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1576 21a55cc7 2020-02-04 tracey goto done;
1577 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1578 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1579 783ec107 2020-02-03 tracey goto done;
1582 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1583 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1584 bd275801 2020-02-03 tracey goto done;
1586 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1587 bd275801 2020-02-03 tracey "briefs_title_wrapper", KATTR__MAX);
1588 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1589 bd275801 2020-02-03 tracey goto done;
1590 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1591 bd275801 2020-02-03 tracey "briefs_title", KATTR__MAX);
1592 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1593 20f34652 2020-01-29 stsp goto done;
1594 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Commit Briefs");
1595 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1596 bd275801 2020-02-03 tracey goto done;
1597 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1598 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1599 bd275801 2020-02-03 tracey goto done;
1600 f2f46662 2020-01-23 tracey error = gw_briefs(gw_trans);
1601 f2f46662 2020-01-23 tracey if (error)
1602 20f34652 2020-01-29 stsp goto done;
1604 ff4bb25f 2020-02-19 tracey error = gw_tags(gw_trans);
1605 6eccd105 2020-02-03 stsp if (error)
1606 6eccd105 2020-02-03 stsp goto done;
1608 9eed6f10 2020-02-08 tracey error = gw_output_repo_heads(gw_trans);
1610 20f34652 2020-01-29 stsp free(age);
1611 f7cc9480 2020-02-05 tracey if (error == NULL && kerr != KCGI_OK)
1612 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
1613 2204c934 2020-01-15 tracey return error;
1616 2204c934 2020-01-15 tracey static const struct got_error *
1617 f2f46662 2020-01-23 tracey gw_tree(struct gw_trans *gw_trans)
1619 b772de24 2020-01-15 tracey const struct got_error *error = NULL;
1620 f2f46662 2020-01-23 tracey struct gw_header *header = NULL;
1621 f2f46662 2020-01-23 tracey char *tree = NULL, *tree_html = NULL, *tree_html_disp = NULL;
1622 53e81e48 2020-02-13 tracey char *age = NULL;
1623 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
1625 7a6dddae 2021-06-18 stsp #ifndef PROFILE
1626 0ae84acc 2022-06-15 tracey if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
1627 0ae84acc 2022-06-15 tracey NULL) == -1)
1628 f2f46662 2020-01-23 tracey return got_error_from_errno("pledge");
1630 ae36ed87 2020-01-28 stsp if ((header = gw_init_header()) == NULL)
1631 f2f46662 2020-01-23 tracey return got_error_from_errno("malloc");
1633 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_dir->path);
1634 b772de24 2020-01-15 tracey if (error)
1635 5ddf0079 2020-01-29 stsp goto done;
1637 f2f46662 2020-01-23 tracey error = gw_get_header(gw_trans, header, 1);
1638 f2f46662 2020-01-23 tracey if (error)
1639 42281175 2020-01-29 stsp goto done;
1641 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1642 626b25b6 2020-02-06 tracey "tree_header_wrapper", KATTR__MAX);
1643 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
1644 55ccf528 2020-02-03 stsp goto done;
1645 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1646 626b25b6 2020-02-06 tracey "tree_header", KATTR__MAX);
1647 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
1648 55ccf528 2020-02-03 stsp goto done;
1649 626b25b6 2020-02-06 tracey error = gw_gen_tree_header(gw_trans, header->tree_id);
1650 626b25b6 2020-02-06 tracey if (error)
1651 626b25b6 2020-02-06 tracey goto done;
1652 626b25b6 2020-02-06 tracey error = gw_get_time_str(&age, header->committer_time,
1653 626b25b6 2020-02-06 tracey TM_LONG);
1654 626b25b6 2020-02-06 tracey if (error)
1655 626b25b6 2020-02-06 tracey goto done;
1656 626b25b6 2020-02-06 tracey error = gw_gen_age_header(gw_trans, age ?age : "");
1657 070fee27 2020-02-03 stsp if (error)
1658 070fee27 2020-02-03 stsp goto done;
1659 626b25b6 2020-02-06 tracey error = gw_gen_commit_msg_header(gw_trans, header->commit_msg);
1660 626b25b6 2020-02-06 tracey if (error)
1661 42281175 2020-01-29 stsp goto done;
1662 626b25b6 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1663 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
1664 42281175 2020-01-29 stsp goto done;
1665 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1666 626b25b6 2020-02-06 tracey "dotted_line", KATTR__MAX);
1667 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
1668 626b25b6 2020-02-06 tracey goto done;
1669 626b25b6 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1670 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
1671 626b25b6 2020-02-06 tracey goto done;
1673 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1674 626b25b6 2020-02-06 tracey "tree", KATTR__MAX);
1675 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
1676 626b25b6 2020-02-06 tracey goto done;
1677 84de9106 2020-12-26 stsp error = gw_output_repo_tree(gw_trans, header);
1678 626b25b6 2020-02-06 tracey if (error)
1679 626b25b6 2020-02-06 tracey goto done;
1681 626b25b6 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1683 b0a1bc86 2020-02-14 stsp gw_free_header(header);
1684 f2f46662 2020-01-23 tracey free(tree_html_disp);
1685 f2f46662 2020-01-23 tracey free(tree_html);
1686 f2f46662 2020-01-23 tracey free(tree);
1687 55ccf528 2020-02-03 stsp free(age);
1688 ff4bb25f 2020-02-19 tracey if (error == NULL && kerr != KCGI_OK)
1689 ff4bb25f 2020-02-19 tracey error = gw_kcgi_error(kerr);
1690 ff4bb25f 2020-02-19 tracey return error;
1693 ff4bb25f 2020-02-19 tracey static const struct got_error *
1694 ff4bb25f 2020-02-19 tracey gw_tags(struct gw_trans *gw_trans)
1696 ff4bb25f 2020-02-19 tracey const struct got_error *error = NULL;
1697 ff4bb25f 2020-02-19 tracey struct gw_header *header = NULL;
1698 ff4bb25f 2020-02-19 tracey char *href_next = NULL, *href_prev = NULL;
1699 ff4bb25f 2020-02-19 tracey enum kcgi_err kerr = KCGI_OK;
1701 7a6dddae 2021-06-18 stsp #ifndef PROFILE
1702 0ae84acc 2022-06-15 tracey if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
1703 0ae84acc 2022-06-15 tracey NULL) == -1)
1704 ff4bb25f 2020-02-19 tracey return got_error_from_errno("pledge");
1706 ff4bb25f 2020-02-19 tracey if ((header = gw_init_header()) == NULL)
1707 ff4bb25f 2020-02-19 tracey return got_error_from_errno("malloc");
1709 ff4bb25f 2020-02-19 tracey if (gw_trans->action != GW_SUMMARY) {
1710 ff4bb25f 2020-02-19 tracey error = gw_apply_unveil(gw_trans->gw_dir->path);
1711 ff4bb25f 2020-02-19 tracey if (error)
1712 ff4bb25f 2020-02-19 tracey goto done;
1715 ff4bb25f 2020-02-19 tracey error = gw_get_header(gw_trans, header, 1);
1716 ff4bb25f 2020-02-19 tracey if (error)
1717 ff4bb25f 2020-02-19 tracey goto done;
1719 ff4bb25f 2020-02-19 tracey if (gw_trans->action == GW_SUMMARY) {
1720 7b1f04a6 2020-03-11 tracey gw_trans->next_id = NULL;
1721 ff4bb25f 2020-02-19 tracey error = gw_output_repo_tags(gw_trans, header,
1722 ff4bb25f 2020-02-19 tracey D_MAXSLCOMMDISP, TAGBRIEF);
1723 ff4bb25f 2020-02-19 tracey if (error)
1724 ff4bb25f 2020-02-19 tracey goto done;
1725 ff4bb25f 2020-02-19 tracey } else {
1726 ff4bb25f 2020-02-19 tracey error = gw_output_repo_tags(gw_trans, header,
1727 ff4bb25f 2020-02-19 tracey gw_trans->gw_conf->got_max_commits_display, TAGBRIEF);
1728 ff4bb25f 2020-02-19 tracey if (error)
1729 ff4bb25f 2020-02-19 tracey goto done;
1732 ff4bb25f 2020-02-19 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1733 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1734 ff4bb25f 2020-02-19 tracey KATTR_ID, "np_wrapper", KATTR__MAX);
1735 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1736 ff4bb25f 2020-02-19 tracey goto done;
1737 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1738 ff4bb25f 2020-02-19 tracey KATTR_ID, "nav_prev", KATTR__MAX);
1739 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1740 ff4bb25f 2020-02-19 tracey goto done;
1743 5a911940 2021-06-25 tracey if (gw_trans->prev_id) {
1744 f7632464 2020-04-14 tracey href_prev = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1745 f7632464 2020-04-14 tracey KATTRX_STRING, gw_trans->repo_name, "page",
1746 f7632464 2020-04-14 tracey KATTRX_INT, (int64_t) (gw_trans->page - 1), "action",
1747 f7632464 2020-04-14 tracey KATTRX_STRING, "tags", "commit", KATTRX_STRING,
1748 5a911940 2021-06-25 tracey gw_trans->prev_id ? gw_trans->prev_id : "", NULL);
1749 19ff7638 2020-04-14 tracey if (href_prev == NULL) {
1750 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
1751 19ff7638 2020-04-14 tracey goto done;
1753 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1754 ff4bb25f 2020-02-19 tracey KATTR_HREF, href_prev, KATTR__MAX);
1755 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1756 ff4bb25f 2020-02-19 tracey goto done;
1757 ff4bb25f 2020-02-19 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Previous");
1758 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1759 ff4bb25f 2020-02-19 tracey goto done;
1760 ff4bb25f 2020-02-19 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1761 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1762 ff4bb25f 2020-02-19 tracey goto done;
1765 ff4bb25f 2020-02-19 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1766 ff4bb25f 2020-02-19 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1767 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1768 ff4bb25f 2020-02-19 tracey return gw_kcgi_error(kerr);
1771 ff4bb25f 2020-02-19 tracey if (gw_trans->next_id) {
1772 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1773 ff4bb25f 2020-02-19 tracey KATTR_ID, "nav_next", KATTR__MAX);
1774 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1775 ff4bb25f 2020-02-19 tracey goto done;
1776 f7632464 2020-04-14 tracey href_next = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1777 f7632464 2020-04-14 tracey KATTRX_STRING, gw_trans->repo_name, "page",
1778 f7632464 2020-04-14 tracey KATTRX_INT, (int64_t) (gw_trans->page + 1), "action",
1779 f7632464 2020-04-14 tracey KATTRX_STRING, "tags", "commit", KATTRX_STRING,
1780 5a911940 2021-06-25 tracey gw_trans->next_id, NULL);
1781 19ff7638 2020-04-14 tracey if (href_next == NULL) {
1782 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
1783 19ff7638 2020-04-14 tracey goto done;
1785 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1786 ff4bb25f 2020-02-19 tracey KATTR_HREF, href_next, KATTR__MAX);
1787 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1788 ff4bb25f 2020-02-19 tracey goto done;
1789 ff4bb25f 2020-02-19 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Next");
1790 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1791 ff4bb25f 2020-02-19 tracey goto done;
1792 ff4bb25f 2020-02-19 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
1793 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1794 ff4bb25f 2020-02-19 tracey goto done;
1797 ff4bb25f 2020-02-19 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1798 ff4bb25f 2020-02-19 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1799 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1800 ff4bb25f 2020-02-19 tracey goto done;
1803 ff4bb25f 2020-02-19 tracey gw_free_header(header);
1804 ff4bb25f 2020-02-19 tracey free(href_next);
1805 ff4bb25f 2020-02-19 tracey free(href_prev);
1806 626b25b6 2020-02-06 tracey if (error == NULL && kerr != KCGI_OK)
1807 626b25b6 2020-02-06 tracey error = gw_kcgi_error(kerr);
1808 4ff7391f 2020-01-28 tracey return error;
1811 4ff7391f 2020-01-28 tracey static const struct got_error *
1812 4ff7391f 2020-01-28 tracey gw_tag(struct gw_trans *gw_trans)
1814 4ff7391f 2020-01-28 tracey const struct got_error *error = NULL;
1815 4ff7391f 2020-01-28 tracey struct gw_header *header = NULL;
1816 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
1818 7a6dddae 2021-06-18 stsp #ifndef PROFILE
1819 0ae84acc 2022-06-15 tracey if (pledge("stdio rpath wpath cpath proc exec sendfd unveil", NULL) == -1)
1820 4ff7391f 2020-01-28 tracey return got_error_from_errno("pledge");
1822 4ff7391f 2020-01-28 tracey if ((header = gw_init_header()) == NULL)
1823 4ff7391f 2020-01-28 tracey return got_error_from_errno("malloc");
1825 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_dir->path);
1826 4ff7391f 2020-01-28 tracey if (error)
1827 5ddf0079 2020-01-29 stsp goto done;
1829 9f33591a 2020-02-14 tracey if (gw_trans->commit_id == NULL) {
1830 9f33591a 2020-02-14 tracey error = got_error_msg(GOT_ERR_QUERYSTRING,
1831 9f33591a 2020-02-14 tracey "commit required in querystring");
1832 9f33591a 2020-02-14 tracey goto done;
1835 4ff7391f 2020-01-28 tracey error = gw_get_header(gw_trans, header, 1);
1836 4ff7391f 2020-01-28 tracey if (error)
1837 470cd826 2020-01-29 stsp goto done;
1839 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1840 38b240fb 2020-02-06 tracey "tag_header_wrapper", KATTR__MAX);
1841 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
1842 38b240fb 2020-02-06 tracey goto done;
1843 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1844 38b240fb 2020-02-06 tracey "tag_header", KATTR__MAX);
1845 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
1846 38b240fb 2020-02-06 tracey goto done;
1847 38b240fb 2020-02-06 tracey error = gw_gen_commit_header(gw_trans, header->commit_id,
1848 38b240fb 2020-02-06 tracey header->refs_str);
1849 6eccd105 2020-02-03 stsp if (error)
1850 6eccd105 2020-02-03 stsp goto done;
1851 38b240fb 2020-02-06 tracey error = gw_gen_commit_msg_header(gw_trans, header->commit_msg);
1852 38b240fb 2020-02-06 tracey if (error)
1853 470cd826 2020-01-29 stsp goto done;
1854 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1855 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
1856 470cd826 2020-01-29 stsp goto done;
1857 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1858 38b240fb 2020-02-06 tracey "dotted_line", KATTR__MAX);
1859 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
1860 38b240fb 2020-02-06 tracey goto done;
1861 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1862 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
1863 38b240fb 2020-02-06 tracey goto done;
1865 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1866 38b240fb 2020-02-06 tracey "tree", KATTR__MAX);
1867 4ff7391f 2020-01-28 tracey if (kerr != KCGI_OK)
1868 38b240fb 2020-02-06 tracey goto done;
1870 38b240fb 2020-02-06 tracey error = gw_output_repo_tags(gw_trans, header, 1, TAGFULL);
1871 38b240fb 2020-02-06 tracey if (error)
1872 38b240fb 2020-02-06 tracey goto done;
1874 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1876 b0a1bc86 2020-02-14 stsp gw_free_header(header);
1877 38b240fb 2020-02-06 tracey if (error == NULL && kerr != KCGI_OK)
1878 38b240fb 2020-02-06 tracey error = gw_kcgi_error(kerr);
1879 2c251c14 2020-01-15 tracey return error;
1882 2c251c14 2020-01-15 tracey static const struct got_error *
1883 54415d85 2020-01-15 tracey gw_load_got_path(struct gw_trans *gw_trans, struct gw_dir *gw_dir)
1885 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
1886 2c251c14 2020-01-15 tracey DIR *dt;
1887 2c251c14 2020-01-15 tracey char *dir_test;
1888 4ceb8155 2020-01-15 tracey int opened = 0;
1890 88d59c36 2020-01-29 stsp if (asprintf(&dir_test, "%s/%s/%s",
1891 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_repos_path, gw_dir->name,
1892 88d59c36 2020-01-29 stsp GOTWEB_GIT_DIR) == -1)
1893 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
1895 2c251c14 2020-01-15 tracey dt = opendir(dir_test);
1896 2c251c14 2020-01-15 tracey if (dt == NULL) {
1897 2c251c14 2020-01-15 tracey free(dir_test);
1898 2c251c14 2020-01-15 tracey } else {
1899 d1635ae4 2020-02-13 tracey gw_dir->path = strdup(dir_test);
1900 d1635ae4 2020-02-13 tracey if (gw_dir->path == NULL) {
1901 d1635ae4 2020-02-13 tracey opened = 1;
1902 d1635ae4 2020-02-13 tracey error = got_error_from_errno("strdup");
1903 a942aa37 2020-02-10 tracey goto errored;
1905 d1635ae4 2020-02-13 tracey opened = 1;
1906 2c251c14 2020-01-15 tracey goto done;
1909 88d59c36 2020-01-29 stsp if (asprintf(&dir_test, "%s/%s/%s",
1910 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_repos_path, gw_dir->name,
1911 d81f9039 2020-02-13 stsp GOTWEB_GOT_DIR) == -1) {
1912 d81f9039 2020-02-13 stsp dir_test = NULL;
1913 d81f9039 2020-02-13 stsp error = got_error_from_errno("asprintf");
1914 d81f9039 2020-02-13 stsp goto errored;
1917 2c251c14 2020-01-15 tracey dt = opendir(dir_test);
1918 2c251c14 2020-01-15 tracey if (dt == NULL)
1919 2c251c14 2020-01-15 tracey free(dir_test);
1921 4ceb8155 2020-01-15 tracey opened = 1;
1922 2c251c14 2020-01-15 tracey error = got_error(GOT_ERR_NOT_GIT_REPO);
1923 2c251c14 2020-01-15 tracey goto errored;
1926 88d59c36 2020-01-29 stsp if (asprintf(&dir_test, "%s/%s",
1927 d81f9039 2020-02-13 stsp gw_trans->gw_conf->got_repos_path, gw_dir->name) == -1) {
1928 d81f9039 2020-02-13 stsp error = got_error_from_errno("asprintf");
1929 d81f9039 2020-02-13 stsp dir_test = NULL;
1930 d81f9039 2020-02-13 stsp goto errored;
1933 d1635ae4 2020-02-13 tracey gw_dir->path = strdup(dir_test);
1934 d1635ae4 2020-02-13 tracey if (gw_dir->path == NULL) {
1935 a942aa37 2020-02-10 tracey opened = 1;
1936 d1635ae4 2020-02-13 tracey error = got_error_from_errno("strdup");
1937 a942aa37 2020-02-10 tracey goto errored;
1940 cc18a904 2020-02-13 tracey dt = opendir(dir_test);
1941 cc18a904 2020-02-13 tracey if (dt == NULL) {
1942 d90bcdd6 2020-02-17 stsp error = got_error_path(gw_dir->name, GOT_ERR_NOT_GIT_REPO);
1943 cc18a904 2020-02-13 tracey goto errored;
1945 7ecc73af 2020-02-13 tracey opened = 1;
1947 32cd4d18 2020-02-03 stsp error = gw_get_repo_description(&gw_dir->description, gw_trans,
1948 2c251c14 2020-01-15 tracey gw_dir->path);
1949 32cd4d18 2020-02-03 stsp if (error)
1950 32cd4d18 2020-02-03 stsp goto errored;
1951 9a1cc63f 2020-02-03 stsp error = gw_get_repo_owner(&gw_dir->owner, gw_trans, gw_dir->path);
1952 9a1cc63f 2020-02-03 stsp if (error)
1953 9a1cc63f 2020-02-03 stsp goto errored;
1954 d126c1b7 2020-01-29 stsp error = gw_get_repo_age(&gw_dir->age, gw_trans, gw_dir->path,
1955 2011c142 2020-02-14 stsp NULL, TM_DIFF);
1956 d126c1b7 2020-01-29 stsp if (error)
1957 d126c1b7 2020-01-29 stsp goto errored;
1958 59d3c40e 2020-02-03 stsp error = gw_get_clone_url(&gw_dir->url, gw_trans, gw_dir->path);
1959 2c251c14 2020-01-15 tracey errored:
1960 2c251c14 2020-01-15 tracey free(dir_test);
1961 2c251c14 2020-01-15 tracey if (opened)
1962 795c5bd7 2020-02-17 tracey if (dt && closedir(dt) == -1 && error == NULL)
1963 e227880d 2020-02-17 tracey error = got_error_from_errno("closedir");
1964 2c251c14 2020-01-15 tracey return error;
1967 2c251c14 2020-01-15 tracey static const struct got_error *
1968 54415d85 2020-01-15 tracey gw_load_got_paths(struct gw_trans *gw_trans)
1970 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
1972 2c251c14 2020-01-15 tracey struct dirent **sd_dent;
1973 2c251c14 2020-01-15 tracey struct gw_dir *gw_dir;
1974 2c251c14 2020-01-15 tracey struct stat st;
1975 2c251c14 2020-01-15 tracey unsigned int d_cnt, d_i;
1977 2c251c14 2020-01-15 tracey d = opendir(gw_trans->gw_conf->got_repos_path);
1978 2c251c14 2020-01-15 tracey if (d == NULL) {
1979 2c251c14 2020-01-15 tracey error = got_error_from_errno2("opendir",
1980 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_repos_path);
1981 2c251c14 2020-01-15 tracey return error;
1984 2c251c14 2020-01-15 tracey d_cnt = scandir(gw_trans->gw_conf->got_repos_path, &sd_dent, NULL,
1985 2c251c14 2020-01-15 tracey alphasort);
1986 2c251c14 2020-01-15 tracey if (d_cnt == -1) {
1987 2c251c14 2020-01-15 tracey error = got_error_from_errno2("scandir",
1988 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_repos_path);
1989 8182bd34 2020-02-17 tracey goto done;
1992 2c251c14 2020-01-15 tracey for (d_i = 0; d_i < d_cnt; d_i++) {
1993 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_max_repos > 0 &&
1994 2c251c14 2020-01-15 tracey (d_i - 2) == gw_trans->gw_conf->got_max_repos)
1995 2c251c14 2020-01-15 tracey break; /* account for parent and self */
1997 2c251c14 2020-01-15 tracey if (strcmp(sd_dent[d_i]->d_name, ".") == 0 ||
1998 2c251c14 2020-01-15 tracey strcmp(sd_dent[d_i]->d_name, "..") == 0)
1999 2c251c14 2020-01-15 tracey continue;
2001 4619e1f2 2020-02-13 stsp error = gw_init_gw_dir(&gw_dir, sd_dent[d_i]->d_name);
2002 4619e1f2 2020-02-13 stsp if (error)
2003 8182bd34 2020-02-17 tracey goto done;
2005 2c251c14 2020-01-15 tracey error = gw_load_got_path(gw_trans, gw_dir);
2006 7bf16821 2020-02-07 stsp if (error && error->code == GOT_ERR_NOT_GIT_REPO) {
2007 7bf16821 2020-02-07 stsp error = NULL;
2008 2c251c14 2020-01-15 tracey continue;
2009 4362cf9c 2022-01-24 tracey } else if (error && error->code != GOT_ERR_LONELY_PACKIDX)
2010 8182bd34 2020-02-17 tracey goto done;
2012 2c251c14 2020-01-15 tracey if (lstat(gw_dir->path, &st) == 0 && S_ISDIR(st.st_mode) &&
2013 2c251c14 2020-01-15 tracey !got_path_dir_is_empty(gw_dir->path)) {
2014 2c251c14 2020-01-15 tracey TAILQ_INSERT_TAIL(&gw_trans->gw_dirs, gw_dir,
2016 2c251c14 2020-01-15 tracey gw_trans->repos_total++;
2020 e227880d 2020-02-17 tracey if (d && closedir(d) == -1 && error == NULL)
2021 e227880d 2020-02-17 tracey error = got_error_from_errno("closedir");
2022 2c251c14 2020-01-15 tracey return error;
2025 2c251c14 2020-01-15 tracey static const struct got_error *
2026 54415d85 2020-01-15 tracey gw_parse_querystring(struct gw_trans *gw_trans)
2028 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
2029 2c251c14 2020-01-15 tracey struct kpair *p;
2030 d58ddaf3 2022-03-17 naddy const struct gw_query_action *action = NULL;
2031 2c251c14 2020-01-15 tracey unsigned int i;
2033 2c251c14 2020-01-15 tracey if (gw_trans->gw_req->fieldnmap[0]) {
2034 8f214b62 2020-02-17 stsp return got_error(GOT_ERR_QUERYSTRING);
2035 2c251c14 2020-01-15 tracey } else if ((p = gw_trans->gw_req->fieldmap[KEY_PATH])) {
2036 2c251c14 2020-01-15 tracey /* define gw_trans->repo_path */
2037 f652ec0c 2020-02-13 stsp gw_trans->repo_name = p->parsed.s;
2039 88d59c36 2020-01-29 stsp if (asprintf(&gw_trans->repo_path, "%s/%s",
2040 88d59c36 2020-01-29 stsp gw_trans->gw_conf->got_repos_path, p->parsed.s) == -1)
2041 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
2043 2c251c14 2020-01-15 tracey /* get action and set function */
2044 f1200fe3 2020-02-13 tracey if ((p = gw_trans->gw_req->fieldmap[KEY_ACTION])) {
2045 2c251c14 2020-01-15 tracey for (i = 0; i < nitems(gw_query_funcs); i++) {
2046 2c251c14 2020-01-15 tracey action = &gw_query_funcs[i];
2047 f1200fe3 2020-02-13 tracey if (action->func_name == NULL)
2048 2c251c14 2020-01-15 tracey continue;
2049 f1200fe3 2020-02-13 tracey if (strcmp(action->func_name,
2050 f1200fe3 2020-02-13 tracey p->parsed.s) == 0) {
2051 f1200fe3 2020-02-13 tracey gw_trans->action = i;
2056 6f6f771f 2020-02-13 tracey if (gw_trans->action == -1) {
2057 6f6f771f 2020-02-13 tracey gw_trans->action = GW_ERR;
2058 8f214b62 2020-02-17 stsp gw_trans->error = got_error_msg(GOT_ERR_QUERYSTRING,
2059 8f214b62 2020-02-17 stsp p != NULL ? "bad action in querystring" :
2060 8f214b62 2020-02-17 stsp "no action in querystring");
2061 cc18a904 2020-02-13 tracey return error;
2064 abc59930 2021-09-05 naddy if ((p = gw_trans->gw_req->fieldmap[KEY_COMMIT_ID])) {
2065 56997cd3 2020-02-14 tracey if (asprintf(&gw_trans->commit_id, "%s",
2066 88d59c36 2020-01-29 stsp p->parsed.s) == -1)
2067 ec46ccd7 2020-01-15 tracey return got_error_from_errno("asprintf");
2070 4d6abe2b 2020-02-13 stsp if ((p = gw_trans->gw_req->fieldmap[KEY_FILE]))
2071 4d6abe2b 2020-02-13 stsp gw_trans->repo_file = p->parsed.s;
2073 26dc3004 2020-02-13 stsp if ((p = gw_trans->gw_req->fieldmap[KEY_FOLDER])) {
2074 88d59c36 2020-01-29 stsp if (asprintf(&gw_trans->repo_folder, "%s",
2075 55e46400 2020-02-18 tracey p->parsed.s) == -1)
2076 55e46400 2020-02-18 tracey return got_error_from_errno("asprintf");
2079 55e46400 2020-02-18 tracey if ((p = gw_trans->gw_req->fieldmap[KEY_PREV_ID])) {
2080 55e46400 2020-02-18 tracey if (asprintf(&gw_trans->prev_id, "%s",
2081 55e46400 2020-02-18 tracey p->parsed.s) == -1)
2082 55e46400 2020-02-18 tracey return got_error_from_errno("asprintf");
2085 742ba378 2020-02-14 stsp if ((p = gw_trans->gw_req->fieldmap[KEY_HEADREF]))
2086 742ba378 2020-02-14 stsp gw_trans->headref = p->parsed.s;
2088 4619e1f2 2020-02-13 stsp error = gw_init_gw_dir(&gw_trans->gw_dir, gw_trans->repo_name);
2089 4619e1f2 2020-02-13 stsp if (error)
2090 4619e1f2 2020-02-13 stsp return error;
2092 cc18a904 2020-02-13 tracey gw_trans->error = gw_load_got_path(gw_trans, gw_trans->gw_dir);
2094 2c251c14 2020-01-15 tracey gw_trans->action = GW_INDEX;
2096 2c251c14 2020-01-15 tracey if ((p = gw_trans->gw_req->fieldmap[KEY_PAGE]))
2097 2c251c14 2020-01-15 tracey gw_trans->page = p->parsed.i;
2099 2c251c14 2020-01-15 tracey return error;
2102 4619e1f2 2020-02-13 stsp static const struct got_error *
2103 f652ec0c 2020-02-13 stsp gw_init_gw_dir(struct gw_dir **gw_dir, const char *dir)
2105 4619e1f2 2020-02-13 stsp const struct got_error *error;
2107 4619e1f2 2020-02-13 stsp *gw_dir = malloc(sizeof(**gw_dir));
2108 4619e1f2 2020-02-13 stsp if (*gw_dir == NULL)
2109 4619e1f2 2020-02-13 stsp return got_error_from_errno("malloc");
2111 4619e1f2 2020-02-13 stsp if (asprintf(&(*gw_dir)->name, "%s", dir) == -1) {
2112 4619e1f2 2020-02-13 stsp error = got_error_from_errno("asprintf");
2113 4619e1f2 2020-02-13 stsp free(*gw_dir);
2114 4619e1f2 2020-02-13 stsp *gw_dir = NULL;
2115 e9a8bbf7 2020-05-29 tracey return error;
2118 4619e1f2 2020-02-13 stsp return NULL;
2121 c25c2314 2020-01-28 stsp static const struct got_error *
2122 54415d85 2020-01-15 tracey gw_display_open(struct gw_trans *gw_trans, enum khttp code, enum kmime mime)
2124 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2126 c25c2314 2020-01-28 stsp kerr = khttp_head(gw_trans->gw_req, kresps[KRESP_ALLOW], "GET");
2127 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
2128 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2129 c25c2314 2020-01-28 stsp kerr = khttp_head(gw_trans->gw_req, kresps[KRESP_STATUS], "%s",
2130 2c251c14 2020-01-15 tracey khttps[code]);
2131 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
2132 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2133 c25c2314 2020-01-28 stsp kerr = khttp_head(gw_trans->gw_req, kresps[KRESP_CONTENT_TYPE], "%s",
2134 2c251c14 2020-01-15 tracey kmimetypes[mime]);
2135 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
2136 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2137 017d6da3 2020-01-29 tracey kerr = khttp_head(gw_trans->gw_req, "X-Content-Type-Options",
2138 017d6da3 2020-01-29 tracey "nosniff");
2139 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
2140 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2141 c25c2314 2020-01-28 stsp kerr = khttp_head(gw_trans->gw_req, "X-Frame-Options", "DENY");
2142 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
2143 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2144 017d6da3 2020-01-29 tracey kerr = khttp_head(gw_trans->gw_req, "X-XSS-Protection",
2145 017d6da3 2020-01-29 tracey "1; mode=block");
2146 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
2147 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2149 017d6da3 2020-01-29 tracey if (gw_trans->mime == KMIME_APP_OCTET_STREAM) {
2150 017d6da3 2020-01-29 tracey kerr = khttp_head(gw_trans->gw_req,
2151 017d6da3 2020-01-29 tracey kresps[KRESP_CONTENT_DISPOSITION],
2152 017d6da3 2020-01-29 tracey "attachment; filename=%s", gw_trans->repo_file);
2153 017d6da3 2020-01-29 tracey if (kerr != KCGI_OK)
2154 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2157 c25c2314 2020-01-28 stsp kerr = khttp_body(gw_trans->gw_req);
2158 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2161 c25c2314 2020-01-28 stsp static const struct got_error *
2162 6d8d8a26 2020-01-29 stsp gw_display_index(struct gw_trans *gw_trans)
2164 4bec7539 2020-01-29 stsp const struct got_error *error;
2165 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2167 cc18a904 2020-02-13 tracey /* catch early querystring errors */
2168 cc18a904 2020-02-13 tracey if (gw_trans->error)
2169 cc18a904 2020-02-13 tracey gw_trans->action = GW_ERR;
2171 4bec7539 2020-01-29 stsp error = gw_display_open(gw_trans, KHTTP_200, gw_trans->mime);
2172 4bec7539 2020-01-29 stsp if (error)
2173 4bec7539 2020-01-29 stsp return error;
2175 f7cc9480 2020-02-05 tracey kerr = khtml_open(gw_trans->gw_html_req, gw_trans->gw_req, 0);
2176 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2177 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2179 017d6da3 2020-01-29 tracey if (gw_trans->action != GW_BLOB) {
2180 017d6da3 2020-01-29 tracey kerr = khttp_template(gw_trans->gw_req, gw_trans->gw_tmpl,
2181 017d6da3 2020-01-29 tracey gw_query_funcs[gw_trans->action].template);
2182 017d6da3 2020-01-29 tracey if (kerr != KCGI_OK) {
2183 017d6da3 2020-01-29 tracey khtml_close(gw_trans->gw_html_req);
2184 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2188 7a9bfbff 2020-01-29 stsp return gw_kcgi_error(khtml_close(gw_trans->gw_html_req));
2191 f1200fe3 2020-02-13 tracey static const struct got_error *
2192 f1200fe3 2020-02-13 tracey gw_error(struct gw_trans *gw_trans)
2194 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2196 f1200fe3 2020-02-13 tracey kerr = khtml_puts(gw_trans->gw_html_req, gw_trans->error->msg);
2198 f1200fe3 2020-02-13 tracey return gw_kcgi_error(kerr);
2201 2c251c14 2020-01-15 tracey static int
2202 2c251c14 2020-01-15 tracey gw_template(size_t key, void *arg)
2204 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
2205 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2206 54415d85 2020-01-15 tracey struct gw_trans *gw_trans = arg;
2207 9f6f3943 2020-09-24 tracey char *ati = NULL, *fic32 = NULL, *fic16 = NULL;
2208 9f6f3943 2020-09-24 tracey char *swm = NULL, *spt = NULL, *css = NULL, *logo = NULL;
2210 9f6f3943 2020-09-24 tracey if (asprintf(&ati, "%s%s", gw_trans->gw_conf->got_www_path,
2211 9f6f3943 2020-09-24 tracey "/apple-touch-icon.png") == -1)
2212 9f6f3943 2020-09-24 tracey goto err;
2213 9f6f3943 2020-09-24 tracey if (asprintf(&fic32, "%s%s", gw_trans->gw_conf->got_www_path,
2214 62d463ca 2020-10-20 naddy "/favicon-32x32.png") == -1)
2215 9f6f3943 2020-09-24 tracey goto err;
2216 9f6f3943 2020-09-24 tracey if (asprintf(&fic16, "%s%s", gw_trans->gw_conf->got_www_path,
2217 9f6f3943 2020-09-24 tracey "/favicon-16x16.png") == -1)
2218 9f6f3943 2020-09-24 tracey goto err;
2219 9f6f3943 2020-09-24 tracey if (asprintf(&swm, "%s%s", gw_trans->gw_conf->got_www_path,
2220 9f6f3943 2020-09-24 tracey "/site.webmanifest") == -1)
2221 9f6f3943 2020-09-24 tracey goto err;
2222 9f6f3943 2020-09-24 tracey if (asprintf(&spt, "%s%s", gw_trans->gw_conf->got_www_path,
2223 9f6f3943 2020-09-24 tracey "/safari-pinned-tab.svg") == -1)
2224 9f6f3943 2020-09-24 tracey goto err;
2225 9f6f3943 2020-09-24 tracey if (asprintf(&css, "%s%s", gw_trans->gw_conf->got_www_path,
2226 9f6f3943 2020-09-24 tracey "/gotweb.css") == -1)
2227 9f6f3943 2020-09-24 tracey goto err;
2228 9f6f3943 2020-09-24 tracey if (asprintf(&logo, "%s%s%s", gw_trans->gw_conf->got_www_path,
2229 9f6f3943 2020-09-24 tracey gw_trans->gw_conf->got_www_path ? "/" : "",
2230 9f6f3943 2020-09-24 tracey gw_trans->gw_conf->got_logo) == -1)
2231 9f6f3943 2020-09-24 tracey goto err;
2233 2c251c14 2020-01-15 tracey switch (key) {
2234 2c251c14 2020-01-15 tracey case (TEMPL_HEAD):
2235 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_META,
2236 1dcb8908 2020-02-12 tracey KATTR_NAME, "viewport",
2237 1dcb8908 2020-02-12 tracey KATTR_CONTENT, "initial-scale=.75, user-scalable=yes",
2238 aaed5792 2020-02-08 tracey KATTR__MAX);
2239 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2240 bd275801 2020-02-03 tracey return 0;
2241 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2242 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2243 aaed5792 2020-02-08 tracey return 0;
2244 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_META,
2245 aaed5792 2020-02-08 tracey KATTR_CHARSET, "utf-8",
2246 aaed5792 2020-02-08 tracey KATTR__MAX);
2247 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2248 aaed5792 2020-02-08 tracey return 0;
2249 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2250 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2251 aaed5792 2020-02-08 tracey return 0;
2252 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_META,
2253 aaed5792 2020-02-08 tracey KATTR_NAME, "msapplication-TileColor",
2254 aaed5792 2020-02-08 tracey KATTR_CONTENT, "#da532c", KATTR__MAX);
2255 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2256 aaed5792 2020-02-08 tracey return 0;
2257 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2258 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2259 aaed5792 2020-02-08 tracey return 0;
2260 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_META,
2261 aaed5792 2020-02-08 tracey KATTR_NAME, "theme-color",
2262 aaed5792 2020-02-08 tracey KATTR_CONTENT, "#ffffff", KATTR__MAX);
2263 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2264 aaed5792 2020-02-08 tracey return 0;
2265 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2266 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2267 aaed5792 2020-02-08 tracey return 0;
2268 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2269 aaed5792 2020-02-08 tracey KATTR_REL, "apple-touch-icon", KATTR_SIZES, "180x180",
2270 9f6f3943 2020-09-24 tracey KATTR_HREF, ati, KATTR__MAX);
2271 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2272 aaed5792 2020-02-08 tracey return 0;
2273 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2274 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2275 aaed5792 2020-02-08 tracey return 0;
2276 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2277 aaed5792 2020-02-08 tracey KATTR_REL, "icon", KATTR_TYPE, "image/png", KATTR_SIZES,
2278 9f6f3943 2020-09-24 tracey "32x32", KATTR_HREF, fic32, KATTR__MAX);
2279 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2280 aaed5792 2020-02-08 tracey return 0;
2281 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2282 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2283 aaed5792 2020-02-08 tracey return 0;
2284 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2285 aaed5792 2020-02-08 tracey KATTR_REL, "icon", KATTR_TYPE, "image/png", KATTR_SIZES,
2286 9f6f3943 2020-09-24 tracey "16x16", KATTR_HREF, fic16, KATTR__MAX);
2287 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2288 aaed5792 2020-02-08 tracey return 0;
2289 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2290 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2291 aaed5792 2020-02-08 tracey return 0;
2292 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2293 9f6f3943 2020-09-24 tracey KATTR_REL, "manifest", KATTR_HREF, swm,
2294 aaed5792 2020-02-08 tracey KATTR__MAX);
2295 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2296 aaed5792 2020-02-08 tracey return 0;
2297 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2298 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2299 aaed5792 2020-02-08 tracey return 0;
2300 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2301 aaed5792 2020-02-08 tracey KATTR_REL, "mask-icon", KATTR_HREF,
2302 9f6f3943 2020-09-24 tracey spt, KATTR__MAX);
2303 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2304 aaed5792 2020-02-08 tracey return 0;
2305 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2306 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2307 aaed5792 2020-02-08 tracey return 0;
2308 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2309 aaed5792 2020-02-08 tracey KATTR_REL, "stylesheet", KATTR_TYPE, "text/css",
2310 9f6f3943 2020-09-24 tracey KATTR_HREF, css, KATTR__MAX);
2311 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2312 aaed5792 2020-02-08 tracey return 0;
2313 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2314 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2315 aaed5792 2020-02-08 tracey return 0;
2317 2c251c14 2020-01-15 tracey case(TEMPL_HEADER):
2318 185ba3ba 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2319 185ba3ba 2020-02-04 tracey KATTR_ID, "got_link", KATTR__MAX);
2320 185ba3ba 2020-02-04 tracey if (kerr != KCGI_OK)
2321 185ba3ba 2020-02-04 tracey return 0;
2322 185ba3ba 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
2323 185ba3ba 2020-02-04 tracey KATTR_HREF, gw_trans->gw_conf->got_logo_url,
2324 185ba3ba 2020-02-04 tracey KATTR_TARGET, "_sotd", KATTR__MAX);
2325 185ba3ba 2020-02-04 tracey if (kerr != KCGI_OK)
2326 185ba3ba 2020-02-04 tracey return 0;
2327 185ba3ba 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_IMG,
2328 9f6f3943 2020-09-24 tracey KATTR_SRC, logo, KATTR__MAX);
2329 9f6f3943 2020-09-24 tracey if (kerr != KCGI_OK)
2330 185ba3ba 2020-02-04 tracey return 0;
2331 185ba3ba 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
2332 9f6f3943 2020-09-24 tracey if (kerr != KCGI_OK)
2333 185ba3ba 2020-02-04 tracey return 0;
2335 2c251c14 2020-01-15 tracey case (TEMPL_SITEPATH):
2336 4ae179a2 2020-02-08 tracey error = gw_output_site_link(gw_trans);
2337 4ae179a2 2020-02-08 tracey if (error)
2338 4ae179a2 2020-02-08 tracey return 0;
2340 2c251c14 2020-01-15 tracey case(TEMPL_TITLE):
2341 bd275801 2020-02-03 tracey if (gw_trans->gw_conf->got_site_name != NULL) {
2342 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req,
2343 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_site_name);
2344 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2345 bd275801 2020-02-03 tracey return 0;
2348 2c251c14 2020-01-15 tracey case (TEMPL_SEARCH):
2350 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
2351 63ee0dca 2020-02-08 tracey "search", KATTR__MAX);
2352 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2353 bd275801 2020-02-03 tracey return 0;
2354 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_FORM,
2355 63ee0dca 2020-02-08 tracey KATTR_METHOD, "POST", KATTR__MAX);
2356 63ee0dca 2020-02-08 tracey if (kerr != KCGI_OK)
2357 63ee0dca 2020-02-08 tracey return 0;
2358 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_INPUT, KATTR_ID,
2359 63ee0dca 2020-02-08 tracey "got-search", KATTR_NAME, "got-search", KATTR_SIZE, "15",
2360 63ee0dca 2020-02-08 tracey KATTR_MAXLENGTH, "50", KATTR__MAX);
2361 63ee0dca 2020-02-08 tracey if (kerr != KCGI_OK)
2362 63ee0dca 2020-02-08 tracey return 0;
2363 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_BUTTON,
2364 63ee0dca 2020-02-08 tracey KATTR__MAX);
2365 63ee0dca 2020-02-08 tracey if (kerr != KCGI_OK)
2366 63ee0dca 2020-02-08 tracey return 0;
2367 63ee0dca 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Search");
2368 63ee0dca 2020-02-08 tracey if (kerr != KCGI_OK)
2369 63ee0dca 2020-02-08 tracey return 0;
2370 63ee0dca 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 4);
2371 63ee0dca 2020-02-08 tracey if (kerr != KCGI_OK)
2372 63ee0dca 2020-02-08 tracey return 0;
2374 2c251c14 2020-01-15 tracey case(TEMPL_SITEOWNER):
2375 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_site_owner != NULL &&
2376 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_show_site_owner) {
2377 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2378 bd275801 2020-02-03 tracey KATTR_ID, "site_owner_wrapper", KATTR__MAX);
2379 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2381 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2382 bd275801 2020-02-03 tracey KATTR_ID, "site_owner", KATTR__MAX);
2383 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2384 2c251c14 2020-01-15 tracey return 0;
2385 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req,
2386 bd275801 2020-02-03 tracey gw_trans->gw_conf->got_site_owner);
2387 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
2388 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2389 bd275801 2020-02-03 tracey return 0;
2392 2c251c14 2020-01-15 tracey case(TEMPL_CONTENT):
2393 2c251c14 2020-01-15 tracey error = gw_query_funcs[gw_trans->action].func_main(gw_trans);
2394 bd275801 2020-02-03 tracey if (error) {
2395 0d100d0b 2020-02-07 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2396 0d100d0b 2020-02-07 tracey KATTR_ID, "tmpl_err", KATTR__MAX);
2397 0d100d0b 2020-02-07 tracey if (kerr != KCGI_OK)
2398 0d100d0b 2020-02-07 tracey return 0;
2399 f08447b0 2020-04-14 tracey kerr = khttp_printf(gw_trans->gw_req, "Error: %s",
2400 f08447b0 2020-04-14 tracey error->msg);
2401 0d100d0b 2020-02-07 tracey if (kerr != KCGI_OK)
2402 0d100d0b 2020-02-07 tracey return 0;
2403 0d100d0b 2020-02-07 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2404 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2405 bd275801 2020-02-03 tracey return 0;
2408 2c251c14 2020-01-15 tracey default:
2409 2c251c14 2020-01-15 tracey return 0;
2411 9f6f3943 2020-09-24 tracey free(ati);
2412 9f6f3943 2020-09-24 tracey free(fic32);
2413 9f6f3943 2020-09-24 tracey free(fic16);
2414 9f6f3943 2020-09-24 tracey free(swm);
2415 9f6f3943 2020-09-24 tracey free(spt);
2416 9f6f3943 2020-09-24 tracey free(css);
2417 9f6f3943 2020-09-24 tracey free(logo);
2418 2c251c14 2020-01-15 tracey return 1;
2420 9f6f3943 2020-09-24 tracey free(ati);
2421 9f6f3943 2020-09-24 tracey free(fic32);
2422 9f6f3943 2020-09-24 tracey free(fic16);
2423 9f6f3943 2020-09-24 tracey free(swm);
2424 9f6f3943 2020-09-24 tracey free(spt);
2425 9f6f3943 2020-09-24 tracey free(css);
2426 9f6f3943 2020-09-24 tracey free(logo);
2427 9f6f3943 2020-09-24 tracey return 0;
2430 21a55cc7 2020-02-04 tracey static const struct got_error *
2431 21a55cc7 2020-02-04 tracey gw_gen_commit_header(struct gw_trans *gw_trans, char *str1, char *str2)
2433 21a55cc7 2020-02-04 tracey const struct got_error *error = NULL;
2434 21a55cc7 2020-02-04 tracey enum kcgi_err kerr = KCGI_OK;
2436 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2437 21a55cc7 2020-02-04 tracey KATTR_ID, "header_commit_title", KATTR__MAX);
2438 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2439 21a55cc7 2020-02-04 tracey goto done;
2440 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Commit: ");
2441 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2442 21a55cc7 2020-02-04 tracey goto done;
2443 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2444 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2445 21a55cc7 2020-02-04 tracey goto done;
2446 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2447 21a55cc7 2020-02-04 tracey KATTR_ID, "header_commit", KATTR__MAX);
2448 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2449 21a55cc7 2020-02-04 tracey goto done;
2450 32b9f7ed 2020-04-14 tracey kerr = khtml_printf(gw_trans->gw_html_req, "%s ", str1);
2451 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2452 21a55cc7 2020-02-04 tracey goto done;
2453 5c65becf 2020-02-13 tracey if (str2 != NULL) {
2454 bf93a5c0 2020-02-15 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_SPAN,
2455 bf93a5c0 2020-02-15 tracey KATTR_ID, "refs_str", KATTR__MAX);
2456 5c65becf 2020-02-13 tracey if (kerr != KCGI_OK)
2457 5c65becf 2020-02-13 tracey goto done;
2458 32b9f7ed 2020-04-14 tracey kerr = khtml_printf(gw_trans->gw_html_req, "(%s)", str2);
2459 bf93a5c0 2020-02-15 tracey if (kerr != KCGI_OK)
2460 bf93a5c0 2020-02-15 tracey goto done;
2461 bf93a5c0 2020-02-15 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2462 5c65becf 2020-02-13 tracey if (kerr != KCGI_OK)
2463 5c65becf 2020-02-13 tracey goto done;
2465 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2467 21a55cc7 2020-02-04 tracey if (error == NULL && kerr != KCGI_OK)
2468 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2469 21a55cc7 2020-02-04 tracey return error;
2472 f7cc9480 2020-02-05 tracey static const struct got_error *
2473 f7cc9480 2020-02-05 tracey gw_gen_diff_header(struct gw_trans *gw_trans, char *str1, char *str2)
2475 27192be7 2020-02-04 tracey const struct got_error *error = NULL;
2476 f7cc9480 2020-02-05 tracey enum kcgi_err kerr = KCGI_OK;
2478 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2479 f7cc9480 2020-02-05 tracey KATTR_ID, "header_diff_title", KATTR__MAX);
2480 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2481 f7cc9480 2020-02-05 tracey goto done;
2482 f7cc9480 2020-02-05 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Diff: ");
2483 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2484 f7cc9480 2020-02-05 tracey goto done;
2485 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2486 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2487 f7cc9480 2020-02-05 tracey goto done;
2488 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2489 f7cc9480 2020-02-05 tracey KATTR_ID, "header_diff", KATTR__MAX);
2490 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2491 f7cc9480 2020-02-05 tracey goto done;
2492 5c65becf 2020-02-13 tracey if (str1 != NULL) {
2493 5c65becf 2020-02-13 tracey kerr = khtml_puts(gw_trans->gw_html_req, str1);
2494 5c65becf 2020-02-13 tracey if (kerr != KCGI_OK)
2495 5c65becf 2020-02-13 tracey goto done;
2497 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_BR, KATTR__MAX);
2498 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2499 f7cc9480 2020-02-05 tracey goto done;
2500 f7cc9480 2020-02-05 tracey kerr = khtml_puts(gw_trans->gw_html_req, str2);
2501 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2502 f7cc9480 2020-02-05 tracey goto done;
2503 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2505 f7cc9480 2020-02-05 tracey if (error == NULL && kerr != KCGI_OK)
2506 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2507 f7cc9480 2020-02-05 tracey return error;
2510 21a55cc7 2020-02-04 tracey static const struct got_error *
2511 21a55cc7 2020-02-04 tracey gw_gen_age_header(struct gw_trans *gw_trans, const char *str)
2513 21a55cc7 2020-02-04 tracey const struct got_error *error = NULL;
2514 21a55cc7 2020-02-04 tracey enum kcgi_err kerr = KCGI_OK;
2516 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2517 21a55cc7 2020-02-04 tracey KATTR_ID, "header_age_title", KATTR__MAX);
2518 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2519 21a55cc7 2020-02-04 tracey goto done;
2520 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Date: ");
2521 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2522 21a55cc7 2020-02-04 tracey goto done;
2523 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2524 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2525 21a55cc7 2020-02-04 tracey goto done;
2526 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2527 21a55cc7 2020-02-04 tracey KATTR_ID, "header_age", KATTR__MAX);
2528 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2529 21a55cc7 2020-02-04 tracey goto done;
2530 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, str);
2531 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2532 21a55cc7 2020-02-04 tracey goto done;
2533 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2535 21a55cc7 2020-02-04 tracey if (error == NULL && kerr != KCGI_OK)
2536 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2537 21a55cc7 2020-02-04 tracey return error;
2540 21a55cc7 2020-02-04 tracey static const struct got_error *
2541 21a55cc7 2020-02-04 tracey gw_gen_author_header(struct gw_trans *gw_trans, const char *str)
2543 21a55cc7 2020-02-04 tracey const struct got_error *error = NULL;
2544 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2546 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2547 21a55cc7 2020-02-04 tracey KATTR_ID, "header_author_title", KATTR__MAX);
2548 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2549 21a55cc7 2020-02-04 tracey goto done;
2550 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Author: ");
2551 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2552 21a55cc7 2020-02-04 tracey goto done;
2553 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2554 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2555 21a55cc7 2020-02-04 tracey goto done;
2556 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2557 21a55cc7 2020-02-04 tracey KATTR_ID, "header_author", KATTR__MAX);
2558 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2559 21a55cc7 2020-02-04 tracey goto done;
2560 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, str);
2561 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2562 21a55cc7 2020-02-04 tracey goto done;
2563 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2565 21a55cc7 2020-02-04 tracey if (error == NULL && kerr != KCGI_OK)
2566 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2567 21a55cc7 2020-02-04 tracey return error;
2570 21a55cc7 2020-02-04 tracey static const struct got_error *
2571 21a55cc7 2020-02-04 tracey gw_gen_committer_header(struct gw_trans *gw_trans, const char *str)
2573 21a55cc7 2020-02-04 tracey const struct got_error *error = NULL;
2574 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2576 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2577 21a55cc7 2020-02-04 tracey KATTR_ID, "header_committer_title", KATTR__MAX);
2578 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2579 21a55cc7 2020-02-04 tracey goto done;
2580 87ca24ac 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Committer: ");
2581 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2582 21a55cc7 2020-02-04 tracey goto done;
2583 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2584 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2585 21a55cc7 2020-02-04 tracey goto done;
2586 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2587 21a55cc7 2020-02-04 tracey KATTR_ID, "header_committer", KATTR__MAX);
2588 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2589 21a55cc7 2020-02-04 tracey goto done;
2590 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, str);
2591 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2592 21a55cc7 2020-02-04 tracey goto done;
2593 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2595 21a55cc7 2020-02-04 tracey if (error == NULL && kerr != KCGI_OK)
2596 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2597 21a55cc7 2020-02-04 tracey return error;
2600 f7cc9480 2020-02-05 tracey static const struct got_error *
2601 f7cc9480 2020-02-05 tracey gw_gen_commit_msg_header(struct gw_trans *gw_trans, char *str)
2603 27192be7 2020-02-04 tracey const struct got_error *error = NULL;
2604 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2606 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2607 f7cc9480 2020-02-05 tracey KATTR_ID, "header_commit_msg_title", KATTR__MAX);
2608 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2609 f7cc9480 2020-02-05 tracey goto done;
2610 f7cc9480 2020-02-05 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Message: ");
2611 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2612 f7cc9480 2020-02-05 tracey goto done;
2613 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2614 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2615 f7cc9480 2020-02-05 tracey goto done;
2616 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2617 f7cc9480 2020-02-05 tracey KATTR_ID, "header_commit_msg", KATTR__MAX);
2618 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2619 f7cc9480 2020-02-05 tracey goto done;
2620 f7cc9480 2020-02-05 tracey kerr = khttp_puts(gw_trans->gw_req, str);
2621 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2622 f7cc9480 2020-02-05 tracey goto done;
2623 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2625 f7cc9480 2020-02-05 tracey if (error == NULL && kerr != KCGI_OK)
2626 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2627 f7cc9480 2020-02-05 tracey return error;
2630 f7cc9480 2020-02-05 tracey static const struct got_error *
2631 f7cc9480 2020-02-05 tracey gw_gen_tree_header(struct gw_trans *gw_trans, char *str)
2633 f7cc9480 2020-02-05 tracey const struct got_error *error = NULL;
2634 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2636 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2637 f7cc9480 2020-02-05 tracey KATTR_ID, "header_tree_title", KATTR__MAX);
2638 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2639 f7cc9480 2020-02-05 tracey goto done;
2640 f7cc9480 2020-02-05 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Tree: ");
2641 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2642 f7cc9480 2020-02-05 tracey goto done;
2643 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2644 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2645 f7cc9480 2020-02-05 tracey goto done;
2646 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2647 f7cc9480 2020-02-05 tracey KATTR_ID, "header_tree", KATTR__MAX);
2648 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2649 f7cc9480 2020-02-05 tracey goto done;
2650 f7cc9480 2020-02-05 tracey kerr = khtml_puts(gw_trans->gw_html_req, str);
2651 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2652 f7cc9480 2020-02-05 tracey goto done;
2653 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2655 f7cc9480 2020-02-05 tracey if (error == NULL && kerr != KCGI_OK)
2656 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2657 f7cc9480 2020-02-05 tracey return error;
2660 32cd4d18 2020-02-03 stsp static const struct got_error *
2661 32cd4d18 2020-02-03 stsp gw_get_repo_description(char **description, struct gw_trans *gw_trans,
2662 32cd4d18 2020-02-03 stsp char *dir)
2664 32cd4d18 2020-02-03 stsp const struct got_error *error = NULL;
2665 b8b04565 2020-02-02 tracey FILE *f = NULL;
2666 32cd4d18 2020-02-03 stsp char *d_file = NULL;
2667 2c251c14 2020-01-15 tracey unsigned int len;
2670 32cd4d18 2020-02-03 stsp *description = NULL;
2671 0b20762b 2020-01-29 stsp if (gw_trans->gw_conf->got_show_repo_description == 0)
2672 a942aa37 2020-02-10 tracey return NULL;
2674 88d59c36 2020-01-29 stsp if (asprintf(&d_file, "%s/description", dir) == -1)
2675 32cd4d18 2020-02-03 stsp return got_error_from_errno("asprintf");
2677 00fe21f2 2021-12-31 stsp f = fopen(d_file, "re");
2678 32cd4d18 2020-02-03 stsp if (f == NULL) {
2679 32cd4d18 2020-02-03 stsp if (errno == ENOENT || errno == EACCES)
2680 a942aa37 2020-02-10 tracey return NULL;
2681 32cd4d18 2020-02-03 stsp error = got_error_from_errno2("fopen", d_file);
2682 32cd4d18 2020-02-03 stsp goto done;
2685 32cd4d18 2020-02-03 stsp if (fseek(f, 0, SEEK_END) == -1) {
2686 32cd4d18 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
2687 32cd4d18 2020-02-03 stsp goto done;
2689 32cd4d18 2020-02-03 stsp len = ftell(f);
2690 32cd4d18 2020-02-03 stsp if (len == -1) {
2691 32cd4d18 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
2692 32cd4d18 2020-02-03 stsp goto done;
2694 32cd4d18 2020-02-03 stsp if (fseek(f, 0, SEEK_SET) == -1) {
2695 32cd4d18 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
2696 32cd4d18 2020-02-03 stsp goto done;
2698 32cd4d18 2020-02-03 stsp *description = calloc(len + 1, sizeof(**description));
2699 32cd4d18 2020-02-03 stsp if (*description == NULL) {
2700 32cd4d18 2020-02-03 stsp error = got_error_from_errno("calloc");
2701 32cd4d18 2020-02-03 stsp goto done;
2704 32cd4d18 2020-02-03 stsp n = fread(*description, 1, len, f);
2705 1ab830c1 2020-02-03 stsp if (n == 0 && ferror(f))
2706 32cd4d18 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
2708 56b63ca4 2021-01-22 stsp if (f != NULL && fclose(f) == EOF && error == NULL)
2709 32cd4d18 2020-02-03 stsp error = got_error_from_errno("fclose");
2710 2c251c14 2020-01-15 tracey free(d_file);
2711 32cd4d18 2020-02-03 stsp return error;
2714 55ccf528 2020-02-03 stsp static const struct got_error *
2715 55ccf528 2020-02-03 stsp gw_get_time_str(char **repo_age, time_t committer_time, int ref_tm)
2717 474370cb 2020-01-15 tracey struct tm tm;
2718 474370cb 2020-01-15 tracey time_t diff_time;
2719 58e31a80 2022-06-27 op const char *years = "years ago", *months = "months ago";
2720 58e31a80 2022-06-27 op const char *weeks = "weeks ago", *days = "days ago", *hours = "hours ago";
2721 58e31a80 2022-06-27 op const char *minutes = "minutes ago", *seconds = "seconds ago";
2722 58e31a80 2022-06-27 op const char *now = "right now";
2723 58e31a80 2022-06-27 op const char *s;
2724 6c6c85af 2020-01-15 tracey char datebuf[29];
2726 55ccf528 2020-02-03 stsp *repo_age = NULL;
2728 474370cb 2020-01-15 tracey switch (ref_tm) {
2729 474370cb 2020-01-15 tracey case TM_DIFF:
2730 474370cb 2020-01-15 tracey diff_time = time(NULL) - committer_time;
2731 474370cb 2020-01-15 tracey if (diff_time > 60 * 60 * 24 * 365 * 2) {
2732 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s",
2733 88d59c36 2020-01-29 stsp (diff_time / 60 / 60 / 24 / 365), years) == -1)
2734 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2735 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 60 * 24 * (365 / 12) * 2) {
2736 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s",
2737 474370cb 2020-01-15 tracey (diff_time / 60 / 60 / 24 / (365 / 12)),
2738 88d59c36 2020-01-29 stsp months) == -1)
2739 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2740 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 60 * 24 * 7 * 2) {
2741 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s",
2742 88d59c36 2020-01-29 stsp (diff_time / 60 / 60 / 24 / 7), weeks) == -1)
2743 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2744 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 60 * 24 * 2) {
2745 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s",
2746 88d59c36 2020-01-29 stsp (diff_time / 60 / 60 / 24), days) == -1)
2747 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2748 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 60 * 2) {
2749 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s",
2750 88d59c36 2020-01-29 stsp (diff_time / 60 / 60), hours) == -1)
2751 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2752 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 2) {
2753 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s", (diff_time / 60),
2754 88d59c36 2020-01-29 stsp minutes) == -1)
2755 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2756 474370cb 2020-01-15 tracey } else if (diff_time > 2) {
2757 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s", diff_time,
2758 88d59c36 2020-01-29 stsp seconds) == -1)
2759 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2760 474370cb 2020-01-15 tracey } else {
2761 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%s", now) == -1)
2762 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2765 474370cb 2020-01-15 tracey case TM_LONG:
2766 474370cb 2020-01-15 tracey if (gmtime_r(&committer_time, &tm) == NULL)
2767 55ccf528 2020-02-03 stsp return got_error_from_errno("gmtime_r");
2769 474370cb 2020-01-15 tracey s = asctime_r(&tm, datebuf);
2770 474370cb 2020-01-15 tracey if (s == NULL)
2771 55ccf528 2020-02-03 stsp return got_error_from_errno("asctime_r");
2773 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%s UTC", datebuf) == -1)
2774 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2777 55ccf528 2020-02-03 stsp return NULL;
2780 d126c1b7 2020-01-29 stsp static const struct got_error *
2781 d126c1b7 2020-01-29 stsp gw_get_repo_age(char **repo_age, struct gw_trans *gw_trans, char *dir,
2782 2011c142 2020-02-14 stsp const char *refname, int ref_tm)
2784 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
2785 2c251c14 2020-01-15 tracey struct got_repository *repo = NULL;
2786 2c251c14 2020-01-15 tracey struct got_commit_object *commit = NULL;
2787 2c251c14 2020-01-15 tracey struct got_reflist_head refs;
2788 2c251c14 2020-01-15 tracey struct got_reflist_entry *re;
2789 474370cb 2020-01-15 tracey time_t committer_time = 0, cmp_time = 0;
2791 d126c1b7 2020-01-29 stsp *repo_age = NULL;
2792 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
2794 55ccf528 2020-02-03 stsp if (gw_trans->gw_conf->got_show_repo_age == 0)
2795 d126c1b7 2020-01-29 stsp return NULL;
2797 deac617c 2020-02-14 tracey if (gw_trans->repo)
2798 deac617c 2020-02-14 tracey repo = gw_trans->repo;
2800 b0c3aa90 2022-06-15 tracey error = got_repo_open(&repo, dir, NULL, gw_trans->pack_fds);
2801 deac617c 2020-02-14 tracey if (error)
2802 deac617c 2020-02-14 tracey return error;
2805 2011c142 2020-02-14 stsp error = got_ref_list(&refs, repo, "refs/heads",
2806 2011c142 2020-02-14 stsp got_ref_cmp_by_name, NULL);
2807 ec46ccd7 2020-01-15 tracey if (error)
2808 d126c1b7 2020-01-29 stsp goto done;
2811 2011c142 2020-02-14 stsp * Find the youngest branch tip in the repository, or the age of
2812 2011c142 2020-02-14 stsp * the a specific branch tip if a name was provided by the caller.
2814 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, &refs, entry) {
2815 2011c142 2020-02-14 stsp struct got_object_id *id = NULL;
2817 2011c142 2020-02-14 stsp if (refname && strcmp(got_ref_get_name(re->ref), refname) != 0)
2820 2011c142 2020-02-14 stsp error = got_ref_resolve(&id, repo, re->ref);
2821 ec46ccd7 2020-01-15 tracey if (error)
2822 d126c1b7 2020-01-29 stsp goto done;
2824 2c251c14 2020-01-15 tracey error = got_object_open_as_commit(&commit, repo, id);
2826 ec46ccd7 2020-01-15 tracey if (error)
2827 d126c1b7 2020-01-29 stsp goto done;
2829 2c251c14 2020-01-15 tracey committer_time =
2830 2c251c14 2020-01-15 tracey got_object_commit_get_committer_time(commit);
2831 2011c142 2020-02-14 stsp got_object_commit_close(commit);
2832 387a29ba 2020-01-15 tracey if (cmp_time < committer_time)
2833 2c251c14 2020-01-15 tracey cmp_time = committer_time;
2835 2011c142 2020-02-14 stsp if (refname)
2839 474370cb 2020-01-15 tracey if (cmp_time != 0) {
2840 2c251c14 2020-01-15 tracey committer_time = cmp_time;
2841 55ccf528 2020-02-03 stsp error = gw_get_time_str(repo_age, committer_time, ref_tm);
2844 2c251c14 2020-01-15 tracey got_ref_list_free(&refs);
2845 1d0f4054 2021-06-17 stsp if (gw_trans->repo == NULL) {
2846 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
2847 1d0f4054 2021-06-17 stsp if (error == NULL)
2848 1d0f4054 2021-06-17 stsp error = close_err;
2850 d126c1b7 2020-01-29 stsp return error;
2853 83eb9a68 2020-02-03 stsp static const struct got_error *
2854 38b240fb 2020-02-06 tracey gw_output_diff(struct gw_trans *gw_trans, struct gw_header *header)
2856 ec46ccd7 2020-01-15 tracey const struct got_error *error;
2857 b72706c3 2022-06-01 stsp FILE *f = NULL, *f1 = NULL, *f2 = NULL;
2858 f9d37699 2022-06-28 stsp int fd1 = -1, fd2 = -1;
2859 ec46ccd7 2020-01-15 tracey struct got_object_id *id1 = NULL, *id2 = NULL;
2860 f7cc9480 2020-02-05 tracey char *label1 = NULL, *label2 = NULL, *line = NULL;
2861 05ce9a79 2020-01-24 tracey int obj_type;
2862 f7cc9480 2020-02-05 tracey size_t linesize = 0;
2863 83eb9a68 2020-02-03 stsp ssize_t linelen;
2864 f7cc9480 2020-02-05 tracey enum kcgi_err kerr = KCGI_OK;
2866 ec46ccd7 2020-01-15 tracey f = got_opentemp();
2867 ec46ccd7 2020-01-15 tracey if (f == NULL)
2868 ec46ccd7 2020-01-15 tracey return NULL;
2870 b72706c3 2022-06-01 stsp f1 = got_opentemp();
2871 b72706c3 2022-06-01 stsp if (f1 == NULL) {
2872 b72706c3 2022-06-01 stsp error = got_error_from_errno("got_opentemp");
2873 b72706c3 2022-06-01 stsp goto done;
2876 b72706c3 2022-06-01 stsp f2 = got_opentemp();
2877 b72706c3 2022-06-01 stsp if (f2 == NULL) {
2878 b72706c3 2022-06-01 stsp error = got_error_from_errno("got_opentemp");
2879 b72706c3 2022-06-01 stsp goto done;
2882 f9d37699 2022-06-28 stsp fd1 = got_opentempfd();
2883 f9d37699 2022-06-28 stsp if (fd1 == -1) {
2884 f9d37699 2022-06-28 stsp error = got_error_from_errno("got_opentempfd");
2885 f9d37699 2022-06-28 stsp goto done;
2888 f9d37699 2022-06-28 stsp fd2 = got_opentempfd();
2889 f9d37699 2022-06-28 stsp if (fd2 == -1) {
2890 f9d37699 2022-06-28 stsp error = got_error_from_errno("got_opentempfd");
2891 f9d37699 2022-06-28 stsp goto done;
2894 5c65becf 2020-02-13 tracey if (header->parent_id != NULL &&
2895 5c65becf 2020-02-13 tracey strncmp(header->parent_id, "/dev/null", 9) != 0) {
2896 05ce9a79 2020-01-24 tracey error = got_repo_match_object_id(&id1, &label1,
2897 84de9106 2020-12-26 stsp header->parent_id, GOT_OBJ_TYPE_ANY,
2898 84de9106 2020-12-26 stsp &header->refs, gw_trans->repo);
2899 05ce9a79 2020-01-24 tracey if (error)
2900 05ce9a79 2020-01-24 tracey goto done;
2903 90f16cb8 2020-01-24 tracey error = got_repo_match_object_id(&id2, &label2,
2904 84de9106 2020-12-26 stsp header->commit_id, GOT_OBJ_TYPE_ANY, &header->refs,
2905 84de9106 2020-12-26 stsp gw_trans->repo);
2906 90f16cb8 2020-01-24 tracey if (error)
2907 90f16cb8 2020-01-24 tracey goto done;
2909 deac617c 2020-02-14 tracey error = got_object_get_type(&obj_type, gw_trans->repo, id2);
2910 90f16cb8 2020-01-24 tracey if (error)
2911 90f16cb8 2020-01-24 tracey goto done;
2912 05ce9a79 2020-01-24 tracey switch (obj_type) {
2913 ec46ccd7 2020-01-15 tracey case GOT_OBJ_TYPE_BLOB:
2914 b72706c3 2022-06-01 stsp error = got_diff_objects_as_blobs(NULL, NULL, f1, f2,
2915 4b752015 2022-06-30 stsp fd1, fd2, id1, id2, NULL, NULL, GOT_DIFF_ALGORITHM_PATIENCE,
2916 4b752015 2022-06-30 stsp 3, 0, 0, gw_trans->repo, f);
2918 ec46ccd7 2020-01-15 tracey case GOT_OBJ_TYPE_TREE:
2919 b72706c3 2022-06-01 stsp error = got_diff_objects_as_trees(NULL, NULL, f1, f2,
2920 4b752015 2022-06-30 stsp fd1, fd2, id1, id2, NULL, "", "",
2921 4b752015 2022-06-30 stsp GOT_DIFF_ALGORITHM_PATIENCE, 3, 0, 0, gw_trans->repo, f);
2923 ec46ccd7 2020-01-15 tracey case GOT_OBJ_TYPE_COMMIT:
2924 b72706c3 2022-06-01 stsp error = got_diff_objects_as_commits(NULL, NULL, f1, f2,
2925 4b752015 2022-06-30 stsp fd1, fd2, id1, id2, NULL, GOT_DIFF_ALGORITHM_PATIENCE,
2926 4b752015 2022-06-30 stsp 3, 0, 0, gw_trans->repo, f);
2928 ec46ccd7 2020-01-15 tracey default:
2929 ec46ccd7 2020-01-15 tracey error = got_error(GOT_ERR_OBJ_TYPE);
2931 b8b04565 2020-02-02 tracey if (error)
2932 b8b04565 2020-02-02 tracey goto done;
2934 d4729381 2020-02-03 stsp if (fseek(f, 0, SEEK_SET) == -1) {
2935 d4729381 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
2936 ec46ccd7 2020-01-15 tracey goto done;
2939 83eb9a68 2020-02-03 stsp while ((linelen = getline(&line, &linesize, f)) != -1) {
2940 f7cc9480 2020-02-05 tracey error = gw_colordiff_line(gw_trans, line);
2941 ec46ccd7 2020-01-15 tracey if (error)
2942 b8b04565 2020-02-02 tracey goto done;
2943 f7cc9480 2020-02-05 tracey /* XXX: KHTML_PRETTY breaks this */
2944 f7cc9480 2020-02-05 tracey kerr = khtml_puts(gw_trans->gw_html_req, line);
2945 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2946 83eb9a68 2020-02-03 stsp goto done;
2947 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2948 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2949 b8b04565 2020-02-02 tracey goto done;
2951 f7cc9480 2020-02-05 tracey if (linelen == -1 && ferror(f))
2952 83eb9a68 2020-02-03 stsp error = got_error_from_errno("getline");
2954 56b63ca4 2021-01-22 stsp if (f && fclose(f) == EOF && error == NULL)
2955 b72706c3 2022-06-01 stsp error = got_error_from_errno("fclose");
2956 b72706c3 2022-06-01 stsp if (f1 && fclose(f1) == EOF && error == NULL)
2957 b72706c3 2022-06-01 stsp error = got_error_from_errno("fclose");
2958 b72706c3 2022-06-01 stsp if (f2 && fclose(f2) == EOF && error == NULL)
2959 d4729381 2020-02-03 stsp error = got_error_from_errno("fclose");
2960 f9d37699 2022-06-28 stsp if (fd1 != -1 && close(fd1) == -1 && error == NULL)
2961 f9d37699 2022-06-28 stsp error = got_error_from_errno("close");
2962 f9d37699 2022-06-28 stsp if (fd2 != -1 && close(fd2) == -1 && error == NULL)
2963 f9d37699 2022-06-28 stsp error = got_error_from_errno("close");
2964 d4729381 2020-02-03 stsp free(line);
2965 ec46ccd7 2020-01-15 tracey free(label1);
2966 ec46ccd7 2020-01-15 tracey free(label2);
2967 ec46ccd7 2020-01-15 tracey free(id1);
2968 ec46ccd7 2020-01-15 tracey free(id2);
2970 f7cc9480 2020-02-05 tracey if (error == NULL && kerr != KCGI_OK)
2971 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2972 83eb9a68 2020-02-03 stsp return error;
2975 9a1cc63f 2020-02-03 stsp static const struct got_error *
2976 9a1cc63f 2020-02-03 stsp gw_get_repo_owner(char **owner, struct gw_trans *gw_trans, char *dir)
2978 1d0f4054 2021-06-17 stsp const struct got_error *error = NULL, *close_err;
2979 9a1cc63f 2020-02-03 stsp struct got_repository *repo;
2980 9a1cc63f 2020-02-03 stsp const char *gitconfig_owner;
2982 9a1cc63f 2020-02-03 stsp *owner = NULL;
2984 9a1cc63f 2020-02-03 stsp if (gw_trans->gw_conf->got_show_repo_owner == 0)
2985 9a1cc63f 2020-02-03 stsp return NULL;
2987 b0c3aa90 2022-06-15 tracey error = got_repo_open(&repo, dir, NULL, gw_trans->pack_fds);
2988 9a1cc63f 2020-02-03 stsp if (error)
2989 9a1cc63f 2020-02-03 stsp return error;
2991 9a1cc63f 2020-02-03 stsp gitconfig_owner = got_repo_get_gitconfig_owner(repo);
2992 d1635ae4 2020-02-13 tracey if (gitconfig_owner) {
2993 d1635ae4 2020-02-13 tracey *owner = strdup(gitconfig_owner);
2994 d1635ae4 2020-02-13 tracey if (*owner == NULL)
2995 d1635ae4 2020-02-13 tracey error = got_error_from_errno("strdup");
2997 1d0f4054 2021-06-17 stsp close_err = got_repo_close(repo);
2998 1d0f4054 2021-06-17 stsp if (error == NULL)
2999 1d0f4054 2021-06-17 stsp error = close_err;
3000 9a1cc63f 2020-02-03 stsp return error;
3003 59d3c40e 2020-02-03 stsp static const struct got_error *
3004 59d3c40e 2020-02-03 stsp gw_get_clone_url(char **url, struct gw_trans *gw_trans, char *dir)
3006 59d3c40e 2020-02-03 stsp const struct got_error *error = NULL;
3007 2c251c14 2020-01-15 tracey FILE *f;
3008 59d3c40e 2020-02-03 stsp char *d_file = NULL;
3009 2c251c14 2020-01-15 tracey unsigned int len;
3012 59d3c40e 2020-02-03 stsp *url = NULL;
3014 59d3c40e 2020-02-03 stsp if (asprintf(&d_file, "%s/cloneurl", dir) == -1)
3015 59d3c40e 2020-02-03 stsp return got_error_from_errno("asprintf");
3017 00fe21f2 2021-12-31 stsp f = fopen(d_file, "re");
3018 59d3c40e 2020-02-03 stsp if (f == NULL) {
3019 59d3c40e 2020-02-03 stsp if (errno != ENOENT && errno != EACCES)
3020 59d3c40e 2020-02-03 stsp error = got_error_from_errno2("fopen", d_file);
3021 59d3c40e 2020-02-03 stsp goto done;
3024 59d3c40e 2020-02-03 stsp if (fseek(f, 0, SEEK_END) == -1) {
3025 59d3c40e 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
3026 59d3c40e 2020-02-03 stsp goto done;
3028 59d3c40e 2020-02-03 stsp len = ftell(f);
3029 59d3c40e 2020-02-03 stsp if (len == -1) {
3030 59d3c40e 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
3031 59d3c40e 2020-02-03 stsp goto done;
3033 59d3c40e 2020-02-03 stsp if (fseek(f, 0, SEEK_SET) == -1) {
3034 59d3c40e 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
3035 59d3c40e 2020-02-03 stsp goto done;
3038 59d3c40e 2020-02-03 stsp *url = calloc(len + 1, sizeof(**url));
3039 59d3c40e 2020-02-03 stsp if (*url == NULL) {
3040 59d3c40e 2020-02-03 stsp error = got_error_from_errno("calloc");
3041 59d3c40e 2020-02-03 stsp goto done;