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 29 #include "qemu/osdep.h" 30 #include <termios.h> 31 32 #include <glib/gprintf.h> 33 34 #include "qemu-common.h" 35 #include "sysemu/sysemu.h" 36 #include "trace.h" 37 #include "qapi/error.h" 38 #include "qemu/sockets.h" 39 #include "qemu/thread.h" 40 #include <libgen.h> 41 #include <sys/signal.h> 42 #include "qemu/cutils.h" 43 44 #ifdef CONFIG_LINUX 45 #include <sys/syscall.h> 46 #endif 47 48 #ifdef __FreeBSD__ 49 #include <sys/sysctl.h> 50 #include <sys/user.h> 51 #include <libutil.h> 52 #endif 53 54 #ifdef __NetBSD__ 55 #include <sys/sysctl.h> 56 #endif 57 58 #include "qemu/mmap-alloc.h" 59 60 #ifdef CONFIG_DEBUG_STACK_USAGE 61 #include "qemu/error-report.h" 62 #endif 63 64 #define MAX_MEM_PREALLOC_THREAD_COUNT 16 65 66 struct MemsetThread { 67 char *addr; 68 size_t numpages; 69 size_t hpagesize; 70 QemuThread pgthread; 71 sigjmp_buf env; 72 }; 73 typedef struct MemsetThread MemsetThread; 74 75 static MemsetThread *memset_thread; 76 static int memset_num_threads; 77 static bool memset_thread_failed; 78 79 static QemuMutex page_mutex; 80 static QemuCond page_cond; 81 static bool threads_created_flag; 82 83 int qemu_get_thread_id(void) 84 { 85 #if defined(__linux__) 86 return syscall(SYS_gettid); 87 #else 88 return getpid(); 89 #endif 90 } 91 92 int qemu_daemon(int nochdir, int noclose) 93 { 94 return daemon(nochdir, noclose); 95 } 96 97 bool 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; 104 struct flock lock = { 105 .l_type = F_WRLCK, 106 .l_whence = SEEK_SET, 107 .l_len = 0, 108 }; 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 121 if (fcntl(fd, F_SETLK, &lock)) { 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 163 fail_unlink: 164 unlink(path); 165 fail_close: 166 close(fd); 167 return false; 168 } 169 170 void *qemu_oom_check(void *ptr) 171 { 172 if (ptr == NULL) { 173 fprintf(stderr, "Failed to allocate memory: %s\n", strerror(errno)); 174 abort(); 175 } 176 return ptr; 177 } 178 179 void *qemu_try_memalign(size_t alignment, size_t size) 180 { 181 void *ptr; 182 183 if (alignment < sizeof(void*)) { 184 alignment = sizeof(void*); 185 } 186 187 #if defined(CONFIG_POSIX_MEMALIGN) 188 int ret; 189 ret = posix_memalign(&ptr, alignment, size); 190 if (ret != 0) { 191 errno = ret; 192 ptr = NULL; 193 } 194 #elif defined(CONFIG_BSD) 195 ptr = valloc(size); 196 #else 197 ptr = memalign(alignment, size); 198 #endif 199 trace_qemu_memalign(alignment, size, ptr); 200 return ptr; 201 } 202 203 void *qemu_memalign(size_t alignment, size_t size) 204 { 205 return qemu_oom_check(qemu_try_memalign(alignment, size)); 206 } 207 208 /* alloc shared memory pages */ 209 void *qemu_anon_ram_alloc(size_t size, uint64_t *alignment, bool shared) 210 { 211 size_t align = QEMU_VMALLOC_ALIGN; 212 void *ptr = qemu_ram_mmap(-1, size, align, shared, false); 213 214 if (ptr == MAP_FAILED) { 215 return NULL; 216 } 217 218 if (alignment) { 219 *alignment = align; 220 } 221 222 trace_qemu_anon_ram_alloc(size, ptr); 223 return ptr; 224 } 225 226 void qemu_vfree(void *ptr) 227 { 228 trace_qemu_vfree(ptr); 229 free(ptr); 230 } 231 232 void qemu_anon_ram_free(void *ptr, size_t size) 233 { 234 trace_qemu_anon_ram_free(ptr, size); 235 qemu_ram_munmap(-1, ptr, size); 236 } 237 238 void qemu_set_block(int fd) 239 { 240 int f; 241 f = fcntl(fd, F_GETFL); 242 assert(f != -1); 243 f = fcntl(fd, F_SETFL, f & ~O_NONBLOCK); 244 assert(f != -1); 245 } 246 247 void qemu_set_nonblock(int fd) 248 { 249 int f; 250 f = fcntl(fd, F_GETFL); 251 assert(f != -1); 252 f = fcntl(fd, F_SETFL, f | O_NONBLOCK); 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 264 assert(f != -1); 265 #endif 266 } 267 268 int 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 280 void qemu_set_cloexec(int fd) 281 { 282 int f; 283 f = fcntl(fd, F_GETFD); 284 assert(f != -1); 285 f = fcntl(fd, F_SETFD, f | FD_CLOEXEC); 286 assert(f != -1); 287 } 288 289 /* 290 * Creates a pipe with FD_CLOEXEC set on both file descriptors 291 */ 292 int 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 } 310 311 char * 312 qemu_get_local_state_pathname(const char *relative_pathname) 313 { 314 return g_strdup_printf("%s/%s", CONFIG_QEMU_LOCALSTATEDIR, 315 relative_pathname); 316 } 317 318 void 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 } 332 333 static char exec_dir[PATH_MAX]; 334 335 void 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 } 352 #elif defined(__FreeBSD__) \ 353 || (defined(__NetBSD__) && defined(KERN_PROC_PATHNAME)) 354 { 355 #if defined(__FreeBSD__) 356 static int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1}; 357 #else 358 static int mib[4] = {CTL_KERN, KERN_PROC_ARGS, -1, KERN_PROC_PATHNAME}; 359 #endif 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 } 381 dir = g_path_get_dirname(p); 382 383 pstrcpy(exec_dir, sizeof(exec_dir), dir); 384 385 g_free(dir); 386 } 387 388 char *qemu_get_exec_dir(void) 389 { 390 return g_strdup(exec_dir); 391 } 392 393 static void sigbus_handler(int signal) 394 { 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 } 403 } 404 405 static void *do_touch_pages(void *arg) 406 { 407 MemsetThread *memset_args = (MemsetThread *)arg; 408 sigset_t set, oldset; 409 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 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 { 429 char *addr = memset_args->addr; 430 size_t numpages = memset_args->numpages; 431 size_t hpagesize = memset_args->hpagesize; 432 size_t i; 433 for (i = 0; i < numpages; i++) { 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; 447 addr += hpagesize; 448 } 449 } 450 pthread_sigmask(SIG_SETMASK, &oldset, NULL); 451 return NULL; 452 } 453 454 static 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 466 static bool touch_all_pages(char *area, size_t hpagesize, size_t numpages, 467 int smp_cpus) 468 { 469 static gsize initialized = 0; 470 size_t numpages_per_thread, leftover; 471 char *addr = area; 472 int i = 0; 473 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 480 memset_thread_failed = false; 481 threads_created_flag = false; 482 memset_num_threads = get_memset_num_threads(smp_cpus); 483 memset_thread = g_new0(MemsetThread, memset_num_threads); 484 numpages_per_thread = numpages / memset_num_threads; 485 leftover = numpages % memset_num_threads; 486 for (i = 0; i < memset_num_threads; i++) { 487 memset_thread[i].addr = addr; 488 memset_thread[i].numpages = numpages_per_thread + (i < leftover); 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); 493 addr += memset_thread[i].numpages * hpagesize; 494 } 495 threads_created_flag = true; 496 qemu_cond_broadcast(&page_cond); 497 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 507 void os_mem_prealloc(int fd, char *area, size_t memory, int smp_cpus, 508 Error **errp) 509 { 510 int ret; 511 struct sigaction act, oldact; 512 size_t hpagesize = qemu_fd_getpagesize(fd); 513 size_t numpages = DIV_ROUND_UP(memory, hpagesize); 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) { 521 error_setg_errno(errp, errno, 522 "os_mem_prealloc: failed to install signal handler"); 523 return; 524 } 525 526 /* touch pages simultaneously */ 527 if (touch_all_pages(area, hpagesize, numpages, smp_cpus)) { 528 error_setg(errp, "os_mem_prealloc: Insufficient free host memory " 529 "pages available to allocate guest RAM"); 530 } 531 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); 537 } 538 } 539 540 char *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 566 pid_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 } 635 636 void *qemu_alloc_stack(size_t *sz) 637 { 638 void *ptr, *guardpage; 639 int flags; 640 #ifdef CONFIG_DEBUG_STACK_USAGE 641 void *ptr2; 642 #endif 643 size_t pagesz = qemu_real_host_page_size; 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 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); 666 if (ptr == MAP_FAILED) { 667 perror("failed to allocate memory for stack"); 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) { 682 perror("failed to set up stack guard page"); 683 abort(); 684 } 685 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 692 return ptr; 693 } 694 695 #ifdef CONFIG_DEBUG_STACK_USAGE 696 static __thread unsigned int max_stack_usage; 697 #endif 698 699 void qemu_free_stack(void *stack, size_t sz) 700 { 701 #ifdef CONFIG_DEBUG_STACK_USAGE 702 unsigned int usage; 703 void *ptr; 704 705 for (ptr = stack + qemu_real_host_page_size; ptr < stack + sz; 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 719 munmap(stack, sz); 720 } 721 722 void sigaction_invoke(struct sigaction *action, 723 struct qemu_signalfd_siginfo *info) 724 { 725 siginfo_t si = {}; 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; 749 } 750 action->sa_sigaction(info->ssi_signo, &si, NULL); 751 } 752