blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 1 | /* |
Warner Losh | 4c0a4fe | 2021-08-05 17:52:01 -0600 | [diff] [blame] | 2 | * qemu bsd user main |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 3 | * |
| 4 | * Copyright (c) 2003-2008 Fabrice Bellard |
Warner Losh | 4c0a4fe | 2021-08-05 17:52:01 -0600 | [diff] [blame] | 5 | * Copyright (c) 2013-14 Stacey Son |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 6 | * |
| 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 Swirl | 8167ee8 | 2009-07-16 20:47:01 +0000 | [diff] [blame] | 18 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 19 | */ |
Markus Armbruster | 14a48c1 | 2019-05-23 16:35:05 +0200 | [diff] [blame] | 20 | |
Warner Losh | 312a0b1 | 2021-08-06 18:48:37 -0600 | [diff] [blame] | 21 | #include <sys/types.h> |
| 22 | #include <sys/time.h> |
| 23 | #include <sys/resource.h> |
| 24 | #include <sys/sysctl.h> |
| 25 | |
Peter Maydell | 2231197 | 2016-01-29 17:49:53 +0000 | [diff] [blame] | 26 | #include "qemu/osdep.h" |
Marc-André Lureau | 49f9522 | 2022-04-20 17:25:49 +0400 | [diff] [blame] | 27 | #include "qemu/help-texts.h" |
Philippe Mathieu-Daudé | 66d26dd | 2018-06-25 09:42:38 -0300 | [diff] [blame] | 28 | #include "qemu/units.h" |
Claudio Fontana | 940e43a | 2021-02-04 17:39:24 +0100 | [diff] [blame] | 29 | #include "qemu/accel.h" |
Ed Maste | 8c1c230 | 2016-08-22 10:57:13 -0400 | [diff] [blame] | 30 | #include "qemu-version.h" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 31 | #include <machine/trap.h> |
| 32 | |
Markus Armbruster | daa76aa | 2016-06-15 19:27:16 +0200 | [diff] [blame] | 33 | #include "qapi/error.h" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 34 | #include "qemu.h" |
Lluís Vilanova | 6913e79 | 2016-07-15 19:08:43 +0200 | [diff] [blame] | 35 | #include "qemu/config-file.h" |
Christophe Fergeau | f5852ef | 2019-01-31 17:46:14 +0100 | [diff] [blame] | 36 | #include "qemu/error-report.h" |
Veronia Bahaa | f348b6d | 2016-03-20 19:16:19 +0200 | [diff] [blame] | 37 | #include "qemu/path.h" |
| 38 | #include "qemu/help_option.h" |
Markus Armbruster | 0b8fa32 | 2019-05-23 16:35:07 +0200 | [diff] [blame] | 39 | #include "qemu/module.h" |
Paolo Bonzini | 63c9155 | 2016-03-15 13:18:37 +0100 | [diff] [blame] | 40 | #include "exec/exec-all.h" |
Philippe Mathieu-Daudé | dcb32f1 | 2020-01-01 12:23:00 +0100 | [diff] [blame] | 41 | #include "tcg/tcg.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 42 | #include "qemu/timer.h" |
| 43 | #include "qemu/envlist.h" |
Warner Losh | 29aabb4 | 2021-04-23 11:00:34 -0600 | [diff] [blame] | 44 | #include "qemu/cutils.h" |
Paolo Bonzini | 508127e | 2016-01-07 16:55:28 +0300 | [diff] [blame] | 45 | #include "exec/log.h" |
Lluís Vilanova | 6913e79 | 2016-07-15 19:08:43 +0200 | [diff] [blame] | 46 | #include "trace/control.h" |
Warner Losh | 03ecf07 | 2021-09-02 16:52:45 -0600 | [diff] [blame] | 47 | #include "crypto/init.h" |
| 48 | #include "qemu/guest-random.h" |
Blue Swirl | fc0d96b | 2009-08-15 10:35:42 +0000 | [diff] [blame] | 49 | |
Warner Losh | d1dc9ab | 2021-08-27 11:28:16 -0600 | [diff] [blame] | 50 | #include "host-os.h" |
Warner Losh | 031fe7a | 2021-08-03 19:05:40 -0600 | [diff] [blame] | 51 | #include "target_arch_cpu.h" |
Warner Losh | d1dc9ab | 2021-08-27 11:28:16 -0600 | [diff] [blame] | 52 | |
aurel32 | 1b530a6 | 2009-04-05 20:08:59 +0000 | [diff] [blame] | 53 | int singlestep; |
Richard Henderson | 5ca870b | 2021-02-12 10:48:34 -0800 | [diff] [blame] | 54 | uintptr_t guest_base; |
Richard Henderson | e307c19 | 2020-05-13 18:51:29 +0100 | [diff] [blame] | 55 | bool have_guest_base; |
Warner Losh | be04f21 | 2021-08-05 18:15:47 -0600 | [diff] [blame] | 56 | /* |
| 57 | * When running 32-on-64 we should make sure we can fit all of the possible |
| 58 | * guest address space into a contiguous chunk of virtual host memory. |
| 59 | * |
| 60 | * This way we will never overlap with our own libraries or binaries or stack |
| 61 | * or anything else that QEMU maps. |
| 62 | * |
| 63 | * Many cpus reserve the high bit (or more than one for some 64-bit cpus) |
| 64 | * of the address for the kernel. Some cpus rely on this and user space |
| 65 | * uses the high bit(s) for pointer tagging and the like. For them, we |
| 66 | * must preserve the expected address space. |
| 67 | */ |
| 68 | #ifndef MAX_RESERVED_VA |
| 69 | # if HOST_LONG_BITS > TARGET_VIRT_ADDR_SPACE_BITS |
| 70 | # if TARGET_VIRT_ADDR_SPACE_BITS == 32 && \ |
| 71 | (TARGET_LONG_BITS == 32 || defined(TARGET_ABI32)) |
| 72 | /* |
| 73 | * There are a number of places where we assign reserved_va to a variable |
| 74 | * of type abi_ulong and expect it to fit. Avoid the last page. |
| 75 | */ |
| 76 | # define MAX_RESERVED_VA (0xfffffffful & TARGET_PAGE_MASK) |
| 77 | # else |
| 78 | # define MAX_RESERVED_VA (1ul << TARGET_VIRT_ADDR_SPACE_BITS) |
| 79 | # endif |
| 80 | # else |
| 81 | # define MAX_RESERVED_VA 0 |
| 82 | # endif |
| 83 | #endif |
| 84 | |
| 85 | /* |
| 86 | * That said, reserving *too* much vm space via mmap can run into problems |
| 87 | * with rlimits, oom due to page table creation, etc. We will still try it, |
| 88 | * if directed by the command-line option, but not by default. |
| 89 | */ |
| 90 | #if HOST_LONG_BITS == 64 && TARGET_VIRT_ADDR_SPACE_BITS <= 32 |
| 91 | unsigned long reserved_va = MAX_RESERVED_VA; |
| 92 | #else |
Peter Maydell | d6ef40b | 2012-04-12 12:43:41 +0100 | [diff] [blame] | 93 | unsigned long reserved_va; |
Warner Losh | be04f21 | 2021-08-05 18:15:47 -0600 | [diff] [blame] | 94 | #endif |
aurel32 | 1b530a6 | 2009-04-05 20:08:59 +0000 | [diff] [blame] | 95 | |
Paolo Bonzini | 7ee2822 | 2010-05-26 16:08:22 +0200 | [diff] [blame] | 96 | static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX; |
Peter Maydell | fccae32 | 2014-05-09 16:06:41 +0100 | [diff] [blame] | 97 | const char *qemu_uname_release; |
Warner Losh | 01a298a | 2021-08-03 13:39:31 -0600 | [diff] [blame] | 98 | char qemu_proc_pathname[PATH_MAX]; /* full path to exeutable */ |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 99 | |
Warner Losh | 312a0b1 | 2021-08-06 18:48:37 -0600 | [diff] [blame] | 100 | unsigned long target_maxtsiz = TARGET_MAXTSIZ; /* max text size */ |
| 101 | unsigned long target_dfldsiz = TARGET_DFLDSIZ; /* initial data size limit */ |
| 102 | unsigned long target_maxdsiz = TARGET_MAXDSIZ; /* max data size */ |
| 103 | unsigned long target_dflssiz = TARGET_DFLSSIZ; /* initial data size limit */ |
| 104 | unsigned long target_maxssiz = TARGET_MAXSSIZ; /* max stack size */ |
| 105 | unsigned long target_sgrowsiz = TARGET_SGROWSIZ; /* amount to grow stack */ |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 106 | |
Warner Losh | 63cca10 | 2021-08-07 14:22:34 -0600 | [diff] [blame] | 107 | /* Helper routines for implementing atomic operations. */ |
blueswir1 | 9399f09 | 2009-03-07 18:59:05 +0000 | [diff] [blame] | 108 | |
blueswir1 | 9399f09 | 2009-03-07 18:59:05 +0000 | [diff] [blame] | 109 | void fork_start(void) |
| 110 | { |
Warner Losh | 63cca10 | 2021-08-07 14:22:34 -0600 | [diff] [blame] | 111 | start_exclusive(); |
| 112 | cpu_list_lock(); |
| 113 | mmap_fork_start(); |
blueswir1 | 9399f09 | 2009-03-07 18:59:05 +0000 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | void fork_end(int child) |
| 117 | { |
| 118 | if (child) { |
Warner Losh | 63cca10 | 2021-08-07 14:22:34 -0600 | [diff] [blame] | 119 | CPUState *cpu, *next_cpu; |
| 120 | /* |
| 121 | * Child processes created by fork() only have a single thread. Discard |
| 122 | * information about the parent threads. |
| 123 | */ |
| 124 | CPU_FOREACH_SAFE(cpu, next_cpu) { |
| 125 | if (cpu != thread_cpu) { |
| 126 | QTAILQ_REMOVE_RCU(&cpus, cpu, node); |
| 127 | } |
| 128 | } |
| 129 | mmap_fork_end(child); |
| 130 | /* |
| 131 | * qemu_init_cpu_list() takes care of reinitializing the exclusive |
| 132 | * state, so we don't need to end_exclusive() here. |
| 133 | */ |
| 134 | qemu_init_cpu_list(); |
Peter Crosthwaite | f7ec7f7 | 2015-06-23 19:31:16 -0700 | [diff] [blame] | 135 | gdbserver_fork(thread_cpu); |
Warner Losh | 63cca10 | 2021-08-07 14:22:34 -0600 | [diff] [blame] | 136 | } else { |
| 137 | mmap_fork_end(child); |
| 138 | cpu_list_unlock(); |
| 139 | end_exclusive(); |
blueswir1 | 9399f09 | 2009-03-07 18:59:05 +0000 | [diff] [blame] | 140 | } |
| 141 | } |
| 142 | |
Warner Losh | 031fe7a | 2021-08-03 19:05:40 -0600 | [diff] [blame] | 143 | void cpu_loop(CPUArchState *env) |
blueswir1 | 31fc12d | 2009-04-11 11:09:31 +0000 | [diff] [blame] | 144 | { |
Warner Losh | 031fe7a | 2021-08-03 19:05:40 -0600 | [diff] [blame] | 145 | target_cpu_loop(env); |
blueswir1 | 31fc12d | 2009-04-11 11:09:31 +0000 | [diff] [blame] | 146 | } |
| 147 | |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 148 | static void usage(void) |
| 149 | { |
Thomas Huth | 7e563bf | 2018-02-15 12:06:47 +0100 | [diff] [blame] | 150 | printf("qemu-" TARGET_NAME " version " QEMU_FULL_VERSION |
Thomas Huth | 0781dd6 | 2016-10-05 11:54:44 +0200 | [diff] [blame] | 151 | "\n" QEMU_COPYRIGHT "\n" |
Paolo Bonzini | 2e59915 | 2013-06-04 14:45:27 +0200 | [diff] [blame] | 152 | "usage: qemu-" TARGET_NAME " [options] program [arguments...]\n" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 153 | "BSD CPU emulator (compiled for %s emulation)\n" |
| 154 | "\n" |
| 155 | "Standard options:\n" |
| 156 | "-h print this help\n" |
| 157 | "-g port wait gdb connection to port\n" |
| 158 | "-L path set the elf interpreter prefix (default=%s)\n" |
| 159 | "-s size set the stack size in bytes (default=%ld)\n" |
Peter Maydell | c8057f9 | 2012-08-02 13:45:54 +0100 | [diff] [blame] | 160 | "-cpu model select CPU (-cpu help for list)\n" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 161 | "-drop-ld-preload drop LD_PRELOAD for target process\n" |
Blue Swirl | fc0d96b | 2009-08-15 10:35:42 +0000 | [diff] [blame] | 162 | "-E var=value sets/modifies targets environment variable(s)\n" |
| 163 | "-U var unsets targets environment variable(s)\n" |
Blue Swirl | 2fa5d9b | 2009-09-27 19:30:51 +0000 | [diff] [blame] | 164 | "-B address set guest_base address to address\n" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 165 | "\n" |
| 166 | "Debug options:\n" |
Peter Maydell | 989b697 | 2013-02-26 17:52:40 +0000 | [diff] [blame] | 167 | "-d item1[,...] enable logging of specified items\n" |
| 168 | " (use '-d help' for a list of log items)\n" |
| 169 | "-D logfile write logs to 'logfile' (default stderr)\n" |
Peter Maydell | 989b697 | 2013-02-26 17:52:40 +0000 | [diff] [blame] | 170 | "-singlestep always run in singlestep mode\n" |
| 171 | "-strace log system calls\n" |
Lluís Vilanova | 6913e79 | 2016-07-15 19:08:43 +0200 | [diff] [blame] | 172 | "-trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n" |
| 173 | " specify tracing options\n" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 174 | "\n" |
| 175 | "Environment variables:\n" |
| 176 | "QEMU_STRACE Print system calls and arguments similar to the\n" |
| 177 | " 'strace' program. Enable by setting to any value.\n" |
Blue Swirl | fc0d96b | 2009-08-15 10:35:42 +0000 | [diff] [blame] | 178 | "You can use -E and -U options to set/unset environment variables\n" |
| 179 | "for target process. It is possible to provide several variables\n" |
| 180 | "by repeating the option. For example:\n" |
| 181 | " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n" |
| 182 | "Note that if you provide several changes to single variable\n" |
| 183 | "last change will stay in effect.\n" |
Eric Blake | f5048cb | 2017-08-03 11:33:53 -0500 | [diff] [blame] | 184 | "\n" |
| 185 | QEMU_HELP_BOTTOM "\n" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 186 | , |
Paolo Bonzini | 2e59915 | 2013-06-04 14:45:27 +0200 | [diff] [blame] | 187 | TARGET_NAME, |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 188 | interp_prefix, |
Warner Losh | 312a0b1 | 2021-08-06 18:48:37 -0600 | [diff] [blame] | 189 | target_dflssiz); |
blueswir1 | 2d18e63 | 2009-02-28 20:14:00 +0000 | [diff] [blame] | 190 | exit(1); |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Warner Losh | d42df50 | 2021-08-03 12:34:52 -0600 | [diff] [blame] | 193 | __thread CPUState *thread_cpu; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 194 | |
Warner Losh | 653ccec | 2021-09-19 01:11:43 -0600 | [diff] [blame] | 195 | void stop_all_tasks(void) |
| 196 | { |
| 197 | /* |
| 198 | * We trust when using NPTL (pthreads) start_exclusive() handles thread |
| 199 | * stopping correctly. |
| 200 | */ |
| 201 | start_exclusive(); |
| 202 | } |
| 203 | |
Ed Maste | 48f5921 | 2016-10-04 16:02:49 -0400 | [diff] [blame] | 204 | bool qemu_cpu_is_self(CPUState *cpu) |
| 205 | { |
| 206 | return thread_cpu == cpu; |
| 207 | } |
| 208 | |
| 209 | void qemu_cpu_kick(CPUState *cpu) |
| 210 | { |
| 211 | cpu_exit(cpu); |
| 212 | } |
| 213 | |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 214 | /* Assumes contents are already zeroed. */ |
Warner Losh | b46d4ad | 2022-01-16 16:14:18 -0700 | [diff] [blame] | 215 | static void init_task_state(TaskState *ts) |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 216 | { |
Warner Losh | 46f4f76 | 2022-01-08 21:40:28 -0700 | [diff] [blame] | 217 | ts->sigaltstack_used = (struct target_sigaltstack) { |
| 218 | .ss_sp = 0, |
| 219 | .ss_size = 0, |
| 220 | .ss_flags = TARGET_SS_DISABLE, |
| 221 | }; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 222 | } |
| 223 | |
Warner Losh | f0f7f9d | 2021-08-07 08:43:57 -0600 | [diff] [blame] | 224 | void gemu_log(const char *fmt, ...) |
| 225 | { |
| 226 | va_list ap; |
| 227 | |
| 228 | va_start(ap, fmt); |
| 229 | vfprintf(stderr, fmt, ap); |
| 230 | va_end(ap); |
| 231 | } |
| 232 | |
Warner Losh | 312a0b1 | 2021-08-06 18:48:37 -0600 | [diff] [blame] | 233 | static void |
| 234 | adjust_ssize(void) |
| 235 | { |
| 236 | struct rlimit rl; |
| 237 | |
| 238 | if (getrlimit(RLIMIT_STACK, &rl) != 0) { |
| 239 | return; |
| 240 | } |
| 241 | |
| 242 | target_maxssiz = MIN(target_maxssiz, rl.rlim_max); |
| 243 | target_dflssiz = MIN(MAX(target_dflssiz, rl.rlim_cur), target_maxssiz); |
| 244 | |
| 245 | rl.rlim_max = target_maxssiz; |
| 246 | rl.rlim_cur = target_dflssiz; |
| 247 | setrlimit(RLIMIT_STACK, &rl); |
| 248 | } |
| 249 | |
Warner Losh | 01a298a | 2021-08-03 13:39:31 -0600 | [diff] [blame] | 250 | static void save_proc_pathname(char *argv0) |
| 251 | { |
| 252 | int mib[4]; |
| 253 | size_t len; |
| 254 | |
| 255 | mib[0] = CTL_KERN; |
| 256 | mib[1] = KERN_PROC; |
| 257 | mib[2] = KERN_PROC_PATHNAME; |
| 258 | mib[3] = -1; |
| 259 | |
| 260 | len = sizeof(qemu_proc_pathname); |
| 261 | if (sysctl(mib, 4, qemu_proc_pathname, &len, NULL, 0)) { |
| 262 | perror("sysctl"); |
| 263 | } |
| 264 | } |
| 265 | |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 266 | int main(int argc, char **argv) |
| 267 | { |
| 268 | const char *filename; |
| 269 | const char *cpu_model; |
Igor Mammedov | 2278b93 | 2018-02-07 11:40:26 +0100 | [diff] [blame] | 270 | const char *cpu_type; |
Peter Maydell | 989b697 | 2013-02-26 17:52:40 +0000 | [diff] [blame] | 271 | const char *log_file = NULL; |
Matthew Fernandez | c235d73 | 2011-06-07 16:32:40 +0000 | [diff] [blame] | 272 | const char *log_mask = NULL; |
Warner Losh | 03ecf07 | 2021-09-02 16:52:45 -0600 | [diff] [blame] | 273 | const char *seed_optarg = NULL; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 274 | struct target_pt_regs regs1, *regs = ®s1; |
| 275 | struct image_info info1, *info = &info1; |
Warner Losh | d37853f | 2021-04-29 18:45:13 -0600 | [diff] [blame] | 276 | struct bsd_binprm bprm; |
Warner Losh | 031fe7a | 2021-08-03 19:05:40 -0600 | [diff] [blame] | 277 | TaskState *ts; |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 278 | CPUArchState *env; |
Andreas Färber | db6b81d | 2013-06-27 19:49:31 +0200 | [diff] [blame] | 279 | CPUState *cpu; |
Warner Losh | 29aabb4 | 2021-04-23 11:00:34 -0600 | [diff] [blame] | 280 | int optind, rv; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 281 | const char *r; |
Alex Bennée | fcedd92 | 2020-04-30 20:01:19 +0100 | [diff] [blame] | 282 | const char *gdbstub = NULL; |
Blue Swirl | fc0d96b | 2009-08-15 10:35:42 +0000 | [diff] [blame] | 283 | char **target_environ, **wrk; |
| 284 | envlist_t *envlist = NULL; |
Colin Percival | b801264 | 2021-08-07 14:34:21 -0600 | [diff] [blame] | 285 | char *argv0 = NULL; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 286 | |
Warner Losh | 312a0b1 | 2021-08-06 18:48:37 -0600 | [diff] [blame] | 287 | adjust_ssize(); |
| 288 | |
Warner Losh | b23a51d | 2021-04-23 10:58:11 -0600 | [diff] [blame] | 289 | if (argc <= 1) { |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 290 | usage(); |
Warner Losh | b23a51d | 2021-04-23 10:58:11 -0600 | [diff] [blame] | 291 | } |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 292 | |
Warner Losh | 01a298a | 2021-08-03 13:39:31 -0600 | [diff] [blame] | 293 | save_proc_pathname(argv[0]); |
| 294 | |
Christophe Fergeau | f5852ef | 2019-01-31 17:46:14 +0100 | [diff] [blame] | 295 | error_init(argv[0]); |
Daniel P. Berrange | fe4db84 | 2016-10-04 14:35:52 +0100 | [diff] [blame] | 296 | module_call_init(MODULE_INIT_TRACE); |
Paolo Bonzini | 267f685 | 2016-08-28 03:45:14 +0200 | [diff] [blame] | 297 | qemu_init_cpu_list(); |
Andreas Färber | ce008c1 | 2012-03-04 21:32:36 +0100 | [diff] [blame] | 298 | module_call_init(MODULE_INIT_QOM); |
| 299 | |
Saurav Sachidanand | ec45bbe | 2017-03-20 17:38:28 +0000 | [diff] [blame] | 300 | envlist = envlist_create(); |
Blue Swirl | fc0d96b | 2009-08-15 10:35:42 +0000 | [diff] [blame] | 301 | |
| 302 | /* add current environment into the list */ |
| 303 | for (wrk = environ; *wrk != NULL; wrk++) { |
| 304 | (void) envlist_setenv(envlist, *wrk); |
| 305 | } |
| 306 | |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 307 | cpu_model = NULL; |
Juergen Lock | 0c62de2 | 2010-03-22 19:12:43 +0100 | [diff] [blame] | 308 | |
Lluís Vilanova | 6913e79 | 2016-07-15 19:08:43 +0200 | [diff] [blame] | 309 | qemu_add_opts(&qemu_trace_opts); |
| 310 | |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 311 | optind = 1; |
Lluís Vilanova | 6913e79 | 2016-07-15 19:08:43 +0200 | [diff] [blame] | 312 | for (;;) { |
Warner Losh | b23a51d | 2021-04-23 10:58:11 -0600 | [diff] [blame] | 313 | if (optind >= argc) { |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 314 | break; |
Warner Losh | b23a51d | 2021-04-23 10:58:11 -0600 | [diff] [blame] | 315 | } |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 316 | r = argv[optind]; |
Warner Losh | b23a51d | 2021-04-23 10:58:11 -0600 | [diff] [blame] | 317 | if (r[0] != '-') { |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 318 | break; |
Warner Losh | b23a51d | 2021-04-23 10:58:11 -0600 | [diff] [blame] | 319 | } |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 320 | optind++; |
| 321 | r++; |
| 322 | if (!strcmp(r, "-")) { |
| 323 | break; |
| 324 | } else if (!strcmp(r, "d")) { |
Matthew Fernandez | c235d73 | 2011-06-07 16:32:40 +0000 | [diff] [blame] | 325 | if (optind >= argc) { |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 326 | break; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 327 | } |
Matthew Fernandez | c235d73 | 2011-06-07 16:32:40 +0000 | [diff] [blame] | 328 | log_mask = argv[optind++]; |
| 329 | } else if (!strcmp(r, "D")) { |
| 330 | if (optind >= argc) { |
| 331 | break; |
| 332 | } |
| 333 | log_file = argv[optind++]; |
Blue Swirl | fc0d96b | 2009-08-15 10:35:42 +0000 | [diff] [blame] | 334 | } else if (!strcmp(r, "E")) { |
| 335 | r = argv[optind++]; |
Warner Losh | b23a51d | 2021-04-23 10:58:11 -0600 | [diff] [blame] | 336 | if (envlist_setenv(envlist, r) != 0) { |
Blue Swirl | fc0d96b | 2009-08-15 10:35:42 +0000 | [diff] [blame] | 337 | usage(); |
Warner Losh | b23a51d | 2021-04-23 10:58:11 -0600 | [diff] [blame] | 338 | } |
Stefan Weil | f66724c | 2010-07-15 22:28:02 +0200 | [diff] [blame] | 339 | } else if (!strcmp(r, "ignore-environment")) { |
| 340 | envlist_free(envlist); |
Saurav Sachidanand | ec45bbe | 2017-03-20 17:38:28 +0000 | [diff] [blame] | 341 | envlist = envlist_create(); |
Blue Swirl | fc0d96b | 2009-08-15 10:35:42 +0000 | [diff] [blame] | 342 | } else if (!strcmp(r, "U")) { |
| 343 | r = argv[optind++]; |
Warner Losh | b23a51d | 2021-04-23 10:58:11 -0600 | [diff] [blame] | 344 | if (envlist_unsetenv(envlist, r) != 0) { |
Blue Swirl | fc0d96b | 2009-08-15 10:35:42 +0000 | [diff] [blame] | 345 | usage(); |
Warner Losh | b23a51d | 2021-04-23 10:58:11 -0600 | [diff] [blame] | 346 | } |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 347 | } else if (!strcmp(r, "s")) { |
| 348 | r = argv[optind++]; |
Warner Losh | 312a0b1 | 2021-08-06 18:48:37 -0600 | [diff] [blame] | 349 | rv = qemu_strtoul(r, &r, 0, &target_dflssiz); |
| 350 | if (rv < 0 || target_dflssiz <= 0) { |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 351 | usage(); |
Warner Losh | b23a51d | 2021-04-23 10:58:11 -0600 | [diff] [blame] | 352 | } |
| 353 | if (*r == 'M') { |
Warner Losh | 312a0b1 | 2021-08-06 18:48:37 -0600 | [diff] [blame] | 354 | target_dflssiz *= 1024 * 1024; |
Warner Losh | b23a51d | 2021-04-23 10:58:11 -0600 | [diff] [blame] | 355 | } else if (*r == 'k' || *r == 'K') { |
Warner Losh | 312a0b1 | 2021-08-06 18:48:37 -0600 | [diff] [blame] | 356 | target_dflssiz *= 1024; |
| 357 | } |
| 358 | if (target_dflssiz > target_maxssiz) { |
| 359 | usage(); |
Warner Losh | b23a51d | 2021-04-23 10:58:11 -0600 | [diff] [blame] | 360 | } |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 361 | } else if (!strcmp(r, "L")) { |
| 362 | interp_prefix = argv[optind++]; |
| 363 | } else if (!strcmp(r, "p")) { |
| 364 | qemu_host_page_size = atoi(argv[optind++]); |
| 365 | if (qemu_host_page_size == 0 || |
| 366 | (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) { |
| 367 | fprintf(stderr, "page size must be a power of two\n"); |
| 368 | exit(1); |
| 369 | } |
| 370 | } else if (!strcmp(r, "g")) { |
Alex Bennée | fcedd92 | 2020-04-30 20:01:19 +0100 | [diff] [blame] | 371 | gdbstub = g_strdup(argv[optind++]); |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 372 | } else if (!strcmp(r, "r")) { |
| 373 | qemu_uname_release = argv[optind++]; |
| 374 | } else if (!strcmp(r, "cpu")) { |
| 375 | cpu_model = argv[optind++]; |
Peter Maydell | c8057f9 | 2012-08-02 13:45:54 +0100 | [diff] [blame] | 376 | if (is_help_option(cpu_model)) { |
Warner Losh | d60c3b9 | 2021-04-23 09:05:57 -0600 | [diff] [blame] | 377 | /* XXX: implement xxx_cpu_list for targets that still miss it */ |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 378 | #if defined(cpu_list) |
Warner Losh | d60c3b9 | 2021-04-23 09:05:57 -0600 | [diff] [blame] | 379 | cpu_list(); |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 380 | #endif |
blueswir1 | 2d18e63 | 2009-02-28 20:14:00 +0000 | [diff] [blame] | 381 | exit(1); |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 382 | } |
Blue Swirl | 2fa5d9b | 2009-09-27 19:30:51 +0000 | [diff] [blame] | 383 | } else if (!strcmp(r, "B")) { |
Warner Losh | 29aabb4 | 2021-04-23 11:00:34 -0600 | [diff] [blame] | 384 | rv = qemu_strtoul(argv[optind++], NULL, 0, &guest_base); |
| 385 | if (rv < 0) { |
| 386 | usage(); |
| 387 | } |
Warner Losh | d60c3b9 | 2021-04-23 09:05:57 -0600 | [diff] [blame] | 388 | have_guest_base = true; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 389 | } else if (!strcmp(r, "drop-ld-preload")) { |
Blue Swirl | fc0d96b | 2009-08-15 10:35:42 +0000 | [diff] [blame] | 390 | (void) envlist_unsetenv(envlist, "LD_PRELOAD"); |
Warner Losh | 03ecf07 | 2021-09-02 16:52:45 -0600 | [diff] [blame] | 391 | } else if (!strcmp(r, "seed")) { |
| 392 | seed_optarg = optarg; |
aurel32 | 1b530a6 | 2009-04-05 20:08:59 +0000 | [diff] [blame] | 393 | } else if (!strcmp(r, "singlestep")) { |
| 394 | singlestep = 1; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 395 | } else if (!strcmp(r, "strace")) { |
| 396 | do_strace = 1; |
Lluís Vilanova | 6913e79 | 2016-07-15 19:08:43 +0200 | [diff] [blame] | 397 | } else if (!strcmp(r, "trace")) { |
Paolo Bonzini | 92eecff | 2020-11-02 06:58:41 -0500 | [diff] [blame] | 398 | trace_opt_parse(optarg); |
Colin Percival | b801264 | 2021-08-07 14:34:21 -0600 | [diff] [blame] | 399 | } else if (!strcmp(r, "0")) { |
| 400 | argv0 = argv[optind++]; |
Lluís Vilanova | 6913e79 | 2016-07-15 19:08:43 +0200 | [diff] [blame] | 401 | } else { |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 402 | usage(); |
| 403 | } |
| 404 | } |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 405 | |
Matthew Fernandez | c235d73 | 2011-06-07 16:32:40 +0000 | [diff] [blame] | 406 | /* init debug */ |
Richard Henderson | 905c78f | 2022-04-17 11:30:08 -0700 | [diff] [blame] | 407 | { |
| 408 | int mask = 0; |
| 409 | if (log_mask) { |
| 410 | mask = qemu_str_to_log_mask(log_mask); |
| 411 | if (!mask) { |
| 412 | qemu_print_log_usage(stdout); |
| 413 | exit(1); |
| 414 | } |
Matthew Fernandez | c235d73 | 2011-06-07 16:32:40 +0000 | [diff] [blame] | 415 | } |
Richard Henderson | 905c78f | 2022-04-17 11:30:08 -0700 | [diff] [blame] | 416 | qemu_set_log_filename_flags(log_file, mask, &error_fatal); |
Matthew Fernandez | c235d73 | 2011-06-07 16:32:40 +0000 | [diff] [blame] | 417 | } |
| 418 | |
Peter Maydell | 4b5dfd8 | 2011-07-18 11:44:09 +0100 | [diff] [blame] | 419 | if (optind >= argc) { |
| 420 | usage(); |
| 421 | } |
| 422 | filename = argv[optind]; |
Colin Percival | b801264 | 2021-08-07 14:34:21 -0600 | [diff] [blame] | 423 | if (argv0) { |
| 424 | argv[optind] = argv0; |
| 425 | } |
Peter Maydell | 4b5dfd8 | 2011-07-18 11:44:09 +0100 | [diff] [blame] | 426 | |
Lluís Vilanova | 6913e79 | 2016-07-15 19:08:43 +0200 | [diff] [blame] | 427 | if (!trace_init_backends()) { |
| 428 | exit(1); |
| 429 | } |
Paolo Bonzini | 92eecff | 2020-11-02 06:58:41 -0500 | [diff] [blame] | 430 | trace_init_file(); |
Lluís Vilanova | 6913e79 | 2016-07-15 19:08:43 +0200 | [diff] [blame] | 431 | |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 432 | /* Zero out regs */ |
| 433 | memset(regs, 0, sizeof(struct target_pt_regs)); |
| 434 | |
Warner Losh | d37853f | 2021-04-29 18:45:13 -0600 | [diff] [blame] | 435 | /* Zero bsd params */ |
| 436 | memset(&bprm, 0, sizeof(bprm)); |
| 437 | |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 438 | /* Zero out image_info */ |
| 439 | memset(info, 0, sizeof(struct image_info)); |
| 440 | |
| 441 | /* Scan interp_prefix dir for replacement files. */ |
| 442 | init_paths(interp_prefix); |
| 443 | |
| 444 | if (cpu_model == NULL) { |
Warner Losh | 031fe7a | 2021-08-03 19:05:40 -0600 | [diff] [blame] | 445 | cpu_model = TARGET_DEFAULT_CPU_MODEL; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 446 | } |
Igor Mammedov | 2b5249b | 2018-05-17 13:51:17 +0200 | [diff] [blame] | 447 | |
Claudio Fontana | b86f59c | 2021-02-04 17:39:25 +0100 | [diff] [blame] | 448 | cpu_type = parse_cpu_option(cpu_model); |
Warner Losh | 031fe7a | 2021-08-03 19:05:40 -0600 | [diff] [blame] | 449 | |
Igor Mammedov | 2b5249b | 2018-05-17 13:51:17 +0200 | [diff] [blame] | 450 | /* init tcg before creating CPUs and to get qemu_host_page_size */ |
Claudio Fontana | 940e43a | 2021-02-04 17:39:24 +0100 | [diff] [blame] | 451 | { |
| 452 | AccelClass *ac = ACCEL_GET_CLASS(current_accel()); |
Igor Mammedov | 2b5249b | 2018-05-17 13:51:17 +0200 | [diff] [blame] | 453 | |
Claudio Fontana | b86f59c | 2021-02-04 17:39:25 +0100 | [diff] [blame] | 454 | accel_init_interfaces(ac); |
Claudio Fontana | 92242f3 | 2021-03-22 14:27:58 +0100 | [diff] [blame] | 455 | ac->init_machine(NULL); |
Claudio Fontana | 940e43a | 2021-02-04 17:39:24 +0100 | [diff] [blame] | 456 | } |
Igor Mammedov | 2278b93 | 2018-02-07 11:40:26 +0100 | [diff] [blame] | 457 | cpu = cpu_create(cpu_type); |
Eduardo Habkost | 2994fd9 | 2015-02-26 17:37:49 -0300 | [diff] [blame] | 458 | env = cpu->env_ptr; |
Andreas Färber | db6b81d | 2013-06-27 19:49:31 +0200 | [diff] [blame] | 459 | cpu_reset(cpu); |
Andreas Färber | db6b81d | 2013-06-27 19:49:31 +0200 | [diff] [blame] | 460 | thread_cpu = cpu; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 461 | |
| 462 | if (getenv("QEMU_STRACE")) { |
| 463 | do_strace = 1; |
| 464 | } |
| 465 | |
Blue Swirl | fc0d96b | 2009-08-15 10:35:42 +0000 | [diff] [blame] | 466 | target_environ = envlist_to_environ(envlist, NULL); |
| 467 | envlist_free(envlist); |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 468 | |
Warner Losh | be04f21 | 2021-08-05 18:15:47 -0600 | [diff] [blame] | 469 | if (reserved_va) { |
| 470 | mmap_next_start = reserved_va; |
| 471 | } |
| 472 | |
Warner Losh | 03ecf07 | 2021-09-02 16:52:45 -0600 | [diff] [blame] | 473 | { |
| 474 | Error *err = NULL; |
| 475 | if (seed_optarg != NULL) { |
| 476 | qemu_guest_random_seed_main(seed_optarg, &err); |
| 477 | } else { |
| 478 | qcrypto_init(&err); |
| 479 | } |
| 480 | if (err) { |
| 481 | error_reportf_err(err, "cannot initialize crypto: "); |
| 482 | exit(1); |
| 483 | } |
| 484 | } |
| 485 | |
Blue Swirl | 2fa5d9b | 2009-09-27 19:30:51 +0000 | [diff] [blame] | 486 | /* |
Richard Henderson | fa79cde | 2021-03-09 17:42:16 -0600 | [diff] [blame] | 487 | * Now that page sizes are configured we can do |
Blue Swirl | 2fa5d9b | 2009-09-27 19:30:51 +0000 | [diff] [blame] | 488 | * proper page alignment for guest_base. |
| 489 | */ |
| 490 | guest_base = HOST_PAGE_ALIGN(guest_base); |
| 491 | |
Warner Losh | d37853f | 2021-04-29 18:45:13 -0600 | [diff] [blame] | 492 | if (loader_exec(filename, argv + optind, target_environ, regs, info, |
| 493 | &bprm) != 0) { |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 494 | printf("Error loading %s\n", filename); |
| 495 | _exit(1); |
| 496 | } |
| 497 | |
| 498 | for (wrk = target_environ; *wrk; wrk++) { |
Saurav Sachidanand | ec45bbe | 2017-03-20 17:38:28 +0000 | [diff] [blame] | 499 | g_free(*wrk); |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 500 | } |
| 501 | |
Saurav Sachidanand | ec45bbe | 2017-03-20 17:38:28 +0000 | [diff] [blame] | 502 | g_free(target_environ); |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 503 | |
Paolo Bonzini | 1382902 | 2015-11-13 12:32:19 +0100 | [diff] [blame] | 504 | if (qemu_loglevel_mask(CPU_LOG_PAGE)) { |
Richard Henderson | 43b7616 | 2022-04-17 11:30:01 -0700 | [diff] [blame] | 505 | FILE *f = qemu_log_trylock(); |
| 506 | if (f) { |
| 507 | fprintf(f, "guest_base %p\n", (void *)guest_base); |
| 508 | fprintf(f, "page layout changed following binary load\n"); |
| 509 | page_dump(f); |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 510 | |
Richard Henderson | 43b7616 | 2022-04-17 11:30:01 -0700 | [diff] [blame] | 511 | fprintf(f, "start_brk 0x" TARGET_ABI_FMT_lx "\n", |
| 512 | info->start_brk); |
| 513 | fprintf(f, "end_code 0x" TARGET_ABI_FMT_lx "\n", |
| 514 | info->end_code); |
| 515 | fprintf(f, "start_code 0x" TARGET_ABI_FMT_lx "\n", |
| 516 | info->start_code); |
| 517 | fprintf(f, "start_data 0x" TARGET_ABI_FMT_lx "\n", |
| 518 | info->start_data); |
| 519 | fprintf(f, "end_data 0x" TARGET_ABI_FMT_lx "\n", |
| 520 | info->end_data); |
| 521 | fprintf(f, "start_stack 0x" TARGET_ABI_FMT_lx "\n", |
| 522 | info->start_stack); |
| 523 | fprintf(f, "brk 0x" TARGET_ABI_FMT_lx "\n", info->brk); |
| 524 | fprintf(f, "entry 0x" TARGET_ABI_FMT_lx "\n", info->entry); |
| 525 | |
| 526 | qemu_log_unlock(f); |
| 527 | } |
blueswir1 | 2e77eac | 2009-01-20 16:57:34 +0000 | [diff] [blame] | 528 | } |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 529 | |
Warner Losh | 031fe7a | 2021-08-03 19:05:40 -0600 | [diff] [blame] | 530 | /* build Task State */ |
| 531 | ts = g_new0(TaskState, 1); |
| 532 | init_task_state(ts); |
| 533 | ts->info = info; |
| 534 | ts->bprm = &bprm; |
| 535 | cpu->opaque = ts; |
| 536 | |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 537 | target_set_brk(info->brk); |
| 538 | syscall_init(); |
| 539 | signal_init(); |
| 540 | |
Warner Losh | 34bc847 | 2021-04-23 10:38:55 -0600 | [diff] [blame] | 541 | /* |
| 542 | * Now that we've loaded the binary, GUEST_BASE is fixed. Delay |
| 543 | * generating the prologue until now so that the prologue can take |
| 544 | * the real value of GUEST_BASE into account. |
| 545 | */ |
Emilio G. Cota | b1311c4 | 2017-07-12 17:15:52 -0400 | [diff] [blame] | 546 | tcg_prologue_init(tcg_ctx); |
Richard Henderson | 9002ec7 | 2010-05-06 08:50:41 -0700 | [diff] [blame] | 547 | |
Warner Losh | 031fe7a | 2021-08-03 19:05:40 -0600 | [diff] [blame] | 548 | target_cpu_init(env, regs); |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 549 | |
Alex Bennée | fcedd92 | 2020-04-30 20:01:19 +0100 | [diff] [blame] | 550 | if (gdbstub) { |
| 551 | gdbserver_start(gdbstub); |
Andreas Färber | db6b81d | 2013-06-27 19:49:31 +0200 | [diff] [blame] | 552 | gdb_handlesig(cpu, 0); |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 553 | } |
Juergen Lock | 78cfb07 | 2009-10-17 00:34:26 +0200 | [diff] [blame] | 554 | cpu_loop(env); |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 555 | /* never exits */ |
| 556 | return 0; |
| 557 | } |