|
diff --git a/cache.c b/cache.c index 1ff1251..8df7c26 100644 --- a/ cache.c+++ b/ cache.c |
|
@@ -1,44 +1,60 @@ |
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 | |
10 | |
11 | const int NOLOCK = -1; |
11 | const int NOLOCK = -1; |
12 | |
12 | |
| |
13 | char *cache_safe_filename(const char *unsafe) |
| |
14 | { |
| |
15 | static char buf[PATH_MAX]; |
| |
16 | char *s = buf; |
| |
17 | char c; |
| |
18 | |
| |
19 | while(unsafe && (c = *unsafe++) != 0) { |
| |
20 | if (c == '/' || c == ' ' || c == '&' || c == '|' || |
| |
21 | c == '>' || c == '<' || c == '.') |
| |
22 | c = '_'; |
| |
23 | *s++ = c; |
| |
24 | } |
| |
25 | *s = '\0'; |
| |
26 | return buf; |
| |
27 | } |
| |
28 | |
13 | int cache_exist(struct cacheitem *item) |
29 | int cache_exist(struct cacheitem *item) |
14 | { |
30 | { |
15 | if (stat(item->name, &item->st)) { |
31 | if (stat(item->name, &item->st)) { |
16 | item->st.st_mtime = 0; |
32 | item->st.st_mtime = 0; |
17 | return 0; |
33 | return 0; |
18 | } |
34 | } |
19 | return 1; |
35 | return 1; |
20 | } |
36 | } |
21 | |
37 | |
22 | int cache_create_dirs() |
38 | int cache_create_dirs() |
23 | { |
39 | { |
24 | char *path; |
40 | char *path; |
25 | |
41 | |
26 | path = fmt("%s", cgit_cache_root); |
42 | path = fmt("%s", cgit_cache_root); |
27 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
43 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
28 | return 0; |
44 | return 0; |
29 | |
45 | |
30 | if (!cgit_query_repo) |
46 | if (!cgit_query_repo) |
31 | return 0; |
47 | return 0; |
32 | |
48 | |
33 | path = fmt("%s/%s", cgit_cache_root, cgit_query_repo); |
49 | path = fmt("%s/%s", cgit_cache_root, cgit_query_repo); |
34 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
50 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
35 | return 0; |
51 | return 0; |
36 | |
52 | |
37 | if (cgit_query_page) { |
53 | if (cgit_query_page) { |
38 | path = fmt("%s/%s/%s", cgit_cache_root, cgit_query_repo, |
54 | path = fmt("%s/%s/%s", cgit_cache_root, cgit_query_repo, |
39 | cgit_query_page); |
55 | cgit_query_page); |
40 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
56 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
41 | return 0; |
57 | return 0; |
42 | } |
58 | } |
43 | return 1; |
59 | return 1; |
44 | } |
60 | } |
|