Blame


1 8a35f56c 2022-07-16 thomas /*
2 8a35f56c 2022-07-16 thomas * Copyright (c) 2016, 2019, 2020-2022 Tracey Emery <tracey@traceyemery.net>
3 8a35f56c 2022-07-16 thomas * Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org>
4 2ac684a4 2022-09-03 thomas * Copyright (c) 2014 Reyk Floeter <reyk@openbsd.org>
5 8a35f56c 2022-07-16 thomas * Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
6 8a35f56c 2022-07-16 thomas * Copyright (c) 2013 Florian Obser <florian@openbsd.org>
7 8a35f56c 2022-07-16 thomas *
8 8a35f56c 2022-07-16 thomas * Permission to use, copy, modify, and distribute this software for any
9 8a35f56c 2022-07-16 thomas * purpose with or without fee is hereby granted, provided that the above
10 8a35f56c 2022-07-16 thomas * copyright notice and this permission notice appear in all copies.
11 8a35f56c 2022-07-16 thomas *
12 8a35f56c 2022-07-16 thomas * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 8a35f56c 2022-07-16 thomas * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 8a35f56c 2022-07-16 thomas * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 8a35f56c 2022-07-16 thomas * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 8a35f56c 2022-07-16 thomas * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 8a35f56c 2022-07-16 thomas * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 8a35f56c 2022-07-16 thomas * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 8a35f56c 2022-07-16 thomas */
20 8a35f56c 2022-07-16 thomas
21 8a35f56c 2022-07-16 thomas #include <net/if.h>
22 8a35f56c 2022-07-16 thomas #include <netinet/in.h>
23 3e12c168 2022-07-16 thomas #include <sys/queue.h>
24 8a35f56c 2022-07-16 thomas #include <sys/stat.h>
25 8a35f56c 2022-07-16 thomas #include <sys/types.h>
26 8a35f56c 2022-07-16 thomas
27 2ac684a4 2022-09-03 thomas #include <ctype.h>
28 8a35f56c 2022-07-16 thomas #include <dirent.h>
29 8a35f56c 2022-07-16 thomas #include <errno.h>
30 8a35f56c 2022-07-16 thomas #include <event.h>
31 4606e6d4 2022-11-23 thomas #include <fcntl.h>
32 4606e6d4 2022-11-23 thomas #include <imsg.h>
33 8a35f56c 2022-07-16 thomas #include <stdio.h>
34 8a35f56c 2022-07-16 thomas #include <stdlib.h>
35 8a35f56c 2022-07-16 thomas #include <string.h>
36 8a35f56c 2022-07-16 thomas #include <unistd.h>
37 8a35f56c 2022-07-16 thomas
38 8a35f56c 2022-07-16 thomas #include "got_error.h"
39 8a35f56c 2022-07-16 thomas #include "got_object.h"
40 8a35f56c 2022-07-16 thomas #include "got_reference.h"
41 8a35f56c 2022-07-16 thomas #include "got_repository.h"
42 8a35f56c 2022-07-16 thomas #include "got_path.h"
43 8a35f56c 2022-07-16 thomas #include "got_cancel.h"
44 8a35f56c 2022-07-16 thomas #include "got_worktree.h"
45 8a35f56c 2022-07-16 thomas #include "got_diff.h"
46 8a35f56c 2022-07-16 thomas #include "got_commit_graph.h"
47 8a35f56c 2022-07-16 thomas #include "got_blame.h"
48 8a35f56c 2022-07-16 thomas #include "got_privsep.h"
49 cb11302c 2022-12-30 thomas
50 cb11302c 2022-12-30 thomas #include "got_compat.h"
51 8a35f56c 2022-07-16 thomas
52 8a35f56c 2022-07-16 thomas #include "proc.h"
53 8a35f56c 2022-07-16 thomas #include "gotwebd.h"
54 d6795e9f 2022-12-30 thomas #include "tmpl.h"
55 ff36aeea 2022-07-16 thomas
56 8a35f56c 2022-07-16 thomas static const struct querystring_keys querystring_keys[] = {
57 8a35f56c 2022-07-16 thomas { "action", ACTION },
58 8a35f56c 2022-07-16 thomas { "commit", COMMIT },
59 8a35f56c 2022-07-16 thomas { "file", RFILE },
60 8a35f56c 2022-07-16 thomas { "folder", FOLDER },
61 8a35f56c 2022-07-16 thomas { "headref", HEADREF },
62 8a35f56c 2022-07-16 thomas { "index_page", INDEX_PAGE },
63 8a35f56c 2022-07-16 thomas { "path", PATH },
64 8a35f56c 2022-07-16 thomas { "page", PAGE },
65 8a35f56c 2022-07-16 thomas };
66 8a35f56c 2022-07-16 thomas
67 8a35f56c 2022-07-16 thomas static const struct action_keys action_keys[] = {
68 8a35f56c 2022-07-16 thomas { "blame", BLAME },
69 8a35f56c 2022-07-16 thomas { "blob", BLOB },
70 b82440e1 2023-01-06 thomas { "blobraw", BLOBRAW },
71 8a35f56c 2022-07-16 thomas { "briefs", BRIEFS },
72 8a35f56c 2022-07-16 thomas { "commits", COMMITS },
73 8a35f56c 2022-07-16 thomas { "diff", DIFF },
74 8a35f56c 2022-07-16 thomas { "error", ERR },
75 8a35f56c 2022-07-16 thomas { "index", INDEX },
76 8a35f56c 2022-07-16 thomas { "summary", SUMMARY },
77 8a35f56c 2022-07-16 thomas { "tag", TAG },
78 8a35f56c 2022-07-16 thomas { "tags", TAGS },
79 8a35f56c 2022-07-16 thomas { "tree", TREE },
80 d6795e9f 2022-12-30 thomas { "rss", RSS },
81 8a35f56c 2022-07-16 thomas };
82 8a35f56c 2022-07-16 thomas
83 8a35f56c 2022-07-16 thomas static const struct got_error *gotweb_init_querystring(struct querystring **);
84 8a35f56c 2022-07-16 thomas static const struct got_error *gotweb_parse_querystring(struct querystring **,
85 8a35f56c 2022-07-16 thomas char *);
86 8a35f56c 2022-07-16 thomas static const struct got_error *gotweb_assign_querystring(struct querystring **,
87 8a35f56c 2022-07-16 thomas char *, char *);
88 8a35f56c 2022-07-16 thomas static const struct got_error *gotweb_render_index(struct request *);
89 8a35f56c 2022-07-16 thomas static const struct got_error *gotweb_init_repo_dir(struct repo_dir **,
90 8a35f56c 2022-07-16 thomas const char *);
91 8a35f56c 2022-07-16 thomas static const struct got_error *gotweb_load_got_path(struct request *c,
92 8a35f56c 2022-07-16 thomas struct repo_dir *);
93 8a35f56c 2022-07-16 thomas static const struct got_error *gotweb_get_repo_description(char **,
94 4606e6d4 2022-11-23 thomas struct server *, const char *, int);
95 8a35f56c 2022-07-16 thomas static const struct got_error *gotweb_get_clone_url(char **, struct server *,
96 4606e6d4 2022-11-23 thomas const char *, int);
97 e7e5fa49 2022-12-30 thomas
98 8a35f56c 2022-07-16 thomas static void gotweb_free_querystring(struct querystring *);
99 8a35f56c 2022-07-16 thomas static void gotweb_free_repo_dir(struct repo_dir *);
100 8a35f56c 2022-07-16 thomas
101 3f0158b4 2022-08-30 thomas struct server *gotweb_get_server(uint8_t *, uint8_t *);
102 8a35f56c 2022-07-16 thomas
103 50237485 2023-01-23 thomas static int
104 50237485 2023-01-23 thomas gotweb_reply(struct request *c, int status, const char *ctype,
105 50237485 2023-01-23 thomas struct gotweb_url *location)
106 50237485 2023-01-23 thomas {
107 50237485 2023-01-23 thomas const char *csp;
108 50237485 2023-01-23 thomas
109 50237485 2023-01-23 thomas if (status != 200 && fcgi_printf(c, "Status: %d\r\n", status) == -1)
110 50237485 2023-01-23 thomas return -1;
111 50237485 2023-01-23 thomas
112 50237485 2023-01-23 thomas if (location) {
113 50237485 2023-01-23 thomas if (fcgi_puts(c->tp, "Location: ") == -1 ||
114 50237485 2023-01-23 thomas gotweb_render_url(c, location) == -1 ||
115 50237485 2023-01-23 thomas fcgi_puts(c->tp, "\r\n") == -1)
116 50237485 2023-01-23 thomas return -1;
117 50237485 2023-01-23 thomas }
118 50237485 2023-01-23 thomas
119 50237485 2023-01-23 thomas csp = "Content-Security-Policy: default-src 'self'; "
120 50237485 2023-01-23 thomas "script-src 'none'; object-src 'none';\r\n";
121 50237485 2023-01-23 thomas if (fcgi_puts(c->tp, csp) == -1)
122 50237485 2023-01-23 thomas return -1;
123 50237485 2023-01-23 thomas
124 50237485 2023-01-23 thomas if (ctype && fcgi_printf(c, "Content-Type: %s\r\n", ctype) == -1)
125 50237485 2023-01-23 thomas return -1;
126 50237485 2023-01-23 thomas
127 50237485 2023-01-23 thomas return fcgi_puts(c->tp, "\r\n");
128 50237485 2023-01-23 thomas }
129 50237485 2023-01-23 thomas
130 50237485 2023-01-23 thomas static int
131 50237485 2023-01-23 thomas gotweb_reply_file(struct request *c, const char *ctype, const char *file,
132 50237485 2023-01-23 thomas const char *suffix)
133 50237485 2023-01-23 thomas {
134 50237485 2023-01-23 thomas int r;
135 50237485 2023-01-23 thomas
136 50237485 2023-01-23 thomas r = fcgi_printf(c, "Content-Disposition: attachment; "
137 50237485 2023-01-23 thomas "filename=%s%s\r\n", file, suffix ? suffix : "");
138 50237485 2023-01-23 thomas if (r == -1)
139 50237485 2023-01-23 thomas return -1;
140 50237485 2023-01-23 thomas return gotweb_reply(c, 200, ctype, NULL);
141 50237485 2023-01-23 thomas }
142 50237485 2023-01-23 thomas
143 8a35f56c 2022-07-16 thomas void
144 8a35f56c 2022-07-16 thomas gotweb_process_request(struct request *c)
145 8a35f56c 2022-07-16 thomas {
146 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL, *error2 = NULL;
147 b82440e1 2023-01-06 thomas struct got_blob_object *blob = NULL;
148 8a35f56c 2022-07-16 thomas struct server *srv = NULL;
149 8a35f56c 2022-07-16 thomas struct querystring *qs = NULL;
150 8a35f56c 2022-07-16 thomas struct repo_dir *repo_dir = NULL;
151 18e466eb 2023-01-14 thomas struct got_reflist_head refs;
152 dccd05b4 2023-01-10 thomas FILE *fp = NULL;
153 8a35f56c 2022-07-16 thomas uint8_t err[] = "gotwebd experienced an error: ";
154 b82440e1 2023-01-06 thomas int r, html = 0, fd = -1;
155 18e466eb 2023-01-14 thomas
156 18e466eb 2023-01-14 thomas TAILQ_INIT(&refs);
157 8a35f56c 2022-07-16 thomas
158 8a35f56c 2022-07-16 thomas /* init the transport */
159 8a35f56c 2022-07-16 thomas error = gotweb_init_transport(&c->t);
160 8a35f56c 2022-07-16 thomas if (error) {
161 8a35f56c 2022-07-16 thomas log_warnx("%s: %s", __func__, error->msg);
162 46aeda9a 2022-08-27 thomas return;
163 8a35f56c 2022-07-16 thomas }
164 8a35f56c 2022-07-16 thomas /* don't process any further if client disconnected */
165 8a35f56c 2022-07-16 thomas if (c->sock->client_status == CLIENT_DISCONNECT)
166 8a35f56c 2022-07-16 thomas return;
167 8a35f56c 2022-07-16 thomas /* get the gotwebd server */
168 3f0158b4 2022-08-30 thomas srv = gotweb_get_server(c->server_name, c->http_host);
169 8a35f56c 2022-07-16 thomas if (srv == NULL) {
170 8a35f56c 2022-07-16 thomas log_warnx("%s: error server is NULL", __func__);
171 8a35f56c 2022-07-16 thomas goto err;
172 8a35f56c 2022-07-16 thomas }
173 8a35f56c 2022-07-16 thomas c->srv = srv;
174 8a35f56c 2022-07-16 thomas /* parse our querystring */
175 8a35f56c 2022-07-16 thomas error = gotweb_init_querystring(&qs);
176 8a35f56c 2022-07-16 thomas if (error) {
177 8a35f56c 2022-07-16 thomas log_warnx("%s: %s", __func__, error->msg);
178 8a35f56c 2022-07-16 thomas goto err;
179 8a35f56c 2022-07-16 thomas }
180 8a35f56c 2022-07-16 thomas c->t->qs = qs;
181 8a35f56c 2022-07-16 thomas error = gotweb_parse_querystring(&qs, c->querystring);
182 8a35f56c 2022-07-16 thomas if (error) {
183 8a35f56c 2022-07-16 thomas log_warnx("%s: %s", __func__, error->msg);
184 8a35f56c 2022-07-16 thomas goto err;
185 8a35f56c 2022-07-16 thomas }
186 8a35f56c 2022-07-16 thomas
187 8a35f56c 2022-07-16 thomas /*
188 8a35f56c 2022-07-16 thomas * certain actions require a commit id in the querystring. this stops
189 8a35f56c 2022-07-16 thomas * bad actors from exploiting this by manually manipulating the
190 8a35f56c 2022-07-16 thomas * querystring.
191 8a35f56c 2022-07-16 thomas */
192 8a35f56c 2022-07-16 thomas
193 b82440e1 2023-01-06 thomas if (qs->action == BLAME || qs->action == BLOB ||
194 b82440e1 2023-01-06 thomas qs->action == BLOBRAW || qs->action == DIFF) {
195 b82440e1 2023-01-06 thomas if (qs->commit == NULL) {
196 b82440e1 2023-01-06 thomas error2 = got_error(GOT_ERR_QUERYSTRING);
197 b82440e1 2023-01-06 thomas goto render;
198 b82440e1 2023-01-06 thomas }
199 8a35f56c 2022-07-16 thomas }
200 8a35f56c 2022-07-16 thomas
201 8a35f56c 2022-07-16 thomas if (qs->action != INDEX) {
202 8a35f56c 2022-07-16 thomas error = gotweb_init_repo_dir(&repo_dir, qs->path);
203 8a35f56c 2022-07-16 thomas if (error)
204 8a35f56c 2022-07-16 thomas goto done;
205 8a35f56c 2022-07-16 thomas error = gotweb_load_got_path(c, repo_dir);
206 8a35f56c 2022-07-16 thomas c->t->repo_dir = repo_dir;
207 8a35f56c 2022-07-16 thomas if (error && error->code != GOT_ERR_LONELY_PACKIDX)
208 8a35f56c 2022-07-16 thomas goto err;
209 8a35f56c 2022-07-16 thomas }
210 8a35f56c 2022-07-16 thomas
211 b82440e1 2023-01-06 thomas if (qs->action == BLOBRAW) {
212 ea1b5cf5 2023-01-15 thomas const uint8_t *buf;
213 ea1b5cf5 2023-01-15 thomas size_t len;
214 50237485 2023-01-23 thomas int binary, r;
215 ea1b5cf5 2023-01-15 thomas
216 8a35f56c 2022-07-16 thomas error = got_get_repo_commits(c, 1);
217 8a35f56c 2022-07-16 thomas if (error)
218 8a35f56c 2022-07-16 thomas goto done;
219 ea1b5cf5 2023-01-15 thomas
220 ea1b5cf5 2023-01-15 thomas error2 = got_open_blob_for_output(&blob, &fd, &binary, c);
221 ea1b5cf5 2023-01-15 thomas if (error2)
222 ea1b5cf5 2023-01-15 thomas goto render;
223 ea1b5cf5 2023-01-15 thomas
224 ea1b5cf5 2023-01-15 thomas if (binary)
225 50237485 2023-01-23 thomas r = gotweb_reply_file(c, "application/octet-stream",
226 50237485 2023-01-23 thomas qs->file, NULL);
227 ea1b5cf5 2023-01-15 thomas else
228 50237485 2023-01-23 thomas r = gotweb_reply(c, 200, "text/plain", NULL);
229 50237485 2023-01-23 thomas if (r == -1)
230 ea1b5cf5 2023-01-15 thomas goto done;
231 ea1b5cf5 2023-01-15 thomas
232 ea1b5cf5 2023-01-15 thomas for (;;) {
233 ea1b5cf5 2023-01-15 thomas error = got_object_blob_read_block(&len, blob);
234 ea1b5cf5 2023-01-15 thomas if (error)
235 ea1b5cf5 2023-01-15 thomas goto done;
236 ea1b5cf5 2023-01-15 thomas if (len == 0)
237 ea1b5cf5 2023-01-15 thomas break;
238 ea1b5cf5 2023-01-15 thomas buf = got_object_blob_get_read_buf(blob);
239 ea1b5cf5 2023-01-15 thomas if (fcgi_gen_binary_response(c, buf, len) == -1)
240 ea1b5cf5 2023-01-15 thomas goto done;
241 d6795e9f 2022-12-30 thomas }
242 ea1b5cf5 2023-01-15 thomas
243 d6795e9f 2022-12-30 thomas goto done;
244 b82440e1 2023-01-06 thomas }
245 b82440e1 2023-01-06 thomas
246 b82440e1 2023-01-06 thomas if (qs->action == BLOB) {
247 b82440e1 2023-01-06 thomas int binary;
248 b82440e1 2023-01-06 thomas struct gotweb_url url = {
249 b82440e1 2023-01-06 thomas .index_page = -1,
250 b82440e1 2023-01-06 thomas .page = -1,
251 b82440e1 2023-01-06 thomas .action = BLOBRAW,
252 b82440e1 2023-01-06 thomas .path = qs->path,
253 b82440e1 2023-01-06 thomas .commit = qs->commit,
254 b82440e1 2023-01-06 thomas .folder = qs->folder,
255 b82440e1 2023-01-06 thomas .file = qs->file,
256 b82440e1 2023-01-06 thomas };
257 b82440e1 2023-01-06 thomas
258 b82440e1 2023-01-06 thomas error = got_get_repo_commits(c, 1);
259 b82440e1 2023-01-06 thomas if (error)
260 b82440e1 2023-01-06 thomas goto done;
261 b82440e1 2023-01-06 thomas
262 b82440e1 2023-01-06 thomas error2 = got_open_blob_for_output(&blob, &fd, &binary, c);
263 b82440e1 2023-01-06 thomas if (error2)
264 b82440e1 2023-01-06 thomas goto render;
265 b82440e1 2023-01-06 thomas if (binary) {
266 50237485 2023-01-23 thomas gotweb_reply(c, 302, NULL, &url);
267 b82440e1 2023-01-06 thomas goto done;
268 b82440e1 2023-01-06 thomas }
269 d6795e9f 2022-12-30 thomas }
270 d6795e9f 2022-12-30 thomas
271 d6795e9f 2022-12-30 thomas if (qs->action == RSS) {
272 50237485 2023-01-23 thomas const char *ctype = "application/rss+xml;charset=utf-8";
273 d6795e9f 2022-12-30 thomas
274 50237485 2023-01-23 thomas if (gotweb_reply_file(c, ctype, repo_dir->name, ".rss") == -1)
275 50237485 2023-01-23 thomas goto done;
276 50237485 2023-01-23 thomas
277 d6795e9f 2022-12-30 thomas error = got_get_repo_tags(c, D_MAXSLCOMMDISP);
278 8a35f56c 2022-07-16 thomas if (error) {
279 8a35f56c 2022-07-16 thomas log_warnx("%s: %s", __func__, error->msg);
280 8a35f56c 2022-07-16 thomas goto err;
281 8a35f56c 2022-07-16 thomas }
282 d6795e9f 2022-12-30 thomas if (gotweb_render_rss(c->tp) == -1)
283 d6795e9f 2022-12-30 thomas goto err;
284 8a35f56c 2022-07-16 thomas goto done;
285 43a44bce 2022-12-04 thomas }
286 43a44bce 2022-12-04 thomas
287 43a44bce 2022-12-04 thomas render:
288 50237485 2023-01-23 thomas if (gotweb_reply(c, 200, "text/html", NULL) == -1)
289 50237485 2023-01-23 thomas goto done;
290 43a44bce 2022-12-04 thomas html = 1;
291 8a35f56c 2022-07-16 thomas
292 e7e5fa49 2022-12-30 thomas if (gotweb_render_header(c->tp) == -1)
293 8a35f56c 2022-07-16 thomas goto err;
294 8a35f56c 2022-07-16 thomas
295 8a35f56c 2022-07-16 thomas if (error2) {
296 8a35f56c 2022-07-16 thomas error = error2;
297 8a35f56c 2022-07-16 thomas goto err;
298 8a35f56c 2022-07-16 thomas }
299 8a35f56c 2022-07-16 thomas
300 8a35f56c 2022-07-16 thomas switch(qs->action) {
301 8a35f56c 2022-07-16 thomas case BLAME:
302 1cd5d437 2023-01-15 thomas error = got_get_repo_commits(c, 1);
303 8a35f56c 2022-07-16 thomas if (error) {
304 8a35f56c 2022-07-16 thomas log_warnx("%s: %s", __func__, error->msg);
305 8a35f56c 2022-07-16 thomas goto err;
306 8a35f56c 2022-07-16 thomas }
307 1cd5d437 2023-01-15 thomas if (gotweb_render_blame(c->tp) == -1)
308 1cd5d437 2023-01-15 thomas goto done;
309 b82440e1 2023-01-06 thomas break;
310 b82440e1 2023-01-06 thomas case BLOB:
311 b82440e1 2023-01-06 thomas if (gotweb_render_blob(c->tp, blob) == -1)
312 b82440e1 2023-01-06 thomas goto err;
313 8a35f56c 2022-07-16 thomas break;
314 8a35f56c 2022-07-16 thomas case BRIEFS:
315 e7e5fa49 2022-12-30 thomas if (gotweb_render_briefs(c->tp) == -1)
316 8a35f56c 2022-07-16 thomas goto err;
317 8a35f56c 2022-07-16 thomas break;
318 8a35f56c 2022-07-16 thomas case COMMITS:
319 7ade8b27 2022-12-30 thomas error = got_get_repo_commits(c, srv->max_commits_display);
320 8a35f56c 2022-07-16 thomas if (error) {
321 8a35f56c 2022-07-16 thomas log_warnx("%s: %s", __func__, error->msg);
322 8a35f56c 2022-07-16 thomas goto err;
323 8a35f56c 2022-07-16 thomas }
324 7ade8b27 2022-12-30 thomas if (gotweb_render_commits(c->tp) == -1)
325 7ade8b27 2022-12-30 thomas goto err;
326 8a35f56c 2022-07-16 thomas break;
327 8a35f56c 2022-07-16 thomas case DIFF:
328 dccd05b4 2023-01-10 thomas error = got_get_repo_commits(c, 1);
329 5d860bce 2023-01-07 thomas if (error) {
330 5d860bce 2023-01-07 thomas log_warnx("%s: %s", __func__, error->msg);
331 5d860bce 2023-01-07 thomas goto err;
332 5d860bce 2023-01-07 thomas }
333 dccd05b4 2023-01-10 thomas error = got_open_diff_for_output(&fp, &fd, c);
334 dccd05b4 2023-01-10 thomas if (error) {
335 dccd05b4 2023-01-10 thomas log_warnx("%s: %s", __func__, error->msg);
336 dccd05b4 2023-01-10 thomas goto err;
337 dccd05b4 2023-01-10 thomas }
338 dccd05b4 2023-01-10 thomas if (gotweb_render_diff(c->tp, fp) == -1)
339 dccd05b4 2023-01-10 thomas goto err;
340 8a35f56c 2022-07-16 thomas break;
341 8a35f56c 2022-07-16 thomas case INDEX:
342 8a35f56c 2022-07-16 thomas error = gotweb_render_index(c);
343 8a35f56c 2022-07-16 thomas if (error) {
344 8a35f56c 2022-07-16 thomas log_warnx("%s: %s", __func__, error->msg);
345 8a35f56c 2022-07-16 thomas goto err;
346 8a35f56c 2022-07-16 thomas }
347 8a35f56c 2022-07-16 thomas break;
348 8a35f56c 2022-07-16 thomas case SUMMARY:
349 18e466eb 2023-01-14 thomas error = got_ref_list(&refs, c->t->repo, "refs/heads",
350 18e466eb 2023-01-14 thomas got_ref_cmp_by_name, NULL);
351 8a35f56c 2022-07-16 thomas if (error) {
352 18e466eb 2023-01-14 thomas log_warnx("%s: got_ref_list: %s", __func__,
353 18e466eb 2023-01-14 thomas error->msg);
354 8a35f56c 2022-07-16 thomas goto err;
355 8a35f56c 2022-07-16 thomas }
356 18e466eb 2023-01-14 thomas qs->action = TAGS;
357 18e466eb 2023-01-14 thomas error = got_get_repo_tags(c, D_MAXSLCOMMDISP);
358 18e466eb 2023-01-14 thomas if (error) {
359 18e466eb 2023-01-14 thomas log_warnx("%s: got_get_repo_tags: %s", __func__,
360 18e466eb 2023-01-14 thomas error->msg);
361 18e466eb 2023-01-14 thomas goto err;
362 18e466eb 2023-01-14 thomas }
363 18e466eb 2023-01-14 thomas qs->action = SUMMARY;
364 18e466eb 2023-01-14 thomas if (gotweb_render_summary(c->tp, &refs) == -1)
365 18e466eb 2023-01-14 thomas goto done;
366 8a35f56c 2022-07-16 thomas break;
367 8a35f56c 2022-07-16 thomas case TAG:
368 145ca42a 2023-01-09 thomas error = got_get_repo_tags(c, 1);
369 8a35f56c 2022-07-16 thomas if (error) {
370 8a35f56c 2022-07-16 thomas log_warnx("%s: %s", __func__, error->msg);
371 145ca42a 2023-01-09 thomas goto err;
372 145ca42a 2023-01-09 thomas }
373 145ca42a 2023-01-09 thomas if (c->t->tag_count == 0) {
374 145ca42a 2023-01-09 thomas error = got_error_msg(GOT_ERR_BAD_OBJ_ID,
375 145ca42a 2023-01-09 thomas "bad commit id");
376 8a35f56c 2022-07-16 thomas goto err;
377 8a35f56c 2022-07-16 thomas }
378 145ca42a 2023-01-09 thomas if (gotweb_render_tag(c->tp) == -1)
379 145ca42a 2023-01-09 thomas goto done;
380 8a35f56c 2022-07-16 thomas break;
381 8a35f56c 2022-07-16 thomas case TAGS:
382 b3ba36c3 2023-01-14 thomas error = got_get_repo_tags(c, srv->max_commits_display);
383 8a35f56c 2022-07-16 thomas if (error) {
384 8a35f56c 2022-07-16 thomas log_warnx("%s: %s", __func__, error->msg);
385 8a35f56c 2022-07-16 thomas goto err;
386 8a35f56c 2022-07-16 thomas }
387 b3ba36c3 2023-01-14 thomas if (gotweb_render_tags(c->tp) == -1)
388 b3ba36c3 2023-01-14 thomas goto done;
389 8a35f56c 2022-07-16 thomas break;
390 8a35f56c 2022-07-16 thomas case TREE:
391 3c14c1f2 2023-01-06 thomas error = got_get_repo_commits(c, 1);
392 8a35f56c 2022-07-16 thomas if (error) {
393 8a35f56c 2022-07-16 thomas log_warnx("%s: %s", __func__, error->msg);
394 8a35f56c 2022-07-16 thomas goto err;
395 8a35f56c 2022-07-16 thomas }
396 3c14c1f2 2023-01-06 thomas if (gotweb_render_tree(c->tp) == -1)
397 3c14c1f2 2023-01-06 thomas goto err;
398 8a35f56c 2022-07-16 thomas break;
399 8a35f56c 2022-07-16 thomas case ERR:
400 8a35f56c 2022-07-16 thomas default:
401 79393471 2022-08-27 thomas r = fcgi_printf(c, "<div id='err_content'>%s</div>\n",
402 79393471 2022-08-27 thomas "Erorr: Bad Querystring");
403 79393471 2022-08-27 thomas if (r == -1)
404 8a35f56c 2022-07-16 thomas goto err;
405 8a35f56c 2022-07-16 thomas break;
406 8a35f56c 2022-07-16 thomas }
407 8a35f56c 2022-07-16 thomas
408 8a35f56c 2022-07-16 thomas goto done;
409 8a35f56c 2022-07-16 thomas err:
410 79393471 2022-08-27 thomas if (html && fcgi_printf(c, "<div id='err_content'>") == -1)
411 8a35f56c 2022-07-16 thomas return;
412 a5f25a12 2022-10-31 thomas if (fcgi_printf(c, "\n%s", err) == -1)
413 8a35f56c 2022-07-16 thomas return;
414 8a35f56c 2022-07-16 thomas if (error) {
415 79393471 2022-08-27 thomas if (fcgi_printf(c, "%s", error->msg) == -1)
416 8a35f56c 2022-07-16 thomas return;
417 8a35f56c 2022-07-16 thomas } else {
418 79393471 2022-08-27 thomas if (fcgi_printf(c, "see daemon logs for details") == -1)
419 8a35f56c 2022-07-16 thomas return;
420 8a35f56c 2022-07-16 thomas }
421 79393471 2022-08-27 thomas if (html && fcgi_printf(c, "</div>\n") == -1)
422 8a35f56c 2022-07-16 thomas return;
423 8a35f56c 2022-07-16 thomas done:
424 b82440e1 2023-01-06 thomas if (blob)
425 b82440e1 2023-01-06 thomas got_object_blob_close(blob);
426 dccd05b4 2023-01-10 thomas if (fp) {
427 dccd05b4 2023-01-10 thomas error = got_gotweb_flushfile(fp, fd);
428 dccd05b4 2023-01-10 thomas if (error)
429 dccd05b4 2023-01-10 thomas log_warnx("%s: got_gotweb_flushfile failure: %s",
430 dccd05b4 2023-01-10 thomas __func__, error->msg);
431 dccd05b4 2023-01-10 thomas fd = -1;
432 dccd05b4 2023-01-10 thomas }
433 b82440e1 2023-01-06 thomas if (fd != -1)
434 b82440e1 2023-01-06 thomas close(fd);
435 8a35f56c 2022-07-16 thomas if (html && srv != NULL)
436 e7e5fa49 2022-12-30 thomas gotweb_render_footer(c->tp);
437 18e466eb 2023-01-14 thomas
438 18e466eb 2023-01-14 thomas got_ref_list_free(&refs);
439 8a35f56c 2022-07-16 thomas }
440 8a35f56c 2022-07-16 thomas
441 8a35f56c 2022-07-16 thomas struct server *
442 3f0158b4 2022-08-30 thomas gotweb_get_server(uint8_t *server_name, uint8_t *subdomain)
443 8a35f56c 2022-07-16 thomas {
444 8a35f56c 2022-07-16 thomas struct server *srv = NULL;
445 8a35f56c 2022-07-16 thomas
446 3f0158b4 2022-08-30 thomas /* check against the server name first */
447 8a35f56c 2022-07-16 thomas if (strlen(server_name) > 0)
448 90d63d47 2022-08-16 thomas TAILQ_FOREACH(srv, &gotwebd_env->servers, entry)
449 8a35f56c 2022-07-16 thomas if (strcmp(srv->name, server_name) == 0)
450 8a35f56c 2022-07-16 thomas goto done;
451 8a35f56c 2022-07-16 thomas
452 3f0158b4 2022-08-30 thomas /* check against subdomain second */
453 8a35f56c 2022-07-16 thomas if (strlen(subdomain) > 0)
454 90d63d47 2022-08-16 thomas TAILQ_FOREACH(srv, &gotwebd_env->servers, entry)
455 8a35f56c 2022-07-16 thomas if (strcmp(srv->name, subdomain) == 0)
456 8a35f56c 2022-07-16 thomas goto done;
457 8a35f56c 2022-07-16 thomas
458 8a35f56c 2022-07-16 thomas /* if those fail, send first server */
459 90d63d47 2022-08-16 thomas TAILQ_FOREACH(srv, &gotwebd_env->servers, entry)
460 8a35f56c 2022-07-16 thomas if (srv != NULL)
461 8a35f56c 2022-07-16 thomas break;
462 8a35f56c 2022-07-16 thomas done:
463 8a35f56c 2022-07-16 thomas return srv;
464 8a35f56c 2022-07-16 thomas };
465 8a35f56c 2022-07-16 thomas
466 8a35f56c 2022-07-16 thomas const struct got_error *
467 8a35f56c 2022-07-16 thomas gotweb_init_transport(struct transport **t)
468 8a35f56c 2022-07-16 thomas {
469 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
470 8a35f56c 2022-07-16 thomas
471 8a35f56c 2022-07-16 thomas *t = calloc(1, sizeof(**t));
472 8a35f56c 2022-07-16 thomas if (*t == NULL)
473 8a35f56c 2022-07-16 thomas return got_error_from_errno2("%s: calloc", __func__);
474 8a35f56c 2022-07-16 thomas
475 8a35f56c 2022-07-16 thomas TAILQ_INIT(&(*t)->repo_commits);
476 8a35f56c 2022-07-16 thomas TAILQ_INIT(&(*t)->repo_tags);
477 8a35f56c 2022-07-16 thomas
478 8a35f56c 2022-07-16 thomas (*t)->repo = NULL;
479 8a35f56c 2022-07-16 thomas (*t)->repo_dir = NULL;
480 8a35f56c 2022-07-16 thomas (*t)->qs = NULL;
481 8a35f56c 2022-07-16 thomas (*t)->next_id = NULL;
482 8a35f56c 2022-07-16 thomas (*t)->prev_id = NULL;
483 8a35f56c 2022-07-16 thomas (*t)->next_disp = 0;
484 8a35f56c 2022-07-16 thomas (*t)->prev_disp = 0;
485 8a35f56c 2022-07-16 thomas
486 8a35f56c 2022-07-16 thomas return error;
487 8a35f56c 2022-07-16 thomas }
488 8a35f56c 2022-07-16 thomas
489 8a35f56c 2022-07-16 thomas static const struct got_error *
490 8a35f56c 2022-07-16 thomas gotweb_init_querystring(struct querystring **qs)
491 8a35f56c 2022-07-16 thomas {
492 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
493 8a35f56c 2022-07-16 thomas
494 8a35f56c 2022-07-16 thomas *qs = calloc(1, sizeof(**qs));
495 8a35f56c 2022-07-16 thomas if (*qs == NULL)
496 8a35f56c 2022-07-16 thomas return got_error_from_errno2("%s: calloc", __func__);
497 8a35f56c 2022-07-16 thomas
498 8a35f56c 2022-07-16 thomas (*qs)->headref = strdup("HEAD");
499 8a35f56c 2022-07-16 thomas if ((*qs)->headref == NULL) {
500 84630254 2022-09-02 thomas free(*qs);
501 84630254 2022-09-02 thomas *qs = NULL;
502 8a35f56c 2022-07-16 thomas return got_error_from_errno2("%s: strdup", __func__);
503 8a35f56c 2022-07-16 thomas }
504 84630254 2022-09-02 thomas
505 84630254 2022-09-02 thomas (*qs)->action = INDEX;
506 84630254 2022-09-02 thomas (*qs)->commit = NULL;
507 84630254 2022-09-02 thomas (*qs)->file = NULL;
508 84630254 2022-09-02 thomas (*qs)->folder = NULL;
509 8a35f56c 2022-07-16 thomas (*qs)->index_page = 0;
510 8a35f56c 2022-07-16 thomas (*qs)->path = NULL;
511 8a35f56c 2022-07-16 thomas
512 8a35f56c 2022-07-16 thomas return error;
513 8a35f56c 2022-07-16 thomas }
514 8a35f56c 2022-07-16 thomas
515 8a35f56c 2022-07-16 thomas static const struct got_error *
516 8a35f56c 2022-07-16 thomas gotweb_parse_querystring(struct querystring **qs, char *qst)
517 8a35f56c 2022-07-16 thomas {
518 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
519 8a35f56c 2022-07-16 thomas char *tok1 = NULL, *tok1_pair = NULL, *tok1_end = NULL;
520 8a35f56c 2022-07-16 thomas char *tok2 = NULL, *tok2_pair = NULL, *tok2_end = NULL;
521 8a35f56c 2022-07-16 thomas
522 8a35f56c 2022-07-16 thomas if (qst == NULL)
523 8a35f56c 2022-07-16 thomas return error;
524 8a35f56c 2022-07-16 thomas
525 8a35f56c 2022-07-16 thomas tok1 = strdup(qst);
526 8a35f56c 2022-07-16 thomas if (tok1 == NULL)
527 8a35f56c 2022-07-16 thomas return got_error_from_errno2("%s: strdup", __func__);
528 8a35f56c 2022-07-16 thomas
529 8a35f56c 2022-07-16 thomas tok1_pair = tok1;
530 8a35f56c 2022-07-16 thomas tok1_end = tok1;
531 8a35f56c 2022-07-16 thomas
532 8a35f56c 2022-07-16 thomas while (tok1_pair != NULL) {
533 8a35f56c 2022-07-16 thomas strsep(&tok1_end, "&");
534 8a35f56c 2022-07-16 thomas
535 8a35f56c 2022-07-16 thomas tok2 = strdup(tok1_pair);
536 8a35f56c 2022-07-16 thomas if (tok2 == NULL) {
537 8a35f56c 2022-07-16 thomas free(tok1);
538 8a35f56c 2022-07-16 thomas return got_error_from_errno2("%s: strdup", __func__);
539 8a35f56c 2022-07-16 thomas }
540 8a35f56c 2022-07-16 thomas
541 8a35f56c 2022-07-16 thomas tok2_pair = tok2;
542 8a35f56c 2022-07-16 thomas tok2_end = tok2;
543 8a35f56c 2022-07-16 thomas
544 8a35f56c 2022-07-16 thomas while (tok2_pair != NULL) {
545 8a35f56c 2022-07-16 thomas strsep(&tok2_end, "=");
546 8a35f56c 2022-07-16 thomas if (tok2_end) {
547 8a35f56c 2022-07-16 thomas error = gotweb_assign_querystring(qs, tok2_pair,
548 8a35f56c 2022-07-16 thomas tok2_end);
549 8a35f56c 2022-07-16 thomas if (error)
550 8a35f56c 2022-07-16 thomas goto err;
551 8a35f56c 2022-07-16 thomas }
552 8a35f56c 2022-07-16 thomas tok2_pair = tok2_end;
553 8a35f56c 2022-07-16 thomas }
554 8a35f56c 2022-07-16 thomas free(tok2);
555 8a35f56c 2022-07-16 thomas tok1_pair = tok1_end;
556 8a35f56c 2022-07-16 thomas }
557 8a35f56c 2022-07-16 thomas free(tok1);
558 8a35f56c 2022-07-16 thomas return error;
559 8a35f56c 2022-07-16 thomas err:
560 8a35f56c 2022-07-16 thomas free(tok2);
561 8a35f56c 2022-07-16 thomas free(tok1);
562 8a35f56c 2022-07-16 thomas return error;
563 8a35f56c 2022-07-16 thomas }
564 8a35f56c 2022-07-16 thomas
565 2ac684a4 2022-09-03 thomas /*
566 2ac684a4 2022-09-03 thomas * Adapted from usr.sbin/httpd/httpd.c url_decode.
567 2ac684a4 2022-09-03 thomas */
568 8a35f56c 2022-07-16 thomas static const struct got_error *
569 2ac684a4 2022-09-03 thomas gotweb_urldecode(char *url)
570 2ac684a4 2022-09-03 thomas {
571 2ac684a4 2022-09-03 thomas char *p, *q;
572 2ac684a4 2022-09-03 thomas char hex[3];
573 2ac684a4 2022-09-03 thomas unsigned long x;
574 2ac684a4 2022-09-03 thomas
575 2ac684a4 2022-09-03 thomas hex[2] = '\0';
576 2ac684a4 2022-09-03 thomas p = q = url;
577 2ac684a4 2022-09-03 thomas
578 2ac684a4 2022-09-03 thomas while (*p != '\0') {
579 2ac684a4 2022-09-03 thomas switch (*p) {
580 2ac684a4 2022-09-03 thomas case '%':
581 2ac684a4 2022-09-03 thomas /* Encoding character is followed by two hex chars */
582 2ac684a4 2022-09-03 thomas if (!isxdigit((unsigned char)p[1]) ||
583 2ac684a4 2022-09-03 thomas !isxdigit((unsigned char)p[2]) ||
584 2ac684a4 2022-09-03 thomas (p[1] == '0' && p[2] == '0'))
585 2ac684a4 2022-09-03 thomas return got_error(GOT_ERR_BAD_QUERYSTRING);
586 2ac684a4 2022-09-03 thomas
587 2ac684a4 2022-09-03 thomas hex[0] = p[1];
588 2ac684a4 2022-09-03 thomas hex[1] = p[2];
589 2ac684a4 2022-09-03 thomas
590 2ac684a4 2022-09-03 thomas /*
591 2ac684a4 2022-09-03 thomas * We don't have to validate "hex" because it is
592 2ac684a4 2022-09-03 thomas * guaranteed to include two hex chars followed by nul.
593 2ac684a4 2022-09-03 thomas */
594 2ac684a4 2022-09-03 thomas x = strtoul(hex, NULL, 16);
595 2ac684a4 2022-09-03 thomas *q = (char)x;
596 2ac684a4 2022-09-03 thomas p += 2;
597 2ac684a4 2022-09-03 thomas break;
598 2ac684a4 2022-09-03 thomas default:
599 2ac684a4 2022-09-03 thomas *q = *p;
600 2ac684a4 2022-09-03 thomas break;
601 2ac684a4 2022-09-03 thomas }
602 2ac684a4 2022-09-03 thomas p++;
603 2ac684a4 2022-09-03 thomas q++;
604 2ac684a4 2022-09-03 thomas }
605 2ac684a4 2022-09-03 thomas *q = '\0';
606 2ac684a4 2022-09-03 thomas
607 2ac684a4 2022-09-03 thomas return NULL;
608 2ac684a4 2022-09-03 thomas }
609 2ac684a4 2022-09-03 thomas
610 2ac684a4 2022-09-03 thomas static const struct got_error *
611 8a35f56c 2022-07-16 thomas gotweb_assign_querystring(struct querystring **qs, char *key, char *value)
612 8a35f56c 2022-07-16 thomas {
613 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
614 8a35f56c 2022-07-16 thomas const char *errstr;
615 8a35f56c 2022-07-16 thomas int a_cnt, el_cnt;
616 8a35f56c 2022-07-16 thomas
617 2ac684a4 2022-09-03 thomas error = gotweb_urldecode(value);
618 2ac684a4 2022-09-03 thomas if (error)
619 2ac684a4 2022-09-03 thomas return error;
620 2ac684a4 2022-09-03 thomas
621 8a35f56c 2022-07-16 thomas for (el_cnt = 0; el_cnt < QSELEM__MAX; el_cnt++) {
622 8a35f56c 2022-07-16 thomas if (strcmp(key, querystring_keys[el_cnt].name) != 0)
623 8a35f56c 2022-07-16 thomas continue;
624 8a35f56c 2022-07-16 thomas
625 8a35f56c 2022-07-16 thomas switch (querystring_keys[el_cnt].element) {
626 8a35f56c 2022-07-16 thomas case ACTION:
627 8a35f56c 2022-07-16 thomas for (a_cnt = 0; a_cnt < ACTIONS__MAX; a_cnt++) {
628 8a35f56c 2022-07-16 thomas if (strcmp(value, action_keys[a_cnt].name) != 0)
629 8a35f56c 2022-07-16 thomas continue;
630 8a35f56c 2022-07-16 thomas else if (strcmp(value,
631 8a35f56c 2022-07-16 thomas action_keys[a_cnt].name) == 0){
632 8a35f56c 2022-07-16 thomas (*qs)->action =
633 8a35f56c 2022-07-16 thomas action_keys[a_cnt].action;
634 8a35f56c 2022-07-16 thomas goto qa_found;
635 8a35f56c 2022-07-16 thomas }
636 8a35f56c 2022-07-16 thomas }
637 8a35f56c 2022-07-16 thomas (*qs)->action = ERR;
638 8a35f56c 2022-07-16 thomas qa_found:
639 8a35f56c 2022-07-16 thomas break;
640 8a35f56c 2022-07-16 thomas case COMMIT:
641 8a35f56c 2022-07-16 thomas (*qs)->commit = strdup(value);
642 8a35f56c 2022-07-16 thomas if ((*qs)->commit == NULL) {
643 8a35f56c 2022-07-16 thomas error = got_error_from_errno2("%s: strdup",
644 8a35f56c 2022-07-16 thomas __func__);
645 8a35f56c 2022-07-16 thomas goto done;
646 8a35f56c 2022-07-16 thomas }
647 8a35f56c 2022-07-16 thomas break;
648 8a35f56c 2022-07-16 thomas case RFILE:
649 8a35f56c 2022-07-16 thomas (*qs)->file = strdup(value);
650 8a35f56c 2022-07-16 thomas if ((*qs)->file == NULL) {
651 8a35f56c 2022-07-16 thomas error = got_error_from_errno2("%s: strdup",
652 8a35f56c 2022-07-16 thomas __func__);
653 8a35f56c 2022-07-16 thomas goto done;
654 8a35f56c 2022-07-16 thomas }
655 8a35f56c 2022-07-16 thomas break;
656 8a35f56c 2022-07-16 thomas case FOLDER:
657 8a35f56c 2022-07-16 thomas (*qs)->folder = strdup(value);
658 8a35f56c 2022-07-16 thomas if ((*qs)->folder == NULL) {
659 8a35f56c 2022-07-16 thomas error = got_error_from_errno2("%s: strdup",
660 8a35f56c 2022-07-16 thomas __func__);
661 8a35f56c 2022-07-16 thomas goto done;
662 8a35f56c 2022-07-16 thomas }
663 8a35f56c 2022-07-16 thomas break;
664 8a35f56c 2022-07-16 thomas case HEADREF:
665 b0764984 2022-09-02 thomas free((*qs)->headref);
666 8a35f56c 2022-07-16 thomas (*qs)->headref = strdup(value);
667 8a35f56c 2022-07-16 thomas if ((*qs)->headref == NULL) {
668 8a35f56c 2022-07-16 thomas error = got_error_from_errno2("%s: strdup",
669 8a35f56c 2022-07-16 thomas __func__);
670 8a35f56c 2022-07-16 thomas goto done;
671 8a35f56c 2022-07-16 thomas }
672 8a35f56c 2022-07-16 thomas break;
673 8a35f56c 2022-07-16 thomas case INDEX_PAGE:
674 8a35f56c 2022-07-16 thomas if (strlen(value) == 0)
675 8a35f56c 2022-07-16 thomas break;
676 8a35f56c 2022-07-16 thomas (*qs)->index_page = strtonum(value, INT64_MIN,
677 8a35f56c 2022-07-16 thomas INT64_MAX, &errstr);
678 8a35f56c 2022-07-16 thomas if (errstr) {
679 8a35f56c 2022-07-16 thomas error = got_error_from_errno3("%s: strtonum %s",
680 8a35f56c 2022-07-16 thomas __func__, errstr);
681 8a35f56c 2022-07-16 thomas goto done;
682 8a35f56c 2022-07-16 thomas }
683 3d6d1fb0 2022-12-30 thomas if ((*qs)->index_page < 0)
684 8a35f56c 2022-07-16 thomas (*qs)->index_page = 0;
685 8a35f56c 2022-07-16 thomas break;
686 8a35f56c 2022-07-16 thomas case PATH:
687 8a35f56c 2022-07-16 thomas (*qs)->path = strdup(value);
688 8a35f56c 2022-07-16 thomas if ((*qs)->path == NULL) {
689 8a35f56c 2022-07-16 thomas error = got_error_from_errno2("%s: strdup",
690 8a35f56c 2022-07-16 thomas __func__);
691 8a35f56c 2022-07-16 thomas goto done;
692 8a35f56c 2022-07-16 thomas }
693 8a35f56c 2022-07-16 thomas break;
694 8a35f56c 2022-07-16 thomas case PAGE:
695 8a35f56c 2022-07-16 thomas if (strlen(value) == 0)
696 8a35f56c 2022-07-16 thomas break;
697 8a35f56c 2022-07-16 thomas (*qs)->page = strtonum(value, INT64_MIN,
698 8a35f56c 2022-07-16 thomas INT64_MAX, &errstr);
699 8a35f56c 2022-07-16 thomas if (errstr) {
700 8a35f56c 2022-07-16 thomas error = got_error_from_errno3("%s: strtonum %s",
701 8a35f56c 2022-07-16 thomas __func__, errstr);
702 8a35f56c 2022-07-16 thomas goto done;
703 8a35f56c 2022-07-16 thomas }
704 3d6d1fb0 2022-12-30 thomas if ((*qs)->page < 0)
705 8a35f56c 2022-07-16 thomas (*qs)->page = 0;
706 8a35f56c 2022-07-16 thomas break;
707 8a35f56c 2022-07-16 thomas default:
708 8a35f56c 2022-07-16 thomas break;
709 8a35f56c 2022-07-16 thomas }
710 8a35f56c 2022-07-16 thomas }
711 8a35f56c 2022-07-16 thomas done:
712 8a35f56c 2022-07-16 thomas return error;
713 8a35f56c 2022-07-16 thomas }
714 8a35f56c 2022-07-16 thomas
715 8a35f56c 2022-07-16 thomas void
716 8a35f56c 2022-07-16 thomas gotweb_free_repo_tag(struct repo_tag *rt)
717 8a35f56c 2022-07-16 thomas {
718 8a35f56c 2022-07-16 thomas if (rt != NULL) {
719 8a35f56c 2022-07-16 thomas free(rt->commit_id);
720 217813df 2022-09-02 thomas free(rt->tag_name);
721 217813df 2022-09-02 thomas free(rt->tag_commit);
722 217813df 2022-09-02 thomas free(rt->commit_msg);
723 8a35f56c 2022-07-16 thomas free(rt->tagger);
724 8a35f56c 2022-07-16 thomas }
725 8a35f56c 2022-07-16 thomas free(rt);
726 8a35f56c 2022-07-16 thomas }
727 8a35f56c 2022-07-16 thomas
728 8a35f56c 2022-07-16 thomas void
729 8a35f56c 2022-07-16 thomas gotweb_free_repo_commit(struct repo_commit *rc)
730 8a35f56c 2022-07-16 thomas {
731 8a35f56c 2022-07-16 thomas if (rc != NULL) {
732 8a35f56c 2022-07-16 thomas free(rc->path);
733 8a35f56c 2022-07-16 thomas free(rc->refs_str);
734 8a35f56c 2022-07-16 thomas free(rc->commit_id);
735 8a35f56c 2022-07-16 thomas free(rc->parent_id);
736 8a35f56c 2022-07-16 thomas free(rc->tree_id);
737 8a35f56c 2022-07-16 thomas free(rc->author);
738 8a35f56c 2022-07-16 thomas free(rc->committer);
739 8a35f56c 2022-07-16 thomas free(rc->commit_msg);
740 8a35f56c 2022-07-16 thomas }
741 8a35f56c 2022-07-16 thomas free(rc);
742 8a35f56c 2022-07-16 thomas }
743 8a35f56c 2022-07-16 thomas
744 8a35f56c 2022-07-16 thomas static void
745 8a35f56c 2022-07-16 thomas gotweb_free_querystring(struct querystring *qs)
746 8a35f56c 2022-07-16 thomas {
747 8a35f56c 2022-07-16 thomas if (qs != NULL) {
748 8a35f56c 2022-07-16 thomas free(qs->commit);
749 8a35f56c 2022-07-16 thomas free(qs->file);
750 8a35f56c 2022-07-16 thomas free(qs->folder);
751 8a35f56c 2022-07-16 thomas free(qs->headref);
752 8a35f56c 2022-07-16 thomas free(qs->path);
753 8a35f56c 2022-07-16 thomas }
754 8a35f56c 2022-07-16 thomas free(qs);
755 8a35f56c 2022-07-16 thomas }
756 8a35f56c 2022-07-16 thomas
757 8a35f56c 2022-07-16 thomas static void
758 8a35f56c 2022-07-16 thomas gotweb_free_repo_dir(struct repo_dir *repo_dir)
759 8a35f56c 2022-07-16 thomas {
760 8a35f56c 2022-07-16 thomas if (repo_dir != NULL) {
761 8a35f56c 2022-07-16 thomas free(repo_dir->name);
762 8a35f56c 2022-07-16 thomas free(repo_dir->owner);
763 8a35f56c 2022-07-16 thomas free(repo_dir->description);
764 8a35f56c 2022-07-16 thomas free(repo_dir->url);
765 8a35f56c 2022-07-16 thomas free(repo_dir->path);
766 8a35f56c 2022-07-16 thomas }
767 8a35f56c 2022-07-16 thomas free(repo_dir);
768 8a35f56c 2022-07-16 thomas }
769 8a35f56c 2022-07-16 thomas
770 8a35f56c 2022-07-16 thomas void
771 8a35f56c 2022-07-16 thomas gotweb_free_transport(struct transport *t)
772 8a35f56c 2022-07-16 thomas {
773 8a35f56c 2022-07-16 thomas struct repo_commit *rc = NULL, *trc = NULL;
774 8a35f56c 2022-07-16 thomas struct repo_tag *rt = NULL, *trt = NULL;
775 8a35f56c 2022-07-16 thomas
776 8a35f56c 2022-07-16 thomas TAILQ_FOREACH_SAFE(rc, &t->repo_commits, entry, trc) {
777 8a35f56c 2022-07-16 thomas TAILQ_REMOVE(&t->repo_commits, rc, entry);
778 8a35f56c 2022-07-16 thomas gotweb_free_repo_commit(rc);
779 8a35f56c 2022-07-16 thomas }
780 8a35f56c 2022-07-16 thomas TAILQ_FOREACH_SAFE(rt, &t->repo_tags, entry, trt) {
781 8a35f56c 2022-07-16 thomas TAILQ_REMOVE(&t->repo_tags, rt, entry);
782 8a35f56c 2022-07-16 thomas gotweb_free_repo_tag(rt);
783 8a35f56c 2022-07-16 thomas }
784 8a35f56c 2022-07-16 thomas gotweb_free_repo_dir(t->repo_dir);
785 8a35f56c 2022-07-16 thomas gotweb_free_querystring(t->qs);
786 20bab626 2023-02-03 thomas free(t->more_id);
787 6b42af1e 2022-09-02 thomas free(t->next_id);
788 6b42af1e 2022-09-02 thomas free(t->prev_id);
789 8a35f56c 2022-07-16 thomas free(t);
790 8a35f56c 2022-07-16 thomas }
791 8a35f56c 2022-07-16 thomas
792 2f4f0731 2022-12-30 thomas void
793 2f4f0731 2022-12-30 thomas gotweb_get_navs(struct request *c, struct gotweb_url *prev, int *have_prev,
794 2f4f0731 2022-12-30 thomas struct gotweb_url *next, int *have_next)
795 8a35f56c 2022-07-16 thomas {
796 8a35f56c 2022-07-16 thomas struct transport *t = c->t;
797 8a35f56c 2022-07-16 thomas struct querystring *qs = t->qs;
798 8a35f56c 2022-07-16 thomas struct server *srv = c->srv;
799 8a35f56c 2022-07-16 thomas
800 2f4f0731 2022-12-30 thomas *have_prev = *have_next = 0;
801 8a35f56c 2022-07-16 thomas
802 8a35f56c 2022-07-16 thomas switch(qs->action) {
803 8a35f56c 2022-07-16 thomas case INDEX:
804 8a35f56c 2022-07-16 thomas if (qs->index_page > 0) {
805 2f4f0731 2022-12-30 thomas *have_prev = 1;
806 2f4f0731 2022-12-30 thomas *prev = (struct gotweb_url){
807 55144267 2022-09-07 thomas .action = -1,
808 55144267 2022-09-07 thomas .index_page = qs->index_page - 1,
809 55144267 2022-09-07 thomas .page = -1,
810 55144267 2022-09-07 thomas };
811 8a35f56c 2022-07-16 thomas }
812 2f4f0731 2022-12-30 thomas if (t->next_disp == srv->max_repos_display &&
813 2f4f0731 2022-12-30 thomas t->repos_total != (qs->index_page + 1) *
814 2f4f0731 2022-12-30 thomas srv->max_repos_display) {
815 2f4f0731 2022-12-30 thomas *have_next = 1;
816 2f4f0731 2022-12-30 thomas *next = (struct gotweb_url){
817 2f4f0731 2022-12-30 thomas .action = -1,
818 2f4f0731 2022-12-30 thomas .index_page = qs->index_page + 1,
819 2f4f0731 2022-12-30 thomas .page = -1,
820 2f4f0731 2022-12-30 thomas };
821 2f4f0731 2022-12-30 thomas }
822 8a35f56c 2022-07-16 thomas break;
823 8a35f56c 2022-07-16 thomas case TAGS:
824 2f4f0731 2022-12-30 thomas if (t->prev_id && qs->commit != NULL &&
825 2f4f0731 2022-12-30 thomas strcmp(qs->commit, t->prev_id) != 0) {
826 2f4f0731 2022-12-30 thomas *have_prev = 1;
827 2f4f0731 2022-12-30 thomas *prev = (struct gotweb_url){
828 2f4f0731 2022-12-30 thomas .action = TAGS,
829 2f4f0731 2022-12-30 thomas .index_page = -1,
830 2f4f0731 2022-12-30 thomas .page = qs->page - 1,
831 2f4f0731 2022-12-30 thomas .path = qs->path,
832 2f4f0731 2022-12-30 thomas .commit = t->prev_id,
833 2f4f0731 2022-12-30 thomas .headref = qs->headref,
834 2f4f0731 2022-12-30 thomas };
835 2f4f0731 2022-12-30 thomas }
836 8a35f56c 2022-07-16 thomas if (t->next_id) {
837 2f4f0731 2022-12-30 thomas *have_next = 1;
838 2f4f0731 2022-12-30 thomas *next = (struct gotweb_url){
839 55144267 2022-09-07 thomas .action = TAGS,
840 55144267 2022-09-07 thomas .index_page = -1,
841 55144267 2022-09-07 thomas .page = qs->page + 1,
842 55144267 2022-09-07 thomas .path = qs->path,
843 55144267 2022-09-07 thomas .commit = t->next_id,
844 55144267 2022-09-07 thomas .headref = qs->headref,
845 55144267 2022-09-07 thomas };
846 8a35f56c 2022-07-16 thomas }
847 8a35f56c 2022-07-16 thomas break;
848 8a35f56c 2022-07-16 thomas }
849 8a35f56c 2022-07-16 thomas }
850 8a35f56c 2022-07-16 thomas
851 8a35f56c 2022-07-16 thomas static const struct got_error *
852 8a35f56c 2022-07-16 thomas gotweb_render_index(struct request *c)
853 8a35f56c 2022-07-16 thomas {
854 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
855 8a35f56c 2022-07-16 thomas struct server *srv = c->srv;
856 8a35f56c 2022-07-16 thomas struct transport *t = c->t;
857 8a35f56c 2022-07-16 thomas struct querystring *qs = t->qs;
858 8a35f56c 2022-07-16 thomas struct repo_dir *repo_dir = NULL;
859 8a35f56c 2022-07-16 thomas DIR *d;
860 f530ab0e 2022-09-02 thomas struct dirent **sd_dent = NULL;
861 8a35f56c 2022-07-16 thomas unsigned int d_cnt, d_i, d_disp = 0;
862 24240f6a 2022-11-23 thomas unsigned int d_skipped = 0;
863 e7e5fa49 2022-12-30 thomas int type;
864 8a35f56c 2022-07-16 thomas
865 8a35f56c 2022-07-16 thomas d = opendir(srv->repos_path);
866 8a35f56c 2022-07-16 thomas if (d == NULL) {
867 8a35f56c 2022-07-16 thomas error = got_error_from_errno2("opendir", srv->repos_path);
868 8a35f56c 2022-07-16 thomas return error;
869 8a35f56c 2022-07-16 thomas }
870 8a35f56c 2022-07-16 thomas
871 8a35f56c 2022-07-16 thomas d_cnt = scandir(srv->repos_path, &sd_dent, NULL, alphasort);
872 8a35f56c 2022-07-16 thomas if (d_cnt == -1) {
873 f530ab0e 2022-09-02 thomas sd_dent = NULL;
874 8a35f56c 2022-07-16 thomas error = got_error_from_errno2("scandir", srv->repos_path);
875 8a35f56c 2022-07-16 thomas goto done;
876 8a35f56c 2022-07-16 thomas }
877 8a35f56c 2022-07-16 thomas
878 e7e5fa49 2022-12-30 thomas if (gotweb_render_repo_table_hdr(c->tp) == -1)
879 8a35f56c 2022-07-16 thomas goto done;
880 79393471 2022-08-27 thomas
881 8a35f56c 2022-07-16 thomas for (d_i = 0; d_i < d_cnt; d_i++) {
882 57e88d7c 2022-11-23 thomas if (srv->max_repos > 0 && t->prev_disp == srv->max_repos)
883 57e88d7c 2022-11-23 thomas break;
884 8a35f56c 2022-07-16 thomas
885 8a35f56c 2022-07-16 thomas if (strcmp(sd_dent[d_i]->d_name, ".") == 0 ||
886 24240f6a 2022-11-23 thomas strcmp(sd_dent[d_i]->d_name, "..") == 0) {
887 24240f6a 2022-11-23 thomas d_skipped++;
888 24240f6a 2022-11-23 thomas continue;
889 24240f6a 2022-11-23 thomas }
890 24240f6a 2022-11-23 thomas
891 24240f6a 2022-11-23 thomas error = got_path_dirent_type(&type, srv->repos_path,
892 24240f6a 2022-11-23 thomas sd_dent[d_i]);
893 24240f6a 2022-11-23 thomas if (error)
894 24240f6a 2022-11-23 thomas goto done;
895 24240f6a 2022-11-23 thomas if (type != DT_DIR) {
896 24240f6a 2022-11-23 thomas d_skipped++;
897 8a35f56c 2022-07-16 thomas continue;
898 24240f6a 2022-11-23 thomas }
899 8a35f56c 2022-07-16 thomas
900 8a35f56c 2022-07-16 thomas if (qs->index_page > 0 && (qs->index_page *
901 8a35f56c 2022-07-16 thomas srv->max_repos_display) > t->prev_disp) {
902 8a35f56c 2022-07-16 thomas t->prev_disp++;
903 8a35f56c 2022-07-16 thomas continue;
904 8a35f56c 2022-07-16 thomas }
905 8a35f56c 2022-07-16 thomas
906 8a35f56c 2022-07-16 thomas error = gotweb_init_repo_dir(&repo_dir, sd_dent[d_i]->d_name);
907 8a35f56c 2022-07-16 thomas if (error)
908 8a35f56c 2022-07-16 thomas goto done;
909 8a35f56c 2022-07-16 thomas
910 8a35f56c 2022-07-16 thomas error = gotweb_load_got_path(c, repo_dir);
911 8a35f56c 2022-07-16 thomas if (error && error->code == GOT_ERR_NOT_GIT_REPO) {
912 8a35f56c 2022-07-16 thomas error = NULL;
913 8a35f56c 2022-07-16 thomas gotweb_free_repo_dir(repo_dir);
914 8a35f56c 2022-07-16 thomas repo_dir = NULL;
915 24240f6a 2022-11-23 thomas d_skipped++;
916 8a35f56c 2022-07-16 thomas continue;
917 8a35f56c 2022-07-16 thomas }
918 24240f6a 2022-11-23 thomas if (error && error->code != GOT_ERR_LONELY_PACKIDX)
919 24240f6a 2022-11-23 thomas goto done;
920 24240f6a 2022-11-23 thomas
921 8a35f56c 2022-07-16 thomas d_disp++;
922 8a35f56c 2022-07-16 thomas t->prev_disp++;
923 8a35f56c 2022-07-16 thomas
924 e7e5fa49 2022-12-30 thomas if (gotweb_render_repo_fragment(c->tp, repo_dir) == -1)
925 55144267 2022-09-07 thomas goto done;
926 55144267 2022-09-07 thomas
927 8a35f56c 2022-07-16 thomas gotweb_free_repo_dir(repo_dir);
928 8a35f56c 2022-07-16 thomas repo_dir = NULL;
929 8a35f56c 2022-07-16 thomas t->next_disp++;
930 8a35f56c 2022-07-16 thomas if (d_disp == srv->max_repos_display)
931 8a35f56c 2022-07-16 thomas break;
932 8a35f56c 2022-07-16 thomas }
933 24240f6a 2022-11-23 thomas t->repos_total = d_cnt - d_skipped;
934 24240f6a 2022-11-23 thomas
935 8a35f56c 2022-07-16 thomas if (srv->max_repos_display == 0)
936 79393471 2022-08-27 thomas goto done;
937 8a35f56c 2022-07-16 thomas if (srv->max_repos > 0 && srv->max_repos < srv->max_repos_display)
938 79393471 2022-08-27 thomas goto done;
939 8a35f56c 2022-07-16 thomas if (t->repos_total <= srv->max_repos ||
940 8a35f56c 2022-07-16 thomas t->repos_total <= srv->max_repos_display)
941 79393471 2022-08-27 thomas goto done;
942 8a35f56c 2022-07-16 thomas
943 2f4f0731 2022-12-30 thomas if (gotweb_render_navs(c->tp) == -1)
944 8a35f56c 2022-07-16 thomas goto done;
945 8a35f56c 2022-07-16 thomas done:
946 f530ab0e 2022-09-02 thomas if (sd_dent) {
947 f530ab0e 2022-09-02 thomas for (d_i = 0; d_i < d_cnt; d_i++)
948 f530ab0e 2022-09-02 thomas free(sd_dent[d_i]);
949 f530ab0e 2022-09-02 thomas free(sd_dent);
950 f530ab0e 2022-09-02 thomas }
951 8a35f56c 2022-07-16 thomas if (d != NULL && closedir(d) == EOF && error == NULL)
952 8a35f56c 2022-07-16 thomas error = got_error_from_errno("closedir");
953 8a35f56c 2022-07-16 thomas return error;
954 8a35f56c 2022-07-16 thomas }
955 8a35f56c 2022-07-16 thomas
956 55144267 2022-09-07 thomas static inline int
957 55144267 2022-09-07 thomas should_urlencode(int c)
958 55144267 2022-09-07 thomas {
959 55144267 2022-09-07 thomas if (c <= ' ' || c >= 127)
960 55144267 2022-09-07 thomas return 1;
961 55144267 2022-09-07 thomas
962 55144267 2022-09-07 thomas switch (c) {
963 55144267 2022-09-07 thomas /* gen-delim */
964 55144267 2022-09-07 thomas case ':':
965 55144267 2022-09-07 thomas case '/':
966 55144267 2022-09-07 thomas case '?':
967 55144267 2022-09-07 thomas case '#':
968 55144267 2022-09-07 thomas case '[':
969 55144267 2022-09-07 thomas case ']':
970 55144267 2022-09-07 thomas case '@':
971 55144267 2022-09-07 thomas /* sub-delims */
972 55144267 2022-09-07 thomas case '!':
973 55144267 2022-09-07 thomas case '$':
974 55144267 2022-09-07 thomas case '&':
975 55144267 2022-09-07 thomas case '\'':
976 55144267 2022-09-07 thomas case '(':
977 55144267 2022-09-07 thomas case ')':
978 55144267 2022-09-07 thomas case '*':
979 55144267 2022-09-07 thomas case '+':
980 55144267 2022-09-07 thomas case ',':
981 55144267 2022-09-07 thomas case ';':
982 55144267 2022-09-07 thomas case '=':
983 e1a9403a 2023-01-06 thomas /* needed because the URLs are embedded into the HTML */
984 e1a9403a 2023-01-06 thomas case '\"':
985 55144267 2022-09-07 thomas return 1;
986 55144267 2022-09-07 thomas default:
987 55144267 2022-09-07 thomas return 0;
988 55144267 2022-09-07 thomas }
989 55144267 2022-09-07 thomas }
990 55144267 2022-09-07 thomas
991 55144267 2022-09-07 thomas static char *
992 55144267 2022-09-07 thomas gotweb_urlencode(const char *str)
993 55144267 2022-09-07 thomas {
994 55144267 2022-09-07 thomas const char *s;
995 55144267 2022-09-07 thomas char *escaped;
996 55144267 2022-09-07 thomas size_t i, len;
997 55144267 2022-09-07 thomas int a, b;
998 55144267 2022-09-07 thomas
999 55144267 2022-09-07 thomas len = 0;
1000 55144267 2022-09-07 thomas for (s = str; *s; ++s) {
1001 55144267 2022-09-07 thomas len++;
1002 55144267 2022-09-07 thomas if (should_urlencode(*s))
1003 55144267 2022-09-07 thomas len += 2;
1004 55144267 2022-09-07 thomas }
1005 55144267 2022-09-07 thomas
1006 55144267 2022-09-07 thomas escaped = calloc(1, len + 1);
1007 55144267 2022-09-07 thomas if (escaped == NULL)
1008 55144267 2022-09-07 thomas return NULL;
1009 55144267 2022-09-07 thomas
1010 55144267 2022-09-07 thomas i = 0;
1011 55144267 2022-09-07 thomas for (s = str; *s; ++s) {
1012 55144267 2022-09-07 thomas if (should_urlencode(*s)) {
1013 55144267 2022-09-07 thomas a = (*s & 0xF0) >> 4;
1014 55144267 2022-09-07 thomas b = (*s & 0x0F);
1015 55144267 2022-09-07 thomas
1016 55144267 2022-09-07 thomas escaped[i++] = '%';
1017 55144267 2022-09-07 thomas escaped[i++] = a <= 9 ? ('0' + a) : ('7' + a);
1018 55144267 2022-09-07 thomas escaped[i++] = b <= 9 ? ('0' + b) : ('7' + b);
1019 55144267 2022-09-07 thomas } else
1020 55144267 2022-09-07 thomas escaped[i++] = *s;
1021 55144267 2022-09-07 thomas }
1022 55144267 2022-09-07 thomas
1023 55144267 2022-09-07 thomas return escaped;
1024 55144267 2022-09-07 thomas }
1025 55144267 2022-09-07 thomas
1026 e7e5fa49 2022-12-30 thomas const char *
1027 e7e5fa49 2022-12-30 thomas gotweb_action_name(int action)
1028 55144267 2022-09-07 thomas {
1029 55144267 2022-09-07 thomas switch (action) {
1030 55144267 2022-09-07 thomas case BLAME:
1031 55144267 2022-09-07 thomas return "blame";
1032 55144267 2022-09-07 thomas case BLOB:
1033 55144267 2022-09-07 thomas return "blob";
1034 b82440e1 2023-01-06 thomas case BLOBRAW:
1035 b82440e1 2023-01-06 thomas return "blobraw";
1036 55144267 2022-09-07 thomas case BRIEFS:
1037 55144267 2022-09-07 thomas return "briefs";
1038 55144267 2022-09-07 thomas case COMMITS:
1039 55144267 2022-09-07 thomas return "commits";
1040 55144267 2022-09-07 thomas case DIFF:
1041 55144267 2022-09-07 thomas return "diff";
1042 55144267 2022-09-07 thomas case ERR:
1043 55144267 2022-09-07 thomas return "err";
1044 55144267 2022-09-07 thomas case INDEX:
1045 55144267 2022-09-07 thomas return "index";
1046 55144267 2022-09-07 thomas case SUMMARY:
1047 55144267 2022-09-07 thomas return "summary";
1048 55144267 2022-09-07 thomas case TAG:
1049 55144267 2022-09-07 thomas return "tag";
1050 55144267 2022-09-07 thomas case TAGS:
1051 55144267 2022-09-07 thomas return "tags";
1052 55144267 2022-09-07 thomas case TREE:
1053 55144267 2022-09-07 thomas return "tree";
1054 d6795e9f 2022-12-30 thomas case RSS:
1055 d6795e9f 2022-12-30 thomas return "rss";
1056 55144267 2022-09-07 thomas default:
1057 55144267 2022-09-07 thomas return NULL;
1058 55144267 2022-09-07 thomas }
1059 55144267 2022-09-07 thomas }
1060 55144267 2022-09-07 thomas
1061 e7e5fa49 2022-12-30 thomas int
1062 e7e5fa49 2022-12-30 thomas gotweb_render_url(struct request *c, struct gotweb_url *url)
1063 55144267 2022-09-07 thomas {
1064 55144267 2022-09-07 thomas const char *sep = "?", *action;
1065 55144267 2022-09-07 thomas char *tmp;
1066 55144267 2022-09-07 thomas int r;
1067 55144267 2022-09-07 thomas
1068 e7e5fa49 2022-12-30 thomas action = gotweb_action_name(url->action);
1069 55144267 2022-09-07 thomas if (action != NULL) {
1070 55144267 2022-09-07 thomas if (fcgi_printf(c, "?action=%s", action) == -1)
1071 55144267 2022-09-07 thomas return -1;
1072 55144267 2022-09-07 thomas sep = "&";
1073 55144267 2022-09-07 thomas }
1074 55144267 2022-09-07 thomas
1075 55144267 2022-09-07 thomas if (url->commit) {
1076 55144267 2022-09-07 thomas if (fcgi_printf(c, "%scommit=%s", sep, url->commit) == -1)
1077 55144267 2022-09-07 thomas return -1;
1078 55144267 2022-09-07 thomas sep = "&";
1079 55144267 2022-09-07 thomas }
1080 55144267 2022-09-07 thomas
1081 55144267 2022-09-07 thomas if (url->previd) {
1082 55144267 2022-09-07 thomas if (fcgi_printf(c, "%sprevid=%s", sep, url->previd) == -1)
1083 55144267 2022-09-07 thomas return -1;
1084 55144267 2022-09-07 thomas sep = "&";
1085 55144267 2022-09-07 thomas }
1086 55144267 2022-09-07 thomas
1087 55144267 2022-09-07 thomas if (url->prevset) {
1088 55144267 2022-09-07 thomas if (fcgi_printf(c, "%sprevset=%s", sep, url->prevset) == -1)
1089 55144267 2022-09-07 thomas return -1;
1090 55144267 2022-09-07 thomas sep = "&";
1091 55144267 2022-09-07 thomas }
1092 55144267 2022-09-07 thomas
1093 55144267 2022-09-07 thomas if (url->file) {
1094 55144267 2022-09-07 thomas tmp = gotweb_urlencode(url->file);
1095 55144267 2022-09-07 thomas if (tmp == NULL)
1096 55144267 2022-09-07 thomas return -1;
1097 55144267 2022-09-07 thomas r = fcgi_printf(c, "%sfile=%s", sep, tmp);
1098 55144267 2022-09-07 thomas free(tmp);
1099 55144267 2022-09-07 thomas if (r == -1)
1100 55144267 2022-09-07 thomas return -1;
1101 55144267 2022-09-07 thomas sep = "&";
1102 55144267 2022-09-07 thomas }
1103 55144267 2022-09-07 thomas
1104 55144267 2022-09-07 thomas if (url->folder) {
1105 55144267 2022-09-07 thomas tmp = gotweb_urlencode(url->folder);
1106 55144267 2022-09-07 thomas if (tmp == NULL)
1107 55144267 2022-09-07 thomas return -1;
1108 55144267 2022-09-07 thomas r = fcgi_printf(c, "%sfolder=%s", sep, tmp);
1109 55144267 2022-09-07 thomas free(tmp);
1110 55144267 2022-09-07 thomas if (r == -1)
1111 55144267 2022-09-07 thomas return -1;
1112 55144267 2022-09-07 thomas sep = "&";
1113 55144267 2022-09-07 thomas }
1114 55144267 2022-09-07 thomas
1115 55144267 2022-09-07 thomas if (url->headref) {
1116 55144267 2022-09-07 thomas tmp = gotweb_urlencode(url->headref);
1117 55144267 2022-09-07 thomas if (tmp == NULL)
1118 55144267 2022-09-07 thomas return -1;
1119 55144267 2022-09-07 thomas r = fcgi_printf(c, "%sheadref=%s", sep, url->headref);
1120 55144267 2022-09-07 thomas free(tmp);
1121 55144267 2022-09-07 thomas if (r == -1)
1122 55144267 2022-09-07 thomas return -1;
1123 55144267 2022-09-07 thomas sep = "&";
1124 55144267 2022-09-07 thomas }
1125 55144267 2022-09-07 thomas
1126 55144267 2022-09-07 thomas if (url->index_page != -1) {
1127 55144267 2022-09-07 thomas if (fcgi_printf(c, "%sindex_page=%d", sep,
1128 55144267 2022-09-07 thomas url->index_page) == -1)
1129 55144267 2022-09-07 thomas return -1;
1130 55144267 2022-09-07 thomas sep = "&";
1131 55144267 2022-09-07 thomas }
1132 55144267 2022-09-07 thomas
1133 55144267 2022-09-07 thomas if (url->path) {
1134 55144267 2022-09-07 thomas tmp = gotweb_urlencode(url->path);
1135 55144267 2022-09-07 thomas if (tmp == NULL)
1136 55144267 2022-09-07 thomas return -1;
1137 55144267 2022-09-07 thomas r = fcgi_printf(c, "%spath=%s", sep, tmp);
1138 55144267 2022-09-07 thomas free(tmp);
1139 55144267 2022-09-07 thomas if (r == -1)
1140 55144267 2022-09-07 thomas return -1;
1141 55144267 2022-09-07 thomas sep = "&";
1142 55144267 2022-09-07 thomas }
1143 55144267 2022-09-07 thomas
1144 55144267 2022-09-07 thomas if (url->page != -1) {
1145 55144267 2022-09-07 thomas if (fcgi_printf(c, "%spage=%d", sep, url->page) == -1)
1146 55144267 2022-09-07 thomas return -1;
1147 55144267 2022-09-07 thomas sep = "&";
1148 55144267 2022-09-07 thomas }
1149 55144267 2022-09-07 thomas
1150 55144267 2022-09-07 thomas return 0;
1151 55144267 2022-09-07 thomas }
1152 55144267 2022-09-07 thomas
1153 55144267 2022-09-07 thomas int
1154 d6795e9f 2022-12-30 thomas gotweb_render_absolute_url(struct request *c, struct gotweb_url *url)
1155 d6795e9f 2022-12-30 thomas {
1156 d6795e9f 2022-12-30 thomas struct template *tp = c->tp;
1157 d6795e9f 2022-12-30 thomas const char *proto = c->https ? "https" : "http";
1158 d6795e9f 2022-12-30 thomas
1159 d6795e9f 2022-12-30 thomas if (fcgi_puts(tp, proto) == -1 ||
1160 d6795e9f 2022-12-30 thomas fcgi_puts(tp, "://") == -1 ||
1161 d6795e9f 2022-12-30 thomas tp_htmlescape(tp, c->server_name) == -1 ||
1162 d6795e9f 2022-12-30 thomas tp_htmlescape(tp, c->document_uri) == -1)
1163 d6795e9f 2022-12-30 thomas return -1;
1164 d6795e9f 2022-12-30 thomas
1165 d6795e9f 2022-12-30 thomas return gotweb_render_url(c, url);
1166 55144267 2022-09-07 thomas }
1167 55144267 2022-09-07 thomas
1168 55e6cffd 2022-09-01 thomas static struct got_repository *
1169 55e6cffd 2022-09-01 thomas find_cached_repo(struct server *srv, const char *path)
1170 55e6cffd 2022-09-01 thomas {
1171 55e6cffd 2022-09-01 thomas int i;
1172 55e6cffd 2022-09-01 thomas
1173 55e6cffd 2022-09-01 thomas for (i = 0; i < srv->ncached_repos; i++) {
1174 55e6cffd 2022-09-01 thomas if (strcmp(srv->cached_repos[i].path, path) == 0)
1175 55e6cffd 2022-09-01 thomas return srv->cached_repos[i].repo;
1176 55e6cffd 2022-09-01 thomas }
1177 55e6cffd 2022-09-01 thomas
1178 55e6cffd 2022-09-01 thomas return NULL;
1179 55e6cffd 2022-09-01 thomas }
1180 55e6cffd 2022-09-01 thomas
1181 8a35f56c 2022-07-16 thomas static const struct got_error *
1182 55e6cffd 2022-09-01 thomas cache_repo(struct got_repository **new, struct server *srv,
1183 55e6cffd 2022-09-01 thomas struct repo_dir *repo_dir, struct socket *sock)
1184 55e6cffd 2022-09-01 thomas {
1185 55e6cffd 2022-09-01 thomas const struct got_error *error = NULL;
1186 55e6cffd 2022-09-01 thomas struct got_repository *repo;
1187 55e6cffd 2022-09-01 thomas struct cached_repo *cr;
1188 55e6cffd 2022-09-01 thomas int evicted = 0;
1189 55e6cffd 2022-09-01 thomas
1190 a004b24a 2022-09-06 thomas if (srv->ncached_repos >= GOTWEBD_REPO_CACHESIZE) {
1191 55e6cffd 2022-09-01 thomas cr = &srv->cached_repos[srv->ncached_repos - 1];
1192 55e6cffd 2022-09-01 thomas error = got_repo_close(cr->repo);
1193 55e6cffd 2022-09-01 thomas memset(cr, 0, sizeof(*cr));
1194 55e6cffd 2022-09-01 thomas srv->ncached_repos--;
1195 55e6cffd 2022-09-01 thomas if (error)
1196 55e6cffd 2022-09-01 thomas return error;
1197 55e6cffd 2022-09-01 thomas memmove(&srv->cached_repos[1], &srv->cached_repos[0],
1198 55e6cffd 2022-09-01 thomas srv->ncached_repos * sizeof(srv->cached_repos[0]));
1199 55e6cffd 2022-09-01 thomas cr = &srv->cached_repos[0];
1200 55e6cffd 2022-09-01 thomas evicted = 1;
1201 55e6cffd 2022-09-01 thomas } else {
1202 55e6cffd 2022-09-01 thomas cr = &srv->cached_repos[srv->ncached_repos];
1203 55e6cffd 2022-09-01 thomas }
1204 55e6cffd 2022-09-01 thomas
1205 55e6cffd 2022-09-01 thomas error = got_repo_open(&repo, repo_dir->path, NULL, sock->pack_fds);
1206 55e6cffd 2022-09-01 thomas if (error) {
1207 55e6cffd 2022-09-01 thomas if (evicted) {
1208 55e6cffd 2022-09-01 thomas memmove(&srv->cached_repos[0], &srv->cached_repos[1],
1209 55e6cffd 2022-09-01 thomas srv->ncached_repos * sizeof(srv->cached_repos[0]));
1210 55e6cffd 2022-09-01 thomas }
1211 55e6cffd 2022-09-01 thomas return error;
1212 55e6cffd 2022-09-01 thomas }
1213 55e6cffd 2022-09-01 thomas
1214 55e6cffd 2022-09-01 thomas if (strlcpy(cr->path, repo_dir->path, sizeof(cr->path))
1215 55e6cffd 2022-09-01 thomas >= sizeof(cr->path)) {
1216 55e6cffd 2022-09-01 thomas if (evicted) {
1217 55e6cffd 2022-09-01 thomas memmove(&srv->cached_repos[0], &srv->cached_repos[1],
1218 55e6cffd 2022-09-01 thomas srv->ncached_repos * sizeof(srv->cached_repos[0]));
1219 55e6cffd 2022-09-01 thomas }
1220 55e6cffd 2022-09-01 thomas return got_error(GOT_ERR_NO_SPACE);
1221 55e6cffd 2022-09-01 thomas }
1222 55e6cffd 2022-09-01 thomas
1223 55e6cffd 2022-09-01 thomas cr->repo = repo;
1224 55e6cffd 2022-09-01 thomas srv->ncached_repos++;
1225 55e6cffd 2022-09-01 thomas *new = repo;
1226 55e6cffd 2022-09-01 thomas return NULL;
1227 55e6cffd 2022-09-01 thomas }
1228 55e6cffd 2022-09-01 thomas
1229 55e6cffd 2022-09-01 thomas static const struct got_error *
1230 8a35f56c 2022-07-16 thomas gotweb_load_got_path(struct request *c, struct repo_dir *repo_dir)
1231 8a35f56c 2022-07-16 thomas {
1232 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
1233 8a35f56c 2022-07-16 thomas struct socket *sock = c->sock;
1234 8a35f56c 2022-07-16 thomas struct server *srv = c->srv;
1235 8a35f56c 2022-07-16 thomas struct transport *t = c->t;
1236 55e6cffd 2022-09-01 thomas struct got_repository *repo = NULL;
1237 8a35f56c 2022-07-16 thomas DIR *dt;
1238 8a35f56c 2022-07-16 thomas char *dir_test;
1239 8a35f56c 2022-07-16 thomas
1240 8a35f56c 2022-07-16 thomas if (asprintf(&dir_test, "%s/%s/%s", srv->repos_path, repo_dir->name,
1241 8a35f56c 2022-07-16 thomas GOTWEB_GIT_DIR) == -1)
1242 8a35f56c 2022-07-16 thomas return got_error_from_errno("asprintf");
1243 8a35f56c 2022-07-16 thomas
1244 8a35f56c 2022-07-16 thomas dt = opendir(dir_test);
1245 8a35f56c 2022-07-16 thomas if (dt == NULL) {
1246 8a35f56c 2022-07-16 thomas free(dir_test);
1247 8a35f56c 2022-07-16 thomas } else {
1248 c2d3d9a0 2022-09-01 thomas repo_dir->path = dir_test;
1249 8a35f56c 2022-07-16 thomas dir_test = NULL;
1250 c2d3d9a0 2022-09-01 thomas goto done;
1251 8a35f56c 2022-07-16 thomas }
1252 8a35f56c 2022-07-16 thomas
1253 8a35f56c 2022-07-16 thomas if (asprintf(&dir_test, "%s/%s", srv->repos_path,
1254 c2d3d9a0 2022-09-01 thomas repo_dir->name) == -1)
1255 c2d3d9a0 2022-09-01 thomas return got_error_from_errno("asprintf");
1256 8a35f56c 2022-07-16 thomas
1257 8a35f56c 2022-07-16 thomas dt = opendir(dir_test);
1258 8a35f56c 2022-07-16 thomas if (dt == NULL) {
1259 8a35f56c 2022-07-16 thomas error = got_error_path(repo_dir->name, GOT_ERR_NOT_GIT_REPO);
1260 8a35f56c 2022-07-16 thomas goto err;
1261 c2d3d9a0 2022-09-01 thomas } else {
1262 c2d3d9a0 2022-09-01 thomas repo_dir->path = dir_test;
1263 c2d3d9a0 2022-09-01 thomas dir_test = NULL;
1264 c2d3d9a0 2022-09-01 thomas }
1265 c2d3d9a0 2022-09-01 thomas
1266 8a35f56c 2022-07-16 thomas done:
1267 3991b2a5 2022-10-31 thomas if (srv->respect_exportok &&
1268 3991b2a5 2022-10-31 thomas faccessat(dirfd(dt), "git-daemon-export-ok", F_OK, 0) == -1) {
1269 3991b2a5 2022-10-31 thomas error = got_error_path(repo_dir->name, GOT_ERR_NOT_GIT_REPO);
1270 3991b2a5 2022-10-31 thomas goto err;
1271 3991b2a5 2022-10-31 thomas }
1272 3991b2a5 2022-10-31 thomas
1273 55e6cffd 2022-09-01 thomas repo = find_cached_repo(srv, repo_dir->path);
1274 55e6cffd 2022-09-01 thomas if (repo == NULL) {
1275 55e6cffd 2022-09-01 thomas error = cache_repo(&repo, srv, repo_dir, sock);
1276 55e6cffd 2022-09-01 thomas if (error)
1277 55e6cffd 2022-09-01 thomas goto err;
1278 55e6cffd 2022-09-01 thomas }
1279 55e6cffd 2022-09-01 thomas t->repo = repo;
1280 8a35f56c 2022-07-16 thomas error = gotweb_get_repo_description(&repo_dir->description, srv,
1281 4606e6d4 2022-11-23 thomas repo_dir->path, dirfd(dt));
1282 8a35f56c 2022-07-16 thomas if (error)
1283 8a35f56c 2022-07-16 thomas goto err;
1284 6c7f10f7 2022-11-23 thomas error = got_get_repo_owner(&repo_dir->owner, c);
1285 8a35f56c 2022-07-16 thomas if (error)
1286 8a35f56c 2022-07-16 thomas goto err;
1287 53bf32b8 2023-01-23 thomas error = got_get_repo_age(&repo_dir->age, c, NULL);
1288 8a35f56c 2022-07-16 thomas if (error)
1289 8a35f56c 2022-07-16 thomas goto err;
1290 4606e6d4 2022-11-23 thomas error = gotweb_get_clone_url(&repo_dir->url, srv, repo_dir->path,
1291 4606e6d4 2022-11-23 thomas dirfd(dt));
1292 8a35f56c 2022-07-16 thomas err:
1293 8a35f56c 2022-07-16 thomas free(dir_test);
1294 c2d3d9a0 2022-09-01 thomas if (dt != NULL && closedir(dt) == EOF && error == NULL)
1295 c2d3d9a0 2022-09-01 thomas error = got_error_from_errno("closedir");
1296 8a35f56c 2022-07-16 thomas return error;
1297 8a35f56c 2022-07-16 thomas }
1298 8a35f56c 2022-07-16 thomas
1299 8a35f56c 2022-07-16 thomas static const struct got_error *
1300 8a35f56c 2022-07-16 thomas gotweb_init_repo_dir(struct repo_dir **repo_dir, const char *dir)
1301 8a35f56c 2022-07-16 thomas {
1302 8a35f56c 2022-07-16 thomas const struct got_error *error;
1303 8a35f56c 2022-07-16 thomas
1304 8a35f56c 2022-07-16 thomas *repo_dir = calloc(1, sizeof(**repo_dir));
1305 8a35f56c 2022-07-16 thomas if (*repo_dir == NULL)
1306 8a35f56c 2022-07-16 thomas return got_error_from_errno("calloc");
1307 8a35f56c 2022-07-16 thomas
1308 8a35f56c 2022-07-16 thomas if (asprintf(&(*repo_dir)->name, "%s", dir) == -1) {
1309 8a35f56c 2022-07-16 thomas error = got_error_from_errno("asprintf");
1310 8a35f56c 2022-07-16 thomas free(*repo_dir);
1311 8a35f56c 2022-07-16 thomas *repo_dir = NULL;
1312 8a35f56c 2022-07-16 thomas return error;
1313 8a35f56c 2022-07-16 thomas }
1314 8a35f56c 2022-07-16 thomas (*repo_dir)->owner = NULL;
1315 8a35f56c 2022-07-16 thomas (*repo_dir)->description = NULL;
1316 8a35f56c 2022-07-16 thomas (*repo_dir)->url = NULL;
1317 8a35f56c 2022-07-16 thomas (*repo_dir)->path = NULL;
1318 8a35f56c 2022-07-16 thomas
1319 8a35f56c 2022-07-16 thomas return NULL;
1320 8a35f56c 2022-07-16 thomas }
1321 8a35f56c 2022-07-16 thomas
1322 8a35f56c 2022-07-16 thomas static const struct got_error *
1323 4606e6d4 2022-11-23 thomas gotweb_get_repo_description(char **description, struct server *srv,
1324 4606e6d4 2022-11-23 thomas const char *dirpath, int dir)
1325 8a35f56c 2022-07-16 thomas {
1326 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
1327 4606e6d4 2022-11-23 thomas struct stat sb;
1328 4606e6d4 2022-11-23 thomas int fd = -1;
1329 4606e6d4 2022-11-23 thomas off_t len;
1330 8a35f56c 2022-07-16 thomas
1331 8a35f56c 2022-07-16 thomas *description = NULL;
1332 8a35f56c 2022-07-16 thomas if (srv->show_repo_description == 0)
1333 8a35f56c 2022-07-16 thomas return NULL;
1334 8a35f56c 2022-07-16 thomas
1335 4606e6d4 2022-11-23 thomas fd = openat(dir, "description", O_RDONLY);
1336 4606e6d4 2022-11-23 thomas if (fd == -1) {
1337 4606e6d4 2022-11-23 thomas if (errno != ENOENT && errno != EACCES) {
1338 4606e6d4 2022-11-23 thomas error = got_error_from_errno_fmt("openat %s/%s",
1339 4606e6d4 2022-11-23 thomas dirpath, "description");
1340 4606e6d4 2022-11-23 thomas }
1341 8a35f56c 2022-07-16 thomas goto done;
1342 8a35f56c 2022-07-16 thomas }
1343 8a35f56c 2022-07-16 thomas
1344 4606e6d4 2022-11-23 thomas if (fstat(fd, &sb) == -1) {
1345 4606e6d4 2022-11-23 thomas error = got_error_from_errno_fmt("fstat %s/%s",
1346 4606e6d4 2022-11-23 thomas dirpath, "description");
1347 8a35f56c 2022-07-16 thomas goto done;
1348 8a35f56c 2022-07-16 thomas }
1349 8a35f56c 2022-07-16 thomas
1350 4606e6d4 2022-11-23 thomas len = sb.st_size;
1351 3e9a56b5 2022-12-01 thomas if (len > GOTWEBD_MAXDESCRSZ - 1)
1352 3e9a56b5 2022-12-01 thomas len = GOTWEBD_MAXDESCRSZ - 1;
1353 8a35f56c 2022-07-16 thomas
1354 8a35f56c 2022-07-16 thomas *description = calloc(len + 1, sizeof(**description));
1355 8a35f56c 2022-07-16 thomas if (*description == NULL) {
1356 8a35f56c 2022-07-16 thomas error = got_error_from_errno("calloc");
1357 8a35f56c 2022-07-16 thomas goto done;
1358 8a35f56c 2022-07-16 thomas }
1359 8a35f56c 2022-07-16 thomas
1360 4606e6d4 2022-11-23 thomas if (read(fd, *description, len) == -1)
1361 4606e6d4 2022-11-23 thomas error = got_error_from_errno("read");
1362 8a35f56c 2022-07-16 thomas done:
1363 4606e6d4 2022-11-23 thomas if (fd != -1 && close(fd) == -1 && error == NULL)
1364 4606e6d4 2022-11-23 thomas error = got_error_from_errno("close");
1365 8a35f56c 2022-07-16 thomas return error;
1366 8a35f56c 2022-07-16 thomas }
1367 8a35f56c 2022-07-16 thomas
1368 8a35f56c 2022-07-16 thomas static const struct got_error *
1369 4606e6d4 2022-11-23 thomas gotweb_get_clone_url(char **url, struct server *srv, const char *dirpath,
1370 4606e6d4 2022-11-23 thomas int dir)
1371 8a35f56c 2022-07-16 thomas {
1372 8a35f56c 2022-07-16 thomas const struct got_error *error = NULL;
1373 4606e6d4 2022-11-23 thomas struct stat sb;
1374 4606e6d4 2022-11-23 thomas int fd = -1;
1375 4606e6d4 2022-11-23 thomas off_t len;
1376 8a35f56c 2022-07-16 thomas
1377 8a35f56c 2022-07-16 thomas *url = NULL;
1378 8a35f56c 2022-07-16 thomas if (srv->show_repo_cloneurl == 0)
1379 8a35f56c 2022-07-16 thomas return NULL;
1380 8a35f56c 2022-07-16 thomas
1381 4606e6d4 2022-11-23 thomas fd = openat(dir, "cloneurl", O_RDONLY);
1382 4606e6d4 2022-11-23 thomas if (fd == -1) {
1383 4606e6d4 2022-11-23 thomas if (errno != ENOENT && errno != EACCES) {
1384 4606e6d4 2022-11-23 thomas error = got_error_from_errno_fmt("openat %s/%s",
1385 4606e6d4 2022-11-23 thomas dirpath, "cloneurl");
1386 4606e6d4 2022-11-23 thomas }
1387 8a35f56c 2022-07-16 thomas goto done;
1388 8a35f56c 2022-07-16 thomas }
1389 8a35f56c 2022-07-16 thomas
1390 4606e6d4 2022-11-23 thomas if (fstat(fd, &sb) == -1) {
1391 4606e6d4 2022-11-23 thomas error = got_error_from_errno_fmt("fstat %s/%s",
1392 4606e6d4 2022-11-23 thomas dirpath, "cloneurl");
1393 8a35f56c 2022-07-16 thomas goto done;
1394 8a35f56c 2022-07-16 thomas }
1395 8a35f56c 2022-07-16 thomas
1396 4606e6d4 2022-11-23 thomas len = sb.st_size;
1397 3e9a56b5 2022-12-01 thomas if (len > GOTWEBD_MAXCLONEURLSZ - 1)
1398 3e9a56b5 2022-12-01 thomas len = GOTWEBD_MAXCLONEURLSZ - 1;
1399 8a35f56c 2022-07-16 thomas
1400 8a35f56c 2022-07-16 thomas *url = calloc(len + 1, sizeof(**url));
1401 8a35f56c 2022-07-16 thomas if (*url == NULL) {
1402 8a35f56c 2022-07-16 thomas error = got_error_from_errno("calloc");
1403 8a35f56c 2022-07-16 thomas goto done;
1404 8a35f56c 2022-07-16 thomas }
1405 8a35f56c 2022-07-16 thomas
1406 4606e6d4 2022-11-23 thomas if (read(fd, *url, len) == -1)
1407 4606e6d4 2022-11-23 thomas error = got_error_from_errno("read");
1408 8a35f56c 2022-07-16 thomas done:
1409 4606e6d4 2022-11-23 thomas if (fd != -1 && close(fd) == -1 && error == NULL)
1410 4606e6d4 2022-11-23 thomas error = got_error_from_errno("close");
1411 8a35f56c 2022-07-16 thomas return error;
1412 8a35f56c 2022-07-16 thomas }
1413 8a35f56c 2022-07-16 thomas
1414 53bf32b8 2023-01-23 thomas int
1415 53bf32b8 2023-01-23 thomas gotweb_render_age(struct template *tp, time_t committer_time, int ref_tm)
1416 8a35f56c 2022-07-16 thomas {
1417 53bf32b8 2023-01-23 thomas struct request *c = tp->tp_arg;
1418 8a35f56c 2022-07-16 thomas struct tm tm;
1419 399ea8e4 2022-07-20 thomas long long diff_time;
1420 8a35f56c 2022-07-16 thomas const char *years = "years ago", *months = "months ago";
1421 8a35f56c 2022-07-16 thomas const char *weeks = "weeks ago", *days = "days ago";
1422 8a35f56c 2022-07-16 thomas const char *hours = "hours ago", *minutes = "minutes ago";
1423 8a35f56c 2022-07-16 thomas const char *seconds = "seconds ago", *now = "right now";
1424 8a35f56c 2022-07-16 thomas char *s;
1425 d6795e9f 2022-12-30 thomas char datebuf[64];
1426 d6795e9f 2022-12-30 thomas size_t r;
1427 8a35f56c 2022-07-16 thomas
1428 8a35f56c 2022-07-16 thomas switch (ref_tm) {
1429 8a35f56c 2022-07-16 thomas case TM_DIFF:
1430 8a35f56c 2022-07-16 thomas diff_time = time(NULL) - committer_time;
1431 8a35f56c 2022-07-16 thomas if (diff_time > 60 * 60 * 24 * 365 * 2) {
1432 53bf32b8 2023-01-23 thomas if (fcgi_printf(c, "%lld %s",
1433 8a35f56c 2022-07-16 thomas (diff_time / 60 / 60 / 24 / 365), years) == -1)
1434 53bf32b8 2023-01-23 thomas return -1;
1435 8a35f56c 2022-07-16 thomas } else if (diff_time > 60 * 60 * 24 * (365 / 12) * 2) {
1436 53bf32b8 2023-01-23 thomas if (fcgi_printf(c, "%lld %s",
1437 8a35f56c 2022-07-16 thomas (diff_time / 60 / 60 / 24 / (365 / 12)),
1438 8a35f56c 2022-07-16 thomas months) == -1)
1439 53bf32b8 2023-01-23 thomas return -1;
1440 8a35f56c 2022-07-16 thomas } else if (diff_time > 60 * 60 * 24 * 7 * 2) {
1441 53bf32b8 2023-01-23 thomas if (fcgi_printf(c, "%lld %s",
1442 8a35f56c 2022-07-16 thomas (diff_time / 60 / 60 / 24 / 7), weeks) == -1)
1443 53bf32b8 2023-01-23 thomas return -1;
1444 8a35f56c 2022-07-16 thomas } else if (diff_time > 60 * 60 * 24 * 2) {
1445 53bf32b8 2023-01-23 thomas if (fcgi_printf(c, "%lld %s",
1446 8a35f56c 2022-07-16 thomas (diff_time / 60 / 60 / 24), days) == -1)
1447 53bf32b8 2023-01-23 thomas return -1;
1448 8a35f56c 2022-07-16 thomas } else if (diff_time > 60 * 60 * 2) {
1449 53bf32b8 2023-01-23 thomas if (fcgi_printf(c, "%lld %s",
1450 8a35f56c 2022-07-16 thomas (diff_time / 60 / 60), hours) == -1)
1451 53bf32b8 2023-01-23 thomas return -1;
1452 8a35f56c 2022-07-16 thomas } else if (diff_time > 60 * 2) {
1453 53bf32b8 2023-01-23 thomas if (fcgi_printf(c, "%lld %s", (diff_time / 60),
1454 8a35f56c 2022-07-16 thomas minutes) == -1)
1455 53bf32b8 2023-01-23 thomas return -1;
1456 53bf32b8 2023-01-23 thomas } else if (diff_time > 2) {
1457 53bf32b8 2023-01-23 thomas if (fcgi_printf(c, "%lld %s", diff_time,
1458 8a35f56c 2022-07-16 thomas seconds) == -1)
1459 53bf32b8 2023-01-23 thomas return -1;
1460 8a35f56c 2022-07-16 thomas } else {
1461 53bf32b8 2023-01-23 thomas if (fcgi_puts(tp, now) == -1)
1462 53bf32b8 2023-01-23 thomas return -1;
1463 8a35f56c 2022-07-16 thomas }
1464 8a35f56c 2022-07-16 thomas break;
1465 8a35f56c 2022-07-16 thomas case TM_LONG:
1466 8a35f56c 2022-07-16 thomas if (gmtime_r(&committer_time, &tm) == NULL)
1467 53bf32b8 2023-01-23 thomas return -1;
1468 8a35f56c 2022-07-16 thomas
1469 8a35f56c 2022-07-16 thomas s = asctime_r(&tm, datebuf);
1470 8a35f56c 2022-07-16 thomas if (s == NULL)
1471 53bf32b8 2023-01-23 thomas return -1;
1472 8a35f56c 2022-07-16 thomas
1473 53bf32b8 2023-01-23 thomas if (fcgi_puts(tp, datebuf) == -1 ||
1474 53bf32b8 2023-01-23 thomas fcgi_puts(tp, " UTC") == -1)
1475 53bf32b8 2023-01-23 thomas return -1;
1476 8a35f56c 2022-07-16 thomas break;
1477 d6795e9f 2022-12-30 thomas case TM_RFC822:
1478 d6795e9f 2022-12-30 thomas if (gmtime_r(&committer_time, &tm) == NULL)
1479 53bf32b8 2023-01-23 thomas return -1;
1480 d6795e9f 2022-12-30 thomas
1481 d6795e9f 2022-12-30 thomas r = strftime(datebuf, sizeof(datebuf),
1482 d6795e9f 2022-12-30 thomas "%a, %d %b %Y %H:%M:%S GMT", &tm);
1483 d6795e9f 2022-12-30 thomas if (r == 0)
1484 53bf32b8 2023-01-23 thomas return -1;
1485 d6795e9f 2022-12-30 thomas
1486 53bf32b8 2023-01-23 thomas if (fcgi_puts(tp, datebuf) == -1)
1487 53bf32b8 2023-01-23 thomas return -1;
1488 d6795e9f 2022-12-30 thomas break;
1489 8a35f56c 2022-07-16 thomas }
1490 53bf32b8 2023-01-23 thomas return 0;
1491 3e12c168 2022-07-16 thomas }