4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2010 Red Hat, Inc.
7 * QEMU library functions on POSIX which are shared between QEMU and
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:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
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
29 #include "qemu/osdep.h"
32 #include <glib/gprintf.h>
34 #include "sysemu/sysemu.h"
36 #include "qapi/error.h"
37 #include "qemu/sockets.h"
39 #include <sys/signal.h>
40 #include "qemu/cutils.h"
43 #include <sys/syscall.h>
47 #include <sys/sysctl.h>
52 #include "qemu/mmap-alloc.h"
54 #ifdef CONFIG_DEBUG_STACK_USAGE
55 #include "qemu/error-report.h"
58 int qemu_get_thread_id(void)
60 #if defined(__linux__)
61 return syscall(SYS_gettid
);
67 int qemu_daemon(int nochdir
, int noclose
)
69 return daemon(nochdir
, noclose
);
72 void *qemu_oom_check(void *ptr
)
75 fprintf(stderr
, "Failed to allocate memory: %s\n", strerror(errno
));
81 void *qemu_try_memalign(size_t alignment
, size_t size
)
85 if (alignment
< sizeof(void*)) {
86 alignment
= sizeof(void*);
89 #if defined(_POSIX_C_SOURCE) && !defined(__sun__)
91 ret
= posix_memalign(&ptr
, alignment
, size
);
96 #elif defined(CONFIG_BSD)
99 ptr
= memalign(alignment
, size
);
101 trace_qemu_memalign(alignment
, size
, ptr
);
105 void *qemu_memalign(size_t alignment
, size_t size
)
107 return qemu_oom_check(qemu_try_memalign(alignment
, size
));
110 /* alloc shared memory pages */
111 void *qemu_anon_ram_alloc(size_t size
, uint64_t *alignment
)
113 size_t align
= QEMU_VMALLOC_ALIGN
;
114 void *ptr
= qemu_ram_mmap(-1, size
, align
, false);
116 if (ptr
== MAP_FAILED
) {
124 trace_qemu_anon_ram_alloc(size
, ptr
);
128 void qemu_vfree(void *ptr
)
130 trace_qemu_vfree(ptr
);
134 void qemu_anon_ram_free(void *ptr
, size_t size
)
136 trace_qemu_anon_ram_free(ptr
, size
);
137 qemu_ram_munmap(ptr
, size
);
140 void qemu_set_block(int fd
)
143 f
= fcntl(fd
, F_GETFL
);
144 fcntl(fd
, F_SETFL
, f
& ~O_NONBLOCK
);
147 void qemu_set_nonblock(int fd
)
150 f
= fcntl(fd
, F_GETFL
);
151 fcntl(fd
, F_SETFL
, f
| O_NONBLOCK
);
154 int socket_set_fast_reuse(int fd
)
158 ret
= setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
,
159 (const char *)&val
, sizeof(val
));
166 void qemu_set_cloexec(int fd
)
169 f
= fcntl(fd
, F_GETFD
);
170 fcntl(fd
, F_SETFD
, f
| FD_CLOEXEC
);
174 * Creates a pipe with FD_CLOEXEC set on both file descriptors
176 int qemu_pipe(int pipefd
[2])
181 ret
= pipe2(pipefd
, O_CLOEXEC
);
182 if (ret
!= -1 || errno
!= ENOSYS
) {
188 qemu_set_cloexec(pipefd
[0]);
189 qemu_set_cloexec(pipefd
[1]);
195 int qemu_utimens(const char *path
, const struct timespec
*times
)
197 struct timeval tv
[2], tv_now
;
200 #ifdef CONFIG_UTIMENSAT
203 ret
= utimensat(AT_FDCWD
, path
, times
, AT_SYMLINK_NOFOLLOW
);
204 if (ret
!= -1 || errno
!= ENOSYS
) {
208 /* Fallback: use utimes() instead of utimensat() */
210 /* happy if special cases */
211 if (times
[0].tv_nsec
== UTIME_OMIT
&& times
[1].tv_nsec
== UTIME_OMIT
) {
214 if (times
[0].tv_nsec
== UTIME_NOW
&& times
[1].tv_nsec
== UTIME_NOW
) {
215 return utimes(path
, NULL
);
218 /* prepare for hard cases */
219 if (times
[0].tv_nsec
== UTIME_NOW
|| times
[1].tv_nsec
== UTIME_NOW
) {
220 gettimeofday(&tv_now
, NULL
);
222 if (times
[0].tv_nsec
== UTIME_OMIT
|| times
[1].tv_nsec
== UTIME_OMIT
) {
226 for (i
= 0; i
< 2; i
++) {
227 if (times
[i
].tv_nsec
== UTIME_NOW
) {
228 tv
[i
].tv_sec
= tv_now
.tv_sec
;
229 tv
[i
].tv_usec
= tv_now
.tv_usec
;
230 } else if (times
[i
].tv_nsec
== UTIME_OMIT
) {
231 tv
[i
].tv_sec
= (i
== 0) ? st
.st_atime
: st
.st_mtime
;
234 tv
[i
].tv_sec
= times
[i
].tv_sec
;
235 tv
[i
].tv_usec
= times
[i
].tv_nsec
/ 1000;
239 return utimes(path
, &tv
[0]);
243 qemu_get_local_state_pathname(const char *relative_pathname
)
245 return g_strdup_printf("%s/%s", CONFIG_QEMU_LOCALSTATEDIR
,
249 void qemu_set_tty_echo(int fd
, bool echo
)
256 tty
.c_lflag
|= ECHO
| ECHONL
| ICANON
| IEXTEN
;
258 tty
.c_lflag
&= ~(ECHO
| ECHONL
| ICANON
| IEXTEN
);
261 tcsetattr(fd
, TCSANOW
, &tty
);
264 static char exec_dir
[PATH_MAX
];
266 void qemu_init_exec_dir(const char *argv0
)
272 assert(!exec_dir
[0]);
274 #if defined(__linux__)
277 len
= readlink("/proc/self/exe", buf
, sizeof(buf
) - 1);
283 #elif defined(__FreeBSD__)
285 static int mib
[4] = {CTL_KERN
, KERN_PROC
, KERN_PROC_PATHNAME
, -1};
286 size_t len
= sizeof(buf
) - 1;
289 if (!sysctl(mib
, ARRAY_SIZE(mib
), buf
, &len
, NULL
, 0) &&
291 buf
[sizeof(buf
) - 1] = '\0';
296 /* If we don't have any way of figuring out the actual executable
297 location then try argv[0]. */
302 p
= realpath(argv0
, buf
);
307 dir
= g_path_get_dirname(p
);
309 pstrcpy(exec_dir
, sizeof(exec_dir
), dir
);
314 char *qemu_get_exec_dir(void)
316 return g_strdup(exec_dir
);
319 static sigjmp_buf sigjump
;
321 static void sigbus_handler(int signal
)
323 siglongjmp(sigjump
, 1);
326 void os_mem_prealloc(int fd
, char *area
, size_t memory
, Error
**errp
)
329 struct sigaction act
, oldact
;
330 sigset_t set
, oldset
;
332 memset(&act
, 0, sizeof(act
));
333 act
.sa_handler
= &sigbus_handler
;
336 ret
= sigaction(SIGBUS
, &act
, &oldact
);
338 error_setg_errno(errp
, errno
,
339 "os_mem_prealloc: failed to install signal handler");
345 sigaddset(&set
, SIGBUS
);
346 pthread_sigmask(SIG_UNBLOCK
, &set
, &oldset
);
348 if (sigsetjmp(sigjump
, 1)) {
349 error_setg(errp
, "os_mem_prealloc: Insufficient free host memory "
350 "pages available to allocate guest RAM\n");
353 size_t hpagesize
= qemu_fd_getpagesize(fd
);
354 size_t numpages
= DIV_ROUND_UP(memory
, hpagesize
);
356 /* MAP_POPULATE silently ignores failures */
357 for (i
= 0; i
< numpages
; i
++) {
358 memset(area
+ (hpagesize
* i
), 0, 1);
362 ret
= sigaction(SIGBUS
, &oldact
, NULL
);
364 /* Terminate QEMU since it can't recover from error */
365 perror("os_mem_prealloc: failed to reinstall signal handler");
368 pthread_sigmask(SIG_SETMASK
, &oldset
, NULL
);
372 static struct termios oldtty
;
374 static void term_exit(void)
376 tcsetattr(0, TCSANOW
, &oldtty
);
379 static void term_init(void)
386 tty
.c_iflag
&= ~(IGNBRK
|BRKINT
|PARMRK
|ISTRIP
387 |INLCR
|IGNCR
|ICRNL
|IXON
);
388 tty
.c_oflag
|= OPOST
;
389 tty
.c_lflag
&= ~(ECHO
|ECHONL
|ICANON
|IEXTEN
);
390 tty
.c_cflag
&= ~(CSIZE
|PARENB
);
395 tcsetattr(0, TCSANOW
, &tty
);
400 int qemu_read_password(char *buf
, int buf_size
)
405 printf("password: ");
410 ret
= read(0, &ch
, 1);
412 if (errno
== EAGAIN
|| errno
== EINTR
) {
417 } else if (ret
== 0) {
426 if (i
< (buf_size
- 1)) {
438 char *qemu_get_pid_name(pid_t pid
)
442 #if defined(__FreeBSD__)
443 /* BSDs don't have /proc, but they provide a nice substitute */
444 struct kinfo_proc
*proc
= kinfo_getproc(pid
);
447 name
= g_strdup(proc
->ki_comm
);
451 /* Assume a system with reasonable procfs */
455 pid_path
= g_strdup_printf("/proc/%d/cmdline", pid
);
456 g_file_get_contents(pid_path
, &name
, &len
, NULL
);
464 pid_t
qemu_fork(Error
**errp
)
466 sigset_t oldmask
, newmask
;
467 struct sigaction sig_action
;
472 * Need to block signals now, so that child process can safely
473 * kill off caller's signal handlers without a race.
475 sigfillset(&newmask
);
476 if (pthread_sigmask(SIG_SETMASK
, &newmask
, &oldmask
) != 0) {
477 error_setg_errno(errp
, errno
,
478 "cannot block signals");
486 /* attempt to restore signal mask, but ignore failure, to
487 * avoid obscuring the fork failure */
488 (void)pthread_sigmask(SIG_SETMASK
, &oldmask
, NULL
);
489 error_setg_errno(errp
, saved_errno
,
490 "cannot fork child process");
496 /* Restore our original signal mask now that the child is
497 * safely running. Only documented failures are EFAULT (not
498 * possible, since we are using just-grabbed mask) or EINVAL
499 * (not possible, since we are using correct arguments). */
500 (void)pthread_sigmask(SIG_SETMASK
, &oldmask
, NULL
);
505 /* Clear out all signal handlers from parent so nothing
506 * unexpected can happen in our child once we unblock
508 sig_action
.sa_handler
= SIG_DFL
;
509 sig_action
.sa_flags
= 0;
510 sigemptyset(&sig_action
.sa_mask
);
512 for (i
= 1; i
< NSIG
; i
++) {
513 /* Only possible errors are EFAULT or EINVAL The former
514 * won't happen, the latter we expect, so no need to check
516 (void)sigaction(i
, &sig_action
, NULL
);
519 /* Unmask all signals in child, since we've no idea what the
520 * caller's done with their signal mask and don't want to
521 * propagate that to children */
522 sigemptyset(&newmask
);
523 if (pthread_sigmask(SIG_SETMASK
, &newmask
, NULL
) != 0) {
524 Error
*local_err
= NULL
;
525 error_setg_errno(&local_err
, errno
,
526 "cannot unblock signals");
527 error_report_err(local_err
);
534 void *qemu_alloc_stack(size_t *sz
)
536 void *ptr
, *guardpage
;
537 #ifdef CONFIG_DEBUG_STACK_USAGE
540 size_t pagesz
= getpagesize();
541 #ifdef _SC_THREAD_STACK_MIN
542 /* avoid stacks smaller than _SC_THREAD_STACK_MIN */
543 long min_stack_sz
= sysconf(_SC_THREAD_STACK_MIN
);
544 *sz
= MAX(MAX(min_stack_sz
, 0), *sz
);
546 /* adjust stack size to a multiple of the page size */
547 *sz
= ROUND_UP(*sz
, pagesz
);
548 /* allocate one extra page for the guard page */
551 ptr
= mmap(NULL
, *sz
, PROT_READ
| PROT_WRITE
,
552 MAP_PRIVATE
| MAP_ANONYMOUS
, -1, 0);
553 if (ptr
== MAP_FAILED
) {
557 #if defined(HOST_IA64)
558 /* separate register stack */
559 guardpage
= ptr
+ (((*sz
- pagesz
) / 2) & ~pagesz
);
560 #elif defined(HOST_HPPA)
562 guardpage
= ptr
+ *sz
- pagesz
;
564 /* stack grows down */
567 if (mprotect(guardpage
, pagesz
, PROT_NONE
) != 0) {
571 #ifdef CONFIG_DEBUG_STACK_USAGE
572 for (ptr2
= ptr
+ pagesz
; ptr2
< ptr
+ *sz
; ptr2
+= sizeof(uint32_t)) {
573 *(uint32_t *)ptr2
= 0xdeadbeaf;
580 #ifdef CONFIG_DEBUG_STACK_USAGE
581 static __thread
unsigned int max_stack_usage
;
584 void qemu_free_stack(void *stack
, size_t sz
)
586 #ifdef CONFIG_DEBUG_STACK_USAGE
590 for (ptr
= stack
+ getpagesize(); ptr
< stack
+ sz
;
591 ptr
+= sizeof(uint32_t)) {
592 if (*(uint32_t *)ptr
!= 0xdeadbeaf) {
596 usage
= sz
- (uintptr_t) (ptr
- stack
);
597 if (usage
> max_stack_usage
) {
598 error_report("thread %d max stack usage increased from %u to %u",
599 qemu_get_thread_id(), max_stack_usage
, usage
);
600 max_stack_usage
= usage
;