aboutgitcodebugslistschat
path: root/pasta.c
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2022-08-23 16:31:51 +1000
committerStefano Brivio <sbrivio@redhat.com>2022-08-24 18:01:48 +0200
commit60ffc5b6cb85e6fc7707f6b1d918c93b77a92f2c (patch)
tree00595ce3495820fd01f1ea4f0833bc247a2845d3 /pasta.c
parent42a60735e1a1ec9dd72b09bc9c926a4dbc0d8545 (diff)
downloadpasst-60ffc5b6cb85e6fc7707f6b1d918c93b77a92f2c.tar
passt-60ffc5b6cb85e6fc7707f6b1d918c93b77a92f2c.tar.gz
passt-60ffc5b6cb85e6fc7707f6b1d918c93b77a92f2c.tar.bz2
passt-60ffc5b6cb85e6fc7707f6b1d918c93b77a92f2c.tar.lz
passt-60ffc5b6cb85e6fc7707f6b1d918c93b77a92f2c.tar.xz
passt-60ffc5b6cb85e6fc7707f6b1d918c93b77a92f2c.tar.zst
passt-60ffc5b6cb85e6fc7707f6b1d918c93b77a92f2c.zip
Don't unnecessarily avoid CLOEXEC flags2022_08_24.60ffc5b
There are several places in the passt code where we have lint overrides because we're not adding CLOEXEC flags to open or other operations. Comments suggest this is because it's before we fork() into the background but we'll need those file descriptors after we're in the background. However, as the name suggests CLOEXEC closes on exec(), not on fork(). The only place we exec() is either super early invoke the avx2 version of the binary, or when we start a shell in pasta mode, which certainly *doesn't* require the fds in question. Add the CLOEXEC flag in those places, and remove the lint overrides. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'pasta.c')
-rw-r--r--pasta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pasta.c b/pasta.c
index 5a78065..830748f 100644
--- a/pasta.c
+++ b/pasta.c
@@ -223,7 +223,7 @@ void pasta_ns_conf(struct ctx *c)
*/
int pasta_netns_quit_init(struct ctx *c)
{
- int flags = O_NONBLOCK | (c->foreground ? O_CLOEXEC : 0);
+ int flags = O_NONBLOCK | O_CLOEXEC;
struct epoll_event ev = { .events = EPOLLIN };
int inotify_fd;