author | Lars Hjemli <hjemli@gmail.com> | 2007-01-11 23:24:35 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-01-11 23:24:35 (UTC) |
commit | 2c2047ff67a1e0053f95776e5079e432f69cea54 (patch) (unidiff) | |
tree | 0572bd25c3f7ef43494664cca750c940c9e93ef1 | |
parent | 83a5f35a2724ee60bfd8c5679b98da7008272254 (diff) | |
download | cgit-2c2047ff67a1e0053f95776e5079e432f69cea54.zip cgit-2c2047ff67a1e0053f95776e5079e432f69cea54.tar.gz cgit-2c2047ff67a1e0053f95776e5079e432f69cea54.tar.bz2 |
Remove troublesome chars from cachefile names
Add a funtion cache_safe_filename() which replaces possibly bad filename
characters with '_'.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cache.c | 16 | ||||
-rw-r--r-- | cgit.c | 2 | ||||
-rw-r--r-- | cgit.h | 1 |
3 files changed, 18 insertions, 1 deletions
@@ -1,24 +1,40 @@ | |||
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; |
@@ -13,25 +13,25 @@ const char cgit_version[] = CGIT_VERSION; | |||
13 | static void cgit_prepare_cache(struct cacheitem *item) | 13 | static void cgit_prepare_cache(struct cacheitem *item) |
14 | { | 14 | { |
15 | if (!cgit_query_repo) { | 15 | if (!cgit_query_repo) { |
16 | item->name = xstrdup(fmt("%s/index.html", cgit_cache_root)); | 16 | item->name = xstrdup(fmt("%s/index.html", cgit_cache_root)); |
17 | item->ttl = cgit_cache_root_ttl; | 17 | item->ttl = cgit_cache_root_ttl; |
18 | } else if (!cgit_query_page) { | 18 | } else if (!cgit_query_page) { |
19 | item->name = xstrdup(fmt("%s/%s/index.html", cgit_cache_root, | 19 | item->name = xstrdup(fmt("%s/%s/index.html", cgit_cache_root, |
20 | cgit_query_repo)); | 20 | cgit_query_repo)); |
21 | item->ttl = cgit_cache_repo_ttl; | 21 | item->ttl = cgit_cache_repo_ttl; |
22 | } else { | 22 | } else { |
23 | item->name = xstrdup(fmt("%s/%s/%s/%s.html", cgit_cache_root, | 23 | item->name = xstrdup(fmt("%s/%s/%s/%s.html", cgit_cache_root, |
24 | cgit_query_repo, cgit_query_page, | 24 | cgit_query_repo, cgit_query_page, |
25 | cgit_querystring)); | 25 | cache_safe_filename(cgit_querystring))); |
26 | if (cgit_query_has_symref) | 26 | if (cgit_query_has_symref) |
27 | item->ttl = cgit_cache_dynamic_ttl; | 27 | item->ttl = cgit_cache_dynamic_ttl; |
28 | else if (cgit_query_has_sha1) | 28 | else if (cgit_query_has_sha1) |
29 | item->ttl = cgit_cache_static_ttl; | 29 | item->ttl = cgit_cache_static_ttl; |
30 | else | 30 | else |
31 | item->ttl = cgit_cache_repo_ttl; | 31 | item->ttl = cgit_cache_repo_ttl; |
32 | } | 32 | } |
33 | } | 33 | } |
34 | 34 | ||
35 | static void cgit_print_repo_page(struct cacheitem *item) | 35 | static void cgit_print_repo_page(struct cacheitem *item) |
36 | { | 36 | { |
37 | if (chdir(fmt("%s/%s", cgit_root, cgit_query_repo)) || | 37 | if (chdir(fmt("%s/%s", cgit_root, cgit_query_repo)) || |
@@ -78,24 +78,25 @@ extern void htmlf(const char *format,...); | |||
78 | extern void html_txt(char *txt); | 78 | extern void html_txt(char *txt); |
79 | extern void html_ntxt(int len, char *txt); | 79 | extern void html_ntxt(int len, char *txt); |
80 | extern void html_attr(char *txt); | 80 | extern void html_attr(char *txt); |
81 | extern void html_hidden(char *name, char *value); | 81 | extern void html_hidden(char *name, char *value); |
82 | extern void html_link_open(char *url, char *title, char *class); | 82 | extern void html_link_open(char *url, char *title, char *class); |
83 | extern void html_link_close(void); | 83 | extern void html_link_close(void); |
84 | extern void html_filemode(unsigned short mode); | 84 | extern void html_filemode(unsigned short mode); |
85 | 85 | ||
86 | extern int cgit_read_config(const char *filename, configfn fn); | 86 | extern int cgit_read_config(const char *filename, configfn fn); |
87 | extern int cgit_parse_query(char *txt, configfn fn); | 87 | extern int cgit_parse_query(char *txt, configfn fn); |
88 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); | 88 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
89 | 89 | ||
90 | extern char *cache_safe_filename(const char *unsafe); | ||
90 | extern int cache_lock(struct cacheitem *item); | 91 | extern int cache_lock(struct cacheitem *item); |
91 | extern int cache_unlock(struct cacheitem *item); | 92 | extern int cache_unlock(struct cacheitem *item); |
92 | extern int cache_cancel_lock(struct cacheitem *item); | 93 | extern int cache_cancel_lock(struct cacheitem *item); |
93 | extern int cache_exist(struct cacheitem *item); | 94 | extern int cache_exist(struct cacheitem *item); |
94 | extern int cache_expired(struct cacheitem *item); | 95 | extern int cache_expired(struct cacheitem *item); |
95 | 96 | ||
96 | extern char *cgit_repourl(const char *reponame); | 97 | extern char *cgit_repourl(const char *reponame); |
97 | extern char *cgit_pageurl(const char *reponame, const char *pagename, | 98 | extern char *cgit_pageurl(const char *reponame, const char *pagename, |
98 | const char *query); | 99 | const char *query); |
99 | 100 | ||
100 | extern void cgit_print_error(char *msg); | 101 | extern void cgit_print_error(char *msg); |
101 | extern void cgit_print_date(unsigned long secs); | 102 | extern void cgit_print_date(unsigned long secs); |