blob: 9e53645f58a16e4c5693ef8e25df59f359f394b5 [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
Nathan Binkert2c5fe6f2009-11-04 16:57:01 -080035#include <cstdio>
Steve Reinhardt79767942003-12-01 19:34:38 -080036#include <iostream>
Nathan Binkert2c5fe6f2009-11-04 16:57:01 -080037#include <string>
Steve Reinhardt79767942003-12-01 19:34:38 -080038
Gabe Black0dd1f7f2010-09-14 00:29:38 -070039#include "arch/utility.hh"
Ali Saidi97e42492006-03-15 17:04:50 -050040#include "base/chunk_generator.hh"
Steve Reinhardt79767942003-12-01 19:34:38 -080041#include "base/trace.hh"
Nathan Binkertd9f39c82009-09-23 08:34:21 -070042#include "config/the_isa.hh"
Nathan Binkert13c005a2005-06-04 20:50:10 -040043#include "cpu/base.hh"
Nathan Binkert39a05562011-04-15 10:44:06 -070044#include "cpu/thread_context.hh"
Nathan Binkerteddac532011-04-15 10:44:32 -070045#include "debug/SyscallVerbose.hh"
Ali Saidi97e42492006-03-15 17:04:50 -050046#include "mem/page_table.hh"
Steve Reinhardt79767942003-12-01 19:34:38 -080047#include "sim/process.hh"
Steve Reinhardt29e34a72006-06-09 23:01:31 -040048#include "sim/sim_exit.hh"
Nathan Binkert39a05562011-04-15 10:44:06 -070049#include "sim/syscall_emul.hh"
50#include "sim/system.hh"
Steve Reinhardt79767942003-12-01 19:34:38 -080051
52using namespace std;
Gabe Black463aa6d2006-02-19 02:34:37 -050053using namespace TheISA;
Steve Reinhardt79767942003-12-01 19:34:38 -080054
55void
Gabe Black30b87e92006-09-17 03:00:55 -040056SyscallDesc::doSyscall(int callnum, LiveProcess *process, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -080057{
Gabe Blackd6ff7922009-10-31 13:20:22 -070058#if TRACING_ON
Gabe Black3f722b92009-10-30 00:44:55 -070059 int index = 0;
Gabe Blackd6ff7922009-10-31 13:20:22 -070060#endif
Steve Reinhardt03b39252009-04-21 08:17:36 -070061 DPRINTFR(SyscallVerbose,
62 "%d: %s: syscall %s called w/arguments %d,%d,%d,%d\n",
Steve Reinhardt6f118792011-01-07 21:50:29 -080063 curTick(), tc->getCpuPtr()->name(), name,
Gabe Black3f722b92009-10-30 00:44:55 -070064 process->getSyscallArg(tc, index),
65 process->getSyscallArg(tc, index),
66 process->getSyscallArg(tc, index),
67 process->getSyscallArg(tc, index));
Steve Reinhardt79767942003-12-01 19:34:38 -080068
Kevin Limeb0e4162006-06-06 17:32:21 -040069 SyscallReturn retval = (*funcPtr)(this, callnum, process, tc);
Steve Reinhardt79767942003-12-01 19:34:38 -080070
Korey Sewell4f430e92006-04-10 12:23:17 -040071 DPRINTFR(SyscallVerbose, "%d: %s: syscall %s returns %d\n",
Steve Reinhardt6f118792011-01-07 21:50:29 -080072 curTick(),tc->getCpuPtr()->name(), name, retval.value());
Steve Reinhardt79767942003-12-01 19:34:38 -080073
Ali Saidi232134a2005-03-09 15:52:10 -050074 if (!(flags & SyscallDesc::SuppressReturnValue))
Gabe Black9a000c52009-02-27 09:22:14 -080075 process->setSyscallReturn(tc, retval);
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 -040080unimplementedFunc(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 fatal("syscall %s (#%d) unimplemented.", desc->name, callnum);
Korey Sewell8ddd5092006-03-18 10:51:28 -050084
85 return 1;
Steve Reinhardt79767942003-12-01 19:34:38 -080086}
87
88
Ali Saidi232134a2005-03-09 15:52:10 -050089SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -040090ignoreFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -040091 ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -080092{
Gabe Black3f722b92009-10-30 00:44:55 -070093 int index = 0;
Steve Reinhardt99bf6ed2005-11-10 21:05:31 -050094 warn("ignoring syscall %s(%d, %d, ...)", desc->name,
Gabe Black3f722b92009-10-30 00:44:55 -070095 process->getSyscallArg(tc, index), process->getSyscallArg(tc, index));
Steve Reinhardt79767942003-12-01 19:34:38 -080096
Ali Saidiad9b28f2005-03-10 14:20:12 -050097 return 0;
Steve Reinhardt79767942003-12-01 19:34:38 -080098}
99
100
Ali Saidi232134a2005-03-09 15:52:10 -0500101SyscallReturn
Chris Emmonsccaaa982011-03-17 19:20:20 -0500102ignoreWarnOnceFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
103 ThreadContext *tc)
104{
105 int index = 0;
106 warn_once("ignoring syscall %s(%d, %d, ...)", desc->name,
107 process->getSyscallArg(tc, index), process->getSyscallArg(tc, index));
108
109 return 0;
110}
111
112
113SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400114exitFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400115 ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800116{
Steve Reinhardt8882dc12009-04-15 13:13:47 -0700117 if (process->system->numRunningContexts() == 1) {
118 // Last running context... exit simulator
Gabe Black3f722b92009-10-30 00:44:55 -0700119 int index = 0;
Gabe Black9a000c52009-02-27 09:22:14 -0800120 exitSimLoop("target called exit()",
Gabe Black3f722b92009-10-30 00:44:55 -0700121 process->getSyscallArg(tc, index) & 0xff);
Steve Reinhardt8882dc12009-04-15 13:13:47 -0700122 } else {
123 // other running threads... just halt this one
124 tc->halt();
Korey Sewellf4c56092006-07-03 12:19:35 -0400125 }
Steve Reinhardt79767942003-12-01 19:34:38 -0800126
Ali Saidiad9b28f2005-03-10 14:20:12 -0500127 return 1;
Steve Reinhardt79767942003-12-01 19:34:38 -0800128}
129
130
Ali Saidi232134a2005-03-09 15:52:10 -0500131SyscallReturn
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700132exitGroupFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
133 ThreadContext *tc)
134{
135 // really should just halt all thread contexts belonging to this
136 // process in case there's another process running...
Gabe Black3f722b92009-10-30 00:44:55 -0700137 int index = 0;
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700138 exitSimLoop("target called exit()",
Gabe Black3f722b92009-10-30 00:44:55 -0700139 process->getSyscallArg(tc, index) & 0xff);
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700140
141 return 1;
142}
143
144
145SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400146getpagesizeFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800147{
Gabe Black463aa6d2006-02-19 02:34:37 -0500148 return (int)VMPageSize;
Steve Reinhardt79767942003-12-01 19:34:38 -0800149}
150
151
Ali Saidi232134a2005-03-09 15:52:10 -0500152SyscallReturn
Steve Reinhardt4514f562008-11-15 09:30:10 -0800153brkFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800154{
155 // change brk addr to first arg
Gabe Black3f722b92009-10-30 00:44:55 -0700156 int index = 0;
157 Addr new_brk = p->getSyscallArg(tc, index);
Steve Reinhardt4514f562008-11-15 09:30:10 -0800158
159 // in Linux at least, brk(0) returns the current break value
160 // (note that the syscall and the glibc function have different behavior)
161 if (new_brk == 0)
162 return p->brk_point;
163
164 if (new_brk > p->brk_point) {
165 // might need to allocate some new pages
Ali Saidi97e42492006-03-15 17:04:50 -0500166 for (ChunkGenerator gen(p->brk_point, new_brk - p->brk_point,
167 VMPageSize); !gen.done(); gen.next()) {
Steve Reinhardt4514f562008-11-15 09:30:10 -0800168 if (!p->pTable->translate(gen.addr()))
Steve Reinhardt6f9d2942011-10-22 22:30:08 -0700169 p->allocateMem(roundDown(gen.addr(), VMPageSize), VMPageSize);
Timothy M. Jones03da1e52009-10-24 10:53:58 -0700170
171 // if the address is already there, zero it out
172 else {
173 uint8_t zero = 0;
Andreas Hansson9e3c8de2012-02-24 11:45:30 -0500174 SETranslatingPortProxy &tp = tc->getMemProxy();
Timothy M. Jones03da1e52009-10-24 10:53:58 -0700175
176 // split non-page aligned accesses
177 Addr next_page = roundUp(gen.addr(), VMPageSize);
178 uint32_t size_needed = next_page - gen.addr();
Andreas Hansson9e3c8de2012-02-24 11:45:30 -0500179 tp.memsetBlob(gen.addr(), zero, size_needed);
Timothy M. Jones03da1e52009-10-24 10:53:58 -0700180 if (gen.addr() + VMPageSize > next_page &&
181 next_page < new_brk &&
182 p->pTable->translate(next_page))
183 {
184 size_needed = VMPageSize - size_needed;
Andreas Hansson9e3c8de2012-02-24 11:45:30 -0500185 tp.memsetBlob(next_page, zero, size_needed);
Timothy M. Jones03da1e52009-10-24 10:53:58 -0700186 }
187 }
Ali Saidi97e42492006-03-15 17:04:50 -0500188 }
Ali Saidi232134a2005-03-09 15:52:10 -0500189 }
Steve Reinhardt4514f562008-11-15 09:30:10 -0800190
191 p->brk_point = new_brk;
Ali Saidiad9b28f2005-03-10 14:20:12 -0500192 DPRINTF(SyscallVerbose, "Break Point changed to: %#X\n", p->brk_point);
193 return p->brk_point;
Steve Reinhardt79767942003-12-01 19:34:38 -0800194}
195
196
Ali Saidi232134a2005-03-09 15:52:10 -0500197SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400198closeFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800199{
Gabe Black3f722b92009-10-30 00:44:55 -0700200 int index = 0;
201 int target_fd = p->getSyscallArg(tc, index);
Timothy M. Jones0d301ca2010-07-22 18:47:52 +0100202 int sim_fd = p->sim_fd(target_fd);
203 int status = 0;
204 if (sim_fd > 2)
205 status = close(sim_fd);
Steve Reinhardt44108762005-11-10 21:08:33 -0500206 if (status >= 0)
207 p->free_fd(target_fd);
208 return status;
Steve Reinhardt79767942003-12-01 19:34:38 -0800209}
210
211
Ali Saidi232134a2005-03-09 15:52:10 -0500212SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400213readFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800214{
Gabe Black3f722b92009-10-30 00:44:55 -0700215 int index = 0;
216 int fd = p->sim_fd(p->getSyscallArg(tc, index));
217 Addr bufPtr = p->getSyscallArg(tc, index);
218 int nbytes = p->getSyscallArg(tc, index);
219 BufferArg bufArg(bufPtr, nbytes);
Steve Reinhardt79767942003-12-01 19:34:38 -0800220
221 int bytes_read = read(fd, bufArg.bufferPtr(), nbytes);
222
223 if (bytes_read != -1)
Andreas Hanssonf85286b2012-01-17 12:55:08 -0600224 bufArg.copyOut(tc->getMemProxy());
Steve Reinhardt79767942003-12-01 19:34:38 -0800225
Ali Saidiad9b28f2005-03-10 14:20:12 -0500226 return bytes_read;
Steve Reinhardt79767942003-12-01 19:34:38 -0800227}
228
Ali Saidi232134a2005-03-09 15:52:10 -0500229SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400230writeFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800231{
Gabe Black3f722b92009-10-30 00:44:55 -0700232 int index = 0;
233 int fd = p->sim_fd(p->getSyscallArg(tc, index));
234 Addr bufPtr = p->getSyscallArg(tc, index);
235 int nbytes = p->getSyscallArg(tc, index);
236 BufferArg bufArg(bufPtr, nbytes);
Steve Reinhardt79767942003-12-01 19:34:38 -0800237
Andreas Hanssonf85286b2012-01-17 12:55:08 -0600238 bufArg.copyIn(tc->getMemProxy());
Steve Reinhardt79767942003-12-01 19:34:38 -0800239
240 int bytes_written = write(fd, bufArg.bufferPtr(), nbytes);
241
242 fsync(fd);
243
Ali Saidiad9b28f2005-03-10 14:20:12 -0500244 return bytes_written;
Steve Reinhardt79767942003-12-01 19:34:38 -0800245}
246
247
Ali Saidi232134a2005-03-09 15:52:10 -0500248SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400249lseekFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800250{
Gabe Black3f722b92009-10-30 00:44:55 -0700251 int index = 0;
252 int fd = p->sim_fd(p->getSyscallArg(tc, index));
253 uint64_t offs = p->getSyscallArg(tc, index);
254 int whence = p->getSyscallArg(tc, index);
Steve Reinhardt79767942003-12-01 19:34:38 -0800255
256 off_t result = lseek(fd, offs, whence);
257
Ali Saidiad9b28f2005-03-10 14:20:12 -0500258 return (result == (off_t)-1) ? -errno : result;
Steve Reinhardt79767942003-12-01 19:34:38 -0800259}
260
261
Ali Saidi232134a2005-03-09 15:52:10 -0500262SyscallReturn
Gabe Black23dc5092007-03-03 03:34:55 +0000263_llseekFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
264{
Gabe Black3f722b92009-10-30 00:44:55 -0700265 int index = 0;
266 int fd = p->sim_fd(p->getSyscallArg(tc, index));
267 uint64_t offset_high = p->getSyscallArg(tc, index);
268 uint32_t offset_low = p->getSyscallArg(tc, index);
269 Addr result_ptr = p->getSyscallArg(tc, index);
270 int whence = p->getSyscallArg(tc, index);
Gabe Black23dc5092007-03-03 03:34:55 +0000271
272 uint64_t offset = (offset_high << 32) | offset_low;
273
274 uint64_t result = lseek(fd, offset, whence);
275 result = TheISA::htog(result);
276
277 if (result == (off_t)-1) {
278 //The seek failed.
279 return -errno;
280 } else {
Steve Reinhardt03b39252009-04-21 08:17:36 -0700281 // The seek succeeded.
282 // Copy "result" to "result_ptr"
283 // XXX We'll assume that the size of loff_t is 64 bits on the
284 // target platform
Gabe Black23dc5092007-03-03 03:34:55 +0000285 BufferArg result_buf(result_ptr, sizeof(result));
286 memcpy(result_buf.bufferPtr(), &result, sizeof(result));
Andreas Hanssonf85286b2012-01-17 12:55:08 -0600287 result_buf.copyOut(tc->getMemProxy());
Gabe Black23dc5092007-03-03 03:34:55 +0000288 return 0;
289 }
290
291
292 return (result == (off_t)-1) ? -errno : result;
293}
294
295
296SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400297munmapFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800298{
299 // given that we don't really implement mmap, munmap is really easy
Ali Saidiad9b28f2005-03-10 14:20:12 -0500300 return 0;
Steve Reinhardt79767942003-12-01 19:34:38 -0800301}
302
303
304const char *hostname = "m5.eecs.umich.edu";
305
Ali Saidi232134a2005-03-09 15:52:10 -0500306SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400307gethostnameFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt79767942003-12-01 19:34:38 -0800308{
Gabe Black3f722b92009-10-30 00:44:55 -0700309 int index = 0;
310 Addr bufPtr = p->getSyscallArg(tc, index);
311 int name_len = p->getSyscallArg(tc, index);
312 BufferArg name(bufPtr, name_len);
Steve Reinhardt79767942003-12-01 19:34:38 -0800313
314 strncpy((char *)name.bufferPtr(), hostname, name_len);
315
Andreas Hanssonf85286b2012-01-17 12:55:08 -0600316 name.copyOut(tc->getMemProxy());
Steve Reinhardt79767942003-12-01 19:34:38 -0800317
Ali Saidiad9b28f2005-03-10 14:20:12 -0500318 return 0;
Steve Reinhardt79767942003-12-01 19:34:38 -0800319}
320
Ali Saidi232134a2005-03-09 15:52:10 -0500321SyscallReturn
Michael Adler2cd04fd2008-07-23 14:41:33 -0700322getcwdFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
323{
324 int result = 0;
Vince Weaver7da221c2009-11-09 10:02:55 -0500325 int index = 0;
Gabe Black3f722b92009-10-30 00:44:55 -0700326 Addr bufPtr = p->getSyscallArg(tc, index);
327 unsigned long size = p->getSyscallArg(tc, index);
328 BufferArg buf(bufPtr, size);
Michael Adler2cd04fd2008-07-23 14:41:33 -0700329
330 // Is current working directory defined?
331 string cwd = p->getcwd();
332 if (!cwd.empty()) {
333 if (cwd.length() >= size) {
334 // Buffer too small
335 return -ERANGE;
336 }
337 strncpy((char *)buf.bufferPtr(), cwd.c_str(), size);
338 result = cwd.length();
339 }
340 else {
341 if (getcwd((char *)buf.bufferPtr(), size) != NULL) {
342 result = strlen((char *)buf.bufferPtr());
343 }
344 else {
345 result = -1;
346 }
347 }
348
Andreas Hanssonf85286b2012-01-17 12:55:08 -0600349 buf.copyOut(tc->getMemProxy());
Michael Adler2cd04fd2008-07-23 14:41:33 -0700350
351 return (result == -1) ? -errno : result;
352}
353
354
355SyscallReturn
356readlinkFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
357{
358 string path;
359
Gabe Black3f722b92009-10-30 00:44:55 -0700360 int index = 0;
Andreas Hansson9e3c8de2012-02-24 11:45:30 -0500361 if (!tc->getMemProxy().tryReadString(path, p->getSyscallArg(tc, index)))
Michael Adler2cd04fd2008-07-23 14:41:33 -0700362 return (TheISA::IntReg)-EFAULT;
363
364 // Adjust path for current working directory
365 path = p->fullPath(path);
366
Gabe Black3f722b92009-10-30 00:44:55 -0700367 Addr bufPtr = p->getSyscallArg(tc, index);
368 size_t bufsiz = p->getSyscallArg(tc, index);
369
370 BufferArg buf(bufPtr, bufsiz);
Michael Adler2cd04fd2008-07-23 14:41:33 -0700371
372 int result = readlink(path.c_str(), (char *)buf.bufferPtr(), bufsiz);
373
Andreas Hanssonf85286b2012-01-17 12:55:08 -0600374 buf.copyOut(tc->getMemProxy());
Michael Adler2cd04fd2008-07-23 14:41:33 -0700375
376 return (result == -1) ? -errno : result;
377}
378
379SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400380unlinkFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
David Oehmke95c248c2004-02-05 12:16:17 -0500381{
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400382 string path;
David Oehmke95c248c2004-02-05 12:16:17 -0500383
Gabe Black3f722b92009-10-30 00:44:55 -0700384 int index = 0;
Andreas Hansson9e3c8de2012-02-24 11:45:30 -0500385 if (!tc->getMemProxy().tryReadString(path, p->getSyscallArg(tc, index)))
Ali Saidi232134a2005-03-09 15:52:10 -0500386 return (TheISA::IntReg)-EFAULT;
David Oehmke95c248c2004-02-05 12:16:17 -0500387
Nathan Binkert31d829d2006-11-16 12:43:11 -0800388 // Adjust path for current working directory
389 path = p->fullPath(path);
390
David Oehmke95c248c2004-02-05 12:16:17 -0500391 int result = unlink(path.c_str());
Ali Saidiad9b28f2005-03-10 14:20:12 -0500392 return (result == -1) ? -errno : result;
David Oehmke95c248c2004-02-05 12:16:17 -0500393}
394
Michael Adler2cd04fd2008-07-23 14:41:33 -0700395
396SyscallReturn
397mkdirFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
398{
399 string path;
400
Gabe Black3f722b92009-10-30 00:44:55 -0700401 int index = 0;
Andreas Hansson9e3c8de2012-02-24 11:45:30 -0500402 if (!tc->getMemProxy().tryReadString(path, p->getSyscallArg(tc, index)))
Michael Adler2cd04fd2008-07-23 14:41:33 -0700403 return (TheISA::IntReg)-EFAULT;
404
405 // Adjust path for current working directory
406 path = p->fullPath(path);
407
Gabe Black3f722b92009-10-30 00:44:55 -0700408 mode_t mode = p->getSyscallArg(tc, index);
Michael Adler2cd04fd2008-07-23 14:41:33 -0700409
410 int result = mkdir(path.c_str(), mode);
411 return (result == -1) ? -errno : result;
412}
413
Ali Saidi232134a2005-03-09 15:52:10 -0500414SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400415renameFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
David Oehmke95c248c2004-02-05 12:16:17 -0500416{
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400417 string old_name;
David Oehmke95c248c2004-02-05 12:16:17 -0500418
Gabe Black3f722b92009-10-30 00:44:55 -0700419 int index = 0;
Andreas Hansson9e3c8de2012-02-24 11:45:30 -0500420 if (!tc->getMemProxy().tryReadString(old_name, p->getSyscallArg(tc, index)))
Ali Saidiad9b28f2005-03-10 14:20:12 -0500421 return -EFAULT;
David Oehmke95c248c2004-02-05 12:16:17 -0500422
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400423 string new_name;
David Oehmke95c248c2004-02-05 12:16:17 -0500424
Andreas Hansson9e3c8de2012-02-24 11:45:30 -0500425 if (!tc->getMemProxy().tryReadString(new_name, p->getSyscallArg(tc, index)))
Ali Saidiad9b28f2005-03-10 14:20:12 -0500426 return -EFAULT;
David Oehmke95c248c2004-02-05 12:16:17 -0500427
Nathan Binkert31d829d2006-11-16 12:43:11 -0800428 // Adjust path for current working directory
429 old_name = p->fullPath(old_name);
430 new_name = p->fullPath(new_name);
431
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400432 int64_t result = rename(old_name.c_str(), new_name.c_str());
Ali Saidiad9b28f2005-03-10 14:20:12 -0500433 return (result == -1) ? -errno : result;
David Oehmke95c248c2004-02-05 12:16:17 -0500434}
Steve Reinhardt79767942003-12-01 19:34:38 -0800435
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400436SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400437truncateFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400438{
439 string path;
440
Gabe Black3f722b92009-10-30 00:44:55 -0700441 int index = 0;
Andreas Hansson9e3c8de2012-02-24 11:45:30 -0500442 if (!tc->getMemProxy().tryReadString(path, p->getSyscallArg(tc, index)))
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400443 return -EFAULT;
444
Gabe Black3f722b92009-10-30 00:44:55 -0700445 off_t length = p->getSyscallArg(tc, index);
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400446
Nathan Binkert31d829d2006-11-16 12:43:11 -0800447 // Adjust path for current working directory
448 path = p->fullPath(path);
449
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400450 int result = truncate(path.c_str(), length);
451 return (result == -1) ? -errno : result;
452}
453
454SyscallReturn
Steve Reinhardt03b39252009-04-21 08:17:36 -0700455ftruncateFunc(SyscallDesc *desc, int num,
456 LiveProcess *process, ThreadContext *tc)
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400457{
Gabe Black3f722b92009-10-30 00:44:55 -0700458 int index = 0;
459 int fd = process->sim_fd(process->getSyscallArg(tc, index));
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400460
461 if (fd < 0)
462 return -EBADF;
463
Gabe Black3f722b92009-10-30 00:44:55 -0700464 off_t length = process->getSyscallArg(tc, index);
Steve Reinhardt22eccce2005-06-03 16:19:34 -0400465
466 int result = ftruncate(fd, length);
467 return (result == -1) ? -errno : result;
468}
Kevin Lim6da93ea2005-11-22 12:08:08 -0500469
470SyscallReturn
Vince Weaver9ad3aca2009-10-30 12:31:55 -0400471truncate64Func(SyscallDesc *desc, int num,
472 LiveProcess *process, ThreadContext *tc)
473{
474 int index = 0;
475 string path;
476
Andreas Hansson9e3c8de2012-02-24 11:45:30 -0500477 if (!tc->getMemProxy().tryReadString(path, process->getSyscallArg(tc, index)))
Vince Weaver9ad3aca2009-10-30 12:31:55 -0400478 return -EFAULT;
479
Ali Saidi4e9ce182009-11-14 11:49:01 -0600480 int64_t length = process->getSyscallArg(tc, index, 64);
Vince Weaver9ad3aca2009-10-30 12:31:55 -0400481
482 // Adjust path for current working directory
483 path = process->fullPath(path);
484
Ali Saidi4e9ce182009-11-14 11:49:01 -0600485#if NO_STAT64
486 int result = truncate(path.c_str(), length);
487#else
Vince Weaver9ad3aca2009-10-30 12:31:55 -0400488 int result = truncate64(path.c_str(), length);
Ali Saidi4e9ce182009-11-14 11:49:01 -0600489#endif
Vince Weaver9ad3aca2009-10-30 12:31:55 -0400490 return (result == -1) ? -errno : result;
491}
492
493SyscallReturn
Timothy M. Jonesc32d9192009-10-24 10:53:58 -0700494ftruncate64Func(SyscallDesc *desc, int num,
495 LiveProcess *process, ThreadContext *tc)
496{
Gabe Black3f722b92009-10-30 00:44:55 -0700497 int index = 0;
498 int fd = process->sim_fd(process->getSyscallArg(tc, index));
Timothy M. Jonesc32d9192009-10-24 10:53:58 -0700499
500 if (fd < 0)
501 return -EBADF;
502
Ali Saidi4e9ce182009-11-14 11:49:01 -0600503 int64_t length = process->getSyscallArg(tc, index, 64);
Timothy M. Jonesc32d9192009-10-24 10:53:58 -0700504
Ali Saidi4e9ce182009-11-14 11:49:01 -0600505#if NO_STAT64
506 int result = ftruncate(fd, length);
507#else
Timothy M. Jonesc32d9192009-10-24 10:53:58 -0700508 int result = ftruncate64(fd, length);
Ali Saidi4e9ce182009-11-14 11:49:01 -0600509#endif
Timothy M. Jonesc32d9192009-10-24 10:53:58 -0700510 return (result == -1) ? -errno : result;
511}
512
513SyscallReturn
Michael Adler2cd04fd2008-07-23 14:41:33 -0700514umaskFunc(SyscallDesc *desc, int num, LiveProcess *process, ThreadContext *tc)
515{
516 // Letting the simulated program change the simulator's umask seems like
517 // a bad idea. Compromise by just returning the current umask but not
518 // changing anything.
519 mode_t oldMask = umask(0);
520 umask(oldMask);
Nathan Binkert678abbc2008-08-03 18:19:53 -0700521 return (int)oldMask;
Michael Adler2cd04fd2008-07-23 14:41:33 -0700522}
523
524SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400525chownFunc(SyscallDesc *desc, int num, LiveProcess *p, ThreadContext *tc)
Kevin Lim6da93ea2005-11-22 12:08:08 -0500526{
527 string path;
528
Gabe Black3f722b92009-10-30 00:44:55 -0700529 int index = 0;
Andreas Hansson9e3c8de2012-02-24 11:45:30 -0500530 if (!tc->getMemProxy().tryReadString(path, p->getSyscallArg(tc, index)))
Kevin Lim6da93ea2005-11-22 12:08:08 -0500531 return -EFAULT;
532
533 /* XXX endianess */
Gabe Black3f722b92009-10-30 00:44:55 -0700534 uint32_t owner = p->getSyscallArg(tc, index);
Kevin Lim6da93ea2005-11-22 12:08:08 -0500535 uid_t hostOwner = owner;
Gabe Black3f722b92009-10-30 00:44:55 -0700536 uint32_t group = p->getSyscallArg(tc, index);
Kevin Lim6da93ea2005-11-22 12:08:08 -0500537 gid_t hostGroup = group;
538
Nathan Binkert31d829d2006-11-16 12:43:11 -0800539 // Adjust path for current working directory
540 path = p->fullPath(path);
541
Kevin Lim6da93ea2005-11-22 12:08:08 -0500542 int result = chown(path.c_str(), hostOwner, hostGroup);
543 return (result == -1) ? -errno : result;
544}
545
546SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400547fchownFunc(SyscallDesc *desc, int num, LiveProcess *process, ThreadContext *tc)
Kevin Lim6da93ea2005-11-22 12:08:08 -0500548{
Gabe Black3f722b92009-10-30 00:44:55 -0700549 int index = 0;
550 int fd = process->sim_fd(process->getSyscallArg(tc, index));
Kevin Lim6da93ea2005-11-22 12:08:08 -0500551
552 if (fd < 0)
553 return -EBADF;
554
555 /* XXX endianess */
Gabe Black3f722b92009-10-30 00:44:55 -0700556 uint32_t owner = process->getSyscallArg(tc, index);
Kevin Lim6da93ea2005-11-22 12:08:08 -0500557 uid_t hostOwner = owner;
Gabe Black3f722b92009-10-30 00:44:55 -0700558 uint32_t group = process->getSyscallArg(tc, index);
Kevin Lim6da93ea2005-11-22 12:08:08 -0500559 gid_t hostGroup = group;
560
561 int result = fchown(fd, hostOwner, hostGroup);
562 return (result == -1) ? -errno : result;
563}
Ali Saidi53d2c932006-02-18 23:44:22 -0500564
565
566SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400567dupFunc(SyscallDesc *desc, int num, LiveProcess *process, ThreadContext *tc)
Steve Reinhardtc5384362006-08-28 07:39:56 -0700568{
Gabe Black3f722b92009-10-30 00:44:55 -0700569 int index = 0;
570 int fd = process->sim_fd(process->getSyscallArg(tc, index));
Steve Reinhardtc5384362006-08-28 07:39:56 -0700571 if (fd < 0)
572 return -EBADF;
573
Gabe Black3f722b92009-10-30 00:44:55 -0700574 Process::FdMap *fdo = process->sim_fd_obj(fd);
Rick Strong376c7282007-11-29 00:22:46 -0500575
Steve Reinhardtc5384362006-08-28 07:39:56 -0700576 int result = dup(fd);
Steve Reinhardt03b39252009-04-21 08:17:36 -0700577 return (result == -1) ? -errno :
578 process->alloc_fd(result, fdo->filename, fdo->flags, fdo->mode, false);
Steve Reinhardtc5384362006-08-28 07:39:56 -0700579}
580
581
582SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400583fcntlFunc(SyscallDesc *desc, int num, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400584 ThreadContext *tc)
Ali Saidi53d2c932006-02-18 23:44:22 -0500585{
Gabe Black3f722b92009-10-30 00:44:55 -0700586 int index = 0;
587 int fd = process->getSyscallArg(tc, index);
Ali Saidi53d2c932006-02-18 23:44:22 -0500588
589 if (fd < 0 || process->sim_fd(fd) < 0)
590 return -EBADF;
591
Gabe Black3f722b92009-10-30 00:44:55 -0700592 int cmd = process->getSyscallArg(tc, index);
Ali Saidi53d2c932006-02-18 23:44:22 -0500593 switch (cmd) {
594 case 0: // F_DUPFD
595 // if we really wanted to support this, we'd need to do it
596 // in the target fd space.
597 warn("fcntl(%d, F_DUPFD) not supported, error returned\n", fd);
598 return -EMFILE;
599
600 case 1: // F_GETFD (get close-on-exec flag)
601 case 2: // F_SETFD (set close-on-exec flag)
602 return 0;
603
604 case 3: // F_GETFL (get file flags)
605 case 4: // F_SETFL (set file flags)
606 // not sure if this is totally valid, but we'll pass it through
607 // to the underlying OS
608 warn("fcntl(%d, %d) passed through to host\n", fd, cmd);
609 return fcntl(process->sim_fd(fd), cmd);
610 // return 0;
611
612 case 7: // F_GETLK (get lock)
613 case 8: // F_SETLK (set lock)
614 case 9: // F_SETLKW (set lock and wait)
615 // don't mess with file locking... just act like it's OK
616 warn("File lock call (fcntl(%d, %d)) ignored.\n", fd, cmd);
617 return 0;
618
619 default:
620 warn("Unknown fcntl command %d\n", cmd);
621 return 0;
622 }
623}
624
Ali Saidice3a6342006-03-09 15:42:09 -0500625SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400626fcntl64Func(SyscallDesc *desc, int num, LiveProcess *process,
Korey Sewell4cc31e12006-06-09 17:07:13 -0400627 ThreadContext *tc)
628{
Gabe Black3f722b92009-10-30 00:44:55 -0700629 int index = 0;
630 int fd = process->getSyscallArg(tc, index);
Korey Sewell4cc31e12006-06-09 17:07:13 -0400631
632 if (fd < 0 || process->sim_fd(fd) < 0)
633 return -EBADF;
634
Gabe Black3f722b92009-10-30 00:44:55 -0700635 int cmd = process->getSyscallArg(tc, index);
Korey Sewell4cc31e12006-06-09 17:07:13 -0400636 switch (cmd) {
637 case 33: //F_GETLK64
638 warn("fcntl64(%d, F_GETLK64) not supported, error returned\n", fd);
639 return -EMFILE;
640
641 case 34: // F_SETLK64
642 case 35: // F_SETLKW64
643 warn("fcntl64(%d, F_SETLK(W)64) not supported, error returned\n", fd);
644 return -EMFILE;
645
646 default:
647 // not sure if this is totally valid, but we'll pass it through
648 // to the underlying OS
649 warn("fcntl64(%d, %d) passed through to host\n", fd, cmd);
650 return fcntl(process->sim_fd(fd), cmd);
651 // return 0;
652 }
653}
654
655SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400656pipePseudoFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400657 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500658{
659 int fds[2], sim_fds[2];
660 int pipe_retval = pipe(fds);
661
662 if (pipe_retval < 0) {
663 // error
664 return pipe_retval;
665 }
666
Rick Strong376c7282007-11-29 00:22:46 -0500667 sim_fds[0] = process->alloc_fd(fds[0], "PIPE-READ", O_WRONLY, -1, true);
668 sim_fds[1] = process->alloc_fd(fds[1], "PIPE-WRITE", O_RDONLY, -1, true);
Ali Saidice3a6342006-03-09 15:42:09 -0500669
Rick Strong376c7282007-11-29 00:22:46 -0500670 process->setReadPipeSource(sim_fds[0], sim_fds[1]);
Ali Saidice3a6342006-03-09 15:42:09 -0500671 // Alpha Linux convention for pipe() is that fd[0] is returned as
672 // the return value of the function, and fd[1] is returned in r20.
Kevin Limeb0e4162006-06-06 17:32:21 -0400673 tc->setIntReg(SyscallPseudoReturnReg, sim_fds[1]);
Ali Saidice3a6342006-03-09 15:42:09 -0500674 return sim_fds[0];
675}
676
677
678SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400679getpidPseudoFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400680 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500681{
682 // Make up a PID. There's no interprocess communication in
683 // fake_syscall mode, so there's no way for a process to know it's
684 // not getting a unique value.
685
Gabe Black30b87e92006-09-17 03:00:55 -0400686 tc->setIntReg(SyscallPseudoReturnReg, process->ppid());
687 return process->pid();
Ali Saidice3a6342006-03-09 15:42:09 -0500688}
689
690
691SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400692getuidPseudoFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400693 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500694{
695 // Make up a UID and EUID... it shouldn't matter, and we want the
696 // simulation to be deterministic.
697
698 // EUID goes in r20.
Gabe Black30b87e92006-09-17 03:00:55 -0400699 tc->setIntReg(SyscallPseudoReturnReg, process->euid()); //EUID
Ali Saidi3a3e3562008-09-10 14:26:15 -0400700 return process->uid(); // UID
Ali Saidice3a6342006-03-09 15:42:09 -0500701}
702
703
704SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400705getgidPseudoFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400706 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500707{
708 // Get current group ID. EGID goes in r20.
Gabe Black30b87e92006-09-17 03:00:55 -0400709 tc->setIntReg(SyscallPseudoReturnReg, process->egid()); //EGID
710 return process->gid();
Ali Saidice3a6342006-03-09 15:42:09 -0500711}
712
713
714SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400715setuidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400716 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500717{
718 // can't fathom why a benchmark would call this.
Gabe Black3f722b92009-10-30 00:44:55 -0700719 int index = 0;
720 warn("Ignoring call to setuid(%d)\n", process->getSyscallArg(tc, index));
Ali Saidice3a6342006-03-09 15:42:09 -0500721 return 0;
722}
723
724SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400725getpidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400726 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500727{
728 // Make up a PID. There's no interprocess communication in
729 // fake_syscall mode, so there's no way for a process to know it's
730 // not getting a unique value.
731
Gabe Black30b87e92006-09-17 03:00:55 -0400732 tc->setIntReg(SyscallPseudoReturnReg, process->ppid()); //PID
733 return process->pid();
Ali Saidice3a6342006-03-09 15:42:09 -0500734}
735
736SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400737getppidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400738 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500739{
Gabe Black30b87e92006-09-17 03:00:55 -0400740 return process->ppid();
Ali Saidice3a6342006-03-09 15:42:09 -0500741}
742
743SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400744getuidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400745 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500746{
Ali Saidi3a3e3562008-09-10 14:26:15 -0400747 return process->uid(); // UID
Ali Saidice3a6342006-03-09 15:42:09 -0500748}
749
750SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400751geteuidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400752 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500753{
Ali Saidi3a3e3562008-09-10 14:26:15 -0400754 return process->euid(); // UID
Ali Saidice3a6342006-03-09 15:42:09 -0500755}
756
757SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400758getgidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400759 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500760{
Gabe Black30b87e92006-09-17 03:00:55 -0400761 return process->gid();
Ali Saidice3a6342006-03-09 15:42:09 -0500762}
763
764SyscallReturn
Gabe Black30b87e92006-09-17 03:00:55 -0400765getegidFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
Kevin Limeb0e4162006-06-06 17:32:21 -0400766 ThreadContext *tc)
Ali Saidice3a6342006-03-09 15:42:09 -0500767{
Gabe Black30b87e92006-09-17 03:00:55 -0400768 return process->egid();
Ali Saidice3a6342006-03-09 15:42:09 -0500769}
770
Ali Saidi53d2c932006-02-18 23:44:22 -0500771
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700772SyscallReturn
773cloneFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
774 ThreadContext *tc)
775{
Gabe Black3f722b92009-10-30 00:44:55 -0700776 int index = 0;
777 IntReg flags = process->getSyscallArg(tc, index);
778 IntReg newStack = process->getSyscallArg(tc, index);
779
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700780 DPRINTF(SyscallVerbose, "In sys_clone:\n");
Gabe Black3f722b92009-10-30 00:44:55 -0700781 DPRINTF(SyscallVerbose, " Flags=%llx\n", flags);
782 DPRINTF(SyscallVerbose, " Child stack=%llx\n", newStack);
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700783
784
Gabe Black3f722b92009-10-30 00:44:55 -0700785 if (flags != 0x10f00) {
Steve Reinhardt03b39252009-04-21 08:17:36 -0700786 warn("This sys_clone implementation assumes flags "
787 "CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD "
788 "(0x10f00), and may not work correctly with given flags "
Gabe Black3f722b92009-10-30 00:44:55 -0700789 "0x%llx\n", flags);
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700790 }
791
Steve Reinhardt03b39252009-04-21 08:17:36 -0700792 ThreadContext* ctc; // child thread context
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700793 if ( ( ctc = process->findFreeContext() ) != NULL ) {
794 DPRINTF(SyscallVerbose, " Found unallocated thread context\n");
795
796 ctc->clearArchRegs();
797
Steve Reinhardt03b39252009-04-21 08:17:36 -0700798 // Arch-specific cloning code
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700799 #if THE_ISA == ALPHA_ISA or THE_ISA == X86_ISA
Steve Reinhardt03b39252009-04-21 08:17:36 -0700800 // Cloning the misc. regs for these archs is enough
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700801 TheISA::copyMiscRegs(tc, ctc);
802 #elif THE_ISA == SPARC_ISA
803 TheISA::copyRegs(tc, ctc);
804
Steve Reinhardt03b39252009-04-21 08:17:36 -0700805 // TODO: Explain what this code actually does :-)
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700806 ctc->setIntReg(NumIntArchRegs + 6, 0);
807 ctc->setIntReg(NumIntArchRegs + 4, 0);
808 ctc->setIntReg(NumIntArchRegs + 3, NWindows - 2);
809 ctc->setIntReg(NumIntArchRegs + 5, NWindows);
Gabe Black64fe7af2009-07-10 01:01:47 -0700810 ctc->setMiscReg(MISCREG_CWP, 0);
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700811 ctc->setIntReg(NumIntArchRegs + 7, 0);
812 ctc->setMiscRegNoEffect(MISCREG_TL, 0);
813 ctc->setMiscRegNoEffect(MISCREG_ASI, ASI_PRIMARY);
814
815 for (int y = 8; y < 32; y++)
816 ctc->setIntReg(y, tc->readIntReg(y));
Chris Emmonsccaaa982011-03-17 19:20:20 -0500817 #elif THE_ISA == ARM_ISA
818 TheISA::copyRegs(tc, ctc);
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700819 #else
820 fatal("sys_clone is not implemented for this ISA\n");
821 #endif
822
Steve Reinhardt03b39252009-04-21 08:17:36 -0700823 // Set up stack register
Gabe Black3f722b92009-10-30 00:44:55 -0700824 ctc->setIntReg(TheISA::StackPointerReg, newStack);
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700825
Steve Reinhardt03b39252009-04-21 08:17:36 -0700826 // Set up syscall return values in parent and child
827 ctc->setIntReg(ReturnValueReg, 0); // return value, child
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700828
Steve Reinhardt03b39252009-04-21 08:17:36 -0700829 // Alpha needs SyscallSuccessReg=0 in child
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700830 #if THE_ISA == ALPHA_ISA
Steve Reinhardt52b67642009-04-21 08:17:36 -0700831 ctc->setIntReg(TheISA::SyscallSuccessReg, 0);
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700832 #endif
833
Steve Reinhardt03b39252009-04-21 08:17:36 -0700834 // In SPARC/Linux, clone returns 0 on pseudo-return register if
835 // parent, non-zero if child
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700836 #if THE_ISA == SPARC_ISA
837 tc->setIntReg(TheISA::SyscallPseudoReturnReg, 0);
838 ctc->setIntReg(TheISA::SyscallPseudoReturnReg, 1);
839 #endif
840
Gabe Black6f4bd2c2010-10-31 00:07:20 -0700841 ctc->pcState(tc->nextInstAddr());
Daniel Sanchezb0e96542009-04-21 08:17:36 -0700842
843 ctc->activate();
844
845 // Should return nonzero child TID in parent's syscall return register,
846 // but for our pthread library any non-zero value will work
847 return 1;
848 } else {
849 fatal("Called sys_clone, but no unallocated thread contexts found!\n");
850 return 0;
851 }
852}
853