Blob


1 /*
2 * Copyright (c) 2016, 2019, 2020-2022 Tracey Emery <tracey@traceyemery.net>
3 * Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org>
4 * Copyright (c) 2014 Reyk Floeter <reyk@openbsd.org>
5 * Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
6 * Copyright (c) 2013 Florian Obser <florian@openbsd.org>
7 *
8 * Permission to use, copy, modify, and distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 */
20 #include "got_compat.h"
22 #include <net/if.h>
23 #include <netinet/in.h>
24 #include <sys/queue.h>
25 #include <sys/stat.h>
26 #include <sys/types.h>
28 #include <ctype.h>
29 #include <dirent.h>
30 #include <errno.h>
31 #include <event.h>
32 #include <fcntl.h>
33 #include <imsg.h>
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #include <unistd.h>
39 #include "got_error.h"
40 #include "got_object.h"
41 #include "got_reference.h"
42 #include "got_repository.h"
43 #include "got_path.h"
44 #include "got_cancel.h"
45 #include "got_worktree.h"
46 #include "got_diff.h"
47 #include "got_commit_graph.h"
48 #include "got_blame.h"
49 #include "got_privsep.h"
51 #include "gotwebd.h"
52 #include "tmpl.h"
54 static const struct querystring_keys querystring_keys[] = {
55 { "action", ACTION },
56 { "commit", COMMIT },
57 { "file", RFILE },
58 { "folder", FOLDER },
59 { "headref", HEADREF },
60 { "index_page", INDEX_PAGE },
61 { "path", PATH },
62 { "page", PAGE },
63 };
65 static const struct action_keys action_keys[] = {
66 { "blame", BLAME },
67 { "blob", BLOB },
68 { "blobraw", BLOBRAW },
69 { "briefs", BRIEFS },
70 { "commits", COMMITS },
71 { "diff", DIFF },
72 { "error", ERR },
73 { "index", INDEX },
74 { "patch", PATCH },
75 { "summary", SUMMARY },
76 { "tag", TAG },
77 { "tags", TAGS },
78 { "tree", TREE },
79 { "rss", RSS },
80 };
82 static const struct got_error *gotweb_init_querystring(struct querystring **);
83 static const struct got_error *gotweb_parse_querystring(struct querystring **,
84 char *);
85 static const struct got_error *gotweb_assign_querystring(struct querystring **,
86 char *, char *);
87 static int gotweb_render_index(struct template *);
88 static const struct got_error *gotweb_init_repo_dir(struct repo_dir **,
89 const char *);
90 static const struct got_error *gotweb_load_got_path(struct request *c,
91 struct repo_dir *);
92 static const struct got_error *gotweb_get_repo_description(char **,
93 struct server *, const char *, int);
94 static const struct got_error *gotweb_get_clone_url(char **, struct server *,
95 const char *, int);
97 static void gotweb_free_querystring(struct querystring *);
98 static void gotweb_free_repo_dir(struct repo_dir *);
100 struct server *gotweb_get_server(const char *);
102 static int
103 gotweb_reply(struct request *c, int status, const char *ctype,
104 struct gotweb_url *location)
106 const char *csp;
108 if (status != 200 && tp_writef(c->tp, "Status: %d\r\n", status) == -1)
109 return -1;
111 if (location) {
112 if (tp_writes(c->tp, "Location: ") == -1 ||
113 gotweb_render_url(c, location) == -1 ||
114 tp_writes(c->tp, "\r\n") == -1)
115 return -1;
118 csp = "Content-Security-Policy: default-src 'self'; "
119 "script-src 'none'; object-src 'none';\r\n";
120 if (tp_writes(c->tp, csp) == -1)
121 return -1;
123 if (ctype && tp_writef(c->tp, "Content-Type: %s\r\n", ctype) == -1)
124 return -1;
126 return tp_writes(c->tp, "\r\n");
129 static int
130 gotweb_reply_file(struct request *c, const char *ctype, const char *file,
131 const char *suffix)
133 int r;
135 r = tp_writef(c->tp, "Content-Disposition: attachment; "
136 "filename=%s%s\r\n", file, suffix ? suffix : "");
137 if (r == -1)
138 return -1;
139 return gotweb_reply(c, 200, ctype, NULL);
142 void
143 gotweb_process_request(struct request *c)
145 const struct got_error *error = NULL;
146 struct server *srv = NULL;
147 struct querystring *qs = NULL;
148 struct repo_dir *repo_dir = NULL;
149 const char *rss_ctype = "application/rss+xml;charset=utf-8";
150 const uint8_t *buf;
151 size_t len;
152 int r, binary = 0;
154 /* init the transport */
155 error = gotweb_init_transport(&c->t);
156 if (error) {
157 log_warnx("%s: %s", __func__, error->msg);
158 return;
160 /* don't process any further if client disconnected */
161 if (c->sock->client_status == CLIENT_DISCONNECT)
162 return;
163 /* get the gotwebd server */
164 srv = gotweb_get_server(c->server_name);
165 if (srv == NULL) {
166 log_warnx("%s: error server is NULL", __func__);
167 goto err;
169 c->srv = srv;
170 /* parse our querystring */
171 error = gotweb_init_querystring(&qs);
172 if (error) {
173 log_warnx("%s: %s", __func__, error->msg);
174 goto err;
176 c->t->qs = qs;
177 error = gotweb_parse_querystring(&qs, c->querystring);
178 if (error) {
179 log_warnx("%s: %s", __func__, error->msg);
180 goto err;
183 /*
184 * certain actions require a commit id in the querystring. this stops
185 * bad actors from exploiting this by manually manipulating the
186 * querystring.
187 */
189 if (qs->action == BLAME || qs->action == BLOB ||
190 qs->action == BLOBRAW || qs->action == DIFF ||
191 qs->action == PATCH) {
192 if (qs->commit == NULL) {
193 error = got_error(GOT_ERR_BAD_QUERYSTRING);
194 goto err;
198 if (qs->action != INDEX) {
199 error = gotweb_init_repo_dir(&repo_dir, qs->path);
200 if (error)
201 goto err;
202 error = gotweb_load_got_path(c, repo_dir);
203 c->t->repo_dir = repo_dir;
204 if (error && error->code != GOT_ERR_LONELY_PACKIDX)
205 goto err;
208 if (qs->action == BLOBRAW || qs->action == BLOB) {
209 error = got_get_repo_commits(c, 1);
210 if (error)
211 goto err;
213 error = got_open_blob_for_output(&c->t->blob, &c->t->fd,
214 &binary, c, qs->folder, qs->file, qs->commit);
215 if (error)
216 goto err;
219 switch (qs->action) {
220 case BLAME:
221 error = got_get_repo_commits(c, 1);
222 if (error) {
223 log_warnx("%s: %s", __func__, error->msg);
224 goto err;
226 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
227 return;
228 gotweb_render_page(c->tp, gotweb_render_blame);
229 return;
230 case BLOB:
231 if (binary) {
232 struct gotweb_url url = {
233 .index_page = -1,
234 .page = -1,
235 .action = BLOBRAW,
236 .path = qs->path,
237 .commit = qs->commit,
238 .folder = qs->folder,
239 .file = qs->file,
240 };
242 gotweb_reply(c, 302, NULL, &url);
243 return;
246 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
247 return;
248 gotweb_render_page(c->tp, gotweb_render_blob);
249 return;
250 case BLOBRAW:
251 if (binary)
252 r = gotweb_reply_file(c, "application/octet-stream",
253 qs->file, NULL);
254 else
255 r = gotweb_reply(c, 200, "text/plain", NULL);
256 if (r == -1)
257 return;
258 if (template_flush(c->tp) == -1)
259 return;
261 for (;;) {
262 error = got_object_blob_read_block(&len, c->t->blob);
263 if (error)
264 break;
265 if (len == 0)
266 break;
267 buf = got_object_blob_get_read_buf(c->t->blob);
268 if (fcgi_write(c, buf, len) == -1)
269 break;
271 return;
272 case BRIEFS:
273 error = got_get_repo_commits(c, srv->max_commits_display);
274 if (error)
275 goto err;
276 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
277 return;
278 gotweb_render_page(c->tp, gotweb_render_briefs);
279 return;
280 case COMMITS:
281 error = got_get_repo_commits(c, srv->max_commits_display);
282 if (error) {
283 log_warnx("%s: %s", __func__, error->msg);
284 goto err;
286 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
287 return;
288 gotweb_render_page(c->tp, gotweb_render_commits);
289 return;
290 case DIFF:
291 error = got_get_repo_commits(c, 1);
292 if (error) {
293 log_warnx("%s: %s", __func__, error->msg);
294 goto err;
296 error = got_open_diff_for_output(&c->t->fp, c);
297 if (error) {
298 log_warnx("%s: %s", __func__, error->msg);
299 goto err;
301 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
302 return;
303 gotweb_render_page(c->tp, gotweb_render_diff);
304 return;
305 case INDEX:
306 c->t->nrepos = scandir(srv->repos_path, &c->t->repos, NULL,
307 alphasort);
308 if (c->t->nrepos == -1) {
309 c->t->repos = NULL;
310 error = got_error_from_errno2("scandir",
311 srv->repos_path);
312 goto err;
314 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
315 return;
316 gotweb_render_page(c->tp, gotweb_render_index);
317 return;
318 case PATCH:
319 error = got_get_repo_commits(c, 1);
320 if (error) {
321 log_warnx("%s: %s", __func__, error->msg);
322 goto err;
324 error = got_open_diff_for_output(&c->t->fp, c);
325 if (error) {
326 log_warnx("%s: %s", __func__, error->msg);
327 goto err;
329 if (gotweb_reply(c, 200, "text/plain", NULL) == -1)
330 return;
331 gotweb_render_patch(c->tp);
332 return;
333 case RSS:
334 error = got_get_repo_tags(c, D_MAXSLCOMMDISP);
335 if (error)
336 goto err;
337 if (gotweb_reply_file(c, rss_ctype, repo_dir->name, ".rss")
338 == -1)
339 return;
340 gotweb_render_rss(c->tp);
341 return;
342 case SUMMARY:
343 error = got_ref_list(&c->t->refs, c->t->repo, "refs/heads",
344 got_ref_cmp_by_name, NULL);
345 if (error) {
346 log_warnx("%s: got_ref_list: %s", __func__,
347 error->msg);
348 goto err;
350 error = got_get_repo_commits(c, D_MAXSLCOMMDISP);
351 if (error)
352 goto err;
353 qs->action = TAGS;
354 error = got_get_repo_tags(c, D_MAXSLTAGDISP);
355 if (error) {
356 log_warnx("%s: got_get_repo_tags: %s", __func__,
357 error->msg);
358 goto err;
360 qs->action = SUMMARY;
361 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
362 return;
363 gotweb_render_page(c->tp, gotweb_render_summary);
364 return;
365 case TAG:
366 error = got_get_repo_tags(c, 1);
367 if (error) {
368 log_warnx("%s: %s", __func__, error->msg);
369 goto err;
371 if (c->t->tag_count == 0) {
372 error = got_error_msg(GOT_ERR_BAD_OBJ_ID,
373 "bad commit id");
374 goto err;
376 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
377 return;
378 gotweb_render_page(c->tp, gotweb_render_tag);
379 return;
380 case TAGS:
381 error = got_get_repo_tags(c, srv->max_commits_display);
382 if (error) {
383 log_warnx("%s: %s", __func__, error->msg);
384 goto err;
386 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
387 return;
388 gotweb_render_page(c->tp, gotweb_render_tags);
389 return;
390 case TREE:
391 error = got_get_repo_commits(c, 1);
392 if (error) {
393 log_warnx("%s: %s", __func__, error->msg);
394 goto err;
396 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
397 return;
398 gotweb_render_page(c->tp, gotweb_render_tree);
399 return;
400 case ERR:
401 default:
402 error = got_error(GOT_ERR_BAD_QUERYSTRING);
405 err:
406 c->t->error = error;
407 if (gotweb_reply(c, 400, "text/html", NULL) == -1)
408 return;
409 gotweb_render_page(c->tp, gotweb_render_error);
412 struct server *
413 gotweb_get_server(const char *server_name)
415 struct server *srv;
417 /* check against the server name first */
418 if (*server_name != '\0')
419 TAILQ_FOREACH(srv, &gotwebd_env->servers, entry)
420 if (strcmp(srv->name, server_name) == 0)
421 return srv;
423 /* otherwise, use the first server */
424 return TAILQ_FIRST(&gotwebd_env->servers);
425 };
427 const struct got_error *
428 gotweb_init_transport(struct transport **t)
430 const struct got_error *error = NULL;
432 *t = calloc(1, sizeof(**t));
433 if (*t == NULL)
434 return got_error_from_errno2(__func__, "calloc");
436 TAILQ_INIT(&(*t)->repo_commits);
437 TAILQ_INIT(&(*t)->repo_tags);
438 TAILQ_INIT(&(*t)->refs);
440 (*t)->fd = -1;
442 return error;
445 static const struct got_error *
446 gotweb_init_querystring(struct querystring **qs)
448 const struct got_error *error = NULL;
450 *qs = calloc(1, sizeof(**qs));
451 if (*qs == NULL)
452 return got_error_from_errno2(__func__, "calloc");
454 (*qs)->headref = strdup("HEAD");
455 if ((*qs)->headref == NULL) {
456 free(*qs);
457 *qs = NULL;
458 return got_error_from_errno2(__func__, "strdup");
461 (*qs)->action = INDEX;
462 (*qs)->commit = NULL;
463 (*qs)->file = NULL;
464 (*qs)->folder = NULL;
465 (*qs)->index_page = 0;
466 (*qs)->path = NULL;
468 return error;
471 static const struct got_error *
472 gotweb_parse_querystring(struct querystring **qs, char *qst)
474 const struct got_error *error = NULL;
475 char *tok1 = NULL, *tok1_pair = NULL, *tok1_end = NULL;
476 char *tok2 = NULL, *tok2_pair = NULL, *tok2_end = NULL;
478 if (qst == NULL)
479 return error;
481 tok1 = strdup(qst);
482 if (tok1 == NULL)
483 return got_error_from_errno2(__func__, "strdup");
485 tok1_pair = tok1;
486 tok1_end = tok1;
488 while (tok1_pair != NULL) {
489 strsep(&tok1_end, "&");
491 tok2 = strdup(tok1_pair);
492 if (tok2 == NULL) {
493 free(tok1);
494 return got_error_from_errno2(__func__, "strdup");
497 tok2_pair = tok2;
498 tok2_end = tok2;
500 while (tok2_pair != NULL) {
501 strsep(&tok2_end, "=");
502 if (tok2_end) {
503 error = gotweb_assign_querystring(qs, tok2_pair,
504 tok2_end);
505 if (error)
506 goto err;
508 tok2_pair = tok2_end;
510 free(tok2);
511 tok1_pair = tok1_end;
513 free(tok1);
514 return error;
515 err:
516 free(tok2);
517 free(tok1);
518 return error;
521 /*
522 * Adapted from usr.sbin/httpd/httpd.c url_decode.
523 */
524 static const struct got_error *
525 gotweb_urldecode(char *url)
527 char *p, *q;
528 char hex[3];
529 unsigned long x;
531 hex[2] = '\0';
532 p = q = url;
534 while (*p != '\0') {
535 switch (*p) {
536 case '%':
537 /* Encoding character is followed by two hex chars */
538 if (!isxdigit((unsigned char)p[1]) ||
539 !isxdigit((unsigned char)p[2]) ||
540 (p[1] == '0' && p[2] == '0'))
541 return got_error(GOT_ERR_BAD_QUERYSTRING);
543 hex[0] = p[1];
544 hex[1] = p[2];
546 /*
547 * We don't have to validate "hex" because it is
548 * guaranteed to include two hex chars followed by nul.
549 */
550 x = strtoul(hex, NULL, 16);
551 *q = (char)x;
552 p += 2;
553 break;
554 default:
555 *q = *p;
556 break;
558 p++;
559 q++;
561 *q = '\0';
563 return NULL;
566 static const struct got_error *
567 gotweb_assign_querystring(struct querystring **qs, char *key, char *value)
569 const struct got_error *error = NULL;
570 const char *errstr;
571 int a_cnt, el_cnt;
573 error = gotweb_urldecode(value);
574 if (error)
575 return error;
577 for (el_cnt = 0; el_cnt < nitems(querystring_keys); el_cnt++) {
578 if (strcmp(key, querystring_keys[el_cnt].name) != 0)
579 continue;
581 switch (querystring_keys[el_cnt].element) {
582 case ACTION:
583 for (a_cnt = 0; a_cnt < ACTIONS__MAX; a_cnt++) {
584 if (strcmp(value, action_keys[a_cnt].name) != 0)
585 continue;
586 else if (strcmp(value,
587 action_keys[a_cnt].name) == 0){
588 (*qs)->action =
589 action_keys[a_cnt].action;
590 goto qa_found;
593 (*qs)->action = ERR;
594 qa_found:
595 break;
596 case COMMIT:
597 (*qs)->commit = strdup(value);
598 if ((*qs)->commit == NULL) {
599 error = got_error_from_errno2(__func__,
600 "strdup");
601 goto done;
603 break;
604 case RFILE:
605 (*qs)->file = strdup(value);
606 if ((*qs)->file == NULL) {
607 error = got_error_from_errno2(__func__,
608 "strdup");
609 goto done;
611 break;
612 case FOLDER:
613 (*qs)->folder = strdup(value);
614 if ((*qs)->folder == NULL) {
615 error = got_error_from_errno2(__func__,
616 "strdup");
617 goto done;
619 break;
620 case HEADREF:
621 free((*qs)->headref);
622 (*qs)->headref = strdup(value);
623 if ((*qs)->headref == NULL) {
624 error = got_error_from_errno2(__func__,
625 "strdup");
626 goto done;
628 break;
629 case INDEX_PAGE:
630 if (*value == '\0')
631 break;
632 (*qs)->index_page = strtonum(value, INT64_MIN,
633 INT64_MAX, &errstr);
634 if (errstr) {
635 error = got_error_from_errno3(__func__,
636 "strtonum", errstr);
637 goto done;
639 if ((*qs)->index_page < 0)
640 (*qs)->index_page = 0;
641 break;
642 case PATH:
643 (*qs)->path = strdup(value);
644 if ((*qs)->path == NULL) {
645 error = got_error_from_errno2(__func__,
646 "strdup");
647 goto done;
649 break;
650 case PAGE:
651 if (*value == '\0')
652 break;
653 (*qs)->page = strtonum(value, INT64_MIN,
654 INT64_MAX, &errstr);
655 if (errstr) {
656 error = got_error_from_errno3(__func__,
657 "strtonum", errstr);
658 goto done;
660 if ((*qs)->page < 0)
661 (*qs)->page = 0;
662 break;
665 /* entry found */
666 break;
668 done:
669 return error;
672 void
673 gotweb_free_repo_tag(struct repo_tag *rt)
675 if (rt != NULL) {
676 free(rt->commit_id);
677 free(rt->tag_name);
678 free(rt->tag_commit);
679 free(rt->commit_msg);
680 free(rt->tagger);
682 free(rt);
685 void
686 gotweb_free_repo_commit(struct repo_commit *rc)
688 if (rc != NULL) {
689 free(rc->path);
690 free(rc->refs_str);
691 free(rc->commit_id);
692 free(rc->parent_id);
693 free(rc->tree_id);
694 free(rc->author);
695 free(rc->committer);
696 free(rc->commit_msg);
698 free(rc);
701 static void
702 gotweb_free_querystring(struct querystring *qs)
704 if (qs != NULL) {
705 free(qs->commit);
706 free(qs->file);
707 free(qs->folder);
708 free(qs->headref);
709 free(qs->path);
711 free(qs);
714 static void
715 gotweb_free_repo_dir(struct repo_dir *repo_dir)
717 if (repo_dir != NULL) {
718 free(repo_dir->name);
719 free(repo_dir->owner);
720 free(repo_dir->description);
721 free(repo_dir->url);
722 free(repo_dir->path);
724 free(repo_dir);
727 void
728 gotweb_free_transport(struct transport *t)
730 const struct got_error *err;
731 struct repo_commit *rc = NULL, *trc = NULL;
732 struct repo_tag *rt = NULL, *trt = NULL;
733 int i;
735 got_ref_list_free(&t->refs);
736 TAILQ_FOREACH_SAFE(rc, &t->repo_commits, entry, trc) {
737 TAILQ_REMOVE(&t->repo_commits, rc, entry);
738 gotweb_free_repo_commit(rc);
740 TAILQ_FOREACH_SAFE(rt, &t->repo_tags, entry, trt) {
741 TAILQ_REMOVE(&t->repo_tags, rt, entry);
742 gotweb_free_repo_tag(rt);
744 gotweb_free_repo_dir(t->repo_dir);
745 gotweb_free_querystring(t->qs);
746 free(t->more_id);
747 free(t->tags_more_id);
748 if (t->blob)
749 got_object_blob_close(t->blob);
750 if (t->fp) {
751 err = got_gotweb_closefile(t->fp);
752 if (err)
753 log_warnx("%s: got_gotweb_closefile failure: %s",
754 __func__, err->msg);
756 if (t->fd != -1 && close(t->fd) == -1)
757 log_warn("%s: close", __func__);
758 if (t->repos) {
759 for (i = 0; i < t->nrepos; ++i)
760 free(t->repos[i]);
761 free(t->repos);
763 if (t->repo)
764 got_repo_close(t->repo);
765 free(t);
768 void
769 gotweb_index_navs(struct request *c, struct gotweb_url *prev, int *have_prev,
770 struct gotweb_url *next, int *have_next)
772 struct transport *t = c->t;
773 struct querystring *qs = t->qs;
774 struct server *srv = c->srv;
776 *have_prev = *have_next = 0;
778 if (qs->index_page > 0) {
779 *have_prev = 1;
780 *prev = (struct gotweb_url){
781 .action = -1,
782 .index_page = qs->index_page - 1,
783 .page = -1,
784 };
786 if (t->next_disp == srv->max_repos_display &&
787 t->repos_total != (qs->index_page + 1) *
788 srv->max_repos_display) {
789 *have_next = 1;
790 *next = (struct gotweb_url){
791 .action = -1,
792 .index_page = qs->index_page + 1,
793 .page = -1,
794 };
798 static int
799 gotweb_render_index(struct template *tp)
801 const struct got_error *error = NULL;
802 struct request *c = tp->tp_arg;
803 struct server *srv = c->srv;
804 struct transport *t = c->t;
805 struct querystring *qs = t->qs;
806 struct repo_dir *repo_dir = NULL;
807 struct dirent **sd_dent = t->repos;
808 unsigned int d_i, d_disp = 0;
809 unsigned int d_skipped = 0;
810 int type, r;
812 if (gotweb_render_repo_table_hdr(c->tp) == -1)
813 return -1;
815 for (d_i = 0; d_i < t->nrepos; d_i++) {
816 if (srv->max_repos > 0 && t->prev_disp == srv->max_repos)
817 break;
819 if (strcmp(sd_dent[d_i]->d_name, ".") == 0 ||
820 strcmp(sd_dent[d_i]->d_name, "..") == 0) {
821 d_skipped++;
822 continue;
825 error = got_path_dirent_type(&type, srv->repos_path,
826 sd_dent[d_i]);
827 if (error)
828 continue;
829 if (type != DT_DIR) {
830 d_skipped++;
831 continue;
834 if (qs->index_page > 0 && (qs->index_page *
835 srv->max_repos_display) > t->prev_disp) {
836 t->prev_disp++;
837 continue;
840 error = gotweb_init_repo_dir(&repo_dir, sd_dent[d_i]->d_name);
841 if (error)
842 continue;
844 error = gotweb_load_got_path(c, repo_dir);
845 if (error && error->code != GOT_ERR_LONELY_PACKIDX) {
846 if (error->code != GOT_ERR_NOT_GIT_REPO)
847 log_warnx("%s: %s: %s", __func__,
848 sd_dent[d_i]->d_name, error->msg);
849 gotweb_free_repo_dir(repo_dir);
850 repo_dir = NULL;
851 d_skipped++;
852 continue;
855 d_disp++;
856 t->prev_disp++;
858 r = gotweb_render_repo_fragment(c->tp, repo_dir);
859 gotweb_free_repo_dir(repo_dir);
860 repo_dir = NULL;
861 got_repo_close(t->repo);
862 t->repo = NULL;
863 if (r == -1)
864 return -1;
866 t->next_disp++;
867 if (d_disp == srv->max_repos_display)
868 break;
870 t->repos_total = t->nrepos - d_skipped;
872 if (srv->max_repos_display == 0)
873 return 0;
874 if (srv->max_repos > 0 && srv->max_repos < srv->max_repos_display)
875 return 0;
876 if (t->repos_total <= srv->max_repos ||
877 t->repos_total <= srv->max_repos_display)
878 return 0;
880 if (gotweb_render_navs(c->tp) == -1)
881 return -1;
883 return 0;
886 static inline int
887 should_urlencode(int c)
889 if (c <= ' ' || c >= 127)
890 return 1;
892 switch (c) {
893 /* gen-delim */
894 case ':':
895 case '/':
896 case '?':
897 case '#':
898 case '[':
899 case ']':
900 case '@':
901 /* sub-delims */
902 case '!':
903 case '$':
904 case '&':
905 case '\'':
906 case '(':
907 case ')':
908 case '*':
909 case '+':
910 case ',':
911 case ';':
912 case '=':
913 /* needed because the URLs are embedded into the HTML */
914 case '\"':
915 return 1;
916 default:
917 return 0;
921 static char *
922 gotweb_urlencode(const char *str)
924 const char *s;
925 char *escaped;
926 size_t i, len;
927 int a, b;
929 len = 0;
930 for (s = str; *s; ++s) {
931 len++;
932 if (should_urlencode(*s))
933 len += 2;
936 escaped = calloc(1, len + 1);
937 if (escaped == NULL)
938 return NULL;
940 i = 0;
941 for (s = str; *s; ++s) {
942 if (should_urlencode(*s)) {
943 a = (*s & 0xF0) >> 4;
944 b = (*s & 0x0F);
946 escaped[i++] = '%';
947 escaped[i++] = a <= 9 ? ('0' + a) : ('7' + a);
948 escaped[i++] = b <= 9 ? ('0' + b) : ('7' + b);
949 } else
950 escaped[i++] = *s;
953 return escaped;
956 const char *
957 gotweb_action_name(int action)
959 switch (action) {
960 case BLAME:
961 return "blame";
962 case BLOB:
963 return "blob";
964 case BLOBRAW:
965 return "blobraw";
966 case BRIEFS:
967 return "briefs";
968 case COMMITS:
969 return "commits";
970 case DIFF:
971 return "diff";
972 case ERR:
973 return "err";
974 case INDEX:
975 return "index";
976 case PATCH:
977 return "patch";
978 case SUMMARY:
979 return "summary";
980 case TAG:
981 return "tag";
982 case TAGS:
983 return "tags";
984 case TREE:
985 return "tree";
986 case RSS:
987 return "rss";
988 default:
989 return NULL;
993 int
994 gotweb_render_url(struct request *c, struct gotweb_url *url)
996 const char *sep = "?", *action;
997 char *tmp;
998 int r;
1000 action = gotweb_action_name(url->action);
1001 if (action != NULL) {
1002 if (tp_writef(c->tp, "?action=%s", action) == -1)
1003 return -1;
1004 sep = "&";
1007 if (url->commit) {
1008 if (tp_writef(c->tp, "%scommit=%s", sep, url->commit) == -1)
1009 return -1;
1010 sep = "&";
1013 if (url->previd) {
1014 if (tp_writef(c->tp, "%sprevid=%s", sep, url->previd) == -1)
1015 return -1;
1016 sep = "&";
1019 if (url->prevset) {
1020 if (tp_writef(c->tp, "%sprevset=%s", sep, url->prevset) == -1)
1021 return -1;
1022 sep = "&";
1025 if (url->file) {
1026 tmp = gotweb_urlencode(url->file);
1027 if (tmp == NULL)
1028 return -1;
1029 r = tp_writef(c->tp, "%sfile=%s", sep, tmp);
1030 free(tmp);
1031 if (r == -1)
1032 return -1;
1033 sep = "&";
1036 if (url->folder) {
1037 tmp = gotweb_urlencode(url->folder);
1038 if (tmp == NULL)
1039 return -1;
1040 r = tp_writef(c->tp, "%sfolder=%s", sep, tmp);
1041 free(tmp);
1042 if (r == -1)
1043 return -1;
1044 sep = "&";
1047 if (url->headref) {
1048 tmp = gotweb_urlencode(url->headref);
1049 if (tmp == NULL)
1050 return -1;
1051 r = tp_writef(c->tp, "%sheadref=%s", sep, url->headref);
1052 free(tmp);
1053 if (r == -1)
1054 return -1;
1055 sep = "&";
1058 if (url->index_page != -1) {
1059 if (tp_writef(c->tp, "%sindex_page=%d", sep,
1060 url->index_page) == -1)
1061 return -1;
1062 sep = "&";
1065 if (url->path) {
1066 tmp = gotweb_urlencode(url->path);
1067 if (tmp == NULL)
1068 return -1;
1069 r = tp_writef(c->tp, "%spath=%s", sep, tmp);
1070 free(tmp);
1071 if (r == -1)
1072 return -1;
1073 sep = "&";
1076 if (url->page != -1) {
1077 if (tp_writef(c->tp, "%spage=%d", sep, url->page) == -1)
1078 return -1;
1079 sep = "&";
1082 return 0;
1085 int
1086 gotweb_render_absolute_url(struct request *c, struct gotweb_url *url)
1088 struct template *tp = c->tp;
1089 const char *proto = c->https ? "https" : "http";
1091 if (tp_writes(tp, proto) == -1 ||
1092 tp_writes(tp, "://") == -1 ||
1093 tp_htmlescape(tp, c->server_name) == -1 ||
1094 tp_htmlescape(tp, c->document_uri) == -1)
1095 return -1;
1097 return gotweb_render_url(c, url);
1100 static const struct got_error *
1101 gotweb_load_got_path(struct request *c, struct repo_dir *repo_dir)
1103 const struct got_error *error = NULL;
1104 struct socket *sock = c->sock;
1105 struct server *srv = c->srv;
1106 struct transport *t = c->t;
1107 DIR *dt;
1108 char *dir_test;
1110 if (asprintf(&dir_test, "%s/%s/%s", srv->repos_path, repo_dir->name,
1111 GOTWEB_GIT_DIR) == -1)
1112 return got_error_from_errno("asprintf");
1114 dt = opendir(dir_test);
1115 if (dt == NULL) {
1116 free(dir_test);
1117 if (asprintf(&dir_test, "%s/%s", srv->repos_path,
1118 repo_dir->name) == -1)
1119 return got_error_from_errno("asprintf");
1120 dt = opendir(dir_test);
1121 if (dt == NULL) {
1122 free(dir_test);
1123 return got_error_path(repo_dir->name,
1124 GOT_ERR_NOT_GIT_REPO);
1128 repo_dir->path = dir_test;
1129 dir_test = NULL;
1131 if (srv->respect_exportok &&
1132 faccessat(dirfd(dt), "git-daemon-export-ok", F_OK, 0) == -1) {
1133 error = got_error_path(repo_dir->name, GOT_ERR_NOT_GIT_REPO);
1134 goto err;
1137 error = got_repo_open(&t->repo, repo_dir->path, NULL, sock->pack_fds);
1138 if (error)
1139 goto err;
1140 error = gotweb_get_repo_description(&repo_dir->description, srv,
1141 repo_dir->path, dirfd(dt));
1142 if (error)
1143 goto err;
1144 error = got_get_repo_owner(&repo_dir->owner, c);
1145 if (error)
1146 goto err;
1147 if (srv->show_repo_age) {
1148 error = got_get_repo_age(&repo_dir->age, c, NULL);
1149 if (error)
1150 goto err;
1152 error = gotweb_get_clone_url(&repo_dir->url, srv, repo_dir->path,
1153 dirfd(dt));
1154 err:
1155 free(dir_test);
1156 if (dt != NULL && closedir(dt) == EOF && error == NULL)
1157 error = got_error_from_errno("closedir");
1158 if (error && t->repo) {
1159 got_repo_close(t->repo);
1160 t->repo = NULL;
1162 return error;
1165 static const struct got_error *
1166 gotweb_init_repo_dir(struct repo_dir **repo_dir, const char *dir)
1168 const struct got_error *error;
1170 *repo_dir = calloc(1, sizeof(**repo_dir));
1171 if (*repo_dir == NULL)
1172 return got_error_from_errno("calloc");
1174 if (asprintf(&(*repo_dir)->name, "%s", dir) == -1) {
1175 error = got_error_from_errno("asprintf");
1176 free(*repo_dir);
1177 *repo_dir = NULL;
1178 return error;
1180 (*repo_dir)->owner = NULL;
1181 (*repo_dir)->description = NULL;
1182 (*repo_dir)->url = NULL;
1183 (*repo_dir)->path = NULL;
1185 return NULL;
1188 static const struct got_error *
1189 gotweb_get_repo_description(char **description, struct server *srv,
1190 const char *dirpath, int dir)
1192 const struct got_error *error = NULL;
1193 struct stat sb;
1194 int fd = -1;
1195 off_t len;
1197 *description = NULL;
1198 if (srv->show_repo_description == 0)
1199 return NULL;
1201 fd = openat(dir, "description", O_RDONLY);
1202 if (fd == -1) {
1203 if (errno != ENOENT && errno != EACCES) {
1204 error = got_error_from_errno_fmt("openat %s/%s",
1205 dirpath, "description");
1207 goto done;
1210 if (fstat(fd, &sb) == -1) {
1211 error = got_error_from_errno_fmt("fstat %s/%s",
1212 dirpath, "description");
1213 goto done;
1216 len = sb.st_size;
1217 if (len > GOTWEBD_MAXDESCRSZ - 1)
1218 len = GOTWEBD_MAXDESCRSZ - 1;
1220 *description = calloc(len + 1, sizeof(**description));
1221 if (*description == NULL) {
1222 error = got_error_from_errno("calloc");
1223 goto done;
1226 if (read(fd, *description, len) == -1)
1227 error = got_error_from_errno("read");
1228 done:
1229 if (fd != -1 && close(fd) == -1 && error == NULL)
1230 error = got_error_from_errno("close");
1231 return error;
1234 static const struct got_error *
1235 gotweb_get_clone_url(char **url, struct server *srv, const char *dirpath,
1236 int dir)
1238 const struct got_error *error = NULL;
1239 struct stat sb;
1240 int fd = -1;
1241 off_t len;
1243 *url = NULL;
1244 if (srv->show_repo_cloneurl == 0)
1245 return NULL;
1247 fd = openat(dir, "cloneurl", O_RDONLY);
1248 if (fd == -1) {
1249 if (errno != ENOENT && errno != EACCES) {
1250 error = got_error_from_errno_fmt("openat %s/%s",
1251 dirpath, "cloneurl");
1253 goto done;
1256 if (fstat(fd, &sb) == -1) {
1257 error = got_error_from_errno_fmt("fstat %s/%s",
1258 dirpath, "cloneurl");
1259 goto done;
1262 len = sb.st_size;
1263 if (len > GOTWEBD_MAXCLONEURLSZ - 1)
1264 len = GOTWEBD_MAXCLONEURLSZ - 1;
1266 *url = calloc(len + 1, sizeof(**url));
1267 if (*url == NULL) {
1268 error = got_error_from_errno("calloc");
1269 goto done;
1272 if (read(fd, *url, len) == -1)
1273 error = got_error_from_errno("read");
1274 done:
1275 if (fd != -1 && close(fd) == -1 && error == NULL)
1276 error = got_error_from_errno("close");
1277 return error;
1280 int
1281 gotweb_render_age(struct template *tp, time_t committer_time)
1283 struct request *c = tp->tp_arg;
1284 long long diff_time;
1285 const char *years = "years ago", *months = "months ago";
1286 const char *weeks = "weeks ago", *days = "days ago";
1287 const char *hours = "hours ago", *minutes = "minutes ago";
1288 const char *seconds = "seconds ago", *now = "right now";
1290 diff_time = time(NULL) - committer_time;
1291 if (diff_time > 60 * 60 * 24 * 365 * 2) {
1292 if (tp_writef(c->tp, "%lld %s",
1293 (diff_time / 60 / 60 / 24 / 365), years) == -1)
1294 return -1;
1295 } else if (diff_time > 60 * 60 * 24 * (365 / 12) * 2) {
1296 if (tp_writef(c->tp, "%lld %s",
1297 (diff_time / 60 / 60 / 24 / (365 / 12)),
1298 months) == -1)
1299 return -1;
1300 } else if (diff_time > 60 * 60 * 24 * 7 * 2) {
1301 if (tp_writef(c->tp, "%lld %s",
1302 (diff_time / 60 / 60 / 24 / 7), weeks) == -1)
1303 return -1;
1304 } else if (diff_time > 60 * 60 * 24 * 2) {
1305 if (tp_writef(c->tp, "%lld %s",
1306 (diff_time / 60 / 60 / 24), days) == -1)
1307 return -1;
1308 } else if (diff_time > 60 * 60 * 2) {
1309 if (tp_writef(c->tp, "%lld %s",
1310 (diff_time / 60 / 60), hours) == -1)
1311 return -1;
1312 } else if (diff_time > 60 * 2) {
1313 if (tp_writef(c->tp, "%lld %s", (diff_time / 60),
1314 minutes) == -1)
1315 return -1;
1316 } else if (diff_time > 2) {
1317 if (tp_writef(c->tp, "%lld %s", diff_time,
1318 seconds) == -1)
1319 return -1;
1320 } else {
1321 if (tp_writes(tp, now) == -1)
1322 return -1;
1324 return 0;