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>
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.
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.
22 #include <netinet/in.h>
23 #include <sys/queue.h>
25 #include <sys/types.h>
40 #include "got_error.h"
41 #include "got_object.h"
42 #include "got_reference.h"
43 #include "got_repository.h"
45 #include "got_cancel.h"
46 #include "got_worktree.h"
48 #include "got_commit_graph.h"
49 #include "got_blame.h"
50 #include "got_privsep.h"
56 static const struct querystring_keys querystring_keys[] = {
61 { "headref", HEADREF },
62 { "index_page", INDEX_PAGE },
67 static const struct action_keys action_keys[] = {
70 { "blobraw", BLOBRAW },
72 { "commits", COMMITS },
76 { "summary", SUMMARY },
83 static const struct got_error *gotweb_init_querystring(struct querystring **);
84 static const struct got_error *gotweb_parse_querystring(struct querystring **,
86 static const struct got_error *gotweb_assign_querystring(struct querystring **,
88 static int gotweb_render_index(struct template *);
89 static const struct got_error *gotweb_init_repo_dir(struct repo_dir **,
91 static const struct got_error *gotweb_load_got_path(struct request *c,
93 static const struct got_error *gotweb_get_repo_description(char **,
94 struct server *, const char *, int);
95 static const struct got_error *gotweb_get_clone_url(char **, struct server *,
98 static void gotweb_free_querystring(struct querystring *);
99 static void gotweb_free_repo_dir(struct repo_dir *);
101 struct server *gotweb_get_server(uint8_t *, uint8_t *);
104 gotweb_reply(struct request *c, int status, const char *ctype,
105 struct gotweb_url *location)
109 if (status != 200 && fcgi_printf(c, "Status: %d\r\n", status) == -1)
113 if (fcgi_puts(c->tp, "Location: ") == -1 ||
114 gotweb_render_url(c, location) == -1 ||
115 fcgi_puts(c->tp, "\r\n") == -1)
119 csp = "Content-Security-Policy: default-src 'self'; "
120 "script-src 'none'; object-src 'none';\r\n";
121 if (fcgi_puts(c->tp, csp) == -1)
124 if (ctype && fcgi_printf(c, "Content-Type: %s\r\n", ctype) == -1)
127 return fcgi_puts(c->tp, "\r\n");
131 gotweb_reply_file(struct request *c, const char *ctype, const char *file,
136 r = fcgi_printf(c, "Content-Disposition: attachment; "
137 "filename=%s%s\r\n", file, suffix ? suffix : "");
140 return gotweb_reply(c, 200, ctype, NULL);
144 gotweb_process_request(struct request *c)
146 const struct got_error *error = NULL;
147 struct server *srv = NULL;
148 struct querystring *qs = NULL;
149 struct repo_dir *repo_dir = NULL;
150 const char *rss_ctype = "application/rss+xml;charset=utf-8";
155 /* init the transport */
156 error = gotweb_init_transport(&c->t);
158 log_warnx("%s: %s", __func__, error->msg);
161 /* don't process any further if client disconnected */
162 if (c->sock->client_status == CLIENT_DISCONNECT)
164 /* get the gotwebd server */
165 srv = gotweb_get_server(c->server_name, c->http_host);
167 log_warnx("%s: error server is NULL", __func__);
171 /* parse our querystring */
172 error = gotweb_init_querystring(&qs);
174 log_warnx("%s: %s", __func__, error->msg);
178 error = gotweb_parse_querystring(&qs, c->querystring);
180 log_warnx("%s: %s", __func__, error->msg);
185 * certain actions require a commit id in the querystring. this stops
186 * bad actors from exploiting this by manually manipulating the
190 if (qs->action == BLAME || qs->action == BLOB ||
191 qs->action == BLOBRAW || qs->action == DIFF) {
192 if (qs->commit == NULL) {
193 error = got_error(GOT_ERR_QUERYSTRING);
198 if (qs->action != INDEX) {
199 error = gotweb_init_repo_dir(&repo_dir, qs->path);
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)
208 if (qs->action == BLOBRAW || qs->action == BLOB) {
209 error = got_get_repo_commits(c, 1);
213 error = got_open_blob_for_output(&c->t->blob, &c->t->fd,
221 error = got_get_repo_commits(c, 1);
223 log_warnx("%s: %s", __func__, error->msg);
226 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
228 gotweb_render_page(c->tp, gotweb_render_blame);
232 struct gotweb_url url = {
237 .commit = qs->commit,
238 .folder = qs->folder,
242 gotweb_reply(c, 302, NULL, &url);
246 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
248 gotweb_render_page(c->tp, gotweb_render_blob);
252 r = gotweb_reply_file(c, "application/octet-stream",
255 r = gotweb_reply(c, 200, "text/plain", NULL);
260 error = got_object_blob_read_block(&len, c->t->blob);
265 buf = got_object_blob_get_read_buf(c->t->blob);
266 if (fcgi_gen_binary_response(c, buf, len) == -1)
271 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
273 gotweb_render_page(c->tp, gotweb_render_briefs);
276 error = got_get_repo_commits(c, srv->max_commits_display);
278 log_warnx("%s: %s", __func__, error->msg);
281 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
283 gotweb_render_page(c->tp, gotweb_render_commits);
286 error = got_get_repo_commits(c, 1);
288 log_warnx("%s: %s", __func__, error->msg);
291 error = got_open_diff_for_output(&c->t->fp, &c->t->fd, c);
293 log_warnx("%s: %s", __func__, error->msg);
296 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
298 gotweb_render_page(c->tp, gotweb_render_diff);
301 c->t->nrepos = scandir(srv->repos_path, &c->t->repos, NULL,
303 if (c->t->nrepos == -1) {
305 error = got_error_from_errno2("scandir",
309 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
311 gotweb_render_page(c->tp, gotweb_render_index);
314 error = got_get_repo_tags(c, D_MAXSLCOMMDISP);
317 if (gotweb_reply_file(c, rss_ctype, repo_dir->name, ".rss")
320 gotweb_render_rss(c->tp);
323 error = got_ref_list(&c->t->refs, c->t->repo, "refs/heads",
324 got_ref_cmp_by_name, NULL);
326 log_warnx("%s: got_ref_list: %s", __func__,
331 error = got_get_repo_tags(c, D_MAXSLCOMMDISP);
333 log_warnx("%s: got_get_repo_tags: %s", __func__,
337 qs->action = SUMMARY;
338 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
340 gotweb_render_page(c->tp, gotweb_render_summary);
343 error = got_get_repo_tags(c, 1);
345 log_warnx("%s: %s", __func__, error->msg);
348 if (c->t->tag_count == 0) {
349 error = got_error_msg(GOT_ERR_BAD_OBJ_ID,
353 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
355 gotweb_render_page(c->tp, gotweb_render_tag);
358 error = got_get_repo_tags(c, srv->max_commits_display);
360 log_warnx("%s: %s", __func__, error->msg);
363 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
365 gotweb_render_page(c->tp, gotweb_render_tags);
368 error = got_get_repo_commits(c, 1);
370 log_warnx("%s: %s", __func__, error->msg);
373 if (gotweb_reply(c, 200, "text/html", NULL) == -1)
375 gotweb_render_page(c->tp, gotweb_render_tree);
379 error = got_error(GOT_ERR_BAD_QUERYSTRING);
384 if (gotweb_reply(c, 400, "text/html", NULL) == -1)
386 gotweb_render_page(c->tp, gotweb_render_error);
390 gotweb_get_server(uint8_t *server_name, uint8_t *subdomain)
392 struct server *srv = NULL;
394 /* check against the server name first */
395 if (strlen(server_name) > 0)
396 TAILQ_FOREACH(srv, &gotwebd_env->servers, entry)
397 if (strcmp(srv->name, server_name) == 0)
400 /* check against subdomain second */
401 if (strlen(subdomain) > 0)
402 TAILQ_FOREACH(srv, &gotwebd_env->servers, entry)
403 if (strcmp(srv->name, subdomain) == 0)
406 /* if those fail, send first server */
407 TAILQ_FOREACH(srv, &gotwebd_env->servers, entry)
414 const struct got_error *
415 gotweb_init_transport(struct transport **t)
417 const struct got_error *error = NULL;
419 *t = calloc(1, sizeof(**t));
421 return got_error_from_errno2("%s: calloc", __func__);
423 TAILQ_INIT(&(*t)->repo_commits);
424 TAILQ_INIT(&(*t)->repo_tags);
425 TAILQ_INIT(&(*t)->refs);
428 (*t)->repo_dir = NULL;
430 (*t)->next_id = NULL;
431 (*t)->prev_id = NULL;
440 static const struct got_error *
441 gotweb_init_querystring(struct querystring **qs)
443 const struct got_error *error = NULL;
445 *qs = calloc(1, sizeof(**qs));
447 return got_error_from_errno2("%s: calloc", __func__);
449 (*qs)->headref = strdup("HEAD");
450 if ((*qs)->headref == NULL) {
453 return got_error_from_errno2("%s: strdup", __func__);
456 (*qs)->action = INDEX;
457 (*qs)->commit = NULL;
459 (*qs)->folder = NULL;
460 (*qs)->index_page = 0;
466 static const struct got_error *
467 gotweb_parse_querystring(struct querystring **qs, char *qst)
469 const struct got_error *error = NULL;
470 char *tok1 = NULL, *tok1_pair = NULL, *tok1_end = NULL;
471 char *tok2 = NULL, *tok2_pair = NULL, *tok2_end = NULL;
478 return got_error_from_errno2("%s: strdup", __func__);
483 while (tok1_pair != NULL) {
484 strsep(&tok1_end, "&");
486 tok2 = strdup(tok1_pair);
489 return got_error_from_errno2("%s: strdup", __func__);
495 while (tok2_pair != NULL) {
496 strsep(&tok2_end, "=");
498 error = gotweb_assign_querystring(qs, tok2_pair,
503 tok2_pair = tok2_end;
506 tok1_pair = tok1_end;
517 * Adapted from usr.sbin/httpd/httpd.c url_decode.
519 static const struct got_error *
520 gotweb_urldecode(char *url)
532 /* Encoding character is followed by two hex chars */
533 if (!isxdigit((unsigned char)p[1]) ||
534 !isxdigit((unsigned char)p[2]) ||
535 (p[1] == '0' && p[2] == '0'))
536 return got_error(GOT_ERR_BAD_QUERYSTRING);
542 * We don't have to validate "hex" because it is
543 * guaranteed to include two hex chars followed by nul.
545 x = strtoul(hex, NULL, 16);
561 static const struct got_error *
562 gotweb_assign_querystring(struct querystring **qs, char *key, char *value)
564 const struct got_error *error = NULL;
568 error = gotweb_urldecode(value);
572 for (el_cnt = 0; el_cnt < QSELEM__MAX; el_cnt++) {
573 if (strcmp(key, querystring_keys[el_cnt].name) != 0)
576 switch (querystring_keys[el_cnt].element) {
578 for (a_cnt = 0; a_cnt < ACTIONS__MAX; a_cnt++) {
579 if (strcmp(value, action_keys[a_cnt].name) != 0)
581 else if (strcmp(value,
582 action_keys[a_cnt].name) == 0){
584 action_keys[a_cnt].action;
592 (*qs)->commit = strdup(value);
593 if ((*qs)->commit == NULL) {
594 error = got_error_from_errno2("%s: strdup",
600 (*qs)->file = strdup(value);
601 if ((*qs)->file == NULL) {
602 error = got_error_from_errno2("%s: strdup",
608 (*qs)->folder = strdup(value);
609 if ((*qs)->folder == NULL) {
610 error = got_error_from_errno2("%s: strdup",
616 free((*qs)->headref);
617 (*qs)->headref = strdup(value);
618 if ((*qs)->headref == NULL) {
619 error = got_error_from_errno2("%s: strdup",
625 if (strlen(value) == 0)
627 (*qs)->index_page = strtonum(value, INT64_MIN,
630 error = got_error_from_errno3("%s: strtonum %s",
634 if ((*qs)->index_page < 0)
635 (*qs)->index_page = 0;
638 (*qs)->path = strdup(value);
639 if ((*qs)->path == NULL) {
640 error = got_error_from_errno2("%s: strdup",
646 if (strlen(value) == 0)
648 (*qs)->page = strtonum(value, INT64_MIN,
651 error = got_error_from_errno3("%s: strtonum %s",
667 gotweb_free_repo_tag(struct repo_tag *rt)
672 free(rt->tag_commit);
673 free(rt->commit_msg);
680 gotweb_free_repo_commit(struct repo_commit *rc)
690 free(rc->commit_msg);
696 gotweb_free_querystring(struct querystring *qs)
709 gotweb_free_repo_dir(struct repo_dir *repo_dir)
711 if (repo_dir != NULL) {
712 free(repo_dir->name);
713 free(repo_dir->owner);
714 free(repo_dir->description);
716 free(repo_dir->path);
722 gotweb_free_transport(struct transport *t)
724 const struct got_error *err;
725 struct repo_commit *rc = NULL, *trc = NULL;
726 struct repo_tag *rt = NULL, *trt = NULL;
729 got_ref_list_free(&t->refs);
730 TAILQ_FOREACH_SAFE(rc, &t->repo_commits, entry, trc) {
731 TAILQ_REMOVE(&t->repo_commits, rc, entry);
732 gotweb_free_repo_commit(rc);
734 TAILQ_FOREACH_SAFE(rt, &t->repo_tags, entry, trt) {
735 TAILQ_REMOVE(&t->repo_tags, rt, entry);
736 gotweb_free_repo_tag(rt);
738 gotweb_free_repo_dir(t->repo_dir);
739 gotweb_free_querystring(t->qs);
744 got_object_blob_close(t->blob);
746 err = got_gotweb_flushfile(t->fp, t->fd);
748 log_warnx("%s: got_gotweb_flushfile failure: %s",
755 for (i = 0; i < t->nrepos; ++i)
763 gotweb_get_navs(struct request *c, struct gotweb_url *prev, int *have_prev,
764 struct gotweb_url *next, int *have_next)
766 struct transport *t = c->t;
767 struct querystring *qs = t->qs;
768 struct server *srv = c->srv;
770 *have_prev = *have_next = 0;
774 if (qs->index_page > 0) {
776 *prev = (struct gotweb_url){
778 .index_page = qs->index_page - 1,
782 if (t->next_disp == srv->max_repos_display &&
783 t->repos_total != (qs->index_page + 1) *
784 srv->max_repos_display) {
786 *next = (struct gotweb_url){
788 .index_page = qs->index_page + 1,
794 if (t->prev_id && qs->commit != NULL &&
795 strcmp(qs->commit, t->prev_id) != 0) {
797 *prev = (struct gotweb_url){
800 .page = qs->page - 1,
802 .commit = t->prev_id,
803 .headref = qs->headref,
808 *next = (struct gotweb_url){
811 .page = qs->page + 1,
813 .commit = t->next_id,
814 .headref = qs->headref,
822 gotweb_render_index(struct template *tp)
824 const struct got_error *error = NULL;
825 struct request *c = tp->tp_arg;
826 struct server *srv = c->srv;
827 struct transport *t = c->t;
828 struct querystring *qs = t->qs;
829 struct repo_dir *repo_dir = NULL;
830 struct dirent **sd_dent = t->repos;
831 unsigned int d_i, d_disp = 0;
832 unsigned int d_skipped = 0;
835 if (gotweb_render_repo_table_hdr(c->tp) == -1)
838 for (d_i = 0; d_i < t->nrepos; d_i++) {
839 if (srv->max_repos > 0 && t->prev_disp == srv->max_repos)
842 if (strcmp(sd_dent[d_i]->d_name, ".") == 0 ||
843 strcmp(sd_dent[d_i]->d_name, "..") == 0) {
848 error = got_path_dirent_type(&type, srv->repos_path,
852 if (type != DT_DIR) {
857 if (qs->index_page > 0 && (qs->index_page *
858 srv->max_repos_display) > t->prev_disp) {
863 error = gotweb_init_repo_dir(&repo_dir, sd_dent[d_i]->d_name);
867 error = gotweb_load_got_path(c, repo_dir);
868 if (error && error->code == GOT_ERR_LONELY_PACKIDX) {
869 if (error->code != GOT_ERR_NOT_GIT_REPO)
870 log_warnx("%s: %s: %s", __func__,
871 sd_dent[d_i]->d_name, error->msg);
872 gotweb_free_repo_dir(repo_dir);
881 r = gotweb_render_repo_fragment(c->tp, repo_dir);
882 gotweb_free_repo_dir(repo_dir);
887 if (d_disp == srv->max_repos_display)
890 t->repos_total = t->nrepos - d_skipped;
892 if (srv->max_repos_display == 0)
894 if (srv->max_repos > 0 && srv->max_repos < srv->max_repos_display)
896 if (t->repos_total <= srv->max_repos ||
897 t->repos_total <= srv->max_repos_display)
900 if (gotweb_render_navs(c->tp) == -1)
907 should_urlencode(int c)
909 if (c <= ' ' || c >= 127)
933 /* needed because the URLs are embedded into the HTML */
942 gotweb_urlencode(const char *str)
950 for (s = str; *s; ++s) {
952 if (should_urlencode(*s))
956 escaped = calloc(1, len + 1);
961 for (s = str; *s; ++s) {
962 if (should_urlencode(*s)) {
963 a = (*s & 0xF0) >> 4;
967 escaped[i++] = a <= 9 ? ('0' + a) : ('7' + a);
968 escaped[i++] = b <= 9 ? ('0' + b) : ('7' + b);
977 gotweb_action_name(int action)
1012 gotweb_render_url(struct request *c, struct gotweb_url *url)
1014 const char *sep = "?", *action;
1018 action = gotweb_action_name(url->action);
1019 if (action != NULL) {
1020 if (fcgi_printf(c, "?action=%s", action) == -1)
1026 if (fcgi_printf(c, "%scommit=%s", sep, url->commit) == -1)
1032 if (fcgi_printf(c, "%sprevid=%s", sep, url->previd) == -1)
1038 if (fcgi_printf(c, "%sprevset=%s", sep, url->prevset) == -1)
1044 tmp = gotweb_urlencode(url->file);
1047 r = fcgi_printf(c, "%sfile=%s", sep, tmp);
1055 tmp = gotweb_urlencode(url->folder);
1058 r = fcgi_printf(c, "%sfolder=%s", sep, tmp);
1066 tmp = gotweb_urlencode(url->headref);
1069 r = fcgi_printf(c, "%sheadref=%s", sep, url->headref);
1076 if (url->index_page != -1) {
1077 if (fcgi_printf(c, "%sindex_page=%d", sep,
1078 url->index_page) == -1)
1084 tmp = gotweb_urlencode(url->path);
1087 r = fcgi_printf(c, "%spath=%s", sep, tmp);
1094 if (url->page != -1) {
1095 if (fcgi_printf(c, "%spage=%d", sep, url->page) == -1)
1104 gotweb_render_absolute_url(struct request *c, struct gotweb_url *url)
1106 struct template *tp = c->tp;
1107 const char *proto = c->https ? "https" : "http";
1109 if (fcgi_puts(tp, proto) == -1 ||
1110 fcgi_puts(tp, "://") == -1 ||
1111 tp_htmlescape(tp, c->server_name) == -1 ||
1112 tp_htmlescape(tp, c->document_uri) == -1)
1115 return gotweb_render_url(c, url);
1118 static struct got_repository *
1119 find_cached_repo(struct server *srv, const char *path)
1123 for (i = 0; i < srv->ncached_repos; i++) {
1124 if (strcmp(srv->cached_repos[i].path, path) == 0)
1125 return srv->cached_repos[i].repo;
1131 static const struct got_error *
1132 cache_repo(struct got_repository **new, struct server *srv,
1133 struct repo_dir *repo_dir, struct socket *sock)
1135 const struct got_error *error = NULL;
1136 struct got_repository *repo;
1137 struct cached_repo *cr;
1140 if (srv->ncached_repos >= GOTWEBD_REPO_CACHESIZE) {
1141 cr = &srv->cached_repos[srv->ncached_repos - 1];
1142 error = got_repo_close(cr->repo);
1143 memset(cr, 0, sizeof(*cr));
1144 srv->ncached_repos--;
1147 memmove(&srv->cached_repos[1], &srv->cached_repos[0],
1148 srv->ncached_repos * sizeof(srv->cached_repos[0]));
1149 cr = &srv->cached_repos[0];
1152 cr = &srv->cached_repos[srv->ncached_repos];
1155 error = got_repo_open(&repo, repo_dir->path, NULL, sock->pack_fds);
1158 memmove(&srv->cached_repos[0], &srv->cached_repos[1],
1159 srv->ncached_repos * sizeof(srv->cached_repos[0]));
1164 if (strlcpy(cr->path, repo_dir->path, sizeof(cr->path))
1165 >= sizeof(cr->path)) {
1167 memmove(&srv->cached_repos[0], &srv->cached_repos[1],
1168 srv->ncached_repos * sizeof(srv->cached_repos[0]));
1170 return got_error(GOT_ERR_NO_SPACE);
1174 srv->ncached_repos++;
1179 static const struct got_error *
1180 gotweb_load_got_path(struct request *c, struct repo_dir *repo_dir)
1182 const struct got_error *error = NULL;
1183 struct socket *sock = c->sock;
1184 struct server *srv = c->srv;
1185 struct transport *t = c->t;
1186 struct got_repository *repo = NULL;
1190 if (asprintf(&dir_test, "%s/%s/%s", srv->repos_path, repo_dir->name,
1191 GOTWEB_GIT_DIR) == -1)
1192 return got_error_from_errno("asprintf");
1194 dt = opendir(dir_test);
1198 repo_dir->path = dir_test;
1203 if (asprintf(&dir_test, "%s/%s", srv->repos_path,
1204 repo_dir->name) == -1)
1205 return got_error_from_errno("asprintf");
1207 dt = opendir(dir_test);
1209 error = got_error_path(repo_dir->name, GOT_ERR_NOT_GIT_REPO);
1212 repo_dir->path = dir_test;
1217 if (srv->respect_exportok &&
1218 faccessat(dirfd(dt), "git-daemon-export-ok", F_OK, 0) == -1) {
1219 error = got_error_path(repo_dir->name, GOT_ERR_NOT_GIT_REPO);
1223 repo = find_cached_repo(srv, repo_dir->path);
1225 error = cache_repo(&repo, srv, repo_dir, sock);
1230 error = gotweb_get_repo_description(&repo_dir->description, srv,
1231 repo_dir->path, dirfd(dt));
1234 error = got_get_repo_owner(&repo_dir->owner, c);
1237 error = got_get_repo_age(&repo_dir->age, c, NULL);
1240 error = gotweb_get_clone_url(&repo_dir->url, srv, repo_dir->path,
1244 if (dt != NULL && closedir(dt) == EOF && error == NULL)
1245 error = got_error_from_errno("closedir");
1249 static const struct got_error *
1250 gotweb_init_repo_dir(struct repo_dir **repo_dir, const char *dir)
1252 const struct got_error *error;
1254 *repo_dir = calloc(1, sizeof(**repo_dir));
1255 if (*repo_dir == NULL)
1256 return got_error_from_errno("calloc");
1258 if (asprintf(&(*repo_dir)->name, "%s", dir) == -1) {
1259 error = got_error_from_errno("asprintf");
1264 (*repo_dir)->owner = NULL;
1265 (*repo_dir)->description = NULL;
1266 (*repo_dir)->url = NULL;
1267 (*repo_dir)->path = NULL;
1272 static const struct got_error *
1273 gotweb_get_repo_description(char **description, struct server *srv,
1274 const char *dirpath, int dir)
1276 const struct got_error *error = NULL;
1281 *description = NULL;
1282 if (srv->show_repo_description == 0)
1285 fd = openat(dir, "description", O_RDONLY);
1287 if (errno != ENOENT && errno != EACCES) {
1288 error = got_error_from_errno_fmt("openat %s/%s",
1289 dirpath, "description");
1294 if (fstat(fd, &sb) == -1) {
1295 error = got_error_from_errno_fmt("fstat %s/%s",
1296 dirpath, "description");
1301 if (len > GOTWEBD_MAXDESCRSZ - 1)
1302 len = GOTWEBD_MAXDESCRSZ - 1;
1304 *description = calloc(len + 1, sizeof(**description));
1305 if (*description == NULL) {
1306 error = got_error_from_errno("calloc");
1310 if (read(fd, *description, len) == -1)
1311 error = got_error_from_errno("read");
1313 if (fd != -1 && close(fd) == -1 && error == NULL)
1314 error = got_error_from_errno("close");
1318 static const struct got_error *
1319 gotweb_get_clone_url(char **url, struct server *srv, const char *dirpath,
1322 const struct got_error *error = NULL;
1328 if (srv->show_repo_cloneurl == 0)
1331 fd = openat(dir, "cloneurl", O_RDONLY);
1333 if (errno != ENOENT && errno != EACCES) {
1334 error = got_error_from_errno_fmt("openat %s/%s",
1335 dirpath, "cloneurl");
1340 if (fstat(fd, &sb) == -1) {
1341 error = got_error_from_errno_fmt("fstat %s/%s",
1342 dirpath, "cloneurl");
1347 if (len > GOTWEBD_MAXCLONEURLSZ - 1)
1348 len = GOTWEBD_MAXCLONEURLSZ - 1;
1350 *url = calloc(len + 1, sizeof(**url));
1352 error = got_error_from_errno("calloc");
1356 if (read(fd, *url, len) == -1)
1357 error = got_error_from_errno("read");
1359 if (fd != -1 && close(fd) == -1 && error == NULL)
1360 error = got_error_from_errno("close");
1365 gotweb_render_age(struct template *tp, time_t committer_time, int ref_tm)
1367 struct request *c = tp->tp_arg;
1369 long long diff_time;
1370 const char *years = "years ago", *months = "months ago";
1371 const char *weeks = "weeks ago", *days = "days ago";
1372 const char *hours = "hours ago", *minutes = "minutes ago";
1373 const char *seconds = "seconds ago", *now = "right now";
1380 diff_time = time(NULL) - committer_time;
1381 if (diff_time > 60 * 60 * 24 * 365 * 2) {
1382 if (fcgi_printf(c, "%lld %s",
1383 (diff_time / 60 / 60 / 24 / 365), years) == -1)
1385 } else if (diff_time > 60 * 60 * 24 * (365 / 12) * 2) {
1386 if (fcgi_printf(c, "%lld %s",
1387 (diff_time / 60 / 60 / 24 / (365 / 12)),
1390 } else if (diff_time > 60 * 60 * 24 * 7 * 2) {
1391 if (fcgi_printf(c, "%lld %s",
1392 (diff_time / 60 / 60 / 24 / 7), weeks) == -1)
1394 } else if (diff_time > 60 * 60 * 24 * 2) {
1395 if (fcgi_printf(c, "%lld %s",
1396 (diff_time / 60 / 60 / 24), days) == -1)
1398 } else if (diff_time > 60 * 60 * 2) {
1399 if (fcgi_printf(c, "%lld %s",
1400 (diff_time / 60 / 60), hours) == -1)
1402 } else if (diff_time > 60 * 2) {
1403 if (fcgi_printf(c, "%lld %s", (diff_time / 60),
1406 } else if (diff_time > 2) {
1407 if (fcgi_printf(c, "%lld %s", diff_time,
1411 if (fcgi_puts(tp, now) == -1)
1416 if (gmtime_r(&committer_time, &tm) == NULL)
1419 s = asctime_r(&tm, datebuf);
1423 if (fcgi_puts(tp, datebuf) == -1 ||
1424 fcgi_puts(tp, " UTC") == -1)
1428 if (gmtime_r(&committer_time, &tm) == NULL)
1431 r = strftime(datebuf, sizeof(datebuf),
1432 "%a, %d %b %Y %H:%M:%S GMT", &tm);
1436 if (fcgi_puts(tp, datebuf) == -1)