4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2013-14 Stacey Son
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include <sys/resource.h>
23 #include <sys/sysctl.h>
25 #include "qemu/help-texts.h"
26 #include "qemu/units.h"
27 #include "qemu/accel.h"
28 #include "qemu-version.h"
29 #include <machine/trap.h>
31 #include "qapi/error.h"
33 #include "qemu/config-file.h"
34 #include "qemu/error-report.h"
35 #include "qemu/path.h"
36 #include "qemu/help_option.h"
37 #include "qemu/module.h"
38 #include "qemu/plugin.h"
39 #include "user/guest-base.h"
40 #include "user/page-protection.h"
41 #include "tcg/startup.h"
42 #include "qemu/timer.h"
43 #include "qemu/envlist.h"
44 #include "qemu/cutils.h"
46 #include "trace/control.h"
47 #include "crypto/init.h"
48 #include "qemu/guest-random.h"
49 #include "gdbstub/user.h"
50 #include "exec/page-vary.h"
53 #include "target_arch_cpu.h"
57 * TODO: Remove these and rely only on qemu_real_host_page_size().
59 uintptr_t qemu_host_page_size
;
60 intptr_t qemu_host_page_mask
;
62 static bool opt_one_insn_per_tb
;
63 static unsigned long opt_tb_size
;
67 * When running 32-on-64 we should make sure we can fit all of the possible
68 * guest address space into a contiguous chunk of virtual host memory.
70 * This way we will never overlap with our own libraries or binaries or stack
71 * or anything else that QEMU maps.
73 * Many cpus reserve the high bit (or more than one for some 64-bit cpus)
74 * of the address for the kernel. Some cpus rely on this and user space
75 * uses the high bit(s) for pointer tagging and the like. For them, we
76 * must preserve the expected address space.
78 #ifndef MAX_RESERVED_VA
79 # if HOST_LONG_BITS > TARGET_VIRT_ADDR_SPACE_BITS
80 # if TARGET_VIRT_ADDR_SPACE_BITS == 32 && \
81 (TARGET_LONG_BITS == 32 || defined(TARGET_ABI32))
82 # define MAX_RESERVED_VA(CPU) 0xfffffffful
84 # define MAX_RESERVED_VA(CPU) ((1ul << TARGET_VIRT_ADDR_SPACE_BITS) - 1)
87 # define MAX_RESERVED_VA(CPU) 0
91 unsigned long reserved_va
;
92 unsigned long guest_addr_max
;
94 const char *interp_prefix
= CONFIG_QEMU_INTERP_PREFIX
;
95 const char *qemu_uname_release
;
97 unsigned long target_maxtsiz
= TARGET_MAXTSIZ
; /* max text size */
98 unsigned long target_dfldsiz
= TARGET_DFLDSIZ
; /* initial data size limit */
99 unsigned long target_maxdsiz
= TARGET_MAXDSIZ
; /* max data size */
100 unsigned long target_dflssiz
= TARGET_DFLSSIZ
; /* initial data size limit */
101 unsigned long target_maxssiz
= TARGET_MAXSSIZ
; /* max stack size */
102 unsigned long target_sgrowsiz
= TARGET_SGROWSIZ
; /* amount to grow stack */
104 /* Helper routines for implementing atomic operations. */
106 void fork_start(void)
111 qemu_plugin_user_prefork_lock();
112 gdbserver_fork_start();
115 void fork_end(pid_t pid
)
117 bool child
= pid
== 0;
119 qemu_plugin_user_postfork(child
);
120 mmap_fork_end(child
);
122 CPUState
*cpu
, *next_cpu
;
124 * Child processes created by fork() only have a single thread.
125 * Discard information about the parent threads.
127 CPU_FOREACH_SAFE(cpu
, next_cpu
) {
128 if (cpu
!= thread_cpu
) {
129 QTAILQ_REMOVE_RCU(&cpus_queue
, cpu
, node
);
132 qemu_init_cpu_list();
133 get_task_state(thread_cpu
)->ts_tid
= qemu_get_thread_id();
137 gdbserver_fork_end(thread_cpu
, pid
);
139 * qemu_init_cpu_list() reinitialized the child exclusive state, but we
140 * also need to keep current_cpu consistent, so call end_exclusive() for
141 * both child and parent.
146 void cpu_loop(CPUArchState
*env
)
148 target_cpu_loop(env
);
151 static void usage(void)
153 printf("qemu-" TARGET_NAME
" version " QEMU_FULL_VERSION
154 "\n" QEMU_COPYRIGHT
"\n"
155 "usage: qemu-" TARGET_NAME
" [options] program [arguments...]\n"
156 "BSD CPU emulator (compiled for %s emulation)\n"
158 "Standard options:\n"
159 "-h print this help\n"
160 "-g port wait gdb connection to port\n"
161 "-L path set the elf interpreter prefix (default=%s)\n"
162 "-s size set the stack size in bytes (default=%ld)\n"
163 "-cpu model select CPU (-cpu help for list)\n"
164 "-drop-ld-preload drop LD_PRELOAD for target process\n"
165 "-E var=value sets/modifies targets environment variable(s)\n"
166 "-U var unsets targets environment variable(s)\n"
167 "-B address set guest_base address to address\n"
170 "-d item1[,...] enable logging of specified items\n"
171 " (use '-d help' for a list of log items)\n"
172 "-D logfile write logs to 'logfile' (default stderr)\n"
173 "-one-insn-per-tb run with one guest instruction per emulated TB\n"
174 "-tb-size size TCG translation block cache size\n"
175 "-strace log system calls\n"
176 "-trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
177 " specify tracing options\n"
179 "-plugin [file=]<file>[,<argname>=<argvalue>]\n"
182 "Environment variables:\n"
183 "QEMU_STRACE Print system calls and arguments similar to the\n"
184 " 'strace' program. Enable by setting to any value.\n"
185 "You can use -E and -U options to set/unset environment variables\n"
186 "for target process. It is possible to provide several variables\n"
187 "by repeating the option. For example:\n"
188 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
189 "Note that if you provide several changes to single variable\n"
190 "last change will stay in effect.\n"
192 QEMU_HELP_BOTTOM
"\n"
200 __thread CPUState
*thread_cpu
;
202 void stop_all_tasks(void)
205 * We trust when using NPTL (pthreads) start_exclusive() handles thread
206 * stopping correctly.
211 bool qemu_cpu_is_self(CPUState
*cpu
)
213 return thread_cpu
== cpu
;
216 void qemu_cpu_kick(CPUState
*cpu
)
221 /* Assumes contents are already zeroed. */
222 static void init_task_state(TaskState
*ts
)
224 ts
->sigaltstack_used
= (struct target_sigaltstack
) {
227 .ss_flags
= TARGET_SS_DISABLE
,
231 static QemuPluginList plugins
= QTAILQ_HEAD_INITIALIZER(plugins
);
233 void gemu_log(const char *fmt
, ...)
238 vfprintf(stderr
, fmt
, ap
);
247 if (getrlimit(RLIMIT_STACK
, &rl
) != 0) {
251 target_maxssiz
= MIN(target_maxssiz
, rl
.rlim_max
);
252 target_dflssiz
= MIN(MAX(target_dflssiz
, rl
.rlim_cur
), target_maxssiz
);
254 rl
.rlim_max
= target_maxssiz
;
255 rl
.rlim_cur
= target_dflssiz
;
256 setrlimit(RLIMIT_STACK
, &rl
);
259 int main(int argc
, char **argv
)
261 const char *filename
;
262 const char *cpu_model
;
263 const char *cpu_type
;
264 const char *log_file
= NULL
;
265 const char *log_mask
= NULL
;
266 const char *seed_optarg
= NULL
;
267 struct target_pt_regs regs1
, *regs
= ®s1
;
268 struct image_info info1
, *info
= &info1
;
269 struct bsd_binprm bprm
;
275 const char *gdbstub
= NULL
;
276 char **target_environ
, **wrk
;
277 envlist_t
*envlist
= NULL
;
280 unsigned long max_reserved_va
;
290 module_call_init(MODULE_INIT_TRACE
);
291 qemu_init_cpu_list();
292 module_call_init(MODULE_INIT_QOM
);
294 envlist
= envlist_create();
297 * add current environment into the list
298 * envlist_setenv adds to the front of the list; to preserve environ
299 * order add from back to front
301 for (wrk
= environ
; *wrk
!= NULL
; wrk
++) {
304 while (wrk
!= environ
) {
306 (void) envlist_setenv(envlist
, *wrk
);
309 qemu_host_page_size
= getpagesize();
310 qemu_host_page_size
= MAX(qemu_host_page_size
, TARGET_PAGE_SIZE
);
314 qemu_add_opts(&qemu_trace_opts
);
315 qemu_plugin_add_opts();
319 if (optind
>= argc
) {
328 if (!strcmp(r
, "-")) {
330 } else if (!strcmp(r
, "d")) {
331 if (optind
>= argc
) {
334 log_mask
= argv
[optind
++];
335 } else if (!strcmp(r
, "D")) {
336 if (optind
>= argc
) {
339 log_file
= argv
[optind
++];
340 } else if (!strcmp(r
, "E")) {
342 if (envlist_setenv(envlist
, r
) != 0) {
345 } else if (!strcmp(r
, "ignore-environment")) {
346 envlist_free(envlist
);
347 envlist
= envlist_create();
348 } else if (!strcmp(r
, "U")) {
350 if (envlist_unsetenv(envlist
, r
) != 0) {
353 } else if (!strcmp(r
, "s")) {
355 rv
= qemu_strtoul(r
, &r
, 0, &target_dflssiz
);
356 if (rv
< 0 || target_dflssiz
<= 0) {
360 target_dflssiz
*= 1024 * 1024;
361 } else if (*r
== 'k' || *r
== 'K') {
362 target_dflssiz
*= 1024;
364 if (target_dflssiz
> target_maxssiz
) {
367 } else if (!strcmp(r
, "L")) {
368 interp_prefix
= argv
[optind
++];
369 } else if (!strcmp(r
, "p")) {
370 unsigned size
, want
= qemu_real_host_page_size();
373 if (qemu_strtoui(r
, NULL
, 10, &size
) || size
!= want
) {
374 warn_report("Deprecated page size option cannot "
375 "change host page size (%u)", want
);
377 } else if (!strcmp(r
, "g")) {
378 gdbstub
= g_strdup(argv
[optind
++]);
379 } else if (!strcmp(r
, "r")) {
380 qemu_uname_release
= argv
[optind
++];
381 } else if (!strcmp(r
, "cpu")) {
382 cpu_model
= argv
[optind
++];
383 if (is_help_option(cpu_model
)) {
387 } else if (!strcmp(r
, "B")) {
388 rv
= qemu_strtoul(argv
[optind
++], NULL
, 0, &guest_base
);
392 have_guest_base
= true;
393 } else if (!strcmp(r
, "drop-ld-preload")) {
394 (void) envlist_unsetenv(envlist
, "LD_PRELOAD");
395 } else if (!strcmp(r
, "seed")) {
396 seed_optarg
= optarg
;
397 } else if (!strcmp(r
, "one-insn-per-tb")) {
398 opt_one_insn_per_tb
= true;
399 } else if (!strcmp(r
, "tb-size")) {
401 if (qemu_strtoul(r
, NULL
, 0, &opt_tb_size
)) {
404 } else if (!strcmp(r
, "strace")) {
406 } else if (!strcmp(r
, "trace")) {
407 trace_opt_parse(optarg
);
409 } else if (!strcmp(r
, "plugin")) {
411 qemu_plugin_opt_parse(r
, &plugins
);
413 } else if (!strcmp(r
, "0")) {
414 argv0
= argv
[optind
++];
420 qemu_host_page_mask
= -qemu_host_page_size
;
426 mask
= qemu_str_to_log_mask(log_mask
);
428 qemu_print_log_usage(stdout
);
432 qemu_set_log_filename_flags(log_file
, mask
, &error_fatal
);
435 if (optind
>= argc
) {
438 filename
= argv
[optind
];
440 argv
[optind
] = argv0
;
443 if (!trace_init_backends()) {
447 qemu_plugin_load_list(&plugins
, &error_fatal
);
450 memset(regs
, 0, sizeof(struct target_pt_regs
));
452 /* Zero bsd params */
453 memset(&bprm
, 0, sizeof(bprm
));
455 /* Zero out image_info */
456 memset(info
, 0, sizeof(struct image_info
));
458 /* Scan interp_prefix dir for replacement files. */
459 init_paths(interp_prefix
);
461 if (cpu_model
== NULL
) {
462 cpu_model
= TARGET_DEFAULT_CPU_MODEL
;
465 cpu_type
= parse_cpu_option(cpu_model
);
467 /* init tcg before creating CPUs and to get qemu_host_page_size */
469 AccelState
*accel
= current_accel();
470 AccelClass
*ac
= ACCEL_GET_CLASS(accel
);
472 accel_init_interfaces(ac
);
473 object_property_set_bool(OBJECT(accel
), "one-insn-per-tb",
474 opt_one_insn_per_tb
, &error_abort
);
475 object_property_set_int(OBJECT(accel
), "tb-size",
476 opt_tb_size
, &error_abort
);
477 ac
->init_machine(NULL
);
481 * Finalize page size before creating CPUs.
482 * This will do nothing if !TARGET_PAGE_BITS_VARY.
483 * The most efficient setting is to match the host.
485 host_page_size
= qemu_real_host_page_size();
486 set_preferred_target_page_bits(ctz32(host_page_size
));
487 finalize_target_page_bits();
489 cpu
= cpu_create(cpu_type
);
495 * Reserving too much vm space via mmap can run into problems with rlimits,
496 * oom due to page table creation, etc. We will still try it, if directed
497 * by the command-line option, but not by default. Unless we're running a
498 * target address space of 32 or fewer bits on a host with 64 bits.
500 max_reserved_va
= MAX_RESERVED_VA(cpu
);
501 if (reserved_va
!= 0) {
502 if ((reserved_va
+ 1) % host_page_size
) {
503 char *s
= size_to_str(host_page_size
);
504 fprintf(stderr
, "Reserved virtual address not aligned mod %s\n", s
);
508 if (max_reserved_va
&& reserved_va
> max_reserved_va
) {
509 fprintf(stderr
, "Reserved virtual address too big\n");
512 } else if (HOST_LONG_BITS
== 64 && TARGET_VIRT_ADDR_SPACE_BITS
<= 32) {
513 /* MAX_RESERVED_VA + 1 is a large power of 2, so is aligned. */
514 reserved_va
= max_reserved_va
;
516 if (reserved_va
!= 0) {
517 guest_addr_max
= reserved_va
;
518 } else if (MIN(TARGET_VIRT_ADDR_SPACE_BITS
, TARGET_ABI_BITS
) <= 32) {
519 guest_addr_max
= UINT32_MAX
;
521 guest_addr_max
= ~0ul;
524 if (getenv("QEMU_STRACE")) {
528 target_environ
= envlist_to_environ(envlist
, NULL
);
529 envlist_free(envlist
);
533 if (seed_optarg
!= NULL
) {
534 qemu_guest_random_seed_main(seed_optarg
, &err
);
539 error_reportf_err(err
, "cannot initialize crypto: ");
545 * Now that page sizes are configured we can do
546 * proper page alignment for guest_base.
548 if (have_guest_base
) {
549 if (guest_base
& ~qemu_host_page_mask
) {
550 error_report("Selected guest base not host page aligned");
556 * If reserving host virtual address space, do so now.
557 * Combined with '-B', ensure that the chosen range is free.
562 if (have_guest_base
) {
563 p
= mmap((void *)guest_base
, reserved_va
+ 1, PROT_NONE
,
564 MAP_ANON
| MAP_PRIVATE
| MAP_FIXED
| MAP_EXCL
, -1, 0);
566 p
= mmap(NULL
, reserved_va
+ 1, PROT_NONE
,
567 MAP_ANON
| MAP_PRIVATE
, -1, 0);
569 if (p
== MAP_FAILED
) {
570 const char *err
= strerror(errno
);
571 char *sz
= size_to_str(reserved_va
+ 1);
573 if (have_guest_base
) {
574 error_report("Cannot allocate %s bytes at -B %p for guest "
575 "address space: %s", sz
, (void *)guest_base
, err
);
577 error_report("Cannot allocate %s bytes for guest "
578 "address space: %s", sz
, err
);
582 guest_base
= (uintptr_t)p
;
583 have_guest_base
= true;
585 /* Ensure that mmap_next_start is within range. */
586 if (reserved_va
<= mmap_next_start
) {
587 mmap_next_start
= (reserved_va
/ 4 * 3)
588 & TARGET_PAGE_MASK
& qemu_host_page_mask
;
592 if (loader_exec(filename
, argv
+ optind
, target_environ
, regs
, info
,
594 printf("Error loading %s\n", filename
);
598 for (wrk
= target_environ
; *wrk
; wrk
++) {
602 g_free(target_environ
);
604 if (qemu_loglevel_mask(CPU_LOG_PAGE
)) {
605 FILE *f
= qemu_log_trylock();
607 fprintf(f
, "guest_base %p\n", (void *)guest_base
);
608 fprintf(f
, "page layout changed following binary load\n");
611 fprintf(f
, "end_code 0x" TARGET_ABI_FMT_lx
"\n",
613 fprintf(f
, "start_code 0x" TARGET_ABI_FMT_lx
"\n",
615 fprintf(f
, "start_data 0x" TARGET_ABI_FMT_lx
"\n",
617 fprintf(f
, "end_data 0x" TARGET_ABI_FMT_lx
"\n",
619 fprintf(f
, "start_stack 0x" TARGET_ABI_FMT_lx
"\n",
621 fprintf(f
, "brk 0x" TARGET_ABI_FMT_lx
"\n", info
->brk
);
622 fprintf(f
, "entry 0x" TARGET_ABI_FMT_lx
"\n", info
->entry
);
628 /* build Task State */
629 ts
= g_new0(TaskState
, 1);
633 ts
->ts_tid
= qemu_get_thread_id();
636 target_set_brk(info
->brk
);
641 * Now that we've loaded the binary, GUEST_BASE is fixed. Delay
642 * generating the prologue until now so that the prologue can take
643 * the real value of GUEST_BASE into account.
647 target_cpu_init(env
, regs
);
650 gdbserver_start(gdbstub
, &error_fatal
);