blob: cd8b2a670f791fed45234b414914226acdcf9fa2 [file] [log] [blame]
blueswir184778502008-10-26 20:33:16 +00001/*
Warner Losh4c0a4fe2021-08-05 17:52:01 -06002 * qemu bsd user main
blueswir184778502008-10-26 20:33:16 +00003 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
Warner Losh4c0a4fe2021-08-05 17:52:01 -06005 * Copyright (c) 2013-14 Stacey Son
blueswir184778502008-10-26 20:33:16 +00006 *
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.
11 *
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.
16 *
17 * You should have received a copy of the GNU General Public License
Blue Swirl8167ee82009-07-16 20:47:01 +000018 * along with this program; if not, see <http://www.gnu.org/licenses/>.
blueswir184778502008-10-26 20:33:16 +000019 */
Markus Armbruster14a48c12019-05-23 16:35:05 +020020
Markus Armbruster48e438a2023-02-02 14:38:15 +010021#include "qemu/osdep.h"
Warner Losh312a0b12021-08-06 18:48:37 -060022#include <sys/resource.h>
23#include <sys/sysctl.h>
24
Marc-André Lureau49f95222022-04-20 17:25:49 +040025#include "qemu/help-texts.h"
Philippe Mathieu-Daudé66d26dd2018-06-25 09:42:38 -030026#include "qemu/units.h"
Claudio Fontana940e43a2021-02-04 17:39:24 +010027#include "qemu/accel.h"
Ed Maste8c1c2302016-08-22 10:57:13 -040028#include "qemu-version.h"
blueswir184778502008-10-26 20:33:16 +000029#include <machine/trap.h>
30
Markus Armbrusterdaa76aa2016-06-15 19:27:16 +020031#include "qapi/error.h"
blueswir184778502008-10-26 20:33:16 +000032#include "qemu.h"
Lluís Vilanova6913e792016-07-15 19:08:43 +020033#include "qemu/config-file.h"
Christophe Fergeauf5852ef2019-01-31 17:46:14 +010034#include "qemu/error-report.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020035#include "qemu/path.h"
36#include "qemu/help_option.h"
Markus Armbruster0b8fa322019-05-23 16:35:07 +020037#include "qemu/module.h"
Paolo Bonzini63c91552016-03-15 13:18:37 +010038#include "exec/exec-all.h"
Philippe Mathieu-Daudédcb32f12020-01-01 12:23:00 +010039#include "tcg/tcg.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010040#include "qemu/timer.h"
41#include "qemu/envlist.h"
Warner Losh29aabb42021-04-23 11:00:34 -060042#include "qemu/cutils.h"
Paolo Bonzini508127e2016-01-07 16:55:28 +030043#include "exec/log.h"
Lluís Vilanova6913e792016-07-15 19:08:43 +020044#include "trace/control.h"
Warner Losh03ecf072021-09-02 16:52:45 -060045#include "crypto/init.h"
46#include "qemu/guest-random.h"
Alex Bennéed96bf492023-03-02 18:57:47 -080047#include "gdbstub/user.h"
Blue Swirlfc0d96b2009-08-15 10:35:42 +000048
Warner Loshd1dc9ab2021-08-27 11:28:16 -060049#include "host-os.h"
Warner Losh031fe7a2021-08-03 19:05:40 -060050#include "target_arch_cpu.h"
Warner Loshd1dc9ab2021-08-27 11:28:16 -060051
Peter Maydell3cfb0452023-04-17 17:40:32 +010052static bool opt_one_insn_per_tb;
Richard Henderson5ca870b2021-02-12 10:48:34 -080053uintptr_t guest_base;
Richard Hendersone307c192020-05-13 18:51:29 +010054bool have_guest_base;
Warner Loshbe04f212021-08-05 18:15:47 -060055/*
56 * When running 32-on-64 we should make sure we can fit all of the possible
57 * guest address space into a contiguous chunk of virtual host memory.
58 *
59 * This way we will never overlap with our own libraries or binaries or stack
60 * or anything else that QEMU maps.
61 *
62 * Many cpus reserve the high bit (or more than one for some 64-bit cpus)
63 * of the address for the kernel. Some cpus rely on this and user space
64 * uses the high bit(s) for pointer tagging and the like. For them, we
65 * must preserve the expected address space.
66 */
67#ifndef MAX_RESERVED_VA
68# if HOST_LONG_BITS > TARGET_VIRT_ADDR_SPACE_BITS
69# if TARGET_VIRT_ADDR_SPACE_BITS == 32 && \
70 (TARGET_LONG_BITS == 32 || defined(TARGET_ABI32))
Richard Henderson95059f92023-03-06 01:26:29 +030071# define MAX_RESERVED_VA 0xfffffffful
Warner Loshbe04f212021-08-05 18:15:47 -060072# else
Richard Henderson95059f92023-03-06 01:26:29 +030073# define MAX_RESERVED_VA ((1ul << TARGET_VIRT_ADDR_SPACE_BITS) - 1)
Warner Loshbe04f212021-08-05 18:15:47 -060074# endif
75# else
76# define MAX_RESERVED_VA 0
77# endif
78#endif
79
80/*
81 * That said, reserving *too* much vm space via mmap can run into problems
82 * with rlimits, oom due to page table creation, etc. We will still try it,
83 * if directed by the command-line option, but not by default.
84 */
85#if HOST_LONG_BITS == 64 && TARGET_VIRT_ADDR_SPACE_BITS <= 32
86unsigned long reserved_va = MAX_RESERVED_VA;
87#else
Peter Maydelld6ef40b2012-04-12 12:43:41 +010088unsigned long reserved_va;
Warner Loshbe04f212021-08-05 18:15:47 -060089#endif
aurel321b530a62009-04-05 20:08:59 +000090
Paolo Bonzini7ee28222010-05-26 16:08:22 +020091static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX;
Peter Maydellfccae322014-05-09 16:06:41 +010092const char *qemu_uname_release;
Warner Losh01a298a2021-08-03 13:39:31 -060093char qemu_proc_pathname[PATH_MAX]; /* full path to exeutable */
blueswir184778502008-10-26 20:33:16 +000094
Warner Losh312a0b12021-08-06 18:48:37 -060095unsigned long target_maxtsiz = TARGET_MAXTSIZ; /* max text size */
96unsigned long target_dfldsiz = TARGET_DFLDSIZ; /* initial data size limit */
97unsigned long target_maxdsiz = TARGET_MAXDSIZ; /* max data size */
98unsigned long target_dflssiz = TARGET_DFLSSIZ; /* initial data size limit */
99unsigned long target_maxssiz = TARGET_MAXSSIZ; /* max stack size */
100unsigned long target_sgrowsiz = TARGET_SGROWSIZ; /* amount to grow stack */
blueswir184778502008-10-26 20:33:16 +0000101
Warner Losh63cca102021-08-07 14:22:34 -0600102/* Helper routines for implementing atomic operations. */
blueswir19399f092009-03-07 18:59:05 +0000103
blueswir19399f092009-03-07 18:59:05 +0000104void fork_start(void)
105{
Warner Losh63cca102021-08-07 14:22:34 -0600106 start_exclusive();
107 cpu_list_lock();
108 mmap_fork_start();
blueswir19399f092009-03-07 18:59:05 +0000109}
110
111void fork_end(int child)
112{
113 if (child) {
Warner Losh63cca102021-08-07 14:22:34 -0600114 CPUState *cpu, *next_cpu;
115 /*
116 * Child processes created by fork() only have a single thread. Discard
117 * information about the parent threads.
118 */
119 CPU_FOREACH_SAFE(cpu, next_cpu) {
120 if (cpu != thread_cpu) {
121 QTAILQ_REMOVE_RCU(&cpus, cpu, node);
122 }
123 }
124 mmap_fork_end(child);
125 /*
126 * qemu_init_cpu_list() takes care of reinitializing the exclusive
127 * state, so we don't need to end_exclusive() here.
128 */
129 qemu_init_cpu_list();
Peter Crosthwaitef7ec7f72015-06-23 19:31:16 -0700130 gdbserver_fork(thread_cpu);
Warner Losh63cca102021-08-07 14:22:34 -0600131 } else {
132 mmap_fork_end(child);
133 cpu_list_unlock();
134 end_exclusive();
blueswir19399f092009-03-07 18:59:05 +0000135 }
136}
137
Warner Losh031fe7a2021-08-03 19:05:40 -0600138void cpu_loop(CPUArchState *env)
blueswir131fc12d2009-04-11 11:09:31 +0000139{
Warner Losh031fe7a2021-08-03 19:05:40 -0600140 target_cpu_loop(env);
blueswir131fc12d2009-04-11 11:09:31 +0000141}
142
blueswir184778502008-10-26 20:33:16 +0000143static void usage(void)
144{
Thomas Huth7e563bf2018-02-15 12:06:47 +0100145 printf("qemu-" TARGET_NAME " version " QEMU_FULL_VERSION
Thomas Huth0781dd62016-10-05 11:54:44 +0200146 "\n" QEMU_COPYRIGHT "\n"
Paolo Bonzini2e599152013-06-04 14:45:27 +0200147 "usage: qemu-" TARGET_NAME " [options] program [arguments...]\n"
blueswir184778502008-10-26 20:33:16 +0000148 "BSD CPU emulator (compiled for %s emulation)\n"
149 "\n"
150 "Standard options:\n"
151 "-h print this help\n"
152 "-g port wait gdb connection to port\n"
153 "-L path set the elf interpreter prefix (default=%s)\n"
154 "-s size set the stack size in bytes (default=%ld)\n"
Peter Maydellc8057f92012-08-02 13:45:54 +0100155 "-cpu model select CPU (-cpu help for list)\n"
blueswir184778502008-10-26 20:33:16 +0000156 "-drop-ld-preload drop LD_PRELOAD for target process\n"
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000157 "-E var=value sets/modifies targets environment variable(s)\n"
158 "-U var unsets targets environment variable(s)\n"
Blue Swirl2fa5d9b2009-09-27 19:30:51 +0000159 "-B address set guest_base address to address\n"
blueswir184778502008-10-26 20:33:16 +0000160 "\n"
161 "Debug options:\n"
Peter Maydell989b6972013-02-26 17:52:40 +0000162 "-d item1[,...] enable logging of specified items\n"
163 " (use '-d help' for a list of log items)\n"
164 "-D logfile write logs to 'logfile' (default stderr)\n"
Peter Maydell060e0cd2023-04-17 17:40:36 +0100165 "-one-insn-per-tb run with one guest instruction per emulated TB\n"
166 "-singlestep deprecated synonym for -one-insn-per-tb\n"
Peter Maydell989b6972013-02-26 17:52:40 +0000167 "-strace log system calls\n"
Lluís Vilanova6913e792016-07-15 19:08:43 +0200168 "-trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
169 " specify tracing options\n"
blueswir184778502008-10-26 20:33:16 +0000170 "\n"
171 "Environment variables:\n"
172 "QEMU_STRACE Print system calls and arguments similar to the\n"
173 " 'strace' program. Enable by setting to any value.\n"
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000174 "You can use -E and -U options to set/unset environment variables\n"
175 "for target process. It is possible to provide several variables\n"
176 "by repeating the option. For example:\n"
177 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
178 "Note that if you provide several changes to single variable\n"
179 "last change will stay in effect.\n"
Eric Blakef5048cb2017-08-03 11:33:53 -0500180 "\n"
181 QEMU_HELP_BOTTOM "\n"
blueswir184778502008-10-26 20:33:16 +0000182 ,
Paolo Bonzini2e599152013-06-04 14:45:27 +0200183 TARGET_NAME,
blueswir184778502008-10-26 20:33:16 +0000184 interp_prefix,
Warner Losh312a0b12021-08-06 18:48:37 -0600185 target_dflssiz);
blueswir12d18e632009-02-28 20:14:00 +0000186 exit(1);
blueswir184778502008-10-26 20:33:16 +0000187}
188
Warner Loshd42df502021-08-03 12:34:52 -0600189__thread CPUState *thread_cpu;
blueswir184778502008-10-26 20:33:16 +0000190
Warner Losh653ccec2021-09-19 01:11:43 -0600191void stop_all_tasks(void)
192{
193 /*
194 * We trust when using NPTL (pthreads) start_exclusive() handles thread
195 * stopping correctly.
196 */
197 start_exclusive();
198}
199
Ed Maste48f59212016-10-04 16:02:49 -0400200bool qemu_cpu_is_self(CPUState *cpu)
201{
202 return thread_cpu == cpu;
203}
204
205void qemu_cpu_kick(CPUState *cpu)
206{
207 cpu_exit(cpu);
208}
209
blueswir184778502008-10-26 20:33:16 +0000210/* Assumes contents are already zeroed. */
Warner Loshb46d4ad2022-01-16 16:14:18 -0700211static void init_task_state(TaskState *ts)
blueswir184778502008-10-26 20:33:16 +0000212{
Warner Losh46f4f762022-01-08 21:40:28 -0700213 ts->sigaltstack_used = (struct target_sigaltstack) {
214 .ss_sp = 0,
215 .ss_size = 0,
216 .ss_flags = TARGET_SS_DISABLE,
217 };
blueswir184778502008-10-26 20:33:16 +0000218}
219
Warner Loshf0f7f9d2021-08-07 08:43:57 -0600220void gemu_log(const char *fmt, ...)
221{
222 va_list ap;
223
224 va_start(ap, fmt);
225 vfprintf(stderr, fmt, ap);
226 va_end(ap);
227}
228
Warner Losh312a0b12021-08-06 18:48:37 -0600229static void
230adjust_ssize(void)
231{
232 struct rlimit rl;
233
234 if (getrlimit(RLIMIT_STACK, &rl) != 0) {
235 return;
236 }
237
238 target_maxssiz = MIN(target_maxssiz, rl.rlim_max);
239 target_dflssiz = MIN(MAX(target_dflssiz, rl.rlim_cur), target_maxssiz);
240
241 rl.rlim_max = target_maxssiz;
242 rl.rlim_cur = target_dflssiz;
243 setrlimit(RLIMIT_STACK, &rl);
244}
245
Warner Losh01a298a2021-08-03 13:39:31 -0600246static void save_proc_pathname(char *argv0)
247{
248 int mib[4];
249 size_t len;
250
251 mib[0] = CTL_KERN;
252 mib[1] = KERN_PROC;
253 mib[2] = KERN_PROC_PATHNAME;
254 mib[3] = -1;
255
256 len = sizeof(qemu_proc_pathname);
257 if (sysctl(mib, 4, qemu_proc_pathname, &len, NULL, 0)) {
258 perror("sysctl");
259 }
260}
261
blueswir184778502008-10-26 20:33:16 +0000262int main(int argc, char **argv)
263{
264 const char *filename;
265 const char *cpu_model;
Igor Mammedov2278b932018-02-07 11:40:26 +0100266 const char *cpu_type;
Peter Maydell989b6972013-02-26 17:52:40 +0000267 const char *log_file = NULL;
Matthew Fernandezc235d732011-06-07 16:32:40 +0000268 const char *log_mask = NULL;
Warner Losh03ecf072021-09-02 16:52:45 -0600269 const char *seed_optarg = NULL;
blueswir184778502008-10-26 20:33:16 +0000270 struct target_pt_regs regs1, *regs = &regs1;
271 struct image_info info1, *info = &info1;
Warner Loshd37853f2021-04-29 18:45:13 -0600272 struct bsd_binprm bprm;
Warner Losh031fe7a2021-08-03 19:05:40 -0600273 TaskState *ts;
Andreas Färber9349b4f2012-03-14 01:38:32 +0100274 CPUArchState *env;
Andreas Färberdb6b81d2013-06-27 19:49:31 +0200275 CPUState *cpu;
Warner Losh29aabb42021-04-23 11:00:34 -0600276 int optind, rv;
blueswir184778502008-10-26 20:33:16 +0000277 const char *r;
Alex Bennéefcedd922020-04-30 20:01:19 +0100278 const char *gdbstub = NULL;
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000279 char **target_environ, **wrk;
280 envlist_t *envlist = NULL;
Colin Percivalb8012642021-08-07 14:34:21 -0600281 char *argv0 = NULL;
blueswir184778502008-10-26 20:33:16 +0000282
Warner Losh312a0b12021-08-06 18:48:37 -0600283 adjust_ssize();
284
Warner Loshb23a51d2021-04-23 10:58:11 -0600285 if (argc <= 1) {
blueswir184778502008-10-26 20:33:16 +0000286 usage();
Warner Loshb23a51d2021-04-23 10:58:11 -0600287 }
blueswir184778502008-10-26 20:33:16 +0000288
Warner Losh01a298a2021-08-03 13:39:31 -0600289 save_proc_pathname(argv[0]);
290
Christophe Fergeauf5852ef2019-01-31 17:46:14 +0100291 error_init(argv[0]);
Daniel P. Berrangefe4db842016-10-04 14:35:52 +0100292 module_call_init(MODULE_INIT_TRACE);
Paolo Bonzini267f6852016-08-28 03:45:14 +0200293 qemu_init_cpu_list();
Andreas Färberce008c12012-03-04 21:32:36 +0100294 module_call_init(MODULE_INIT_QOM);
295
Saurav Sachidanandec45bbe2017-03-20 17:38:28 +0000296 envlist = envlist_create();
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000297
298 /* add current environment into the list */
299 for (wrk = environ; *wrk != NULL; wrk++) {
300 (void) envlist_setenv(envlist, *wrk);
301 }
302
blueswir184778502008-10-26 20:33:16 +0000303 cpu_model = NULL;
Juergen Lock0c62de22010-03-22 19:12:43 +0100304
Lluís Vilanova6913e792016-07-15 19:08:43 +0200305 qemu_add_opts(&qemu_trace_opts);
306
blueswir184778502008-10-26 20:33:16 +0000307 optind = 1;
Lluís Vilanova6913e792016-07-15 19:08:43 +0200308 for (;;) {
Warner Loshb23a51d2021-04-23 10:58:11 -0600309 if (optind >= argc) {
blueswir184778502008-10-26 20:33:16 +0000310 break;
Warner Loshb23a51d2021-04-23 10:58:11 -0600311 }
blueswir184778502008-10-26 20:33:16 +0000312 r = argv[optind];
Warner Loshb23a51d2021-04-23 10:58:11 -0600313 if (r[0] != '-') {
blueswir184778502008-10-26 20:33:16 +0000314 break;
Warner Loshb23a51d2021-04-23 10:58:11 -0600315 }
blueswir184778502008-10-26 20:33:16 +0000316 optind++;
317 r++;
318 if (!strcmp(r, "-")) {
319 break;
320 } else if (!strcmp(r, "d")) {
Matthew Fernandezc235d732011-06-07 16:32:40 +0000321 if (optind >= argc) {
blueswir184778502008-10-26 20:33:16 +0000322 break;
blueswir184778502008-10-26 20:33:16 +0000323 }
Matthew Fernandezc235d732011-06-07 16:32:40 +0000324 log_mask = argv[optind++];
325 } else if (!strcmp(r, "D")) {
326 if (optind >= argc) {
327 break;
328 }
329 log_file = argv[optind++];
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000330 } else if (!strcmp(r, "E")) {
331 r = argv[optind++];
Warner Loshb23a51d2021-04-23 10:58:11 -0600332 if (envlist_setenv(envlist, r) != 0) {
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000333 usage();
Warner Loshb23a51d2021-04-23 10:58:11 -0600334 }
Stefan Weilf66724c2010-07-15 22:28:02 +0200335 } else if (!strcmp(r, "ignore-environment")) {
336 envlist_free(envlist);
Saurav Sachidanandec45bbe2017-03-20 17:38:28 +0000337 envlist = envlist_create();
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000338 } else if (!strcmp(r, "U")) {
339 r = argv[optind++];
Warner Loshb23a51d2021-04-23 10:58:11 -0600340 if (envlist_unsetenv(envlist, r) != 0) {
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000341 usage();
Warner Loshb23a51d2021-04-23 10:58:11 -0600342 }
blueswir184778502008-10-26 20:33:16 +0000343 } else if (!strcmp(r, "s")) {
344 r = argv[optind++];
Warner Losh312a0b12021-08-06 18:48:37 -0600345 rv = qemu_strtoul(r, &r, 0, &target_dflssiz);
346 if (rv < 0 || target_dflssiz <= 0) {
blueswir184778502008-10-26 20:33:16 +0000347 usage();
Warner Loshb23a51d2021-04-23 10:58:11 -0600348 }
349 if (*r == 'M') {
Warner Losh312a0b12021-08-06 18:48:37 -0600350 target_dflssiz *= 1024 * 1024;
Warner Loshb23a51d2021-04-23 10:58:11 -0600351 } else if (*r == 'k' || *r == 'K') {
Warner Losh312a0b12021-08-06 18:48:37 -0600352 target_dflssiz *= 1024;
353 }
354 if (target_dflssiz > target_maxssiz) {
355 usage();
Warner Loshb23a51d2021-04-23 10:58:11 -0600356 }
blueswir184778502008-10-26 20:33:16 +0000357 } else if (!strcmp(r, "L")) {
358 interp_prefix = argv[optind++];
359 } else if (!strcmp(r, "p")) {
360 qemu_host_page_size = atoi(argv[optind++]);
361 if (qemu_host_page_size == 0 ||
362 (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
363 fprintf(stderr, "page size must be a power of two\n");
364 exit(1);
365 }
366 } else if (!strcmp(r, "g")) {
Alex Bennéefcedd922020-04-30 20:01:19 +0100367 gdbstub = g_strdup(argv[optind++]);
blueswir184778502008-10-26 20:33:16 +0000368 } else if (!strcmp(r, "r")) {
369 qemu_uname_release = argv[optind++];
370 } else if (!strcmp(r, "cpu")) {
371 cpu_model = argv[optind++];
Peter Maydellc8057f92012-08-02 13:45:54 +0100372 if (is_help_option(cpu_model)) {
Warner Loshd60c3b92021-04-23 09:05:57 -0600373 /* XXX: implement xxx_cpu_list for targets that still miss it */
blueswir184778502008-10-26 20:33:16 +0000374#if defined(cpu_list)
Warner Loshd60c3b92021-04-23 09:05:57 -0600375 cpu_list();
blueswir184778502008-10-26 20:33:16 +0000376#endif
blueswir12d18e632009-02-28 20:14:00 +0000377 exit(1);
blueswir184778502008-10-26 20:33:16 +0000378 }
Blue Swirl2fa5d9b2009-09-27 19:30:51 +0000379 } else if (!strcmp(r, "B")) {
Warner Losh29aabb42021-04-23 11:00:34 -0600380 rv = qemu_strtoul(argv[optind++], NULL, 0, &guest_base);
381 if (rv < 0) {
382 usage();
383 }
Warner Loshd60c3b92021-04-23 09:05:57 -0600384 have_guest_base = true;
blueswir184778502008-10-26 20:33:16 +0000385 } else if (!strcmp(r, "drop-ld-preload")) {
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000386 (void) envlist_unsetenv(envlist, "LD_PRELOAD");
Warner Losh03ecf072021-09-02 16:52:45 -0600387 } else if (!strcmp(r, "seed")) {
388 seed_optarg = optarg;
Peter Maydell060e0cd2023-04-17 17:40:36 +0100389 } else if (!strcmp(r, "singlestep") || !strcmp(r, "one-insn-per-tb")) {
Peter Maydell3cfb0452023-04-17 17:40:32 +0100390 opt_one_insn_per_tb = true;
blueswir184778502008-10-26 20:33:16 +0000391 } else if (!strcmp(r, "strace")) {
392 do_strace = 1;
Lluís Vilanova6913e792016-07-15 19:08:43 +0200393 } else if (!strcmp(r, "trace")) {
Paolo Bonzini92eecff2020-11-02 06:58:41 -0500394 trace_opt_parse(optarg);
Colin Percivalb8012642021-08-07 14:34:21 -0600395 } else if (!strcmp(r, "0")) {
396 argv0 = argv[optind++];
Lluís Vilanova6913e792016-07-15 19:08:43 +0200397 } else {
blueswir184778502008-10-26 20:33:16 +0000398 usage();
399 }
400 }
blueswir184778502008-10-26 20:33:16 +0000401
Matthew Fernandezc235d732011-06-07 16:32:40 +0000402 /* init debug */
Richard Henderson905c78f2022-04-17 11:30:08 -0700403 {
404 int mask = 0;
405 if (log_mask) {
406 mask = qemu_str_to_log_mask(log_mask);
407 if (!mask) {
408 qemu_print_log_usage(stdout);
409 exit(1);
410 }
Matthew Fernandezc235d732011-06-07 16:32:40 +0000411 }
Richard Henderson905c78f2022-04-17 11:30:08 -0700412 qemu_set_log_filename_flags(log_file, mask, &error_fatal);
Matthew Fernandezc235d732011-06-07 16:32:40 +0000413 }
414
Peter Maydell4b5dfd82011-07-18 11:44:09 +0100415 if (optind >= argc) {
416 usage();
417 }
418 filename = argv[optind];
Colin Percivalb8012642021-08-07 14:34:21 -0600419 if (argv0) {
420 argv[optind] = argv0;
421 }
Peter Maydell4b5dfd82011-07-18 11:44:09 +0100422
Lluís Vilanova6913e792016-07-15 19:08:43 +0200423 if (!trace_init_backends()) {
424 exit(1);
425 }
Paolo Bonzini92eecff2020-11-02 06:58:41 -0500426 trace_init_file();
Lluís Vilanova6913e792016-07-15 19:08:43 +0200427
blueswir184778502008-10-26 20:33:16 +0000428 /* Zero out regs */
429 memset(regs, 0, sizeof(struct target_pt_regs));
430
Warner Loshd37853f2021-04-29 18:45:13 -0600431 /* Zero bsd params */
432 memset(&bprm, 0, sizeof(bprm));
433
blueswir184778502008-10-26 20:33:16 +0000434 /* Zero out image_info */
435 memset(info, 0, sizeof(struct image_info));
436
437 /* Scan interp_prefix dir for replacement files. */
438 init_paths(interp_prefix);
439
440 if (cpu_model == NULL) {
Warner Losh031fe7a2021-08-03 19:05:40 -0600441 cpu_model = TARGET_DEFAULT_CPU_MODEL;
blueswir184778502008-10-26 20:33:16 +0000442 }
Igor Mammedov2b5249b2018-05-17 13:51:17 +0200443
Claudio Fontanab86f59c2021-02-04 17:39:25 +0100444 cpu_type = parse_cpu_option(cpu_model);
Warner Losh031fe7a2021-08-03 19:05:40 -0600445
Igor Mammedov2b5249b2018-05-17 13:51:17 +0200446 /* init tcg before creating CPUs and to get qemu_host_page_size */
Claudio Fontana940e43a2021-02-04 17:39:24 +0100447 {
Peter Maydell3cfb0452023-04-17 17:40:32 +0100448 AccelState *accel = current_accel();
449 AccelClass *ac = ACCEL_GET_CLASS(accel);
Igor Mammedov2b5249b2018-05-17 13:51:17 +0200450
Claudio Fontanab86f59c2021-02-04 17:39:25 +0100451 accel_init_interfaces(ac);
Peter Maydell3cfb0452023-04-17 17:40:32 +0100452 object_property_set_bool(OBJECT(accel), "one-insn-per-tb",
453 opt_one_insn_per_tb, &error_abort);
Claudio Fontana92242f32021-03-22 14:27:58 +0100454 ac->init_machine(NULL);
Claudio Fontana940e43a2021-02-04 17:39:24 +0100455 }
Igor Mammedov2278b932018-02-07 11:40:26 +0100456 cpu = cpu_create(cpu_type);
Eduardo Habkost2994fd92015-02-26 17:37:49 -0300457 env = cpu->env_ptr;
Andreas Färberdb6b81d2013-06-27 19:49:31 +0200458 cpu_reset(cpu);
Andreas Färberdb6b81d2013-06-27 19:49:31 +0200459 thread_cpu = cpu;
blueswir184778502008-10-26 20:33:16 +0000460
461 if (getenv("QEMU_STRACE")) {
462 do_strace = 1;
463 }
464
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000465 target_environ = envlist_to_environ(envlist, NULL);
466 envlist_free(envlist);
blueswir184778502008-10-26 20:33:16 +0000467
Warner Loshbe04f212021-08-05 18:15:47 -0600468 if (reserved_va) {
Richard Henderson95059f92023-03-06 01:26:29 +0300469 mmap_next_start = reserved_va + 1;
Warner Loshbe04f212021-08-05 18:15:47 -0600470 }
471
Warner Losh03ecf072021-09-02 16:52:45 -0600472 {
473 Error *err = NULL;
474 if (seed_optarg != NULL) {
475 qemu_guest_random_seed_main(seed_optarg, &err);
476 } else {
477 qcrypto_init(&err);
478 }
479 if (err) {
480 error_reportf_err(err, "cannot initialize crypto: ");
481 exit(1);
482 }
483 }
484
Blue Swirl2fa5d9b2009-09-27 19:30:51 +0000485 /*
Richard Hendersonfa79cde2021-03-09 17:42:16 -0600486 * Now that page sizes are configured we can do
Blue Swirl2fa5d9b2009-09-27 19:30:51 +0000487 * proper page alignment for guest_base.
488 */
489 guest_base = HOST_PAGE_ALIGN(guest_base);
490
Warner Loshd37853f2021-04-29 18:45:13 -0600491 if (loader_exec(filename, argv + optind, target_environ, regs, info,
492 &bprm) != 0) {
blueswir184778502008-10-26 20:33:16 +0000493 printf("Error loading %s\n", filename);
494 _exit(1);
495 }
496
497 for (wrk = target_environ; *wrk; wrk++) {
Saurav Sachidanandec45bbe2017-03-20 17:38:28 +0000498 g_free(*wrk);
blueswir184778502008-10-26 20:33:16 +0000499 }
500
Saurav Sachidanandec45bbe2017-03-20 17:38:28 +0000501 g_free(target_environ);
blueswir184778502008-10-26 20:33:16 +0000502
Paolo Bonzini13829022015-11-13 12:32:19 +0100503 if (qemu_loglevel_mask(CPU_LOG_PAGE)) {
Richard Henderson43b76162022-04-17 11:30:01 -0700504 FILE *f = qemu_log_trylock();
505 if (f) {
506 fprintf(f, "guest_base %p\n", (void *)guest_base);
507 fprintf(f, "page layout changed following binary load\n");
508 page_dump(f);
blueswir184778502008-10-26 20:33:16 +0000509
Richard Henderson43b76162022-04-17 11:30:01 -0700510 fprintf(f, "start_brk 0x" TARGET_ABI_FMT_lx "\n",
511 info->start_brk);
512 fprintf(f, "end_code 0x" TARGET_ABI_FMT_lx "\n",
513 info->end_code);
514 fprintf(f, "start_code 0x" TARGET_ABI_FMT_lx "\n",
515 info->start_code);
516 fprintf(f, "start_data 0x" TARGET_ABI_FMT_lx "\n",
517 info->start_data);
518 fprintf(f, "end_data 0x" TARGET_ABI_FMT_lx "\n",
519 info->end_data);
520 fprintf(f, "start_stack 0x" TARGET_ABI_FMT_lx "\n",
521 info->start_stack);
522 fprintf(f, "brk 0x" TARGET_ABI_FMT_lx "\n", info->brk);
523 fprintf(f, "entry 0x" TARGET_ABI_FMT_lx "\n", info->entry);
524
525 qemu_log_unlock(f);
526 }
blueswir12e77eac2009-01-20 16:57:34 +0000527 }
blueswir184778502008-10-26 20:33:16 +0000528
Warner Losh031fe7a2021-08-03 19:05:40 -0600529 /* build Task State */
530 ts = g_new0(TaskState, 1);
531 init_task_state(ts);
532 ts->info = info;
533 ts->bprm = &bprm;
534 cpu->opaque = ts;
535
blueswir184778502008-10-26 20:33:16 +0000536 target_set_brk(info->brk);
537 syscall_init();
538 signal_init();
539
Warner Losh34bc8472021-04-23 10:38:55 -0600540 /*
541 * Now that we've loaded the binary, GUEST_BASE is fixed. Delay
542 * generating the prologue until now so that the prologue can take
543 * the real value of GUEST_BASE into account.
544 */
Emilio G. Cotab1311c42017-07-12 17:15:52 -0400545 tcg_prologue_init(tcg_ctx);
Richard Henderson9002ec72010-05-06 08:50:41 -0700546
Warner Losh031fe7a2021-08-03 19:05:40 -0600547 target_cpu_init(env, regs);
blueswir184778502008-10-26 20:33:16 +0000548
Alex Bennéefcedd922020-04-30 20:01:19 +0100549 if (gdbstub) {
550 gdbserver_start(gdbstub);
Andreas Färberdb6b81d2013-06-27 19:49:31 +0200551 gdb_handlesig(cpu, 0);
blueswir184778502008-10-26 20:33:16 +0000552 }
Juergen Lock78cfb072009-10-17 00:34:26 +0200553 cpu_loop(env);
blueswir184778502008-10-26 20:33:16 +0000554 /* never exits */
555 return 0;
556}