blob: 3a0db10163f058bb8a54905682f0322eff8de1fe [file] [log] [blame]
Steve Reinhardt79767942003-12-01 19:34:38 -08001/*
Ali Saidiad9b28f2005-03-10 14:20:12 -05002 * Copyright (c) 2003-2005 The Regents of The University of Michigan
Steve Reinhardt79767942003-12-01 19:34:38 -08003 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: 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 copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Ali Saidicb0cf2d2006-05-31 19:26:56 -040027 *
28 * Authors: Steve Reinhardt
29 * Ali Saidi
Steve Reinhardt79767942003-12-01 19:34:38 -080030 */
31
Ali Saidi53d2c932006-02-18 23:44:22 -050032#include <fcntl.h>
Steve Reinhardt79767942003-12-01 19:34:38 -080033#include <unistd.h>
34
35#include <string>
36#include <iostream>
37
38#include "sim/syscall_emul.hh"
Ali Saidi97e42492006-03-15 17:04:50 -050039#include "base/chunk_generator.hh"
Steve Reinhardt79767942003-12-01 19:34:38 -080040#include "base/trace.hh"
Kevin Limeb0e4162006-06-06 17:32:21 -040041#include "cpu/thread_context.hh"
Nathan Binkert13c005a2005-06-04 20:50:10 -040042#include "cpu/base.hh"
Ali Saidi97e42492006-03-15 17:04:50 -050043#include "mem/page_table.hh"
Steve Reinhardt79767942003-12-01 19:34:38 -080044#include "sim/process.hh"
45
Steve Reinhardt29e34a72006-06-09 23:01:31 -040046#include "sim/sim_exit.hh"
Steve Reinhardt79767942003-12-01 19:34:38 -080047
48using namespace std;
Gabe Black463aa6d2006-02-19 02:34:37 -050049using namespace TheISA;
Steve Reinhardt79767942003-12-01 19:34:38 -080050
51void
Gabe Black30b87e92006-09-17 03:00:55 -040052SyscallDesc::doSyscall(int callnum, LiveProcess *process, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -080053{
Korey Sewell4f430e92006-04-10 12:23:17 -040054 DPRINTFR(SyscallVerbose, "%d: %s: syscall %s called w/arguments %d,%d,%d,%d\n",
Kevin Limeb0e4162006-06-06 17:32:21 -040055 curTick,tc->getCpuPtr()->name(), name,
56 tc->getSyscallArg(0),tc->getSyscallArg(1),
57 tc->getSyscallArg(2),tc->getSyscallArg(3));
Steve Reinhardt79767942003-12-01 19:34:38 -080058
Kevin Limeb0e4162006-06-06 17:32:21 -040059 SyscallReturn retval = (*funcPtr)(this, callnum, process, tc);
Steve Reinhardt79767942003-12-01 19:34:38 -080060
Korey Sewell4f430e92006-04-10 12:23:17 -040061 DPRINTFR(SyscallVerbose, "%d: %s: syscall %s returns %d\n",
Kevin Limeb0e4162006-06-06 17:32:21 -040062 curTick,tc->getCpuPtr()->name(), name, retval.value());
Steve Reinhardt79767942003-12-01 19:34:38 -080063
Ali Saidi232134a2005-03-09 15:52:10 -050064 if (!(flags & SyscallDesc::SuppressReturnValue))
Kevin Limeb0e4162006-06-06 17:32:21 -040065 tc->setSyscallReturn(retval);
Steve Reinhardt79767942003-12-01 19:34:38 -080066}
67
68
Ali Saidi232134a2005-03-09 15:52:10 -050069SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -040070unimplementedFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -040071 ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -080072{
Steve Reinhardt99bf6ed2005-11-10 21:05:31 -050073 fatal("syscall %s (#%d) unimplemented.", desc->name, callnum);
Korey Sewell8ddd5092006-03-18 10:51:28 -050074
75 return 1;
Steve Reinhardt79767942003-12-01 19:34:38 -080076}
77
78
Ali Saidi232134a2005-03-09 15:52:10 -050079SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -040080ignoreFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -040081 ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -080082{
Steve Reinhardt99bf6ed2005-11-10 21:05:31 -050083 warn("ignoring syscall %s(%d, %d, ...)", desc->name,
Kevin Limeb0e4162006-06-06 17:32:21 -040084 tc->getSyscallArg(0), tc->getSyscallArg(1));
Steve Reinhardt79767942003-12-01 19:34:38 -080085
Ali Saidiad9b28f2005-03-10 14:20:12 -050086 return 0;
Steve Reinhardt79767942003-12-01 19:34:38 -080087}
88
89
Ali Saidi232134a2005-03-09 15:52:10 -050090SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -040091exitFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -040092 ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -080093{
Korey Sewellf4c56092006-07-03 12:19:35 -040094 if (tc->exit()) {
95 exitSimLoop("target called exit()", tc->getSyscallArg(0) & 0xff);
96 }
Steve Reinhardt79767942003-12-01 19:34:38 -080097
Ali Saidiad9b28f2005-03-10 14:20:12 -050098 return 1;
Steve Reinhardt79767942003-12-01 19:34:38 -080099}
100
101
Ali Saidi232134a2005-03-09 15:52:10 -0500102SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400103getpagesizeFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800104{
Gabe Black463aa6d2006-02-19 02:34:37 -0500105 return (int)VMPageSize;
Steve Reinhardt79767942003-12-01 19:34:38 -0800106}
107
108
Ali Saidi232134a2005-03-09 15:52:10 -0500109SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400110obreakFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800111{
Ali Saidi97e42492006-03-15 17:04:50 -0500112 Addr junk;
113
Steve Reinhardt79767942003-12-01 19:34:38 -0800114 // change brk addr to first arg
Kevin Limeb0e4162006-06-06 17:32:21 -0400115 Addr new_brk = tc->getSyscallArg(0);
Ali Saidi97e42492006-03-15 17:04:50 -0500116 if (new_brk != 0) {
117 for (ChunkGenerator gen(p->brk_point, new_brk - p->brk_point,
118 VMPageSize); !gen.done(); gen.next()) {
119 if (!p->pTable->translate(gen.addr(), junk))
120 p->pTable->allocate(roundDown(gen.addr(), VMPageSize),
121 VMPageSize);
122 }
123 p->brk_point = new_brk;
Ali Saidi232134a2005-03-09 15:52:10 -0500124 }
Ali Saidiad9b28f2005-03-10 14:20:12 -0500125 DPRINTF(SyscallVerbose, "Break Point changed to: %#X\n", p->brk_point);
126 return p->brk_point;
Steve Reinhardt79767942003-12-01 19:34:38 -0800127}
128
129
Ali Saidi232134a2005-03-09 15:52:10 -0500130SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400131closeFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800132{
Kevin Limeb0e4162006-06-06 17:32:21 -0400133 int target_fd = tc->getSyscallArg(0);
Steve Reinhardt44108762005-11-10 21:08:33 -0500134 int status = close(p->sim_fd(target_fd));
135 if (status >= 0)
136 p->free_fd(target_fd);
137 return status;
Steve Reinhardt79767942003-12-01 19:34:38 -0800138}
139
140
Ali Saidi232134a2005-03-09 15:52:10 -0500141SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400142readFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800143{
Kevin Limeb0e4162006-06-06 17:32:21 -0400144 int fd = p->sim_fd(tc->getSyscallArg(0));
145 int nbytes = tc->getSyscallArg(2);
146 BufferArg bufArg(tc->getSyscallArg(1), nbytes);
Steve Reinhardt79767942003-12-01 19:34:38 -0800147
148 int bytes_read = read(fd, bufArg.bufferPtr(), nbytes);
149
150 if (bytes_read != -1)
Kevin Limeb0e4162006-06-06 17:32:21 -0400151 bufArg.copyOut(tc->getMemPort());
Steve Reinhardt79767942003-12-01 19:34:38 -0800152
Ali Saidiad9b28f2005-03-10 14:20:12 -0500153 return bytes_read;
Steve Reinhardt79767942003-12-01 19:34:38 -0800154}
155
Ali Saidi232134a2005-03-09 15:52:10 -0500156SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400157writeFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800158{
Kevin Limeb0e4162006-06-06 17:32:21 -0400159 int fd = p->sim_fd(tc->getSyscallArg(0));
160 int nbytes = tc->getSyscallArg(2);
161 BufferArg bufArg(tc->getSyscallArg(1), nbytes);
Steve Reinhardt79767942003-12-01 19:34:38 -0800162
Kevin Limeb0e4162006-06-06 17:32:21 -0400163 bufArg.copyIn(tc->getMemPort());
Steve Reinhardt79767942003-12-01 19:34:38 -0800164
165 int bytes_written = write(fd, bufArg.bufferPtr(), nbytes);
166
167 fsync(fd);
168
Ali Saidiad9b28f2005-03-10 14:20:12 -0500169 return bytes_written;
Steve Reinhardt79767942003-12-01 19:34:38 -0800170}
171
172
Ali Saidi232134a2005-03-09 15:52:10 -0500173SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400174lseekFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800175{
Kevin Limeb0e4162006-06-06 17:32:21 -0400176 int fd = p->sim_fd(tc->getSyscallArg(0));
177 uint64_t offs = tc->getSyscallArg(1);
178 int whence = tc->getSyscallArg(2);
Steve Reinhardt79767942003-12-01 19:34:38 -0800179
180 off_t result = lseek(fd, offs, whence);
181
Ali Saidiad9b28f2005-03-10 14:20:12 -0500182 return (result == (off_t)-1) ? -errno : result;
Steve Reinhardt79767942003-12-01 19:34:38 -0800183}
184
185
Ali Saidi232134a2005-03-09 15:52:10 -0500186SyscallReturn
Gabe Black23dc5092007-03-03 03:34:55 +0000187_llseekFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
188{
189 int fd = p->sim_fd(tc->getSyscallArg(0));
190 uint64_t offset_high = tc->getSyscallArg(1);
191 uint32_t offset_low = tc->getSyscallArg(2);
192 Addr result_ptr = tc->getSyscallArg(3);
193 int whence = tc->getSyscallArg(4);
194
195 uint64_t offset = (offset_high << 32) | offset_low;
196
197 uint64_t result = lseek(fd, offset, whence);
198 result = TheISA::htog(result);
199
200 if (result == (off_t)-1) {
201 //The seek failed.
202 return -errno;
203 } else {
204 //The seek succeeded.
205 //Copy "result" to "result_ptr"
206 //XXX We'll assume that the size of loff_t is 64 bits on the
207 //target platform
208 BufferArg result_buf(result_ptr, sizeof(result));
209 memcpy(result_buf.bufferPtr(), &result, sizeof(result));
210 result_buf.copyOut(tc->getMemPort());
211 return 0;
212 }
213
214
215 return (result == (off_t)-1) ? -errno : result;
216}
217
218
219SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400220munmapFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800221{
222 // given that we don't really implement mmap, munmap is really easy
Ali Saidiad9b28f2005-03-10 14:20:12 -0500223 return 0;
Steve Reinhardt79767942003-12-01 19:34:38 -0800224}
225
226
227const char *hostname = "m5.eecs.umich.edu";
228
Ali Saidi232134a2005-03-09 15:52:10 -0500229SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400230gethostnameFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800231{
Kevin Limeb0e4162006-06-06 17:32:21 -0400232 int name_len = tc->getSyscallArg(1);
233 BufferArg name(tc->getSyscallArg(0), name_len);
Steve Reinhardt79767942003-12-01 19:34:38 -0800234
235 strncpy((char *)name.bufferPtr(), hostname, name_len);
236
Kevin Limeb0e4162006-06-06 17:32:21 -0400237 name.copyOut(tc->getMemPort());
Steve Reinhardt79767942003-12-01 19:34:38 -0800238
Ali Saidiad9b28f2005-03-10 14:20:12 -0500239 return 0;
Steve Reinhardt79767942003-12-01 19:34:38 -0800240}
241
Ali Saidi232134a2005-03-09 15:52:10 -0500242SyscallReturn
Michael Adler2cd04fd2008-07-23 14:41:33 -0700243getcwdFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
244{
245 int result = 0;
246 unsigned long size = tc->getSyscallArg(1);
247 BufferArg buf(tc->getSyscallArg(0), size);
248
249 // Is current working directory defined?
250 string cwd = p->getcwd();
251 if (!cwd.empty()) {
252 if (cwd.length() >= size) {
253 // Buffer too small
254 return -ERANGE;
255 }
256 strncpy((char *)buf.bufferPtr(), cwd.c_str(), size);
257 result = cwd.length();
258 }
259 else {
260 if (getcwd((char *)buf.bufferPtr(), size) != NULL) {
261 result = strlen((char *)buf.bufferPtr());
262 }
263 else {
264 result = -1;
265 }
266 }
267
268 buf.copyOut(tc->getMemPort());
269
270 return (result == -1) ? -errno : result;
271}
272
273
274SyscallReturn
275readlinkFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
276{
277 string path;
278
279 if (!tc->getMemPort()->tryReadString(path, tc->getSyscallArg(0)))
280 return (TheISA::IntReg)-EFAULT;
281
282 // Adjust path for current working directory
283 path = p->fullPath(path);
284
285 size_t bufsiz = tc->getSyscallArg(2);
286 BufferArg buf(tc->getSyscallArg(1), bufsiz);
287
288 int result = readlink(path.c_str(), (char *)buf.bufferPtr(), bufsiz);
289
290 buf.copyOut(tc->getMemPort());
291
292 return (result == -1) ? -errno : result;
293}
294
295SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400296unlinkFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
David Oehmke95c248c2004-02-05 12:16:17 -0500297{
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400298 string path;
David Oehmke95c248c2004-02-05 12:16:17 -0500299
Kevin Limeb0e4162006-06-06 17:32:21 -0400300 if (!tc->getMemPort()->tryReadString(path, tc->getSyscallArg(0)))
Ali Saidi232134a2005-03-09 15:52:10 -0500301 return (TheISA::IntReg)-EFAULT;
David Oehmke95c248c2004-02-05 12:16:17 -0500302
Nathan Binkert31d829d2006-11-16 12:43:11 -0800303 // Adjust path for current working directory
304 path = p->fullPath(path);
305
David Oehmke95c248c2004-02-05 12:16:17 -0500306 int result = unlink(path.c_str());
Ali Saidiad9b28f2005-03-10 14:20:12 -0500307 return (result == -1) ? -errno : result;
David Oehmke95c248c2004-02-05 12:16:17 -0500308}
309
Michael Adler2cd04fd2008-07-23 14:41:33 -0700310
311SyscallReturn
312mkdirFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
313{
314 string path;
315
316 if (!tc->getMemPort()->tryReadString(path, tc->getSyscallArg(0)))
317 return (TheISA::IntReg)-EFAULT;
318
319 // Adjust path for current working directory
320 path = p->fullPath(path);
321
322 mode_t mode = tc->getSyscallArg(1);
323
324 int result = mkdir(path.c_str(), mode);
325 return (result == -1) ? -errno : result;
326}
327
Ali Saidi232134a2005-03-09 15:52:10 -0500328SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400329renameFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
David Oehmke95c248c2004-02-05 12:16:17 -0500330{
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400331 string old_name;
David Oehmke95c248c2004-02-05 12:16:17 -0500332
Kevin Limeb0e4162006-06-06 17:32:21 -0400333 if (!tc->getMemPort()->tryReadString(old_name, tc->getSyscallArg(0)))
Ali Saidiad9b28f2005-03-10 14:20:12 -0500334 return -EFAULT;
David Oehmke95c248c2004-02-05 12:16:17 -0500335
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400336 string new_name;
David Oehmke95c248c2004-02-05 12:16:17 -0500337
Kevin Limeb0e4162006-06-06 17:32:21 -0400338 if (!tc->getMemPort()->tryReadString(new_name, tc->getSyscallArg(1)))
Ali Saidiad9b28f2005-03-10 14:20:12 -0500339 return -EFAULT;
David Oehmke95c248c2004-02-05 12:16:17 -0500340
Nathan Binkert31d829d2006-11-16 12:43:11 -0800341 // Adjust path for current working directory
342 old_name = p->fullPath(old_name);
343 new_name = p->fullPath(new_name);
344
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400345 int64_t result = rename(old_name.c_str(), new_name.c_str());
Ali Saidiad9b28f2005-03-10 14:20:12 -0500346 return (result == -1) ? -errno : result;
David Oehmke95c248c2004-02-05 12:16:17 -0500347}
Steve Reinhardt79767942003-12-01 19:34:38 -0800348
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400349SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400350truncateFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400351{
352 string path;
353
Kevin Limeb0e4162006-06-06 17:32:21 -0400354 if (!tc->getMemPort()->tryReadString(path, tc->getSyscallArg(0)))
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400355 return -EFAULT;
356
Kevin Limeb0e4162006-06-06 17:32:21 -0400357 off_t length = tc->getSyscallArg(1);
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400358
Nathan Binkert31d829d2006-11-16 12:43:11 -0800359 // Adjust path for current working directory
360 path = p->fullPath(path);
361
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400362 int result = truncate(path.c_str(), length);
363 return (result == -1) ? -errno : result;
364}
365
366SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400367ftruncateFunc(SyscallDesc *desc, int num, LiveProcess *process, ThreadContext *tc)
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400368{
Kevin Limeb0e4162006-06-06 17:32:21 -0400369 int fd = process->sim_fd(tc->getSyscallArg(0));
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400370
371 if (fd < 0)
372 return -EBADF;
373
Kevin Limeb0e4162006-06-06 17:32:21 -0400374 off_t length = tc->getSyscallArg(1);
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400375
376 int result = ftruncate(fd, length);
377 return (result == -1) ? -errno : result;
378}
Kevin Lim6da93ea2005-11-22 12:08:08 -0500379
380SyscallReturn
Michael Adler2cd04fd2008-07-23 14:41:33 -0700381umaskFunc(SyscallDesc *desc, int num, LiveProcess *process, ThreadContext *tc)
382{
383 // Letting the simulated program change the simulator's umask seems like
384 // a bad idea. Compromise by just returning the current umask but not
385 // changing anything.
386 mode_t oldMask = umask(0);
387 umask(oldMask);
388 return oldMask;
389}
390
391SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400392chownFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Kevin Lim6da93ea2005-11-22 12:08:08 -0500393{
394 string path;
395
Kevin Limeb0e4162006-06-06 17:32:21 -0400396 if (!tc->getMemPort()->tryReadString(path, tc->getSyscallArg(0)))
Kevin Lim6da93ea2005-11-22 12:08:08 -0500397 return -EFAULT;
398
399 /* XXX endianess */
Kevin Limeb0e4162006-06-06 17:32:21 -0400400 uint32_t owner = tc->getSyscallArg(1);
Kevin Lim6da93ea2005-11-22 12:08:08 -0500401 uid_t hostOwner = owner;
Kevin Limeb0e4162006-06-06 17:32:21 -0400402 uint32_t group = tc->getSyscallArg(2);
Kevin Lim6da93ea2005-11-22 12:08:08 -0500403 gid_t hostGroup = group;
404
Nathan Binkert31d829d2006-11-16 12:43:11 -0800405 // Adjust path for current working directory
406 path = p->fullPath(path);
407
Kevin Lim6da93ea2005-11-22 12:08:08 -0500408 int result = chown(path.c_str(), hostOwner, hostGroup);
409 return (result == -1) ? -errno : result;
410}
411
412SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400413fchownFunc(SyscallDesc *desc, int num, LiveProcess *process, ThreadContext *tc)
Kevin Lim6da93ea2005-11-22 12:08:08 -0500414{
Kevin Limeb0e4162006-06-06 17:32:21 -0400415 int fd = process->sim_fd(tc->getSyscallArg(0));
Kevin Lim6da93ea2005-11-22 12:08:08 -0500416
417 if (fd < 0)
418 return -EBADF;
419
420 /* XXX endianess */
Kevin Limeb0e4162006-06-06 17:32:21 -0400421 uint32_t owner = tc->getSyscallArg(1);
Kevin Lim6da93ea2005-11-22 12:08:08 -0500422 uid_t hostOwner = owner;
Kevin Limeb0e4162006-06-06 17:32:21 -0400423 uint32_t group = tc->getSyscallArg(2);
Kevin Lim6da93ea2005-11-22 12:08:08 -0500424 gid_t hostGroup = group;
425
426 int result = fchown(fd, hostOwner, hostGroup);
427 return (result == -1) ? -errno : result;
428}
Ali Saidi53d2c932006-02-18 23:44:22 -0500429
430
431SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400432dupFunc(SyscallDesc *desc, int num, LiveProcess *process, ThreadContext *tc)
Steve Reinhardtc5384362006-08-28 07:39:56 -0700433{
434 int fd = process->sim_fd(tc->getSyscallArg(0));
Steve Reinhardtc5384362006-08-28 07:39:56 -0700435 if (fd < 0)
436 return -EBADF;
437
Rick Strong376c7282007-11-29 00:22:46 -0500438 Process::FdMap *fdo = process->sim_fd_obj(tc->getSyscallArg(0));
439
Steve Reinhardtc5384362006-08-28 07:39:56 -0700440 int result = dup(fd);
Rick Strong376c7282007-11-29 00:22:46 -0500441 return (result == -1) ? -errno : process->alloc_fd(result, fdo->filename, fdo->flags, fdo->mode, false);
Steve Reinhardtc5384362006-08-28 07:39:56 -0700442}
443
444
445SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400446fcntlFunc(SyscallDesc *desc, int num, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400447 ThreadContext *tc)
Ali Saidi53d2c932006-02-18 23:44:22 -0500448{
Kevin Limeb0e4162006-06-06 17:32:21 -0400449 int fd = tc->getSyscallArg(0);
Ali Saidi53d2c932006-02-18 23:44:22 -0500450
451 if (fd < 0 || process->sim_fd(fd) < 0)
452 return -EBADF;
453
Kevin Limeb0e4162006-06-06 17:32:21 -0400454 int cmd = tc->getSyscallArg(1);
Ali Saidi53d2c932006-02-18 23:44:22 -0500455 switch (cmd) {
456 case 0: // F_DUPFD
457 // if we really wanted to support this, we'd need to do it
458 // in the target fd space.
459 warn("fcntl(%d, F_DUPFD) not supported, error returned\n", fd);
460 return -EMFILE;
461
462 case 1: // F_GETFD (get close-on-exec flag)
463 case 2: // F_SETFD (set close-on-exec flag)
464 return 0;
465
466 case 3: // F_GETFL (get file flags)
467 case 4: // F_SETFL (set file flags)
468 // not sure if this is totally valid, but we'll pass it through
469 // to the underlying OS
470 warn("fcntl(%d, %d) passed through to host\n", fd, cmd);
471 return fcntl(process->sim_fd(fd), cmd);
472 // return 0;
473
474 case 7: // F_GETLK (get lock)
475 case 8: // F_SETLK (set lock)
476 case 9: // F_SETLKW (set lock and wait)
477 // don't mess with file locking... just act like it's OK
478 warn("File lock call (fcntl(%d, %d)) ignored.\n", fd, cmd);
479 return 0;
480
481 default:
482 warn("Unknown fcntl command %d\n", cmd);
483 return 0;
484 }
485}
486
Ali Saidice3a6342006-03-09 15:42:09 -0500487SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400488fcntl64Func(SyscallDesc *desc, int num, LiveProcess *process,
Korey Sewell4cc31e12006-06-09 17:07:13 -0400489 ThreadContext *tc)
490{
491 int fd = tc->getSyscallArg(0);
492
493 if (fd < 0 || process->sim_fd(fd) < 0)
494 return -EBADF;
495
496 int cmd = tc->getSyscallArg(1);
497 switch (cmd) {
498 case 33: //F_GETLK64
499 warn("fcntl64(%d, F_GETLK64) not supported, error returned\n", fd);
500 return -EMFILE;
501
502 case 34: // F_SETLK64
503 case 35: // F_SETLKW64
504 warn("fcntl64(%d, F_SETLK(W)64) not supported, error returned\n", fd);
505 return -EMFILE;
506
507 default:
508 // not sure if this is totally valid, but we'll pass it through
509 // to the underlying OS
510 warn("fcntl64(%d, %d) passed through to host\n", fd, cmd);
511 return fcntl(process->sim_fd(fd), cmd);
512 // return 0;
513 }
514}
515
516SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400517pipePseudoFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400518 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500519{
520 int fds[2], sim_fds[2];
521 int pipe_retval = pipe(fds);
522
523 if (pipe_retval < 0) {
524 // error
525 return pipe_retval;
526 }
527
Rick Strong376c7282007-11-29 00:22:46 -0500528 sim_fds[0] = process->alloc_fd(fds[0], "PIPE-READ", O_WRONLY, -1, true);
529 sim_fds[1] = process->alloc_fd(fds[1], "PIPE-WRITE", O_RDONLY, -1, true);
Ali Saidice3a6342006-03-09 15:42:09 -0500530
Rick Strong376c7282007-11-29 00:22:46 -0500531 process->setReadPipeSource(sim_fds[0], sim_fds[1]);
Ali Saidice3a6342006-03-09 15:42:09 -0500532 // Alpha Linux convention for pipe() is that fd[0] is returned as
533 // the return value of the function, and fd[1] is returned in r20.
Kevin Limeb0e4162006-06-06 17:32:21 -0400534 tc->setIntReg(SyscallPseudoReturnReg, sim_fds[1]);
Ali Saidice3a6342006-03-09 15:42:09 -0500535 return sim_fds[0];
536}
537
538
539SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400540getpidPseudoFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400541 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500542{
543 // Make up a PID. There's no interprocess communication in
544 // fake_syscall mode, so there's no way for a process to know it's
545 // not getting a unique value.
546
Gabe Black30b87e92006-09-17 03:00:55 -0400547 tc->setIntReg(SyscallPseudoReturnReg, process->ppid());
548 return process->pid();
Ali Saidice3a6342006-03-09 15:42:09 -0500549}
550
551
552SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400553getuidPseudoFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400554 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500555{
556 // Make up a UID and EUID... it shouldn't matter, and we want the
557 // simulation to be deterministic.
558
559 // EUID goes in r20.
Gabe Black30b87e92006-09-17 03:00:55 -0400560 tc->setIntReg(SyscallPseudoReturnReg, process->euid()); //EUID
561 return process->uid(); // UID
Ali Saidice3a6342006-03-09 15:42:09 -0500562}
563
564
565SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400566getgidPseudoFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400567 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500568{
569 // Get current group ID. EGID goes in r20.
Gabe Black30b87e92006-09-17 03:00:55 -0400570 tc->setIntReg(SyscallPseudoReturnReg, process->egid()); //EGID
571 return process->gid();
Ali Saidice3a6342006-03-09 15:42:09 -0500572}
573
574
575SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400576setuidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400577 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500578{
579 // can't fathom why a benchmark would call this.
Kevin Limeb0e4162006-06-06 17:32:21 -0400580 warn("Ignoring call to setuid(%d)\n", tc->getSyscallArg(0));
Ali Saidice3a6342006-03-09 15:42:09 -0500581 return 0;
582}
583
584SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400585getpidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400586 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500587{
588 // Make up a PID. There's no interprocess communication in
589 // fake_syscall mode, so there's no way for a process to know it's
590 // not getting a unique value.
591
Gabe Black30b87e92006-09-17 03:00:55 -0400592 tc->setIntReg(SyscallPseudoReturnReg, process->ppid()); //PID
593 return process->pid();
Ali Saidice3a6342006-03-09 15:42:09 -0500594}
595
596SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400597getppidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400598 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500599{
Gabe Black30b87e92006-09-17 03:00:55 -0400600 return process->ppid();
Ali Saidice3a6342006-03-09 15:42:09 -0500601}
602
603SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400604getuidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400605 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500606{
Gabe Black30b87e92006-09-17 03:00:55 -0400607 return process->uid(); // UID
Ali Saidice3a6342006-03-09 15:42:09 -0500608}
609
610SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400611geteuidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400612 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500613{
Gabe Black30b87e92006-09-17 03:00:55 -0400614 return process->euid(); // UID
Ali Saidice3a6342006-03-09 15:42:09 -0500615}
616
617SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400618getgidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400619 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500620{
Gabe Black30b87e92006-09-17 03:00:55 -0400621 return process->gid();
Ali Saidice3a6342006-03-09 15:42:09 -0500622}
623
624SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400625getegidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400626 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500627{
Gabe Black30b87e92006-09-17 03:00:55 -0400628 return process->egid();
Ali Saidice3a6342006-03-09 15:42:09 -0500629}
630
Ali Saidi53d2c932006-02-18 23:44:22 -0500631