blob: 19bf3a09a7e37f26fe55ddade8f2c474bcf2077b [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
Warner Losh312a0b12021-08-06 18:48:37 -060021#include <sys/types.h>
22#include <sys/time.h>
23#include <sys/resource.h>
24#include <sys/sysctl.h>
25
Peter Maydell22311972016-01-29 17:49:53 +000026#include "qemu/osdep.h"
Markus Armbrustera8d25322019-05-23 16:35:08 +020027#include "qemu-common.h"
Philippe Mathieu-Daudé66d26dd2018-06-25 09:42:38 -030028#include "qemu/units.h"
Claudio Fontana940e43a2021-02-04 17:39:24 +010029#include "qemu/accel.h"
Markus Armbruster14a48c12019-05-23 16:35:05 +020030#include "sysemu/tcg.h"
Ed Maste8c1c2302016-08-22 10:57:13 -040031#include "qemu-version.h"
blueswir184778502008-10-26 20:33:16 +000032#include <machine/trap.h>
33
Markus Armbrusterdaa76aa2016-06-15 19:27:16 +020034#include "qapi/error.h"
blueswir184778502008-10-26 20:33:16 +000035#include "qemu.h"
Lluís Vilanova6913e792016-07-15 19:08:43 +020036#include "qemu/config-file.h"
Christophe Fergeauf5852ef2019-01-31 17:46:14 +010037#include "qemu/error-report.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020038#include "qemu/path.h"
39#include "qemu/help_option.h"
Markus Armbruster0b8fa322019-05-23 16:35:07 +020040#include "qemu/module.h"
Paolo Bonzini63c91552016-03-15 13:18:37 +010041#include "exec/exec-all.h"
Philippe Mathieu-Daudédcb32f12020-01-01 12:23:00 +010042#include "tcg/tcg.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010043#include "qemu/timer.h"
44#include "qemu/envlist.h"
Warner Losh29aabb42021-04-23 11:00:34 -060045#include "qemu/cutils.h"
Paolo Bonzini508127e2016-01-07 16:55:28 +030046#include "exec/log.h"
Lluís Vilanova6913e792016-07-15 19:08:43 +020047#include "trace/control.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
aurel321b530a62009-04-05 20:08:59 +000052int singlestep;
Blue Swirl2fa5d9b2009-09-27 19:30:51 +000053unsigned long mmap_min_addr;
Richard Henderson5ca870b2021-02-12 10:48:34 -080054uintptr_t guest_base;
Richard Hendersone307c192020-05-13 18:51:29 +010055bool have_guest_base;
Peter Maydelld6ef40b2012-04-12 12:43:41 +010056unsigned long reserved_va;
aurel321b530a62009-04-05 20:08:59 +000057
Paolo Bonzini7ee28222010-05-26 16:08:22 +020058static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX;
Peter Maydellfccae322014-05-09 16:06:41 +010059const char *qemu_uname_release;
Juergen Lock78cfb072009-10-17 00:34:26 +020060enum BSDType bsd_type;
Warner Losh01a298a2021-08-03 13:39:31 -060061char qemu_proc_pathname[PATH_MAX]; /* full path to exeutable */
blueswir184778502008-10-26 20:33:16 +000062
Warner Losh312a0b12021-08-06 18:48:37 -060063unsigned long target_maxtsiz = TARGET_MAXTSIZ; /* max text size */
64unsigned long target_dfldsiz = TARGET_DFLDSIZ; /* initial data size limit */
65unsigned long target_maxdsiz = TARGET_MAXDSIZ; /* max data size */
66unsigned long target_dflssiz = TARGET_DFLSSIZ; /* initial data size limit */
67unsigned long target_maxssiz = TARGET_MAXSSIZ; /* max stack size */
68unsigned long target_sgrowsiz = TARGET_SGROWSIZ; /* amount to grow stack */
blueswir184778502008-10-26 20:33:16 +000069
70void gemu_log(const char *fmt, ...)
71{
72 va_list ap;
73
74 va_start(ap, fmt);
75 vfprintf(stderr, fmt, ap);
76 va_end(ap);
77}
blueswir19399f092009-03-07 18:59:05 +000078
blueswir19399f092009-03-07 18:59:05 +000079void fork_start(void)
80{
81}
82
83void fork_end(int child)
84{
85 if (child) {
Peter Crosthwaitef7ec7f72015-06-23 19:31:16 -070086 gdbserver_fork(thread_cpu);
blueswir19399f092009-03-07 18:59:05 +000087 }
88}
89
Warner Losh031fe7a2021-08-03 19:05:40 -060090void cpu_loop(CPUArchState *env)
blueswir131fc12d2009-04-11 11:09:31 +000091{
Warner Losh031fe7a2021-08-03 19:05:40 -060092 target_cpu_loop(env);
blueswir131fc12d2009-04-11 11:09:31 +000093}
94
blueswir184778502008-10-26 20:33:16 +000095static void usage(void)
96{
Thomas Huth7e563bf2018-02-15 12:06:47 +010097 printf("qemu-" TARGET_NAME " version " QEMU_FULL_VERSION
Thomas Huth0781dd62016-10-05 11:54:44 +020098 "\n" QEMU_COPYRIGHT "\n"
Paolo Bonzini2e599152013-06-04 14:45:27 +020099 "usage: qemu-" TARGET_NAME " [options] program [arguments...]\n"
blueswir184778502008-10-26 20:33:16 +0000100 "BSD CPU emulator (compiled for %s emulation)\n"
101 "\n"
102 "Standard options:\n"
103 "-h print this help\n"
104 "-g port wait gdb connection to port\n"
105 "-L path set the elf interpreter prefix (default=%s)\n"
106 "-s size set the stack size in bytes (default=%ld)\n"
Peter Maydellc8057f92012-08-02 13:45:54 +0100107 "-cpu model select CPU (-cpu help for list)\n"
blueswir184778502008-10-26 20:33:16 +0000108 "-drop-ld-preload drop LD_PRELOAD for target process\n"
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000109 "-E var=value sets/modifies targets environment variable(s)\n"
110 "-U var unsets targets environment variable(s)\n"
Blue Swirl2fa5d9b2009-09-27 19:30:51 +0000111 "-B address set guest_base address to address\n"
blueswir184778502008-10-26 20:33:16 +0000112 "-bsd type select emulated BSD type FreeBSD/NetBSD/OpenBSD (default)\n"
113 "\n"
114 "Debug options:\n"
Peter Maydell989b6972013-02-26 17:52:40 +0000115 "-d item1[,...] enable logging of specified items\n"
116 " (use '-d help' for a list of log items)\n"
117 "-D logfile write logs to 'logfile' (default stderr)\n"
Peter Maydell989b6972013-02-26 17:52:40 +0000118 "-singlestep always run in singlestep mode\n"
119 "-strace log system calls\n"
Lluís Vilanova6913e792016-07-15 19:08:43 +0200120 "-trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
121 " specify tracing options\n"
blueswir184778502008-10-26 20:33:16 +0000122 "\n"
123 "Environment variables:\n"
124 "QEMU_STRACE Print system calls and arguments similar to the\n"
125 " 'strace' program. Enable by setting to any value.\n"
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000126 "You can use -E and -U options to set/unset environment variables\n"
127 "for target process. It is possible to provide several variables\n"
128 "by repeating the option. For example:\n"
129 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
130 "Note that if you provide several changes to single variable\n"
131 "last change will stay in effect.\n"
Eric Blakef5048cb2017-08-03 11:33:53 -0500132 "\n"
133 QEMU_HELP_BOTTOM "\n"
blueswir184778502008-10-26 20:33:16 +0000134 ,
Paolo Bonzini2e599152013-06-04 14:45:27 +0200135 TARGET_NAME,
blueswir184778502008-10-26 20:33:16 +0000136 interp_prefix,
Warner Losh312a0b12021-08-06 18:48:37 -0600137 target_dflssiz);
blueswir12d18e632009-02-28 20:14:00 +0000138 exit(1);
blueswir184778502008-10-26 20:33:16 +0000139}
140
Warner Loshd42df502021-08-03 12:34:52 -0600141__thread CPUState *thread_cpu;
blueswir184778502008-10-26 20:33:16 +0000142
Ed Maste48f59212016-10-04 16:02:49 -0400143bool qemu_cpu_is_self(CPUState *cpu)
144{
145 return thread_cpu == cpu;
146}
147
148void qemu_cpu_kick(CPUState *cpu)
149{
150 cpu_exit(cpu);
151}
152
blueswir184778502008-10-26 20:33:16 +0000153/* Assumes contents are already zeroed. */
154void init_task_state(TaskState *ts)
155{
156 int i;
157
158 ts->used = 1;
159 ts->first_free = ts->sigqueue_table;
160 for (i = 0; i < MAX_SIGQUEUE_SIZE - 1; i++) {
161 ts->sigqueue_table[i].next = &ts->sigqueue_table[i + 1];
162 }
163 ts->sigqueue_table[i].next = NULL;
164}
165
Warner Losh312a0b12021-08-06 18:48:37 -0600166static void
167adjust_ssize(void)
168{
169 struct rlimit rl;
170
171 if (getrlimit(RLIMIT_STACK, &rl) != 0) {
172 return;
173 }
174
175 target_maxssiz = MIN(target_maxssiz, rl.rlim_max);
176 target_dflssiz = MIN(MAX(target_dflssiz, rl.rlim_cur), target_maxssiz);
177
178 rl.rlim_max = target_maxssiz;
179 rl.rlim_cur = target_dflssiz;
180 setrlimit(RLIMIT_STACK, &rl);
181}
182
Warner Losh01a298a2021-08-03 13:39:31 -0600183static void save_proc_pathname(char *argv0)
184{
185 int mib[4];
186 size_t len;
187
188 mib[0] = CTL_KERN;
189 mib[1] = KERN_PROC;
190 mib[2] = KERN_PROC_PATHNAME;
191 mib[3] = -1;
192
193 len = sizeof(qemu_proc_pathname);
194 if (sysctl(mib, 4, qemu_proc_pathname, &len, NULL, 0)) {
195 perror("sysctl");
196 }
197}
198
blueswir184778502008-10-26 20:33:16 +0000199int main(int argc, char **argv)
200{
201 const char *filename;
202 const char *cpu_model;
Igor Mammedov2278b932018-02-07 11:40:26 +0100203 const char *cpu_type;
Peter Maydell989b6972013-02-26 17:52:40 +0000204 const char *log_file = NULL;
Matthew Fernandezc235d732011-06-07 16:32:40 +0000205 const char *log_mask = NULL;
blueswir184778502008-10-26 20:33:16 +0000206 struct target_pt_regs regs1, *regs = &regs1;
207 struct image_info info1, *info = &info1;
Warner Loshd37853f2021-04-29 18:45:13 -0600208 struct bsd_binprm bprm;
Warner Losh031fe7a2021-08-03 19:05:40 -0600209 TaskState *ts;
Andreas Färber9349b4f2012-03-14 01:38:32 +0100210 CPUArchState *env;
Andreas Färberdb6b81d2013-06-27 19:49:31 +0200211 CPUState *cpu;
Warner Losh29aabb42021-04-23 11:00:34 -0600212 int optind, rv;
blueswir184778502008-10-26 20:33:16 +0000213 const char *r;
Alex Bennéefcedd922020-04-30 20:01:19 +0100214 const char *gdbstub = NULL;
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000215 char **target_environ, **wrk;
216 envlist_t *envlist = NULL;
Warner Loshd1dc9ab2021-08-27 11:28:16 -0600217 bsd_type = HOST_DEFAULT_BSD_TYPE;
blueswir184778502008-10-26 20:33:16 +0000218
Warner Losh312a0b12021-08-06 18:48:37 -0600219 adjust_ssize();
220
Warner Loshb23a51d2021-04-23 10:58:11 -0600221 if (argc <= 1) {
blueswir184778502008-10-26 20:33:16 +0000222 usage();
Warner Loshb23a51d2021-04-23 10:58:11 -0600223 }
blueswir184778502008-10-26 20:33:16 +0000224
Warner Losh01a298a2021-08-03 13:39:31 -0600225 save_proc_pathname(argv[0]);
226
Christophe Fergeauf5852ef2019-01-31 17:46:14 +0100227 error_init(argv[0]);
Daniel P. Berrangefe4db842016-10-04 14:35:52 +0100228 module_call_init(MODULE_INIT_TRACE);
Paolo Bonzini267f6852016-08-28 03:45:14 +0200229 qemu_init_cpu_list();
Andreas Färberce008c12012-03-04 21:32:36 +0100230 module_call_init(MODULE_INIT_QOM);
231
Saurav Sachidanandec45bbe2017-03-20 17:38:28 +0000232 envlist = envlist_create();
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000233
234 /* add current environment into the list */
235 for (wrk = environ; *wrk != NULL; wrk++) {
236 (void) envlist_setenv(envlist, *wrk);
237 }
238
blueswir184778502008-10-26 20:33:16 +0000239 cpu_model = NULL;
Juergen Lock0c62de22010-03-22 19:12:43 +0100240
Lluís Vilanova6913e792016-07-15 19:08:43 +0200241 qemu_add_opts(&qemu_trace_opts);
242
blueswir184778502008-10-26 20:33:16 +0000243 optind = 1;
Lluís Vilanova6913e792016-07-15 19:08:43 +0200244 for (;;) {
Warner Loshb23a51d2021-04-23 10:58:11 -0600245 if (optind >= argc) {
blueswir184778502008-10-26 20:33:16 +0000246 break;
Warner Loshb23a51d2021-04-23 10:58:11 -0600247 }
blueswir184778502008-10-26 20:33:16 +0000248 r = argv[optind];
Warner Loshb23a51d2021-04-23 10:58:11 -0600249 if (r[0] != '-') {
blueswir184778502008-10-26 20:33:16 +0000250 break;
Warner Loshb23a51d2021-04-23 10:58:11 -0600251 }
blueswir184778502008-10-26 20:33:16 +0000252 optind++;
253 r++;
254 if (!strcmp(r, "-")) {
255 break;
256 } else if (!strcmp(r, "d")) {
Matthew Fernandezc235d732011-06-07 16:32:40 +0000257 if (optind >= argc) {
blueswir184778502008-10-26 20:33:16 +0000258 break;
blueswir184778502008-10-26 20:33:16 +0000259 }
Matthew Fernandezc235d732011-06-07 16:32:40 +0000260 log_mask = argv[optind++];
261 } else if (!strcmp(r, "D")) {
262 if (optind >= argc) {
263 break;
264 }
265 log_file = argv[optind++];
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000266 } else if (!strcmp(r, "E")) {
267 r = argv[optind++];
Warner Loshb23a51d2021-04-23 10:58:11 -0600268 if (envlist_setenv(envlist, r) != 0) {
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000269 usage();
Warner Loshb23a51d2021-04-23 10:58:11 -0600270 }
Stefan Weilf66724c2010-07-15 22:28:02 +0200271 } else if (!strcmp(r, "ignore-environment")) {
272 envlist_free(envlist);
Saurav Sachidanandec45bbe2017-03-20 17:38:28 +0000273 envlist = envlist_create();
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000274 } else if (!strcmp(r, "U")) {
275 r = argv[optind++];
Warner Loshb23a51d2021-04-23 10:58:11 -0600276 if (envlist_unsetenv(envlist, r) != 0) {
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000277 usage();
Warner Loshb23a51d2021-04-23 10:58:11 -0600278 }
blueswir184778502008-10-26 20:33:16 +0000279 } else if (!strcmp(r, "s")) {
280 r = argv[optind++];
Warner Losh312a0b12021-08-06 18:48:37 -0600281 rv = qemu_strtoul(r, &r, 0, &target_dflssiz);
282 if (rv < 0 || target_dflssiz <= 0) {
blueswir184778502008-10-26 20:33:16 +0000283 usage();
Warner Loshb23a51d2021-04-23 10:58:11 -0600284 }
285 if (*r == 'M') {
Warner Losh312a0b12021-08-06 18:48:37 -0600286 target_dflssiz *= 1024 * 1024;
Warner Loshb23a51d2021-04-23 10:58:11 -0600287 } else if (*r == 'k' || *r == 'K') {
Warner Losh312a0b12021-08-06 18:48:37 -0600288 target_dflssiz *= 1024;
289 }
290 if (target_dflssiz > target_maxssiz) {
291 usage();
Warner Loshb23a51d2021-04-23 10:58:11 -0600292 }
blueswir184778502008-10-26 20:33:16 +0000293 } else if (!strcmp(r, "L")) {
294 interp_prefix = argv[optind++];
295 } else if (!strcmp(r, "p")) {
296 qemu_host_page_size = atoi(argv[optind++]);
297 if (qemu_host_page_size == 0 ||
298 (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
299 fprintf(stderr, "page size must be a power of two\n");
300 exit(1);
301 }
302 } else if (!strcmp(r, "g")) {
Alex Bennéefcedd922020-04-30 20:01:19 +0100303 gdbstub = g_strdup(argv[optind++]);
blueswir184778502008-10-26 20:33:16 +0000304 } else if (!strcmp(r, "r")) {
305 qemu_uname_release = argv[optind++];
306 } else if (!strcmp(r, "cpu")) {
307 cpu_model = argv[optind++];
Peter Maydellc8057f92012-08-02 13:45:54 +0100308 if (is_help_option(cpu_model)) {
Warner Loshd60c3b92021-04-23 09:05:57 -0600309 /* XXX: implement xxx_cpu_list for targets that still miss it */
blueswir184778502008-10-26 20:33:16 +0000310#if defined(cpu_list)
Warner Loshd60c3b92021-04-23 09:05:57 -0600311 cpu_list();
blueswir184778502008-10-26 20:33:16 +0000312#endif
blueswir12d18e632009-02-28 20:14:00 +0000313 exit(1);
blueswir184778502008-10-26 20:33:16 +0000314 }
Blue Swirl2fa5d9b2009-09-27 19:30:51 +0000315 } else if (!strcmp(r, "B")) {
Warner Losh29aabb42021-04-23 11:00:34 -0600316 rv = qemu_strtoul(argv[optind++], NULL, 0, &guest_base);
317 if (rv < 0) {
318 usage();
319 }
Warner Loshd60c3b92021-04-23 09:05:57 -0600320 have_guest_base = true;
blueswir184778502008-10-26 20:33:16 +0000321 } else if (!strcmp(r, "drop-ld-preload")) {
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000322 (void) envlist_unsetenv(envlist, "LD_PRELOAD");
blueswir184778502008-10-26 20:33:16 +0000323 } else if (!strcmp(r, "bsd")) {
324 if (!strcasecmp(argv[optind], "freebsd")) {
325 bsd_type = target_freebsd;
326 } else if (!strcasecmp(argv[optind], "netbsd")) {
327 bsd_type = target_netbsd;
328 } else if (!strcasecmp(argv[optind], "openbsd")) {
329 bsd_type = target_openbsd;
330 } else {
331 usage();
332 }
333 optind++;
aurel321b530a62009-04-05 20:08:59 +0000334 } else if (!strcmp(r, "singlestep")) {
335 singlestep = 1;
blueswir184778502008-10-26 20:33:16 +0000336 } else if (!strcmp(r, "strace")) {
337 do_strace = 1;
Lluís Vilanova6913e792016-07-15 19:08:43 +0200338 } else if (!strcmp(r, "trace")) {
Paolo Bonzini92eecff2020-11-02 06:58:41 -0500339 trace_opt_parse(optarg);
Lluís Vilanova6913e792016-07-15 19:08:43 +0200340 } else {
blueswir184778502008-10-26 20:33:16 +0000341 usage();
342 }
343 }
blueswir184778502008-10-26 20:33:16 +0000344
Matthew Fernandezc235d732011-06-07 16:32:40 +0000345 /* init debug */
Paolo Bonzinif2937a32015-12-04 13:12:57 +0100346 qemu_log_needs_buffers();
Markus Armbrusterdaa76aa2016-06-15 19:27:16 +0200347 qemu_set_log_filename(log_file, &error_fatal);
Matthew Fernandezc235d732011-06-07 16:32:40 +0000348 if (log_mask) {
349 int mask;
Matthew Fernandezc235d732011-06-07 16:32:40 +0000350
Peter Maydell4fde1eb2013-02-11 16:41:22 +0000351 mask = qemu_str_to_log_mask(log_mask);
Matthew Fernandezc235d732011-06-07 16:32:40 +0000352 if (!mask) {
Peter Maydell59a6fa62013-02-11 16:41:21 +0000353 qemu_print_log_usage(stdout);
Matthew Fernandezc235d732011-06-07 16:32:40 +0000354 exit(1);
355 }
Peter Maydell24537a02013-02-11 16:41:23 +0000356 qemu_set_log(mask);
Matthew Fernandezc235d732011-06-07 16:32:40 +0000357 }
358
Peter Maydell4b5dfd82011-07-18 11:44:09 +0100359 if (optind >= argc) {
360 usage();
361 }
362 filename = argv[optind];
363
Lluís Vilanova6913e792016-07-15 19:08:43 +0200364 if (!trace_init_backends()) {
365 exit(1);
366 }
Paolo Bonzini92eecff2020-11-02 06:58:41 -0500367 trace_init_file();
Lluís Vilanova6913e792016-07-15 19:08:43 +0200368
blueswir184778502008-10-26 20:33:16 +0000369 /* Zero out regs */
370 memset(regs, 0, sizeof(struct target_pt_regs));
371
Warner Loshd37853f2021-04-29 18:45:13 -0600372 /* Zero bsd params */
373 memset(&bprm, 0, sizeof(bprm));
374
blueswir184778502008-10-26 20:33:16 +0000375 /* Zero out image_info */
376 memset(info, 0, sizeof(struct image_info));
377
378 /* Scan interp_prefix dir for replacement files. */
379 init_paths(interp_prefix);
380
381 if (cpu_model == NULL) {
Warner Losh031fe7a2021-08-03 19:05:40 -0600382 cpu_model = TARGET_DEFAULT_CPU_MODEL;
blueswir184778502008-10-26 20:33:16 +0000383 }
Igor Mammedov2b5249b2018-05-17 13:51:17 +0200384
Claudio Fontanab86f59c2021-02-04 17:39:25 +0100385 cpu_type = parse_cpu_option(cpu_model);
Warner Losh031fe7a2021-08-03 19:05:40 -0600386
Igor Mammedov2b5249b2018-05-17 13:51:17 +0200387 /* init tcg before creating CPUs and to get qemu_host_page_size */
Claudio Fontana940e43a2021-02-04 17:39:24 +0100388 {
389 AccelClass *ac = ACCEL_GET_CLASS(current_accel());
Igor Mammedov2b5249b2018-05-17 13:51:17 +0200390
Claudio Fontanab86f59c2021-02-04 17:39:25 +0100391 accel_init_interfaces(ac);
Claudio Fontana92242f32021-03-22 14:27:58 +0100392 ac->init_machine(NULL);
Claudio Fontana940e43a2021-02-04 17:39:24 +0100393 }
Igor Mammedov2278b932018-02-07 11:40:26 +0100394 cpu = cpu_create(cpu_type);
Eduardo Habkost2994fd92015-02-26 17:37:49 -0300395 env = cpu->env_ptr;
Andreas Färberdb6b81d2013-06-27 19:49:31 +0200396 cpu_reset(cpu);
Andreas Färberdb6b81d2013-06-27 19:49:31 +0200397 thread_cpu = cpu;
blueswir184778502008-10-26 20:33:16 +0000398
399 if (getenv("QEMU_STRACE")) {
400 do_strace = 1;
401 }
402
Blue Swirlfc0d96b2009-08-15 10:35:42 +0000403 target_environ = envlist_to_environ(envlist, NULL);
404 envlist_free(envlist);
blueswir184778502008-10-26 20:33:16 +0000405
Blue Swirl2fa5d9b2009-09-27 19:30:51 +0000406 /*
Richard Hendersonfa79cde2021-03-09 17:42:16 -0600407 * Now that page sizes are configured we can do
Blue Swirl2fa5d9b2009-09-27 19:30:51 +0000408 * proper page alignment for guest_base.
409 */
410 guest_base = HOST_PAGE_ALIGN(guest_base);
411
Warner Loshd37853f2021-04-29 18:45:13 -0600412 if (loader_exec(filename, argv + optind, target_environ, regs, info,
413 &bprm) != 0) {
blueswir184778502008-10-26 20:33:16 +0000414 printf("Error loading %s\n", filename);
415 _exit(1);
416 }
417
418 for (wrk = target_environ; *wrk; wrk++) {
Saurav Sachidanandec45bbe2017-03-20 17:38:28 +0000419 g_free(*wrk);
blueswir184778502008-10-26 20:33:16 +0000420 }
421
Saurav Sachidanandec45bbe2017-03-20 17:38:28 +0000422 g_free(target_environ);
blueswir184778502008-10-26 20:33:16 +0000423
Paolo Bonzini13829022015-11-13 12:32:19 +0100424 if (qemu_loglevel_mask(CPU_LOG_PAGE)) {
Richard Henderson5ca870b2021-02-12 10:48:34 -0800425 qemu_log("guest_base %p\n", (void *)guest_base);
Alex Bennée10d0d502019-12-05 12:25:15 +0000426 log_page_dump("binary load");
blueswir184778502008-10-26 20:33:16 +0000427
blueswir12e77eac2009-01-20 16:57:34 +0000428 qemu_log("start_brk 0x" TARGET_ABI_FMT_lx "\n", info->start_brk);
429 qemu_log("end_code 0x" TARGET_ABI_FMT_lx "\n", info->end_code);
430 qemu_log("start_code 0x" TARGET_ABI_FMT_lx "\n",
431 info->start_code);
432 qemu_log("start_data 0x" TARGET_ABI_FMT_lx "\n",
433 info->start_data);
434 qemu_log("end_data 0x" TARGET_ABI_FMT_lx "\n", info->end_data);
435 qemu_log("start_stack 0x" TARGET_ABI_FMT_lx "\n",
436 info->start_stack);
437 qemu_log("brk 0x" TARGET_ABI_FMT_lx "\n", info->brk);
438 qemu_log("entry 0x" TARGET_ABI_FMT_lx "\n", info->entry);
439 }
blueswir184778502008-10-26 20:33:16 +0000440
Warner Losh031fe7a2021-08-03 19:05:40 -0600441 /* build Task State */
442 ts = g_new0(TaskState, 1);
443 init_task_state(ts);
444 ts->info = info;
445 ts->bprm = &bprm;
446 cpu->opaque = ts;
447
blueswir184778502008-10-26 20:33:16 +0000448 target_set_brk(info->brk);
449 syscall_init();
450 signal_init();
451
Warner Losh34bc8472021-04-23 10:38:55 -0600452 /*
453 * Now that we've loaded the binary, GUEST_BASE is fixed. Delay
454 * generating the prologue until now so that the prologue can take
455 * the real value of GUEST_BASE into account.
456 */
Emilio G. Cotab1311c42017-07-12 17:15:52 -0400457 tcg_prologue_init(tcg_ctx);
Richard Henderson9002ec72010-05-06 08:50:41 -0700458
Warner Losh031fe7a2021-08-03 19:05:40 -0600459 target_cpu_init(env, regs);
blueswir184778502008-10-26 20:33:16 +0000460
Alex Bennéefcedd922020-04-30 20:01:19 +0100461 if (gdbstub) {
462 gdbserver_start(gdbstub);
Andreas Färberdb6b81d2013-06-27 19:49:31 +0200463 gdb_handlesig(cpu, 0);
blueswir184778502008-10-26 20:33:16 +0000464 }
Juergen Lock78cfb072009-10-17 00:34:26 +0200465 cpu_loop(env);
blueswir184778502008-10-26 20:33:16 +0000466 /* never exits */
467 return 0;
468}