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