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 <sys/types.h>
23 #include <sys/resource.h>
24 #include <sys/sysctl.h>
26 #include "qemu/osdep.h"
27 #include "qemu/help-texts.h"
28 #include "qemu/units.h"
29 #include "qemu/accel.h"
30 #include "qemu-version.h"
31 #include <machine/trap.h>
33 #include "qapi/error.h"
35 #include "qemu/config-file.h"
36 #include "qemu/error-report.h"
37 #include "qemu/path.h"
38 #include "qemu/help_option.h"
39 #include "qemu/module.h"
40 #include "exec/exec-all.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"
51 #include "target_arch_cpu.h"
57 * When running 32-on-64 we should make sure we can fit all of the possible
58 * guest address space into a contiguous chunk of virtual host memory.
60 * This way we will never overlap with our own libraries or binaries or stack
61 * or anything else that QEMU maps.
63 * Many cpus reserve the high bit (or more than one for some 64-bit cpus)
64 * of the address for the kernel. Some cpus rely on this and user space
65 * uses the high bit(s) for pointer tagging and the like. For them, we
66 * must preserve the expected address space.
68 #ifndef MAX_RESERVED_VA
69 # if HOST_LONG_BITS > TARGET_VIRT_ADDR_SPACE_BITS
70 # if TARGET_VIRT_ADDR_SPACE_BITS == 32 && \
71 (TARGET_LONG_BITS == 32 || defined(TARGET_ABI32))
73 * There are a number of places where we assign reserved_va to a variable
74 * of type abi_ulong and expect it to fit. Avoid the last page.
76 # define MAX_RESERVED_VA (0xfffffffful & TARGET_PAGE_MASK)
78 # define MAX_RESERVED_VA (1ul << TARGET_VIRT_ADDR_SPACE_BITS)
81 # define MAX_RESERVED_VA 0
86 * That said, reserving *too* much vm space via mmap can run into problems
87 * with rlimits, oom due to page table creation, etc. We will still try it,
88 * if directed by the command-line option, but not by default.
90 #if HOST_LONG_BITS == 64 && TARGET_VIRT_ADDR_SPACE_BITS <= 32
91 unsigned long reserved_va
= MAX_RESERVED_VA
;
93 unsigned long reserved_va
;
96 static const char *interp_prefix
= CONFIG_QEMU_INTERP_PREFIX
;
97 const char *qemu_uname_release
;
98 char qemu_proc_pathname
[PATH_MAX
]; /* full path to exeutable */
100 unsigned long target_maxtsiz
= TARGET_MAXTSIZ
; /* max text size */
101 unsigned long target_dfldsiz
= TARGET_DFLDSIZ
; /* initial data size limit */
102 unsigned long target_maxdsiz
= TARGET_MAXDSIZ
; /* max data size */
103 unsigned long target_dflssiz
= TARGET_DFLSSIZ
; /* initial data size limit */
104 unsigned long target_maxssiz
= TARGET_MAXSSIZ
; /* max stack size */
105 unsigned long target_sgrowsiz
= TARGET_SGROWSIZ
; /* amount to grow stack */
107 /* Helper routines for implementing atomic operations. */
109 void fork_start(void)
116 void fork_end(int child
)
119 CPUState
*cpu
, *next_cpu
;
121 * Child processes created by fork() only have a single thread. Discard
122 * information about the parent threads.
124 CPU_FOREACH_SAFE(cpu
, next_cpu
) {
125 if (cpu
!= thread_cpu
) {
126 QTAILQ_REMOVE_RCU(&cpus
, cpu
, node
);
129 mmap_fork_end(child
);
131 * qemu_init_cpu_list() takes care of reinitializing the exclusive
132 * state, so we don't need to end_exclusive() here.
134 qemu_init_cpu_list();
135 gdbserver_fork(thread_cpu
);
137 mmap_fork_end(child
);
143 void cpu_loop(CPUArchState
*env
)
145 target_cpu_loop(env
);
148 static void usage(void)
150 printf("qemu-" TARGET_NAME
" version " QEMU_FULL_VERSION
151 "\n" QEMU_COPYRIGHT
"\n"
152 "usage: qemu-" TARGET_NAME
" [options] program [arguments...]\n"
153 "BSD CPU emulator (compiled for %s emulation)\n"
155 "Standard options:\n"
156 "-h print this help\n"
157 "-g port wait gdb connection to port\n"
158 "-L path set the elf interpreter prefix (default=%s)\n"
159 "-s size set the stack size in bytes (default=%ld)\n"
160 "-cpu model select CPU (-cpu help for list)\n"
161 "-drop-ld-preload drop LD_PRELOAD for target process\n"
162 "-E var=value sets/modifies targets environment variable(s)\n"
163 "-U var unsets targets environment variable(s)\n"
164 "-B address set guest_base address to address\n"
167 "-d item1[,...] enable logging of specified items\n"
168 " (use '-d help' for a list of log items)\n"
169 "-D logfile write logs to 'logfile' (default stderr)\n"
170 "-singlestep always run in singlestep mode\n"
171 "-strace log system calls\n"
172 "-trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
173 " specify tracing options\n"
175 "Environment variables:\n"
176 "QEMU_STRACE Print system calls and arguments similar to the\n"
177 " 'strace' program. Enable by setting to any value.\n"
178 "You can use -E and -U options to set/unset environment variables\n"
179 "for target process. It is possible to provide several variables\n"
180 "by repeating the option. For example:\n"
181 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
182 "Note that if you provide several changes to single variable\n"
183 "last change will stay in effect.\n"
185 QEMU_HELP_BOTTOM
"\n"
193 __thread CPUState
*thread_cpu
;
195 void stop_all_tasks(void)
198 * We trust when using NPTL (pthreads) start_exclusive() handles thread
199 * stopping correctly.
204 bool qemu_cpu_is_self(CPUState
*cpu
)
206 return thread_cpu
== cpu
;
209 void qemu_cpu_kick(CPUState
*cpu
)
214 /* Assumes contents are already zeroed. */
215 static void init_task_state(TaskState
*ts
)
217 ts
->sigaltstack_used
= (struct target_sigaltstack
) {
220 .ss_flags
= TARGET_SS_DISABLE
,
224 void gemu_log(const char *fmt
, ...)
229 vfprintf(stderr
, fmt
, ap
);
238 if (getrlimit(RLIMIT_STACK
, &rl
) != 0) {
242 target_maxssiz
= MIN(target_maxssiz
, rl
.rlim_max
);
243 target_dflssiz
= MIN(MAX(target_dflssiz
, rl
.rlim_cur
), target_maxssiz
);
245 rl
.rlim_max
= target_maxssiz
;
246 rl
.rlim_cur
= target_dflssiz
;
247 setrlimit(RLIMIT_STACK
, &rl
);
250 static void save_proc_pathname(char *argv0
)
257 mib
[2] = KERN_PROC_PATHNAME
;
260 len
= sizeof(qemu_proc_pathname
);
261 if (sysctl(mib
, 4, qemu_proc_pathname
, &len
, NULL
, 0)) {
266 int main(int argc
, char **argv
)
268 const char *filename
;
269 const char *cpu_model
;
270 const char *cpu_type
;
271 const char *log_file
= NULL
;
272 const char *log_mask
= NULL
;
273 const char *seed_optarg
= NULL
;
274 struct target_pt_regs regs1
, *regs
= ®s1
;
275 struct image_info info1
, *info
= &info1
;
276 struct bsd_binprm bprm
;
282 const char *gdbstub
= NULL
;
283 char **target_environ
, **wrk
;
284 envlist_t
*envlist
= NULL
;
293 save_proc_pathname(argv
[0]);
296 module_call_init(MODULE_INIT_TRACE
);
297 qemu_init_cpu_list();
298 module_call_init(MODULE_INIT_QOM
);
300 envlist
= envlist_create();
302 /* add current environment into the list */
303 for (wrk
= environ
; *wrk
!= NULL
; wrk
++) {
304 (void) envlist_setenv(envlist
, *wrk
);
309 qemu_add_opts(&qemu_trace_opts
);
313 if (optind
>= argc
) {
322 if (!strcmp(r
, "-")) {
324 } else if (!strcmp(r
, "d")) {
325 if (optind
>= argc
) {
328 log_mask
= argv
[optind
++];
329 } else if (!strcmp(r
, "D")) {
330 if (optind
>= argc
) {
333 log_file
= argv
[optind
++];
334 } else if (!strcmp(r
, "E")) {
336 if (envlist_setenv(envlist
, r
) != 0) {
339 } else if (!strcmp(r
, "ignore-environment")) {
340 envlist_free(envlist
);
341 envlist
= envlist_create();
342 } else if (!strcmp(r
, "U")) {
344 if (envlist_unsetenv(envlist
, r
) != 0) {
347 } else if (!strcmp(r
, "s")) {
349 rv
= qemu_strtoul(r
, &r
, 0, &target_dflssiz
);
350 if (rv
< 0 || target_dflssiz
<= 0) {
354 target_dflssiz
*= 1024 * 1024;
355 } else if (*r
== 'k' || *r
== 'K') {
356 target_dflssiz
*= 1024;
358 if (target_dflssiz
> target_maxssiz
) {
361 } else if (!strcmp(r
, "L")) {
362 interp_prefix
= argv
[optind
++];
363 } else if (!strcmp(r
, "p")) {
364 qemu_host_page_size
= atoi(argv
[optind
++]);
365 if (qemu_host_page_size
== 0 ||
366 (qemu_host_page_size
& (qemu_host_page_size
- 1)) != 0) {
367 fprintf(stderr
, "page size must be a power of two\n");
370 } else if (!strcmp(r
, "g")) {
371 gdbstub
= g_strdup(argv
[optind
++]);
372 } else if (!strcmp(r
, "r")) {
373 qemu_uname_release
= argv
[optind
++];
374 } else if (!strcmp(r
, "cpu")) {
375 cpu_model
= argv
[optind
++];
376 if (is_help_option(cpu_model
)) {
377 /* XXX: implement xxx_cpu_list for targets that still miss it */
378 #if defined(cpu_list)
383 } else if (!strcmp(r
, "B")) {
384 rv
= qemu_strtoul(argv
[optind
++], NULL
, 0, &guest_base
);
388 have_guest_base
= true;
389 } else if (!strcmp(r
, "drop-ld-preload")) {
390 (void) envlist_unsetenv(envlist
, "LD_PRELOAD");
391 } else if (!strcmp(r
, "seed")) {
392 seed_optarg
= optarg
;
393 } else if (!strcmp(r
, "singlestep")) {
395 } else if (!strcmp(r
, "strace")) {
397 } else if (!strcmp(r
, "trace")) {
398 trace_opt_parse(optarg
);
399 } else if (!strcmp(r
, "0")) {
400 argv0
= argv
[optind
++];
410 mask
= qemu_str_to_log_mask(log_mask
);
412 qemu_print_log_usage(stdout
);
416 qemu_set_log_filename_flags(log_file
, mask
, &error_fatal
);
419 if (optind
>= argc
) {
422 filename
= argv
[optind
];
424 argv
[optind
] = argv0
;
427 if (!trace_init_backends()) {
433 memset(regs
, 0, sizeof(struct target_pt_regs
));
435 /* Zero bsd params */
436 memset(&bprm
, 0, sizeof(bprm
));
438 /* Zero out image_info */
439 memset(info
, 0, sizeof(struct image_info
));
441 /* Scan interp_prefix dir for replacement files. */
442 init_paths(interp_prefix
);
444 if (cpu_model
== NULL
) {
445 cpu_model
= TARGET_DEFAULT_CPU_MODEL
;
448 cpu_type
= parse_cpu_option(cpu_model
);
450 /* init tcg before creating CPUs and to get qemu_host_page_size */
452 AccelClass
*ac
= ACCEL_GET_CLASS(current_accel());
454 accel_init_interfaces(ac
);
455 ac
->init_machine(NULL
);
457 cpu
= cpu_create(cpu_type
);
462 if (getenv("QEMU_STRACE")) {
466 target_environ
= envlist_to_environ(envlist
, NULL
);
467 envlist_free(envlist
);
470 mmap_next_start
= reserved_va
;
475 if (seed_optarg
!= NULL
) {
476 qemu_guest_random_seed_main(seed_optarg
, &err
);
481 error_reportf_err(err
, "cannot initialize crypto: ");
487 * Now that page sizes are configured we can do
488 * proper page alignment for guest_base.
490 guest_base
= HOST_PAGE_ALIGN(guest_base
);
492 if (loader_exec(filename
, argv
+ optind
, target_environ
, regs
, info
,
494 printf("Error loading %s\n", filename
);
498 for (wrk
= target_environ
; *wrk
; wrk
++) {
502 g_free(target_environ
);
504 if (qemu_loglevel_mask(CPU_LOG_PAGE
)) {
505 FILE *f
= qemu_log_trylock();
507 fprintf(f
, "guest_base %p\n", (void *)guest_base
);
508 fprintf(f
, "page layout changed following binary load\n");
511 fprintf(f
, "start_brk 0x" TARGET_ABI_FMT_lx
"\n",
513 fprintf(f
, "end_code 0x" TARGET_ABI_FMT_lx
"\n",
515 fprintf(f
, "start_code 0x" TARGET_ABI_FMT_lx
"\n",
517 fprintf(f
, "start_data 0x" TARGET_ABI_FMT_lx
"\n",
519 fprintf(f
, "end_data 0x" TARGET_ABI_FMT_lx
"\n",
521 fprintf(f
, "start_stack 0x" TARGET_ABI_FMT_lx
"\n",
523 fprintf(f
, "brk 0x" TARGET_ABI_FMT_lx
"\n", info
->brk
);
524 fprintf(f
, "entry 0x" TARGET_ABI_FMT_lx
"\n", info
->entry
);
530 /* build Task State */
531 ts
= g_new0(TaskState
, 1);
537 target_set_brk(info
->brk
);
542 * Now that we've loaded the binary, GUEST_BASE is fixed. Delay
543 * generating the prologue until now so that the prologue can take
544 * the real value of GUEST_BASE into account.
546 tcg_prologue_init(tcg_ctx
);
548 target_cpu_init(env
, regs
);
551 gdbserver_start(gdbstub
);
552 gdb_handlesig(cpu
, 0);