arm-semi.c 17.5 KB
Newer Older
1 2
/*
 *  Arm "Angel" semihosting syscalls
3
 *
4 5
 *  Copyright (c) 2005, 2007 CodeSourcery.
 *  Written by Paul Brook.
6 7 8 9 10 11 12 13 14 15 16 17
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  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/>.
19 20 21 22 23 24 25 26 27 28
 */

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <time.h>

29
#include "cpu.h"
30
#include "exec/semihost.h"
31
#ifdef CONFIG_USER_ONLY
32 33 34
#include "qemu.h"

#define ARM_ANGEL_HEAP_SIZE (128 * 1024 * 1024)
35
#else
P
pbrook 已提交
36
#include "qemu-common.h"
37
#include "exec/gdbstub.h"
38
#include "hw/arm/arm.h"
39
#endif
40

41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
#define TARGET_SYS_OPEN        0x01
#define TARGET_SYS_CLOSE       0x02
#define TARGET_SYS_WRITEC      0x03
#define TARGET_SYS_WRITE0      0x04
#define TARGET_SYS_WRITE       0x05
#define TARGET_SYS_READ        0x06
#define TARGET_SYS_READC       0x07
#define TARGET_SYS_ISTTY       0x09
#define TARGET_SYS_SEEK        0x0a
#define TARGET_SYS_FLEN        0x0c
#define TARGET_SYS_TMPNAM      0x0d
#define TARGET_SYS_REMOVE      0x0e
#define TARGET_SYS_RENAME      0x0f
#define TARGET_SYS_CLOCK       0x10
#define TARGET_SYS_TIME        0x11
#define TARGET_SYS_SYSTEM      0x12
#define TARGET_SYS_ERRNO       0x13
#define TARGET_SYS_GET_CMDLINE 0x15
#define TARGET_SYS_HEAPINFO    0x16
#define TARGET_SYS_EXIT        0x18
61

62 63 64 65
/* ADP_Stopped_ApplicationExit is used for exit(0),
 * anything else is implemented as exit(1) */
#define ADP_Stopped_ApplicationExit     (0x20026)

66 67 68 69
#ifndef O_BINARY
#define O_BINARY 0
#endif

P
pbrook 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
#define GDB_O_RDONLY  0x000
#define GDB_O_WRONLY  0x001
#define GDB_O_RDWR    0x002
#define GDB_O_APPEND  0x008
#define GDB_O_CREAT   0x200
#define GDB_O_TRUNC   0x400
#define GDB_O_BINARY  0

static int gdb_open_modeflags[12] = {
    GDB_O_RDONLY,
    GDB_O_RDONLY | GDB_O_BINARY,
    GDB_O_RDWR,
    GDB_O_RDWR | GDB_O_BINARY,
    GDB_O_WRONLY | GDB_O_CREAT | GDB_O_TRUNC,
    GDB_O_WRONLY | GDB_O_CREAT | GDB_O_TRUNC | GDB_O_BINARY,
    GDB_O_RDWR | GDB_O_CREAT | GDB_O_TRUNC,
    GDB_O_RDWR | GDB_O_CREAT | GDB_O_TRUNC | GDB_O_BINARY,
    GDB_O_WRONLY | GDB_O_CREAT | GDB_O_APPEND,
    GDB_O_WRONLY | GDB_O_CREAT | GDB_O_APPEND | GDB_O_BINARY,
    GDB_O_RDWR | GDB_O_CREAT | GDB_O_APPEND,
    GDB_O_RDWR | GDB_O_CREAT | GDB_O_APPEND | GDB_O_BINARY
};

static int open_modeflags[12] = {
94 95 96 97 98 99 100 101 102 103 104 105 106 107
    O_RDONLY,
    O_RDONLY | O_BINARY,
    O_RDWR,
    O_RDWR | O_BINARY,
    O_WRONLY | O_CREAT | O_TRUNC,
    O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
    O_RDWR | O_CREAT | O_TRUNC,
    O_RDWR | O_CREAT | O_TRUNC | O_BINARY,
    O_WRONLY | O_CREAT | O_APPEND,
    O_WRONLY | O_CREAT | O_APPEND | O_BINARY,
    O_RDWR | O_CREAT | O_APPEND,
    O_RDWR | O_CREAT | O_APPEND | O_BINARY
};

