]> git.ipfire.org Git - thirdparty/qemu.git/blame - util/oslib-posix.c
iotests: Fix cleanup path in some tests
[thirdparty/qemu.git] / util / oslib-posix.c
CommitLineData
c1b0b93b
JS
1/*
2 * os-posix-lib.c
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2010 Red Hat, Inc.
6 *
7 * QEMU library functions on POSIX which are shared between QEMU and
8 * the QEMU tools.
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 * THE SOFTWARE.
27 */
28
aafd7584 29#include "qemu/osdep.h"
13401ba0 30#include <termios.h>
13401ba0 31
e2ea3515
LE
32#include <glib/gprintf.h>
33
a8d25326 34#include "qemu-common.h"
9c17d615 35#include "sysemu/sysemu.h"
c1b0b93b 36#include "trace.h"
da34e65c 37#include "qapi/error.h"
1de7afc9 38#include "qemu/sockets.h"
db725815 39#include "qemu/thread.h"
10f5bff6 40#include <libgen.h>
38183310 41#include <sys/signal.h>
f348b6d1 42#include "qemu/cutils.h"
c1b0b93b 43
cbcfa041
PB
44#ifdef CONFIG_LINUX
45#include <sys/syscall.h>
46#endif
cbcfa041 47
41975b26
AF
48#ifdef __FreeBSD__
49#include <sys/sysctl.h>
a7764f15 50#include <sys/user.h>
7dc9ae43 51#include <libutil.h>
41975b26
AF
52#endif
53
094611b4
KR
54#ifdef __NetBSD__
55#include <sys/sysctl.h>
56#endif
57
a9c94277 58#include "qemu/mmap-alloc.h"
794e8f30 59
7d992e4d
PL
60#ifdef CONFIG_DEBUG_STACK_USAGE
61#include "qemu/error-report.h"
62#endif
63
dfd0dcc7 64#define MAX_MEM_PREALLOC_THREAD_COUNT 16
1e356fc1
JK
65
66struct MemsetThread {
67 char *addr;
e947d47d
SW
68 size_t numpages;
69 size_t hpagesize;
1e356fc1
JK
70 QemuThread pgthread;
71 sigjmp_buf env;
72};
73typedef struct MemsetThread MemsetThread;
74
75static MemsetThread *memset_thread;
76static int memset_num_threads;
77static bool memset_thread_failed;
78
037fb5eb 79static QemuMutex page_mutex;
80static QemuCond page_cond;
81static bool threads_created_flag;
82
cbcfa041
PB
83int qemu_get_thread_id(void)
84{
85#if defined(__linux__)
86 return syscall(SYS_gettid);
87#else
88 return getpid();
89#endif
90}
f97742d0
AR
91
92int qemu_daemon(int nochdir, int noclose)
93{
94 return daemon(nochdir, noclose);
95}
96
9e6bdef2
MAL
97bool qemu_write_pidfile(const char *path, Error **errp)
98{
99 int fd;
100 char pidstr[32];
101
102 while (1) {
103 struct stat a, b;
35f7f3fb
MAL
104 struct flock lock = {
105 .l_type = F_WRLCK,
106 .l_whence = SEEK_SET,
107 .l_len = 0,
108 };
9e6bdef2
MAL
109
110 fd = qemu_open(path, O_CREAT | O_WRONLY, S_IRUSR | S_IWUSR);
111 if (fd == -1) {
112 error_setg_errno(errp, errno, "Cannot open pid file");
113 return false;
114 }
115
116 if (fstat(fd, &b) < 0) {
117 error_setg_errno(errp, errno, "Cannot stat file");
118 goto fail_close;
119 }
120
35f7f3fb 121 if (fcntl(fd, F_SETLK, &lock)) {
9e6bdef2
MAL
122 error_setg_errno(errp, errno, "Cannot lock pid file");
123 goto fail_close;
124 }
125
126 /*
127 * Now make sure the path we locked is the same one that now
128 * exists on the filesystem.
129 */
130 if (stat(path, &a) < 0) {
131 /*
132 * PID file disappeared, someone else must be racing with
133 * us, so try again.
134 */
135 close(fd);
136 continue;
137 }
138
139 if (a.st_ino == b.st_ino) {
140 break;
141 }
142
143 /*
144 * PID file was recreated, someone else must be racing with
145 * us, so try again.
146 */
147 close(fd);
148 }
149
150 if (ftruncate(fd, 0) < 0) {
151 error_setg_errno(errp, errno, "Failed to truncate pid file");
152 goto fail_unlink;
153 }
154
155 snprintf(pidstr, sizeof(pidstr), FMT_pid "\n", getpid());
156 if (write(fd, pidstr, strlen(pidstr)) != strlen(pidstr)) {
157 error_setg(errp, "Failed to write pid file");
158 goto fail_unlink;
159 }
160
161 return true;
162
163fail_unlink:
164 unlink(path);
165fail_close:
166 close(fd);
167 return false;
168}
169
b152aa84 170void *qemu_oom_check(void *ptr)
c1b0b93b
JS
171{
172 if (ptr == NULL) {
173 fprintf(stderr, "Failed to allocate memory: %s\n", strerror(errno));
174 abort();
175 }
176 return ptr;
177}
c1b0b93b 178
7d2a35cc 179void *qemu_try_memalign(size_t alignment, size_t size)
c1b0b93b
JS
180{
181 void *ptr;
e5354657
KW
182
183 if (alignment < sizeof(void*)) {
184 alignment = sizeof(void*);
185 }
186
9bc5a719 187#if defined(CONFIG_POSIX_MEMALIGN)
c1b0b93b
JS
188 int ret;
189 ret = posix_memalign(&ptr, alignment, size);
190 if (ret != 0) {
7d2a35cc
KW
191 errno = ret;
192 ptr = NULL;
c1b0b93b
JS
193 }
194#elif defined(CONFIG_BSD)
7d2a35cc 195 ptr = valloc(size);
c1b0b93b 196#else
7d2a35cc 197 ptr = memalign(alignment, size);
c1b0b93b
JS
198#endif
199 trace_qemu_memalign(alignment, size, ptr);
200 return ptr;
201}
202
7d2a35cc
KW
203void *qemu_memalign(size_t alignment, size_t size)
204{
205 return qemu_oom_check(qemu_try_memalign(alignment, size));
206}
207
c1b0b93b 208/* alloc shared memory pages */
06329cce 209void *qemu_anon_ram_alloc(size_t size, uint64_t *alignment, bool shared)
c1b0b93b 210{
36b58628 211 size_t align = QEMU_VMALLOC_ALIGN;
2ac0f162 212 void *ptr = qemu_ram_mmap(-1, size, align, shared, false);
36b58628 213
7dda5dc8 214 if (ptr == MAP_FAILED) {
39228250 215 return NULL;
c2a8238a 216 }
c2a8238a 217
a2b257d6
IM
218 if (alignment) {
219 *alignment = align;
220 }
c2dfc5ba 221
6eebf958 222 trace_qemu_anon_ram_alloc(size, ptr);
c7f4111a 223 return ptr;
c1b0b93b
JS
224}
225
226void qemu_vfree(void *ptr)
227{
228 trace_qemu_vfree(ptr);
229 free(ptr);
230}
9549e764 231
e7a09b92
PB
232void qemu_anon_ram_free(void *ptr, size_t size)
233{
234 trace_qemu_anon_ram_free(ptr, size);
53adb9d4 235 qemu_ram_munmap(-1, ptr, size);
e7a09b92
PB
236}
237
f9e8cacc 238void qemu_set_block(int fd)
154b9a0c
PB
239{
240 int f;
241 f = fcntl(fd, F_GETFL);
da93b820
LQ
242 assert(f != -1);
243 f = fcntl(fd, F_SETFL, f & ~O_NONBLOCK);
244 assert(f != -1);
154b9a0c
PB
245}
246
f9e8cacc 247void qemu_set_nonblock(int fd)
9549e764
JS
248{
249 int f;
250 f = fcntl(fd, F_GETFL);
da93b820
LQ
251 assert(f != -1);
252 f = fcntl(fd, F_SETFL, f | O_NONBLOCK);
02cdcc96
PMD
253#ifdef __OpenBSD__
254 if (f == -1) {
255 /*
256 * Previous to OpenBSD 6.3, fcntl(F_SETFL) is not permitted on
257 * memory devices and sets errno to ENODEV.
258 * It's OK if we fail to set O_NONBLOCK on devices like /dev/null,
259 * because they will never block anyway.
260 */
261 assert(errno == ENODEV);
262 }
263#else
da93b820 264 assert(f != -1);
02cdcc96 265#endif
9549e764
JS
266}
267
606600a1
SO
268int socket_set_fast_reuse(int fd)
269{
270 int val = 1, ret;
271
272 ret = setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
273 (const char *)&val, sizeof(val));
274
275 assert(ret == 0);
276
277 return ret;
278}
279
9549e764
JS
280void qemu_set_cloexec(int fd)
281{
282 int f;
283 f = fcntl(fd, F_GETFD);
7e6478e7
SS
284 assert(f != -1);
285 f = fcntl(fd, F_SETFD, f | FD_CLOEXEC);
286 assert(f != -1);
9549e764 287}
70e72ce4
JS
288
289/*
290 * Creates a pipe with FD_CLOEXEC set on both file descriptors
291 */
292int qemu_pipe(int pipefd[2])
293{
294 int ret;
295
296#ifdef CONFIG_PIPE2
297 ret = pipe2(pipefd, O_CLOEXEC);
298 if (ret != -1 || errno != ENOSYS) {
299 return ret;
300 }
301#endif
302 ret = pipe(pipefd);
303 if (ret == 0) {
304 qemu_set_cloexec(pipefd[0]);
305 qemu_set_cloexec(pipefd[1]);
306 }
307
308 return ret;
309}
38671423 310
e2ea3515
LE
311char *
312qemu_get_local_state_pathname(const char *relative_pathname)
313{
314 return g_strdup_printf("%s/%s", CONFIG_QEMU_LOCALSTATEDIR,
315 relative_pathname);
316}
13401ba0
SH
317
318void qemu_set_tty_echo(int fd, bool echo)
319{
320 struct termios tty;
321
322 tcgetattr(fd, &tty);
323
324 if (echo) {
325 tty.c_lflag |= ECHO | ECHONL | ICANON | IEXTEN;
326 } else {
327 tty.c_lflag &= ~(ECHO | ECHONL | ICANON | IEXTEN);
328 }
329
330 tcsetattr(fd, TCSANOW, &tty);
331}
10f5bff6
FZ
332
333static char exec_dir[PATH_MAX];
334
335void qemu_init_exec_dir(const char *argv0)
336{
337 char *dir;
338 char *p = NULL;
339 char buf[PATH_MAX];
340
341 assert(!exec_dir[0]);
342
343#if defined(__linux__)
344 {
345 int len;
346 len = readlink("/proc/self/exe", buf, sizeof(buf) - 1);
347 if (len > 0) {
348 buf[len] = 0;
349 p = buf;
350 }
351 }
094611b4
KR
352#elif defined(__FreeBSD__) \
353 || (defined(__NetBSD__) && defined(KERN_PROC_PATHNAME))
10f5bff6 354 {
094611b4 355#if defined(__FreeBSD__)
10f5bff6 356 static int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1};
094611b4
KR
357#else
358 static int mib[4] = {CTL_KERN, KERN_PROC_ARGS, -1, KERN_PROC_PATHNAME};
359#endif
10f5bff6
FZ
360 size_t len = sizeof(buf) - 1;
361
362 *buf = '\0';
363 if (!sysctl(mib, ARRAY_SIZE(mib), buf, &len, NULL, 0) &&
364 *buf) {
365 buf[sizeof(buf) - 1] = '\0';
366 p = buf;
367 }
368 }
369#endif
370 /* If we don't have any way of figuring out the actual executable
371 location then try argv[0]. */
372 if (!p) {
373 if (!argv0) {
374 return;
375 }
376 p = realpath(argv0, buf);
377 if (!p) {
378 return;
379 }
380 }
55ad781c 381 dir = g_path_get_dirname(p);
10f5bff6
FZ
382
383 pstrcpy(exec_dir, sizeof(exec_dir), dir);
55ad781c
WJ
384
385 g_free(dir);
10f5bff6
FZ
386}
387
388char *qemu_get_exec_dir(void)
389{
390 return g_strdup(exec_dir);
391}
38183310 392
38183310
PB
393static void sigbus_handler(int signal)
394{
1e356fc1
JK
395 int i;
396 if (memset_thread) {
397 for (i = 0; i < memset_num_threads; i++) {
398 if (qemu_thread_is_self(&memset_thread[i].pgthread)) {
399 siglongjmp(memset_thread[i].env, 1);
400 }
401 }
402 }
38183310
PB
403}
404
1e356fc1
JK
405static void *do_touch_pages(void *arg)
406{
407 MemsetThread *memset_args = (MemsetThread *)arg;
1e356fc1 408 sigset_t set, oldset;
1e356fc1 409
037fb5eb 410 /*
411 * On Linux, the page faults from the loop below can cause mmap_sem
412 * contention with allocation of the thread stacks. Do not start
413 * clearing until all threads have been created.
414 */
415 qemu_mutex_lock(&page_mutex);
416 while(!threads_created_flag){
417 qemu_cond_wait(&page_cond, &page_mutex);
418 }
419 qemu_mutex_unlock(&page_mutex);
420
1e356fc1
JK
421 /* unblock SIGBUS */
422 sigemptyset(&set);
423 sigaddset(&set, SIGBUS);
424 pthread_sigmask(SIG_UNBLOCK, &set, &oldset);
425
426 if (sigsetjmp(memset_args->env, 1)) {
427 memset_thread_failed = true;
428 } else {
e947d47d
SW
429 char *addr = memset_args->addr;
430 size_t numpages = memset_args->numpages;
431 size_t hpagesize = memset_args->hpagesize;
432 size_t i;
1e356fc1 433 for (i = 0; i < numpages; i++) {
9dc44aa5
DB
434 /*
435 * Read & write back the same value, so we don't
436 * corrupt existing user/app data that might be
437 * stored.
438 *
439 * 'volatile' to stop compiler optimizing this away
440 * to a no-op
441 *
442 * TODO: get a better solution from kernel so we
443 * don't need to write at all so we don't cause
444 * wear on the storage backing the region...
445 */
446 *(volatile char *)addr = *addr;
1e356fc1
JK
447 addr += hpagesize;
448 }
449 }
450 pthread_sigmask(SIG_SETMASK, &oldset, NULL);
451 return NULL;
452}
453
dfd0dcc7
JK
454static inline int get_memset_num_threads(int smp_cpus)
455{
456 long host_procs = sysconf(_SC_NPROCESSORS_ONLN);
457 int ret = 1;
458
459 if (host_procs > 0) {
460 ret = MIN(MIN(host_procs, MAX_MEM_PREALLOC_THREAD_COUNT), smp_cpus);
461 }
462 /* In case sysconf() fails, we fall back to single threaded */
463 return ret;
464}
465
1e356fc1
JK
466static bool touch_all_pages(char *area, size_t hpagesize, size_t numpages,
467 int smp_cpus)
468{
78b3f67a 469 static gsize initialized = 0;
037fb5eb 470 size_t numpages_per_thread, leftover;
1e356fc1
JK
471 char *addr = area;
472 int i = 0;
473
78b3f67a
PB
474 if (g_once_init_enter(&initialized)) {
475 qemu_mutex_init(&page_mutex);
476 qemu_cond_init(&page_cond);
477 g_once_init_leave(&initialized, 1);
478 }
479
1e356fc1 480 memset_thread_failed = false;
037fb5eb 481 threads_created_flag = false;
dfd0dcc7 482 memset_num_threads = get_memset_num_threads(smp_cpus);
1e356fc1 483 memset_thread = g_new0(MemsetThread, memset_num_threads);
037fb5eb 484 numpages_per_thread = numpages / memset_num_threads;
485 leftover = numpages % memset_num_threads;
1e356fc1
JK
486 for (i = 0; i < memset_num_threads; i++) {
487 memset_thread[i].addr = addr;
037fb5eb 488 memset_thread[i].numpages = numpages_per_thread + (i < leftover);
1e356fc1
JK
489 memset_thread[i].hpagesize = hpagesize;
490 qemu_thread_create(&memset_thread[i].pgthread, "touch_pages",
491 do_touch_pages, &memset_thread[i],
492 QEMU_THREAD_JOINABLE);
037fb5eb 493 addr += memset_thread[i].numpages * hpagesize;
1e356fc1 494 }
037fb5eb 495 threads_created_flag = true;
496 qemu_cond_broadcast(&page_cond);
497
1e356fc1
JK
498 for (i = 0; i < memset_num_threads; i++) {
499 qemu_thread_join(&memset_thread[i].pgthread);
500 }
501 g_free(memset_thread);
502 memset_thread = NULL;
503
504 return memset_thread_failed;
505}
506
507void os_mem_prealloc(int fd, char *area, size_t memory, int smp_cpus,
508 Error **errp)
38183310 509{
b7bf8f56 510 int ret;
38183310 511 struct sigaction act, oldact;
1e356fc1
JK
512 size_t hpagesize = qemu_fd_getpagesize(fd);
513 size_t numpages = DIV_ROUND_UP(memory, hpagesize);
38183310
PB
514
515 memset(&act, 0, sizeof(act));
516 act.sa_handler = &sigbus_handler;
517 act.sa_flags = 0;
518
519 ret = sigaction(SIGBUS, &act, &oldact);
520 if (ret) {
056b68af
IM
521 error_setg_errno(errp, errno,
522 "os_mem_prealloc: failed to install signal handler");
523 return;
38183310
PB
524 }
525
1e356fc1
JK
526 /* touch pages simultaneously */
527 if (touch_all_pages(area, hpagesize, numpages, smp_cpus)) {
056b68af 528 error_setg(errp, "os_mem_prealloc: Insufficient free host memory "
462e5d50 529 "pages available to allocate guest RAM");
056b68af 530 }
38183310 531
056b68af
IM
532 ret = sigaction(SIGBUS, &oldact, NULL);
533 if (ret) {
534 /* Terminate QEMU since it can't recover from error */
535 perror("os_mem_prealloc: failed to reinstall signal handler");
536 exit(1);
b7bf8f56 537 }
38183310 538}
d57e4e48 539
7dc9ae43
MP
540char *qemu_get_pid_name(pid_t pid)
541{
542 char *name = NULL;
543
544#if defined(__FreeBSD__)
545 /* BSDs don't have /proc, but they provide a nice substitute */
546 struct kinfo_proc *proc = kinfo_getproc(pid);
547
548 if (proc) {
549 name = g_strdup(proc->ki_comm);
550 free(proc);
551 }
552#else
553 /* Assume a system with reasonable procfs */
554 char *pid_path;
555 size_t len;
556
557 pid_path = g_strdup_printf("/proc/%d/cmdline", pid);
558 g_file_get_contents(pid_path, &name, &len, NULL);
559 g_free(pid_path);
560#endif
561
562 return name;
563}
564
565
57cb38b3
DB
566pid_t qemu_fork(Error **errp)
567{
568 sigset_t oldmask, newmask;
569 struct sigaction sig_action;
570 int saved_errno;
571 pid_t pid;
572
573 /*
574 * Need to block signals now, so that child process can safely
575 * kill off caller's signal handlers without a race.
576 */
577 sigfillset(&newmask);
578 if (pthread_sigmask(SIG_SETMASK, &newmask, &oldmask) != 0) {
579 error_setg_errno(errp, errno,
580 "cannot block signals");
581 return -1;
582 }
583
584 pid = fork();
585 saved_errno = errno;
586
587 if (pid < 0) {
588 /* attempt to restore signal mask, but ignore failure, to
589 * avoid obscuring the fork failure */
590 (void)pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
591 error_setg_errno(errp, saved_errno,
592 "cannot fork child process");
593 errno = saved_errno;
594 return -1;
595 } else if (pid) {
596 /* parent process */
597
598 /* Restore our original signal mask now that the child is
599 * safely running. Only documented failures are EFAULT (not
600 * possible, since we are using just-grabbed mask) or EINVAL
601 * (not possible, since we are using correct arguments). */
602 (void)pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
603 } else {
604 /* child process */
605 size_t i;
606
607 /* Clear out all signal handlers from parent so nothing
608 * unexpected can happen in our child once we unblock
609 * signals */
610 sig_action.sa_handler = SIG_DFL;
611 sig_action.sa_flags = 0;
612 sigemptyset(&sig_action.sa_mask);
613
614 for (i = 1; i < NSIG; i++) {
615 /* Only possible errors are EFAULT or EINVAL The former
616 * won't happen, the latter we expect, so no need to check
617 * return value */
618 (void)sigaction(i, &sig_action, NULL);
619 }
620
621 /* Unmask all signals in child, since we've no idea what the
622 * caller's done with their signal mask and don't want to
623 * propagate that to children */
624 sigemptyset(&newmask);
625 if (pthread_sigmask(SIG_SETMASK, &newmask, NULL) != 0) {
626 Error *local_err = NULL;
627 error_setg_errno(&local_err, errno,
628 "cannot unblock signals");
629 error_report_err(local_err);
630 _exit(1);
631 }
632 }
633 return pid;
634}
8737d9e0
PL
635
636void *qemu_alloc_stack(size_t *sz)
637{
638 void *ptr, *guardpage;
fc3d1bad 639 int flags;
7d992e4d
PL
640#ifdef CONFIG_DEBUG_STACK_USAGE
641 void *ptr2;
642#endif
038adc2f 643 size_t pagesz = qemu_real_host_page_size;
8737d9e0
PL
644#ifdef _SC_THREAD_STACK_MIN
645 /* avoid stacks smaller than _SC_THREAD_STACK_MIN */
646 long min_stack_sz = sysconf(_SC_THREAD_STACK_MIN);
647 *sz = MAX(MAX(min_stack_sz, 0), *sz);
648#endif
649 /* adjust stack size to a multiple of the page size */
650 *sz = ROUND_UP(*sz, pagesz);
651 /* allocate one extra page for the guard page */
652 *sz += pagesz;
653
fc3d1bad
BS
654 flags = MAP_PRIVATE | MAP_ANONYMOUS;
655#if defined(MAP_STACK) && defined(__OpenBSD__)
656 /* Only enable MAP_STACK on OpenBSD. Other OS's such as
657 * Linux/FreeBSD/NetBSD have a flag with the same name
658 * but have differing functionality. OpenBSD will SEGV
659 * if it spots execution with a stack pointer pointing
660 * at memory that was not allocated with MAP_STACK.
661 */
662 flags |= MAP_STACK;
663#endif
664
665 ptr = mmap(NULL, *sz, PROT_READ | PROT_WRITE, flags, -1, 0);
8737d9e0 666 if (ptr == MAP_FAILED) {
e916a6e8 667 perror("failed to allocate memory for stack");
8737d9e0
PL
668 abort();
669 }
670
671#if defined(HOST_IA64)
672 /* separate register stack */
673 guardpage = ptr + (((*sz - pagesz) / 2) & ~pagesz);
674#elif defined(HOST_HPPA)
675 /* stack grows up */
676 guardpage = ptr + *sz - pagesz;
677#else
678 /* stack grows down */
679 guardpage = ptr;
680#endif
681 if (mprotect(guardpage, pagesz, PROT_NONE) != 0) {
e916a6e8 682 perror("failed to set up stack guard page");
8737d9e0
PL
683 abort();
684 }
685
7d992e4d
PL
686#ifdef CONFIG_DEBUG_STACK_USAGE
687 for (ptr2 = ptr + pagesz; ptr2 < ptr + *sz; ptr2 += sizeof(uint32_t)) {
688 *(uint32_t *)ptr2 = 0xdeadbeaf;
689 }
690#endif
691
8737d9e0
PL
692 return ptr;
693}
694
7d992e4d
PL
695#ifdef CONFIG_DEBUG_STACK_USAGE
696static __thread unsigned int max_stack_usage;
697#endif
698
8737d9e0
PL
699void qemu_free_stack(void *stack, size_t sz)
700{
7d992e4d
PL
701#ifdef CONFIG_DEBUG_STACK_USAGE
702 unsigned int usage;
703 void *ptr;
704
038adc2f 705 for (ptr = stack + qemu_real_host_page_size; ptr < stack + sz;
7d992e4d
PL
706 ptr += sizeof(uint32_t)) {
707 if (*(uint32_t *)ptr != 0xdeadbeaf) {
708 break;
709 }
710 }
711 usage = sz - (uintptr_t) (ptr - stack);
712 if (usage > max_stack_usage) {
713 error_report("thread %d max stack usage increased from %u to %u",
714 qemu_get_thread_id(), max_stack_usage, usage);
715 max_stack_usage = usage;
716 }
717#endif
718
8737d9e0
PL
719 munmap(stack, sz);
720}
d98d4072
PB
721
722void sigaction_invoke(struct sigaction *action,
723 struct qemu_signalfd_siginfo *info)
724{
02ffa034 725 siginfo_t si = {};
d98d4072
PB
726 si.si_signo = info->ssi_signo;
727 si.si_errno = info->ssi_errno;
728 si.si_code = info->ssi_code;
729
730 /* Convert the minimal set of fields defined by POSIX.
731 * Positive si_code values are reserved for kernel-generated
732 * signals, where the valid siginfo fields are determined by
733 * the signal number. But according to POSIX, it is unspecified
734 * whether SI_USER and SI_QUEUE have values less than or equal to
735 * zero.
736 */
737 if (info->ssi_code == SI_USER || info->ssi_code == SI_QUEUE ||
738 info->ssi_code <= 0) {
739 /* SIGTERM, etc. */
740 si.si_pid = info->ssi_pid;
741 si.si_uid = info->ssi_uid;
742 } else if (info->ssi_signo == SIGILL || info->ssi_signo == SIGFPE ||
743 info->ssi_signo == SIGSEGV || info->ssi_signo == SIGBUS) {
744 si.si_addr = (void *)(uintptr_t)info->ssi_addr;
745 } else if (info->ssi_signo == SIGCHLD) {
746 si.si_pid = info->ssi_pid;
747 si.si_status = info->ssi_status;
748 si.si_uid = info->ssi_uid;
d98d4072
PB
749 }
750 action->sa_sigaction(info->ssi_signo, &si, NULL);
751}