4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
21 #include "qemu/help-texts.h"
22 #include "qemu/units.h"
23 #include "qemu/accel.h"
24 #include "qemu-version.h"
25 #include <sys/syscall.h>
26 #include <sys/resource.h>
28 #include <linux/binfmts.h>
30 #include "qapi/error.h"
32 #include "user-internals.h"
33 #include "qemu/path.h"
34 #include "qemu/queue.h"
35 #include "qemu/config-file.h"
36 #include "qemu/cutils.h"
37 #include "qemu/error-report.h"
38 #include "qemu/help_option.h"
39 #include "qemu/module.h"
40 #include "qemu/plugin.h"
41 #include "exec/exec-all.h"
42 #include "exec/gdbstub.h"
43 #include "gdbstub/user.h"
44 #include "tcg/startup.h"
45 #include "qemu/timer.h"
46 #include "qemu/envlist.h"
47 #include "qemu/guest-random.h"
49 #include "trace/control.h"
50 #include "target_elf.h"
51 #include "cpu_loop-common.h"
52 #include "crypto/init.h"
54 #include "signal-common.h"
56 #include "user-mmap.h"
58 #include "exec/page-vary.h"
60 #ifdef CONFIG_SEMIHOSTING
61 #include "semihosting/semihost.h"
64 #ifndef AT_FLAGS_PRESERVE_ARGV0
65 #define AT_FLAGS_PRESERVE_ARGV0_BIT 0
66 #define AT_FLAGS_PRESERVE_ARGV0 (1 << AT_FLAGS_PRESERVE_ARGV0_BIT)
70 char real_exec_path
[PATH_MAX
];
72 static bool opt_one_insn_per_tb
;
73 static const char *argv0
;
74 static const char *gdbstub
;
75 static envlist_t
*envlist
;
76 static const char *cpu_model
;
77 static const char *cpu_type
;
78 static const char *seed_optarg
;
79 unsigned long mmap_min_addr
;
84 * Used to implement backwards-compatibility for the `-strace`, and
85 * QEMU_STRACE options. Without this, the QEMU_LOG can be overwritten by
86 * -strace, or vice versa.
88 static bool enable_strace
;
91 * The last log mask given by the user in an environment variable or argument.
92 * Used to support command line arguments overriding environment variables.
94 static int last_log_mask
;
95 static const char *last_log_filename
;
98 * When running 32-on-64 we should make sure we can fit all of the possible
99 * guest address space into a contiguous chunk of virtual host memory.
101 * This way we will never overlap with our own libraries or binaries or stack
102 * or anything else that QEMU maps.
104 * Many cpus reserve the high bit (or more than one for some 64-bit cpus)
105 * of the address for the kernel. Some cpus rely on this and user space
106 * uses the high bit(s) for pointer tagging and the like. For them, we
107 * must preserve the expected address space.
109 #ifndef MAX_RESERVED_VA
110 # if HOST_LONG_BITS > TARGET_VIRT_ADDR_SPACE_BITS
111 # if TARGET_VIRT_ADDR_SPACE_BITS == 32 && \
112 (TARGET_LONG_BITS == 32 || defined(TARGET_ABI32))
113 # define MAX_RESERVED_VA(CPU) 0xfffffffful
115 # define MAX_RESERVED_VA(CPU) ((1ul << TARGET_VIRT_ADDR_SPACE_BITS) - 1)
118 # define MAX_RESERVED_VA(CPU) 0
122 unsigned long reserved_va
;
124 static void usage(int exitcode
);
126 static const char *interp_prefix
= CONFIG_QEMU_INTERP_PREFIX
;
127 const char *qemu_uname_release
;
129 #if !defined(TARGET_DEFAULT_STACK_SIZE)
130 /* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so
131 we allocate a bigger stack. Need a better solution, for example
132 by remapping the process stack directly at the right place */
133 #define TARGET_DEFAULT_STACK_SIZE 8 * 1024 * 1024UL
136 unsigned long guest_stack_size
= TARGET_DEFAULT_STACK_SIZE
;
138 /***********************************************************/
139 /* Helper routines for implementing atomic operations. */
141 /* Make sure everything is in a consistent state for calling fork(). */
142 void fork_start(void)
147 qemu_plugin_user_prefork_lock();
148 gdbserver_fork_start();
151 void fork_end(pid_t pid
)
153 bool child
= pid
== 0;
155 qemu_plugin_user_postfork(child
);
156 mmap_fork_end(child
);
158 CPUState
*cpu
, *next_cpu
;
159 /* Child processes created by fork() only have a single thread.
160 Discard information about the parent threads. */
161 CPU_FOREACH_SAFE(cpu
, next_cpu
) {
162 if (cpu
!= thread_cpu
) {
163 QTAILQ_REMOVE_RCU(&cpus_queue
, cpu
, node
);
166 qemu_init_cpu_list();
167 get_task_state(thread_cpu
)->ts_tid
= qemu_get_thread_id();
171 gdbserver_fork_end(thread_cpu
, pid
);
173 * qemu_init_cpu_list() reinitialized the child exclusive state, but we
174 * also need to keep current_cpu consistent, so call end_exclusive() for
175 * both child and parent.
180 __thread CPUState
*thread_cpu
;
182 bool qemu_cpu_is_self(CPUState
*cpu
)
184 return thread_cpu
== cpu
;
187 void qemu_cpu_kick(CPUState
*cpu
)
192 void task_settid(TaskState
*ts
)
194 if (ts
->ts_tid
== 0) {
195 ts
->ts_tid
= (pid_t
)syscall(SYS_gettid
);
199 void stop_all_tasks(void)
202 * We trust that when using NPTL, start_exclusive()
203 * handles thread stopping correctly.
208 /* Assumes contents are already zeroed. */
209 void init_task_state(TaskState
*ts
)
215 ts
->sigaltstack_used
= (struct target_sigaltstack
) {
218 .ss_flags
= TARGET_SS_DISABLE
,
221 /* Capture task start time relative to system boot */
223 ticks_per_sec
= sysconf(_SC_CLK_TCK
);
225 if ((ticks_per_sec
> 0) && !clock_gettime(CLOCK_BOOTTIME
, &bt
)) {
226 /* start_boottime is expressed in clock ticks */
227 ts
->start_boottime
= bt
.tv_sec
* (uint64_t) ticks_per_sec
;
228 ts
->start_boottime
+= bt
.tv_nsec
* (uint64_t) ticks_per_sec
/
229 NANOSECONDS_PER_SECOND
;
233 CPUArchState
*cpu_copy(CPUArchState
*env
)
235 CPUState
*cpu
= env_cpu(env
);
236 CPUState
*new_cpu
= cpu_create(cpu_type
);
237 CPUArchState
*new_env
= cpu_env(new_cpu
);
240 /* Reset non arch specific state */
243 new_cpu
->tcg_cflags
= cpu
->tcg_cflags
;
244 memcpy(new_env
, env
, sizeof(CPUArchState
));
245 #if defined(TARGET_I386) || defined(TARGET_X86_64)
246 new_env
->gdt
.base
= target_mmap(0, sizeof(uint64_t) * TARGET_GDT_ENTRIES
,
247 PROT_READ
| PROT_WRITE
,
248 MAP_ANONYMOUS
| MAP_PRIVATE
, -1, 0);
249 memcpy(g2h_untagged(new_env
->gdt
.base
), g2h_untagged(env
->gdt
.base
),
250 sizeof(uint64_t) * TARGET_GDT_ENTRIES
);
251 OBJECT(new_cpu
)->free
= OBJECT(cpu
)->free
;
254 /* Clone all break/watchpoints.
255 Note: Once we support ptrace with hw-debug register access, make sure
256 BP_CPU break/watchpoints are handled correctly on clone. */
257 QTAILQ_INIT(&new_cpu
->breakpoints
);
258 QTAILQ_FOREACH(bp
, &cpu
->breakpoints
, entry
) {
259 cpu_breakpoint_insert(new_cpu
, bp
->pc
, bp
->flags
, NULL
);
265 static void handle_arg_help(const char *arg
)
270 static void handle_arg_log(const char *arg
)
272 last_log_mask
= qemu_str_to_log_mask(arg
);
273 if (!last_log_mask
) {
274 qemu_print_log_usage(stdout
);
279 static void handle_arg_dfilter(const char *arg
)
281 qemu_set_dfilter_ranges(arg
, &error_fatal
);
284 static void handle_arg_log_filename(const char *arg
)
286 last_log_filename
= arg
;
289 static void handle_arg_set_env(const char *arg
)
293 while ((token
= strsep(&p
, ",")) != NULL
) {
294 if (envlist_setenv(envlist
, token
) != 0) {
301 static void handle_arg_unset_env(const char *arg
)
305 while ((token
= strsep(&p
, ",")) != NULL
) {
306 if (envlist_unsetenv(envlist
, token
) != 0) {
313 static void handle_arg_argv0(const char *arg
)
318 static void handle_arg_stack_size(const char *arg
)
321 guest_stack_size
= strtoul(arg
, &p
, 0);
322 if (guest_stack_size
== 0) {
327 guest_stack_size
*= MiB
;
328 } else if (*p
== 'k' || *p
== 'K') {
329 guest_stack_size
*= KiB
;
333 static void handle_arg_ld_prefix(const char *arg
)
335 interp_prefix
= strdup(arg
);
338 static void handle_arg_pagesize(const char *arg
)
340 unsigned size
, want
= qemu_real_host_page_size();
342 if (qemu_strtoui(arg
, NULL
, 10, &size
) || size
!= want
) {
343 warn_report("Deprecated page size option cannot "
344 "change host page size (%u)", want
);
348 static void handle_arg_seed(const char *arg
)
353 static void handle_arg_gdb(const char *arg
)
355 gdbstub
= g_strdup(arg
);
358 static void handle_arg_uname(const char *arg
)
360 qemu_uname_release
= strdup(arg
);
363 static void handle_arg_cpu(const char *arg
)
365 cpu_model
= strdup(arg
);
366 if (cpu_model
== NULL
|| is_help_option(cpu_model
)) {
372 static void handle_arg_guest_base(const char *arg
)
374 guest_base
= strtol(arg
, NULL
, 0);
375 have_guest_base
= true;
378 static void handle_arg_reserved_va(const char *arg
)
384 val
= strtoul(arg
, &p
, 0);
398 unsigned long unshifted
= val
;
401 if (val
>> shift
!= unshifted
) {
402 fprintf(stderr
, "Reserved virtual address too big\n");
407 fprintf(stderr
, "Unrecognised -R size suffix '%s'\n", p
);
410 /* The representation is size - 1, with 0 remaining "default". */
411 reserved_va
= val
? val
- 1 : 0;
414 static void handle_arg_one_insn_per_tb(const char *arg
)
416 opt_one_insn_per_tb
= true;
419 static void handle_arg_strace(const char *arg
)
421 enable_strace
= true;
424 static void handle_arg_version(const char *arg
)
426 printf("qemu-" TARGET_NAME
" version " QEMU_FULL_VERSION
427 "\n" QEMU_COPYRIGHT
"\n");
431 static void handle_arg_trace(const char *arg
)
433 trace_opt_parse(arg
);
436 #if defined(TARGET_XTENSA)
437 static void handle_arg_abi_call0(const char *arg
)
439 xtensa_set_abi_call0();
443 static void handle_arg_perfmap(const char *arg
)
445 perf_enable_perfmap();
448 static void handle_arg_jitdump(const char *arg
)
450 perf_enable_jitdump();
453 static QemuPluginList plugins
= QTAILQ_HEAD_INITIALIZER(plugins
);
456 static void handle_arg_plugin(const char *arg
)
458 qemu_plugin_opt_parse(arg
, &plugins
);
462 struct qemu_argument
{
466 void (*handle_opt
)(const char *arg
);
471 static const struct qemu_argument arg_table
[] = {
472 {"h", "", false, handle_arg_help
,
473 "", "print this help"},
474 {"help", "", false, handle_arg_help
,
476 {"g", "QEMU_GDB", true, handle_arg_gdb
,
477 "port", "wait gdb connection to 'port'"},
478 {"L", "QEMU_LD_PREFIX", true, handle_arg_ld_prefix
,
479 "path", "set the elf interpreter prefix to 'path'"},
480 {"s", "QEMU_STACK_SIZE", true, handle_arg_stack_size
,
481 "size", "set the stack size to 'size' bytes"},
482 {"cpu", "QEMU_CPU", true, handle_arg_cpu
,
483 "model", "select CPU (-cpu help for list)"},
484 {"E", "QEMU_SET_ENV", true, handle_arg_set_env
,
485 "var=value", "sets targets environment variable (see below)"},
486 {"U", "QEMU_UNSET_ENV", true, handle_arg_unset_env
,
487 "var", "unsets targets environment variable (see below)"},
488 {"0", "QEMU_ARGV0", true, handle_arg_argv0
,
489 "argv0", "forces target process argv[0] to be 'argv0'"},
490 {"r", "QEMU_UNAME", true, handle_arg_uname
,
491 "uname", "set qemu uname release string to 'uname'"},
492 {"B", "QEMU_GUEST_BASE", true, handle_arg_guest_base
,
493 "address", "set guest_base address to 'address'"},
494 {"R", "QEMU_RESERVED_VA", true, handle_arg_reserved_va
,
495 "size", "reserve 'size' bytes for guest virtual address space"},
496 {"d", "QEMU_LOG", true, handle_arg_log
,
497 "item[,...]", "enable logging of specified items "
498 "(use '-d help' for a list of items)"},
499 {"dfilter", "QEMU_DFILTER", true, handle_arg_dfilter
,
500 "range[,...]","filter logging based on address range"},
501 {"D", "QEMU_LOG_FILENAME", true, handle_arg_log_filename
,
502 "logfile", "write logs to 'logfile' (default stderr)"},
503 {"p", "QEMU_PAGESIZE", true, handle_arg_pagesize
,
504 "pagesize", "deprecated change to host page size"},
506 "QEMU_ONE_INSN_PER_TB", false, handle_arg_one_insn_per_tb
,
507 "", "run with one guest instruction per emulated TB"},
508 {"strace", "QEMU_STRACE", false, handle_arg_strace
,
509 "", "log system calls"},
510 {"seed", "QEMU_RAND_SEED", true, handle_arg_seed
,
511 "", "Seed for pseudo-random number generator"},
512 {"trace", "QEMU_TRACE", true, handle_arg_trace
,
513 "", "[[enable=]<pattern>][,events=<file>][,file=<file>]"},
515 {"plugin", "QEMU_PLUGIN", true, handle_arg_plugin
,
516 "", "[file=]<file>[,<argname>=<argvalue>]"},
518 {"version", "QEMU_VERSION", false, handle_arg_version
,
519 "", "display version information and exit"},
520 #if defined(TARGET_XTENSA)
521 {"xtensa-abi-call0", "QEMU_XTENSA_ABI_CALL0", false, handle_arg_abi_call0
,
522 "", "assume CALL0 Xtensa ABI"},
524 {"perfmap", "QEMU_PERFMAP", false, handle_arg_perfmap
,
525 "", "Generate a /tmp/perf-${pid}.map file for perf"},
526 {"jitdump", "QEMU_JITDUMP", false, handle_arg_jitdump
,
527 "", "Generate a jit-${pid}.dump file for perf"},
528 {NULL
, NULL
, false, NULL
, NULL
, NULL
}
531 static void usage(int exitcode
)
533 const struct qemu_argument
*arginfo
;
537 printf("usage: qemu-" TARGET_NAME
" [options] program [arguments...]\n"
538 "Linux CPU emulator (compiled for " TARGET_NAME
" emulation)\n"
540 "Options and associated environment variables:\n"
543 /* Calculate column widths. We must always have at least enough space
544 * for the column header.
546 maxarglen
= strlen("Argument");
547 maxenvlen
= strlen("Env-variable");
549 for (arginfo
= arg_table
; arginfo
->handle_opt
!= NULL
; arginfo
++) {
550 int arglen
= strlen(arginfo
->argv
);
551 if (arginfo
->has_arg
) {
552 arglen
+= strlen(arginfo
->example
) + 1;
554 if (strlen(arginfo
->env
) > maxenvlen
) {
555 maxenvlen
= strlen(arginfo
->env
);
557 if (arglen
> maxarglen
) {
562 printf("%-*s %-*s Description\n", maxarglen
+1, "Argument",
563 maxenvlen
, "Env-variable");
565 for (arginfo
= arg_table
; arginfo
->handle_opt
!= NULL
; arginfo
++) {
566 if (arginfo
->has_arg
) {
567 printf("-%s %-*s %-*s %s\n", arginfo
->argv
,
568 (int)(maxarglen
- strlen(arginfo
->argv
) - 1),
569 arginfo
->example
, maxenvlen
, arginfo
->env
, arginfo
->help
);
571 printf("-%-*s %-*s %s\n", maxarglen
, arginfo
->argv
,
572 maxenvlen
, arginfo
->env
,
579 "QEMU_LD_PREFIX = %s\n"
580 "QEMU_STACK_SIZE = %ld byte\n",
585 "You can use -E and -U options or the QEMU_SET_ENV and\n"
586 "QEMU_UNSET_ENV environment variables to set and unset\n"
587 "environment variables for the target process.\n"
588 "It is possible to provide several variables by separating them\n"
589 "by commas in getsubopt(3) style. Additionally it is possible to\n"
590 "provide the -E and -U options multiple times.\n"
591 "The following lines are equivalent:\n"
592 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
593 " -E var1=val2,var2=val2 -U LD_PRELOAD,LD_DEBUG\n"
594 " QEMU_SET_ENV=var1=val2,var2=val2 QEMU_UNSET_ENV=LD_PRELOAD,LD_DEBUG\n"
595 "Note that if you provide several changes to a single variable\n"
596 "the last change will stay in effect.\n"
598 QEMU_HELP_BOTTOM
"\n");
603 static int parse_args(int argc
, char **argv
)
607 const struct qemu_argument
*arginfo
;
609 for (arginfo
= arg_table
; arginfo
->handle_opt
!= NULL
; arginfo
++) {
610 if (arginfo
->env
== NULL
) {
614 r
= getenv(arginfo
->env
);
616 arginfo
->handle_opt(r
);
622 if (optind
>= argc
) {
631 if (!strcmp(r
, "-")) {
634 /* Treat --foo the same as -foo. */
639 for (arginfo
= arg_table
; arginfo
->handle_opt
!= NULL
; arginfo
++) {
640 if (!strcmp(r
, arginfo
->argv
)) {
641 if (arginfo
->has_arg
) {
642 if (optind
>= argc
) {
643 (void) fprintf(stderr
,
644 "qemu: missing argument for option '%s'\n", r
);
647 arginfo
->handle_opt(argv
[optind
]);
650 arginfo
->handle_opt(NULL
);
656 /* no option matched the current argv */
657 if (arginfo
->handle_opt
== NULL
) {
658 (void) fprintf(stderr
, "qemu: unknown option '%s'\n", r
);
663 if (optind
>= argc
) {
664 (void) fprintf(stderr
, "qemu: no user program specified\n");
668 exec_path
= argv
[optind
];
673 int main(int argc
, char **argv
, char **envp
)
675 struct target_pt_regs regs1
, *regs
= ®s1
;
676 struct image_info info1
, *info
= &info1
;
677 struct linux_binprm bprm
;
682 char **target_environ
, **wrk
;
689 unsigned long max_reserved_va
;
693 module_call_init(MODULE_INIT_TRACE
);
694 qemu_init_cpu_list();
695 module_call_init(MODULE_INIT_QOM
);
697 envlist
= envlist_create();
700 * add current environment into the list
701 * envlist_setenv adds to the front of the list; to preserve environ
702 * order add from back to front
704 for (wrk
= environ
; *wrk
!= NULL
; wrk
++) {
707 while (wrk
!= environ
) {
709 (void) envlist_setenv(envlist
, *wrk
);
712 /* Read the stack limit from the kernel. If it's "unlimited",
713 then we can do little else besides use the default. */
716 if (getrlimit(RLIMIT_STACK
, &lim
) == 0
717 && lim
.rlim_cur
!= RLIM_INFINITY
718 && lim
.rlim_cur
== (target_long
)lim
.rlim_cur
719 && lim
.rlim_cur
> guest_stack_size
) {
720 guest_stack_size
= lim
.rlim_cur
;
726 qemu_add_opts(&qemu_trace_opts
);
727 qemu_plugin_add_opts();
729 optind
= parse_args(argc
, argv
);
731 qemu_set_log_filename_flags(last_log_filename
,
732 last_log_mask
| (enable_strace
* LOG_STRACE
),
735 if (!trace_init_backends()) {
739 qemu_plugin_load_list(&plugins
, &error_fatal
);
742 memset(regs
, 0, sizeof(struct target_pt_regs
));
744 /* Zero out image_info */
745 memset(info
, 0, sizeof(struct image_info
));
747 memset(&bprm
, 0, sizeof (bprm
));
749 /* Scan interp_prefix dir for replacement files. */
750 init_paths(interp_prefix
);
752 init_qemu_uname_release();
755 * Manage binfmt-misc open-binary flag
757 execfd
= qemu_getauxval(AT_EXECFD
);
759 execfd
= open(exec_path
, O_RDONLY
);
761 printf("Error while loading %s: %s\n", exec_path
, strerror(errno
));
766 /* Resolve executable file name to full path name */
767 if (realpath(exec_path
, real_exec_path
)) {
768 exec_path
= real_exec_path
;
772 * get binfmt_misc flags
774 preserve_argv0
= !!(qemu_getauxval(AT_FLAGS
) & AT_FLAGS_PRESERVE_ARGV0
);
777 * Manage binfmt-misc preserve-arg[0] flag
778 * argv[optind] full path to the binary
779 * argv[optind + 1] original argv[0]
781 if (optind
+ 1 < argc
&& preserve_argv0
) {
785 if (cpu_model
== NULL
) {
786 cpu_model
= cpu_get_model(get_elf_eflags(execfd
));
788 cpu_type
= parse_cpu_option(cpu_model
);
790 /* init tcg before creating CPUs */
792 AccelState
*accel
= current_accel();
793 AccelClass
*ac
= ACCEL_GET_CLASS(accel
);
795 accel_init_interfaces(ac
);
796 object_property_set_bool(OBJECT(accel
), "one-insn-per-tb",
797 opt_one_insn_per_tb
, &error_abort
);
798 ac
->init_machine(NULL
);
802 * Finalize page size before creating CPUs.
803 * This will do nothing if !TARGET_PAGE_BITS_VARY.
804 * The most efficient setting is to match the host.
806 host_page_size
= qemu_real_host_page_size();
807 set_preferred_target_page_bits(ctz32(host_page_size
));
808 finalize_target_page_bits();
810 cpu
= cpu_create(cpu_type
);
816 * Reserving too much vm space via mmap can run into problems
817 * with rlimits, oom due to page table creation, etc. We will
818 * still try it, if directed by the command-line option, but
821 max_reserved_va
= MAX_RESERVED_VA(cpu
);
822 if (reserved_va
!= 0) {
823 if ((reserved_va
+ 1) % host_page_size
) {
824 char *s
= size_to_str(host_page_size
);
825 fprintf(stderr
, "Reserved virtual address not aligned mod %s\n", s
);
829 if (max_reserved_va
&& reserved_va
> max_reserved_va
) {
830 fprintf(stderr
, "Reserved virtual address too big\n");
833 } else if (HOST_LONG_BITS
== 64 && TARGET_VIRT_ADDR_SPACE_BITS
<= 32) {
834 /* MAX_RESERVED_VA + 1 is a large power of 2, so is aligned. */
835 reserved_va
= max_reserved_va
;
839 * Temporarily disable
840 * "comparison is always false due to limited range of data type"
841 * due to comparison between (possible) uint64_t and uintptr_t.
843 #pragma GCC diagnostic push
844 #pragma GCC diagnostic ignored "-Wtype-limits"
847 * Select an initial value for task_unmapped_base that is in range.
850 if (TASK_UNMAPPED_BASE
< reserved_va
) {
851 task_unmapped_base
= TASK_UNMAPPED_BASE
;
853 /* The most common default formula is TASK_SIZE / 3. */
854 task_unmapped_base
= TARGET_PAGE_ALIGN(reserved_va
/ 3);
856 } else if (TASK_UNMAPPED_BASE
< UINTPTR_MAX
) {
857 task_unmapped_base
= TASK_UNMAPPED_BASE
;
859 /* 32-bit host: pick something medium size. */
860 task_unmapped_base
= 0x10000000;
862 mmap_next_start
= task_unmapped_base
;
864 /* Similarly for elf_et_dyn_base. */
866 if (ELF_ET_DYN_BASE
< reserved_va
) {
867 elf_et_dyn_base
= ELF_ET_DYN_BASE
;
869 /* The most common default formula is TASK_SIZE / 3 * 2. */
870 elf_et_dyn_base
= TARGET_PAGE_ALIGN(reserved_va
/ 3) * 2;
872 } else if (ELF_ET_DYN_BASE
< UINTPTR_MAX
) {
873 elf_et_dyn_base
= ELF_ET_DYN_BASE
;
875 /* 32-bit host: pick something medium size. */
876 elf_et_dyn_base
= 0x18000000;
879 #pragma GCC diagnostic pop
883 if (seed_optarg
!= NULL
) {
884 qemu_guest_random_seed_main(seed_optarg
, &err
);
889 error_reportf_err(err
, "cannot initialize crypto: ");
894 target_environ
= envlist_to_environ(envlist
, NULL
);
895 envlist_free(envlist
);
898 * Read in mmap_min_addr kernel parameter. This value is used
899 * When loading the ELF image to determine whether guest_base
900 * is needed. It is also used in mmap_find_vma.
905 if ((fp
= fopen("/proc/sys/vm/mmap_min_addr", "r")) != NULL
) {
907 if (fscanf(fp
, "%lu", &tmp
) == 1 && tmp
!= 0) {
908 mmap_min_addr
= MAX(tmp
, host_page_size
);
909 qemu_log_mask(CPU_LOG_PAGE
, "host mmap_min_addr=0x%lx\n",
917 * We prefer to not make NULL pointers accessible to QEMU.
918 * If we're in a chroot with no /proc, fall back to 1 page.
920 if (mmap_min_addr
== 0) {
921 mmap_min_addr
= host_page_size
;
922 qemu_log_mask(CPU_LOG_PAGE
,
923 "host mmap_min_addr=0x%lx (fallback)\n",
928 * Prepare copy of argv vector for target.
930 target_argc
= argc
- optind
;
931 target_argv
= calloc(target_argc
+ 1, sizeof (char *));
932 if (target_argv
== NULL
) {
933 (void) fprintf(stderr
, "Unable to allocate memory for target_argv\n");
938 * If argv0 is specified (using '-0' switch) we replace
939 * argv[0] pointer with the given one.
943 target_argv
[i
++] = strdup(argv0
);
945 for (; i
< target_argc
; i
++) {
946 target_argv
[i
] = strdup(argv
[optind
+ i
]);
948 target_argv
[target_argc
] = NULL
;
950 ts
= g_new0(TaskState
, 1);
952 /* build Task State */
960 ret
= loader_exec(execfd
, exec_path
, target_argv
, target_environ
, regs
,
963 printf("Error while loading %s: %s\n", exec_path
, strerror(-ret
));
967 for (wrk
= target_environ
; *wrk
; wrk
++) {
971 g_free(target_environ
);
973 if (qemu_loglevel_mask(CPU_LOG_PAGE
)) {
974 FILE *f
= qemu_log_trylock();
976 fprintf(f
, "guest_base %p\n", (void *)guest_base
);
977 fprintf(f
, "page layout changed following binary load\n");
980 fprintf(f
, "end_code 0x" TARGET_ABI_FMT_lx
"\n",
982 fprintf(f
, "start_code 0x" TARGET_ABI_FMT_lx
"\n",
984 fprintf(f
, "start_data 0x" TARGET_ABI_FMT_lx
"\n",
986 fprintf(f
, "end_data 0x" TARGET_ABI_FMT_lx
"\n",
988 fprintf(f
, "start_stack 0x" TARGET_ABI_FMT_lx
"\n",
990 fprintf(f
, "brk 0x" TARGET_ABI_FMT_lx
"\n",
992 fprintf(f
, "entry 0x" TARGET_ABI_FMT_lx
"\n",
994 fprintf(f
, "argv_start 0x" TARGET_ABI_FMT_lx
"\n",
996 fprintf(f
, "env_start 0x" TARGET_ABI_FMT_lx
"\n",
998 fprintf(f
, "auxv_start 0x" TARGET_ABI_FMT_lx
"\n",
1004 target_set_brk(info
->brk
);
1008 /* Now that we've loaded the binary, GUEST_BASE is fixed. Delay
1009 generating the prologue until now so that the prologue can take
1010 the real value of GUEST_BASE into account. */
1011 tcg_prologue_init();
1013 target_cpu_copy_regs(env
, regs
);
1016 if (gdbserver_start(gdbstub
) < 0) {
1017 fprintf(stderr
, "qemu: could not open gdbserver on %s\n",
1021 gdb_handlesig(cpu
, 0);
1024 #ifdef CONFIG_SEMIHOSTING
1025 qemu_semihosting_guestfd_init();