108
#ifdef CONFIG_USER_ONLY
109 110
static inline uint32_t set_swi_errno(TaskState *ts, uint32_t code)
{
111 112 113 114 115
    if (code == (uint32_t)-1)
        ts->swi_errno = errno;
    return code;
}
#else
A
Andreas Färber 已提交
116
static inline uint32_t set_swi_errno(CPUARMState *env, uint32_t code)
117 118 119 120
{
    return code;
}

121
#include "exec/softmmu-semi.h"
122
#endif
123

P
pbrook 已提交
124 125
static target_ulong arm_semi_syscall_len;

P
pbrook 已提交
126 127 128 129
#if !defined(CONFIG_USER_ONLY)
static target_ulong syscall_err;
#endif

130
static void arm_semi_cb(CPUState *cs, target_ulong ret, target_ulong err)
P
pbrook 已提交
131
{
132 133
    ARMCPU *cpu = ARM_CPU(cs);
    CPUARMState *env = &cpu->env;
P
pbrook 已提交
134
#ifdef CONFIG_USER_ONLY
135
    TaskState *ts = cs->opaque;
P
pbrook 已提交
136
#endif
P
pbrook 已提交
137

P
pbrook 已提交
138 139 140
    if (ret == (target_ulong)-1) {
#ifdef CONFIG_USER_ONLY
        ts->swi_errno = err;
P
pbrook 已提交
141 142
#else
	syscall_err = err;
P
pbrook 已提交
143 144 145 146 147
#endif
        env->regs[0] = ret;
    } else {
        /* Fixup syscalls that use nonstardard return conventions.  */
        switch (env->regs[0]) {
148 149
        case TARGET_SYS_WRITE:
        case TARGET_SYS_READ:
P
pbrook 已提交
150 151
            env->regs[0] = arm_semi_syscall_len - ret;
            break;
152
        case TARGET_SYS_SEEK:
P
pbrook 已提交
153 154 155 156 157 158 159 160 161
            env->regs[0] = 0;
            break;
        default:
            env->regs[0] = ret;
            break;
        }
    }
}

162
static void arm_semi_flen_cb(CPUState *cs, target_ulong ret, target_ulong err)
P
pbrook 已提交
163
{
164 165
    ARMCPU *cpu = ARM_CPU(cs);
    CPUARMState *env = &cpu->env;
P
pbrook 已提交
166 167 168
    /* The size is always stored in big-endian order, extract
       the value. We assume the size always fit in 32 bits.  */
    uint32_t size;
169
    cpu_memory_rw_debug(cs, env->regs[13]-64+32, (uint8_t *)&size, 4, 0);
P
pbrook 已提交
170 171
    env->regs[0] = be32_to_cpu(size);
#ifdef CONFIG_USER_ONLY
172
    ((TaskState *)cs->opaque)->swi_errno = err;
P
pbrook 已提交
173 174 175 176 177
#else
    syscall_err = err;
#endif
}

178 179 180 181 182 183 184 185 186
/* Read the input value from the argument block; fail the semihosting
 * call if the memory read fails.
 */
#define GET_ARG(n) do {                                 \
    if (get_user_ual(arg ## n, args + (n) * 4)) {       \
        return (uint32_t)-1;                            \
    }                                                   \
} while (0)

