]>
Commit | Line | Data |
---|---|---|
a4f81979 FB |
1 | /* |
2 | * Arm "Angel" semihosting syscalls | |
5fafdf24 | 3 | * |
8e71621f PB |
4 | * Copyright (c) 2005, 2007 CodeSourcery. |
5 | * Written by Paul Brook. | |
a4f81979 FB |
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/>. |
a4f81979 FB |
19 | */ |
20 | ||
21 | #include <sys/types.h> | |
22 | #include <sys/stat.h> | |
23 | #include <fcntl.h> | |
24 | #include <unistd.h> | |
25 | #include <stdlib.h> | |
26 | #include <stdio.h> | |
27 | #include <time.h> | |
28 | ||
8e71621f PB |
29 | #include "cpu.h" |
30 | #ifdef CONFIG_USER_ONLY | |
a4f81979 FB |
31 | #include "qemu.h" |
32 | ||
33 | #define ARM_ANGEL_HEAP_SIZE (128 * 1024 * 1024) | |
8e71621f | 34 | #else |
87ecb68b | 35 | #include "qemu-common.h" |
022c62cb | 36 | #include "exec/gdbstub.h" |
bd2be150 | 37 | #include "hw/arm/arm.h" |
8e71621f | 38 | #endif |
a4f81979 | 39 | |
3881725c SW |
40 | #define TARGET_SYS_OPEN 0x01 |
41 | #define TARGET_SYS_CLOSE 0x02 | |
42 | #define TARGET_SYS_WRITEC 0x03 | |
43 | #define TARGET_SYS_WRITE0 0x04 | |
44 | #define TARGET_SYS_WRITE 0x05 | |
45 | #define TARGET_SYS_READ 0x06 | |
46 | #define TARGET_SYS_READC 0x07 | |
47 | #define TARGET_SYS_ISTTY 0x09 | |
48 | #define TARGET_SYS_SEEK 0x0a | |
49 | #define TARGET_SYS_FLEN 0x0c | |
50 | #define TARGET_SYS_TMPNAM 0x0d | |
51 | #define TARGET_SYS_REMOVE 0x0e | |
52 | #define TARGET_SYS_RENAME 0x0f | |
53 | #define TARGET_SYS_CLOCK 0x10 | |
54 | #define TARGET_SYS_TIME 0x11 | |
55 | #define TARGET_SYS_SYSTEM 0x12 | |
56 | #define TARGET_SYS_ERRNO 0x13 | |
57 | #define TARGET_SYS_GET_CMDLINE 0x15 | |
58 | #define TARGET_SYS_HEAPINFO 0x16 | |
59 | #define TARGET_SYS_EXIT 0x18 | |
a4f81979 FB |
60 | |
61 | #ifndef O_BINARY | |
62 | #define O_BINARY 0 | |
63 | #endif | |
64 | ||
a2d1ebaf PB |
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 | |
72 | ||
73 | static int gdb_open_modeflags[12] = { | |
74 | GDB_O_RDONLY, | |
75 | GDB_O_RDONLY | GDB_O_BINARY, | |
76 | GDB_O_RDWR, | |
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 | |
86 | }; | |
87 | ||
88 | static int open_modeflags[12] = { | |
a4f81979 FB |
89 | O_RDONLY, |
90 | O_RDONLY | O_BINARY, | |
91 | O_RDWR, | |
92 | O_RDWR | O_BINARY, | |
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 | |
101 | }; | |
102 | ||
8e71621f | 103 | #ifdef CONFIG_USER_ONLY |
a4f81979 FB |
104 | static inline uint32_t set_swi_errno(TaskState *ts, uint32_t code) |
105 | { | |
8e71621f PB |
106 | if (code == (uint32_t)-1) |
107 | ts->swi_errno = errno; | |
108 | return code; | |
109 | } | |
110 | #else | |
81926f47 | 111 | static inline uint32_t set_swi_errno(CPUARMState *env, uint32_t code) |
8e71621f PB |
112 | { |
113 | return code; | |
114 | } | |
115 | ||
022c62cb | 116 | #include "exec/softmmu-semi.h" |
8e71621f | 117 | #endif |
a4f81979 | 118 | |
a2d1ebaf PB |
119 | static target_ulong arm_semi_syscall_len; |
120 | ||
33d9cc8a PB |
121 | #if !defined(CONFIG_USER_ONLY) |
122 | static target_ulong syscall_err; | |
123 | #endif | |
124 | ||
81926f47 | 125 | static void arm_semi_cb(CPUARMState *env, target_ulong ret, target_ulong err) |
a2d1ebaf PB |
126 | { |
127 | #ifdef CONFIG_USER_ONLY | |
128 | TaskState *ts = env->opaque; | |
129 | #endif | |
33d9cc8a | 130 | |
a2d1ebaf PB |
131 | if (ret == (target_ulong)-1) { |
132 | #ifdef CONFIG_USER_ONLY | |
133 | ts->swi_errno = err; | |
33d9cc8a PB |
134 | #else |
135 | syscall_err = err; | |
a2d1ebaf PB |
136 | #endif |
137 | env->regs[0] = ret; | |
138 | } else { | |
139 | /* Fixup syscalls that use nonstardard return conventions. */ | |
140 | switch (env->regs[0]) { | |
3881725c SW |
141 | case TARGET_SYS_WRITE: |
142 | case TARGET_SYS_READ: | |
a2d1ebaf PB |
143 | env->regs[0] = arm_semi_syscall_len - ret; |
144 | break; | |
3881725c | 145 | case TARGET_SYS_SEEK: |
a2d1ebaf PB |
146 | env->regs[0] = 0; |
147 | break; | |
148 | default: | |
149 | env->regs[0] = ret; | |
150 | break; | |
151 | } | |
152 | } | |
153 | } | |
154 | ||
81926f47 | 155 | static void arm_semi_flen_cb(CPUARMState *env, target_ulong ret, target_ulong err) |
33d9cc8a PB |
156 | { |
157 | /* The size is always stored in big-endian order, extract | |
158 | the value. We assume the size always fit in 32 bits. */ | |
159 | uint32_t size; | |
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; | |
164 | #else | |
165 | syscall_err = err; | |
166 | #endif | |
167 | } | |
168 | ||
f296c0d1 PM |
169 | /* Read the input value from the argument block; fail the semihosting |
170 | * call if the memory read fails. | |
171 | */ | |
172 | #define GET_ARG(n) do { \ | |
173 | if (get_user_ual(arg ## n, args + (n) * 4)) { \ | |
174 | return (uint32_t)-1; \ | |
175 | } \ | |
176 | } while (0) | |
177 | ||
2f619698 | 178 | #define SET_ARG(n, val) put_user_ual(val, args + (n) * 4) |
81926f47 | 179 | uint32_t do_arm_semihosting(CPUARMState *env) |
a4f81979 | 180 | { |
53a5960a | 181 | target_ulong args; |
f296c0d1 | 182 | target_ulong arg0, arg1, arg2, arg3; |
a4f81979 FB |
183 | char * s; |
184 | int nr; | |
185 | uint32_t ret; | |
8e71621f PB |
186 | uint32_t len; |
187 | #ifdef CONFIG_USER_ONLY | |
a4f81979 | 188 | TaskState *ts = env->opaque; |
8e71621f | 189 | #else |
81926f47 | 190 | CPUARMState *ts = env; |
8e71621f | 191 | #endif |
a4f81979 FB |
192 | |
193 | nr = env->regs[0]; | |
53a5960a | 194 | args = env->regs[1]; |
a4f81979 | 195 | switch (nr) { |
3881725c | 196 | case TARGET_SYS_OPEN: |
f296c0d1 PM |
197 | GET_ARG(0); |
198 | GET_ARG(1); | |
199 | GET_ARG(2); | |
200 | s = lock_user_string(arg0); | |
201 | if (!s) { | |
579a97f7 FB |
202 | /* FIXME - should this error code be -TARGET_EFAULT ? */ |
203 | return (uint32_t)-1; | |
f296c0d1 PM |
204 | } |
205 | if (arg1 >= 12) { | |
206 | unlock_user(s, arg0, 0); | |
579a97f7 | 207 | return (uint32_t)-1; |
396bef4b | 208 | } |
a4f81979 | 209 | if (strcmp(s, ":tt") == 0) { |
f296c0d1 PM |
210 | int result_fileno = arg1 < 4 ? STDIN_FILENO : STDOUT_FILENO; |
211 | unlock_user(s, arg0, 0); | |
396bef4b | 212 | return result_fileno; |
a4f81979 | 213 | } |
a2d1ebaf | 214 | if (use_gdb_syscalls()) { |
f296c0d1 PM |
215 | gdb_do_syscall(arm_semi_cb, "open,%s,%x,1a4", arg0, |
216 | (int)arg2+1, gdb_open_modeflags[arg1]); | |
396bef4b | 217 | ret = env->regs[0]; |
a2d1ebaf | 218 | } else { |
f296c0d1 | 219 | ret = set_swi_errno(ts, open(s, open_modeflags[arg1], 0644)); |
a2d1ebaf | 220 | } |
f296c0d1 | 221 | unlock_user(s, arg0, 0); |
8e71621f | 222 | return ret; |
3881725c | 223 | case TARGET_SYS_CLOSE: |
f296c0d1 | 224 | GET_ARG(0); |
a2d1ebaf | 225 | if (use_gdb_syscalls()) { |
f296c0d1 | 226 | gdb_do_syscall(arm_semi_cb, "close,%x", arg0); |
a2d1ebaf PB |
227 | return env->regs[0]; |
228 | } else { | |
f296c0d1 | 229 | return set_swi_errno(ts, close(arg0)); |
a2d1ebaf | 230 | } |
3881725c | 231 | case TARGET_SYS_WRITEC: |
53a5960a | 232 | { |
2f619698 FB |
233 | char c; |
234 | ||
235 | if (get_user_u8(c, args)) | |
236 | /* FIXME - should this error code be -TARGET_EFAULT ? */ | |
237 | return (uint32_t)-1; | |
53a5960a | 238 | /* Write to debug console. stderr is near enough. */ |
a2d1ebaf PB |
239 | if (use_gdb_syscalls()) { |
240 | gdb_do_syscall(arm_semi_cb, "write,2,%x,1", args); | |
241 | return env->regs[0]; | |
242 | } else { | |
243 | return write(STDERR_FILENO, &c, 1); | |
244 | } | |
53a5960a | 245 | } |
3881725c | 246 | case TARGET_SYS_WRITE0: |
579a97f7 FB |
247 | if (!(s = lock_user_string(args))) |
248 | /* FIXME - should this error code be -TARGET_EFAULT ? */ | |
249 | return (uint32_t)-1; | |
a2d1ebaf PB |
250 | len = strlen(s); |
251 | if (use_gdb_syscalls()) { | |
252 | gdb_do_syscall(arm_semi_cb, "write,2,%x,%x\n", args, len); | |
253 | ret = env->regs[0]; | |
254 | } else { | |
255 | ret = write(STDERR_FILENO, s, len); | |
256 | } | |
53a5960a PB |
257 | unlock_user(s, args, 0); |
258 | return ret; | |
3881725c | 259 | case TARGET_SYS_WRITE: |
f296c0d1 PM |
260 | GET_ARG(0); |
261 | GET_ARG(1); | |
262 | GET_ARG(2); | |
263 | len = arg2; | |
a2d1ebaf PB |
264 | if (use_gdb_syscalls()) { |
265 | arm_semi_syscall_len = len; | |
f296c0d1 | 266 | gdb_do_syscall(arm_semi_cb, "write,%x,%x,%x", arg0, arg1, len); |
a2d1ebaf PB |
267 | return env->regs[0]; |
268 | } else { | |
f296c0d1 PM |
269 | s = lock_user(VERIFY_READ, arg1, len, 1); |
270 | if (!s) { | |
579a97f7 FB |
271 | /* FIXME - should this error code be -TARGET_EFAULT ? */ |
272 | return (uint32_t)-1; | |
f296c0d1 PM |
273 | } |
274 | ret = set_swi_errno(ts, write(arg0, s, len)); | |
275 | unlock_user(s, arg1, 0); | |
a2d1ebaf PB |
276 | if (ret == (uint32_t)-1) |
277 | return -1; | |
278 | return len - ret; | |
279 | } | |
3881725c | 280 | case TARGET_SYS_READ: |
f296c0d1 PM |
281 | GET_ARG(0); |
282 | GET_ARG(1); | |
283 | GET_ARG(2); | |
284 | len = arg2; | |
a2d1ebaf PB |
285 | if (use_gdb_syscalls()) { |
286 | arm_semi_syscall_len = len; | |
f296c0d1 | 287 | gdb_do_syscall(arm_semi_cb, "read,%x,%x,%x", arg0, arg1, len); |
a2d1ebaf PB |
288 | return env->regs[0]; |
289 | } else { | |
f296c0d1 PM |
290 | s = lock_user(VERIFY_WRITE, arg1, len, 0); |
291 | if (!s) { | |
579a97f7 FB |
292 | /* FIXME - should this error code be -TARGET_EFAULT ? */ |
293 | return (uint32_t)-1; | |
f296c0d1 PM |
294 | } |
295 | do { | |
296 | ret = set_swi_errno(ts, read(arg0, s, len)); | |
297 | } while (ret == -1 && errno == EINTR); | |
298 | unlock_user(s, arg1, len); | |
a2d1ebaf PB |
299 | if (ret == (uint32_t)-1) |
300 | return -1; | |
301 | return len - ret; | |
302 | } | |
3881725c | 303 | case TARGET_SYS_READC: |
b90372ad | 304 | /* XXX: Read from debug console. Not implemented. */ |
a4f81979 | 305 | return 0; |
3881725c | 306 | case TARGET_SYS_ISTTY: |
f296c0d1 | 307 | GET_ARG(0); |
a2d1ebaf | 308 | if (use_gdb_syscalls()) { |
f296c0d1 | 309 | gdb_do_syscall(arm_semi_cb, "isatty,%x", arg0); |
a2d1ebaf PB |
310 | return env->regs[0]; |
311 | } else { | |
f296c0d1 | 312 | return isatty(arg0); |
a2d1ebaf | 313 | } |
3881725c | 314 | case TARGET_SYS_SEEK: |
f296c0d1 PM |
315 | GET_ARG(0); |
316 | GET_ARG(1); | |
a2d1ebaf | 317 | if (use_gdb_syscalls()) { |
f296c0d1 | 318 | gdb_do_syscall(arm_semi_cb, "lseek,%x,%x,0", arg0, arg1); |
a2d1ebaf PB |
319 | return env->regs[0]; |
320 | } else { | |
f296c0d1 | 321 | ret = set_swi_errno(ts, lseek(arg0, arg1, SEEK_SET)); |
a2d1ebaf PB |
322 | if (ret == (uint32_t)-1) |
323 | return -1; | |
324 | return 0; | |
325 | } | |
3881725c | 326 | case TARGET_SYS_FLEN: |
f296c0d1 | 327 | GET_ARG(0); |
a2d1ebaf | 328 | if (use_gdb_syscalls()) { |
5fafdf24 | 329 | gdb_do_syscall(arm_semi_flen_cb, "fstat,%x,%x", |
f296c0d1 | 330 | arg0, env->regs[13]-64); |
33d9cc8a | 331 | return env->regs[0]; |
a2d1ebaf | 332 | } else { |
a4f81979 | 333 | struct stat buf; |
f296c0d1 | 334 | ret = set_swi_errno(ts, fstat(arg0, &buf)); |
a4f81979 FB |
335 | if (ret == (uint32_t)-1) |
336 | return -1; | |
337 | return buf.st_size; | |
338 | } | |
3881725c | 339 | case TARGET_SYS_TMPNAM: |
a4f81979 FB |
340 | /* XXX: Not implemented. */ |
341 | return -1; | |
3881725c | 342 | case TARGET_SYS_REMOVE: |
f296c0d1 PM |
343 | GET_ARG(0); |
344 | GET_ARG(1); | |
a2d1ebaf | 345 | if (use_gdb_syscalls()) { |
f296c0d1 | 346 | gdb_do_syscall(arm_semi_cb, "unlink,%s", arg0, (int)arg1+1); |
a2d1ebaf PB |
347 | ret = env->regs[0]; |
348 | } else { | |
f296c0d1 PM |
349 | s = lock_user_string(arg0); |
350 | if (!s) { | |
579a97f7 FB |
351 | /* FIXME - should this error code be -TARGET_EFAULT ? */ |
352 | return (uint32_t)-1; | |
f296c0d1 | 353 | } |
a2d1ebaf | 354 | ret = set_swi_errno(ts, remove(s)); |
f296c0d1 | 355 | unlock_user(s, arg0, 0); |
a2d1ebaf | 356 | } |
8e71621f | 357 | return ret; |
3881725c | 358 | case TARGET_SYS_RENAME: |
f296c0d1 PM |
359 | GET_ARG(0); |
360 | GET_ARG(1); | |
361 | GET_ARG(2); | |
362 | GET_ARG(3); | |
a2d1ebaf PB |
363 | if (use_gdb_syscalls()) { |
364 | gdb_do_syscall(arm_semi_cb, "rename,%s,%s", | |
f296c0d1 | 365 | arg0, (int)arg1+1, arg2, (int)arg3+1); |
a2d1ebaf PB |
366 | return env->regs[0]; |
367 | } else { | |
8e71621f | 368 | char *s2; |
f296c0d1 PM |
369 | s = lock_user_string(arg0); |
370 | s2 = lock_user_string(arg2); | |
579a97f7 FB |
371 | if (!s || !s2) |
372 | /* FIXME - should this error code be -TARGET_EFAULT ? */ | |
373 | ret = (uint32_t)-1; | |
374 | else | |
375 | ret = set_swi_errno(ts, rename(s, s2)); | |
376 | if (s2) | |
f296c0d1 | 377 | unlock_user(s2, arg2, 0); |
579a97f7 | 378 | if (s) |
f296c0d1 | 379 | unlock_user(s, arg0, 0); |
8e71621f PB |
380 | return ret; |
381 | } | |
3881725c | 382 | case TARGET_SYS_CLOCK: |
a4f81979 | 383 | return clock() / (CLOCKS_PER_SEC / 100); |
3881725c | 384 | case TARGET_SYS_TIME: |
a4f81979 | 385 | return set_swi_errno(ts, time(NULL)); |
3881725c | 386 | case TARGET_SYS_SYSTEM: |
f296c0d1 PM |
387 | GET_ARG(0); |
388 | GET_ARG(1); | |
a2d1ebaf | 389 | if (use_gdb_syscalls()) { |
f296c0d1 | 390 | gdb_do_syscall(arm_semi_cb, "system,%s", arg0, (int)arg1+1); |
a2d1ebaf PB |
391 | return env->regs[0]; |
392 | } else { | |
f296c0d1 PM |
393 | s = lock_user_string(arg0); |
394 | if (!s) { | |
579a97f7 FB |
395 | /* FIXME - should this error code be -TARGET_EFAULT ? */ |
396 | return (uint32_t)-1; | |
f296c0d1 | 397 | } |
a2d1ebaf | 398 | ret = set_swi_errno(ts, system(s)); |
f296c0d1 | 399 | unlock_user(s, arg0, 0); |
a982b531 | 400 | return ret; |
a2d1ebaf | 401 | } |
3881725c | 402 | case TARGET_SYS_ERRNO: |
8e71621f | 403 | #ifdef CONFIG_USER_ONLY |
a4f81979 | 404 | return ts->swi_errno; |
8e71621f | 405 | #else |
33d9cc8a | 406 | return syscall_err; |
8e71621f | 407 | #endif |
3881725c | 408 | case TARGET_SYS_GET_CMDLINE: |
38d0662a | 409 | { |
1c1b40c1 CV |
410 | /* Build a command-line from the original argv. |
411 | * | |
412 | * The inputs are: | |
f296c0d1 PM |
413 | * * arg0, pointer to a buffer of at least the size |
414 | * specified in arg1. | |
415 | * * arg1, size of the buffer pointed to by arg0 in | |
1c1b40c1 CV |
416 | * bytes. |
417 | * | |
418 | * The outputs are: | |
f296c0d1 | 419 | * * arg0, pointer to null-terminated string of the |
1c1b40c1 | 420 | * command line. |
f296c0d1 | 421 | * * arg1, length of the string pointed to by arg0. |
1c1b40c1 | 422 | */ |
579a97f7 | 423 | |
1c1b40c1 | 424 | char *output_buffer; |
f296c0d1 | 425 | size_t input_size; |
1c1b40c1 CV |
426 | size_t output_size; |
427 | int status = 0; | |
f296c0d1 PM |
428 | GET_ARG(0); |
429 | GET_ARG(1); | |
430 | input_size = arg1; | |
1c1b40c1 CV |
431 | /* Compute the size of the output string. */ |
432 | #if !defined(CONFIG_USER_ONLY) | |
433 | output_size = strlen(ts->boot_info->kernel_filename) | |
434 | + 1 /* Separating space. */ | |
435 | + strlen(ts->boot_info->kernel_cmdline) | |
436 | + 1; /* Terminating null byte. */ | |
437 | #else | |
438 | unsigned int i; | |
38d0662a | 439 | |
1c1b40c1 CV |
440 | output_size = ts->info->arg_end - ts->info->arg_start; |
441 | if (!output_size) { | |
2e8785ac WS |
442 | /* We special-case the "empty command line" case (argc==0). |
443 | Just provide the terminating 0. */ | |
1c1b40c1 CV |
444 | output_size = 1; |
445 | } | |
446 | #endif | |
38d0662a | 447 | |
1c1b40c1 CV |
448 | if (output_size > input_size) { |
449 | /* Not enough space to store command-line arguments. */ | |
450 | return -1; | |
38d0662a | 451 | } |
38d0662a | 452 | |
1c1b40c1 | 453 | /* Adjust the command-line length. */ |
f296c0d1 PM |
454 | if (SET_ARG(1, output_size - 1)) { |
455 | /* Couldn't write back to argument block */ | |
456 | return -1; | |
457 | } | |
38d0662a | 458 | |
1c1b40c1 | 459 | /* Lock the buffer on the ARM side. */ |
f296c0d1 | 460 | output_buffer = lock_user(VERIFY_WRITE, arg0, output_size, 0); |
1c1b40c1 CV |
461 | if (!output_buffer) { |
462 | return -1; | |
463 | } | |
38d0662a | 464 | |
1c1b40c1 CV |
465 | /* Copy the command-line arguments. */ |
466 | #if !defined(CONFIG_USER_ONLY) | |
467 | pstrcpy(output_buffer, output_size, ts->boot_info->kernel_filename); | |
468 | pstrcat(output_buffer, output_size, " "); | |
469 | pstrcat(output_buffer, output_size, ts->boot_info->kernel_cmdline); | |
470 | #else | |
471 | if (output_size == 1) { | |
472 | /* Empty command-line. */ | |
473 | output_buffer[0] = '\0'; | |
474 | goto out; | |
475 | } | |
2e8785ac | 476 | |
1c1b40c1 CV |
477 | if (copy_from_user(output_buffer, ts->info->arg_start, |
478 | output_size)) { | |
479 | status = -1; | |
480 | goto out; | |
2e8785ac WS |
481 | } |
482 | ||
1c1b40c1 CV |
483 | /* Separate arguments by white spaces. */ |
484 | for (i = 0; i < output_size - 1; i++) { | |
485 | if (output_buffer[i] == 0) { | |
486 | output_buffer[i] = ' '; | |
487 | } | |
488 | } | |
489 | out: | |
490 | #endif | |
491 | /* Unlock the buffer on the ARM side. */ | |
f296c0d1 | 492 | unlock_user(output_buffer, arg0, output_size); |
2e8785ac | 493 | |
1c1b40c1 | 494 | return status; |
38d0662a | 495 | } |
3881725c | 496 | case TARGET_SYS_HEAPINFO: |
a4f81979 FB |
497 | { |
498 | uint32_t *ptr; | |
499 | uint32_t limit; | |
f296c0d1 | 500 | GET_ARG(0); |
a4f81979 | 501 | |
8e71621f PB |
502 | #ifdef CONFIG_USER_ONLY |
503 | /* Some C libraries assume the heap immediately follows .bss, so | |
a4f81979 FB |
504 | allocate it using sbrk. */ |
505 | if (!ts->heap_limit) { | |
206ae74a | 506 | abi_ulong ret; |
a4f81979 | 507 | |
53a5960a | 508 | ts->heap_base = do_brk(0); |
a4f81979 FB |
509 | limit = ts->heap_base + ARM_ANGEL_HEAP_SIZE; |
510 | /* Try a big heap, and reduce the size if that fails. */ | |
511 | for (;;) { | |
53a5960a | 512 | ret = do_brk(limit); |
206ae74a | 513 | if (ret >= limit) { |
a4f81979 | 514 | break; |
206ae74a | 515 | } |
a4f81979 FB |
516 | limit = (ts->heap_base >> 1) + (limit >> 1); |
517 | } | |
518 | ts->heap_limit = limit; | |
519 | } | |
3b46e624 | 520 | |
f296c0d1 PM |
521 | ptr = lock_user(VERIFY_WRITE, arg0, 16, 0); |
522 | if (!ptr) { | |
579a97f7 FB |
523 | /* FIXME - should this error code be -TARGET_EFAULT ? */ |
524 | return (uint32_t)-1; | |
f296c0d1 | 525 | } |
a4f81979 FB |
526 | ptr[0] = tswap32(ts->heap_base); |
527 | ptr[1] = tswap32(ts->heap_limit); | |
528 | ptr[2] = tswap32(ts->stack_base); | |
529 | ptr[3] = tswap32(0); /* Stack limit. */ | |
f296c0d1 | 530 | unlock_user(ptr, arg0, 16); |
8e71621f PB |
531 | #else |
532 | limit = ram_size; | |
f296c0d1 PM |
533 | ptr = lock_user(VERIFY_WRITE, arg0, 16, 0); |
534 | if (!ptr) { | |
579a97f7 FB |
535 | /* FIXME - should this error code be -TARGET_EFAULT ? */ |
536 | return (uint32_t)-1; | |
f296c0d1 | 537 | } |
8e71621f PB |
538 | /* TODO: Make this use the limit of the loaded application. */ |
539 | ptr[0] = tswap32(limit / 2); | |
540 | ptr[1] = tswap32(limit); | |
541 | ptr[2] = tswap32(limit); /* Stack base */ | |
542 | ptr[3] = tswap32(0); /* Stack limit. */ | |
f296c0d1 | 543 | unlock_user(ptr, arg0, 16); |
8e71621f | 544 | #endif |
a4f81979 FB |
545 | return 0; |
546 | } | |
3881725c | 547 | case TARGET_SYS_EXIT: |
0e1c9c54 | 548 | gdb_exit(env, 0); |
a4f81979 FB |
549 | exit(0); |
550 | default: | |
551 | fprintf(stderr, "qemu: Unsupported SemiHosting SWI 0x%02x\n", nr); | |
552 | cpu_dump_state(env, stderr, fprintf, 0); | |
553 | abort(); | |
554 | } | |
555 | } |