syscall_emul.cc revision 3079
1360SN/A/*
21458SN/A * Copyright (c) 2003-2005 The Regents of The University of Michigan
3360SN/A * All rights reserved.
4360SN/A *
5360SN/A * Redistribution and use in source and binary forms, with or without
6360SN/A * modification, are permitted provided that the following conditions are
7360SN/A * met: redistributions of source code must retain the above copyright
8360SN/A * notice, this list of conditions and the following disclaimer;
9360SN/A * redistributions in binary form must reproduce the above copyright
10360SN/A * notice, this list of conditions and the following disclaimer in the
11360SN/A * documentation and/or other materials provided with the distribution;
12360SN/A * neither the name of the copyright holders nor the names of its
13360SN/A * contributors may be used to endorse or promote products derived from
14360SN/A * this software without specific prior written permission.
15360SN/A *
16360SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17360SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18360SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19360SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20360SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21360SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22360SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23360SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24360SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25360SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26360SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Steve Reinhardt
292665Ssaidi@eecs.umich.edu *          Ali Saidi
30360SN/A */
31360SN/A
322093SN/A#include <fcntl.h>
33360SN/A#include <unistd.h>
34360SN/A
35360SN/A#include <string>
36360SN/A#include <iostream>
37360SN/A
38360SN/A#include "sim/syscall_emul.hh"
392474SN/A#include "base/chunk_generator.hh"
40360SN/A#include "base/trace.hh"
412680Sktlim@umich.edu#include "cpu/thread_context.hh"
421717SN/A#include "cpu/base.hh"
432474SN/A#include "mem/page_table.hh"
44360SN/A#include "sim/process.hh"
45360SN/A
462667Sstever@eecs.umich.edu#include "sim/sim_exit.hh"
47360SN/A
48360SN/Ausing namespace std;
492107SN/Ausing namespace TheISA;
50360SN/A
51360SN/Avoid
522680Sktlim@umich.eduSyscallDesc::doSyscall(int callnum, Process *process, ThreadContext *tc)
53360SN/A{
542495SN/A    DPRINTFR(SyscallVerbose, "%d: %s: syscall %s called w/arguments %d,%d,%d,%d\n",
552680Sktlim@umich.edu             curTick,tc->getCpuPtr()->name(), name,
562680Sktlim@umich.edu             tc->getSyscallArg(0),tc->getSyscallArg(1),
572680Sktlim@umich.edu             tc->getSyscallArg(2),tc->getSyscallArg(3));
58360SN/A
592680Sktlim@umich.edu    SyscallReturn retval = (*funcPtr)(this, callnum, process, tc);
60360SN/A
612495SN/A    DPRINTFR(SyscallVerbose, "%d: %s: syscall %s returns %d\n",
622680Sktlim@umich.edu             curTick,tc->getCpuPtr()->name(), name, retval.value());
63360SN/A
641450SN/A    if (!(flags & SyscallDesc::SuppressReturnValue))
652680Sktlim@umich.edu        tc->setSyscallReturn(retval);
66360SN/A}
67360SN/A
68360SN/A
691450SN/ASyscallReturn
70360SN/AunimplementedFunc(SyscallDesc *desc, int callnum, Process *process,
712680Sktlim@umich.edu                  ThreadContext *tc)
72360SN/A{
731969SN/A    fatal("syscall %s (#%d) unimplemented.", desc->name, callnum);
742484SN/A
752484SN/A    return 1;
76360SN/A}
77360SN/A
78360SN/A
791450SN/ASyscallReturn
80360SN/AignoreFunc(SyscallDesc *desc, int callnum, Process *process,
812680Sktlim@umich.edu           ThreadContext *tc)
82360SN/A{
831969SN/A    warn("ignoring syscall %s(%d, %d, ...)", desc->name,
842680Sktlim@umich.edu         tc->getSyscallArg(0), tc->getSyscallArg(1));
85360SN/A
861458SN/A    return 0;
87360SN/A}
88360SN/A
89360SN/A
901450SN/ASyscallReturn
91360SN/AexitFunc(SyscallDesc *desc, int callnum, Process *process,
922680Sktlim@umich.edu         ThreadContext *tc)
93360SN/A{
942834Sksewell@umich.edu    if (tc->exit()) {
952834Sksewell@umich.edu        exitSimLoop("target called exit()", tc->getSyscallArg(0) & 0xff);
962834Sksewell@umich.edu    }
97360SN/A
981458SN/A    return 1;
99360SN/A}
100360SN/A
101360SN/A
1021450SN/ASyscallReturn
1032680Sktlim@umich.edugetpagesizeFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
104360SN/A{
1052107SN/A    return (int)VMPageSize;
106360SN/A}
107360SN/A
108360SN/A
1091450SN/ASyscallReturn
1102680Sktlim@umich.eduobreakFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
111360SN/A{
1122474SN/A    Addr junk;
1132474SN/A
114360SN/A    // change brk addr to first arg
1152680Sktlim@umich.edu    Addr new_brk = tc->getSyscallArg(0);
1162474SN/A    if (new_brk != 0) {
1172474SN/A        for (ChunkGenerator gen(p->brk_point, new_brk - p->brk_point,
1182474SN/A                                VMPageSize); !gen.done(); gen.next()) {
1192474SN/A            if (!p->pTable->translate(gen.addr(), junk))
1202474SN/A                p->pTable->allocate(roundDown(gen.addr(), VMPageSize),
1212474SN/A                                    VMPageSize);
1222474SN/A        }
1232474SN/A        p->brk_point = new_brk;
1241450SN/A    }
1251458SN/A    DPRINTF(SyscallVerbose, "Break Point changed to: %#X\n", p->brk_point);
1261458SN/A    return p->brk_point;
127360SN/A}
128360SN/A
129360SN/A
1301450SN/ASyscallReturn
1312680Sktlim@umich.educloseFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
132360SN/A{
1332680Sktlim@umich.edu    int target_fd = tc->getSyscallArg(0);
1341970SN/A    int status = close(p->sim_fd(target_fd));
1351970SN/A    if (status >= 0)
1361970SN/A        p->free_fd(target_fd);
1371970SN/A    return status;
138360SN/A}
139360SN/A
140360SN/A
1411450SN/ASyscallReturn
1422680Sktlim@umich.edureadFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
143360SN/A{
1442680Sktlim@umich.edu    int fd = p->sim_fd(tc->getSyscallArg(0));
1452680Sktlim@umich.edu    int nbytes = tc->getSyscallArg(2);
1462680Sktlim@umich.edu    BufferArg bufArg(tc->getSyscallArg(1), nbytes);
147360SN/A
148360SN/A    int bytes_read = read(fd, bufArg.bufferPtr(), nbytes);
149360SN/A
150360SN/A    if (bytes_read != -1)
1512680Sktlim@umich.edu        bufArg.copyOut(tc->getMemPort());
152360SN/A
1531458SN/A    return bytes_read;
154360SN/A}
155360SN/A
1561450SN/ASyscallReturn
1572680Sktlim@umich.eduwriteFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
158360SN/A{
1592680Sktlim@umich.edu    int fd = p->sim_fd(tc->getSyscallArg(0));
1602680Sktlim@umich.edu    int nbytes = tc->getSyscallArg(2);
1612680Sktlim@umich.edu    BufferArg bufArg(tc->getSyscallArg(1), nbytes);
162360SN/A
1632680Sktlim@umich.edu    bufArg.copyIn(tc->getMemPort());
164360SN/A
165360SN/A    int bytes_written = write(fd, bufArg.bufferPtr(), nbytes);
166360SN/A
167360SN/A    fsync(fd);
168360SN/A
1691458SN/A    return bytes_written;
170360SN/A}
171360SN/A
172360SN/A
1731450SN/ASyscallReturn
1742680Sktlim@umich.edulseekFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
175360SN/A{
1762680Sktlim@umich.edu    int fd = p->sim_fd(tc->getSyscallArg(0));
1772680Sktlim@umich.edu    uint64_t offs = tc->getSyscallArg(1);
1782680Sktlim@umich.edu    int whence = tc->getSyscallArg(2);
179360SN/A
180360SN/A    off_t result = lseek(fd, offs, whence);
181360SN/A
1821458SN/A    return (result == (off_t)-1) ? -errno : result;
183360SN/A}
184360SN/A
185360SN/A
1861450SN/ASyscallReturn
1872680Sktlim@umich.edumunmapFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
188360SN/A{
189360SN/A    // given that we don't really implement mmap, munmap is really easy
1901458SN/A    return 0;
191360SN/A}
192360SN/A
193360SN/A
194360SN/Aconst char *hostname = "m5.eecs.umich.edu";
195360SN/A
1961450SN/ASyscallReturn
1972680Sktlim@umich.edugethostnameFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
198360SN/A{
1992680Sktlim@umich.edu    int name_len = tc->getSyscallArg(1);
2002680Sktlim@umich.edu    BufferArg name(tc->getSyscallArg(0), name_len);
201360SN/A
202360SN/A    strncpy((char *)name.bufferPtr(), hostname, name_len);
203360SN/A
2042680Sktlim@umich.edu    name.copyOut(tc->getMemPort());
205360SN/A
2061458SN/A    return 0;
207360SN/A}
208360SN/A
2091450SN/ASyscallReturn
2102680Sktlim@umich.eduunlinkFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
211511SN/A{
2121706SN/A    string path;
213360SN/A
2142680Sktlim@umich.edu    if (!tc->getMemPort()->tryReadString(path, tc->getSyscallArg(0)))
2151450SN/A        return (TheISA::IntReg)-EFAULT;
216511SN/A
217511SN/A    int result = unlink(path.c_str());
2181458SN/A    return (result == -1) ? -errno : result;
219511SN/A}
220511SN/A
2211450SN/ASyscallReturn
2222680Sktlim@umich.edurenameFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
223511SN/A{
2241706SN/A    string old_name;
225511SN/A
2262680Sktlim@umich.edu    if (!tc->getMemPort()->tryReadString(old_name, tc->getSyscallArg(0)))
2271458SN/A        return -EFAULT;
228511SN/A
2291706SN/A    string new_name;
230511SN/A
2312680Sktlim@umich.edu    if (!tc->getMemPort()->tryReadString(new_name, tc->getSyscallArg(1)))
2321458SN/A        return -EFAULT;
233511SN/A
2341706SN/A    int64_t result = rename(old_name.c_str(), new_name.c_str());
2351458SN/A    return (result == -1) ? -errno : result;
236511SN/A}
237511SN/A
2381706SN/ASyscallReturn
2392680Sktlim@umich.edutruncateFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
2401706SN/A{
2411706SN/A    string path;
2421706SN/A
2432680Sktlim@umich.edu    if (!tc->getMemPort()->tryReadString(path, tc->getSyscallArg(0)))
2441706SN/A        return -EFAULT;
2451706SN/A
2462680Sktlim@umich.edu    off_t length = tc->getSyscallArg(1);
2471706SN/A
2481706SN/A    int result = truncate(path.c_str(), length);
2491706SN/A    return (result == -1) ? -errno : result;
2501706SN/A}
2511706SN/A
2521706SN/ASyscallReturn
2532680Sktlim@umich.eduftruncateFunc(SyscallDesc *desc, int num, Process *process, ThreadContext *tc)
2541706SN/A{
2552680Sktlim@umich.edu    int fd = process->sim_fd(tc->getSyscallArg(0));
2561706SN/A
2571706SN/A    if (fd < 0)
2581706SN/A        return -EBADF;
2591706SN/A
2602680Sktlim@umich.edu    off_t length = tc->getSyscallArg(1);
2611706SN/A
2621706SN/A    int result = ftruncate(fd, length);
2631706SN/A    return (result == -1) ? -errno : result;
2641706SN/A}
2651999SN/A
2661999SN/ASyscallReturn
2672680Sktlim@umich.educhownFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
2681999SN/A{
2691999SN/A    string path;
2701999SN/A
2712680Sktlim@umich.edu    if (!tc->getMemPort()->tryReadString(path, tc->getSyscallArg(0)))
2721999SN/A        return -EFAULT;
2731999SN/A
2741999SN/A    /* XXX endianess */
2752680Sktlim@umich.edu    uint32_t owner = tc->getSyscallArg(1);
2761999SN/A    uid_t hostOwner = owner;
2772680Sktlim@umich.edu    uint32_t group = tc->getSyscallArg(2);
2781999SN/A    gid_t hostGroup = group;
2791999SN/A
2801999SN/A    int result = chown(path.c_str(), hostOwner, hostGroup);
2811999SN/A    return (result == -1) ? -errno : result;
2821999SN/A}
2831999SN/A
2841999SN/ASyscallReturn
2852680Sktlim@umich.edufchownFunc(SyscallDesc *desc, int num, Process *process, ThreadContext *tc)
2861999SN/A{
2872680Sktlim@umich.edu    int fd = process->sim_fd(tc->getSyscallArg(0));
2881999SN/A
2891999SN/A    if (fd < 0)
2901999SN/A        return -EBADF;
2911999SN/A
2921999SN/A    /* XXX endianess */
2932680Sktlim@umich.edu    uint32_t owner = tc->getSyscallArg(1);
2941999SN/A    uid_t hostOwner = owner;
2952680Sktlim@umich.edu    uint32_t group = tc->getSyscallArg(2);
2961999SN/A    gid_t hostGroup = group;
2971999SN/A
2981999SN/A    int result = fchown(fd, hostOwner, hostGroup);
2991999SN/A    return (result == -1) ? -errno : result;
3001999SN/A}
3012093SN/A
3022093SN/A
3032093SN/ASyscallReturn
3043079Sstever@eecs.umich.edudupFunc(SyscallDesc *desc, int num, Process *process, ThreadContext *tc)
3053079Sstever@eecs.umich.edu{
3063079Sstever@eecs.umich.edu    int fd = process->sim_fd(tc->getSyscallArg(0));
3073079Sstever@eecs.umich.edu
3083079Sstever@eecs.umich.edu    if (fd < 0)
3093079Sstever@eecs.umich.edu        return -EBADF;
3103079Sstever@eecs.umich.edu
3113079Sstever@eecs.umich.edu    int result = dup(fd);
3123079Sstever@eecs.umich.edu    return (result == -1) ? -errno : process->alloc_fd(result);
3133079Sstever@eecs.umich.edu}
3143079Sstever@eecs.umich.edu
3153079Sstever@eecs.umich.edu
3163079Sstever@eecs.umich.eduSyscallReturn
3172093SN/AfcntlFunc(SyscallDesc *desc, int num, Process *process,
3182680Sktlim@umich.edu          ThreadContext *tc)
3192093SN/A{
3202680Sktlim@umich.edu    int fd = tc->getSyscallArg(0);
3212093SN/A
3222093SN/A    if (fd < 0 || process->sim_fd(fd) < 0)
3232093SN/A        return -EBADF;
3242093SN/A
3252680Sktlim@umich.edu    int cmd = tc->getSyscallArg(1);
3262093SN/A    switch (cmd) {
3272093SN/A      case 0: // F_DUPFD
3282093SN/A        // if we really wanted to support this, we'd need to do it
3292093SN/A        // in the target fd space.
3302093SN/A        warn("fcntl(%d, F_DUPFD) not supported, error returned\n", fd);
3312093SN/A        return -EMFILE;
3322093SN/A
3332093SN/A      case 1: // F_GETFD (get close-on-exec flag)
3342093SN/A      case 2: // F_SETFD (set close-on-exec flag)
3352093SN/A        return 0;
3362093SN/A
3372093SN/A      case 3: // F_GETFL (get file flags)
3382093SN/A      case 4: // F_SETFL (set file flags)
3392093SN/A        // not sure if this is totally valid, but we'll pass it through
3402093SN/A        // to the underlying OS
3412093SN/A        warn("fcntl(%d, %d) passed through to host\n", fd, cmd);
3422093SN/A        return fcntl(process->sim_fd(fd), cmd);
3432093SN/A        // return 0;
3442093SN/A
3452093SN/A      case 7: // F_GETLK  (get lock)
3462093SN/A      case 8: // F_SETLK  (set lock)
3472093SN/A      case 9: // F_SETLKW (set lock and wait)
3482093SN/A        // don't mess with file locking... just act like it's OK
3492093SN/A        warn("File lock call (fcntl(%d, %d)) ignored.\n", fd, cmd);
3502093SN/A        return 0;
3512093SN/A
3522093SN/A      default:
3532093SN/A        warn("Unknown fcntl command %d\n", cmd);
3542093SN/A        return 0;
3552093SN/A    }
3562093SN/A}
3572093SN/A
3582238SN/ASyscallReturn
3592687Sksewell@umich.edufcntl64Func(SyscallDesc *desc, int num, Process *process,
3602687Sksewell@umich.edu            ThreadContext *tc)
3612687Sksewell@umich.edu{
3622687Sksewell@umich.edu    int fd = tc->getSyscallArg(0);
3632687Sksewell@umich.edu
3642687Sksewell@umich.edu    if (fd < 0 || process->sim_fd(fd) < 0)
3652687Sksewell@umich.edu        return -EBADF;
3662687Sksewell@umich.edu
3672687Sksewell@umich.edu    int cmd = tc->getSyscallArg(1);
3682687Sksewell@umich.edu    switch (cmd) {
3692687Sksewell@umich.edu      case 33: //F_GETLK64
3702687Sksewell@umich.edu        warn("fcntl64(%d, F_GETLK64) not supported, error returned\n", fd);
3712687Sksewell@umich.edu        return -EMFILE;
3722687Sksewell@umich.edu
3732687Sksewell@umich.edu      case 34: // F_SETLK64
3742687Sksewell@umich.edu      case 35: // F_SETLKW64
3752687Sksewell@umich.edu        warn("fcntl64(%d, F_SETLK(W)64) not supported, error returned\n", fd);
3762687Sksewell@umich.edu        return -EMFILE;
3772687Sksewell@umich.edu
3782687Sksewell@umich.edu      default:
3792687Sksewell@umich.edu        // not sure if this is totally valid, but we'll pass it through
3802687Sksewell@umich.edu        // to the underlying OS
3812687Sksewell@umich.edu        warn("fcntl64(%d, %d) passed through to host\n", fd, cmd);
3822687Sksewell@umich.edu        return fcntl(process->sim_fd(fd), cmd);
3832687Sksewell@umich.edu        // return 0;
3842687Sksewell@umich.edu    }
3852687Sksewell@umich.edu}
3862687Sksewell@umich.edu
3872687Sksewell@umich.eduSyscallReturn
3882238SN/ApipePseudoFunc(SyscallDesc *desc, int callnum, Process *process,
3892680Sktlim@umich.edu         ThreadContext *tc)
3902238SN/A{
3912238SN/A    int fds[2], sim_fds[2];
3922238SN/A    int pipe_retval = pipe(fds);
3932093SN/A
3942238SN/A    if (pipe_retval < 0) {
3952238SN/A        // error
3962238SN/A        return pipe_retval;
3972238SN/A    }
3982238SN/A
3992238SN/A    sim_fds[0] = process->alloc_fd(fds[0]);
4002238SN/A    sim_fds[1] = process->alloc_fd(fds[1]);
4012238SN/A
4022238SN/A    // Alpha Linux convention for pipe() is that fd[0] is returned as
4032238SN/A    // the return value of the function, and fd[1] is returned in r20.
4042680Sktlim@umich.edu    tc->setIntReg(SyscallPseudoReturnReg, sim_fds[1]);
4052238SN/A    return sim_fds[0];
4062238SN/A}
4072238SN/A
4082238SN/A
4092238SN/ASyscallReturn
4102238SN/AgetpidPseudoFunc(SyscallDesc *desc, int callnum, Process *process,
4112680Sktlim@umich.edu           ThreadContext *tc)
4122238SN/A{
4132238SN/A    // Make up a PID.  There's no interprocess communication in
4142238SN/A    // fake_syscall mode, so there's no way for a process to know it's
4152238SN/A    // not getting a unique value.
4162238SN/A
4172680Sktlim@umich.edu    tc->setIntReg(SyscallPseudoReturnReg, 99);
4182238SN/A    return 100;
4192238SN/A}
4202238SN/A
4212238SN/A
4222238SN/ASyscallReturn
4232238SN/AgetuidPseudoFunc(SyscallDesc *desc, int callnum, Process *process,
4242680Sktlim@umich.edu           ThreadContext *tc)
4252238SN/A{
4262238SN/A    // Make up a UID and EUID... it shouldn't matter, and we want the
4272238SN/A    // simulation to be deterministic.
4282238SN/A
4292238SN/A    // EUID goes in r20.
4302680Sktlim@umich.edu    tc->setIntReg(SyscallPseudoReturnReg, 100); //EUID
4312238SN/A    return 100;		// UID
4322238SN/A}
4332238SN/A
4342238SN/A
4352238SN/ASyscallReturn
4362238SN/AgetgidPseudoFunc(SyscallDesc *desc, int callnum, Process *process,
4372680Sktlim@umich.edu           ThreadContext *tc)
4382238SN/A{
4392238SN/A    // Get current group ID.  EGID goes in r20.
4402680Sktlim@umich.edu    tc->setIntReg(SyscallPseudoReturnReg, 100); //EGID
4412238SN/A    return 100;
4422238SN/A}
4432238SN/A
4442238SN/A
4452238SN/ASyscallReturn
4462238SN/AsetuidFunc(SyscallDesc *desc, int callnum, Process *process,
4472680Sktlim@umich.edu           ThreadContext *tc)
4482238SN/A{
4492238SN/A    // can't fathom why a benchmark would call this.
4502680Sktlim@umich.edu    warn("Ignoring call to setuid(%d)\n", tc->getSyscallArg(0));
4512238SN/A    return 0;
4522238SN/A}
4532238SN/A
4542238SN/ASyscallReturn
4552238SN/AgetpidFunc(SyscallDesc *desc, int callnum, Process *process,
4562680Sktlim@umich.edu           ThreadContext *tc)
4572238SN/A{
4582238SN/A    // Make up a PID.  There's no interprocess communication in
4592238SN/A    // fake_syscall mode, so there's no way for a process to know it's
4602238SN/A    // not getting a unique value.
4612238SN/A
4622680Sktlim@umich.edu    tc->setIntReg(SyscallPseudoReturnReg, 99); //PID
4632238SN/A    return 100;
4642238SN/A}
4652238SN/A
4662238SN/ASyscallReturn
4672238SN/AgetppidFunc(SyscallDesc *desc, int callnum, Process *process,
4682680Sktlim@umich.edu           ThreadContext *tc)
4692238SN/A{
4702238SN/A    return 99;
4712238SN/A}
4722238SN/A
4732238SN/ASyscallReturn
4742238SN/AgetuidFunc(SyscallDesc *desc, int callnum, Process *process,
4752680Sktlim@umich.edu           ThreadContext *tc)
4762238SN/A{
4772238SN/A    return 100;		// UID
4782238SN/A}
4792238SN/A
4802238SN/ASyscallReturn
4812238SN/AgeteuidFunc(SyscallDesc *desc, int callnum, Process *process,
4822680Sktlim@umich.edu           ThreadContext *tc)
4832238SN/A{
4842238SN/A    return 100;		// UID
4852238SN/A}
4862238SN/A
4872238SN/ASyscallReturn
4882238SN/AgetgidFunc(SyscallDesc *desc, int callnum, Process *process,
4892680Sktlim@umich.edu           ThreadContext *tc)
4902238SN/A{
4912238SN/A    return 100;
4922238SN/A}
4932238SN/A
4942238SN/ASyscallReturn
4952238SN/AgetegidFunc(SyscallDesc *desc, int callnum, Process *process,
4962680Sktlim@umich.edu           ThreadContext *tc)
4972238SN/A{
4982238SN/A    return 100;
4992238SN/A}
5002238SN/A
5012238SN/A
502