2006-12-10 22:41:14 +01:00
|
|
|
/* cache.c: cache management
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Lars Hjemli
|
|
|
|
*
|
|
|
|
* Licensed under GNU General Public License v2
|
|
|
|
* (see COPYING for full license text)
|
|
|
|
*/
|
|
|
|
|
2006-12-10 22:31:36 +01:00
|
|
|
#include "cgit.h"
|
2008-03-27 09:22:13 +01:00
|
|
|
#include "cache.h"
|
2006-12-10 22:31:36 +01:00
|
|
|
|
|
|
|
const int NOLOCK = -1;
|
|
|
|
|
2007-01-12 00:24:35 +01:00
|
|
|
char *cache_safe_filename(const char *unsafe)
|
|
|
|
{
|
2007-05-18 03:54:15 +02:00
|
|
|
static char buf[4][PATH_MAX];
|
|
|
|
static int bufidx;
|
|
|
|
char *s;
|
2007-01-12 00:24:35 +01:00
|
|
|
char c;
|
|
|
|
|
2007-05-18 03:54:15 +02:00
|
|
|
bufidx++;
|
|
|
|
bufidx &= 3;
|
|
|
|
s = buf[bufidx];
|
|
|
|
|
2007-01-12 00:24:35 +01:00
|
|
|
while(unsafe && (c = *unsafe++) != 0) {
|
2007-05-18 03:54:15 +02:00
|
|
|
if (c == '/' || c == ' ' || c == '&' || c == '|' ||
|
2007-01-12 00:24:35 +01:00
|
|
|
c == '>' || c == '<' || c == '.')
|
|
|
|
c = '_';
|
|
|
|
*s++ = c;
|
|
|
|
}
|
|
|
|
*s = '\0';
|
2007-05-18 03:54:15 +02:00
|
|
|
return buf[bufidx];
|
2007-01-12 00:24:35 +01:00
|
|
|
}
|
|
|
|
|
2006-12-11 09:57:58 +01:00
|
|
|
int cache_exist(struct cacheitem *item)
|
|
|
|
{
|
2006-12-10 22:31:36 +01:00
|
|
|
if (stat(item->name, &item->st)) {
|
|
|
|
item->st.st_mtime = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cache_create_dirs()
|
|
|
|
{
|
|
|
|
char *path;
|
|
|
|
|
2008-02-16 13:07:13 +01:00
|
|
|
path = fmt("%s", ctx.cfg.cache_root);
|
2006-12-16 13:55:58 +01:00
|
|
|
if (mkdir(path, S_IRWXU) && errno!=EEXIST)
|
|
|
|
return 0;
|
|
|
|
|
2008-02-16 13:56:09 +01:00
|
|
|
if (!ctx.repo)
|
2006-12-10 22:31:36 +01:00
|
|
|
return 0;
|
|
|
|
|
2008-02-16 13:07:13 +01:00
|
|
|
path = fmt("%s/%s", ctx.cfg.cache_root,
|
2008-02-16 13:56:09 +01:00
|
|
|
cache_safe_filename(ctx.repo->url));
|
2007-05-18 03:00:54 +02:00
|
|
|
|
2006-12-10 22:31:36 +01:00
|
|
|
if (mkdir(path, S_IRWXU) && errno!=EEXIST)
|
|
|
|
return 0;
|
|
|
|
|
2008-02-16 11:53:40 +01:00
|
|
|
if (ctx.qry.page) {
|
2008-02-16 13:07:13 +01:00
|
|
|
path = fmt("%s/%s/%s", ctx.cfg.cache_root,
|
2008-02-16 13:56:09 +01:00
|
|
|
cache_safe_filename(ctx.repo->url),
|
2008-02-16 11:53:40 +01:00
|
|
|
ctx.qry.page);
|
2006-12-10 22:31:36 +01:00
|
|
|
if (mkdir(path, S_IRWXU) && errno!=EEXIST)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-12-11 12:10:12 +01:00
|
|
|
int cache_refill_overdue(const char *lockfile)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (stat(lockfile, &st))
|
|
|
|
return 0;
|
|
|
|
else
|
2008-02-16 13:07:13 +01:00
|
|
|
return (time(NULL) - st.st_mtime > ctx.cfg.cache_max_create_time);
|
2006-12-11 12:10:12 +01:00
|
|
|
}
|
|
|
|
|
2006-12-10 22:31:36 +01:00
|
|
|
int cache_lock(struct cacheitem *item)
|
|
|
|
{
|
2006-12-11 12:10:12 +01:00
|
|
|
int i = 0;
|
2006-12-12 10:16:41 +01:00
|
|
|
char *lockfile = xstrdup(fmt("%s.lock", item->name));
|
2006-12-10 22:31:36 +01:00
|
|
|
|
2006-12-11 12:10:12 +01:00
|
|
|
top:
|
2008-02-16 13:07:13 +01:00
|
|
|
if (++i > ctx.cfg.max_lock_attempts)
|
2006-12-11 12:10:12 +01:00
|
|
|
die("cache_lock: unable to lock %s: %s",
|
|
|
|
item->name, strerror(errno));
|
|
|
|
|
|
|
|
item->fd = open(lockfile, O_WRONLY|O_CREAT|O_EXCL, S_IRUSR|S_IWUSR);
|
|
|
|
|
2006-12-10 22:31:36 +01:00
|
|
|
if (item->fd == NOLOCK && errno == ENOENT && cache_create_dirs())
|
|
|
|
goto top;
|
2006-12-11 12:10:12 +01:00
|
|
|
|
|
|
|
if (item->fd == NOLOCK && errno == EEXIST &&
|
|
|
|
cache_refill_overdue(lockfile) && !unlink(lockfile))
|
2006-12-10 22:31:36 +01:00
|
|
|
goto top;
|
2006-12-11 12:10:12 +01:00
|
|
|
|
2006-12-12 10:16:41 +01:00
|
|
|
free(lockfile);
|
2006-12-10 22:31:36 +01:00
|
|
|
return (item->fd > 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int cache_unlock(struct cacheitem *item)
|
|
|
|
{
|
|
|
|
close(item->fd);
|
|
|
|
return (rename(fmt("%s.lock", item->name), item->name) == 0);
|
|
|
|
}
|
|
|
|
|
2006-12-11 22:53:50 +01:00
|
|
|
int cache_cancel_lock(struct cacheitem *item)
|
|
|
|
{
|
|
|
|
return (unlink(fmt("%s.lock", item->name)) == 0);
|
|
|
|
}
|
|
|
|
|
2006-12-10 22:31:36 +01:00
|
|
|
int cache_expired(struct cacheitem *item)
|
|
|
|
{
|
|
|
|
if (item->ttl < 0)
|
|
|
|
return 0;
|
|
|
|
return item->st.st_mtime + item->ttl * 60 < time(NULL);
|
|
|
|
}
|