summaryrefslogtreecommitdiffabout
path: root/cache.c
Unidiff
Diffstat (limited to 'cache.c') (more/less context) (show whitespace changes)
-rw-r--r--cache.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cache.c b/cache.c
index 7860fc7..89f7ecd 100644
--- a/cache.c
+++ b/cache.c
@@ -1,57 +1,58 @@
1/* cache.c: cache management 1/* cache.c: cache management
2 * 2 *
3 * Copyright (C) 2006 Lars Hjemli 3 * Copyright (C) 2006 Lars Hjemli
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10#include "cache.h"
10 11
11const int NOLOCK = -1; 12const int NOLOCK = -1;
12 13
13char *cache_safe_filename(const char *unsafe) 14char *cache_safe_filename(const char *unsafe)
14{ 15{
15 static char buf[4][PATH_MAX]; 16 static char buf[4][PATH_MAX];
16 static int bufidx; 17 static int bufidx;
17 char *s; 18 char *s;
18 char c; 19 char c;
19 20
20 bufidx++; 21 bufidx++;
21 bufidx &= 3; 22 bufidx &= 3;
22 s = buf[bufidx]; 23 s = buf[bufidx];
23 24
24 while(unsafe && (c = *unsafe++) != 0) { 25 while(unsafe && (c = *unsafe++) != 0) {
25 if (c == '/' || c == ' ' || c == '&' || c == '|' || 26 if (c == '/' || c == ' ' || c == '&' || c == '|' ||
26 c == '>' || c == '<' || c == '.') 27 c == '>' || c == '<' || c == '.')
27 c = '_'; 28 c = '_';
28 *s++ = c; 29 *s++ = c;
29 } 30 }
30 *s = '\0'; 31 *s = '\0';
31 return buf[bufidx]; 32 return buf[bufidx];
32} 33}
33 34
34int cache_exist(struct cacheitem *item) 35int cache_exist(struct cacheitem *item)
35{ 36{
36 if (stat(item->name, &item->st)) { 37 if (stat(item->name, &item->st)) {
37 item->st.st_mtime = 0; 38 item->st.st_mtime = 0;
38 return 0; 39 return 0;
39 } 40 }
40 return 1; 41 return 1;
41} 42}
42 43
43int cache_create_dirs() 44int cache_create_dirs()
44{ 45{
45 char *path; 46 char *path;
46 47
47 path = fmt("%s", ctx.cfg.cache_root); 48 path = fmt("%s", ctx.cfg.cache_root);
48 if (mkdir(path, S_IRWXU) && errno!=EEXIST) 49 if (mkdir(path, S_IRWXU) && errno!=EEXIST)
49 return 0; 50 return 0;
50 51
51 if (!ctx.repo) 52 if (!ctx.repo)
52 return 0; 53 return 0;
53 54
54 path = fmt("%s/%s", ctx.cfg.cache_root, 55 path = fmt("%s/%s", ctx.cfg.cache_root,
55 cache_safe_filename(ctx.repo->url)); 56 cache_safe_filename(ctx.repo->url));
56 57
57 if (mkdir(path, S_IRWXU) && errno!=EEXIST) 58 if (mkdir(path, S_IRWXU) && errno!=EEXIST)