Blame


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