diff options
Diffstat (limited to 'shared.c')
-rw-r--r-- | shared.c | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/shared.c b/shared.c index cce0af4..4cb9573 100644 --- a/shared.c +++ b/shared.c | |||
@@ -62,6 +62,9 @@ struct cgit_repo *cgit_add_repo(const char *url) | |||
62 | ret->module_link = ctx.cfg.module_link; | 62 | ret->module_link = ctx.cfg.module_link; |
63 | ret->readme = NULL; | 63 | ret->readme = NULL; |
64 | ret->mtime = -1; | 64 | ret->mtime = -1; |
65 | ret->about_filter = ctx.cfg.about_filter; | ||
66 | ret->commit_filter = ctx.cfg.commit_filter; | ||
67 | ret->source_filter = ctx.cfg.source_filter; | ||
65 | return ret; | 68 | return ret; |
66 | } | 69 | } |
67 | 70 | ||
@@ -355,3 +358,59 @@ int cgit_parse_snapshots_mask(const char *str) | |||
355 | } | 358 | } |
356 | return rv; | 359 | return rv; |
357 | } | 360 | } |
361 | |||
362 | int cgit_open_filter(struct cgit_filter *filter) | ||
363 | { | ||
364 | |||
365 | filter->old_stdout = chk_positive(dup(STDOUT_FILENO), | ||
366 | "Unable to duplicate STDOUT"); | ||
367 | chk_zero(pipe(filter->pipe_fh), "Unable to create pipe to subprocess"); | ||
368 | filter->pid = chk_non_negative(fork(), "Unable to create subprocess"); | ||
369 | if (filter->pid == 0) { | ||
370 | close(filter->pipe_fh[1]); | ||
371 | chk_non_negative(dup2(filter->pipe_fh[0], STDIN_FILENO), | ||
372 | "Unable to use pipe as STDIN"); | ||
373 | execvp(filter->cmd, filter->argv); | ||
374 | die("Unable to exec subprocess %s: %s (%d)", filter->cmd, | ||
375 | strerror(errno), errno); | ||
376 | } | ||
377 | close(filter->pipe_fh[0]); | ||
378 | chk_non_negative(dup2(filter->pipe_fh[1], STDOUT_FILENO), | ||
379 | "Unable to use pipe as STDOUT"); | ||
380 | close(filter->pipe_fh[1]); | ||
381 | return 0; | ||
382 | } | ||
383 | |||
384 | int cgit_close_filter(struct cgit_filter *filter) | ||
385 | { | ||
386 | chk_non_negative(dup2(filter->old_stdout, STDOUT_FILENO), | ||
387 | "Unable to restore STDOUT"); | ||
388 | close(filter->old_stdout); | ||
389 | if (filter->pid < 0) | ||
390 | return 0; | ||
391 | waitpid(filter->pid, &filter->exitstatus, 0); | ||
392 | if (WIFEXITED(filter->exitstatus) && !WEXITSTATUS(filter->exitstatus)) | ||
393 | return 0; | ||
394 | die("Subprocess %s exited abnormally", filter->cmd); | ||
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 | } | ||