]> git.proxmox.com Git - mirror_qemu.git/blame - linux-user/main.c
hw/cpu: Clean up global variable shadowing
[mirror_qemu.git] / linux-user / main.c
CommitLineData
31e31b8a 1/*
93ac68bc 2 * qemu user main
5fafdf24 3 *
68d0f70e 4 * Copyright (c) 2003-2008 Fabrice Bellard
31e31b8a
FB
5 *
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.
10 *
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.
15 *
16 * You should have received a copy of the GNU General Public License
8167ee88 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
31e31b8a 18 */
14a48c1d 19
d39594e9 20#include "qemu/osdep.h"
49f95221 21#include "qemu/help-texts.h"
b52713c1 22#include "qemu/units.h"
940e43aa 23#include "qemu/accel.h"
67a1de0d 24#include "qemu-version.h"
edf8e2af 25#include <sys/syscall.h>
703e0e89 26#include <sys/resource.h>
ee947430 27#include <sys/shm.h>
6e1c0d7b 28#include <linux/binfmts.h>
31e31b8a 29
daa76aa4 30#include "qapi/error.h"
3ef693a0 31#include "qemu.h"
3b249d26 32#include "user-internals.h"
f348b6d1 33#include "qemu/path.h"
dc5e9ac7 34#include "qemu/queue.h"
6533dd6e 35#include "qemu/config-file.h"
f348b6d1 36#include "qemu/cutils.h"
f5852efa 37#include "qemu/error-report.h"
f348b6d1 38#include "qemu/help_option.h"
0b8fa32f 39#include "qemu/module.h"
f308f64e 40#include "qemu/plugin.h"
63c91552 41#include "exec/exec-all.h"
85b4fa0c 42#include "exec/gdbstub.h"
d96bf49b 43#include "gdbstub/user.h"
d7ec12f8 44#include "tcg/startup.h"
1de7afc9
PB
45#include "qemu/timer.h"
46#include "qemu/envlist.h"
5ebdd774 47#include "qemu/guest-random.h"
d8fd2954 48#include "elf.h"
6533dd6e 49#include "trace/control.h"
542ca434 50#include "target_elf.h"
cd71c089 51#include "cpu_loop-common.h"
a573e9ba 52#include "crypto/init.h"
c093364f 53#include "fd-trans.h"
2113aed6 54#include "signal-common.h"
3ad0a769 55#include "loader.h"
5423e6d3 56#include "user-mmap.h"
5584e2db 57#include "accel/tcg/perf.h"
04a6dfeb 58
e4a4aaa5
RH
59#ifdef CONFIG_SEMIHOSTING
60#include "semihosting/semihost.h"
61#endif
62
6e1c0d7b
LV
63#ifndef AT_FLAGS_PRESERVE_ARGV0
64#define AT_FLAGS_PRESERVE_ARGV0_BIT 0
65#define AT_FLAGS_PRESERVE_ARGV0 (1 << AT_FLAGS_PRESERVE_ARGV0_BIT)
66#endif
67
d088d664 68char *exec_path;
258bec39 69char real_exec_path[PATH_MAX];
d088d664 70
3cfb0456 71static bool opt_one_insn_per_tb;
8cb76755 72static const char *argv0;
fcedd920 73static const char *gdbstub;
8cb76755 74static envlist_t *envlist;
51fb256a 75static const char *cpu_model;
2278b939 76static const char *cpu_type;
5ebdd774 77static const char *seed_optarg;
379f6698 78unsigned long mmap_min_addr;
5ca870b9 79uintptr_t guest_base;
e307c192 80bool have_guest_base;
120a9848 81
4b25a506
JK
82/*
83 * Used to implement backwards-compatibility for the `-strace`, and
84 * QEMU_STRACE options. Without this, the QEMU_LOG can be overwritten by
85 * -strace, or vice versa.
86 */
87static bool enable_strace;
88
89/*
90 * The last log mask given by the user in an environment variable or argument.
91 * Used to support command line arguments overriding environment variables.
92 */
93static int last_log_mask;
b410253f 94static const char *last_log_filename;
4b25a506 95
288e65b9
AG
96/*
97 * When running 32-on-64 we should make sure we can fit all of the possible
98 * guest address space into a contiguous chunk of virtual host memory.
99 *
100 * This way we will never overlap with our own libraries or binaries or stack
101 * or anything else that QEMU maps.
18e80c55
RH
102 *
103 * Many cpus reserve the high bit (or more than one for some 64-bit cpus)
104 * of the address for the kernel. Some cpus rely on this and user space
105 * uses the high bit(s) for pointer tagging and the like. For them, we
106 * must preserve the expected address space.
288e65b9 107 */
18e80c55
RH
108#ifndef MAX_RESERVED_VA
109# if HOST_LONG_BITS > TARGET_VIRT_ADDR_SPACE_BITS
110# if TARGET_VIRT_ADDR_SPACE_BITS == 32 && \
111 (TARGET_LONG_BITS == 32 || defined(TARGET_ABI32))
95059f9c 112# define MAX_RESERVED_VA(CPU) 0xfffffffful
18e80c55 113# else
95059f9c 114# define MAX_RESERVED_VA(CPU) ((1ul << TARGET_VIRT_ADDR_SPACE_BITS) - 1)
18e80c55 115# endif
314992b1 116# else
8f67b9c6 117# define MAX_RESERVED_VA(CPU) 0
314992b1 118# endif
18e80c55
RH
119#endif
120
68a1c816 121unsigned long reserved_va;
1b530a6d 122
d03f9c32 123static void usage(int exitcode);
fc9c5412 124
7ee2822c 125static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX;
e586822a 126const char *qemu_uname_release;
586314f2 127
0a3346b5 128#if !defined(TARGET_DEFAULT_STACK_SIZE)
9de5e440
FB
129/* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so
130 we allocate a bigger stack. Need a better solution, for example
131 by remapping the process stack directly at the right place */
0a3346b5
HD
132#define TARGET_DEFAULT_STACK_SIZE 8 * 1024 * 1024UL
133#endif
134
135unsigned long guest_stack_size = TARGET_DEFAULT_STACK_SIZE;
31e31b8a 136
d5975363
PB
137/***********************************************************/
138/* Helper routines for implementing atomic operations. */
139
d5975363
PB
140/* Make sure everything is in a consistent state for calling fork(). */
141void fork_start(void)
142{
06065c45 143 start_exclusive();
d032d1b4 144 mmap_fork_start();
024949ca 145 cpu_list_lock();
f7e15aff 146 qemu_plugin_user_prefork_lock();
d5975363
PB
147}
148
149void fork_end(int child)
150{
f7e15aff 151 qemu_plugin_user_postfork(child);
d032d1b4 152 mmap_fork_end(child);
d5975363 153 if (child) {
bdc44640 154 CPUState *cpu, *next_cpu;
d5975363
PB
155 /* Child processes created by fork() only have a single thread.
156 Discard information about the parent threads. */
bdc44640
AF
157 CPU_FOREACH_SAFE(cpu, next_cpu) {
158 if (cpu != thread_cpu) {
3c55dd58 159 QTAILQ_REMOVE_RCU(&cpus_queue, cpu, node);
bdc44640
AF
160 }
161 }
267f685b 162 qemu_init_cpu_list();
f7ec7f7b 163 gdbserver_fork(thread_cpu);
d5975363 164 } else {
267f685b 165 cpu_list_unlock();
d5975363 166 }
7de0816f
IL
167 /*
168 * qemu_init_cpu_list() reinitialized the child exclusive state, but we
169 * also need to keep current_cpu consistent, so call end_exclusive() for
170 * both child and parent.
171 */
172 end_exclusive();
d5975363
PB
173}
174
b44316fb 175__thread CPUState *thread_cpu;
59faf6d6 176
178f9429
SF
177bool qemu_cpu_is_self(CPUState *cpu)
178{
179 return thread_cpu == cpu;
180}
181
182void qemu_cpu_kick(CPUState *cpu)
183{
184 cpu_exit(cpu);
185}
186
edf8e2af
MW
187void task_settid(TaskState *ts)
188{
189 if (ts->ts_tid == 0) {
edf8e2af 190 ts->ts_tid = (pid_t)syscall(SYS_gettid);
edf8e2af
MW
191 }
192}
193
194void stop_all_tasks(void)
195{
196 /*
197 * We trust that when using NPTL, start_exclusive()
198 * handles thread stopping correctly.
199 */
200 start_exclusive();
201}
202
c3a92833 203/* Assumes contents are already zeroed. */
624f7979
PB
204void init_task_state(TaskState *ts)
205{
eb33cdae
CE
206 long ticks_per_sec;
207 struct timespec bt;
208
624f7979 209 ts->used = 1;
5bfce0b7
PM
210 ts->sigaltstack_used = (struct target_sigaltstack) {
211 .ss_sp = 0,
212 .ss_size = 0,
213 .ss_flags = TARGET_SS_DISABLE,
214 };
eb33cdae
CE
215
216 /* Capture task start time relative to system boot */
217
218 ticks_per_sec = sysconf(_SC_CLK_TCK);
219
220 if ((ticks_per_sec > 0) && !clock_gettime(CLOCK_BOOTTIME, &bt)) {
221 /* start_boottime is expressed in clock ticks */
222 ts->start_boottime = bt.tv_sec * (uint64_t) ticks_per_sec;
223 ts->start_boottime += bt.tv_nsec * (uint64_t) ticks_per_sec /
224 NANOSECONDS_PER_SECOND;
225 }
624f7979 226}
fc9c5412 227
30ba0ee5
AF
228CPUArchState *cpu_copy(CPUArchState *env)
229{
29a0af61 230 CPUState *cpu = env_cpu(env);
2278b939 231 CPUState *new_cpu = cpu_create(cpu_type);
b77af26e 232 CPUArchState *new_env = cpu_env(new_cpu);
30ba0ee5 233 CPUBreakpoint *bp;
30ba0ee5
AF
234
235 /* Reset non arch specific state */
75a34036 236 cpu_reset(new_cpu);
30ba0ee5 237
6cc9d67c 238 new_cpu->tcg_cflags = cpu->tcg_cflags;
30ba0ee5 239 memcpy(new_env, env, sizeof(CPUArchState));
2732c739 240#if defined(TARGET_I386) || defined(TARGET_X86_64)
241 new_env->gdt.base = target_mmap(0, sizeof(uint64_t) * TARGET_GDT_ENTRIES,
242 PROT_READ | PROT_WRITE,
243 MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
244 memcpy(g2h_untagged(new_env->gdt.base), g2h_untagged(env->gdt.base),
245 sizeof(uint64_t) * TARGET_GDT_ENTRIES);
246 OBJECT(new_cpu)->free = OBJECT(cpu)->free;
247#endif
30ba0ee5
AF
248
249 /* Clone all break/watchpoints.
250 Note: Once we support ptrace with hw-debug register access, make sure
251 BP_CPU break/watchpoints are handled correctly on clone. */
1d085f6c 252 QTAILQ_INIT(&new_cpu->breakpoints);
f0c3c505 253 QTAILQ_FOREACH(bp, &cpu->breakpoints, entry) {
b3310ab3 254 cpu_breakpoint_insert(new_cpu, bp->pc, bp->flags, NULL);
30ba0ee5 255 }
30ba0ee5
AF
256
257 return new_env;
258}
259
fc9c5412
JS
260static void handle_arg_help(const char *arg)
261{
4d1275c2 262 usage(EXIT_SUCCESS);
fc9c5412
JS
263}
264
265static void handle_arg_log(const char *arg)
266{
4b25a506
JK
267 last_log_mask = qemu_str_to_log_mask(arg);
268 if (!last_log_mask) {
59a6fa6e 269 qemu_print_log_usage(stdout);
4d1275c2 270 exit(EXIT_FAILURE);
fc9c5412 271 }
fc9c5412
JS
272}
273
8423fa90
AB
274static void handle_arg_dfilter(const char *arg)
275{
7f4341e8 276 qemu_set_dfilter_ranges(arg, &error_fatal);
8423fa90
AB
277}
278
50171d42
CWR
279static void handle_arg_log_filename(const char *arg)
280{
b410253f 281 last_log_filename = arg;
50171d42
CWR
282}
283
fc9c5412
JS
284static void handle_arg_set_env(const char *arg)
285{
286 char *r, *p, *token;
287 r = p = strdup(arg);
288 while ((token = strsep(&p, ",")) != NULL) {
289 if (envlist_setenv(envlist, token) != 0) {
4d1275c2 290 usage(EXIT_FAILURE);
fc9c5412
JS
291 }
292 }
293 free(r);
294}
295
296static void handle_arg_unset_env(const char *arg)
297{
298 char *r, *p, *token;
299 r = p = strdup(arg);
300 while ((token = strsep(&p, ",")) != NULL) {
301 if (envlist_unsetenv(envlist, token) != 0) {
4d1275c2 302 usage(EXIT_FAILURE);
fc9c5412
JS
303 }
304 }
305 free(r);
306}
307
308static void handle_arg_argv0(const char *arg)
309{
310 argv0 = strdup(arg);
311}
312
313static void handle_arg_stack_size(const char *arg)
314{
315 char *p;
316 guest_stack_size = strtoul(arg, &p, 0);
317 if (guest_stack_size == 0) {
4d1275c2 318 usage(EXIT_FAILURE);
fc9c5412
JS
319 }
320
321 if (*p == 'M') {
b52713c1 322 guest_stack_size *= MiB;
fc9c5412 323 } else if (*p == 'k' || *p == 'K') {
b52713c1 324 guest_stack_size *= KiB;
fc9c5412
JS
325 }
326}
327
328static void handle_arg_ld_prefix(const char *arg)
329{
330 interp_prefix = strdup(arg);
331}
332
333static void handle_arg_pagesize(const char *arg)
334{
335 qemu_host_page_size = atoi(arg);
336 if (qemu_host_page_size == 0 ||
337 (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
338 fprintf(stderr, "page size must be a power of two\n");
4d1275c2 339 exit(EXIT_FAILURE);
fc9c5412
JS
340 }
341}
342
5ebdd774 343static void handle_arg_seed(const char *arg)
c5e4a5a9 344{
5ebdd774 345 seed_optarg = arg;
c5e4a5a9
MR
346}
347
fc9c5412
JS
348static void handle_arg_gdb(const char *arg)
349{
fcedd920 350 gdbstub = g_strdup(arg);
fc9c5412
JS
351}
352
353static void handle_arg_uname(const char *arg)
354{
355 qemu_uname_release = strdup(arg);
356}
357
358static void handle_arg_cpu(const char *arg)
359{
360 cpu_model = strdup(arg);
c8057f95 361 if (cpu_model == NULL || is_help_option(cpu_model)) {
b67e5cb4 362 list_cpus();
4d1275c2 363 exit(EXIT_FAILURE);
fc9c5412
JS
364 }
365}
366
fc9c5412
JS
367static void handle_arg_guest_base(const char *arg)
368{
369 guest_base = strtol(arg, NULL, 0);
e307c192 370 have_guest_base = true;
fc9c5412
JS
371}
372
373static void handle_arg_reserved_va(const char *arg)
374{
375 char *p;
376 int shift = 0;
95059f9c
RH
377 unsigned long val;
378
379 val = strtoul(arg, &p, 0);
fc9c5412
JS
380 switch (*p) {
381 case 'k':
382 case 'K':
383 shift = 10;
384 break;
385 case 'M':
386 shift = 20;
387 break;
388 case 'G':
389 shift = 30;
390 break;
391 }
392 if (shift) {
95059f9c 393 unsigned long unshifted = val;
fc9c5412 394 p++;
95059f9c
RH
395 val <<= shift;
396 if (val >> shift != unshifted) {
fc9c5412 397 fprintf(stderr, "Reserved virtual address too big\n");
4d1275c2 398 exit(EXIT_FAILURE);
fc9c5412
JS
399 }
400 }
401 if (*p) {
402 fprintf(stderr, "Unrecognised -R size suffix '%s'\n", p);
4d1275c2 403 exit(EXIT_FAILURE);
fc9c5412 404 }
95059f9c
RH
405 /* The representation is size - 1, with 0 remaining "default". */
406 reserved_va = val ? val - 1 : 0;
fc9c5412 407}
fc9c5412 408
e99c1f89 409static void handle_arg_one_insn_per_tb(const char *arg)
fc9c5412 410{
3cfb0456 411 opt_one_insn_per_tb = true;
fc9c5412
JS
412}
413
414static void handle_arg_strace(const char *arg)
415{
4b25a506 416 enable_strace = true;
fc9c5412
JS
417}
418
419static void handle_arg_version(const char *arg)
420{
7e563bfb 421 printf("qemu-" TARGET_NAME " version " QEMU_FULL_VERSION
0781dd6e 422 "\n" QEMU_COPYRIGHT "\n");
4d1275c2 423 exit(EXIT_SUCCESS);
fc9c5412
JS
424}
425
6533dd6e
LV
426static void handle_arg_trace(const char *arg)
427{
92eecfff 428 trace_opt_parse(arg);
6533dd6e
LV
429}
430
130ea832
MF
431#if defined(TARGET_XTENSA)
432static void handle_arg_abi_call0(const char *arg)
433{
434 xtensa_set_abi_call0();
435}
436#endif
437
5584e2db
IL
438static void handle_arg_perfmap(const char *arg)
439{
440 perf_enable_perfmap();
441}
442
443static void handle_arg_jitdump(const char *arg)
444{
445 perf_enable_jitdump();
446}
447
f308f64e
LV
448static QemuPluginList plugins = QTAILQ_HEAD_INITIALIZER(plugins);
449
450#ifdef CONFIG_PLUGIN
451static void handle_arg_plugin(const char *arg)
452{
453 qemu_plugin_opt_parse(arg, &plugins);
454}
455#endif
456
fc9c5412
JS
457struct qemu_argument {
458 const char *argv;
459 const char *env;
460 bool has_arg;
461 void (*handle_opt)(const char *arg);
462 const char *example;
463 const char *help;
464};
465
42644cee 466static const struct qemu_argument arg_table[] = {
fc9c5412
JS
467 {"h", "", false, handle_arg_help,
468 "", "print this help"},
daaf8c8e
MI
469 {"help", "", false, handle_arg_help,
470 "", ""},
fc9c5412
JS
471 {"g", "QEMU_GDB", true, handle_arg_gdb,
472 "port", "wait gdb connection to 'port'"},
473 {"L", "QEMU_LD_PREFIX", true, handle_arg_ld_prefix,
474 "path", "set the elf interpreter prefix to 'path'"},
475 {"s", "QEMU_STACK_SIZE", true, handle_arg_stack_size,
476 "size", "set the stack size to 'size' bytes"},
477 {"cpu", "QEMU_CPU", true, handle_arg_cpu,
c8057f95 478 "model", "select CPU (-cpu help for list)"},
fc9c5412
JS
479 {"E", "QEMU_SET_ENV", true, handle_arg_set_env,
480 "var=value", "sets targets environment variable (see below)"},
481 {"U", "QEMU_UNSET_ENV", true, handle_arg_unset_env,
482 "var", "unsets targets environment variable (see below)"},
483 {"0", "QEMU_ARGV0", true, handle_arg_argv0,
484 "argv0", "forces target process argv[0] to be 'argv0'"},
485 {"r", "QEMU_UNAME", true, handle_arg_uname,
486 "uname", "set qemu uname release string to 'uname'"},
fc9c5412
JS
487 {"B", "QEMU_GUEST_BASE", true, handle_arg_guest_base,
488 "address", "set guest_base address to 'address'"},
489 {"R", "QEMU_RESERVED_VA", true, handle_arg_reserved_va,
490 "size", "reserve 'size' bytes for guest virtual address space"},
fc9c5412 491 {"d", "QEMU_LOG", true, handle_arg_log,
989b697d
PM
492 "item[,...]", "enable logging of specified items "
493 "(use '-d help' for a list of items)"},
8423fa90
AB
494 {"dfilter", "QEMU_DFILTER", true, handle_arg_dfilter,
495 "range[,...]","filter logging based on address range"},
50171d42 496 {"D", "QEMU_LOG_FILENAME", true, handle_arg_log_filename,
989b697d 497 "logfile", "write logs to 'logfile' (default stderr)"},
fc9c5412
JS
498 {"p", "QEMU_PAGESIZE", true, handle_arg_pagesize,
499 "pagesize", "set the host page size to 'pagesize'"},
e99c1f89
PM
500 {"one-insn-per-tb",
501 "QEMU_ONE_INSN_PER_TB", false, handle_arg_one_insn_per_tb,
502 "", "run with one guest instruction per emulated TB"},
503 {"singlestep", "QEMU_SINGLESTEP", false, handle_arg_one_insn_per_tb,
504 "", "deprecated synonym for -one-insn-per-tb"},
fc9c5412
JS
505 {"strace", "QEMU_STRACE", false, handle_arg_strace,
506 "", "log system calls"},
5ebdd774 507 {"seed", "QEMU_RAND_SEED", true, handle_arg_seed,
c5e4a5a9 508 "", "Seed for pseudo-random number generator"},
6533dd6e
LV
509 {"trace", "QEMU_TRACE", true, handle_arg_trace,
510 "", "[[enable=]<pattern>][,events=<file>][,file=<file>]"},
f308f64e
LV
511#ifdef CONFIG_PLUGIN
512 {"plugin", "QEMU_PLUGIN", true, handle_arg_plugin,
3a445acb 513 "", "[file=]<file>[,<argname>=<argvalue>]"},
f308f64e 514#endif
fc9c5412 515 {"version", "QEMU_VERSION", false, handle_arg_version,
1386d4c0 516 "", "display version information and exit"},
130ea832
MF
517#if defined(TARGET_XTENSA)
518 {"xtensa-abi-call0", "QEMU_XTENSA_ABI_CALL0", false, handle_arg_abi_call0,
519 "", "assume CALL0 Xtensa ABI"},
520#endif
5584e2db
IL
521 {"perfmap", "QEMU_PERFMAP", false, handle_arg_perfmap,
522 "", "Generate a /tmp/perf-${pid}.map file for perf"},
523 {"jitdump", "QEMU_JITDUMP", false, handle_arg_jitdump,
524 "", "Generate a jit-${pid}.dump file for perf"},
fc9c5412
JS
525 {NULL, NULL, false, NULL, NULL, NULL}
526};
527
d03f9c32 528static void usage(int exitcode)
fc9c5412 529{
42644cee 530 const struct qemu_argument *arginfo;
fc9c5412
JS
531 int maxarglen;
532 int maxenvlen;
533
2e59915d
PB
534 printf("usage: qemu-" TARGET_NAME " [options] program [arguments...]\n"
535 "Linux CPU emulator (compiled for " TARGET_NAME " emulation)\n"
fc9c5412
JS
536 "\n"
537 "Options and associated environment variables:\n"
538 "\n");
539
63ec54d7
PM
540 /* Calculate column widths. We must always have at least enough space
541 * for the column header.
542 */
543 maxarglen = strlen("Argument");
544 maxenvlen = strlen("Env-variable");
fc9c5412
JS
545
546 for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) {
63ec54d7
PM
547 int arglen = strlen(arginfo->argv);
548 if (arginfo->has_arg) {
549 arglen += strlen(arginfo->example) + 1;
550 }
fc9c5412
JS
551 if (strlen(arginfo->env) > maxenvlen) {
552 maxenvlen = strlen(arginfo->env);
553 }
63ec54d7
PM
554 if (arglen > maxarglen) {
555 maxarglen = arglen;
fc9c5412
JS
556 }
557 }
558
63ec54d7
PM
559 printf("%-*s %-*s Description\n", maxarglen+1, "Argument",
560 maxenvlen, "Env-variable");
fc9c5412
JS
561
562 for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) {
563 if (arginfo->has_arg) {
564 printf("-%s %-*s %-*s %s\n", arginfo->argv,
63ec54d7
PM
565 (int)(maxarglen - strlen(arginfo->argv) - 1),
566 arginfo->example, maxenvlen, arginfo->env, arginfo->help);
fc9c5412 567 } else {
63ec54d7 568 printf("-%-*s %-*s %s\n", maxarglen, arginfo->argv,
fc9c5412
JS
569 maxenvlen, arginfo->env,
570 arginfo->help);
571 }
572 }
573
574 printf("\n"
575 "Defaults:\n"
576 "QEMU_LD_PREFIX = %s\n"
989b697d 577 "QEMU_STACK_SIZE = %ld byte\n",
fc9c5412 578 interp_prefix,
989b697d 579 guest_stack_size);
fc9c5412
JS
580
581 printf("\n"
582 "You can use -E and -U options or the QEMU_SET_ENV and\n"
583 "QEMU_UNSET_ENV environment variables to set and unset\n"
584 "environment variables for the target process.\n"
585 "It is possible to provide several variables by separating them\n"
586 "by commas in getsubopt(3) style. Additionally it is possible to\n"
587 "provide the -E and -U options multiple times.\n"
588 "The following lines are equivalent:\n"
589 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
590 " -E var1=val2,var2=val2 -U LD_PRELOAD,LD_DEBUG\n"
591 " QEMU_SET_ENV=var1=val2,var2=val2 QEMU_UNSET_ENV=LD_PRELOAD,LD_DEBUG\n"
592 "Note that if you provide several changes to a single variable\n"
f5048cb7
EB
593 "the last change will stay in effect.\n"
594 "\n"
595 QEMU_HELP_BOTTOM "\n");
fc9c5412 596
d03f9c32 597 exit(exitcode);
fc9c5412
JS
598}
599
600static int parse_args(int argc, char **argv)
601{
602 const char *r;
603 int optind;
42644cee 604 const struct qemu_argument *arginfo;
fc9c5412
JS
605
606 for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) {
607 if (arginfo->env == NULL) {
608 continue;
609 }
610
611 r = getenv(arginfo->env);
612 if (r != NULL) {
613 arginfo->handle_opt(r);
614 }
615 }
616
617 optind = 1;
618 for (;;) {
619 if (optind >= argc) {
620 break;
621 }
622 r = argv[optind];
623 if (r[0] != '-') {
624 break;
625 }
626 optind++;
627 r++;
628 if (!strcmp(r, "-")) {
629 break;
630 }
ba02577c
MI
631 /* Treat --foo the same as -foo. */
632 if (r[0] == '-') {
633 r++;
634 }
fc9c5412
JS
635
636 for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) {
637 if (!strcmp(r, arginfo->argv)) {
fc9c5412 638 if (arginfo->has_arg) {
1386d4c0 639 if (optind >= argc) {
138940bf
MI
640 (void) fprintf(stderr,
641 "qemu: missing argument for option '%s'\n", r);
4d1275c2 642 exit(EXIT_FAILURE);
1386d4c0
PM
643 }
644 arginfo->handle_opt(argv[optind]);
fc9c5412 645 optind++;
1386d4c0
PM
646 } else {
647 arginfo->handle_opt(NULL);
fc9c5412 648 }
fc9c5412
JS
649 break;
650 }
651 }
652
653 /* no option matched the current argv */
654 if (arginfo->handle_opt == NULL) {
138940bf 655 (void) fprintf(stderr, "qemu: unknown option '%s'\n", r);
4d1275c2 656 exit(EXIT_FAILURE);
fc9c5412
JS
657 }
658 }
659
660 if (optind >= argc) {
138940bf 661 (void) fprintf(stderr, "qemu: no user program specified\n");
4d1275c2 662 exit(EXIT_FAILURE);
fc9c5412
JS
663 }
664
fc9c5412
JS
665 exec_path = argv[optind];
666
667 return optind;
668}
669
902b3d5c 670int main(int argc, char **argv, char **envp)
31e31b8a 671{
01ffc75b 672 struct target_pt_regs regs1, *regs = &regs1;
31e31b8a 673 struct image_info info1, *info = &info1;
edf8e2af 674 struct linux_binprm bprm;
48e15fc2 675 TaskState *ts;
9349b4f9 676 CPUArchState *env;
db6b81d4 677 CPUState *cpu;
586314f2 678 int optind;
04a6dfeb 679 char **target_environ, **wrk;
7d8cec95
AJ
680 char **target_argv;
681 int target_argc;
7d8cec95 682 int i;
fd4d81dd 683 int ret;
03cfd8fa 684 int execfd;
8f67b9c6 685 unsigned long max_reserved_va;
6e1c0d7b 686 bool preserve_argv0;
b12b6a18 687
f5852efa 688 error_init(argv[0]);
fe4db84d 689 module_call_init(MODULE_INIT_TRACE);
267f685b 690 qemu_init_cpu_list();
ce008c1f
AF
691 module_call_init(MODULE_INIT_QOM);
692
ec45bbe5 693 envlist = envlist_create();
04a6dfeb 694
7f750efc
AS
695 /*
696 * add current environment into the list
697 * envlist_setenv adds to the front of the list; to preserve environ
698 * order add from back to front
699 */
04a6dfeb 700 for (wrk = environ; *wrk != NULL; wrk++) {
7f750efc
AS
701 continue;
702 }
703 while (wrk != environ) {
704 wrk--;
04a6dfeb
AJ
705 (void) envlist_setenv(envlist, *wrk);
706 }
707
703e0e89
RH
708 /* Read the stack limit from the kernel. If it's "unlimited",
709 then we can do little else besides use the default. */
710 {
711 struct rlimit lim;
712 if (getrlimit(RLIMIT_STACK, &lim) == 0
81bbe906 713 && lim.rlim_cur != RLIM_INFINITY
0a3346b5
HD
714 && lim.rlim_cur == (target_long)lim.rlim_cur
715 && lim.rlim_cur > guest_stack_size) {
703e0e89
RH
716 guest_stack_size = lim.rlim_cur;
717 }
718 }
719
b1f9be31 720 cpu_model = NULL;
b5ec5ce0 721
6533dd6e 722 qemu_add_opts(&qemu_trace_opts);
f308f64e 723 qemu_plugin_add_opts();
6533dd6e 724
fc9c5412 725 optind = parse_args(argc, argv);
586314f2 726
b410253f
RH
727 qemu_set_log_filename_flags(last_log_filename,
728 last_log_mask | (enable_strace * LOG_STRACE),
729 &error_fatal);
4b25a506 730
6533dd6e
LV
731 if (!trace_init_backends()) {
732 exit(1);
733 }
92eecfff 734 trace_init_file();
0572f558 735 qemu_plugin_load_list(&plugins, &error_fatal);
6533dd6e 736
31e31b8a 737 /* Zero out regs */
01ffc75b 738 memset(regs, 0, sizeof(struct target_pt_regs));
31e31b8a
FB
739
740 /* Zero out image_info */
741 memset(info, 0, sizeof(struct image_info));
742
edf8e2af
MW
743 memset(&bprm, 0, sizeof (bprm));
744
74cd30b8
FB
745 /* Scan interp_prefix dir for replacement files. */
746 init_paths(interp_prefix);
747
4a24a758
PM
748 init_qemu_uname_release();
749
6e1c0d7b
LV
750 /*
751 * Manage binfmt-misc open-binary flag
752 */
768fe76e
YS
753 execfd = qemu_getauxval(AT_EXECFD);
754 if (execfd == 0) {
9d3019bc 755 execfd = open(exec_path, O_RDONLY);
768fe76e 756 if (execfd < 0) {
9d3019bc 757 printf("Error while loading %s: %s\n", exec_path, strerror(errno));
768fe76e
YS
758 _exit(EXIT_FAILURE);
759 }
760 }
761
258bec39
HD
762 /* Resolve executable file name to full path name */
763 if (realpath(exec_path, real_exec_path)) {
764 exec_path = real_exec_path;
765 }
766
6e1c0d7b
LV
767 /*
768 * get binfmt_misc flags
769 */
770 preserve_argv0 = !!(qemu_getauxval(AT_FLAGS) & AT_FLAGS_PRESERVE_ARGV0);
771
772 /*
773 * Manage binfmt-misc preserve-arg[0] flag
774 * argv[optind] full path to the binary
775 * argv[optind + 1] original argv[0]
776 */
777 if (optind + 1 < argc && preserve_argv0) {
778 optind++;
779 }
780
46027c07 781 if (cpu_model == NULL) {
768fe76e 782 cpu_model = cpu_get_model(get_elf_eflags(execfd));
aaed909a 783 }
c1c8cfe5 784 cpu_type = parse_cpu_option(cpu_model);
2278b939 785
2b5249b8 786 /* init tcg before creating CPUs and to get qemu_host_page_size */
940e43aa 787 {
3cfb0456
PM
788 AccelState *accel = current_accel();
789 AccelClass *ac = ACCEL_GET_CLASS(accel);
2278b939 790
b86f59c7 791 accel_init_interfaces(ac);
3cfb0456
PM
792 object_property_set_bool(OBJECT(accel), "one-insn-per-tb",
793 opt_one_insn_per_tb, &error_abort);
92242f34 794 ac->init_machine(NULL);
940e43aa 795 }
2278b939 796 cpu = cpu_create(cpu_type);
b77af26e 797 env = cpu_env(cpu);
0ac46af3 798 cpu_reset(cpu);
db6b81d4 799 thread_cpu = cpu;
3b46e624 800
8f67b9c6
RH
801 /*
802 * Reserving too much vm space via mmap can run into problems
803 * with rlimits, oom due to page table creation, etc. We will
804 * still try it, if directed by the command-line option, but
805 * not by default.
806 */
807 max_reserved_va = MAX_RESERVED_VA(cpu);
808 if (reserved_va != 0) {
95059f9c 809 if ((reserved_va + 1) % qemu_host_page_size) {
2f7828b5
RH
810 char *s = size_to_str(qemu_host_page_size);
811 fprintf(stderr, "Reserved virtual address not aligned mod %s\n", s);
812 g_free(s);
813 exit(EXIT_FAILURE);
814 }
8f67b9c6
RH
815 if (max_reserved_va && reserved_va > max_reserved_va) {
816 fprintf(stderr, "Reserved virtual address too big\n");
817 exit(EXIT_FAILURE);
818 }
819 } else if (HOST_LONG_BITS == 64 && TARGET_VIRT_ADDR_SPACE_BITS <= 32) {
95059f9c
RH
820 /* MAX_RESERVED_VA + 1 is a large power of 2, so is aligned. */
821 reserved_va = max_reserved_va;
8f67b9c6
RH
822 }
823
c8fb5cf9
RH
824 /*
825 * Temporarily disable
826 * "comparison is always false due to limited range of data type"
827 * due to comparison between (possible) uint64_t and uintptr_t.
828 */
829#pragma GCC diagnostic push
830#pragma GCC diagnostic ignored "-Wtype-limits"
831
832 /*
833 * Select an initial value for task_unmapped_base that is in range.
834 */
835 if (reserved_va) {
836 if (TASK_UNMAPPED_BASE < reserved_va) {
837 task_unmapped_base = TASK_UNMAPPED_BASE;
838 } else {
839 /* The most common default formula is TASK_SIZE / 3. */
840 task_unmapped_base = TARGET_PAGE_ALIGN(reserved_va / 3);
841 }
842 } else if (TASK_UNMAPPED_BASE < UINTPTR_MAX) {
843 task_unmapped_base = TASK_UNMAPPED_BASE;
844 } else {
845 /* 32-bit host: pick something medium size. */
846 task_unmapped_base = 0x10000000;
847 }
848 mmap_next_start = task_unmapped_base;
849
da2b71fa
RH
850 /* Similarly for elf_et_dyn_base. */
851 if (reserved_va) {
852 if (ELF_ET_DYN_BASE < reserved_va) {
853 elf_et_dyn_base = ELF_ET_DYN_BASE;
854 } else {
855 /* The most common default formula is TASK_SIZE / 3 * 2. */
856 elf_et_dyn_base = TARGET_PAGE_ALIGN(reserved_va / 3) * 2;
857 }
858 } else if (ELF_ET_DYN_BASE < UINTPTR_MAX) {
859 elf_et_dyn_base = ELF_ET_DYN_BASE;
860 } else {
861 /* 32-bit host: pick something medium size. */
862 elf_et_dyn_base = 0x18000000;
863 }
864
c8fb5cf9
RH
865#pragma GCC diagnostic pop
866
a573e9ba
RH
867 {
868 Error *err = NULL;
869 if (seed_optarg != NULL) {
a573e9ba
RH
870 qemu_guest_random_seed_main(seed_optarg, &err);
871 } else {
872 qcrypto_init(&err);
873 }
874 if (err) {
875 error_reportf_err(err, "cannot initialize crypto: ");
876 exit(1);
5ebdd774 877 }
c5e4a5a9
MR
878 }
879
04a6dfeb
AJ
880 target_environ = envlist_to_environ(envlist, NULL);
881 envlist_free(envlist);
b12b6a18 882
379f6698
PB
883 /*
884 * Read in mmap_min_addr kernel parameter. This value is used
885 * When loading the ELF image to determine whether guest_base
14f24e14 886 * is needed. It is also used in mmap_find_vma.
379f6698 887 */
14f24e14 888 {
379f6698
PB
889 FILE *fp;
890
891 if ((fp = fopen("/proc/sys/vm/mmap_min_addr", "r")) != NULL) {
892 unsigned long tmp;
c9f80666 893 if (fscanf(fp, "%lu", &tmp) == 1 && tmp != 0) {
379f6698 894 mmap_min_addr = tmp;
c9f80666
RH
895 qemu_log_mask(CPU_LOG_PAGE, "host mmap_min_addr=0x%lx\n",
896 mmap_min_addr);
379f6698
PB
897 }
898 fclose(fp);
899 }
900 }
379f6698 901
c9f80666
RH
902 /*
903 * We prefer to not make NULL pointers accessible to QEMU.
904 * If we're in a chroot with no /proc, fall back to 1 page.
905 */
906 if (mmap_min_addr == 0) {
907 mmap_min_addr = qemu_host_page_size;
908 qemu_log_mask(CPU_LOG_PAGE,
909 "host mmap_min_addr=0x%lx (fallback)\n",
910 mmap_min_addr);
911 }
912
7d8cec95
AJ
913 /*
914 * Prepare copy of argv vector for target.
915 */
916 target_argc = argc - optind;
917 target_argv = calloc(target_argc + 1, sizeof (char *));
918 if (target_argv == NULL) {
7d37435b
PB
919 (void) fprintf(stderr, "Unable to allocate memory for target_argv\n");
920 exit(EXIT_FAILURE);
7d8cec95
AJ
921 }
922
923 /*
924 * If argv0 is specified (using '-0' switch) we replace
925 * argv[0] pointer with the given one.
926 */
927 i = 0;
928 if (argv0 != NULL) {
929 target_argv[i++] = strdup(argv0);
930 }
931 for (; i < target_argc; i++) {
932 target_argv[i] = strdup(argv[optind + i]);
933 }
934 target_argv[target_argc] = NULL;
935
c78d65e8 936 ts = g_new0(TaskState, 1);
edf8e2af
MW
937 init_task_state(ts);
938 /* build Task State */
939 ts->info = info;
940 ts->bprm = &bprm;
0429a971 941 cpu->opaque = ts;
edf8e2af
MW
942 task_settid(ts);
943
c093364f
OA
944 fd_trans_init();
945
9d3019bc 946 ret = loader_exec(execfd, exec_path, target_argv, target_environ, regs,
fd4d81dd
AP
947 info, &bprm);
948 if (ret != 0) {
9d3019bc 949 printf("Error while loading %s: %s\n", exec_path, strerror(-ret));
4d1275c2 950 _exit(EXIT_FAILURE);
b12b6a18
TS
951 }
952
953 for (wrk = target_environ; *wrk; wrk++) {
ec45bbe5 954 g_free(*wrk);
31e31b8a 955 }
3b46e624 956
ec45bbe5 957 g_free(target_environ);
b12b6a18 958
13829020 959 if (qemu_loglevel_mask(CPU_LOG_PAGE)) {
93756fdc
RH
960 FILE *f = qemu_log_trylock();
961 if (f) {
962 fprintf(f, "guest_base %p\n", (void *)guest_base);
963 fprintf(f, "page layout changed following binary load\n");
964 page_dump(f);
965
93756fdc
RH
966 fprintf(f, "end_code 0x" TARGET_ABI_FMT_lx "\n",
967 info->end_code);
968 fprintf(f, "start_code 0x" TARGET_ABI_FMT_lx "\n",
969 info->start_code);
970 fprintf(f, "start_data 0x" TARGET_ABI_FMT_lx "\n",
971 info->start_data);
972 fprintf(f, "end_data 0x" TARGET_ABI_FMT_lx "\n",
973 info->end_data);
974 fprintf(f, "start_stack 0x" TARGET_ABI_FMT_lx "\n",
975 info->start_stack);
976 fprintf(f, "brk 0x" TARGET_ABI_FMT_lx "\n",
977 info->brk);
978 fprintf(f, "entry 0x" TARGET_ABI_FMT_lx "\n",
979 info->entry);
980 fprintf(f, "argv_start 0x" TARGET_ABI_FMT_lx "\n",
60f1c801 981 info->argv);
93756fdc 982 fprintf(f, "env_start 0x" TARGET_ABI_FMT_lx "\n",
60f1c801 983 info->envp);
93756fdc
RH
984 fprintf(f, "auxv_start 0x" TARGET_ABI_FMT_lx "\n",
985 info->saved_auxv);
986 qemu_log_unlock(f);
987 }
2e77eac6 988 }
31e31b8a 989
53a5960a 990 target_set_brk(info->brk);
31e31b8a 991 syscall_init();
66fb9763 992 signal_init();
31e31b8a 993
9002ec79
RH
994 /* Now that we've loaded the binary, GUEST_BASE is fixed. Delay
995 generating the prologue until now so that the prologue can take
996 the real value of GUEST_BASE into account. */
935f75ae 997 tcg_prologue_init();
9002ec79 998
cd71c089
LV
999 target_cpu_copy_regs(env, regs);
1000
fcedd920
AB
1001 if (gdbstub) {
1002 if (gdbserver_start(gdbstub) < 0) {
1003 fprintf(stderr, "qemu: could not open gdbserver on %s\n",
1004 gdbstub);
4d1275c2 1005 exit(EXIT_FAILURE);
ff7a981a 1006 }
db6b81d4 1007 gdb_handlesig(cpu, 0);
1fddef4b 1008 }
e4a4aaa5
RH
1009
1010#ifdef CONFIG_SEMIHOSTING
1011 qemu_semihosting_guestfd_init();
1012#endif
1013
1b6b029e
FB
1014 cpu_loop(env);
1015 /* never exits */
31e31b8a
FB
1016 return 0;
1017}