]> git.proxmox.com Git - mirror_qemu.git/blame - bsd-user/main.c
bsd-user: Add '-0 argv0' option to bsd-user/main.c
[mirror_qemu.git] / bsd-user / main.c
CommitLineData
84778508 1/*
4c0a4fe6 2 * qemu bsd user main
84778508
BS
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
4c0a4fe6 5 * Copyright (c) 2013-14 Stacey Son
84778508
BS
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
8167ee88 18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
84778508 19 */
14a48c1d 20
312a0b1c
WL
21#include <sys/types.h>
22#include <sys/time.h>
23#include <sys/resource.h>
24#include <sys/sysctl.h>
25
2231197c 26#include "qemu/osdep.h"
a8d25326 27#include "qemu-common.h"
66d26ddb 28#include "qemu/units.h"
940e43aa 29#include "qemu/accel.h"
14a48c1d 30#include "sysemu/tcg.h"
8c1c230a 31#include "qemu-version.h"
84778508
BS
32#include <machine/trap.h>
33
daa76aa4 34#include "qapi/error.h"
84778508 35#include "qemu.h"
6913e79c 36#include "qemu/config-file.h"
f5852efa 37#include "qemu/error-report.h"
f348b6d1
VB
38#include "qemu/path.h"
39#include "qemu/help_option.h"
0b8fa32f 40#include "qemu/module.h"
63c91552 41#include "exec/exec-all.h"
dcb32f1d 42#include "tcg/tcg.h"
1de7afc9
PB
43#include "qemu/timer.h"
44#include "qemu/envlist.h"
29aabb4f 45#include "qemu/cutils.h"
508127e2 46#include "exec/log.h"
6913e79c 47#include "trace/control.h"
03ecf078
WL
48#include "crypto/init.h"
49#include "qemu/guest-random.h"
fc0d96b4 50
d1dc9ab3 51#include "host-os.h"
031fe7af 52#include "target_arch_cpu.h"
d1dc9ab3 53
1b530a6d 54int singlestep;
2fa5d9ba 55unsigned long mmap_min_addr;
5ca870b9 56uintptr_t guest_base;
e307c192 57bool have_guest_base;
d6ef40bf 58unsigned long reserved_va;
1b530a6d 59
7ee2822c 60static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX;
fccae322 61const char *qemu_uname_release;
78cfb07f 62enum BSDType bsd_type;
01a298a5 63char qemu_proc_pathname[PATH_MAX]; /* full path to exeutable */
84778508 64
312a0b1c
WL
65unsigned long target_maxtsiz = TARGET_MAXTSIZ; /* max text size */
66unsigned long target_dfldsiz = TARGET_DFLDSIZ; /* initial data size limit */
67unsigned long target_maxdsiz = TARGET_MAXDSIZ; /* max data size */
68unsigned long target_dflssiz = TARGET_DFLSSIZ; /* initial data size limit */
69unsigned long target_maxssiz = TARGET_MAXSSIZ; /* max stack size */
70unsigned long target_sgrowsiz = TARGET_SGROWSIZ; /* amount to grow stack */
84778508 71
63cca106 72/* Helper routines for implementing atomic operations. */
9399f095 73
9399f095
BS
74void fork_start(void)
75{
63cca106
WL
76 start_exclusive();
77 cpu_list_lock();
78 mmap_fork_start();
9399f095
BS
79}
80
81void fork_end(int child)
82{
83 if (child) {
63cca106
WL
84 CPUState *cpu, *next_cpu;
85 /*
86 * Child processes created by fork() only have a single thread. Discard
87 * information about the parent threads.
88 */
89 CPU_FOREACH_SAFE(cpu, next_cpu) {
90 if (cpu != thread_cpu) {
91 QTAILQ_REMOVE_RCU(&cpus, cpu, node);
92 }
93 }
94 mmap_fork_end(child);
95 /*
96 * qemu_init_cpu_list() takes care of reinitializing the exclusive
97 * state, so we don't need to end_exclusive() here.
98 */
99 qemu_init_cpu_list();
f7ec7f7b 100 gdbserver_fork(thread_cpu);
63cca106
WL
101 } else {
102 mmap_fork_end(child);
103 cpu_list_unlock();
104 end_exclusive();
9399f095
BS
105 }
106}
107
031fe7af 108void cpu_loop(CPUArchState *env)
31fc12df 109{
031fe7af 110 target_cpu_loop(env);
31fc12df
BS
111}
112
84778508
BS
113static void usage(void)
114{
7e563bfb 115 printf("qemu-" TARGET_NAME " version " QEMU_FULL_VERSION
0781dd6e 116 "\n" QEMU_COPYRIGHT "\n"
2e59915d 117 "usage: qemu-" TARGET_NAME " [options] program [arguments...]\n"
84778508
BS
118 "BSD CPU emulator (compiled for %s emulation)\n"
119 "\n"
120 "Standard options:\n"
121 "-h print this help\n"
122 "-g port wait gdb connection to port\n"
123 "-L path set the elf interpreter prefix (default=%s)\n"
124 "-s size set the stack size in bytes (default=%ld)\n"
c8057f95 125 "-cpu model select CPU (-cpu help for list)\n"
84778508 126 "-drop-ld-preload drop LD_PRELOAD for target process\n"
fc0d96b4
BS
127 "-E var=value sets/modifies targets environment variable(s)\n"
128 "-U var unsets targets environment variable(s)\n"
2fa5d9ba 129 "-B address set guest_base address to address\n"
84778508
BS
130 "-bsd type select emulated BSD type FreeBSD/NetBSD/OpenBSD (default)\n"
131 "\n"
132 "Debug options:\n"
989b697d
PM
133 "-d item1[,...] enable logging of specified items\n"
134 " (use '-d help' for a list of log items)\n"
135 "-D logfile write logs to 'logfile' (default stderr)\n"
989b697d
PM
136 "-singlestep always run in singlestep mode\n"
137 "-strace log system calls\n"
6913e79c
LV
138 "-trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
139 " specify tracing options\n"
84778508
BS
140 "\n"
141 "Environment variables:\n"
142 "QEMU_STRACE Print system calls and arguments similar to the\n"
143 " 'strace' program. Enable by setting to any value.\n"
fc0d96b4
BS
144 "You can use -E and -U options to set/unset environment variables\n"
145 "for target process. It is possible to provide several variables\n"
146 "by repeating the option. For example:\n"
147 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
148 "Note that if you provide several changes to single variable\n"
149 "last change will stay in effect.\n"
f5048cb7
EB
150 "\n"
151 QEMU_HELP_BOTTOM "\n"
84778508 152 ,
2e59915d 153 TARGET_NAME,
84778508 154 interp_prefix,
312a0b1c 155 target_dflssiz);
2d18e637 156 exit(1);
84778508
BS
157}
158
d42df502 159__thread CPUState *thread_cpu;
84778508 160
48f59211
EM
161bool qemu_cpu_is_self(CPUState *cpu)
162{
163 return thread_cpu == cpu;
164}
165
166void qemu_cpu_kick(CPUState *cpu)
167{
168 cpu_exit(cpu);
169}
170
84778508
BS
171/* Assumes contents are already zeroed. */
172void init_task_state(TaskState *ts)
173{
174 int i;
175
176 ts->used = 1;
177 ts->first_free = ts->sigqueue_table;
178 for (i = 0; i < MAX_SIGQUEUE_SIZE - 1; i++) {
179 ts->sigqueue_table[i].next = &ts->sigqueue_table[i + 1];
180 }
181 ts->sigqueue_table[i].next = NULL;
182}
183
f0f7f9dc
WL
184void gemu_log(const char *fmt, ...)
185{
186 va_list ap;
187
188 va_start(ap, fmt);
189 vfprintf(stderr, fmt, ap);
190 va_end(ap);
191}
192
312a0b1c
WL
193static void
194adjust_ssize(void)
195{
196 struct rlimit rl;
197
198 if (getrlimit(RLIMIT_STACK, &rl) != 0) {
199 return;
200 }
201
202 target_maxssiz = MIN(target_maxssiz, rl.rlim_max);
203 target_dflssiz = MIN(MAX(target_dflssiz, rl.rlim_cur), target_maxssiz);
204
205 rl.rlim_max = target_maxssiz;
206 rl.rlim_cur = target_dflssiz;
207 setrlimit(RLIMIT_STACK, &rl);
208}
209
01a298a5
WL
210static void save_proc_pathname(char *argv0)
211{
212 int mib[4];
213 size_t len;
214
215 mib[0] = CTL_KERN;
216 mib[1] = KERN_PROC;
217 mib[2] = KERN_PROC_PATHNAME;
218 mib[3] = -1;
219
220 len = sizeof(qemu_proc_pathname);
221 if (sysctl(mib, 4, qemu_proc_pathname, &len, NULL, 0)) {
222 perror("sysctl");
223 }
224}
225
84778508
BS
226int main(int argc, char **argv)
227{
228 const char *filename;
229 const char *cpu_model;
2278b939 230 const char *cpu_type;
989b697d 231 const char *log_file = NULL;
c235d738 232 const char *log_mask = NULL;
03ecf078 233 const char *seed_optarg = NULL;
84778508
BS
234 struct target_pt_regs regs1, *regs = &regs1;
235 struct image_info info1, *info = &info1;
d37853f9 236 struct bsd_binprm bprm;
031fe7af 237 TaskState *ts;
9349b4f9 238 CPUArchState *env;
db6b81d4 239 CPUState *cpu;
29aabb4f 240 int optind, rv;
84778508 241 const char *r;
fcedd920 242 const char *gdbstub = NULL;
fc0d96b4
BS
243 char **target_environ, **wrk;
244 envlist_t *envlist = NULL;
d1dc9ab3 245 bsd_type = HOST_DEFAULT_BSD_TYPE;
b8012648 246 char *argv0 = NULL;
84778508 247
312a0b1c
WL
248 adjust_ssize();
249
b23a51dc 250 if (argc <= 1) {
84778508 251 usage();
b23a51dc 252 }
84778508 253
01a298a5
WL
254 save_proc_pathname(argv[0]);
255
f5852efa 256 error_init(argv[0]);
fe4db84d 257 module_call_init(MODULE_INIT_TRACE);
267f685b 258 qemu_init_cpu_list();
ce008c1f
AF
259 module_call_init(MODULE_INIT_QOM);
260
ec45bbe5 261 envlist = envlist_create();
fc0d96b4
BS
262
263 /* add current environment into the list */
264 for (wrk = environ; *wrk != NULL; wrk++) {
265 (void) envlist_setenv(envlist, *wrk);
266 }
267
84778508 268 cpu_model = NULL;
0c62de2f 269
6913e79c
LV
270 qemu_add_opts(&qemu_trace_opts);
271
84778508 272 optind = 1;
6913e79c 273 for (;;) {
b23a51dc 274 if (optind >= argc) {
84778508 275 break;
b23a51dc 276 }
84778508 277 r = argv[optind];
b23a51dc 278 if (r[0] != '-') {
84778508 279 break;
b23a51dc 280 }
84778508
BS
281 optind++;
282 r++;
283 if (!strcmp(r, "-")) {
284 break;
285 } else if (!strcmp(r, "d")) {
c235d738 286 if (optind >= argc) {
84778508 287 break;
84778508 288 }
c235d738
MF
289 log_mask = argv[optind++];
290 } else if (!strcmp(r, "D")) {
291 if (optind >= argc) {
292 break;
293 }
294 log_file = argv[optind++];
fc0d96b4
BS
295 } else if (!strcmp(r, "E")) {
296 r = argv[optind++];
b23a51dc 297 if (envlist_setenv(envlist, r) != 0) {
fc0d96b4 298 usage();
b23a51dc 299 }
f66724c9
SW
300 } else if (!strcmp(r, "ignore-environment")) {
301 envlist_free(envlist);
ec45bbe5 302 envlist = envlist_create();
fc0d96b4
BS
303 } else if (!strcmp(r, "U")) {
304 r = argv[optind++];
b23a51dc 305 if (envlist_unsetenv(envlist, r) != 0) {
fc0d96b4 306 usage();
b23a51dc 307 }
84778508
BS
308 } else if (!strcmp(r, "s")) {
309 r = argv[optind++];
312a0b1c
WL
310 rv = qemu_strtoul(r, &r, 0, &target_dflssiz);
311 if (rv < 0 || target_dflssiz <= 0) {
84778508 312 usage();
b23a51dc
WL
313 }
314 if (*r == 'M') {
312a0b1c 315 target_dflssiz *= 1024 * 1024;
b23a51dc 316 } else if (*r == 'k' || *r == 'K') {
312a0b1c
WL
317 target_dflssiz *= 1024;
318 }
319 if (target_dflssiz > target_maxssiz) {
320 usage();
b23a51dc 321 }
84778508
BS
322 } else if (!strcmp(r, "L")) {
323 interp_prefix = argv[optind++];
324 } else if (!strcmp(r, "p")) {
325 qemu_host_page_size = atoi(argv[optind++]);
326 if (qemu_host_page_size == 0 ||
327 (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
328 fprintf(stderr, "page size must be a power of two\n");
329 exit(1);
330 }
331 } else if (!strcmp(r, "g")) {
fcedd920 332 gdbstub = g_strdup(argv[optind++]);
84778508
BS
333 } else if (!strcmp(r, "r")) {
334 qemu_uname_release = argv[optind++];
335 } else if (!strcmp(r, "cpu")) {
336 cpu_model = argv[optind++];
c8057f95 337 if (is_help_option(cpu_model)) {
d60c3b93 338 /* XXX: implement xxx_cpu_list for targets that still miss it */
84778508 339#if defined(cpu_list)
d60c3b93 340 cpu_list();
84778508 341#endif
2d18e637 342 exit(1);
84778508 343 }
2fa5d9ba 344 } else if (!strcmp(r, "B")) {
29aabb4f
WL
345 rv = qemu_strtoul(argv[optind++], NULL, 0, &guest_base);
346 if (rv < 0) {
347 usage();
348 }
d60c3b93 349 have_guest_base = true;
84778508 350 } else if (!strcmp(r, "drop-ld-preload")) {
fc0d96b4 351 (void) envlist_unsetenv(envlist, "LD_PRELOAD");
84778508
BS
352 } else if (!strcmp(r, "bsd")) {
353 if (!strcasecmp(argv[optind], "freebsd")) {
354 bsd_type = target_freebsd;
355 } else if (!strcasecmp(argv[optind], "netbsd")) {
356 bsd_type = target_netbsd;
357 } else if (!strcasecmp(argv[optind], "openbsd")) {
358 bsd_type = target_openbsd;
359 } else {
360 usage();
361 }
362 optind++;
03ecf078
WL
363 } else if (!strcmp(r, "seed")) {
364 seed_optarg = optarg;
1b530a6d
AJ
365 } else if (!strcmp(r, "singlestep")) {
366 singlestep = 1;
84778508
BS
367 } else if (!strcmp(r, "strace")) {
368 do_strace = 1;
6913e79c 369 } else if (!strcmp(r, "trace")) {
92eecfff 370 trace_opt_parse(optarg);
b8012648
CP
371 } else if (!strcmp(r, "0")) {
372 argv0 = argv[optind++];
6913e79c 373 } else {
84778508
BS
374 usage();
375 }
376 }
84778508 377
c235d738 378 /* init debug */
f2937a33 379 qemu_log_needs_buffers();
daa76aa4 380 qemu_set_log_filename(log_file, &error_fatal);
c235d738
MF
381 if (log_mask) {
382 int mask;
c235d738 383
4fde1eba 384 mask = qemu_str_to_log_mask(log_mask);
c235d738 385 if (!mask) {
59a6fa6e 386 qemu_print_log_usage(stdout);
c235d738
MF
387 exit(1);
388 }
24537a01 389 qemu_set_log(mask);
c235d738
MF
390 }
391
4b5dfd82
PM
392 if (optind >= argc) {
393 usage();
394 }
395 filename = argv[optind];
b8012648
CP
396 if (argv0) {
397 argv[optind] = argv0;
398 }
4b5dfd82 399
6913e79c
LV
400 if (!trace_init_backends()) {
401 exit(1);
402 }
92eecfff 403 trace_init_file();
6913e79c 404
84778508
BS
405 /* Zero out regs */
406 memset(regs, 0, sizeof(struct target_pt_regs));
407
d37853f9
WL
408 /* Zero bsd params */
409 memset(&bprm, 0, sizeof(bprm));
410
84778508
BS
411 /* Zero out image_info */
412 memset(info, 0, sizeof(struct image_info));
413
414 /* Scan interp_prefix dir for replacement files. */
415 init_paths(interp_prefix);
416
417 if (cpu_model == NULL) {
031fe7af 418 cpu_model = TARGET_DEFAULT_CPU_MODEL;
84778508 419 }
2b5249b8 420
b86f59c7 421 cpu_type = parse_cpu_option(cpu_model);
031fe7af 422
2b5249b8 423 /* init tcg before creating CPUs and to get qemu_host_page_size */
940e43aa
CF
424 {
425 AccelClass *ac = ACCEL_GET_CLASS(current_accel());
2b5249b8 426
b86f59c7 427 accel_init_interfaces(ac);
92242f34 428 ac->init_machine(NULL);
940e43aa 429 }
2278b939 430 cpu = cpu_create(cpu_type);
2994fd96 431 env = cpu->env_ptr;
db6b81d4 432 cpu_reset(cpu);
db6b81d4 433 thread_cpu = cpu;
84778508
BS
434
435 if (getenv("QEMU_STRACE")) {
436 do_strace = 1;
437 }
438
fc0d96b4
BS
439 target_environ = envlist_to_environ(envlist, NULL);
440 envlist_free(envlist);
441
03ecf078
WL
442 {
443 Error *err = NULL;
444 if (seed_optarg != NULL) {
445 qemu_guest_random_seed_main(seed_optarg, &err);
446 } else {
447 qcrypto_init(&err);
448 }
449 if (err) {
450 error_reportf_err(err, "cannot initialize crypto: ");
451 exit(1);
452 }
453 }
454
2fa5d9ba 455 /*
fa79cde6 456 * Now that page sizes are configured we can do
2fa5d9ba
BS
457 * proper page alignment for guest_base.
458 */
459 guest_base = HOST_PAGE_ALIGN(guest_base);
460
d37853f9
WL
461 if (loader_exec(filename, argv + optind, target_environ, regs, info,
462 &bprm) != 0) {
84778508
BS
463 printf("Error loading %s\n", filename);
464 _exit(1);
465 }
466
467 for (wrk = target_environ; *wrk; wrk++) {
ec45bbe5 468 g_free(*wrk);
84778508
BS
469 }
470
ec45bbe5 471 g_free(target_environ);
84778508 472
13829020 473 if (qemu_loglevel_mask(CPU_LOG_PAGE)) {
5ca870b9 474 qemu_log("guest_base %p\n", (void *)guest_base);
10d0d505 475 log_page_dump("binary load");
2e77eac6
BS
476
477 qemu_log("start_brk 0x" TARGET_ABI_FMT_lx "\n", info->start_brk);
478 qemu_log("end_code 0x" TARGET_ABI_FMT_lx "\n", info->end_code);
479 qemu_log("start_code 0x" TARGET_ABI_FMT_lx "\n",
480 info->start_code);
481 qemu_log("start_data 0x" TARGET_ABI_FMT_lx "\n",
482 info->start_data);
483 qemu_log("end_data 0x" TARGET_ABI_FMT_lx "\n", info->end_data);
484 qemu_log("start_stack 0x" TARGET_ABI_FMT_lx "\n",
485 info->start_stack);
486 qemu_log("brk 0x" TARGET_ABI_FMT_lx "\n", info->brk);
487 qemu_log("entry 0x" TARGET_ABI_FMT_lx "\n", info->entry);
488 }
84778508 489
031fe7af
WL
490 /* build Task State */
491 ts = g_new0(TaskState, 1);
492 init_task_state(ts);
493 ts->info = info;
494 ts->bprm = &bprm;
495 cpu->opaque = ts;
496
84778508
BS
497 target_set_brk(info->brk);
498 syscall_init();
499 signal_init();
500
34bc8475
WL
501 /*
502 * Now that we've loaded the binary, GUEST_BASE is fixed. Delay
503 * generating the prologue until now so that the prologue can take
504 * the real value of GUEST_BASE into account.
505 */
b1311c4a 506 tcg_prologue_init(tcg_ctx);
9002ec79 507
031fe7af 508 target_cpu_init(env, regs);
84778508 509
fcedd920
AB
510 if (gdbstub) {
511 gdbserver_start(gdbstub);
db6b81d4 512 gdb_handlesig(cpu, 0);
84778508 513 }
78cfb07f 514 cpu_loop(env);
84778508
BS
515 /* never exits */
516 return 0;
517}