]> git.proxmox.com Git - mirror_qemu.git/blame - util/oslib-posix.c
util: Merge cacheflush.c and cacheinfo.c
[mirror_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
9c17d615 34#include "sysemu/sysemu.h"
c1b0b93b 35#include "trace.h"
da34e65c 36#include "qapi/error.h"
29b838c0 37#include "qemu/error-report.h"
b85ea5fa 38#include "qemu/madvise.h"
1de7afc9 39#include "qemu/sockets.h"
db725815 40#include "qemu/thread.h"
10f5bff6 41#include <libgen.h>
f348b6d1 42#include "qemu/cutils.h"
c905a368 43#include "qemu/compiler.h"
89aec641 44#include "qemu/units.h"
c1b0b93b 45
cbcfa041
PB
46#ifdef CONFIG_LINUX
47#include <sys/syscall.h>
48#endif
cbcfa041 49
41975b26 50#ifdef __FreeBSD__
9548a891 51#include <sys/thr.h>
06680b15
MAL
52#include <sys/types.h>
53#include <sys/user.h>
7dc9ae43 54#include <libutil.h>
41975b26
AF
55#endif
56
094611b4 57#ifdef __NetBSD__
9548a891 58#include <lwp.h>
094611b4
KR
59#endif
60
2032e243
DC
61#ifdef __APPLE__
62#include <mach-o/dyld.h>
63#endif
64
2b9b9e70
DC
65#ifdef __HAIKU__
66#include <kernel/image.h>
67#endif
68
a9c94277 69#include "qemu/mmap-alloc.h"
794e8f30 70
7d992e4d
PL
71#ifdef CONFIG_DEBUG_STACK_USAGE
72#include "qemu/error-report.h"
73#endif
74
dfd0dcc7 75#define MAX_MEM_PREALLOC_THREAD_COUNT 16
1e356fc1 76
dba50678
DH
77struct MemsetThread;
78
79typedef struct MemsetContext {
80 bool all_threads_created;
81 bool any_thread_failed;
82 struct MemsetThread *threads;
83 int num_threads;
84} MemsetContext;
85
1e356fc1
JK
86struct MemsetThread {
87 char *addr;
e947d47d
SW
88 size_t numpages;
89 size_t hpagesize;
1e356fc1
JK
90 QemuThread pgthread;
91 sigjmp_buf env;
dba50678 92 MemsetContext *context;
1e356fc1
JK
93};
94typedef struct MemsetThread MemsetThread;
95
dba50678
DH
96/* used by sigbus_handler() */
97static MemsetContext *sigbus_memset_context;
29b838c0 98struct sigaction sigbus_oldact;
a960d664 99static QemuMutex sigbus_mutex;
1e356fc1 100
037fb5eb 101static QemuMutex page_mutex;
102static QemuCond page_cond;
037fb5eb 103
cbcfa041
PB
104int qemu_get_thread_id(void)
105{
106#if defined(__linux__)
107 return syscall(SYS_gettid);
9548a891
DC
108#elif defined(__FreeBSD__)
109 /* thread id is up to INT_MAX */
110 long tid;
111 thr_self(&tid);
112 return (int)tid;
113#elif defined(__NetBSD__)
114 return _lwp_self();
8edbca51
DC
115#elif defined(__OpenBSD__)
116 return getthrid();
cbcfa041
PB
117#else
118 return getpid();
119#endif
120}
f97742d0
AR
121
122int qemu_daemon(int nochdir, int noclose)
123{
124 return daemon(nochdir, noclose);
125}
126
9e6bdef2
MAL
127bool qemu_write_pidfile(const char *path, Error **errp)
128{
129 int fd;
130 char pidstr[32];
131
132 while (1) {
133 struct stat a, b;
35f7f3fb
MAL
134 struct flock lock = {
135 .l_type = F_WRLCK,
136 .l_whence = SEEK_SET,
137 .l_len = 0,
138 };
9e6bdef2 139
1b34d08f 140 fd = qemu_create(path, O_WRONLY, S_IRUSR | S_IWUSR, errp);
9e6bdef2 141 if (fd == -1) {
9e6bdef2
MAL
142 return false;
143 }
144
145 if (fstat(fd, &b) < 0) {
146 error_setg_errno(errp, errno, "Cannot stat file");
147 goto fail_close;
148 }
149
35f7f3fb 150 if (fcntl(fd, F_SETLK, &lock)) {
9e6bdef2
MAL
151 error_setg_errno(errp, errno, "Cannot lock pid file");
152 goto fail_close;
153 }
154
155 /*
156 * Now make sure the path we locked is the same one that now
157 * exists on the filesystem.
158 */
159 if (stat(path, &a) < 0) {
160 /*
161 * PID file disappeared, someone else must be racing with
162 * us, so try again.
163 */
164 close(fd);
165 continue;
166 }
167
168 if (a.st_ino == b.st_ino) {
169 break;
170 }
171
172 /*
173 * PID file was recreated, someone else must be racing with
174 * us, so try again.
175 */
176 close(fd);
177 }
178
179 if (ftruncate(fd, 0) < 0) {
180 error_setg_errno(errp, errno, "Failed to truncate pid file");
181 goto fail_unlink;
182 }
183
184 snprintf(pidstr, sizeof(pidstr), FMT_pid "\n", getpid());
96eb9b2b 185 if (qemu_write_full(fd, pidstr, strlen(pidstr)) != strlen(pidstr)) {
9e6bdef2
MAL
186 error_setg(errp, "Failed to write pid file");
187 goto fail_unlink;
188 }
189
190 return true;
191
192fail_unlink:
193 unlink(path);
194fail_close:
195 close(fd);
196 return false;
197}
198
c1b0b93b 199/* alloc shared memory pages */
8dbe22c6
DH
200void *qemu_anon_ram_alloc(size_t size, uint64_t *alignment, bool shared,
201 bool noreserve)
c1b0b93b 202{
8dbe22c6
DH
203 const uint32_t qemu_map_flags = (shared ? QEMU_MAP_SHARED : 0) |
204 (noreserve ? QEMU_MAP_NORESERVE : 0);
36b58628 205 size_t align = QEMU_VMALLOC_ALIGN;
b444f5c0 206 void *ptr = qemu_ram_mmap(-1, size, align, qemu_map_flags, 0);
36b58628 207
7dda5dc8 208 if (ptr == MAP_FAILED) {
39228250 209 return NULL;
c2a8238a 210 }
c2a8238a 211
a2b257d6
IM
212 if (alignment) {
213 *alignment = align;
214 }
c2dfc5ba 215
6eebf958 216 trace_qemu_anon_ram_alloc(size, ptr);
c7f4111a 217 return ptr;
c1b0b93b
JS
218}
219
e7a09b92
PB
220void qemu_anon_ram_free(void *ptr, size_t size)
221{
222 trace_qemu_anon_ram_free(ptr, size);
53adb9d4 223 qemu_ram_munmap(-1, ptr, size);
e7a09b92
PB
224}
225
ff5927ba 226void qemu_socket_set_block(int fd)
154b9a0c 227{
22e135fc 228 g_unix_set_fd_nonblocking(fd, false, NULL);
154b9a0c
PB
229}
230
ff5927ba 231int qemu_socket_try_set_nonblock(int fd)
9549e764 232{
22e135fc 233 return g_unix_set_fd_nonblocking(fd, true, NULL) ? 0 : -errno;
894022e6
LV
234}
235
ff5927ba 236void qemu_socket_set_nonblock(int fd)
894022e6
LV
237{
238 int f;
ff5927ba 239 f = qemu_socket_try_set_nonblock(fd);
894022e6 240 assert(f == 0);
9549e764
JS
241}
242
606600a1
SO
243int socket_set_fast_reuse(int fd)
244{
245 int val = 1, ret;
246
247 ret = setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
248 (const char *)&val, sizeof(val));
249
250 assert(ret == 0);
251
252 return ret;
253}
254
9549e764
JS
255void qemu_set_cloexec(int fd)
256{
257 int f;
258 f = fcntl(fd, F_GETFD);
7e6478e7
SS
259 assert(f != -1);
260 f = fcntl(fd, F_SETFD, f | FD_CLOEXEC);
261 assert(f != -1);
9549e764 262}
70e72ce4 263
e2ea3515 264char *
1fbf2665 265qemu_get_local_state_dir(void)
e2ea3515 266{
1fbf2665 267 return get_relocated_path(CONFIG_QEMU_LOCALSTATEDIR);
e2ea3515 268}
13401ba0
SH
269
270void qemu_set_tty_echo(int fd, bool echo)
271{
272 struct termios tty;
273
274 tcgetattr(fd, &tty);
275
276 if (echo) {
277 tty.c_lflag |= ECHO | ECHONL | ICANON | IEXTEN;
278 } else {
279 tty.c_lflag &= ~(ECHO | ECHONL | ICANON | IEXTEN);
280 }
281
282 tcsetattr(fd, TCSANOW, &tty);
283}
10f5bff6 284
29b838c0
DH
285#ifdef CONFIG_LINUX
286static void sigbus_handler(int signal, siginfo_t *siginfo, void *ctx)
287#else /* CONFIG_LINUX */
38183310 288static void sigbus_handler(int signal)
29b838c0 289#endif /* CONFIG_LINUX */
38183310 290{
1e356fc1 291 int i;
dba50678
DH
292
293 if (sigbus_memset_context) {
294 for (i = 0; i < sigbus_memset_context->num_threads; i++) {
295 MemsetThread *thread = &sigbus_memset_context->threads[i];
296
297 if (qemu_thread_is_self(&thread->pgthread)) {
298 siglongjmp(thread->env, 1);
1e356fc1
JK
299 }
300 }
301 }
29b838c0
DH
302
303#ifdef CONFIG_LINUX
304 /*
305 * We assume that the MCE SIGBUS handler could have been registered. We
306 * should never receive BUS_MCEERR_AO on any of our threads, but only on
307 * the main thread registered for PR_MCE_KILL_EARLY. Further, we should not
308 * receive BUS_MCEERR_AR triggered by action of other threads on one of
309 * our threads. So, no need to check for unrelated SIGBUS when seeing one
310 * for our threads.
311 *
312 * We will forward to the MCE handler, which will either handle the SIGBUS
313 * or reinstall the default SIGBUS handler and reraise the SIGBUS. The
314 * default SIGBUS handler will crash the process, so we don't care.
315 */
316 if (sigbus_oldact.sa_flags & SA_SIGINFO) {
317 sigbus_oldact.sa_sigaction(signal, siginfo, ctx);
318 return;
319 }
320#endif /* CONFIG_LINUX */
321 warn_report("os_mem_prealloc: unrelated SIGBUS detected and ignored");
38183310
PB
322}
323
1e356fc1
JK
324static void *do_touch_pages(void *arg)
325{
326 MemsetThread *memset_args = (MemsetThread *)arg;
1e356fc1 327 sigset_t set, oldset;
6c427ab9 328 int ret = 0;
1e356fc1 329
037fb5eb 330 /*
331 * On Linux, the page faults from the loop below can cause mmap_sem
332 * contention with allocation of the thread stacks. Do not start
333 * clearing until all threads have been created.
334 */
335 qemu_mutex_lock(&page_mutex);
dba50678 336 while (!memset_args->context->all_threads_created) {
037fb5eb 337 qemu_cond_wait(&page_cond, &page_mutex);
338 }
339 qemu_mutex_unlock(&page_mutex);
340
1e356fc1
JK
341 /* unblock SIGBUS */
342 sigemptyset(&set);
343 sigaddset(&set, SIGBUS);
344 pthread_sigmask(SIG_UNBLOCK, &set, &oldset);
345
346 if (sigsetjmp(memset_args->env, 1)) {
6c427ab9 347 ret = -EFAULT;
1e356fc1 348 } else {
e947d47d
SW
349 char *addr = memset_args->addr;
350 size_t numpages = memset_args->numpages;
351 size_t hpagesize = memset_args->hpagesize;
352 size_t i;
1e356fc1 353 for (i = 0; i < numpages; i++) {
9dc44aa5
DB
354 /*
355 * Read & write back the same value, so we don't
356 * corrupt existing user/app data that might be
357 * stored.
358 *
359 * 'volatile' to stop compiler optimizing this away
360 * to a no-op
9dc44aa5
DB
361 */
362 *(volatile char *)addr = *addr;
1e356fc1
JK
363 addr += hpagesize;
364 }
365 }
366 pthread_sigmask(SIG_SETMASK, &oldset, NULL);
6c427ab9 367 return (void *)(uintptr_t)ret;
1e356fc1
JK
368}
369
a384bfa3
DH
370static void *do_madv_populate_write_pages(void *arg)
371{
372 MemsetThread *memset_args = (MemsetThread *)arg;
373 const size_t size = memset_args->numpages * memset_args->hpagesize;
374 char * const addr = memset_args->addr;
375 int ret = 0;
376
377 /* See do_touch_pages(). */
378 qemu_mutex_lock(&page_mutex);
dba50678 379 while (!memset_args->context->all_threads_created) {
a384bfa3
DH
380 qemu_cond_wait(&page_cond, &page_mutex);
381 }
382 qemu_mutex_unlock(&page_mutex);
383
384 if (size && qemu_madvise(addr, size, QEMU_MADV_POPULATE_WRITE)) {
385 ret = -errno;
386 }
387 return (void *)(uintptr_t)ret;
388}
389
89aec641
DH
390static inline int get_memset_num_threads(size_t hpagesize, size_t numpages,
391 int smp_cpus)
dfd0dcc7
JK
392{
393 long host_procs = sysconf(_SC_NPROCESSORS_ONLN);
394 int ret = 1;
395
396 if (host_procs > 0) {
397 ret = MIN(MIN(host_procs, MAX_MEM_PREALLOC_THREAD_COUNT), smp_cpus);
398 }
89aec641
DH
399
400 /* Especially with gigantic pages, don't create more threads than pages. */
401 ret = MIN(ret, numpages);
402 /* Don't start threads to prealloc comparatively little memory. */
403 ret = MIN(ret, MAX(1, hpagesize * numpages / (64 * MiB)));
404
dfd0dcc7
JK
405 /* In case sysconf() fails, we fall back to single threaded */
406 return ret;
407}
408
6c427ab9 409static int touch_all_pages(char *area, size_t hpagesize, size_t numpages,
a384bfa3 410 int smp_cpus, bool use_madv_populate_write)
1e356fc1 411{
78b3f67a 412 static gsize initialized = 0;
dba50678 413 MemsetContext context = {
89aec641 414 .num_threads = get_memset_num_threads(hpagesize, numpages, smp_cpus),
dba50678 415 };
037fb5eb 416 size_t numpages_per_thread, leftover;
a384bfa3 417 void *(*touch_fn)(void *);
6c427ab9 418 int ret = 0, i = 0;
1e356fc1 419 char *addr = area;
1e356fc1 420
78b3f67a
PB
421 if (g_once_init_enter(&initialized)) {
422 qemu_mutex_init(&page_mutex);
423 qemu_cond_init(&page_cond);
424 g_once_init_leave(&initialized, 1);
425 }
426
a384bfa3 427 if (use_madv_populate_write) {
ac86e5c3
DH
428 /* Avoid creating a single thread for MADV_POPULATE_WRITE */
429 if (context.num_threads == 1) {
430 if (qemu_madvise(area, hpagesize * numpages,
431 QEMU_MADV_POPULATE_WRITE)) {
432 return -errno;
433 }
434 return 0;
435 }
a384bfa3
DH
436 touch_fn = do_madv_populate_write_pages;
437 } else {
438 touch_fn = do_touch_pages;
439 }
440
dba50678
DH
441 context.threads = g_new0(MemsetThread, context.num_threads);
442 numpages_per_thread = numpages / context.num_threads;
443 leftover = numpages % context.num_threads;
444 for (i = 0; i < context.num_threads; i++) {
445 context.threads[i].addr = addr;
446 context.threads[i].numpages = numpages_per_thread + (i < leftover);
447 context.threads[i].hpagesize = hpagesize;
448 context.threads[i].context = &context;
449 qemu_thread_create(&context.threads[i].pgthread, "touch_pages",
450 touch_fn, &context.threads[i],
1e356fc1 451 QEMU_THREAD_JOINABLE);
dba50678
DH
452 addr += context.threads[i].numpages * hpagesize;
453 }
454
455 if (!use_madv_populate_write) {
456 sigbus_memset_context = &context;
1e356fc1 457 }
278fb162
B
458
459 qemu_mutex_lock(&page_mutex);
dba50678 460 context.all_threads_created = true;
037fb5eb 461 qemu_cond_broadcast(&page_cond);
278fb162 462 qemu_mutex_unlock(&page_mutex);
037fb5eb 463
dba50678
DH
464 for (i = 0; i < context.num_threads; i++) {
465 int tmp = (uintptr_t)qemu_thread_join(&context.threads[i].pgthread);
6c427ab9
DH
466
467 if (tmp) {
468 ret = tmp;
469 }
1e356fc1 470 }
dba50678
DH
471
472 if (!use_madv_populate_write) {
473 sigbus_memset_context = NULL;
474 }
475 g_free(context.threads);
1e356fc1 476
6c427ab9 477 return ret;
1e356fc1
JK
478}
479
a384bfa3
DH
480static bool madv_populate_write_possible(char *area, size_t pagesize)
481{
482 return !qemu_madvise(area, pagesize, QEMU_MADV_POPULATE_WRITE) ||
483 errno != EINVAL;
484}
485
1e356fc1
JK
486void os_mem_prealloc(int fd, char *area, size_t memory, int smp_cpus,
487 Error **errp)
38183310 488{
a960d664 489 static gsize initialized;
b7bf8f56 490 int ret;
1e356fc1
JK
491 size_t hpagesize = qemu_fd_getpagesize(fd);
492 size_t numpages = DIV_ROUND_UP(memory, hpagesize);
a384bfa3 493 bool use_madv_populate_write;
29b838c0 494 struct sigaction act;
38183310 495
a384bfa3
DH
496 /*
497 * Sense on every invocation, as MADV_POPULATE_WRITE cannot be used for
498 * some special mappings, such as mapping /dev/mem.
499 */
500 use_madv_populate_write = madv_populate_write_possible(area, hpagesize);
501
502 if (!use_madv_populate_write) {
a960d664
DH
503 if (g_once_init_enter(&initialized)) {
504 qemu_mutex_init(&sigbus_mutex);
505 g_once_init_leave(&initialized, 1);
506 }
507
508 qemu_mutex_lock(&sigbus_mutex);
a384bfa3 509 memset(&act, 0, sizeof(act));
29b838c0
DH
510#ifdef CONFIG_LINUX
511 act.sa_sigaction = &sigbus_handler;
512 act.sa_flags = SA_SIGINFO;
513#else /* CONFIG_LINUX */
a384bfa3
DH
514 act.sa_handler = &sigbus_handler;
515 act.sa_flags = 0;
29b838c0 516#endif /* CONFIG_LINUX */
a384bfa3 517
29b838c0 518 ret = sigaction(SIGBUS, &act, &sigbus_oldact);
a384bfa3 519 if (ret) {
dd4fc605 520 qemu_mutex_unlock(&sigbus_mutex);
a384bfa3
DH
521 error_setg_errno(errp, errno,
522 "os_mem_prealloc: failed to install signal handler");
523 return;
524 }
38183310
PB
525 }
526
1e356fc1 527 /* touch pages simultaneously */
a384bfa3
DH
528 ret = touch_all_pages(area, hpagesize, numpages, smp_cpus,
529 use_madv_populate_write);
6c427ab9
DH
530 if (ret) {
531 error_setg_errno(errp, -ret,
532 "os_mem_prealloc: preallocating memory failed");
056b68af 533 }
38183310 534
a384bfa3 535 if (!use_madv_populate_write) {
29b838c0 536 ret = sigaction(SIGBUS, &sigbus_oldact, NULL);
a384bfa3
DH
537 if (ret) {
538 /* Terminate QEMU since it can't recover from error */
539 perror("os_mem_prealloc: failed to reinstall signal handler");
540 exit(1);
541 }
a960d664 542 qemu_mutex_unlock(&sigbus_mutex);
b7bf8f56 543 }
38183310 544}
d57e4e48 545
7dc9ae43
MP
546char *qemu_get_pid_name(pid_t pid)
547{
548 char *name = NULL;
549
550#if defined(__FreeBSD__)
551 /* BSDs don't have /proc, but they provide a nice substitute */
552 struct kinfo_proc *proc = kinfo_getproc(pid);
553
554 if (proc) {
555 name = g_strdup(proc->ki_comm);
556 free(proc);
557 }
558#else
559 /* Assume a system with reasonable procfs */
560 char *pid_path;
561 size_t len;
562
563 pid_path = g_strdup_printf("/proc/%d/cmdline", pid);
564 g_file_get_contents(pid_path, &name, &len, NULL);
565 g_free(pid_path);
566#endif
567
568 return name;
569}
570
571
57cb38b3
DB
572pid_t qemu_fork(Error **errp)
573{
574 sigset_t oldmask, newmask;
575 struct sigaction sig_action;
576 int saved_errno;
577 pid_t pid;
578
579 /*
580 * Need to block signals now, so that child process can safely
581 * kill off caller's signal handlers without a race.
582 */
583 sigfillset(&newmask);
584 if (pthread_sigmask(SIG_SETMASK, &newmask, &oldmask) != 0) {
585 error_setg_errno(errp, errno,
586 "cannot block signals");
587 return -1;
588 }
589
590 pid = fork();
591 saved_errno = errno;
592
593 if (pid < 0) {
594 /* attempt to restore signal mask, but ignore failure, to
595 * avoid obscuring the fork failure */
596 (void)pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
597 error_setg_errno(errp, saved_errno,
598 "cannot fork child process");
599 errno = saved_errno;
600 return -1;
601 } else if (pid) {
602 /* parent process */
603
604 /* Restore our original signal mask now that the child is
605 * safely running. Only documented failures are EFAULT (not
606 * possible, since we are using just-grabbed mask) or EINVAL
607 * (not possible, since we are using correct arguments). */
608 (void)pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
609 } else {
610 /* child process */
611 size_t i;
612
613 /* Clear out all signal handlers from parent so nothing
614 * unexpected can happen in our child once we unblock
615 * signals */
616 sig_action.sa_handler = SIG_DFL;
617 sig_action.sa_flags = 0;
618 sigemptyset(&sig_action.sa_mask);
619
620 for (i = 1; i < NSIG; i++) {
621 /* Only possible errors are EFAULT or EINVAL The former
622 * won't happen, the latter we expect, so no need to check
623 * return value */
624 (void)sigaction(i, &sig_action, NULL);
625 }
626
627 /* Unmask all signals in child, since we've no idea what the
628 * caller's done with their signal mask and don't want to
629 * propagate that to children */
630 sigemptyset(&newmask);
631 if (pthread_sigmask(SIG_SETMASK, &newmask, NULL) != 0) {
632 Error *local_err = NULL;
633 error_setg_errno(&local_err, errno,
634 "cannot unblock signals");
635 error_report_err(local_err);
636 _exit(1);
637 }
638 }
639 return pid;
640}
8737d9e0
PL
641
642void *qemu_alloc_stack(size_t *sz)
643{
644 void *ptr, *guardpage;
fc3d1bad 645 int flags;
7d992e4d
PL
646#ifdef CONFIG_DEBUG_STACK_USAGE
647 void *ptr2;
648#endif
8e3b0cbb 649 size_t pagesz = qemu_real_host_page_size();
8737d9e0
PL
650#ifdef _SC_THREAD_STACK_MIN
651 /* avoid stacks smaller than _SC_THREAD_STACK_MIN */
652 long min_stack_sz = sysconf(_SC_THREAD_STACK_MIN);
653 *sz = MAX(MAX(min_stack_sz, 0), *sz);
654#endif
655 /* adjust stack size to a multiple of the page size */
656 *sz = ROUND_UP(*sz, pagesz);
657 /* allocate one extra page for the guard page */
658 *sz += pagesz;
659
fc3d1bad
BS
660 flags = MAP_PRIVATE | MAP_ANONYMOUS;
661#if defined(MAP_STACK) && defined(__OpenBSD__)
662 /* Only enable MAP_STACK on OpenBSD. Other OS's such as
663 * Linux/FreeBSD/NetBSD have a flag with the same name
664 * but have differing functionality. OpenBSD will SEGV
665 * if it spots execution with a stack pointer pointing
666 * at memory that was not allocated with MAP_STACK.
667 */
668 flags |= MAP_STACK;
669#endif
670
671 ptr = mmap(NULL, *sz, PROT_READ | PROT_WRITE, flags, -1, 0);
8737d9e0 672 if (ptr == MAP_FAILED) {
e916a6e8 673 perror("failed to allocate memory for stack");
8737d9e0
PL
674 abort();
675 }
676
677#if defined(HOST_IA64)
678 /* separate register stack */
679 guardpage = ptr + (((*sz - pagesz) / 2) & ~pagesz);
680#elif defined(HOST_HPPA)
681 /* stack grows up */
682 guardpage = ptr + *sz - pagesz;
683#else
684 /* stack grows down */
685 guardpage = ptr;
686#endif
687 if (mprotect(guardpage, pagesz, PROT_NONE) != 0) {
e916a6e8 688 perror("failed to set up stack guard page");
8737d9e0
PL
689 abort();
690 }
691
7d992e4d
PL
692#ifdef CONFIG_DEBUG_STACK_USAGE
693 for (ptr2 = ptr + pagesz; ptr2 < ptr + *sz; ptr2 += sizeof(uint32_t)) {
694 *(uint32_t *)ptr2 = 0xdeadbeaf;
695 }
696#endif
697
8737d9e0
PL
698 return ptr;
699}
700
7d992e4d
PL
701#ifdef CONFIG_DEBUG_STACK_USAGE
702static __thread unsigned int max_stack_usage;
703#endif
704
8737d9e0
PL
705void qemu_free_stack(void *stack, size_t sz)
706{
7d992e4d
PL
707#ifdef CONFIG_DEBUG_STACK_USAGE
708 unsigned int usage;
709 void *ptr;
710
8e3b0cbb 711 for (ptr = stack + qemu_real_host_page_size(); ptr < stack + sz;
7d992e4d
PL
712 ptr += sizeof(uint32_t)) {
713 if (*(uint32_t *)ptr != 0xdeadbeaf) {
714 break;
715 }
716 }
717 usage = sz - (uintptr_t) (ptr - stack);
718 if (usage > max_stack_usage) {
719 error_report("thread %d max stack usage increased from %u to %u",
720 qemu_get_thread_id(), max_stack_usage, usage);
721 max_stack_usage = usage;
722 }
723#endif
724
8737d9e0
PL
725 munmap(stack, sz);
726}
d98d4072 727
c905a368
DB
728/*
729 * Disable CFI checks.
730 * We are going to call a signal hander directly. Such handler may or may not
731 * have been defined in our binary, so there's no guarantee that the pointer
732 * used to set the handler is a cfi-valid pointer. Since the handlers are
733 * stored in kernel memory, changing the handler to an attacker-defined
734 * function requires being able to call a sigaction() syscall,
735 * which is not as easy as overwriting a pointer in memory.
736 */
737QEMU_DISABLE_CFI
d98d4072
PB
738void sigaction_invoke(struct sigaction *action,
739 struct qemu_signalfd_siginfo *info)
740{
02ffa034 741 siginfo_t si = {};
d98d4072
PB
742 si.si_signo = info->ssi_signo;
743 si.si_errno = info->ssi_errno;
744 si.si_code = info->ssi_code;
745
746 /* Convert the minimal set of fields defined by POSIX.
747 * Positive si_code values are reserved for kernel-generated
748 * signals, where the valid siginfo fields are determined by
749 * the signal number. But according to POSIX, it is unspecified
750 * whether SI_USER and SI_QUEUE have values less than or equal to
751 * zero.
752 */
753 if (info->ssi_code == SI_USER || info->ssi_code == SI_QUEUE ||
754 info->ssi_code <= 0) {
755 /* SIGTERM, etc. */
756 si.si_pid = info->ssi_pid;
757 si.si_uid = info->ssi_uid;
758 } else if (info->ssi_signo == SIGILL || info->ssi_signo == SIGFPE ||
759 info->ssi_signo == SIGSEGV || info->ssi_signo == SIGBUS) {
760 si.si_addr = (void *)(uintptr_t)info->ssi_addr;
761 } else if (info->ssi_signo == SIGCHLD) {
762 si.si_pid = info->ssi_pid;
763 si.si_status = info->ssi_status;
764 si.si_uid = info->ssi_uid;
d98d4072
PB
765 }
766 action->sa_sigaction(info->ssi_signo, &si, NULL);
767}
e47f4765 768
ad06ef0e
AB
769size_t qemu_get_host_physmem(void)
770{
771#ifdef _SC_PHYS_PAGES
772 long pages = sysconf(_SC_PHYS_PAGES);
773 if (pages > 0) {
8e3b0cbb 774 if (pages > SIZE_MAX / qemu_real_host_page_size()) {
ad06ef0e
AB
775 return SIZE_MAX;
776 } else {
8e3b0cbb 777 return pages * qemu_real_host_page_size();
ad06ef0e
AB
778 }
779 }
780#endif
781 return 0;
782}
e9c4e0a8 783
73991a92
MAL
784int qemu_msync(void *addr, size_t length, int fd)
785{
786 size_t align_mask = ~(qemu_real_host_page_size() - 1);
787
788 /**
789 * There are no strict reqs as per the length of mapping
790 * to be synced. Still the length needs to follow the address
791 * alignment changes. Additionally - round the size to the multiple
792 * of PAGE_SIZE
793 */
794 length += ((uintptr_t)addr & (qemu_real_host_page_size() - 1));
795 length = (length + ~align_mask) & align_mask;
796
797 addr = (void *)((uintptr_t)addr & align_mask);
798
799 return msync(addr, length, MS_SYNC);
800}