2 * Arm "Angel" semihosting syscalls
4 * Copyright (c) 2005, 2007 CodeSourcery.
5 * Written by Paul Brook.
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.
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.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include <sys/types.h>
30 #ifdef CONFIG_USER_ONLY
33 #define ARM_ANGEL_HEAP_SIZE (128 * 1024 * 1024)
35 #include "qemu-common.h"
41 #define SYS_CLOSE 0x02
42 #define SYS_WRITEC 0x03
43 #define SYS_WRITE0 0x04
44 #define SYS_WRITE 0x05
46 #define SYS_READC 0x07
47 #define SYS_ISTTY 0x09
50 #define SYS_TMPNAM 0x0d
51 #define SYS_REMOVE 0x0e
52 #define SYS_RENAME 0x0f
53 #define SYS_CLOCK 0x10
55 #define SYS_SYSTEM 0x12
56 #define SYS_ERRNO 0x13
57 #define SYS_GET_CMDLINE 0x15
58 #define SYS_HEAPINFO 0x16
65 #define GDB_O_RDONLY 0x000
66 #define GDB_O_WRONLY 0x001
67 #define GDB_O_RDWR 0x002
68 #define GDB_O_APPEND 0x008
69 #define GDB_O_CREAT 0x200
70 #define GDB_O_TRUNC 0x400
71 #define GDB_O_BINARY 0
73 static int gdb_open_modeflags
[12] = {
75 GDB_O_RDONLY
| GDB_O_BINARY
,
77 GDB_O_RDWR
| GDB_O_BINARY
,
78 GDB_O_WRONLY
| GDB_O_CREAT
| GDB_O_TRUNC
,
79 GDB_O_WRONLY
| GDB_O_CREAT
| GDB_O_TRUNC
| GDB_O_BINARY
,
80 GDB_O_RDWR
| GDB_O_CREAT
| GDB_O_TRUNC
,
81 GDB_O_RDWR
| GDB_O_CREAT
| GDB_O_TRUNC
| GDB_O_BINARY
,
82 GDB_O_WRONLY
| GDB_O_CREAT
| GDB_O_APPEND
,
83 GDB_O_WRONLY
| GDB_O_CREAT
| GDB_O_APPEND
| GDB_O_BINARY
,
84 GDB_O_RDWR
| GDB_O_CREAT
| GDB_O_APPEND
,
85 GDB_O_RDWR
| GDB_O_CREAT
| GDB_O_APPEND
| GDB_O_BINARY
88 static int open_modeflags
[12] = {
93 O_WRONLY
| O_CREAT
| O_TRUNC
,
94 O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
,
95 O_RDWR
| O_CREAT
| O_TRUNC
,
96 O_RDWR
| O_CREAT
| O_TRUNC
| O_BINARY
,
97 O_WRONLY
| O_CREAT
| O_APPEND
,
98 O_WRONLY
| O_CREAT
| O_APPEND
| O_BINARY
,
99 O_RDWR
| O_CREAT
| O_APPEND
,
100 O_RDWR
| O_CREAT
| O_APPEND
| O_BINARY
103 #ifdef CONFIG_USER_ONLY
104 static inline uint32_t set_swi_errno(TaskState
*ts
, uint32_t code
)
106 if (code
== (uint32_t)-1)
107 ts
->swi_errno
= errno
;
111 static inline uint32_t set_swi_errno(CPUState
*env
, uint32_t code
)
116 #include "softmmu-semi.h"
119 static target_ulong arm_semi_syscall_len
;
121 #if !defined(CONFIG_USER_ONLY)
122 static target_ulong syscall_err
;
125 static void arm_semi_cb(CPUState
*env
, target_ulong ret
, target_ulong err
)
127 #ifdef CONFIG_USER_ONLY
128 TaskState
*ts
= env
->opaque
;
131 if (ret
== (target_ulong
)-1) {
132 #ifdef CONFIG_USER_ONLY
139 /* Fixup syscalls that use nonstardard return conventions. */
140 switch (env
->regs
[0]) {
143 env
->regs
[0] = arm_semi_syscall_len
- ret
;
155 static void arm_semi_flen_cb(CPUState
*env
, target_ulong ret
, target_ulong err
)
157 /* The size is always stored in big-endian order, extract
158 the value. We assume the size always fit in 32 bits. */
160 cpu_memory_rw_debug(env
, env
->regs
[13]-64+32, (uint8_t *)&size
, 4, 0);
161 env
->regs
[0] = be32_to_cpu(size
);
162 #ifdef CONFIG_USER_ONLY
163 ((TaskState
*)env
->opaque
)->swi_errno
= err
;
171 target_ulong __arg; \
172 /* FIXME - handle get_user() failure */ \
173 get_user_ual(__arg, args + (n) * 4); \
176 #define SET_ARG(n, val) put_user_ual(val, args + (n) * 4)
177 uint32_t do_arm_semihosting(CPUState
*env
)
184 #ifdef CONFIG_USER_ONLY
185 TaskState
*ts
= env
->opaque
;
194 if (!(s
= lock_user_string(ARG(0))))
195 /* FIXME - should this error code be -TARGET_EFAULT ? */
199 if (strcmp(s
, ":tt") == 0) {
203 return STDOUT_FILENO
;
205 if (use_gdb_syscalls()) {
206 gdb_do_syscall(arm_semi_cb
, "open,%s,%x,1a4", ARG(0),
207 (int)ARG(2)+1, gdb_open_modeflags
[ARG(1)]);
210 ret
= set_swi_errno(ts
, open(s
, open_modeflags
[ARG(1)], 0644));
212 unlock_user(s
, ARG(0), 0);
215 if (use_gdb_syscalls()) {
216 gdb_do_syscall(arm_semi_cb
, "close,%x", ARG(0));
219 return set_swi_errno(ts
, close(ARG(0)));
225 if (get_user_u8(c
, args
))
226 /* FIXME - should this error code be -TARGET_EFAULT ? */
228 /* Write to debug console. stderr is near enough. */
229 if (use_gdb_syscalls()) {
230 gdb_do_syscall(arm_semi_cb
, "write,2,%x,1", args
);
233 return write(STDERR_FILENO
, &c
, 1);
237 if (!(s
= lock_user_string(args
)))
238 /* FIXME - should this error code be -TARGET_EFAULT ? */
241 if (use_gdb_syscalls()) {
242 gdb_do_syscall(arm_semi_cb
, "write,2,%x,%x\n", args
, len
);
245 ret
= write(STDERR_FILENO
, s
, len
);
247 unlock_user(s
, args
, 0);
251 if (use_gdb_syscalls()) {
252 arm_semi_syscall_len
= len
;
253 gdb_do_syscall(arm_semi_cb
, "write,%x,%x,%x", ARG(0), ARG(1), len
);
256 if (!(s
= lock_user(VERIFY_READ
, ARG(1), len
, 1)))
257 /* FIXME - should this error code be -TARGET_EFAULT ? */
259 ret
= set_swi_errno(ts
, write(ARG(0), s
, len
));
260 unlock_user(s
, ARG(1), 0);
261 if (ret
== (uint32_t)-1)
267 if (use_gdb_syscalls()) {
268 arm_semi_syscall_len
= len
;
269 gdb_do_syscall(arm_semi_cb
, "read,%x,%x,%x", ARG(0), ARG(1), len
);
272 if (!(s
= lock_user(VERIFY_WRITE
, ARG(1), len
, 0)))
273 /* FIXME - should this error code be -TARGET_EFAULT ? */
276 ret
= set_swi_errno(ts
, read(ARG(0), s
, len
));
277 while (ret
== -1 && errno
== EINTR
);
278 unlock_user(s
, ARG(1), len
);
279 if (ret
== (uint32_t)-1)
284 /* XXX: Read from debug cosole. Not implemented. */
287 if (use_gdb_syscalls()) {
288 gdb_do_syscall(arm_semi_cb
, "isatty,%x", ARG(0));
291 return isatty(ARG(0));
294 if (use_gdb_syscalls()) {
295 gdb_do_syscall(arm_semi_cb
, "lseek,%x,%x,0", ARG(0), ARG(1));
298 ret
= set_swi_errno(ts
, lseek(ARG(0), ARG(1), SEEK_SET
));
299 if (ret
== (uint32_t)-1)
304 if (use_gdb_syscalls()) {
305 gdb_do_syscall(arm_semi_flen_cb
, "fstat,%x,%x",
306 ARG(0), env
->regs
[13]-64);
310 ret
= set_swi_errno(ts
, fstat(ARG(0), &buf
));
311 if (ret
== (uint32_t)-1)
316 /* XXX: Not implemented. */
319 if (use_gdb_syscalls()) {
320 gdb_do_syscall(arm_semi_cb
, "unlink,%s", ARG(0), (int)ARG(1)+1);
323 if (!(s
= lock_user_string(ARG(0))))
324 /* FIXME - should this error code be -TARGET_EFAULT ? */
326 ret
= set_swi_errno(ts
, remove(s
));
327 unlock_user(s
, ARG(0), 0);
331 if (use_gdb_syscalls()) {
332 gdb_do_syscall(arm_semi_cb
, "rename,%s,%s",
333 ARG(0), (int)ARG(1)+1, ARG(2), (int)ARG(3)+1);
337 s
= lock_user_string(ARG(0));
338 s2
= lock_user_string(ARG(2));
340 /* FIXME - should this error code be -TARGET_EFAULT ? */
343 ret
= set_swi_errno(ts
, rename(s
, s2
));
345 unlock_user(s2
, ARG(2), 0);
347 unlock_user(s
, ARG(0), 0);
351 return clock() / (CLOCKS_PER_SEC
/ 100);
353 return set_swi_errno(ts
, time(NULL
));
355 if (use_gdb_syscalls()) {
356 gdb_do_syscall(arm_semi_cb
, "system,%s", ARG(0), (int)ARG(1)+1);
359 if (!(s
= lock_user_string(ARG(0))))
360 /* FIXME - should this error code be -TARGET_EFAULT ? */
362 ret
= set_swi_errno(ts
, system(s
));
363 unlock_user(s
, ARG(0), 0);
367 #ifdef CONFIG_USER_ONLY
368 return ts
->swi_errno
;
372 case SYS_GET_CMDLINE
:
373 #ifdef CONFIG_USER_ONLY
374 /* Build a commandline from the original argv. */
376 char **arg
= ts
->info
->host_argv
;
378 /* lock the buffer on the ARM side */
379 char *cmdline_buffer
= (char*)lock_user(VERIFY_WRITE
, ARG(0), len
, 0);
382 /* FIXME - should this error code be -TARGET_EFAULT ? */
386 while (*arg
&& len
> 2) {
387 int n
= strlen(*arg
);
389 if (s
!= cmdline_buffer
) {
400 /* Null terminate the string. */
402 len
= s
- cmdline_buffer
;
404 /* Unlock the buffer on the ARM side. */
405 unlock_user(cmdline_buffer
, ARG(0), len
);
407 /* Adjust the commandline length argument. */
410 /* Return success if commandline fit into buffer. */
411 return *arg
? -1 : 0;
421 #ifdef CONFIG_USER_ONLY
422 /* Some C libraries assume the heap immediately follows .bss, so
423 allocate it using sbrk. */
424 if (!ts
->heap_limit
) {
427 ts
->heap_base
= do_brk(0);
428 limit
= ts
->heap_base
+ ARM_ANGEL_HEAP_SIZE
;
429 /* Try a big heap, and reduce the size if that fails. */
434 limit
= (ts
->heap_base
>> 1) + (limit
>> 1);
436 ts
->heap_limit
= limit
;
439 if (!(ptr
= lock_user(VERIFY_WRITE
, ARG(0), 16, 0)))
440 /* FIXME - should this error code be -TARGET_EFAULT ? */
442 ptr
[0] = tswap32(ts
->heap_base
);
443 ptr
[1] = tswap32(ts
->heap_limit
);
444 ptr
[2] = tswap32(ts
->stack_base
);
445 ptr
[3] = tswap32(0); /* Stack limit. */
446 unlock_user(ptr
, ARG(0), 16);
449 if (!(ptr
= lock_user(VERIFY_WRITE
, ARG(0), 16, 0)))
450 /* FIXME - should this error code be -TARGET_EFAULT ? */
452 /* TODO: Make this use the limit of the loaded application. */
453 ptr
[0] = tswap32(limit
/ 2);
454 ptr
[1] = tswap32(limit
);
455 ptr
[2] = tswap32(limit
); /* Stack base */
456 ptr
[3] = tswap32(0); /* Stack limit. */
457 unlock_user(ptr
, ARG(0), 16);
465 fprintf(stderr
, "qemu: Unsupported SemiHosting SWI 0x%02x\n", nr
);
466 cpu_dump_state(env
, stderr
, fprintf
, 0);