2006-12-10 22:41:14 +01:00
|
|
|
/* cgit.c: cgi for the git scm
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Lars Hjemli
|
|
|
|
*
|
|
|
|
* Licensed under GNU General Public License v2
|
|
|
|
* (see COPYING for full license text)
|
|
|
|
*/
|
|
|
|
|
2006-12-09 15:18:17 +01:00
|
|
|
#include "cgit.h"
|
|
|
|
|
2006-12-10 23:50:16 +01:00
|
|
|
const char cgit_version[] = CGIT_VERSION;
|
|
|
|
|
2006-12-11 16:38:30 +01:00
|
|
|
static void cgit_print_repo_page(struct cacheitem *item)
|
2006-12-09 15:18:17 +01:00
|
|
|
{
|
2006-12-10 22:31:36 +01:00
|
|
|
if (chdir(fmt("%s/%s", cgit_root, cgit_query_repo)) ||
|
|
|
|
cgit_read_config("info/cgit", cgit_repo_config_cb)) {
|
2006-12-09 15:18:17 +01:00
|
|
|
char *title = fmt("%s - %s", cgit_root_title, "Bad request");
|
2006-12-11 16:38:30 +01:00
|
|
|
cgit_print_docstart(title, item);
|
2006-12-09 15:18:17 +01:00
|
|
|
cgit_print_pageheader(title);
|
2006-12-11 16:38:30 +01:00
|
|
|
cgit_print_error(fmt("Unable to scan repository: %s",
|
|
|
|
strerror(errno)));
|
2006-12-09 15:18:17 +01:00
|
|
|
cgit_print_docend();
|
|
|
|
return;
|
|
|
|
}
|
2006-12-10 22:31:36 +01:00
|
|
|
setenv("GIT_DIR", fmt("%s/%s", cgit_root, cgit_query_repo), 1);
|
2006-12-09 15:18:17 +01:00
|
|
|
char *title = fmt("%s - %s", cgit_repo_name, cgit_repo_desc);
|
2006-12-11 16:38:30 +01:00
|
|
|
cgit_print_docstart(title, item);
|
2006-12-09 15:18:17 +01:00
|
|
|
cgit_print_pageheader(title);
|
2006-12-13 00:13:27 +01:00
|
|
|
if (!cgit_query_page) {
|
2006-12-11 17:04:19 +01:00
|
|
|
cgit_print_summary();
|
2006-12-13 00:13:27 +01:00
|
|
|
} else if (!strcmp(cgit_query_page, "log")) {
|
2006-12-14 00:40:34 +01:00
|
|
|
cgit_print_log(cgit_query_head, cgit_query_ofs, 100);
|
2006-12-13 00:13:27 +01:00
|
|
|
} else if (!strcmp(cgit_query_page, "tree")) {
|
|
|
|
cgit_print_tree(cgit_query_sha1);
|
2006-12-16 00:19:56 +01:00
|
|
|
} else if (!strcmp(cgit_query_page, "commit")) {
|
|
|
|
cgit_print_commit(cgit_query_sha1);
|
2006-12-09 15:18:17 +01:00
|
|
|
} else if (!strcmp(cgit_query_page, "view")) {
|
2006-12-11 17:12:26 +01:00
|
|
|
cgit_print_view(cgit_query_sha1);
|
2006-12-09 15:18:17 +01:00
|
|
|
}
|
|
|
|
cgit_print_docend();
|
|
|
|
}
|
|
|
|
|
2006-12-10 22:31:36 +01:00
|
|
|
static void cgit_fill_cache(struct cacheitem *item)
|
2006-12-09 15:18:17 +01:00
|
|
|
{
|
2006-12-16 13:55:58 +01:00
|
|
|
static char buf[PATH_MAX];
|
|
|
|
|
|
|
|
getcwd(buf, sizeof(buf));
|
2006-12-10 22:31:36 +01:00
|
|
|
htmlfd = item->fd;
|
|
|
|
item->st.st_mtime = time(NULL);
|
2006-12-09 15:18:17 +01:00
|
|
|
if (cgit_query_repo)
|
2006-12-11 16:38:30 +01:00
|
|
|
cgit_print_repo_page(item);
|
2006-12-09 15:18:17 +01:00
|
|
|
else
|
2006-12-11 16:38:30 +01:00
|
|
|
cgit_print_repolist(item);
|
2006-12-16 13:55:58 +01:00
|
|
|
chdir(buf);
|
2006-12-10 22:31:36 +01:00
|
|
|
}
|
|
|
|
|
2006-12-11 17:25:41 +01:00
|
|
|
static void cgit_check_cache(struct cacheitem *item)
|
2006-12-10 22:31:36 +01:00
|
|
|
{
|
2006-12-11 12:10:12 +01:00
|
|
|
int i = 0;
|
|
|
|
|
2006-12-11 09:57:58 +01:00
|
|
|
cache_prepare(item);
|
2006-12-10 22:31:36 +01:00
|
|
|
top:
|
2006-12-11 12:10:12 +01:00
|
|
|
if (++i > cgit_max_lock_attempts) {
|
|
|
|
die("cgit_refresh_cache: unable to lock %s: %s",
|
|
|
|
item->name, strerror(errno));
|
|
|
|
}
|
2006-12-11 09:57:58 +01:00
|
|
|
if (!cache_exist(item)) {
|
|
|
|
if (!cache_lock(item)) {
|
2006-12-11 12:10:12 +01:00
|
|
|
sleep(1);
|
2006-12-10 22:31:36 +01:00
|
|
|
goto top;
|
|
|
|
}
|
2006-12-11 22:53:50 +01:00
|
|
|
if (!cache_exist(item)) {
|
2006-12-10 22:31:36 +01:00
|
|
|
cgit_fill_cache(item);
|
2006-12-11 22:53:50 +01:00
|
|
|
cache_unlock(item);
|
|
|
|
} else {
|
|
|
|
cache_cancel_lock(item);
|
|
|
|
}
|
2006-12-11 09:57:58 +01:00
|
|
|
} else if (cache_expired(item) && cache_lock(item)) {
|
2006-12-11 22:53:50 +01:00
|
|
|
if (cache_expired(item)) {
|
2006-12-11 09:57:58 +01:00
|
|
|
cgit_fill_cache(item);
|
2006-12-11 22:53:50 +01:00
|
|
|
cache_unlock(item);
|
|
|
|
} else {
|
|
|
|
cache_cancel_lock(item);
|
|
|
|
}
|
2006-12-10 22:31:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cgit_print_cache(struct cacheitem *item)
|
|
|
|
{
|
|
|
|
static char buf[4096];
|
|
|
|
ssize_t i;
|
|
|
|
|
|
|
|
int fd = open(item->name, O_RDONLY);
|
|
|
|
if (fd<0)
|
|
|
|
die("Unable to open cached file %s", item->name);
|
|
|
|
|
|
|
|
while((i=read(fd, buf, sizeof(buf))) > 0)
|
|
|
|
write(STDOUT_FILENO, buf, i);
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
2006-12-16 13:33:32 +01:00
|
|
|
static void cgit_parse_args(int argc, const char **argv)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
if (!strncmp(argv[i], "--root=", 7)) {
|
|
|
|
cgit_root = xstrdup(argv[i]+7);
|
|
|
|
}
|
|
|
|
if (!strncmp(argv[i], "--cache=", 8)) {
|
|
|
|
cgit_cache_root = xstrdup(argv[i]+8);
|
|
|
|
}
|
|
|
|
if (!strcmp(argv[i], "--nocache")) {
|
|
|
|
cgit_nocache = 1;
|
|
|
|
}
|
|
|
|
if (!strncmp(argv[i], "--query=", 8)) {
|
|
|
|
cgit_querystring = xstrdup(argv[i]+8);
|
|
|
|
}
|
|
|
|
if (!strncmp(argv[i], "--repo=", 7)) {
|
|
|
|
cgit_query_repo = xstrdup(argv[i]+7);
|
|
|
|
}
|
|
|
|
if (!strncmp(argv[i], "--page=", 7)) {
|
|
|
|
cgit_query_page = xstrdup(argv[i]+7);
|
|
|
|
}
|
|
|
|
if (!strncmp(argv[i], "--head=", 7)) {
|
|
|
|
cgit_query_head = xstrdup(argv[i]+7);
|
|
|
|
cgit_query_has_symref = 1;
|
|
|
|
}
|
|
|
|
if (!strncmp(argv[i], "--sha1=", 7)) {
|
|
|
|
cgit_query_sha1 = xstrdup(argv[i]+7);
|
|
|
|
cgit_query_has_sha1 = 1;
|
|
|
|
}
|
|
|
|
if (!strncmp(argv[i], "--ofs=", 6)) {
|
|
|
|
cgit_query_ofs = atoi(argv[i]+6);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-10 22:31:36 +01:00
|
|
|
int main(int argc, const char **argv)
|
|
|
|
{
|
2006-12-11 17:25:41 +01:00
|
|
|
struct cacheitem item;
|
|
|
|
|
2006-12-10 22:31:36 +01:00
|
|
|
cgit_read_config("/etc/cgitrc", cgit_global_config_cb);
|
2006-12-16 13:33:32 +01:00
|
|
|
if (getenv("QUERY_STRING"))
|
|
|
|
cgit_querystring = xstrdup(getenv("QUERY_STRING"));
|
|
|
|
cgit_parse_args(argc, argv);
|
2006-12-10 22:31:36 +01:00
|
|
|
cgit_parse_query(cgit_querystring, cgit_querystring_cb);
|
2006-12-11 17:25:41 +01:00
|
|
|
|
2006-12-16 13:33:32 +01:00
|
|
|
if (cgit_nocache) {
|
|
|
|
item.fd = STDOUT_FILENO;
|
|
|
|
cgit_fill_cache(&item);
|
|
|
|
} else {
|
|
|
|
cgit_check_cache(&item);
|
|
|
|
cgit_print_cache(&item);
|
|
|
|
}
|
2006-12-09 15:18:17 +01:00
|
|
|
return 0;
|
|
|
|
}
|