os-posix: Allow 'chroot' via '-run-with' and deprecate the old '-chroot' option
[qemu/ar7.git] / util / async-teardown.c
blob62cdeb0f20a2500e02e51895e7c90ab9a62170ac
1 /*
2 * Asynchronous teardown
4 * Copyright IBM, Corp. 2022
6 * Authors:
7 * Claudio Imbrenda <imbrenda@linux.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or (at your
10 * option) any later version. See the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include <dirent.h>
16 #include <sys/prctl.h>
17 #include <sched.h>
19 #include "qemu/async-teardown.h"
21 #ifdef _SC_THREAD_STACK_MIN
22 #define CLONE_STACK_SIZE sysconf(_SC_THREAD_STACK_MIN)
23 #else
24 #define CLONE_STACK_SIZE 16384
25 #endif
27 static pid_t the_ppid;
30 * Close all open file descriptors.
32 static void close_all_open_fd(void)
34 struct dirent *de;
35 int fd, dfd;
36 DIR *dir;
38 #ifdef CONFIG_CLOSE_RANGE
39 int r = close_range(0, ~0U, 0);
40 if (!r) {
41 /* Success, no need to try other ways. */
42 return;
44 #endif
46 dir = opendir("/proc/self/fd");
47 if (!dir) {
48 /* If /proc is not mounted, there is nothing that can be done. */
49 return;
51 /* Avoid closing the directory. */
52 dfd = dirfd(dir);
54 for (de = readdir(dir); de; de = readdir(dir)) {
55 fd = atoi(de->d_name);
56 if (fd != dfd) {
57 close(fd);
60 closedir(dir);
63 static void hup_handler(int signal)
65 /* Check every second if this process has been reparented. */
66 while (the_ppid == getppid()) {
67 /* sleep() is safe to use in a signal handler. */
68 sleep(1);
71 /* At this point the parent process has terminated completely. */
72 _exit(0);
75 static int async_teardown_fn(void *arg)
77 struct sigaction sa = { .sa_handler = hup_handler };
78 sigset_t hup_signal;
79 char name[16];
81 /* Set a meaningful name for this process. */
82 snprintf(name, 16, "cleanup/%d", the_ppid);
83 prctl(PR_SET_NAME, (unsigned long)name);
86 * Close all file descriptors that might have been inherited from the
87 * main qemu process when doing clone, needed to make libvirt happy.
88 * Not using close_range for increased compatibility with older kernels.
90 close_all_open_fd();
92 /* Set up a handler for SIGHUP and unblock SIGHUP. */
93 sigaction(SIGHUP, &sa, NULL);
94 sigemptyset(&hup_signal);
95 sigaddset(&hup_signal, SIGHUP);
96 sigprocmask(SIG_UNBLOCK, &hup_signal, NULL);
98 /* Ask to receive SIGHUP when the parent dies. */
99 prctl(PR_SET_PDEATHSIG, SIGHUP);
102 * Sleep forever, unless the parent process has already terminated. The
103 * only interruption can come from the SIGHUP signal, which in normal
104 * operation is received when the parent process dies.
106 if (the_ppid == getppid()) {
107 pause();
110 /* At this point the parent process has terminated completely. */
111 _exit(0);
115 * Allocate a new stack of a reasonable size, and return a pointer to its top.
117 static void *new_stack_for_clone(void)
119 size_t stack_size = CLONE_STACK_SIZE;
120 char *stack_ptr;
122 /* Allocate a new stack and get a pointer to its top. */
123 stack_ptr = qemu_alloc_stack(&stack_size);
124 #if !defined(HOST_HPPA)
125 /* The top is at the end of the area, except on HPPA. */
126 stack_ptr += stack_size;
127 #endif
129 return stack_ptr;
133 * Block all signals, start (clone) a new process sharing the address space
134 * with qemu (CLONE_VM), then restore signals.
136 void init_async_teardown(void)
138 sigset_t all_signals, old_signals;
140 the_ppid = getpid();
142 sigfillset(&all_signals);
143 sigprocmask(SIG_BLOCK, &all_signals, &old_signals);
144 clone(async_teardown_fn, new_stack_for_clone(), CLONE_VM, NULL);
145 sigprocmask(SIG_SETMASK, &old_signals, NULL);