author | Lars Hjemli <hjemli@gmail.com> | 2009-08-18 15:17:41 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-08-18 15:22:14 (UTC) |
commit | e16f1783346a090e4ea1194dcaae7f03e813f6a2 (patch) (unidiff) | |
tree | 268f5ba231895ba3a63071497764c64d44733da5 | |
parent | 523c133e2e5f7089a3d18ac23f2074b60991a7f0 (diff) | |
download | cgit-e16f1783346a090e4ea1194dcaae7f03e813f6a2.zip cgit-e16f1783346a090e4ea1194dcaae7f03e813f6a2.tar.gz cgit-e16f1783346a090e4ea1194dcaae7f03e813f6a2.tar.bz2 |
Add and use a common readfile() function
This function is used to read the full content of a textfile into a
newly allocated buffer (with zerotermination).
It replaces the earlier readfile() in scan-tree.c (which was rather
error-prone[1]), and is reused by read_agefile() in ui-repolist.c.
1: No checks for EINTR and EAGAIN, fixed-size buffer
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.h | 1 | ||||
-rw-r--r-- | scan-tree.c | 16 | ||||
-rw-r--r-- | shared.c | 21 | ||||
-rw-r--r-- | ui-repolist.c | 19 |
4 files changed, 34 insertions, 23 deletions
@@ -222,66 +222,67 @@ struct cgit_environment { | |||
222 | 222 | ||
223 | struct cgit_context { | 223 | struct cgit_context { |
224 | struct cgit_environment env; | 224 | struct cgit_environment env; |
225 | struct cgit_query qry; | 225 | struct cgit_query qry; |
226 | struct cgit_config cfg; | 226 | struct cgit_config cfg; |
227 | struct cgit_repo *repo; | 227 | struct cgit_repo *repo; |
228 | struct cgit_page page; | 228 | struct cgit_page page; |
229 | }; | 229 | }; |
230 | 230 | ||
231 | struct cgit_snapshot_format { | 231 | struct cgit_snapshot_format { |
232 | const char *suffix; | 232 | const char *suffix; |
233 | const char *mimetype; | 233 | const char *mimetype; |
234 | write_archive_fn_t write_func; | 234 | write_archive_fn_t write_func; |
235 | int bit; | 235 | int bit; |
236 | }; | 236 | }; |
237 | 237 | ||
238 | extern const char *cgit_version; | 238 | extern const char *cgit_version; |
239 | 239 | ||
240 | extern struct cgit_repolist cgit_repolist; | 240 | extern struct cgit_repolist cgit_repolist; |
241 | extern struct cgit_context ctx; | 241 | extern struct cgit_context ctx; |
242 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; | 242 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
243 | 243 | ||
244 | extern struct cgit_repo *cgit_add_repo(const char *url); | 244 | extern struct cgit_repo *cgit_add_repo(const char *url); |
245 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); | 245 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
246 | extern void cgit_repo_config_cb(const char *name, const char *value); | 246 | extern void cgit_repo_config_cb(const char *name, const char *value); |
247 | 247 | ||
248 | extern int chk_zero(int result, char *msg); | 248 | extern int chk_zero(int result, char *msg); |
249 | extern int chk_positive(int result, char *msg); | 249 | extern int chk_positive(int result, char *msg); |
250 | extern int chk_non_negative(int result, char *msg); | 250 | extern int chk_non_negative(int result, char *msg); |
251 | 251 | ||
252 | extern char *trim_end(const char *str, char c); | 252 | extern char *trim_end(const char *str, char c); |
253 | extern char *strlpart(char *txt, int maxlen); | 253 | extern char *strlpart(char *txt, int maxlen); |
254 | extern char *strrpart(char *txt, int maxlen); | 254 | extern char *strrpart(char *txt, int maxlen); |
255 | 255 | ||
256 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); | 256 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
257 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, | 257 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
258 | int flags, void *cb_data); | 258 | int flags, void *cb_data); |
259 | 259 | ||
260 | extern void *cgit_free_commitinfo(struct commitinfo *info); | 260 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
261 | 261 | ||
262 | extern int cgit_diff_files(const unsigned char *old_sha1, | 262 | extern int cgit_diff_files(const unsigned char *old_sha1, |
263 | const unsigned char *new_sha1, | 263 | const unsigned char *new_sha1, |
264 | unsigned long *old_size, unsigned long *new_size, | 264 | unsigned long *old_size, unsigned long *new_size, |
265 | int *binary, linediff_fn fn); | 265 | int *binary, linediff_fn fn); |
266 | 266 | ||
267 | extern void cgit_diff_tree(const unsigned char *old_sha1, | 267 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
268 | const unsigned char *new_sha1, | 268 | const unsigned char *new_sha1, |
269 | filepair_fn fn, const char *prefix); | 269 | filepair_fn fn, const char *prefix); |
270 | 270 | ||
271 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); | 271 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
272 | 272 | ||
273 | extern char *fmt(const char *format,...); | 273 | extern char *fmt(const char *format,...); |
274 | 274 | ||
275 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); | 275 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
276 | extern struct taginfo *cgit_parse_tag(struct tag *tag); | 276 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
277 | extern void cgit_parse_url(const char *url); | 277 | extern void cgit_parse_url(const char *url); |
278 | 278 | ||
279 | extern const char *cgit_repobasename(const char *reponame); | 279 | extern const char *cgit_repobasename(const char *reponame); |
280 | 280 | ||
281 | extern int cgit_parse_snapshots_mask(const char *str); | 281 | extern int cgit_parse_snapshots_mask(const char *str); |
282 | 282 | ||
283 | extern int cgit_open_filter(struct cgit_filter *filter); | 283 | extern int cgit_open_filter(struct cgit_filter *filter); |
284 | extern int cgit_close_filter(struct cgit_filter *filter); | 284 | extern int cgit_close_filter(struct cgit_filter *filter); |
285 | 285 | ||
286 | extern int readfile(const char *path, char **buf, size_t *size); | ||
286 | 287 | ||
287 | #endif /* CGIT_H */ | 288 | #endif /* CGIT_H */ |
diff --git a/scan-tree.c b/scan-tree.c index 47f3988..95dc65b 100644 --- a/scan-tree.c +++ b/scan-tree.c | |||
@@ -1,137 +1,125 @@ | |||
1 | #include "cgit.h" | 1 | #include "cgit.h" |
2 | #include "html.h" | 2 | #include "html.h" |
3 | 3 | ||
4 | #define MAX_PATH 4096 | 4 | #define MAX_PATH 4096 |
5 | 5 | ||
6 | /* return 1 if path contains a objects/ directory and a HEAD file */ | 6 | /* return 1 if path contains a objects/ directory and a HEAD file */ |
7 | static int is_git_dir(const char *path) | 7 | static int is_git_dir(const char *path) |
8 | { | 8 | { |
9 | struct stat st; | 9 | struct stat st; |
10 | static char buf[MAX_PATH]; | 10 | static char buf[MAX_PATH]; |
11 | 11 | ||
12 | if (snprintf(buf, MAX_PATH, "%s/objects", path) >= MAX_PATH) { | 12 | if (snprintf(buf, MAX_PATH, "%s/objects", path) >= MAX_PATH) { |
13 | fprintf(stderr, "Insanely long path: %s\n", path); | 13 | fprintf(stderr, "Insanely long path: %s\n", path); |
14 | return 0; | 14 | return 0; |
15 | } | 15 | } |
16 | if (stat(buf, &st)) { | 16 | if (stat(buf, &st)) { |
17 | if (errno != ENOENT) | 17 | if (errno != ENOENT) |
18 | fprintf(stderr, "Error checking path %s: %s (%d)\n", | 18 | fprintf(stderr, "Error checking path %s: %s (%d)\n", |
19 | path, strerror(errno), errno); | 19 | path, strerror(errno), errno); |
20 | return 0; | 20 | return 0; |
21 | } | 21 | } |
22 | if (!S_ISDIR(st.st_mode)) | 22 | if (!S_ISDIR(st.st_mode)) |
23 | return 0; | 23 | return 0; |
24 | 24 | ||
25 | sprintf(buf, "%s/HEAD", path); | 25 | sprintf(buf, "%s/HEAD", path); |
26 | if (stat(buf, &st)) { | 26 | if (stat(buf, &st)) { |
27 | if (errno != ENOENT) | 27 | if (errno != ENOENT) |
28 | fprintf(stderr, "Error checking path %s: %s (%d)\n", | 28 | fprintf(stderr, "Error checking path %s: %s (%d)\n", |
29 | path, strerror(errno), errno); | 29 | path, strerror(errno), errno); |
30 | return 0; | 30 | return 0; |
31 | } | 31 | } |
32 | if (!S_ISREG(st.st_mode)) | 32 | if (!S_ISREG(st.st_mode)) |
33 | return 0; | 33 | return 0; |
34 | 34 | ||
35 | return 1; | 35 | return 1; |
36 | } | 36 | } |
37 | 37 | ||
38 | char *readfile(const char *path) | ||
39 | { | ||
40 | FILE *f; | ||
41 | static char buf[MAX_PATH]; | ||
42 | |||
43 | if (!(f = fopen(path, "r"))) | ||
44 | return NULL; | ||
45 | buf[0] = 0; | ||
46 | fgets(buf, MAX_PATH, f); | ||
47 | fclose(f); | ||
48 | return buf; | ||
49 | } | ||
50 | |||
51 | static void add_repo(const char *base, const char *path) | 38 | static void add_repo(const char *base, const char *path) |
52 | { | 39 | { |
53 | struct cgit_repo *repo; | 40 | struct cgit_repo *repo; |
54 | struct stat st; | 41 | struct stat st; |
55 | struct passwd *pwd; | 42 | struct passwd *pwd; |
56 | char *p; | 43 | char *p; |
44 | size_t size; | ||
57 | 45 | ||
58 | if (stat(path, &st)) { | 46 | if (stat(path, &st)) { |
59 | fprintf(stderr, "Error accessing %s: %s (%d)\n", | 47 | fprintf(stderr, "Error accessing %s: %s (%d)\n", |
60 | path, strerror(errno), errno); | 48 | path, strerror(errno), errno); |
61 | return; | 49 | return; |
62 | } | 50 | } |
63 | if ((pwd = getpwuid(st.st_uid)) == NULL) { | 51 | if ((pwd = getpwuid(st.st_uid)) == NULL) { |
64 | fprintf(stderr, "Error reading owner-info for %s: %s (%d)\n", | 52 | fprintf(stderr, "Error reading owner-info for %s: %s (%d)\n", |
65 | path, strerror(errno), errno); | 53 | path, strerror(errno), errno); |
66 | return; | 54 | return; |
67 | } | 55 | } |
68 | if (base == path) | 56 | if (base == path) |
69 | p = fmt("%s", path); | 57 | p = fmt("%s", path); |
70 | else | 58 | else |
71 | p = fmt("%s", path + strlen(base) + 1); | 59 | p = fmt("%s", path + strlen(base) + 1); |
72 | 60 | ||
73 | if (!strcmp(p + strlen(p) - 5, "/.git")) | 61 | if (!strcmp(p + strlen(p) - 5, "/.git")) |
74 | p[strlen(p) - 5] = '\0'; | 62 | p[strlen(p) - 5] = '\0'; |
75 | 63 | ||
76 | repo = cgit_add_repo(xstrdup(p)); | 64 | repo = cgit_add_repo(xstrdup(p)); |
77 | repo->name = repo->url; | 65 | repo->name = repo->url; |
78 | repo->path = xstrdup(path); | 66 | repo->path = xstrdup(path); |
79 | repo->owner = (pwd ? xstrdup(pwd->pw_gecos ? pwd->pw_gecos : pwd->pw_name) : ""); | 67 | repo->owner = (pwd ? xstrdup(pwd->pw_gecos ? pwd->pw_gecos : pwd->pw_name) : ""); |
80 | 68 | ||
81 | p = fmt("%s/description", path); | 69 | p = fmt("%s/description", path); |
82 | if (!stat(p, &st)) | 70 | if (!stat(p, &st)) |
83 | repo->desc = xstrdup(readfile(p)); | 71 | readfile(p, &repo->desc, &size); |
84 | 72 | ||
85 | p = fmt("%s/README.html", path); | 73 | p = fmt("%s/README.html", path); |
86 | if (!stat(p, &st)) | 74 | if (!stat(p, &st)) |
87 | repo->readme = "README.html"; | 75 | repo->readme = "README.html"; |
88 | } | 76 | } |
89 | 77 | ||
90 | static void scan_path(const char *base, const char *path) | 78 | static void scan_path(const char *base, const char *path) |
91 | { | 79 | { |
92 | DIR *dir; | 80 | DIR *dir; |
93 | struct dirent *ent; | 81 | struct dirent *ent; |
94 | char *buf; | 82 | char *buf; |
95 | struct stat st; | 83 | struct stat st; |
96 | 84 | ||
97 | if (is_git_dir(path)) { | 85 | if (is_git_dir(path)) { |
98 | add_repo(base, path); | 86 | add_repo(base, path); |
99 | return; | 87 | return; |
100 | } | 88 | } |
101 | dir = opendir(path); | 89 | dir = opendir(path); |
102 | if (!dir) { | 90 | if (!dir) { |
103 | fprintf(stderr, "Error opening directory %s: %s (%d)\n", | 91 | fprintf(stderr, "Error opening directory %s: %s (%d)\n", |
104 | path, strerror(errno), errno); | 92 | path, strerror(errno), errno); |
105 | return; | 93 | return; |
106 | } | 94 | } |
107 | while((ent = readdir(dir)) != NULL) { | 95 | while((ent = readdir(dir)) != NULL) { |
108 | if (ent->d_name[0] == '.') { | 96 | if (ent->d_name[0] == '.') { |
109 | if (ent->d_name[1] == '\0') | 97 | if (ent->d_name[1] == '\0') |
110 | continue; | 98 | continue; |
111 | if (ent->d_name[1] == '.' && ent->d_name[2] == '\0') | 99 | if (ent->d_name[1] == '.' && ent->d_name[2] == '\0') |
112 | continue; | 100 | continue; |
113 | } | 101 | } |
114 | buf = malloc(strlen(path) + strlen(ent->d_name) + 2); | 102 | buf = malloc(strlen(path) + strlen(ent->d_name) + 2); |
115 | if (!buf) { | 103 | if (!buf) { |
116 | fprintf(stderr, "Alloc error on %s: %s (%d)\n", | 104 | fprintf(stderr, "Alloc error on %s: %s (%d)\n", |
117 | path, strerror(errno), errno); | 105 | path, strerror(errno), errno); |
118 | exit(1); | 106 | exit(1); |
119 | } | 107 | } |
120 | sprintf(buf, "%s/%s", path, ent->d_name); | 108 | sprintf(buf, "%s/%s", path, ent->d_name); |
121 | if (stat(buf, &st)) { | 109 | if (stat(buf, &st)) { |
122 | fprintf(stderr, "Error checking path %s: %s (%d)\n", | 110 | fprintf(stderr, "Error checking path %s: %s (%d)\n", |
123 | buf, strerror(errno), errno); | 111 | buf, strerror(errno), errno); |
124 | free(buf); | 112 | free(buf); |
125 | continue; | 113 | continue; |
126 | } | 114 | } |
127 | if (S_ISDIR(st.st_mode)) | 115 | if (S_ISDIR(st.st_mode)) |
128 | scan_path(base, buf); | 116 | scan_path(base, buf); |
129 | free(buf); | 117 | free(buf); |
130 | } | 118 | } |
131 | closedir(dir); | 119 | closedir(dir); |
132 | } | 120 | } |
133 | 121 | ||
134 | void scan_tree(const char *path) | 122 | void scan_tree(const char *path) |
135 | { | 123 | { |
136 | scan_path(path, path); | 124 | scan_path(path, path); |
137 | } | 125 | } |
@@ -332,64 +332,85 @@ void cgit_diff_commit(struct commit *commit, filepair_fn fn) | |||
332 | cgit_diff_tree(old_sha1, commit->object.sha1, fn, NULL); | 332 | cgit_diff_tree(old_sha1, commit->object.sha1, fn, NULL); |
333 | } | 333 | } |
334 | 334 | ||
335 | int cgit_parse_snapshots_mask(const char *str) | 335 | int cgit_parse_snapshots_mask(const char *str) |
336 | { | 336 | { |
337 | const struct cgit_snapshot_format *f; | 337 | const struct cgit_snapshot_format *f; |
338 | static const char *delim = " \t,:/|;"; | 338 | static const char *delim = " \t,:/|;"; |
339 | int tl, sl, rv = 0; | 339 | int tl, sl, rv = 0; |
340 | 340 | ||
341 | /* favor legacy setting */ | 341 | /* favor legacy setting */ |
342 | if(atoi(str)) | 342 | if(atoi(str)) |
343 | return 1; | 343 | return 1; |
344 | for(;;) { | 344 | for(;;) { |
345 | str += strspn(str,delim); | 345 | str += strspn(str,delim); |
346 | tl = strcspn(str,delim); | 346 | tl = strcspn(str,delim); |
347 | if (!tl) | 347 | if (!tl) |
348 | break; | 348 | break; |
349 | for (f = cgit_snapshot_formats; f->suffix; f++) { | 349 | for (f = cgit_snapshot_formats; f->suffix; f++) { |
350 | sl = strlen(f->suffix); | 350 | sl = strlen(f->suffix); |
351 | if((tl == sl && !strncmp(f->suffix, str, tl)) || | 351 | if((tl == sl && !strncmp(f->suffix, str, tl)) || |
352 | (tl == sl-1 && !strncmp(f->suffix+1, str, tl-1))) { | 352 | (tl == sl-1 && !strncmp(f->suffix+1, str, tl-1))) { |
353 | rv |= f->bit; | 353 | rv |= f->bit; |
354 | break; | 354 | break; |
355 | } | 355 | } |
356 | } | 356 | } |
357 | str += tl; | 357 | str += tl; |
358 | } | 358 | } |
359 | return rv; | 359 | return rv; |
360 | } | 360 | } |
361 | 361 | ||
362 | int cgit_open_filter(struct cgit_filter *filter) | 362 | int cgit_open_filter(struct cgit_filter *filter) |
363 | { | 363 | { |
364 | 364 | ||
365 | filter->old_stdout = chk_positive(dup(STDOUT_FILENO), | 365 | filter->old_stdout = chk_positive(dup(STDOUT_FILENO), |
366 | "Unable to duplicate STDOUT"); | 366 | "Unable to duplicate STDOUT"); |
367 | chk_zero(pipe(filter->pipe_fh), "Unable to create pipe to subprocess"); | 367 | chk_zero(pipe(filter->pipe_fh), "Unable to create pipe to subprocess"); |
368 | filter->pid = chk_non_negative(fork(), "Unable to create subprocess"); | 368 | filter->pid = chk_non_negative(fork(), "Unable to create subprocess"); |
369 | if (filter->pid == 0) { | 369 | if (filter->pid == 0) { |
370 | close(filter->pipe_fh[1]); | 370 | close(filter->pipe_fh[1]); |
371 | chk_non_negative(dup2(filter->pipe_fh[0], STDIN_FILENO), | 371 | chk_non_negative(dup2(filter->pipe_fh[0], STDIN_FILENO), |
372 | "Unable to use pipe as STDIN"); | 372 | "Unable to use pipe as STDIN"); |
373 | execvp(filter->cmd, filter->argv); | 373 | execvp(filter->cmd, filter->argv); |
374 | die("Unable to exec subprocess %s: %s (%d)", filter->cmd, | 374 | die("Unable to exec subprocess %s: %s (%d)", filter->cmd, |
375 | strerror(errno), errno); | 375 | strerror(errno), errno); |
376 | } | 376 | } |
377 | close(filter->pipe_fh[0]); | 377 | close(filter->pipe_fh[0]); |
378 | chk_non_negative(dup2(filter->pipe_fh[1], STDOUT_FILENO), | 378 | chk_non_negative(dup2(filter->pipe_fh[1], STDOUT_FILENO), |
379 | "Unable to use pipe as STDOUT"); | 379 | "Unable to use pipe as STDOUT"); |
380 | close(filter->pipe_fh[1]); | 380 | close(filter->pipe_fh[1]); |
381 | return 0; | 381 | return 0; |
382 | } | 382 | } |
383 | 383 | ||
384 | int cgit_close_filter(struct cgit_filter *filter) | 384 | int cgit_close_filter(struct cgit_filter *filter) |
385 | { | 385 | { |
386 | chk_non_negative(dup2(filter->old_stdout, STDOUT_FILENO), | 386 | chk_non_negative(dup2(filter->old_stdout, STDOUT_FILENO), |
387 | "Unable to restore STDOUT"); | 387 | "Unable to restore STDOUT"); |
388 | close(filter->old_stdout); | 388 | close(filter->old_stdout); |
389 | if (filter->pid < 0) | 389 | if (filter->pid < 0) |
390 | return 0; | 390 | return 0; |
391 | waitpid(filter->pid, &filter->exitstatus, 0); | 391 | waitpid(filter->pid, &filter->exitstatus, 0); |
392 | if (WIFEXITED(filter->exitstatus) && !WEXITSTATUS(filter->exitstatus)) | 392 | if (WIFEXITED(filter->exitstatus) && !WEXITSTATUS(filter->exitstatus)) |
393 | return 0; | 393 | return 0; |
394 | die("Subprocess %s exited abnormally", filter->cmd); | 394 | die("Subprocess %s exited abnormally", filter->cmd); |
395 | } | 395 | } |
396 | |||
397 | /* Read the content of the specified file into a newly allocated buffer, | ||
398 | * zeroterminate the buffer and return 0 on success, errno otherwise. | ||
399 | */ | ||
400 | int readfile(const char *path, char **buf, size_t *size) | ||
401 | { | ||
402 | int fd; | ||
403 | struct stat st; | ||
404 | |||
405 | fd = open(path, O_RDONLY); | ||
406 | if (fd == -1) | ||
407 | return errno; | ||
408 | if (fstat(fd, &st)) | ||
409 | return errno; | ||
410 | if (!S_ISREG(st.st_mode)) | ||
411 | return EISDIR; | ||
412 | *buf = xmalloc(st.st_size + 1); | ||
413 | *size = read_in_full(fd, *buf, st.st_size); | ||
414 | (*buf)[*size] = '\0'; | ||
415 | return (*size == st.st_size ? 0 : errno); | ||
416 | } | ||
diff --git a/ui-repolist.c b/ui-repolist.c index 6d2f93f..7c7aa9b 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -1,97 +1,98 @@ | |||
1 | /* ui-repolist.c: functions for generating the repolist page | 1 | /* ui-repolist.c: functions for generating the repolist page |
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 | /* This is needed for strcasestr to be defined by <string.h> */ | 9 | /* This is needed for strcasestr to be defined by <string.h> */ |
10 | #define _GNU_SOURCE 1 | 10 | #define _GNU_SOURCE 1 |
11 | #include <string.h> | 11 | #include <string.h> |
12 | 12 | ||
13 | #include <time.h> | 13 | #include <time.h> |
14 | 14 | ||
15 | #include "cgit.h" | 15 | #include "cgit.h" |
16 | #include "html.h" | 16 | #include "html.h" |
17 | #include "ui-shared.h" | 17 | #include "ui-shared.h" |
18 | 18 | ||
19 | time_t read_agefile(char *path) | 19 | time_t read_agefile(char *path) |
20 | { | 20 | { |
21 | FILE *f; | 21 | time_t result; |
22 | static char buf[64], buf2[64]; | 22 | size_t size; |
23 | char *buf; | ||
24 | static char buf2[64]; | ||
23 | 25 | ||
24 | if (!(f = fopen(path, "r"))) | 26 | if (readfile(path, &buf, &size)) |
25 | return -1; | 27 | return -1; |
26 | buf[0] = 0; | 28 | |
27 | if (fgets(buf, sizeof(buf), f) == NULL) | ||
28 | return -1; | ||
29 | fclose(f); | ||
30 | if (parse_date(buf, buf2, sizeof(buf2))) | 29 | if (parse_date(buf, buf2, sizeof(buf2))) |
31 | return strtoul(buf2, NULL, 10); | 30 | result = strtoul(buf2, NULL, 10); |
32 | else | 31 | else |
33 | return 0; | 32 | result = 0; |
33 | free(buf); | ||
34 | return result; | ||
34 | } | 35 | } |
35 | 36 | ||
36 | static int get_repo_modtime(const struct cgit_repo *repo, time_t *mtime) | 37 | static int get_repo_modtime(const struct cgit_repo *repo, time_t *mtime) |
37 | { | 38 | { |
38 | char *path; | 39 | char *path; |
39 | struct stat s; | 40 | struct stat s; |
40 | struct cgit_repo *r = (struct cgit_repo *)repo; | 41 | struct cgit_repo *r = (struct cgit_repo *)repo; |
41 | 42 | ||
42 | if (repo->mtime != -1) { | 43 | if (repo->mtime != -1) { |
43 | *mtime = repo->mtime; | 44 | *mtime = repo->mtime; |
44 | return 1; | 45 | return 1; |
45 | } | 46 | } |
46 | path = fmt("%s/%s", repo->path, ctx.cfg.agefile); | 47 | path = fmt("%s/%s", repo->path, ctx.cfg.agefile); |
47 | if (stat(path, &s) == 0) { | 48 | if (stat(path, &s) == 0) { |
48 | *mtime = read_agefile(path); | 49 | *mtime = read_agefile(path); |
49 | r->mtime = *mtime; | 50 | r->mtime = *mtime; |
50 | return 1; | 51 | return 1; |
51 | } | 52 | } |
52 | 53 | ||
53 | path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch); | 54 | path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch); |
54 | if (stat(path, &s) == 0) | 55 | if (stat(path, &s) == 0) |
55 | *mtime = s.st_mtime; | 56 | *mtime = s.st_mtime; |
56 | else | 57 | else |
57 | *mtime = 0; | 58 | *mtime = 0; |
58 | 59 | ||
59 | r->mtime = *mtime; | 60 | r->mtime = *mtime; |
60 | return (r->mtime != 0); | 61 | return (r->mtime != 0); |
61 | } | 62 | } |
62 | 63 | ||
63 | static void print_modtime(struct cgit_repo *repo) | 64 | static void print_modtime(struct cgit_repo *repo) |
64 | { | 65 | { |
65 | time_t t; | 66 | time_t t; |
66 | if (get_repo_modtime(repo, &t)) | 67 | if (get_repo_modtime(repo, &t)) |
67 | cgit_print_age(t, -1, NULL); | 68 | cgit_print_age(t, -1, NULL); |
68 | } | 69 | } |
69 | 70 | ||
70 | int is_match(struct cgit_repo *repo) | 71 | int is_match(struct cgit_repo *repo) |
71 | { | 72 | { |
72 | if (!ctx.qry.search) | 73 | if (!ctx.qry.search) |
73 | return 1; | 74 | return 1; |
74 | if (repo->url && strcasestr(repo->url, ctx.qry.search)) | 75 | if (repo->url && strcasestr(repo->url, ctx.qry.search)) |
75 | return 1; | 76 | return 1; |
76 | if (repo->name && strcasestr(repo->name, ctx.qry.search)) | 77 | if (repo->name && strcasestr(repo->name, ctx.qry.search)) |
77 | return 1; | 78 | return 1; |
78 | if (repo->desc && strcasestr(repo->desc, ctx.qry.search)) | 79 | if (repo->desc && strcasestr(repo->desc, ctx.qry.search)) |
79 | return 1; | 80 | return 1; |
80 | if (repo->owner && strcasestr(repo->owner, ctx.qry.search)) | 81 | if (repo->owner && strcasestr(repo->owner, ctx.qry.search)) |
81 | return 1; | 82 | return 1; |
82 | return 0; | 83 | return 0; |
83 | } | 84 | } |
84 | 85 | ||
85 | int is_in_url(struct cgit_repo *repo) | 86 | int is_in_url(struct cgit_repo *repo) |
86 | { | 87 | { |
87 | if (!ctx.qry.url) | 88 | if (!ctx.qry.url) |
88 | return 1; | 89 | return 1; |
89 | if (repo->url && !prefixcmp(repo->url, ctx.qry.url)) | 90 | if (repo->url && !prefixcmp(repo->url, ctx.qry.url)) |
90 | return 1; | 91 | return 1; |
91 | return 0; | 92 | return 0; |
92 | } | 93 | } |
93 | 94 | ||
94 | void print_sort_header(const char *title, const char *sort) | 95 | void print_sort_header(const char *title, const char *sort) |
95 | { | 96 | { |
96 | htmlf("<th class='left'><a href='./?s=%s", sort); | 97 | htmlf("<th class='left'><a href='./?s=%s", sort); |
97 | if (ctx.qry.search) { | 98 | if (ctx.qry.search) { |