187
#define SET_ARG(n, val) put_user_ual(val, args + (n) * 4)
A
Andreas Färber 已提交
188
uint32_t do_arm_semihosting(CPUARMState *env)
189
{
190
    ARMCPU *cpu = arm_env_get_cpu(env);
191
    CPUState *cs = CPU(cpu);
192
    target_ulong args;
193
    target_ulong arg0, arg1, arg2, arg3;
194 195 196
    char * s;
    int nr;
    uint32_t ret;
197 198
    uint32_t len;
#ifdef CONFIG_USER_ONLY
199
    TaskState *ts = cs->opaque;
200
#else
A
Andreas Färber 已提交
201
    CPUARMState *ts = env;
202
#endif
203 204

    nr = env->regs[0];
205
    args = env->regs[1];
206
    switch (nr) {
207
    case TARGET_SYS_OPEN:
208 209 210 211 212
        GET_ARG(0);
        GET_ARG(1);
        GET_ARG(2);
        s = lock_user_string(arg0);
        if (!s) {
213 214
            /* FIXME - should this error code be -TARGET_EFAULT ? */
            return (uint32_t)-1;
215 216 217
        }
        if (arg1 >= 12) {
            unlock_user(s, arg0, 0);
218
            return (uint32_t)-1;
219
        }
220
        if (strcmp(s, ":tt") == 0) {
221 222
            int result_fileno = arg1 < 4 ? STDIN_FILENO : STDOUT_FILENO;
            unlock_user(s, arg0, 0);
223
            return result_fileno;
224
        }
P
pbrook 已提交
225
        if (use_gdb_syscalls()) {
226 227
            gdb_do_syscall(arm_semi_cb, "open,%s,%x,1a4", arg0,
                           (int)arg2+1, gdb_open_modeflags[arg1]);
228
            ret = env->regs[0];
P
pbrook 已提交
229
        } else {
230
            ret = set_swi_errno(ts, open(s, open_modeflags[arg1], 0644));
P
pbrook 已提交
231
        }
232
        unlock_user(s, arg0, 0);
233
        return ret;
234
    case TARGET_SYS_CLOSE:
235
        GET_ARG(0);
P
pbrook 已提交
236
        if (use_gdb_syscalls()) {
237
            gdb_do_syscall(arm_semi_cb, "close,%x", arg0);
P
pbrook 已提交
238 239
            return env->regs[0];
        } else {
240
            return set_swi_errno(ts, close(arg0));
P
pbrook 已提交
241
        }
242
    case TARGET_SYS_WRITEC:
243
        {
244 245 246 247 248
          char c;

          if (get_user_u8(c, args))
              /* FIXME - should this error code be -TARGET_EFAULT ? */
              return (uint32_t)-1;
249
          /* Write to debug console.  stderr is near enough.  */
P
pbrook 已提交
250 251 252 253 254 255
          if (use_gdb_syscalls()) {
                gdb_do_syscall(arm_semi_cb, "write,2,%x,1", args);
                return env->regs[0];
          } else {
                return write(STDERR_FILENO, &c, 1);
          }
256
        }
257
    case TARGET_SYS_WRITE0:
258 259 260
        if (!(s = lock_user_string(args)))
            /* FIXME - should this error code be -TARGET_EFAULT ? */
            return (uint32_t)-1;
P
pbrook 已提交
261 262 263 264 265 266 267
        len = strlen(s);
        if (use_gdb_syscalls()) {
            gdb_do_syscall(arm_semi_cb, "write,2,%x,%x\n", args, len);
            ret = env->regs[0];
        } else {
            ret = write(STDERR_FILENO, s, len);
        }
268 269
        unlock_user(s, args, 0);
        return ret;
270
    case TARGET_SYS_WRITE:
271 272 273 274
        GET_ARG(0);
        GET_ARG(1);
        GET_ARG(2);
        len = arg2;
P
pbrook 已提交
275 276
        if (use_gdb_syscalls()) {
            arm_semi_syscall_len = len;
277
            gdb_do_syscall(arm_semi_cb, "write,%x,%x,%x", arg0, arg1, len);
P
pbrook 已提交
278 279
            return env->regs[0];
        } else {
280 281
            s = lock_user(VERIFY_READ, arg1, len, 1);
            if (!s) {
282 283
                /* FIXME - should this error code be -TARGET_EFAULT ? */
                return (uint32_t)-1;
284 285 286
            }
            ret = set_swi_errno(ts, write(arg0, s, len));
            unlock_user(s, arg1, 0);
P
pbrook 已提交
287 288 289 290
            if (ret == (uint32_t)-1)
                return -1;
            return len - ret;
        }
291
    case TARGET_SYS_READ:
292 293 294 295
        GET_ARG(0);
        GET_ARG(1);
        GET_ARG(2);
        len = arg2;
P
pbrook 已提交
296 297
        if (use_gdb_syscalls()) {
            arm_semi_syscall_len = len;
298
            gdb_do_syscall(arm_semi_cb, "read,%x,%x,%x", arg0, arg1, len);
P
pbrook 已提交
299 300
            return env->regs[0];
        } else {
301 302
            s = lock_user(VERIFY_WRITE, arg1, len, 0);
            if (!s) {
303 304
                /* FIXME - should this error code be -TARGET_EFAULT ? */
                return (uint32_t)-1;
305 306 307 308 309
            }
            do {
                ret = set_swi_errno(ts, read(arg0, s, len));
            } while (ret == -1 && errno == EINTR);
            unlock_user(s, arg1, len);
P
pbrook 已提交
310 311 312 313
            if (ret == (uint32_t)-1)
                return -1;
            return len - ret;
        }
314
    case TARGET_SYS_READC:
315
       /* XXX: Read from debug console. Not implemented.  */
316
        return 0;
317
    case TARGET_SYS_ISTTY:
318
        GET_ARG(0);
P
pbrook 已提交
319
        if (use_gdb_syscalls()) {
320
            gdb_do_syscall(arm_semi_cb, "isatty,%x", arg0);
P
pbrook 已提交
321 322
            return env->regs[0];
        } else {
323
            return isatty(arg0);
P
pbrook 已提交
324
        }
325
    case TARGET_SYS_SEEK:
326 327
        GET_ARG(0);
        GET_ARG(1);
P
pbrook 已提交
328
        if (use_gdb_syscalls()) {
329
            gdb_do_syscall(arm_semi_cb, "lseek,%x,%x,0", arg0, arg1);
P
pbrook 已提交
330 331
            return env->regs[0];
        } else {
332
            ret = set_swi_errno(ts, lseek(arg0, arg1, SEEK_SET));
P
pbrook 已提交
333 334 335 336
            if (ret == (uint32_t)-1)
              return -1;
            return 0;
        }
337
    case TARGET_SYS_FLEN:
338
        GET_ARG(0);
P
pbrook 已提交
339
        if (use_gdb_syscalls()) {
340
            gdb_do_syscall(arm_semi_flen_cb, "fstat,%x,%x",
341
                           arg0, env->regs[13]-64);
P
pbrook 已提交
342
            return env->regs[0];
P
pbrook 已提交
343
        } else {
344
            struct stat buf;
345
            ret = set_swi_errno(ts, fstat(arg0, &buf));
346 347 348 349
            if (ret == (uint32_t)-1)
                return -1;
            return buf.st_size;
        }
350
    case TARGET_SYS_TMPNAM:
351 352
        /* XXX: Not implemented.  */
        return -1;
353
    case TARGET_SYS_REMOVE:
354 355
        GET_ARG(0);
        GET_ARG(1);
P
pbrook 已提交
356
        if (use_gdb_syscalls()) {
357
            gdb_do_syscall(arm_semi_cb, "unlink,%s", arg0, (int)arg1+1);
P
pbrook 已提交
358 359
            ret = env->regs[0];
        } else {
360 361
            s = lock_user_string(arg0);
            if (!s) {
362 363
                /* FIXME - should this error code be -TARGET_EFAULT ? */
                return (uint32_t)-1;
364
            }
P
pbrook 已提交
365
            ret =  set_swi_errno(ts, remove(s));
366
            unlock_user(s, arg0, 0);
P
pbrook 已提交
367
        }
368
        return ret;
369
    case TARGET_SYS_RENAME:
370 371 372 373
        GET_ARG(0);
        GET_ARG(1);
        GET_ARG(2);
        GET_ARG(3);
P
pbrook 已提交
374 375
        if (use_gdb_syscalls()) {
            gdb_do_syscall(arm_semi_cb, "rename,%s,%s",
376
                           arg0, (int)arg1+1, arg2, (int)arg3+1);
P
pbrook 已提交
377 378
            return env->regs[0];
        } else {
379
            char *s2;
380 381
            s = lock_user_string(arg0);
            s2 = lock_user_string(arg2);
382 383 384 385 386 387
            if (!s || !s2)
                /* FIXME - should this error code be -TARGET_EFAULT ? */
                ret = (uint32_t)-1;
            else
                ret = set_swi_errno(ts, rename(s, s2));
            if (s2)
388
                unlock_user(s2, arg2, 0);
389
            if (s)
390
                unlock_user(s, arg0, 0);
391 392
            return ret;
        }
393
    case TARGET_SYS_CLOCK:
394
        return clock() / (CLOCKS_PER_SEC / 100);
395
    case TARGET_SYS_TIME:
396
        return set_swi_errno(ts, time(NULL));
397
    case TARGET_SYS_SYSTEM:
398 399
        GET_ARG(0);
        GET_ARG(1);
P
pbrook 已提交
400
        if (use_gdb_syscalls()) {
401
            gdb_do_syscall(arm_semi_cb, "system,%s", arg0, (int)arg1+1);
P
pbrook 已提交
402 403
            return env->regs[0];
        } else {
404 405
            s = lock_user_string(arg0);
            if (!s) {
406 407
                /* FIXME - should this error code be -TARGET_EFAULT ? */
                return (uint32_t)-1;
408
            }
P
pbrook 已提交
409
            ret = set_swi_errno(ts, system(s));
410
            unlock_user(s, arg0, 0);
411
            return ret;
P
pbrook 已提交
412
        }
413
    case TARGET_SYS_ERRNO:
414
#ifdef CONFIG_USER_ONLY
415
        return ts->swi_errno;
416
#else
P
pbrook 已提交
417
        return syscall_err;
418
#endif
419
    case TARGET_SYS_GET_CMDLINE:
420
        {
421 422 423
            /* Build a command-line from the original argv.
             *
             * The inputs are:
424 425 426
             *     * arg0, pointer to a buffer of at least the size
             *               specified in arg1.
             *     * arg1, size of the buffer pointed to by arg0 in
427 428 429
             *               bytes.
             *
             * The outputs are:
430
             *     * arg0, pointer to null-terminated string of the
431
             *               command line.
432
             *     * arg1, length of the string pointed to by arg0.
433
             */
434

435
            char *output_buffer;
436
            size_t input_size;
437 438
            size_t output_size;
            int status = 0;
439 440 441
#if !defined(CONFIG_USER_ONLY)
            const char *cmdline;
#endif
442 443 444
            GET_ARG(0);
            GET_ARG(1);
            input_size = arg1;
445 446
            /* Compute the size of the output string.  */
#if !defined(CONFIG_USER_ONLY)
447 448 449 450 451
            cmdline = semihosting_get_cmdline();
            if (cmdline == NULL) {
                cmdline = ""; /* Default to an empty line. */
            }
            output_size = strlen(cmdline) + 1; /* Count terminating 0. */
452 453
#else
            unsigned int i;
454

455 456
            output_size = ts->info->arg_end - ts->info->arg_start;
            if (!output_size) {
457 458
                /* We special-case the "empty command line" case (argc==0).
                   Just provide the terminating 0. */
459 460 461
                output_size = 1;
            }
#endif
462

463 464 465
            if (output_size > input_size) {
                 /* Not enough space to store command-line arguments.  */
                return -1;
466 467
            }

468
            /* Adjust the command-line length.  */
469 470 471 472
            if (SET_ARG(1, output_size - 1)) {
                /* Couldn't write back to argument block */
                return -1;
            }
473

474
            /* Lock the buffer on the ARM side.  */
475
            output_buffer = lock_user(VERIFY_WRITE, arg0, output_size, 0);
476 477 478
            if (!output_buffer) {
                return -1;
            }
479

480 481
            /* Copy the command-line arguments.  */
#if !defined(CONFIG_USER_ONLY)
482
            pstrcpy(output_buffer, output_size, cmdline);
483 484 485 486 487 488
#else
            if (output_size == 1) {
                /* Empty command-line.  */
                output_buffer[0] = '\0';
                goto out;
            }
489

490 491 492 493
            if (copy_from_user(output_buffer, ts->info->arg_start,
                               output_size)) {
                status = -1;
                goto out;
494 495
            }

496 497 498 499 500 501 502 503 504
            /* Separate arguments by white spaces.  */
            for (i = 0; i < output_size - 1; i++) {
                if (output_buffer[i] == 0) {
                    output_buffer[i] = ' ';
                }
            }
        out:
#endif
            /* Unlock the buffer on the ARM side.  */
505
            unlock_user(output_buffer, arg0, output_size);
506

507
            return status;
508
        }
509
    case TARGET_SYS_HEAPINFO:
510 511 512
        {
            uint32_t *ptr;
            uint32_t limit;
513
            GET_ARG(0);
514

515 516
#ifdef CONFIG_USER_ONLY
            /* Some C libraries assume the heap immediately follows .bss, so
517 518
               allocate it using sbrk.  */
            if (!ts->heap_limit) {
519
                abi_ulong ret;
520

521
                ts->heap_base = do_brk(0);
522 523 524
                limit = ts->heap_base + ARM_ANGEL_HEAP_SIZE;
                /* Try a big heap, and reduce the size if that fails.  */
                for (;;) {
525
                    ret = do_brk(limit);
526
                    if (ret >= limit) {
527
                        break;
528
                    }
529 530 531 532
                    limit = (ts->heap_base >> 1) + (limit >> 1);
                }
                ts->heap_limit = limit;
            }
533

534 535
            ptr = lock_user(VERIFY_WRITE, arg0, 16, 0);
            if (!ptr) {
536 537
                /* FIXME - should this error code be -TARGET_EFAULT ? */
                return (uint32_t)-1;
538
            }
539 540 541 542
            ptr[0] = tswap32(ts->heap_base);
            ptr[1] = tswap32(ts->heap_limit);
            ptr[2] = tswap32(ts->stack_base);
            ptr[3] = tswap32(0); /* Stack limit.  */
543
            unlock_user(ptr, arg0, 16);
544 545
#else
            limit = ram_size;
546 547
            ptr = lock_user(VERIFY_WRITE, arg0, 16, 0);
            if (!ptr) {
548 549
                /* FIXME - should this error code be -TARGET_EFAULT ? */
                return (uint32_t)-1;
550
            }
551 552 553 554 555
            /* TODO: Make this use the limit of the loaded application.  */
            ptr[0] = tswap32(limit / 2);
            ptr[1] = tswap32(limit);
            ptr[2] = tswap32(limit); /* Stack base */
            ptr[3] = tswap32(0); /* Stack limit.  */
556
            unlock_user(ptr, arg0, 16);
557
#endif
558 559
            return 0;
        }
560
    case TARGET_SYS_EXIT:
561 562 563 564 565
        /* ARM specifies only Stopped_ApplicationExit as normal
         * exit, everything else is considered an error */
        ret = (args == ADP_Stopped_ApplicationExit) ? 0 : 1;
        gdb_exit(env, ret);
        exit(ret);
566 567
    default:
        fprintf(stderr, "qemu: Unsupported SemiHosting SWI 0x%02x\n", nr);
568
        cpu_dump_state(cs, stderr, fprintf, 0);
569 570 571
        abort();
    }
}