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 */
21 #include <net/if.h>
22 #include <netinet/in.h>
23 #include <sys/queue.h>
24 #include <sys/stat.h>
25 #include <sys/types.h>
27 #include <ctype.h>
28 #include <dirent.h>
29 #include <errno.h>
30 #include <event.h>
31 #include <fcntl.h>
32 #include <imsg.h>
33 #include <sha1.h>
34 #include <sha2.h>
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <unistd.h>
40 #include "got_error.h"
41 #include "got_object.h"
42 #include "got_reference.h"
43 #include "got_repository.h"
44 #include "got_path.h"
45 #include "got_cancel.h"
46 #include "got_worktree.h"
47 #include "got_diff.h"
48 #include "got_commit_graph.h"
49 #include "got_blame.h"
50 #include "got_privsep.h"
52 #include "gotwebd.h"
53 #include "tmpl.h"
55 static const struct querystring_keys querystring_keys[] = {
56 { "action", ACTION },
57 { "commit", COMMIT },
58 { "file", RFILE },
59 { "folder", FOLDER },
60 { "headref", HEADREF },
61 { "index_page", INDEX_PAGE },
62 { "path", PATH },
63 { "page", PAGE },
64 };
66 static const struct action_keys action_keys[] = {
67 { "blame", BLAME },
68 { "blob", BLOB },
69 { "blobraw", BLOBRAW },
70 { "briefs", BRIEFS },
71 { "commits", COMMITS },
72 { "diff", DIFF },
73 { "error", ERR },
74 { "index", INDEX },
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 if (qs->commit == NULL) {
192 error = got_error(GOT_ERR_BAD_QUERYSTRING);
193 goto err;
197 if (qs->action != INDEX) {
198 error = gotweb_init_repo_dir(&repo_dir, qs->path);
199 if (error)
200 goto err;
201 error = gotweb_load_got_path(c, repo_dir);
202 c->t->repo_dir = repo_dir;
203 if (error && error->code != GOT_ERR_LONELY_PACKIDX)
204 goto err;
207 if (qs->action == BLOBRAW || qs->action == BLOB) {
208 error = got_get_repo_commits(c, 1);
209 if (error)
210 goto err;
212 error = got_open_blob_for_output(&c->t->blob, &c->t->fd,
213 &binary, c);
214 if (error)
215 goto err;
218 switch (qs->action) {
219 case BLAME:
220 error = got_get_repo_commits(c, 1);
221 if (error) {
222 log_warnx("%s: %s", __func__, error->msg);
223 goto err;
225 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
226 return;
227 gotweb_render_page(c->tp, gotweb_render_blame);
228 return;
229 case BLOB:
230 if (binary) {
231 struct gotweb_url url = {
232 .index_page = -1,
233 .page = -1,
234 .action = BLOBRAW,
235 .path = qs->path,
236 .commit = qs->commit,
237 .folder = qs->folder,
238 .file = qs->file,
239 };
241 gotweb_reply(c, 302, NULL, &url);
242 return;
245 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
246 return;
247 gotweb_render_page(c->tp, gotweb_render_blob);
248 return;
249 case BLOBRAW:
250 if (binary)
251 r = gotweb_reply_file(c, "application/octet-stream",
252 qs->file, NULL);
253 else
254 r = gotweb_reply(c, 200, "text/plain", NULL);
255 if (r == -1)
256 return;
257 if (template_flush(c->tp) == -1)
258 return;
260 for (;;) {
261 error = got_object_blob_read_block(&len, c->t->blob);
262 if (error)
263 break;
264 if (len == 0)
265 break;
266 buf = got_object_blob_get_read_buf(c->t->blob);
267 if (fcgi_write(c, buf, len) == -1)
268 break;
270 return;
271 case BRIEFS:
272 error = got_get_repo_commits(c, srv->max_commits_display);
273 if (error)
274 goto err;
275 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
276 return;
277 gotweb_render_page(c->tp, gotweb_render_briefs);
278 return;
279 case COMMITS:
280 error = got_get_repo_commits(c, srv->max_commits_display);
281 if (error) {
282 log_warnx("%s: %s", __func__, error->msg);
283 goto err;
285 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
286 return;
287 gotweb_render_page(c->tp, gotweb_render_commits);
288 return;
289 case DIFF:
290 error = got_get_repo_commits(c, 1);
291 if (error) {
292 log_warnx("%s: %s", __func__, error->msg);
293 goto err;
295 error = got_open_diff_for_output(&c->t->fp, c);
296 if (error) {
297 log_warnx("%s: %s", __func__, error->msg);
298 goto err;
300 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
301 return;
302 gotweb_render_page(c->tp, gotweb_render_diff);
303 return;
304 case INDEX:
305 c->t->nrepos = scandir(srv->repos_path, &c->t->repos, NULL,
306 alphasort);
307 if (c->t->nrepos == -1) {
308 c->t->repos = NULL;
309 error = got_error_from_errno2("scandir",
310 srv->repos_path);
311 goto err;
313 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
314 return;
315 gotweb_render_page(c->tp, gotweb_render_index);
316 return;
317 case RSS:
318 error = got_get_repo_tags(c, D_MAXSLCOMMDISP);
319 if (error)
320 goto err;
321 if (gotweb_reply_file(c, rss_ctype, repo_dir->name, ".rss")
322 == -1)
323 return;
324 gotweb_render_rss(c->tp);
325 return;
326 case SUMMARY:
327 error = got_ref_list(&c->t->refs, c->t->repo, "refs/heads",
328 got_ref_cmp_by_name, NULL);
329 if (error) {
330 log_warnx("%s: got_ref_list: %s", __func__,
331 error->msg);
332 goto err;
334 error = got_get_repo_commits(c, D_MAXSLCOMMDISP);
335 if (error)
336 goto err;
337 qs->action = TAGS;
338 error = got_get_repo_tags(c, D_MAXSLCOMMDISP);
339 if (error) {
340 log_warnx("%s: got_get_repo_tags: %s", __func__,
341 error->msg);
342 goto err;
344 qs->action = SUMMARY;
345 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
346 return;
347 gotweb_render_page(c->tp, gotweb_render_summary);
348 return;
349 case TAG:
350 error = got_get_repo_tags(c, 1);
351 if (error) {
352 log_warnx("%s: %s", __func__, error->msg);
353 goto err;
355 if (c->t->tag_count == 0) {
356 error = got_error_msg(GOT_ERR_BAD_OBJ_ID,
357 "bad commit id");
358 goto err;
360 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
361 return;
362 gotweb_render_page(c->tp, gotweb_render_tag);
363 return;
364 case TAGS:
365 error = got_get_repo_tags(c, srv->max_commits_display);
366 if (error) {
367 log_warnx("%s: %s", __func__, error->msg);
368 goto err;
370 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
371 return;
372 gotweb_render_page(c->tp, gotweb_render_tags);
373 return;
374 case TREE:
375 error = got_get_repo_commits(c, 1);
376 if (error) {
377 log_warnx("%s: %s", __func__, error->msg);
378 goto err;
380 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
381 return;
382 gotweb_render_page(c->tp, gotweb_render_tree);
383 return;
384 case ERR:
385 default:
386 error = got_error(GOT_ERR_BAD_QUERYSTRING);
389 err:
390 c->t->error = error;
391 if (gotweb_reply(c, 400, "text/html", NULL) == -1)
392 return;
393 gotweb_render_page(c->tp, gotweb_render_error);
396 struct server *
397 gotweb_get_server(const char *server_name)
399 struct server *srv;
401 /* check against the server name first */
402 if (*server_name != '\0')
403 TAILQ_FOREACH(srv, &gotwebd_env->servers, entry)
404 if (strcmp(srv->name, server_name) == 0)
405 return srv;
407 /* otherwise, use the first server */
408 return TAILQ_FIRST(&gotwebd_env->servers);
409 };
411 const struct got_error *
412 gotweb_init_transport(struct transport **t)
414 const struct got_error *error = NULL;
416 *t = calloc(1, sizeof(**t));
417 if (*t == NULL)
418 return got_error_from_errno2(__func__, "calloc");
420 TAILQ_INIT(&(*t)->repo_commits);
421 TAILQ_INIT(&(*t)->repo_tags);
422 TAILQ_INIT(&(*t)->refs);
424 (*t)->fd = -1;
426 return error;
429 static const struct got_error *
430 gotweb_init_querystring(struct querystring **qs)
432 const struct got_error *error = NULL;
434 *qs = calloc(1, sizeof(**qs));
435 if (*qs == NULL)
436 return got_error_from_errno2(__func__, "calloc");
438 (*qs)->headref = strdup("HEAD");
439 if ((*qs)->headref == NULL) {
440 free(*qs);
441 *qs = NULL;
442 return got_error_from_errno2(__func__, "strdup");
445 (*qs)->action = INDEX;
446 (*qs)->commit = NULL;
447 (*qs)->file = NULL;
448 (*qs)->folder = NULL;
449 (*qs)->index_page = 0;
450 (*qs)->path = NULL;
452 return error;
455 static const struct got_error *
456 gotweb_parse_querystring(struct querystring **qs, char *qst)
458 const struct got_error *error = NULL;
459 char *tok1 = NULL, *tok1_pair = NULL, *tok1_end = NULL;
460 char *tok2 = NULL, *tok2_pair = NULL, *tok2_end = NULL;
462 if (qst == NULL)
463 return error;
465 tok1 = strdup(qst);
466 if (tok1 == NULL)
467 return got_error_from_errno2(__func__, "strdup");
469 tok1_pair = tok1;
470 tok1_end = tok1;
472 while (tok1_pair != NULL) {
473 strsep(&tok1_end, "&");
475 tok2 = strdup(tok1_pair);
476 if (tok2 == NULL) {
477 free(tok1);
478 return got_error_from_errno2(__func__, "strdup");
481 tok2_pair = tok2;
482 tok2_end = tok2;
484 while (tok2_pair != NULL) {
485 strsep(&tok2_end, "=");
486 if (tok2_end) {
487 error = gotweb_assign_querystring(qs, tok2_pair,
488 tok2_end);
489 if (error)
490 goto err;
492 tok2_pair = tok2_end;
494 free(tok2);
495 tok1_pair = tok1_end;
497 free(tok1);
498 return error;
499 err:
500 free(tok2);
501 free(tok1);
502 return error;
505 /*
506 * Adapted from usr.sbin/httpd/httpd.c url_decode.
507 */
508 static const struct got_error *
509 gotweb_urldecode(char *url)
511 char *p, *q;
512 char hex[3];
513 unsigned long x;
515 hex[2] = '\0';
516 p = q = url;
518 while (*p != '\0') {
519 switch (*p) {
520 case '%':
521 /* Encoding character is followed by two hex chars */
522 if (!isxdigit((unsigned char)p[1]) ||
523 !isxdigit((unsigned char)p[2]) ||
524 (p[1] == '0' && p[2] == '0'))
525 return got_error(GOT_ERR_BAD_QUERYSTRING);
527 hex[0] = p[1];
528 hex[1] = p[2];
530 /*
531 * We don't have to validate "hex" because it is
532 * guaranteed to include two hex chars followed by nul.
533 */
534 x = strtoul(hex, NULL, 16);
535 *q = (char)x;
536 p += 2;
537 break;
538 default:
539 *q = *p;
540 break;
542 p++;
543 q++;
545 *q = '\0';
547 return NULL;
550 static const struct got_error *
551 gotweb_assign_querystring(struct querystring **qs, char *key, char *value)
553 const struct got_error *error = NULL;
554 const char *errstr;
555 int a_cnt, el_cnt;
557 error = gotweb_urldecode(value);
558 if (error)
559 return error;
561 for (el_cnt = 0; el_cnt < nitems(querystring_keys); el_cnt++) {
562 if (strcmp(key, querystring_keys[el_cnt].name) != 0)
563 continue;
565 switch (querystring_keys[el_cnt].element) {
566 case ACTION:
567 for (a_cnt = 0; a_cnt < ACTIONS__MAX; a_cnt++) {
568 if (strcmp(value, action_keys[a_cnt].name) != 0)
569 continue;
570 else if (strcmp(value,
571 action_keys[a_cnt].name) == 0){
572 (*qs)->action =
573 action_keys[a_cnt].action;
574 goto qa_found;
577 (*qs)->action = ERR;
578 qa_found:
579 break;
580 case COMMIT:
581 (*qs)->commit = strdup(value);
582 if ((*qs)->commit == NULL) {
583 error = got_error_from_errno2(__func__,
584 "strdup");
585 goto done;
587 break;
588 case RFILE:
589 (*qs)->file = strdup(value);
590 if ((*qs)->file == NULL) {
591 error = got_error_from_errno2(__func__,
592 "strdup");
593 goto done;
595 break;
596 case FOLDER:
597 (*qs)->folder = strdup(value);
598 if ((*qs)->folder == NULL) {
599 error = got_error_from_errno2(__func__,
600 "strdup");
601 goto done;
603 break;
604 case HEADREF:
605 free((*qs)->headref);
606 (*qs)->headref = strdup(value);
607 if ((*qs)->headref == NULL) {
608 error = got_error_from_errno2(__func__,
609 "strdup");
610 goto done;
612 break;
613 case INDEX_PAGE:
614 if (*value == '\0')
615 break;
616 (*qs)->index_page = strtonum(value, INT64_MIN,
617 INT64_MAX, &errstr);
618 if (errstr) {
619 error = got_error_from_errno3(__func__,
620 "strtonum", errstr);
621 goto done;
623 if ((*qs)->index_page < 0)
624 (*qs)->index_page = 0;
625 break;
626 case PATH:
627 (*qs)->path = strdup(value);
628 if ((*qs)->path == NULL) {
629 error = got_error_from_errno2(__func__,
630 "strdup");
631 goto done;
633 break;
634 case PAGE:
635 if (*value == '\0')
636 break;
637 (*qs)->page = strtonum(value, INT64_MIN,
638 INT64_MAX, &errstr);
639 if (errstr) {
640 error = got_error_from_errno3(__func__,
641 "strtonum", errstr);
642 goto done;
644 if ((*qs)->page < 0)
645 (*qs)->page = 0;
646 break;
649 /* entry found */
650 break;
652 done:
653 return error;
656 void
657 gotweb_free_repo_tag(struct repo_tag *rt)
659 if (rt != NULL) {
660 free(rt->commit_id);
661 free(rt->tag_name);
662 free(rt->tag_commit);
663 free(rt->commit_msg);
664 free(rt->tagger);
666 free(rt);
669 void
670 gotweb_free_repo_commit(struct repo_commit *rc)
672 if (rc != NULL) {
673 free(rc->path);
674 free(rc->refs_str);
675 free(rc->commit_id);
676 free(rc->parent_id);
677 free(rc->tree_id);
678 free(rc->author);
679 free(rc->committer);
680 free(rc->commit_msg);
682 free(rc);
685 static void
686 gotweb_free_querystring(struct querystring *qs)
688 if (qs != NULL) {
689 free(qs->commit);
690 free(qs->file);
691 free(qs->folder);
692 free(qs->headref);
693 free(qs->path);
695 free(qs);
698 static void
699 gotweb_free_repo_dir(struct repo_dir *repo_dir)
701 if (repo_dir != NULL) {
702 free(repo_dir->name);
703 free(repo_dir->owner);
704 free(repo_dir->description);
705 free(repo_dir->url);
706 free(repo_dir->path);
708 free(repo_dir);
711 void
712 gotweb_free_transport(struct transport *t)
714 const struct got_error *err;
715 struct repo_commit *rc = NULL, *trc = NULL;
716 struct repo_tag *rt = NULL, *trt = NULL;
717 int i;
719 got_ref_list_free(&t->refs);
720 TAILQ_FOREACH_SAFE(rc, &t->repo_commits, entry, trc) {
721 TAILQ_REMOVE(&t->repo_commits, rc, entry);
722 gotweb_free_repo_commit(rc);
724 TAILQ_FOREACH_SAFE(rt, &t->repo_tags, entry, trt) {
725 TAILQ_REMOVE(&t->repo_tags, rt, entry);
726 gotweb_free_repo_tag(rt);
728 gotweb_free_repo_dir(t->repo_dir);
729 gotweb_free_querystring(t->qs);
730 free(t->more_id);
731 free(t->next_id);
732 free(t->prev_id);
733 if (t->blob)
734 got_object_blob_close(t->blob);
735 if (t->fp) {
736 err = got_gotweb_closefile(t->fp);
737 if (err)
738 log_warnx("%s: got_gotweb_closefile failure: %s",
739 __func__, err->msg);
741 if (t->fd != -1 && close(t->fd) == -1)
742 log_warn("%s: close", __func__);
743 if (t->repos) {
744 for (i = 0; i < t->nrepos; ++i)
745 free(t->repos[i]);
746 free(t->repos);
748 if (t->repo)
749 got_repo_close(t->repo);
750 free(t);
753 void
754 gotweb_get_navs(struct request *c, struct gotweb_url *prev, int *have_prev,
755 struct gotweb_url *next, int *have_next)
757 struct transport *t = c->t;
758 struct querystring *qs = t->qs;
759 struct server *srv = c->srv;
761 *have_prev = *have_next = 0;
763 switch(qs->action) {
764 case INDEX:
765 if (qs->index_page > 0) {
766 *have_prev = 1;
767 *prev = (struct gotweb_url){
768 .action = -1,
769 .index_page = qs->index_page - 1,
770 .page = -1,
771 };
773 if (t->next_disp == srv->max_repos_display &&
774 t->repos_total != (qs->index_page + 1) *
775 srv->max_repos_display) {
776 *have_next = 1;
777 *next = (struct gotweb_url){
778 .action = -1,
779 .index_page = qs->index_page + 1,
780 .page = -1,
781 };
783 break;
784 case TAGS:
785 if (t->prev_id && qs->commit != NULL &&
786 strcmp(qs->commit, t->prev_id) != 0) {
787 *have_prev = 1;
788 *prev = (struct gotweb_url){
789 .action = TAGS,
790 .index_page = -1,
791 .page = qs->page - 1,
792 .path = qs->path,
793 .commit = t->prev_id,
794 .headref = qs->headref,
795 };
797 if (t->next_id) {
798 *have_next = 1;
799 *next = (struct gotweb_url){
800 .action = TAGS,
801 .index_page = -1,
802 .page = qs->page + 1,
803 .path = qs->path,
804 .commit = t->next_id,
805 .headref = qs->headref,
806 };
808 break;
812 static int
813 gotweb_render_index(struct template *tp)
815 const struct got_error *error = NULL;
816 struct request *c = tp->tp_arg;
817 struct server *srv = c->srv;
818 struct transport *t = c->t;
819 struct querystring *qs = t->qs;
820 struct repo_dir *repo_dir = NULL;
821 struct dirent **sd_dent = t->repos;
822 unsigned int d_i, d_disp = 0;
823 unsigned int d_skipped = 0;
824 int type, r;
826 if (gotweb_render_repo_table_hdr(c->tp) == -1)
827 return -1;
829 for (d_i = 0; d_i < t->nrepos; d_i++) {
830 if (srv->max_repos > 0 && t->prev_disp == srv->max_repos)
831 break;
833 if (strcmp(sd_dent[d_i]->d_name, ".") == 0 ||
834 strcmp(sd_dent[d_i]->d_name, "..") == 0) {
835 d_skipped++;
836 continue;
839 error = got_path_dirent_type(&type, srv->repos_path,
840 sd_dent[d_i]);
841 if (error)
842 continue;
843 if (type != DT_DIR) {
844 d_skipped++;
845 continue;
848 if (qs->index_page > 0 && (qs->index_page *
849 srv->max_repos_display) > t->prev_disp) {
850 t->prev_disp++;
851 continue;
854 error = gotweb_init_repo_dir(&repo_dir, sd_dent[d_i]->d_name);
855 if (error)
856 continue;
858 error = gotweb_load_got_path(c, repo_dir);
859 if (error && error->code != GOT_ERR_LONELY_PACKIDX) {
860 if (error->code != GOT_ERR_NOT_GIT_REPO)
861 log_warnx("%s: %s: %s", __func__,
862 sd_dent[d_i]->d_name, error->msg);
863 gotweb_free_repo_dir(repo_dir);
864 repo_dir = NULL;
865 d_skipped++;
866 continue;
869 d_disp++;
870 t->prev_disp++;
872 r = gotweb_render_repo_fragment(c->tp, repo_dir);
873 gotweb_free_repo_dir(repo_dir);
874 repo_dir = NULL;
875 got_repo_close(t->repo);
876 t->repo = NULL;
877 if (r == -1)
878 return -1;
880 t->next_disp++;
881 if (d_disp == srv->max_repos_display)
882 break;
884 t->repos_total = t->nrepos - d_skipped;
886 if (srv->max_repos_display == 0)
887 return 0;
888 if (srv->max_repos > 0 && srv->max_repos < srv->max_repos_display)
889 return 0;
890 if (t->repos_total <= srv->max_repos ||
891 t->repos_total <= srv->max_repos_display)
892 return 0;
894 if (gotweb_render_navs(c->tp) == -1)
895 return -1;
897 return 0;
900 static inline int
901 should_urlencode(int c)
903 if (c <= ' ' || c >= 127)
904 return 1;
906 switch (c) {
907 /* gen-delim */
908 case ':':
909 case '/':
910 case '?':
911 case '#':
912 case '[':
913 case ']':
914 case '@':
915 /* sub-delims */
916 case '!':
917 case '$':
918 case '&':
919 case '\'':
920 case '(':
921 case ')':
922 case '*':
923 case '+':
924 case ',':
925 case ';':
926 case '=':
927 /* needed because the URLs are embedded into the HTML */
928 case '\"':
929 return 1;
930 default:
931 return 0;
935 static char *
936 gotweb_urlencode(const char *str)
938 const char *s;
939 char *escaped;
940 size_t i, len;
941 int a, b;
943 len = 0;
944 for (s = str; *s; ++s) {
945 len++;
946 if (should_urlencode(*s))
947 len += 2;
950 escaped = calloc(1, len + 1);
951 if (escaped == NULL)
952 return NULL;
954 i = 0;
955 for (s = str; *s; ++s) {
956 if (should_urlencode(*s)) {
957 a = (*s & 0xF0) >> 4;
958 b = (*s & 0x0F);
960 escaped[i++] = '%';
961 escaped[i++] = a <= 9 ? ('0' + a) : ('7' + a);
962 escaped[i++] = b <= 9 ? ('0' + b) : ('7' + b);
963 } else
964 escaped[i++] = *s;
967 return escaped;
970 const char *
971 gotweb_action_name(int action)
973 switch (action) {
974 case BLAME:
975 return "blame";
976 case BLOB:
977 return "blob";
978 case BLOBRAW:
979 return "blobraw";
980 case BRIEFS:
981 return "briefs";
982 case COMMITS:
983 return "commits";
984 case DIFF:
985 return "diff";
986 case ERR:
987 return "err";
988 case INDEX:
989 return "index";
990 case SUMMARY:
991 return "summary";
992 case TAG:
993 return "tag";
994 case TAGS:
995 return "tags";
996 case TREE:
997 return "tree";
998 case RSS:
999 return "rss";
1000 default:
1001 return NULL;
1005 int
1006 gotweb_render_url(struct request *c, struct gotweb_url *url)
1008 const char *sep = "?", *action;
1009 char *tmp;
1010 int r;
1012 action = gotweb_action_name(url->action);
1013 if (action != NULL) {
1014 if (tp_writef(c->tp, "?action=%s", action) == -1)
1015 return -1;
1016 sep = "&";
1019 if (url->commit) {
1020 if (tp_writef(c->tp, "%scommit=%s", sep, url->commit) == -1)
1021 return -1;
1022 sep = "&";
1025 if (url->previd) {
1026 if (tp_writef(c->tp, "%sprevid=%s", sep, url->previd) == -1)
1027 return -1;
1028 sep = "&";
1031 if (url->prevset) {
1032 if (tp_writef(c->tp, "%sprevset=%s", sep, url->prevset) == -1)
1033 return -1;
1034 sep = "&";
1037 if (url->file) {
1038 tmp = gotweb_urlencode(url->file);
1039 if (tmp == NULL)
1040 return -1;
1041 r = tp_writef(c->tp, "%sfile=%s", sep, tmp);
1042 free(tmp);
1043 if (r == -1)
1044 return -1;
1045 sep = "&";
1048 if (url->folder) {
1049 tmp = gotweb_urlencode(url->folder);
1050 if (tmp == NULL)
1051 return -1;
1052 r = tp_writef(c->tp, "%sfolder=%s", sep, tmp);
1053 free(tmp);
1054 if (r == -1)
1055 return -1;
1056 sep = "&";
1059 if (url->headref) {
1060 tmp = gotweb_urlencode(url->headref);
1061 if (tmp == NULL)
1062 return -1;
1063 r = tp_writef(c->tp, "%sheadref=%s", sep, url->headref);
1064 free(tmp);
1065 if (r == -1)
1066 return -1;
1067 sep = "&";
1070 if (url->index_page != -1) {
1071 if (tp_writef(c->tp, "%sindex_page=%d", sep,
1072 url->index_page) == -1)
1073 return -1;
1074 sep = "&";
1077 if (url->path) {
1078 tmp = gotweb_urlencode(url->path);
1079 if (tmp == NULL)
1080 return -1;
1081 r = tp_writef(c->tp, "%spath=%s", sep, tmp);
1082 free(tmp);
1083 if (r == -1)
1084 return -1;
1085 sep = "&";
1088 if (url->page != -1) {
1089 if (tp_writef(c->tp, "%spage=%d", sep, url->page) == -1)
1090 return -1;
1091 sep = "&";
1094 return 0;
1097 int
1098 gotweb_render_absolute_url(struct request *c, struct gotweb_url *url)
1100 struct template *tp = c->tp;
1101 const char *proto = c->https ? "https" : "http";
1103 if (tp_writes(tp, proto) == -1 ||
1104 tp_writes(tp, "://") == -1 ||
1105 tp_htmlescape(tp, c->server_name) == -1 ||
1106 tp_htmlescape(tp, c->document_uri) == -1)
1107 return -1;
1109 return gotweb_render_url(c, url);
1112 static const struct got_error *
1113 gotweb_load_got_path(struct request *c, struct repo_dir *repo_dir)
1115 const struct got_error *error = NULL;
1116 struct socket *sock = c->sock;
1117 struct server *srv = c->srv;
1118 struct transport *t = c->t;
1119 DIR *dt;
1120 char *dir_test;
1122 if (asprintf(&dir_test, "%s/%s/%s", srv->repos_path, repo_dir->name,
1123 GOTWEB_GIT_DIR) == -1)
1124 return got_error_from_errno("asprintf");
1126 dt = opendir(dir_test);
1127 if (dt == NULL) {
1128 free(dir_test);
1129 if (asprintf(&dir_test, "%s/%s", srv->repos_path,
1130 repo_dir->name) == -1)
1131 return got_error_from_errno("asprintf");
1132 dt = opendir(dir_test);
1133 if (dt == NULL) {
1134 free(dir_test);
1135 return got_error_path(repo_dir->name,
1136 GOT_ERR_NOT_GIT_REPO);
1140 repo_dir->path = dir_test;
1141 dir_test = NULL;
1143 if (srv->respect_exportok &&
1144 faccessat(dirfd(dt), "git-daemon-export-ok", F_OK, 0) == -1) {
1145 error = got_error_path(repo_dir->name, GOT_ERR_NOT_GIT_REPO);
1146 goto err;
1149 error = got_repo_open(&t->repo, repo_dir->path, NULL, sock->pack_fds);
1150 if (error)
1151 goto err;
1152 error = gotweb_get_repo_description(&repo_dir->description, srv,
1153 repo_dir->path, dirfd(dt));
1154 if (error)
1155 goto err;
1156 error = got_get_repo_owner(&repo_dir->owner, c);
1157 if (error)
1158 goto err;
1159 if (srv->show_repo_age) {
1160 error = got_get_repo_age(&repo_dir->age, c, NULL);
1161 if (error)
1162 goto err;
1164 error = gotweb_get_clone_url(&repo_dir->url, srv, repo_dir->path,
1165 dirfd(dt));
1166 err:
1167 free(dir_test);
1168 if (dt != NULL && closedir(dt) == EOF && error == NULL)
1169 error = got_error_from_errno("closedir");
1170 if (error && t->repo) {
1171 got_repo_close(t->repo);
1172 t->repo = NULL;
1174 return error;
1177 static const struct got_error *
1178 gotweb_init_repo_dir(struct repo_dir **repo_dir, const char *dir)
1180 const struct got_error *error;
1182 *repo_dir = calloc(1, sizeof(**repo_dir));
1183 if (*repo_dir == NULL)
1184 return got_error_from_errno("calloc");
1186 if (asprintf(&(*repo_dir)->name, "%s", dir) == -1) {
1187 error = got_error_from_errno("asprintf");
1188 free(*repo_dir);
1189 *repo_dir = NULL;
1190 return error;
1192 (*repo_dir)->owner = NULL;
1193 (*repo_dir)->description = NULL;
1194 (*repo_dir)->url = NULL;
1195 (*repo_dir)->path = NULL;
1197 return NULL;
1200 static const struct got_error *
1201 gotweb_get_repo_description(char **description, struct server *srv,
1202 const char *dirpath, int dir)
1204 const struct got_error *error = NULL;
1205 struct stat sb;
1206 int fd = -1;
1207 off_t len;
1209 *description = NULL;
1210 if (srv->show_repo_description == 0)
1211 return NULL;
1213 fd = openat(dir, "description", O_RDONLY);
1214 if (fd == -1) {
1215 if (errno != ENOENT && errno != EACCES) {
1216 error = got_error_from_errno_fmt("openat %s/%s",
1217 dirpath, "description");
1219 goto done;
1222 if (fstat(fd, &sb) == -1) {
1223 error = got_error_from_errno_fmt("fstat %s/%s",
1224 dirpath, "description");
1225 goto done;
1228 len = sb.st_size;
1229 if (len > GOTWEBD_MAXDESCRSZ - 1)
1230 len = GOTWEBD_MAXDESCRSZ - 1;
1232 *description = calloc(len + 1, sizeof(**description));
1233 if (*description == NULL) {
1234 error = got_error_from_errno("calloc");
1235 goto done;
1238 if (read(fd, *description, len) == -1)
1239 error = got_error_from_errno("read");
1240 done:
1241 if (fd != -1 && close(fd) == -1 && error == NULL)
1242 error = got_error_from_errno("close");
1243 return error;
1246 static const struct got_error *
1247 gotweb_get_clone_url(char **url, struct server *srv, const char *dirpath,
1248 int dir)
1250 const struct got_error *error = NULL;
1251 struct stat sb;
1252 int fd = -1;
1253 off_t len;
1255 *url = NULL;
1256 if (srv->show_repo_cloneurl == 0)
1257 return NULL;
1259 fd = openat(dir, "cloneurl", O_RDONLY);
1260 if (fd == -1) {
1261 if (errno != ENOENT && errno != EACCES) {
1262 error = got_error_from_errno_fmt("openat %s/%s",
1263 dirpath, "cloneurl");
1265 goto done;
1268 if (fstat(fd, &sb) == -1) {
1269 error = got_error_from_errno_fmt("fstat %s/%s",
1270 dirpath, "cloneurl");
1271 goto done;
1274 len = sb.st_size;
1275 if (len > GOTWEBD_MAXCLONEURLSZ - 1)
1276 len = GOTWEBD_MAXCLONEURLSZ - 1;
1278 *url = calloc(len + 1, sizeof(**url));
1279 if (*url == NULL) {
1280 error = got_error_from_errno("calloc");
1281 goto done;
1284 if (read(fd, *url, len) == -1)
1285 error = got_error_from_errno("read");
1286 done:
1287 if (fd != -1 && close(fd) == -1 && error == NULL)
1288 error = got_error_from_errno("close");
1289 return error;
1292 int
1293 gotweb_render_age(struct template *tp, time_t committer_time)
1295 struct request *c = tp->tp_arg;
1296 long long diff_time;
1297 const char *years = "years ago", *months = "months ago";
1298 const char *weeks = "weeks ago", *days = "days ago";
1299 const char *hours = "hours ago", *minutes = "minutes ago";
1300 const char *seconds = "seconds ago", *now = "right now";
1302 diff_time = time(NULL) - committer_time;
1303 if (diff_time > 60 * 60 * 24 * 365 * 2) {
1304 if (tp_writef(c->tp, "%lld %s",
1305 (diff_time / 60 / 60 / 24 / 365), years) == -1)
1306 return -1;
1307 } else if (diff_time > 60 * 60 * 24 * (365 / 12) * 2) {
1308 if (tp_writef(c->tp, "%lld %s",
1309 (diff_time / 60 / 60 / 24 / (365 / 12)),
1310 months) == -1)
1311 return -1;
1312 } else if (diff_time > 60 * 60 * 24 * 7 * 2) {
1313 if (tp_writef(c->tp, "%lld %s",
1314 (diff_time / 60 / 60 / 24 / 7), weeks) == -1)
1315 return -1;
1316 } else if (diff_time > 60 * 60 * 24 * 2) {
1317 if (tp_writef(c->tp, "%lld %s",
1318 (diff_time / 60 / 60 / 24), days) == -1)
1319 return -1;
1320 } else if (diff_time > 60 * 60 * 2) {
1321 if (tp_writef(c->tp, "%lld %s",
1322 (diff_time / 60 / 60), hours) == -1)
1323 return -1;
1324 } else if (diff_time > 60 * 2) {
1325 if (tp_writef(c->tp, "%lld %s", (diff_time / 60),
1326 minutes) == -1)
1327 return -1;
1328 } else if (diff_time > 2) {
1329 if (tp_writef(c->tp, "%lld %s", diff_time,
1330 seconds) == -1)
1331 return -1;
1332 } else {
1333 if (tp_writes(tp, now) == -1)
1334 return -1;
1336 return 0;