2 * Copyright (c) 2016, 2019, 2020-2022 Tracey Emery <tracey@traceyemery.net>
3 * Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org>
4 * Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
5 * Copyright (c) 2013 Florian Obser <florian@openbsd.org>
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #include <netinet/in.h>
22 #include <sys/queue.h>
30 #define dprintf(x...) do { log_debug(x); } while(0)
36 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
39 /* GOTWEBD DEFAULTS */
40 #define GOTWEBD_CONF "/etc/gotwebd.conf"
42 #define GOTWEBD_USER "www"
44 #define GOTWEBD_MAXDESCRSZ 1024
45 #define GOTWEBD_MAXCLONEURLSZ 1024
46 #define GOTWEBD_CACHESIZE 1024
47 #define GOTWEBD_MAXCLIENTS 1024
48 #define GOTWEBD_MAXTEXT 511
49 #define GOTWEBD_MAXNAME 64
50 #define GOTWEBD_MAXPORT 6
51 #define GOTWEBD_NUMPROC 3
52 #define GOTWEBD_MAXIFACE 16
53 #define GOTWEBD_REPO_CACHESIZE 4
56 #define MAX_QUERYSTRING 2048
57 #define MAX_DOCUMENT_URI 255
58 #define MAX_SERVER_NAME 255
60 #define GOTWEB_GIT_DIR ".git"
62 #define D_HTTPD_CHROOT "/var/www"
63 #define D_UNIX_SOCKET "/run/gotweb.sock"
64 #define D_FCGI_PORT "9000"
65 #define D_GOTPATH "/got/public"
66 #define D_SITENAME "Gotweb"
67 #define D_SITEOWNER "Got Owner"
68 #define D_SITELINK "Repos"
69 #define D_GOTLOGO "got.png"
70 #define D_GOTURL "https://gameoftrees.org"
71 #define D_GOTWEBCSS "gotweb.css"
73 #define D_SHOWROWNER 1
74 #define D_SHOWSOWNER 1
78 #define D_RESPECTEXPORTOK 0
80 #define D_MAXREPODISP 25
81 #define D_MAXSLCOMMDISP 10
82 #define D_MAXCOMMITDISP 25
86 #define TIMEOUT_DEFAULT 120
88 #define FCGI_CONTENT_SIZE 65535
89 #define FCGI_PADDING_SIZE 255
90 #define FCGI_RECORD_SIZE \
91 (sizeof(struct fcgi_record_header) + FCGI_CONTENT_SIZE + FCGI_PADDING_SIZE)
93 #define FCGI_ALIGNMENT 8
94 #define FCGI_ALIGN(n) \
95 (((n) + (FCGI_ALIGNMENT - 1)) & ~(FCGI_ALIGNMENT - 1))
100 #define FCGI_BEGIN_REQUEST 1
101 #define FCGI_ABORT_REQUEST 2
102 #define FCGI_END_REQUEST 3
103 #define FCGI_PARAMS 4
105 #define FCGI_STDOUT 6
106 #define FCGI_STDERR 7
108 #define FCGI_GET_VALUES 9
109 #define FCGI_GET_VALUES_RESULT 10
110 #define FCGI_UNKNOWN_TYPE 11
111 #define FCGI_MAXTYPE (FCGI_UNKNOWN_TYPE)
113 #define FCGI_REQUEST_COMPLETE 0
114 #define FCGI_CANT_MPX_CONN 1
115 #define FCGI_OVERLOADED 2
116 #define FCGI_UNKNOWN_ROLE 3
118 #define GOTWEB_PACK_NUM_TEMPFILES (32 * 2)
120 /* Forward declaration */
121 struct got_blob_object
;
122 struct got_tree_entry
;
123 struct got_reflist_head
;
126 IMSG_CFG_SRV
= IMSG_PROC_MAX
,
134 SLIST_ENTRY(env_val
) entry
;
137 SLIST_HEAD(env_head
, env_val
);
139 struct fcgi_record_header
{
143 uint16_t content_len
;
146 }__attribute__((__packed__
));
152 char datebuf
[11]; /* YYYY-MM-DD + NUL */
165 TAILQ_ENTRY(repo_tag
) entry
;
175 TAILQ_ENTRY(repo_commit
) entry
;
178 char *commit_id
; /* id_str1 */
179 char *parent_id
; /* id_str2 */
184 time_t committer_time
;
187 struct got_repository
;
189 TAILQ_HEAD(repo_commits_head
, repo_commit
) repo_commits
;
190 TAILQ_HEAD(repo_tags_head
, repo_tag
) repo_tags
;
191 struct got_reflist_head refs
;
192 struct got_repository
*repo
;
193 struct repo_dir
*repo_dir
;
194 struct querystring
*qs
;
198 unsigned int repos_total
;
199 unsigned int next_disp
;
200 unsigned int prev_disp
;
201 unsigned int tag_count
;
202 const struct got_error
*error
;
203 struct got_blob_object
*blob
;
206 struct dirent
**repos
;
210 enum socket_priv_fds
{
238 int priv_fd
[PRIV_FDS__MAX
];
240 uint8_t buf
[FCGI_RECORD_SIZE
];
244 uint8_t outbuf
[GOTWEBD_CACHESIZE
];
246 char querystring
[MAX_QUERYSTRING
];
247 char document_uri
[MAX_DOCUMENT_URI
];
248 char server_name
[MAX_SERVER_NAME
];
251 uint8_t request_started
;
254 struct fcgi_begin_request_body
{
258 }__attribute__((__packed__
));
260 struct fcgi_end_request_body
{
262 uint8_t protocol_status
;
264 }__attribute__((__packed__
));
267 TAILQ_ENTRY(address
) entry
;
268 struct sockaddr_storage ss
;
271 char ifname
[IFNAMSIZ
];
273 TAILQ_HEAD(addresslist
, address
);
277 struct got_repository
*repo
;
281 TAILQ_ENTRY(server
) entry
;
282 struct addresslist al
;
284 struct cached_repo
*cached_repos
;
287 char name
[GOTWEBD_MAXTEXT
];
289 char repos_path
[PATH_MAX
];
290 char site_name
[GOTWEBD_MAXNAME
];
291 char site_owner
[GOTWEBD_MAXNAME
];
292 char site_link
[GOTWEBD_MAXTEXT
];
293 char logo
[GOTWEBD_MAXTEXT
];
294 char logo_url
[GOTWEBD_MAXTEXT
];
295 char custom_css
[PATH_MAX
];
298 size_t max_repos_display
;
299 size_t max_commits_display
;
304 int show_repo_description
;
305 int show_repo_cloneurl
;
306 int respect_exportok
;
309 char unix_socket_name
[PATH_MAX
];
313 TAILQ_HEAD(serverlist
, server
);
323 char name
[GOTWEBD_MAXTEXT
];
324 char srv_name
[GOTWEBD_MAXTEXT
];
328 char unix_socket_name
[PATH_MAX
];
329 in_port_t fcgi_socket_port
;
333 TAILQ_ENTRY(socket
) entry
;
334 struct socket_conf conf
;
337 int pack_fds
[GOTWEB_PACK_NUM_TEMPFILES
];
338 int priv_fd
[PRIV_FDS__MAX
];
346 TAILQ_HEAD(socketlist
, socket
);
349 struct serverlist servers
;
350 struct socketlist sockets
;
352 struct privsep
*gotwebd_ps
;
353 const char *gotwebd_conffile
;
357 int gotwebd_noaction
;
359 uint16_t prefork_gotwebd
;
364 char httpd_chroot
[PATH_MAX
];
367 char unix_socket_name
[PATH_MAX
];
371 * URL parameter for gotweb_render_url. NULL values and int set to -1
372 * are implicitly ignored, and string are properly escaped.
400 struct querystring_keys
{
410 enum querystring_elements
{
440 extern struct gotwebd
*gotwebd_env
;
442 typedef int (*got_render_blame_line_cb
)(struct template *, const char *,
443 struct blame_line
*, int, int);
446 void sockets(struct privsep
*, struct privsep_proc
*);
447 void sockets_shutdown(void);
448 void sockets_parse_sockets(struct gotwebd
*);
449 void sockets_socket_accept(int, short, void *);
450 int sockets_privinit(struct gotwebd
*, struct socket
*);
453 void gotweb_get_navs(struct request
*, struct gotweb_url
*, int *,
454 struct gotweb_url
*, int *);
455 int gotweb_render_age(struct template *, time_t);
456 const struct got_error
*gotweb_init_transport(struct transport
**);
457 const char *gotweb_action_name(int);
458 int gotweb_render_url(struct request
*, struct gotweb_url
*);
459 int gotweb_render_absolute_url(struct request
*, struct gotweb_url
*);
460 void gotweb_free_repo_commit(struct repo_commit
*);
461 void gotweb_free_repo_tag(struct repo_tag
*);
462 void gotweb_process_request(struct request
*);
463 void gotweb_free_transport(struct transport
*);
466 int gotweb_render_page(struct template *, int (*)(struct template *));
467 int gotweb_render_error(struct template *);
468 int gotweb_render_repo_table_hdr(struct template *);
469 int gotweb_render_repo_fragment(struct template *, struct repo_dir
*);
470 int gotweb_render_briefs(struct template *);
471 int gotweb_render_navs(struct template *);
472 int gotweb_render_commits(struct template *);
473 int gotweb_render_blob(struct template *);
474 int gotweb_render_tree(struct template *);
475 int gotweb_render_tags(struct template *);
476 int gotweb_render_tag(struct template *);
477 int gotweb_render_diff(struct template *);
478 int gotweb_render_branches(struct template *, struct got_reflist_head
*);
479 int gotweb_render_summary(struct template *);
480 int gotweb_render_blame(struct template *);
481 int gotweb_render_rss(struct template *);
484 int parse_config(const char *, struct gotwebd
*);
485 int cmdline_symset(char *);
488 void fcgi_request(int, short, void *);
489 void fcgi_timeout(int, short, void *);
490 void fcgi_cleanup_request(struct request
*);
491 void fcgi_create_end_record(struct request
*);
492 void dump_fcgi_record(const char *, struct fcgi_record_header
*);
493 int fcgi_write(void *, const void *, size_t);
495 /* got_operations.c */
496 const struct got_error
*got_gotweb_closefile(FILE *);
497 const struct got_error
*got_get_repo_owner(char **, struct request
*);
498 const struct got_error
*got_get_repo_age(time_t *, struct request
*,
500 const struct got_error
*got_get_repo_commits(struct request
*, size_t);
501 const struct got_error
*got_get_repo_tags(struct request
*, size_t);
502 const struct got_error
*got_get_repo_heads(struct request
*);
503 const struct got_error
*got_open_diff_for_output(FILE **, struct request
*);
504 int got_output_repo_tree(struct request
*,
505 int (*)(struct template *, struct got_tree_entry
*));
506 const struct got_error
*got_open_blob_for_output(struct got_blob_object
**,
507 int *, int *, struct request
*);
508 int got_output_blob_by_lines(struct template *, struct got_blob_object
*,
509 int (*)(struct template *, const char *, size_t));
510 const struct got_error
*got_output_file_blame(struct request
*,
511 got_render_blame_line_cb
);
514 int config_setserver(struct gotwebd
*, struct server
*);
515 int config_getserver(struct gotwebd
*, struct imsg
*);
516 int config_setsock(struct gotwebd
*, struct socket
*);
517 int config_getsock(struct gotwebd
*, struct imsg
*);
518 int config_setfd(struct gotwebd
*, struct socket
*);
519 int config_getfd(struct gotwebd
*, struct imsg
*);
520 int config_getcfg(struct gotwebd
*, struct imsg
*);
521 int config_init(struct gotwebd
*);