2 * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of the Open Source and Linux Lab nor the
13 * names of its contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 #include "qemu/osdep.h"
30 #include "exec/helper-proto.h"
39 TARGET_SYS_lseek = 19,
40 TARGET_SYS_select_one = 29,
42 TARGET_SYS_argc = 1000,
43 TARGET_SYS_argv_sz = 1001,
44 TARGET_SYS_argv = 1002,
45 TARGET_SYS_memset = 1004,
51 SELECT_ONE_EXCEPT = 3,
93 static uint32_t errno_h2g(int host_errno)
95 static const uint32_t guest_errno[] = {
96 [EPERM] = TARGET_EPERM,
97 [ENOENT] = TARGET_ENOENT,
98 [ESRCH] = TARGET_ESRCH,
99 [EINTR] = TARGET_EINTR,
101 [ENXIO] = TARGET_ENXIO,
102 [E2BIG] = TARGET_E2BIG,
103 [ENOEXEC] = TARGET_ENOEXEC,
104 [EBADF] = TARGET_EBADF,
105 [ECHILD] = TARGET_ECHILD,
106 [EAGAIN] = TARGET_EAGAIN,
107 [ENOMEM] = TARGET_ENOMEM,
108 [EACCES] = TARGET_EACCES,
109 [EFAULT] = TARGET_EFAULT,
111 [ENOTBLK] = TARGET_ENOTBLK,
113 [EBUSY] = TARGET_EBUSY,
114 [EEXIST] = TARGET_EEXIST,
115 [EXDEV] = TARGET_EXDEV,
116 [ENODEV] = TARGET_ENODEV,
117 [ENOTDIR] = TARGET_ENOTDIR,
118 [EISDIR] = TARGET_EISDIR,
119 [EINVAL] = TARGET_EINVAL,
120 [ENFILE] = TARGET_ENFILE,
121 [EMFILE] = TARGET_EMFILE,
122 [ENOTTY] = TARGET_ENOTTY,
124 [ETXTBSY] = TARGET_ETXTBSY,
126 [EFBIG] = TARGET_EFBIG,
127 [ENOSPC] = TARGET_ENOSPC,
128 [ESPIPE] = TARGET_ESPIPE,
129 [EROFS] = TARGET_EROFS,
130 [EMLINK] = TARGET_EMLINK,
131 [EPIPE] = TARGET_EPIPE,
132 [EDOM] = TARGET_EDOM,
133 [ERANGE] = TARGET_ERANGE,
134 [ENOSYS] = TARGET_ENOSYS,
136 [ELOOP] = TARGET_ELOOP,
140 if (host_errno == 0) {
142 } else if (host_errno > 0 && host_errno < ARRAY_SIZE(guest_errno) &&
143 guest_errno[host_errno]) {
144 return guest_errno[host_errno];
146 return TARGET_EINVAL;
150 void HELPER(simcall)(CPUXtensaState *env)
152 CPUState *cs = CPU(xtensa_env_get_cpu(env));
153 uint32_t *regs = env->regs;
156 case TARGET_SYS_exit:
157 qemu_log("exit(%d) simcall\n", regs[3]);
161 case TARGET_SYS_read:
162 case TARGET_SYS_write:
164 bool is_write = regs[2] == TARGET_SYS_write;
165 uint32_t fd = regs[3];
166 uint32_t vaddr = regs[4];
167 uint32_t len = regs[5];
170 hwaddr paddr = cpu_get_phys_page_debug(cs, vaddr);
172 TARGET_PAGE_SIZE - (vaddr & (TARGET_PAGE_SIZE - 1));
173 uint32_t io_sz = page_left < len ? page_left : len;
175 void *buf = cpu_physical_memory_map(paddr, &sz, is_write);
181 write(fd, buf, io_sz) :
182 read(fd, buf, io_sz);
183 regs[3] = errno_h2g(errno);
184 cpu_physical_memory_unmap(buf, sz, is_write, sz);
190 regs[3] = TARGET_EINVAL;
197 case TARGET_SYS_open:
203 for (i = 0; i < ARRAY_SIZE(name); ++i) {
204 rc = cpu_memory_rw_debug(cs, regs[3] + i,
205 (uint8_t *)name + i, 1, 0);
206 if (rc != 0 || name[i] == 0) {
211 if (rc == 0 && i < ARRAY_SIZE(name)) {
212 regs[2] = open(name, regs[4], regs[5]);
213 regs[3] = errno_h2g(errno);
216 regs[3] = TARGET_EINVAL;
221 case TARGET_SYS_close:
223 regs[2] = regs[3] = 0;
225 regs[2] = close(regs[3]);
226 regs[3] = errno_h2g(errno);
230 case TARGET_SYS_lseek:
231 regs[2] = lseek(regs[3], (off_t)(int32_t)regs[4], regs[5]);
232 regs[3] = errno_h2g(errno);
235 case TARGET_SYS_select_one:
237 uint32_t fd = regs[3];
238 uint32_t rq = regs[4];
239 uint32_t target_tv = regs[5];
240 uint32_t target_tvv[2];
242 struct timeval tv = {0};
249 cpu_memory_rw_debug(cs, target_tv,
250 (uint8_t *)target_tvv, sizeof(target_tvv), 0);
251 tv.tv_sec = (int32_t)tswap32(target_tvv[0]);
252 tv.tv_usec = (int32_t)tswap32(target_tvv[1]);
254 regs[2] = select(fd + 1,
255 rq == SELECT_ONE_READ ? &fdset : NULL,
256 rq == SELECT_ONE_WRITE ? &fdset : NULL,
257 rq == SELECT_ONE_EXCEPT ? &fdset : NULL,
258 target_tv ? &tv : NULL);
259 regs[3] = errno_h2g(errno);
263 case TARGET_SYS_argc:
268 case TARGET_SYS_argv_sz:
273 case TARGET_SYS_argv:
283 argv.argptr[0] = tswap32(regs[3] + offsetof(struct Argv, text));
284 cpu_memory_rw_debug(cs,
285 regs[3], (uint8_t *)&argv, sizeof(argv), 1);
289 case TARGET_SYS_memset:
291 uint32_t base = regs[3];
292 uint32_t sz = regs[5];
296 void *buf = cpu_physical_memory_map(base, &len, 1);
299 memset(buf, regs[4], len);
300 cpu_physical_memory_unmap(buf, len, 1, len);
313 qemu_log_mask(LOG_GUEST_ERROR, "%s(%d): not implemented\n", __func__, regs[2]);
315 regs[3] = TARGET_ENOSYS;