* [PATCH v6 1/5] qemu/osdep: Move close_all_open_fds() to oslib-posix
2024-07-30 12:24 [PATCH v6 0/5] qemu/osdep: add a qemu_close_all_open_fd() helper Clément Léger
@ 2024-07-30 12:24 ` Clément Léger
2024-07-30 16:10 ` Philippe Mathieu-Daudé
2024-07-31 1:54 ` Richard Henderson
2024-07-30 12:24 ` [PATCH v6 2/5] qemu/osdep: Split qemu_close_all_open_fd() and add fallback Clément Léger
` (3 subsequent siblings)
4 siblings, 2 replies; 13+ messages in thread
From: Clément Léger @ 2024-07-30 12:24 UTC (permalink / raw)
To: qemu-devel
Cc: Clément Léger, Daniel P. Berrangé, Peter Maydell,
Jason Wang, Richard Henderson, Philippe Mathieu-Daudé
Move close_all_open_fds() in oslib-posix, rename it
qemu_close_all_open_fds() and export it.
Signed-off-by: Clément Léger <cleger@rivosinc.com>
---
include/qemu/osdep.h | 7 +++++++
system/async-teardown.c | 37 +------------------------------------
util/oslib-posix.c | 34 ++++++++++++++++++++++++++++++++++
3 files changed, 42 insertions(+), 36 deletions(-)
diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h
index 191916f38e..5cd8517380 100644
--- a/include/qemu/osdep.h
+++ b/include/qemu/osdep.h
@@ -757,6 +757,13 @@ static inline void qemu_reset_optind(void)
int qemu_fdatasync(int fd);
+/**
+ * qemu_close_all_open_fd:
+ *
+ * Close all open file descriptors
+ */
+void qemu_close_all_open_fd(void);
+
/**
* Sync changes made to the memory mapped file back to the backing
* storage. For POSIX compliant systems this will fallback
diff --git a/system/async-teardown.c b/system/async-teardown.c
index 396963c091..edf49e1007 100644
--- a/system/async-teardown.c
+++ b/system/async-teardown.c
@@ -26,40 +26,6 @@
static pid_t the_ppid;
-/*
- * Close all open file descriptors.
- */
-static void close_all_open_fd(void)
-{
- struct dirent *de;
- int fd, dfd;
- DIR *dir;
-
-#ifdef CONFIG_CLOSE_RANGE
- int r = close_range(0, ~0U, 0);
- if (!r) {
- /* Success, no need to try other ways. */
- return;
- }
-#endif
-
- dir = opendir("/proc/self/fd");
- if (!dir) {
- /* If /proc is not mounted, there is nothing that can be done. */
- return;
- }
- /* Avoid closing the directory. */
- dfd = dirfd(dir);
-
- for (de = readdir(dir); de; de = readdir(dir)) {
- fd = atoi(de->d_name);
- if (fd != dfd) {
- close(fd);
- }
- }
- closedir(dir);
-}
-
static void hup_handler(int signal)
{
/* Check every second if this process has been reparented. */
@@ -85,9 +51,8 @@ static int async_teardown_fn(void *arg)
/*
* Close all file descriptors that might have been inherited from the
* main qemu process when doing clone, needed to make libvirt happy.
- * Not using close_range for increased compatibility with older kernels.
*/
- close_all_open_fd();
+ qemu_close_all_open_fd();
/* Set up a handler for SIGHUP and unblock SIGHUP. */
sigaction(SIGHUP, &sa, NULL);
diff --git a/util/oslib-posix.c b/util/oslib-posix.c
index b090fe0eed..1e867efa47 100644
--- a/util/oslib-posix.c
+++ b/util/oslib-posix.c
@@ -807,3 +807,37 @@ int qemu_msync(void *addr, size_t length, int fd)
return msync(addr, length, MS_SYNC);
}
+
+/*
+ * Close all open file descriptors.
+ */
+void qemu_close_all_open_fd(void)
+{
+ struct dirent *de;
+ int fd, dfd;
+ DIR *dir;
+
+#ifdef CONFIG_CLOSE_RANGE
+ int r = close_range(0, ~0U, 0);
+ if (!r) {
+ /* Success, no need to try other ways. */
+ return;
+ }
+#endif
+
+ dir = opendir("/proc/self/fd");
+ if (!dir) {
+ /* If /proc is not mounted, there is nothing that can be done. */
+ return;
+ }
+ /* Avoid closing the directory. */
+ dfd = dirfd(dir);
+
+ for (de = readdir(dir); de; de = readdir(dir)) {
+ fd = atoi(de->d_name);
+ if (fd != dfd) {
+ close(fd);
+ }
+ }
+ closedir(dir);
+}
--
2.45.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v6 1/5] qemu/osdep: Move close_all_open_fds() to oslib-posix
2024-07-30 12:24 ` [PATCH v6 1/5] qemu/osdep: Move close_all_open_fds() to oslib-posix Clément Léger
@ 2024-07-30 16:10 ` Philippe Mathieu-Daudé
2024-07-31 1:54 ` Richard Henderson
1 sibling, 0 replies; 13+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-07-30 16:10 UTC (permalink / raw)
To: Clément Léger, qemu-devel
Cc: Daniel P. Berrangé, Peter Maydell, Jason Wang,
Richard Henderson
On 30/7/24 14:24, Clément Léger wrote:
> Move close_all_open_fds() in oslib-posix, rename it
> qemu_close_all_open_fds() and export it.
>
> Signed-off-by: Clément Léger <cleger@rivosinc.com>
> ---
> include/qemu/osdep.h | 7 +++++++
> system/async-teardown.c | 37 +------------------------------------
> util/oslib-posix.c | 34 ++++++++++++++++++++++++++++++++++
> 3 files changed, 42 insertions(+), 36 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v6 1/5] qemu/osdep: Move close_all_open_fds() to oslib-posix
2024-07-30 12:24 ` [PATCH v6 1/5] qemu/osdep: Move close_all_open_fds() to oslib-posix Clément Léger
2024-07-30 16:10 ` Philippe Mathieu-Daudé
@ 2024-07-31 1:54 ` Richard Henderson
1 sibling, 0 replies; 13+ messages in thread
From: Richard Henderson @ 2024-07-31 1:54 UTC (permalink / raw)
To: Clément Léger, qemu-devel
Cc: Daniel P. Berrangé, Peter Maydell, Jason Wang,
Philippe Mathieu-Daudé
On 7/30/24 22:24, Clément Léger wrote:
> Move close_all_open_fds() in oslib-posix, rename it
> qemu_close_all_open_fds() and export it.
>
> Signed-off-by: Clément Léger<cleger@rivosinc.com>
> ---
> include/qemu/osdep.h | 7 +++++++
> system/async-teardown.c | 37 +------------------------------------
> util/oslib-posix.c | 34 ++++++++++++++++++++++++++++++++++
> 3 files changed, 42 insertions(+), 36 deletions(-)
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
r~
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v6 2/5] qemu/osdep: Split qemu_close_all_open_fd() and add fallback
2024-07-30 12:24 [PATCH v6 0/5] qemu/osdep: add a qemu_close_all_open_fd() helper Clément Léger
2024-07-30 12:24 ` [PATCH v6 1/5] qemu/osdep: Move close_all_open_fds() to oslib-posix Clément Léger
@ 2024-07-30 12:24 ` Clément Léger
2024-07-31 1:56 ` Richard Henderson
2024-07-30 12:24 ` [PATCH v6 3/5] net/tap: Factorize fd closing after forking Clément Léger
` (2 subsequent siblings)
4 siblings, 1 reply; 13+ messages in thread
From: Clément Léger @ 2024-07-30 12:24 UTC (permalink / raw)
To: qemu-devel
Cc: Clément Léger, Daniel P. Berrangé, Peter Maydell,
Jason Wang, Richard Henderson, Philippe Mathieu-Daudé
In order to make it cleaner, split qemu_close_all_open_fd() logic into
multiple subfunctions (close with close_range(), with /proc/self/fd and
fallback).
Signed-off-by: Clément Léger <cleger@rivosinc.com>
---
util/oslib-posix.c | 51 ++++++++++++++++++++++++++++++++++------------
1 file changed, 38 insertions(+), 13 deletions(-)
diff --git a/util/oslib-posix.c b/util/oslib-posix.c
index 1e867efa47..a6749d9f9b 100644
--- a/util/oslib-posix.c
+++ b/util/oslib-posix.c
@@ -808,27 +808,16 @@ int qemu_msync(void *addr, size_t length, int fd)
return msync(addr, length, MS_SYNC);
}
-/*
- * Close all open file descriptors.
- */
-void qemu_close_all_open_fd(void)
+static bool qemu_close_all_open_fd_proc(void)
{
struct dirent *de;
int fd, dfd;
DIR *dir;
-#ifdef CONFIG_CLOSE_RANGE
- int r = close_range(0, ~0U, 0);
- if (!r) {
- /* Success, no need to try other ways. */
- return;
- }
-#endif
-
dir = opendir("/proc/self/fd");
if (!dir) {
/* If /proc is not mounted, there is nothing that can be done. */
- return;
+ return false;
}
/* Avoid closing the directory. */
dfd = dirfd(dir);
@@ -840,4 +829,40 @@ void qemu_close_all_open_fd(void)
}
}
closedir(dir);
+
+ return true;
+}
+
+static bool qemu_close_all_open_fd_close_range(void)
+{
+#ifdef CONFIG_CLOSE_RANGE
+ int r = close_range(0, ~0U, 0);
+ if (!r) {
+ /* Success, no need to try other ways. */
+ return true;
+ }
+#endif
+ return false;
+}
+
+/*
+ * Close all open file descriptors.
+ */
+void qemu_close_all_open_fd(void)
+{
+ int open_max = sysconf(_SC_OPEN_MAX);
+ int i;
+
+ if (qemu_close_all_open_fd_close_range()) {
+ return;
+ }
+
+ if (qemu_close_all_open_fd_proc()) {
+ return;
+ }
+
+ /* Fallback */
+ for (i = 0; i < open_max; i++) {
+ close(i);
+ }
}
--
2.45.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v6 2/5] qemu/osdep: Split qemu_close_all_open_fd() and add fallback
2024-07-30 12:24 ` [PATCH v6 2/5] qemu/osdep: Split qemu_close_all_open_fd() and add fallback Clément Léger
@ 2024-07-31 1:56 ` Richard Henderson
0 siblings, 0 replies; 13+ messages in thread
From: Richard Henderson @ 2024-07-31 1:56 UTC (permalink / raw)
To: Clément Léger, qemu-devel
Cc: Daniel P. Berrangé, Peter Maydell, Jason Wang,
Philippe Mathieu-Daudé
On 7/30/24 22:24, Clément Léger wrote:
> +/*
> + * Close all open file descriptors.
> + */
> +void qemu_close_all_open_fd(void)
> +{
> + int open_max = sysconf(_SC_OPEN_MAX);
> + int i;
> +
> + if (qemu_close_all_open_fd_close_range()) {
> + return;
> + }
> +
> + if (qemu_close_all_open_fd_proc()) {
> + return;
> + }
> +
> + /* Fallback */
> + for (i = 0; i < open_max; i++) {
> + close(i);
> + }
> }
Split out fallback too, because (so far) open_max is only required within the fallback.
Then
if (!qemu_close_all_open_fd_close_range() &&
!qemu_close_all_open_fd_proc()) {
qemu_close_all_open_fd_fallback();
}
r~
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v6 3/5] net/tap: Factorize fd closing after forking
2024-07-30 12:24 [PATCH v6 0/5] qemu/osdep: add a qemu_close_all_open_fd() helper Clément Léger
2024-07-30 12:24 ` [PATCH v6 1/5] qemu/osdep: Move close_all_open_fds() to oslib-posix Clément Léger
2024-07-30 12:24 ` [PATCH v6 2/5] qemu/osdep: Split qemu_close_all_open_fd() and add fallback Clément Léger
@ 2024-07-30 12:24 ` Clément Léger
2024-07-30 16:11 ` Philippe Mathieu-Daudé
2024-07-31 1:57 ` Richard Henderson
2024-07-30 12:24 ` [PATCH v6 4/5] qemu/osdep: Add excluded fd parameter to qemu_close_all_open_fd() Clément Léger
2024-07-30 12:24 ` [PATCH v6 5/5] net/tap: Use qemu_close_all_open_fd() Clément Léger
4 siblings, 2 replies; 13+ messages in thread
From: Clément Léger @ 2024-07-30 12:24 UTC (permalink / raw)
To: qemu-devel
Cc: Clément Léger, Daniel P. Berrangé, Peter Maydell,
Jason Wang, Richard Henderson, Philippe Mathieu-Daudé
The same code is used twice to actually close all open file descriptors
after forking. Factorize it in a single place.
Signed-off-by: Clément Léger <cleger@rivosinc.com>
---
net/tap.c | 27 +++++++++++++--------------
1 file changed, 13 insertions(+), 14 deletions(-)
diff --git a/net/tap.c b/net/tap.c
index 51f7aec39d..7b2d5d5703 100644
--- a/net/tap.c
+++ b/net/tap.c
@@ -385,6 +385,17 @@ static TAPState *net_tap_fd_init(NetClientState *peer,
return s;
}
+static void close_all_fds_after_fork(int excluded_fd)
+{
+ int open_max = sysconf(_SC_OPEN_MAX), i;
+
+ for (i = 3; i < open_max; i++) {
+ if (i != excluded_fd) {
+ close(i);
+ }
+ }
+}
+
static void launch_script(const char *setup_script, const char *ifname,
int fd, Error **errp)
{
@@ -400,13 +411,7 @@ static void launch_script(const char *setup_script, const char *ifname,
return;
}
if (pid == 0) {
- int open_max = sysconf(_SC_OPEN_MAX), i;
-
- for (i = 3; i < open_max; i++) {
- if (i != fd) {
- close(i);
- }
- }
+ close_all_fds_after_fork(fd);
parg = args;
*parg++ = (char *)setup_script;
*parg++ = (char *)ifname;
@@ -490,17 +495,11 @@ static int net_bridge_run_helper(const char *helper, const char *bridge,
return -1;
}
if (pid == 0) {
- int open_max = sysconf(_SC_OPEN_MAX), i;
char *fd_buf = NULL;
char *br_buf = NULL;
char *helper_cmd = NULL;
- for (i = 3; i < open_max; i++) {
- if (i != sv[1]) {
- close(i);
- }
- }
-
+ close_all_fds_after_fork(sv[1]);
fd_buf = g_strdup_printf("%s%d", "--fd=", sv[1]);
if (strrchr(helper, ' ') || strrchr(helper, '\t')) {
--
2.45.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v6 3/5] net/tap: Factorize fd closing after forking
2024-07-30 12:24 ` [PATCH v6 3/5] net/tap: Factorize fd closing after forking Clément Léger
@ 2024-07-30 16:11 ` Philippe Mathieu-Daudé
2024-07-31 1:57 ` Richard Henderson
1 sibling, 0 replies; 13+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-07-30 16:11 UTC (permalink / raw)
To: Clément Léger, qemu-devel
Cc: Daniel P. Berrangé, Peter Maydell, Jason Wang,
Richard Henderson
On 30/7/24 14:24, Clément Léger wrote:
> The same code is used twice to actually close all open file descriptors
> after forking. Factorize it in a single place.
>
> Signed-off-by: Clément Léger <cleger@rivosinc.com>
> ---
> net/tap.c | 27 +++++++++++++--------------
> 1 file changed, 13 insertions(+), 14 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v6 3/5] net/tap: Factorize fd closing after forking
2024-07-30 12:24 ` [PATCH v6 3/5] net/tap: Factorize fd closing after forking Clément Léger
2024-07-30 16:11 ` Philippe Mathieu-Daudé
@ 2024-07-31 1:57 ` Richard Henderson
1 sibling, 0 replies; 13+ messages in thread
From: Richard Henderson @ 2024-07-31 1:57 UTC (permalink / raw)
To: Clément Léger, qemu-devel
Cc: Daniel P. Berrangé, Peter Maydell, Jason Wang,
Philippe Mathieu-Daudé
On 7/30/24 22:24, Clément Léger wrote:
> The same code is used twice to actually close all open file descriptors
> after forking. Factorize it in a single place.
>
> Signed-off-by: Clément Léger<cleger@rivosinc.com>
> ---
> net/tap.c | 27 +++++++++++++--------------
> 1 file changed, 13 insertions(+), 14 deletions(-)
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
r~
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v6 4/5] qemu/osdep: Add excluded fd parameter to qemu_close_all_open_fd()
2024-07-30 12:24 [PATCH v6 0/5] qemu/osdep: add a qemu_close_all_open_fd() helper Clément Léger
` (2 preceding siblings ...)
2024-07-30 12:24 ` [PATCH v6 3/5] net/tap: Factorize fd closing after forking Clément Léger
@ 2024-07-30 12:24 ` Clément Léger
2024-07-31 2:03 ` Richard Henderson
2024-07-30 12:24 ` [PATCH v6 5/5] net/tap: Use qemu_close_all_open_fd() Clément Léger
4 siblings, 1 reply; 13+ messages in thread
From: Clément Léger @ 2024-07-30 12:24 UTC (permalink / raw)
To: qemu-devel
Cc: Clément Léger, Daniel P. Berrangé, Peter Maydell,
Jason Wang, Richard Henderson, Philippe Mathieu-Daudé
In order for this function to be usable by tap.c code, add a list of
file descriptors that should not be closed.
Signed-off-by: Clément Léger <cleger@rivosinc.com>
---
include/qemu/osdep.h | 8 +++-
system/async-teardown.c | 2 +-
util/oslib-posix.c | 99 ++++++++++++++++++++++++++++++++++-------
3 files changed, 91 insertions(+), 18 deletions(-)
diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h
index 5cd8517380..0bf6f0a356 100644
--- a/include/qemu/osdep.h
+++ b/include/qemu/osdep.h
@@ -760,9 +760,13 @@ int qemu_fdatasync(int fd);
/**
* qemu_close_all_open_fd:
*
- * Close all open file descriptors
+ * Close all open file descriptors except the ones supplied in the @skip array
+ *
+ * @skip: ordered array of distinct file descriptors that should not be closed
+ * if any, or NULL.
+ * @nskip: number of entries in the @skip array or 0 if @skip is NULL.
*/
-void qemu_close_all_open_fd(void);
+void qemu_close_all_open_fd(const int *skip, unsigned int nskip);
/**
* Sync changes made to the memory mapped file back to the backing
diff --git a/system/async-teardown.c b/system/async-teardown.c
index edf49e1007..9148ee8d04 100644
--- a/system/async-teardown.c
+++ b/system/async-teardown.c
@@ -52,7 +52,7 @@ static int async_teardown_fn(void *arg)
* Close all file descriptors that might have been inherited from the
* main qemu process when doing clone, needed to make libvirt happy.
*/
- qemu_close_all_open_fd();
+ qemu_close_all_open_fd(NULL, 0);
/* Set up a handler for SIGHUP and unblock SIGHUP. */
sigaction(SIGHUP, &sa, NULL);
diff --git a/util/oslib-posix.c b/util/oslib-posix.c
index a6749d9f9b..e7bffaea16 100644
--- a/util/oslib-posix.c
+++ b/util/oslib-posix.c
@@ -808,11 +808,14 @@ int qemu_msync(void *addr, size_t length, int fd)
return msync(addr, length, MS_SYNC);
}
-static bool qemu_close_all_open_fd_proc(void)
+
+static bool qemu_close_all_open_fd_proc(const int *skip, unsigned int nskip)
{
struct dirent *de;
int fd, dfd;
+ bool close_fd;
DIR *dir;
+ unsigned int i, skip_start = 0, skip_end = nskip;
dir = opendir("/proc/self/fd");
if (!dir) {
@@ -823,8 +826,31 @@ static bool qemu_close_all_open_fd_proc(void)
dfd = dirfd(dir);
for (de = readdir(dir); de; de = readdir(dir)) {
+ if (de->d_name[0] == '.') {
+ continue;
+ }
fd = atoi(de->d_name);
- if (fd != dfd) {
+ close_fd = true;
+ if (fd == dfd) {
+ close_fd = false;
+ } else {
+ for (i = skip_start; i < skip_end; i++) {
+ if (fd < skip[i]) {
+ /* We are below the next skipped fd, break */
+ break;
+ } else if (fd == skip[i]) {
+ close_fd = false;
+ /* Restrict the range as we found fds matching start/end */
+ if (i == skip_start) {
+ skip_start++;
+ } else if (i == skip_end) {
+ skip_end--;
+ }
+ break;
+ }
+ }
+ }
+ if (close_fd) {
close(fd);
}
}
@@ -833,36 +859,79 @@ static bool qemu_close_all_open_fd_proc(void)
return true;
}
-static bool qemu_close_all_open_fd_close_range(void)
+static bool qemu_close_all_open_fd_close_range(const int *skip,
+ unsigned int nskip)
{
#ifdef CONFIG_CLOSE_RANGE
- int r = close_range(0, ~0U, 0);
- if (!r) {
- /* Success, no need to try other ways. */
- return true;
- }
-#endif
+ int max_fd = sysconf(_SC_OPEN_MAX) - 1;
+ int first = 0, last = max_fd;
+ unsigned int cur_skip = 0;
+ int ret;
+
+ do {
+ /* Find the start boundary of the range to close */
+ while (cur_skip < nskip && first == skip[cur_skip]) {
+ cur_skip++;
+ first++;
+ }
+
+ /* Find the upper boundary of the range to close */
+ if (cur_skip < nskip) {
+ last = skip[cur_skip] - 1;
+ }
+ /*
+ * Adjust the maximum fd to close if it's above what the system
+ * supports
+ */
+ if (last > max_fd) {
+ last = max_fd;
+ /*
+ * We can directly skip the remaining skip fds since the current
+ * one is already above the maximum supported one.
+ */
+ cur_skip = nskip;
+ }
+ /* If last was adjusted, we might be > first, bail out */
+ if (first > last) {
+ break;
+ }
+
+ ret = close_range(first, last, 0);
+ if (ret < 0) {
+ return false;
+ }
+ first = last + 1;
+ last = max_fd;
+ } while (cur_skip < nskip);
+
+ return true;
+#else
return false;
+#endif
}
-/*
- * Close all open file descriptors.
- */
-void qemu_close_all_open_fd(void)
+void qemu_close_all_open_fd(const int *skip, unsigned int nskip)
{
int open_max = sysconf(_SC_OPEN_MAX);
+ unsigned int cur_skip = 0;
int i;
- if (qemu_close_all_open_fd_close_range()) {
+ assert(skip != NULL || nskip == 0);
+
+ if (qemu_close_all_open_fd_close_range(skip, nskip)) {
return;
}
- if (qemu_close_all_open_fd_proc()) {
+ if (qemu_close_all_open_fd_proc(skip, nskip)) {
return;
}
/* Fallback */
for (i = 0; i < open_max; i++) {
+ if (cur_skip < nskip && i == skip[cur_skip]) {
+ cur_skip++;
+ continue;
+ }
close(i);
}
}
--
2.45.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v6 4/5] qemu/osdep: Add excluded fd parameter to qemu_close_all_open_fd()
2024-07-30 12:24 ` [PATCH v6 4/5] qemu/osdep: Add excluded fd parameter to qemu_close_all_open_fd() Clément Léger
@ 2024-07-31 2:03 ` Richard Henderson
0 siblings, 0 replies; 13+ messages in thread
From: Richard Henderson @ 2024-07-31 2:03 UTC (permalink / raw)
To: Clément Léger, qemu-devel
Cc: Daniel P. Berrangé, Peter Maydell, Jason Wang,
Philippe Mathieu-Daudé
On 7/30/24 22:24, Clément Léger wrote:
> diff --git a/util/oslib-posix.c b/util/oslib-posix.c
> index a6749d9f9b..e7bffaea16 100644
> --- a/util/oslib-posix.c
> +++ b/util/oslib-posix.c
> @@ -808,11 +808,14 @@ int qemu_msync(void *addr, size_t length, int fd)
> return msync(addr, length, MS_SYNC);
> }
>
> -static bool qemu_close_all_open_fd_proc(void)
> +
> +static bool qemu_close_all_open_fd_proc(const int *skip, unsigned int nskip)
Extra whitespace.
> {
> struct dirent *de;
> int fd, dfd;
> + bool close_fd;
> DIR *dir;
> + unsigned int i, skip_start = 0, skip_end = nskip;
You can narrow the scope of close_fd and i.
> @@ -823,8 +826,31 @@ static bool qemu_close_all_open_fd_proc(void)
> dfd = dirfd(dir);
>
> for (de = readdir(dir); de; de = readdir(dir)) {
bool close_fd = true;
> + if (de->d_name[0] == '.') {
> + continue;
> + }
> fd = atoi(de->d_name);
> - if (fd != dfd) {
> + close_fd = true;
> + if (fd == dfd) {
> + close_fd = false;
continue, which avoids
> + } else {
the else and the subsequent indentation.
> + for (i = skip_start; i < skip_end; i++) {
for (unsigned int i = ...)
> + if (fd < skip[i]) {
> + /* We are below the next skipped fd, break */
> + break;
> + } else if (fd == skip[i]) {
> + close_fd = false;
> + /* Restrict the range as we found fds matching start/end */
> + if (i == skip_start) {
> + skip_start++;
> + } else if (i == skip_end) {
> + skip_end--;
> + }
> + break;
> + }
> + }
> + }
> + if (close_fd) {
> close(fd);
> }
> }
> @@ -833,36 +859,79 @@ static bool qemu_close_all_open_fd_proc(void)
> return true;
> }
>
> -static bool qemu_close_all_open_fd_close_range(void)
> +static bool qemu_close_all_open_fd_close_range(const int *skip,
> + unsigned int nskip)
Pass in open_max, so that you don't compute it a second time...
> {
> #ifdef CONFIG_CLOSE_RANGE
> - int r = close_range(0, ~0U, 0);
> - if (!r) {
> - /* Success, no need to try other ways. */
> - return true;
> - }
> -#endif
> + int max_fd = sysconf(_SC_OPEN_MAX) - 1;
... here
> -void qemu_close_all_open_fd(void)
> +void qemu_close_all_open_fd(const int *skip, unsigned int nskip)
> {
> int open_max = sysconf(_SC_OPEN_MAX);
> + unsigned int cur_skip = 0;
> int i;
>
> - if (qemu_close_all_open_fd_close_range()) {
> + assert(skip != NULL || nskip == 0);
> +
> + if (qemu_close_all_open_fd_close_range(skip, nskip)) {
> return;
> }
>
> - if (qemu_close_all_open_fd_proc()) {
> + if (qemu_close_all_open_fd_proc(skip, nskip)) {
> return;
> }
>
> /* Fallback */
> for (i = 0; i < open_max; i++) {
> + if (cur_skip < nskip && i == skip[cur_skip]) {
> + cur_skip++;
> + continue;
> + }
> close(i);
And pass open_max to qemu_close_all_open_fd_fallback as well.
r~
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v6 5/5] net/tap: Use qemu_close_all_open_fd()
2024-07-30 12:24 [PATCH v6 0/5] qemu/osdep: add a qemu_close_all_open_fd() helper Clément Léger
` (3 preceding siblings ...)
2024-07-30 12:24 ` [PATCH v6 4/5] qemu/osdep: Add excluded fd parameter to qemu_close_all_open_fd() Clément Léger
@ 2024-07-30 12:24 ` Clément Léger
2024-07-31 2:06 ` Richard Henderson
4 siblings, 1 reply; 13+ messages in thread
From: Clément Léger @ 2024-07-30 12:24 UTC (permalink / raw)
To: qemu-devel
Cc: Clément Léger, Daniel P. Berrangé, Peter Maydell,
Jason Wang, Richard Henderson, Philippe Mathieu-Daudé
Instead of using a slow implementation to close all open fd after
forking, use qemu_close_all_open_fd().
Signed-off-by: Clément Léger <cleger@rivosinc.com>
---
net/tap.c | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)
diff --git a/net/tap.c b/net/tap.c
index 7b2d5d5703..3f90022c0b 100644
--- a/net/tap.c
+++ b/net/tap.c
@@ -387,13 +387,20 @@ static TAPState *net_tap_fd_init(NetClientState *peer,
static void close_all_fds_after_fork(int excluded_fd)
{
- int open_max = sysconf(_SC_OPEN_MAX), i;
+ const int skip_fd[] = {STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO,
+ excluded_fd};
+ unsigned int nskip = ARRAY_SIZE(skip_fd);
- for (i = 3; i < open_max; i++) {
- if (i != excluded_fd) {
- close(i);
- }
+ /*
+ * skip_fd must be an ordered array of distinct fds, exclude
+ * excluded_fd if already included in the [STDIN_FILENO - STDERR_FILENO]
+ * range
+ */
+ if (excluded_fd <= STDERR_FILENO) {
+ nskip--;
}
+
+ qemu_close_all_open_fd(skip_fd, nskip);
}
static void launch_script(const char *setup_script, const char *ifname,
--
2.45.2
^ permalink raw reply related [flat|nested] 13+ messages in thread