diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-16 22:36:46 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-16 22:36:46 +0100 |
commit | f84a3ba77c61a351e1d7efb67bd40db23a435281 (patch) | |
tree | 83948f9074f2c761913cbb648f8b36bcdae43367 /src/util.c | |
parent | Major refactoring and some fixes (diff) | |
download | redshift-ng-f84a3ba77c61a351e1d7efb67bd40db23a435281.tar.gz redshift-ng-f84a3ba77c61a351e1d7efb67bd40db23a435281.tar.bz2 redshift-ng-f84a3ba77c61a351e1d7efb67bd40db23a435281.tar.xz |
Refactor
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 49 |
1 files changed, 34 insertions, 15 deletions
@@ -186,47 +186,66 @@ try_path_opendir(const struct env_path *path_spec, const char **path_out, char * } + +#ifndef WINDOWS int -pipe_nonblock(int pipefds[2]) +pipe_rdnonblock(int pipefds[2]) { -#ifdef WINDOWS - (void) pipefds; - return -1; -#else - int i, flags; + /* Try to use pipe2(2) create O_CLOEXEC pipe, preferably with O_DIRECT */ # if defined(__linux__) && !defined(MISSING_PIPE2) - if (!pipe2(pipefds, O_NONBLOCK)) { - return 0; + if (!pipe2(pipefds, O_CLOEXEC | O_DIRECT)) { + goto apply_nonblock; + } else if (errno == EINVAL) { + if (!pipe2(pipefds, O_CLOEXEC)) { + goto apply_nonblock; + } else if (errno != ENOSYS) { + weprintf("pipe2 <buffer> O_CLOEXEC:"); + return -1; + } } else if (errno != ENOSYS) { - weprintf("pipe2 <buffer> O_NONBLOCK:"); + weprintf("pipe2 <buffer> O_CLOEXEC|O_DIRECT:"); return -1; } # endif + /* Fallback for when pipe2(2) is not available (also indicates O_DIRECT cannot be used) */ if (pipe(pipefds)) { weprintf("pipe:"); return -1; } - for (i = 0; i < 2; i++) { - flags = fcntl(pipefds[0], F_GETFL); + flags = fcntl(pipefds[i], F_GETFD); if (flags == -1) { - weprintf("fcntl <pipe> F_GETFL:"); + weprintf("fcntl <pipe> F_GETFD:"); goto fail; } - if (fcntl(pipefds[0], F_SETFL, flags | O_NONBLOCK)) { - weprintf("fcntl <pipe> F_SETFL +O_NONBLOCK:"); + if (fcntl(pipefds[i], F_SETFD, flags | O_CLOEXEC)) { + weprintf("fcntl <pipe> F_SETFD +O_CLOEXEC:"); goto fail; } } + /* Make the read-end non-blocking */ +# if defined(__linux__) && !defined(MISSING_PIPE2) +apply_nonblock: +# endif + flags = fcntl(pipefds[0], F_GETFL); + if (flags == -1) { + weprintf("fcntl <pipe> F_GETFL:"); + goto fail; + } + if (fcntl(pipefds[0], F_SETFL, flags | O_NONBLOCK)) { + weprintf("fcntl <pipe> F_SETFL +O_NONBLOCK:"); + goto fail; + } + return 0; fail: close(pipefds[0]); close(pipefds[1]); return -1; -#endif } +#endif |