syscall_emul.hh revision 12461:a4cb506cda74
18706Sandreas.hansson@arm.com/*
27586SAli.Saidi@arm.com * Copyright (c) 2012-2013, 2015 ARM Limited
37586SAli.Saidi@arm.com * Copyright (c) 2015 Advanced Micro Devices, Inc.
47586SAli.Saidi@arm.com * All rights reserved
57586SAli.Saidi@arm.com *
67586SAli.Saidi@arm.com * The license below extends only to copyright in the software and shall
77586SAli.Saidi@arm.com * not be construed as granting a license to any other intellectual
87586SAli.Saidi@arm.com * property including but not limited to intellectual property relating
97586SAli.Saidi@arm.com * to a hardware implementation of the functionality of the software
107586SAli.Saidi@arm.com * licensed hereunder.  You may use the software subject to the license
117586SAli.Saidi@arm.com * terms below provided that you ensure that this notice is replicated
127586SAli.Saidi@arm.com * unmodified and in its entirety in all distributions of the software,
137905SBrad.Beckmann@amd.com * modified or unmodified, in source code or in binary form.
145323Sgblack@eecs.umich.edu *
152934Sktlim@umich.edu * Copyright (c) 2003-2005 The Regents of The University of Michigan
162934Sktlim@umich.edu * All rights reserved.
172934Sktlim@umich.edu *
182934Sktlim@umich.edu * Redistribution and use in source and binary forms, with or without
192934Sktlim@umich.edu * modification, are permitted provided that the following conditions are
202934Sktlim@umich.edu * met: redistributions of source code must retain the above copyright
212934Sktlim@umich.edu * notice, this list of conditions and the following disclaimer;
222934Sktlim@umich.edu * redistributions in binary form must reproduce the above copyright
232934Sktlim@umich.edu * notice, this list of conditions and the following disclaimer in the
242934Sktlim@umich.edu * documentation and/or other materials provided with the distribution;
252934Sktlim@umich.edu * neither the name of the copyright holders nor the names of its
262934Sktlim@umich.edu * contributors may be used to endorse or promote products derived from
272934Sktlim@umich.edu * this software without specific prior written permission.
282934Sktlim@umich.edu *
292934Sktlim@umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
302934Sktlim@umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
312934Sktlim@umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
322934Sktlim@umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
332934Sktlim@umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
342934Sktlim@umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
352934Sktlim@umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
362934Sktlim@umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
372934Sktlim@umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
382934Sktlim@umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
392934Sktlim@umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
402934Sktlim@umich.edu *
412934Sktlim@umich.edu * Authors: Steve Reinhardt
422934Sktlim@umich.edu *          Kevin Lim
432995Ssaidi@eecs.umich.edu */
448528SAli.Saidi@ARM.com
452934Sktlim@umich.edu#ifndef __SIM_SYSCALL_EMUL_HH__
462934Sktlim@umich.edu#define __SIM_SYSCALL_EMUL_HH__
472934Sktlim@umich.edu
482934Sktlim@umich.edu#if (defined(__APPLE__) || defined(__OpenBSD__) ||      \
492934Sktlim@umich.edu     defined(__FreeBSD__) || defined(__CYGWIN__) ||     \
502934Sktlim@umich.edu     defined(__NetBSD__))
512934Sktlim@umich.edu#define NO_STAT64 1
522934Sktlim@umich.edu#else
536122SSteve.Reinhardt@amd.com#define NO_STAT64 0
546122SSteve.Reinhardt@amd.com#endif
556122SSteve.Reinhardt@amd.com
566122SSteve.Reinhardt@amd.com#if (defined(__APPLE__) || defined(__OpenBSD__) ||      \
576122SSteve.Reinhardt@amd.com     defined(__FreeBSD__) || defined(__NetBSD__))
584520Ssaidi@eecs.umich.edu#define NO_STATFS 1
598713Sandreas.hansson@arm.com#else
604520Ssaidi@eecs.umich.edu#define NO_STATFS 0
614982Ssaidi@eecs.umich.edu#endif
624520Ssaidi@eecs.umich.edu
634520Ssaidi@eecs.umich.edu#if (defined(__APPLE__) || defined(__OpenBSD__) ||      \
642934Sktlim@umich.edu     defined(__FreeBSD__) || defined(__NetBSD__))
652934Sktlim@umich.edu#define NO_FALLOCATE 1
663005Sstever@eecs.umich.edu#else
673005Sstever@eecs.umich.edu#define NO_FALLOCATE 0
683304Sstever@eecs.umich.edu#endif
692995Ssaidi@eecs.umich.edu
702934Sktlim@umich.edu///
716122SSteve.Reinhardt@amd.com/// @file syscall_emul.hh
728713Sandreas.hansson@arm.com///
738713Sandreas.hansson@arm.com/// This file defines objects used to emulate syscalls from the target
748713Sandreas.hansson@arm.com/// application on the host machine.
758713Sandreas.hansson@arm.com
765266Sksewell@umich.edu#ifdef __CYGWIN32__
778713Sandreas.hansson@arm.com#include <sys/fcntl.h>
788713Sandreas.hansson@arm.com
792934Sktlim@umich.edu#endif
802934Sktlim@umich.edu#include <fcntl.h>
812934Sktlim@umich.edu#include <sys/mman.h>
822995Ssaidi@eecs.umich.edu#include <sys/stat.h>
832934Sktlim@umich.edu#if (NO_STATFS == 0)
842934Sktlim@umich.edu#include <sys/statfs.h>
852934Sktlim@umich.edu#else
862934Sktlim@umich.edu#include <sys/mount.h>
878714Sandreas.hansson@arm.com#endif
888714Sandreas.hansson@arm.com#include <sys/time.h>
892934Sktlim@umich.edu#include <sys/uio.h>
908714Sandreas.hansson@arm.com#include <unistd.h>
918714Sandreas.hansson@arm.com
922995Ssaidi@eecs.umich.edu#include <cerrno>
932934Sktlim@umich.edu#include <memory>
942934Sktlim@umich.edu#include <string>
952953Sktlim@umich.edu
965478Snate@binkert.org#include "arch/generic/tlb.hh"
972934Sktlim@umich.edu#include "arch/utility.hh"
983449Shsul@eecs.umich.edu#include "base/intmath.hh"
992934Sktlim@umich.edu#include "base/loader/object_file.hh"
1002934Sktlim@umich.edu#include "base/logging.hh"
1012934Sktlim@umich.edu#include "base/trace.hh"
1028706Sandreas.hansson@arm.com#include "base/types.hh"
1038706Sandreas.hansson@arm.com#include "config/the_isa.hh"
1042934Sktlim@umich.edu#include "cpu/base.hh"
1052934Sktlim@umich.edu#include "cpu/thread_context.hh"
1067014SBrad.Beckmann@amd.com#include "mem/page_table.hh"
1076765SBrad.Beckmann@amd.com#include "params/Process.hh"
1086765SBrad.Beckmann@amd.com#include "sim/emul_driver.hh"
1096765SBrad.Beckmann@amd.com#include "sim/futex_map.hh"
1106765SBrad.Beckmann@amd.com#include "sim/process.hh"
1116765SBrad.Beckmann@amd.com#include "sim/syscall_debug_macros.hh"
1127014SBrad.Beckmann@amd.com#include "sim/syscall_desc.hh"
1137014SBrad.Beckmann@amd.com#include "sim/syscall_emul_buf.hh"
1146765SBrad.Beckmann@amd.com#include "sim/syscall_return.hh"
1156765SBrad.Beckmann@amd.com
1166765SBrad.Beckmann@amd.com//////////////////////////////////////////////////////////////////////
1176765SBrad.Beckmann@amd.com//
1186765SBrad.Beckmann@amd.com// The following emulation functions are generic enough that they
1196765SBrad.Beckmann@amd.com// don't need to be recompiled for different emulated OS's.  They are
1206765SBrad.Beckmann@amd.com// defined in sim/syscall_emul.cc.
1216893SBrad.Beckmann@amd.com//
1226893SBrad.Beckmann@amd.com//////////////////////////////////////////////////////////////////////
1236893SBrad.Beckmann@amd.com
1246893SBrad.Beckmann@amd.com
1256893SBrad.Beckmann@amd.com/// Handler for unimplemented syscalls that we haven't thought about.
1266893SBrad.Beckmann@amd.comSyscallReturn unimplementedFunc(SyscallDesc *desc, int num,
1277014SBrad.Beckmann@amd.com                                Process *p, ThreadContext *tc);
1286893SBrad.Beckmann@amd.com
1296765SBrad.Beckmann@amd.com/// Handler for unimplemented syscalls that we never intend to
1306765SBrad.Beckmann@amd.com/// implement (signal handling, etc.) and should not affect the correct
1316765SBrad.Beckmann@amd.com/// behavior of the program.  Print a warning only if the appropriate
1326765SBrad.Beckmann@amd.com/// trace flag is enabled.  Return success to the target program.
1336765SBrad.Beckmann@amd.comSyscallReturn ignoreFunc(SyscallDesc *desc, int num,
1346765SBrad.Beckmann@amd.com                         Process *p, ThreadContext *tc);
1356765SBrad.Beckmann@amd.com
1368714Sandreas.hansson@arm.com// Target fallocateFunc() handler.
1378714Sandreas.hansson@arm.comSyscallReturn fallocateFunc(SyscallDesc *desc, int num,
1386765SBrad.Beckmann@amd.com                            Process *p, ThreadContext *tc);
1398714Sandreas.hansson@arm.com
1408714Sandreas.hansson@arm.com/// Target exit() handler: terminate current context.
1416765SBrad.Beckmann@amd.comSyscallReturn exitFunc(SyscallDesc *desc, int num,
1426893SBrad.Beckmann@amd.com                       Process *p, ThreadContext *tc);
1437633SBrad.Beckmann@amd.com
1447633SBrad.Beckmann@amd.com/// Target exit_group() handler: terminate simulation. (exit all threads)
1456893SBrad.Beckmann@amd.comSyscallReturn exitGroupFunc(SyscallDesc *desc, int num,
1467633SBrad.Beckmann@amd.com                       Process *p, ThreadContext *tc);
1476765SBrad.Beckmann@amd.com
1486765SBrad.Beckmann@amd.com/// Target set_tid_address() handler.
1496765SBrad.Beckmann@amd.comSyscallReturn setTidAddressFunc(SyscallDesc *desc, int num,
1506765SBrad.Beckmann@amd.com                                Process *p, ThreadContext *tc);
1516765SBrad.Beckmann@amd.com
1526765SBrad.Beckmann@amd.com/// Target getpagesize() handler.
1536765SBrad.Beckmann@amd.comSyscallReturn getpagesizeFunc(SyscallDesc *desc, int num,
1546765SBrad.Beckmann@amd.com                              Process *p, ThreadContext *tc);
1556765SBrad.Beckmann@amd.com
1566765SBrad.Beckmann@amd.com/// Target brk() handler: set brk address.
1576765SBrad.Beckmann@amd.comSyscallReturn brkFunc(SyscallDesc *desc, int num,
1586765SBrad.Beckmann@amd.com                      Process *p, ThreadContext *tc);
1596765SBrad.Beckmann@amd.com
1603584Ssaidi@eecs.umich.edu/// Target close() handler.
1618713Sandreas.hansson@arm.comSyscallReturn closeFunc(SyscallDesc *desc, int num,
1628713Sandreas.hansson@arm.com                        Process *p, ThreadContext *tc);
1638713Sandreas.hansson@arm.com
1648713Sandreas.hansson@arm.com// Target read() handler.
1654486Sbinkertn@umich.eduSyscallReturn readFunc(SyscallDesc *desc, int num,
1664486Sbinkertn@umich.edu                       Process *p, ThreadContext *tc);
1674486Sbinkertn@umich.edu
1684486Sbinkertn@umich.edu/// Target write() handler.
1694486Sbinkertn@umich.eduSyscallReturn writeFunc(SyscallDesc *desc, int num,
1704486Sbinkertn@umich.edu                        Process *p, ThreadContext *tc);
1714486Sbinkertn@umich.edu
1723584Ssaidi@eecs.umich.edu/// Target lseek() handler.
1733584Ssaidi@eecs.umich.eduSyscallReturn lseekFunc(SyscallDesc *desc, int num,
1743584Ssaidi@eecs.umich.edu                        Process *p, ThreadContext *tc);
1753584Ssaidi@eecs.umich.edu
1763584Ssaidi@eecs.umich.edu/// Target _llseek() handler.
1773743Sgblack@eecs.umich.eduSyscallReturn _llseekFunc(SyscallDesc *desc, int num,
1786122SSteve.Reinhardt@amd.com                          Process *p, ThreadContext *tc);
1794972Ssaidi@eecs.umich.edu
1803743Sgblack@eecs.umich.edu/// Target munmap() handler.
1814104Ssaidi@eecs.umich.eduSyscallReturn munmapFunc(SyscallDesc *desc, int num,
1823743Sgblack@eecs.umich.edu                         Process *p, ThreadContext *tc);
1833823Ssaidi@eecs.umich.edu
1843814Ssaidi@eecs.umich.edu/// Target gethostname() handler.
1858713Sandreas.hansson@arm.comSyscallReturn gethostnameFunc(SyscallDesc *desc, int num,
1868713Sandreas.hansson@arm.com                              Process *p, ThreadContext *tc);
1873584Ssaidi@eecs.umich.edu
1883814Ssaidi@eecs.umich.edu/// Target getcwd() handler.
1893584Ssaidi@eecs.umich.eduSyscallReturn getcwdFunc(SyscallDesc *desc, int num,
1903745Sgblack@eecs.umich.edu                         Process *p, ThreadContext *tc);
1913745Sgblack@eecs.umich.edu
1923745Sgblack@eecs.umich.edu/// Target readlink() handler.
1933584Ssaidi@eecs.umich.eduSyscallReturn readlinkFunc(SyscallDesc *desc, int num,
1943898Ssaidi@eecs.umich.edu                           Process *p, ThreadContext *tc,
1953898Ssaidi@eecs.umich.edu                           int index = 0);
1963898Ssaidi@eecs.umich.eduSyscallReturn readlinkFunc(SyscallDesc *desc, int num,
1978713Sandreas.hansson@arm.com                           Process *p, ThreadContext *tc);
1988713Sandreas.hansson@arm.com
1998713Sandreas.hansson@arm.com/// Target unlink() handler.
2008713Sandreas.hansson@arm.comSyscallReturn unlinkHelper(SyscallDesc *desc, int num,
2018713Sandreas.hansson@arm.com                           Process *p, ThreadContext *tc,
2028713Sandreas.hansson@arm.com                           int index);
2038713Sandreas.hansson@arm.comSyscallReturn unlinkFunc(SyscallDesc *desc, int num,
2048713Sandreas.hansson@arm.com                         Process *p, ThreadContext *tc);
2058713Sandreas.hansson@arm.com
2068713Sandreas.hansson@arm.com/// Target mkdir() handler.
2078713Sandreas.hansson@arm.comSyscallReturn mkdirFunc(SyscallDesc *desc, int num,
2088713Sandreas.hansson@arm.com                        Process *p, ThreadContext *tc);
2098713Sandreas.hansson@arm.com
2108713Sandreas.hansson@arm.com/// Target rename() handler.
2118713Sandreas.hansson@arm.comSyscallReturn renameFunc(SyscallDesc *desc, int num,
2128713Sandreas.hansson@arm.com                         Process *p, ThreadContext *tc);
2138713Sandreas.hansson@arm.com
2148713Sandreas.hansson@arm.com
2158713Sandreas.hansson@arm.com/// Target truncate() handler.
2164103Ssaidi@eecs.umich.eduSyscallReturn truncateFunc(SyscallDesc *desc, int num,
2174103Ssaidi@eecs.umich.edu                           Process *p, ThreadContext *tc);
2184103Ssaidi@eecs.umich.edu
2193745Sgblack@eecs.umich.edu
2203745Sgblack@eecs.umich.edu/// Target ftruncate() handler.
2213745Sgblack@eecs.umich.eduSyscallReturn ftruncateFunc(SyscallDesc *desc, int num,
2223584Ssaidi@eecs.umich.edu                            Process *p, ThreadContext *tc);
2238706Sandreas.hansson@arm.com
2248706Sandreas.hansson@arm.com
2253584Ssaidi@eecs.umich.edu/// Target truncate64() handler.
2263584Ssaidi@eecs.umich.eduSyscallReturn truncate64Func(SyscallDesc *desc, int num,
2278061SAli.Saidi@ARM.com                             Process *p, ThreadContext *tc);
2288061SAli.Saidi@ARM.com
2298061SAli.Saidi@ARM.com/// Target ftruncate64() handler.
2307586SAli.Saidi@arm.comSyscallReturn ftruncate64Func(SyscallDesc *desc, int num,
2317586SAli.Saidi@arm.com                              Process *p, ThreadContext *tc);
2327586SAli.Saidi@arm.com
2337586SAli.Saidi@arm.com
2347586SAli.Saidi@arm.com/// Target umask() handler.
2357586SAli.Saidi@arm.comSyscallReturn umaskFunc(SyscallDesc *desc, int num,
2367586SAli.Saidi@arm.com                        Process *p, ThreadContext *tc);
2377586SAli.Saidi@arm.com
2387586SAli.Saidi@arm.com/// Target gettid() handler.
2397586SAli.Saidi@arm.comSyscallReturn gettidFunc(SyscallDesc *desc, int num,
2407586SAli.Saidi@arm.com                         Process *p, ThreadContext *tc);
2417586SAli.Saidi@arm.com
2427586SAli.Saidi@arm.com/// Target chown() handler.
2437586SAli.Saidi@arm.comSyscallReturn chownFunc(SyscallDesc *desc, int num,
2448713Sandreas.hansson@arm.com                        Process *p, ThreadContext *tc);
2458713Sandreas.hansson@arm.com
2467586SAli.Saidi@arm.com/// Target setpgid() handler.
2477586SAli.Saidi@arm.comSyscallReturn setpgidFunc(SyscallDesc *desc, int num,
2487586SAli.Saidi@arm.com                          Process *p, ThreadContext *tc);
2497586SAli.Saidi@arm.com
2507586SAli.Saidi@arm.com/// Target fchown() handler.
2517586SAli.Saidi@arm.comSyscallReturn fchownFunc(SyscallDesc *desc, int num,
2527586SAli.Saidi@arm.com                         Process *p, ThreadContext *tc);
2538525SAli.Saidi@ARM.com
2548525SAli.Saidi@ARM.com/// Target dup() handler.
2557586SAli.Saidi@arm.comSyscallReturn dupFunc(SyscallDesc *desc, int num,
2567586SAli.Saidi@arm.com                      Process *process, ThreadContext *tc);
2577586SAli.Saidi@arm.com
2587586SAli.Saidi@arm.com/// Target dup2() handler.
2598528SAli.Saidi@ARM.comSyscallReturn dup2Func(SyscallDesc *desc, int num,
2608528SAli.Saidi@ARM.com                       Process *process, ThreadContext *tc);
2618528SAli.Saidi@ARM.com
2628528SAli.Saidi@ARM.com/// Target fcntl() handler.
2638528SAli.Saidi@ARM.comSyscallReturn fcntlFunc(SyscallDesc *desc, int num,
2648528SAli.Saidi@ARM.com                        Process *process, ThreadContext *tc);
2658528SAli.Saidi@ARM.com
2668528SAli.Saidi@ARM.com/// Target fcntl64() handler.
2678528SAli.Saidi@ARM.comSyscallReturn fcntl64Func(SyscallDesc *desc, int num,
2688061SAli.Saidi@ARM.com                          Process *process, ThreadContext *tc);
2698061SAli.Saidi@ARM.com
2708061SAli.Saidi@ARM.com/// Target setuid() handler.
2718528SAli.Saidi@ARM.comSyscallReturn setuidFunc(SyscallDesc *desc, int num,
2728212SAli.Saidi@ARM.com                         Process *p, ThreadContext *tc);
2738061SAli.Saidi@ARM.com
2748528SAli.Saidi@ARM.com/// Target pipe() handler.
2757586SAli.Saidi@arm.comSyscallReturn pipeFunc(SyscallDesc *desc, int num,
2768528SAli.Saidi@ARM.com                       Process *p, ThreadContext *tc);
2778528SAli.Saidi@ARM.com
2788528SAli.Saidi@ARM.com/// Internal pipe() handler.
2798528SAli.Saidi@ARM.comSyscallReturn pipeImpl(SyscallDesc *desc, int num, Process *p,
2808528SAli.Saidi@ARM.com                       ThreadContext *tc, bool pseudoPipe);
2818212SAli.Saidi@ARM.com
2828528SAli.Saidi@ARM.com/// Target getpid() handler.
2838528SAli.Saidi@ARM.comSyscallReturn getpidFunc(SyscallDesc *desc, int num,
2848528SAli.Saidi@ARM.com                         Process *p, ThreadContext *tc);
2858528SAli.Saidi@ARM.com
2868528SAli.Saidi@ARM.com/// Target getuid() handler.
2878528SAli.Saidi@ARM.comSyscallReturn getuidFunc(SyscallDesc *desc, int num,
2888528SAli.Saidi@ARM.com                         Process *p, ThreadContext *tc);
2898528SAli.Saidi@ARM.com
2908528SAli.Saidi@ARM.com/// Target getgid() handler.
2918528SAli.Saidi@ARM.comSyscallReturn getgidFunc(SyscallDesc *desc, int num,
2928528SAli.Saidi@ARM.com                         Process *p, ThreadContext *tc);
2938287SAli.Saidi@ARM.com
2948643Satgutier@umich.edu/// Target getppid() handler.
2958595SAli.Saidi@ARM.comSyscallReturn getppidFunc(SyscallDesc *desc, int num,
2968212SAli.Saidi@ARM.com                          Process *p, ThreadContext *tc);
2977586SAli.Saidi@arm.com
2988145SAli.Saidi@ARM.com/// Target geteuid() handler.
2998713Sandreas.hansson@arm.comSyscallReturn geteuidFunc(SyscallDesc *desc, int num,
3007586SAli.Saidi@arm.com                          Process *p, ThreadContext *tc);
3017586SAli.Saidi@arm.com
3027586SAli.Saidi@arm.com/// Target getegid() handler.
3037949SAli.Saidi@ARM.comSyscallReturn getegidFunc(SyscallDesc *desc, int num,
3047586SAli.Saidi@arm.com                          Process *p, ThreadContext *tc);
3058706Sandreas.hansson@arm.com
3068706Sandreas.hansson@arm.com/// Target access() handler
3077586SAli.Saidi@arm.comSyscallReturn accessFunc(SyscallDesc *desc, int num,
3087586SAli.Saidi@arm.com                         Process *p, ThreadContext *tc);
3097586SAli.Saidi@arm.comSyscallReturn accessFunc(SyscallDesc *desc, int num,
3105222Sksewell@umich.edu                         Process *p, ThreadContext *tc,
3115222Sksewell@umich.edu                         int index);
3125222Sksewell@umich.edu
3135222Sksewell@umich.edu/// Futex system call
3145222Sksewell@umich.edu/// Implemented by Daniel Sanchez
3155222Sksewell@umich.edu/// Used by printf's in multi-threaded apps
3165222Sksewell@umich.edutemplate <class OS>
3175222Sksewell@umich.eduSyscallReturn
3185222Sksewell@umich.edufutexFunc(SyscallDesc *desc, int callnum, Process *process,
3195222Sksewell@umich.edu          ThreadContext *tc)
3205222Sksewell@umich.edu{
3215222Sksewell@umich.edu    using namespace std;
3226122SSteve.Reinhardt@amd.com
3235222Sksewell@umich.edu    int index = 0;
3245222Sksewell@umich.edu    Addr uaddr = process->getSyscallArg(tc, index);
3258713Sandreas.hansson@arm.com    int op = process->getSyscallArg(tc, index);
3268713Sandreas.hansson@arm.com    int val = process->getSyscallArg(tc, index);
3275222Sksewell@umich.edu
3285222Sksewell@umich.edu    /*
3295222Sksewell@umich.edu     * Unsupported option that does not affect the correctness of the
3305222Sksewell@umich.edu     * application. This is a performance optimization utilized by Linux.
3315222Sksewell@umich.edu     */
3325222Sksewell@umich.edu    op &= ~OS::TGT_FUTEX_PRIVATE_FLAG;
3335222Sksewell@umich.edu
3345222Sksewell@umich.edu    FutexMap &futex_map = tc->getSystemPtr()->futexMap;
3358714Sandreas.hansson@arm.com
3368714Sandreas.hansson@arm.com    if (OS::TGT_FUTEX_WAIT == op) {
3375222Sksewell@umich.edu        // Ensure futex system call accessed atomically.
3388714Sandreas.hansson@arm.com        BufferArg buf(uaddr, sizeof(int));
3398714Sandreas.hansson@arm.com        buf.copyIn(tc->getMemProxy());
3405222Sksewell@umich.edu        int mem_val = *(int*)buf.bufferPtr();
3415222Sksewell@umich.edu
3425222Sksewell@umich.edu        /*
3435222Sksewell@umich.edu         * The value in memory at uaddr is not equal with the expected val
3445478Snate@binkert.org         * (a different thread must have changed it before the system call was
3455222Sksewell@umich.edu         * invoked). In this case, we need to throw an error.
3465222Sksewell@umich.edu         */
3475222Sksewell@umich.edu        if (val != mem_val)
3485222Sksewell@umich.edu            return -OS::TGT_EWOULDBLOCK;
3498706Sandreas.hansson@arm.com
3508706Sandreas.hansson@arm.com        futex_map.suspend(uaddr, process->tgid(), tc);
3515222Sksewell@umich.edu
3525222Sksewell@umich.edu        return 0;
3535323Sgblack@eecs.umich.edu    } else if (OS::TGT_FUTEX_WAKE == op) {
3545357Sgblack@eecs.umich.edu        return futex_map.wakeup(uaddr, process->tgid(), val);
3558323Ssteve.reinhardt@amd.com    }
3565323Sgblack@eecs.umich.edu
3577905SBrad.Beckmann@amd.com    warn("futex: op %d not implemented; ignoring.", op);
3588713Sandreas.hansson@arm.com    return -ENOSYS;
3598713Sandreas.hansson@arm.com}
3608713Sandreas.hansson@arm.com
3618713Sandreas.hansson@arm.com
3628713Sandreas.hansson@arm.com/// Pseudo Funcs  - These functions use a different return convension,
3638713Sandreas.hansson@arm.com/// returning a second value in a register other than the normal return register
3647905SBrad.Beckmann@amd.comSyscallReturn pipePseudoFunc(SyscallDesc *desc, int num,
3657905SBrad.Beckmann@amd.com                             Process *process, ThreadContext *tc);
3667905SBrad.Beckmann@amd.com
3677905SBrad.Beckmann@amd.com/// Target getpidPseudo() handler.
3687905SBrad.Beckmann@amd.comSyscallReturn getpidPseudoFunc(SyscallDesc *desc, int num,
3697905SBrad.Beckmann@amd.com                               Process *p, ThreadContext *tc);
3708713Sandreas.hansson@arm.com
3718713Sandreas.hansson@arm.com/// Target getuidPseudo() handler.
3728713Sandreas.hansson@arm.comSyscallReturn getuidPseudoFunc(SyscallDesc *desc, int num,
3738713Sandreas.hansson@arm.com                               Process *p, ThreadContext *tc);
3748713Sandreas.hansson@arm.com
3758713Sandreas.hansson@arm.com/// Target getgidPseudo() handler.
3768713Sandreas.hansson@arm.comSyscallReturn getgidPseudoFunc(SyscallDesc *desc, int num,
3778713Sandreas.hansson@arm.com                               Process *p, ThreadContext *tc);
3788713Sandreas.hansson@arm.com
3798713Sandreas.hansson@arm.com
3808713Sandreas.hansson@arm.com/// A readable name for 1,000,000, for converting microseconds to seconds.
3818713Sandreas.hansson@arm.comconst int one_million = 1000000;
3828713Sandreas.hansson@arm.com/// A readable name for 1,000,000,000, for converting nanoseconds to seconds.
3838713Sandreas.hansson@arm.comconst int one_billion = 1000000000;
3848713Sandreas.hansson@arm.com
3858713Sandreas.hansson@arm.com/// Approximate seconds since the epoch (1/1/1970).  About a billion,
3868713Sandreas.hansson@arm.com/// by my reckoning.  We want to keep this a constant (not use the
3878713Sandreas.hansson@arm.com/// real-world time) to keep simulations repeatable.
3888713Sandreas.hansson@arm.comconst unsigned seconds_since_epoch = 1000000000;
3898713Sandreas.hansson@arm.com
3908713Sandreas.hansson@arm.com/// Helper function to convert current elapsed time to seconds and
3918713Sandreas.hansson@arm.com/// microseconds.
3928713Sandreas.hansson@arm.comtemplate <class T1, class T2>
3938713Sandreas.hansson@arm.comvoid
3947905SBrad.Beckmann@amd.comgetElapsedTimeMicro(T1 &sec, T2 &usec)
3957905SBrad.Beckmann@amd.com{
3967905SBrad.Beckmann@amd.com    uint64_t elapsed_usecs = curTick() / SimClock::Int::us;
3977905SBrad.Beckmann@amd.com    sec = elapsed_usecs / one_million;
3988706Sandreas.hansson@arm.com    usec = elapsed_usecs % one_million;
3998706Sandreas.hansson@arm.com}
4007905SBrad.Beckmann@amd.com
4017905SBrad.Beckmann@amd.com/// Helper function to convert current elapsed time to seconds and
4027905SBrad.Beckmann@amd.com/// nanoseconds.
4037905SBrad.Beckmann@amd.comtemplate <class T1, class T2>
4047905SBrad.Beckmann@amd.comvoid
4057905SBrad.Beckmann@amd.comgetElapsedTimeNano(T1 &sec, T2 &nsec)
4067905SBrad.Beckmann@amd.com{
4077905SBrad.Beckmann@amd.com    uint64_t elapsed_nsecs = curTick() / SimClock::Int::ns;
4087905SBrad.Beckmann@amd.com    sec = elapsed_nsecs / one_billion;
4097905SBrad.Beckmann@amd.com    nsec = elapsed_nsecs % one_billion;
4107905SBrad.Beckmann@amd.com}
4117905SBrad.Beckmann@amd.com
4127905SBrad.Beckmann@amd.com//////////////////////////////////////////////////////////////////////
4137905SBrad.Beckmann@amd.com//
4147905SBrad.Beckmann@amd.com// The following emulation functions are generic, but need to be
4155613Sgblack@eecs.umich.edu// templated to account for differences in types, constants, etc.
4165613Sgblack@eecs.umich.edu//
4175613Sgblack@eecs.umich.edu//////////////////////////////////////////////////////////////////////
4185133Sgblack@eecs.umich.edu
4195133Sgblack@eecs.umich.edu    typedef struct statfs hst_statfs;
4205133Sgblack@eecs.umich.edu#if NO_STAT64
4215133Sgblack@eecs.umich.edu    typedef struct stat hst_stat;
4225133Sgblack@eecs.umich.edu    typedef struct stat hst_stat64;
4236802Sgblack@eecs.umich.edu#else
4246802Sgblack@eecs.umich.edu    typedef struct stat hst_stat;
4255133Sgblack@eecs.umich.edu    typedef struct stat64 hst_stat64;
4265450Sgblack@eecs.umich.edu#endif
4275613Sgblack@eecs.umich.edu
4285613Sgblack@eecs.umich.edu//// Helper function to convert a host stat buffer to a target stat
4295638Sgblack@eecs.umich.edu//// buffer.  Also copies the target buffer out to the simulated
4307905SBrad.Beckmann@amd.com//// memory space.  Used by stat(), fstat(), and lstat().
4317905SBrad.Beckmann@amd.com
4327905SBrad.Beckmann@amd.comtemplate <typename target_stat, typename host_stat>
4337905SBrad.Beckmann@amd.comvoid
4347937SBrad.Beckmann@amd.comconvertStatBuf(target_stat &tgt, host_stat *host, bool fakeTTY = false)
4357937SBrad.Beckmann@amd.com{
4367937SBrad.Beckmann@amd.com    using namespace TheISA;
4377905SBrad.Beckmann@amd.com
4387905SBrad.Beckmann@amd.com    if (fakeTTY)
4395613Sgblack@eecs.umich.edu        tgt->st_dev = 0xA;
4405613Sgblack@eecs.umich.edu    else
4415613Sgblack@eecs.umich.edu        tgt->st_dev = host->st_dev;
4425841Sgblack@eecs.umich.edu    tgt->st_dev = TheISA::htog(tgt->st_dev);
4435841Sgblack@eecs.umich.edu    tgt->st_ino = host->st_ino;
4445841Sgblack@eecs.umich.edu    tgt->st_ino = TheISA::htog(tgt->st_ino);
4455841Sgblack@eecs.umich.edu    tgt->st_mode = host->st_mode;
4465841Sgblack@eecs.umich.edu    if (fakeTTY) {
4475841Sgblack@eecs.umich.edu        // Claim to be a character device
4485841Sgblack@eecs.umich.edu        tgt->st_mode &= ~S_IFMT;    // Clear S_IFMT
4495615Sgblack@eecs.umich.edu        tgt->st_mode |= S_IFCHR;    // Set S_IFCHR
4505615Sgblack@eecs.umich.edu    }
4515615Sgblack@eecs.umich.edu    tgt->st_mode = TheISA::htog(tgt->st_mode);
4525615Sgblack@eecs.umich.edu    tgt->st_nlink = host->st_nlink;
4535641Sgblack@eecs.umich.edu    tgt->st_nlink = TheISA::htog(tgt->st_nlink);
4548323Ssteve.reinhardt@amd.com    tgt->st_uid = host->st_uid;
4558323Ssteve.reinhardt@amd.com    tgt->st_uid = TheISA::htog(tgt->st_uid);
4566135Sgblack@eecs.umich.edu    tgt->st_gid = host->st_gid;
4576135Sgblack@eecs.umich.edu    tgt->st_gid = TheISA::htog(tgt->st_gid);
4586135Sgblack@eecs.umich.edu    if (fakeTTY)
4596135Sgblack@eecs.umich.edu        tgt->st_rdev = 0x880d;
4606135Sgblack@eecs.umich.edu    else
4616135Sgblack@eecs.umich.edu        tgt->st_rdev = host->st_rdev;
4628323Ssteve.reinhardt@amd.com    tgt->st_rdev = TheISA::htog(tgt->st_rdev);
4635644Sgblack@eecs.umich.edu    tgt->st_size = host->st_size;
4646135Sgblack@eecs.umich.edu    tgt->st_size = TheISA::htog(tgt->st_size);
4655644Sgblack@eecs.umich.edu    tgt->st_atimeX = host->st_atime;
4665644Sgblack@eecs.umich.edu    tgt->st_atimeX = TheISA::htog(tgt->st_atimeX);
4675644Sgblack@eecs.umich.edu    tgt->st_mtimeX = host->st_mtime;
4686135Sgblack@eecs.umich.edu    tgt->st_mtimeX = TheISA::htog(tgt->st_mtimeX);
4698323Ssteve.reinhardt@amd.com    tgt->st_ctimeX = host->st_ctime;
4705644Sgblack@eecs.umich.edu    tgt->st_ctimeX = TheISA::htog(tgt->st_ctimeX);
4718323Ssteve.reinhardt@amd.com    // Force the block size to be 8KB. This helps to ensure buffered io works
4725843Sgblack@eecs.umich.edu    // consistently across different hosts.
4738323Ssteve.reinhardt@amd.com    tgt->st_blksize = 0x2000;
4745843Sgblack@eecs.umich.edu    tgt->st_blksize = TheISA::htog(tgt->st_blksize);
4755843Sgblack@eecs.umich.edu    tgt->st_blocks = host->st_blocks;
4768323Ssteve.reinhardt@amd.com    tgt->st_blocks = TheISA::htog(tgt->st_blocks);
4775843Sgblack@eecs.umich.edu}
4785843Sgblack@eecs.umich.edu
4795843Sgblack@eecs.umich.edu// Same for stat64
4805843Sgblack@eecs.umich.edu
4815843Sgblack@eecs.umich.edutemplate <typename target_stat, typename host_stat64>
4825843Sgblack@eecs.umich.eduvoid
4836044Sgblack@eecs.umich.educonvertStat64Buf(target_stat &tgt, host_stat64 *host, bool fakeTTY = false)
4845843Sgblack@eecs.umich.edu{
4858323Ssteve.reinhardt@amd.com    using namespace TheISA;
4866135Sgblack@eecs.umich.edu
4876135Sgblack@eecs.umich.edu    convertStatBuf<target_stat, host_stat64>(tgt, host, fakeTTY);
4886135Sgblack@eecs.umich.edu#if defined(STAT_HAVE_NSEC)
4896135Sgblack@eecs.umich.edu    tgt->st_atime_nsec = host->st_atime_nsec;
4906135Sgblack@eecs.umich.edu    tgt->st_atime_nsec = TheISA::htog(tgt->st_atime_nsec);
4916135Sgblack@eecs.umich.edu    tgt->st_mtime_nsec = host->st_mtime_nsec;
4926135Sgblack@eecs.umich.edu    tgt->st_mtime_nsec = TheISA::htog(tgt->st_mtime_nsec);
4936135Sgblack@eecs.umich.edu    tgt->st_ctime_nsec = host->st_ctime_nsec;
4946135Sgblack@eecs.umich.edu    tgt->st_ctime_nsec = TheISA::htog(tgt->st_ctime_nsec);
4958323Ssteve.reinhardt@amd.com#else
4966135Sgblack@eecs.umich.edu    tgt->st_atime_nsec = 0;
4976135Sgblack@eecs.umich.edu    tgt->st_mtime_nsec = 0;
4986135Sgblack@eecs.umich.edu    tgt->st_ctime_nsec = 0;
4996135Sgblack@eecs.umich.edu#endif
5006135Sgblack@eecs.umich.edu}
5016135Sgblack@eecs.umich.edu
5026135Sgblack@eecs.umich.edu// Here are a couple of convenience functions
5036135Sgblack@eecs.umich.edutemplate<class OS>
5048323Ssteve.reinhardt@amd.comvoid
5056135Sgblack@eecs.umich.educopyOutStatBuf(SETranslatingPortProxy &mem, Addr addr,
5066135Sgblack@eecs.umich.edu               hst_stat *host, bool fakeTTY = false)
5076135Sgblack@eecs.umich.edu{
5086135Sgblack@eecs.umich.edu    typedef TypedBufferArg<typename OS::tgt_stat> tgt_stat_buf;
5098323Ssteve.reinhardt@amd.com    tgt_stat_buf tgt(addr);
5108323Ssteve.reinhardt@amd.com    convertStatBuf<tgt_stat_buf, hst_stat>(tgt, host, fakeTTY);
5115641Sgblack@eecs.umich.edu    tgt.copyOut(mem);
5127925Sgblack@eecs.umich.edu}
5137925Sgblack@eecs.umich.edu
5147925Sgblack@eecs.umich.edutemplate<class OS>
5157925Sgblack@eecs.umich.eduvoid
5167925Sgblack@eecs.umich.educopyOutStat64Buf(SETranslatingPortProxy &mem, Addr addr,
5177925Sgblack@eecs.umich.edu                 hst_stat64 *host, bool fakeTTY = false)
5187925Sgblack@eecs.umich.edu{
5197925Sgblack@eecs.umich.edu    typedef TypedBufferArg<typename OS::tgt_stat64> tgt_stat_buf;
5207925Sgblack@eecs.umich.edu    tgt_stat_buf tgt(addr);
5217925Sgblack@eecs.umich.edu    convertStat64Buf<tgt_stat_buf, hst_stat64>(tgt, host, fakeTTY);
5227925Sgblack@eecs.umich.edu    tgt.copyOut(mem);
5237925Sgblack@eecs.umich.edu}
5247925Sgblack@eecs.umich.edu
5257925Sgblack@eecs.umich.edutemplate <class OS>
5267925Sgblack@eecs.umich.eduvoid
5277925Sgblack@eecs.umich.educopyOutStatfsBuf(SETranslatingPortProxy &mem, Addr addr,
5287925Sgblack@eecs.umich.edu                 hst_statfs *host)
5297925Sgblack@eecs.umich.edu{
5305613Sgblack@eecs.umich.edu    TypedBufferArg<typename OS::tgt_statfs> tgt(addr);
5315613Sgblack@eecs.umich.edu
5327905SBrad.Beckmann@amd.com    tgt->f_type = TheISA::htog(host->f_type);
5337905SBrad.Beckmann@amd.com#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
5345613Sgblack@eecs.umich.edu    tgt->f_bsize = TheISA::htog(host->f_iosize);
5355450Sgblack@eecs.umich.edu#else
5365450Sgblack@eecs.umich.edu    tgt->f_bsize = TheISA::htog(host->f_bsize);
5377069Snate@binkert.org#endif
5385450Sgblack@eecs.umich.edu    tgt->f_blocks = TheISA::htog(host->f_blocks);
5398323Ssteve.reinhardt@amd.com    tgt->f_bfree = TheISA::htog(host->f_bfree);
5408323Ssteve.reinhardt@amd.com    tgt->f_bavail = TheISA::htog(host->f_bavail);
5418323Ssteve.reinhardt@amd.com    tgt->f_files = TheISA::htog(host->f_files);
5428323Ssteve.reinhardt@amd.com    tgt->f_ffree = TheISA::htog(host->f_ffree);
5438323Ssteve.reinhardt@amd.com    memcpy(&tgt->f_fsid, &host->f_fsid, sizeof(host->f_fsid));
5448323Ssteve.reinhardt@amd.com#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
5456072Sgblack@eecs.umich.edu    tgt->f_namelen = TheISA::htog(host->f_namemax);
5468323Ssteve.reinhardt@amd.com    tgt->f_frsize = TheISA::htog(host->f_bsize);
5478323Ssteve.reinhardt@amd.com#elif defined(__APPLE__)
5485450Sgblack@eecs.umich.edu    tgt->f_namelen = 0;
5495330Sgblack@eecs.umich.edu    tgt->f_frsize = 0;
5505847Sgblack@eecs.umich.edu#else
5515845Sgblack@eecs.umich.edu    tgt->f_namelen = TheISA::htog(host->f_namelen);
5525133Sgblack@eecs.umich.edu    tgt->f_frsize = TheISA::htog(host->f_frsize);
5535133Sgblack@eecs.umich.edu#endif
5543584Ssaidi@eecs.umich.edu#if defined(__linux__)
5558801Sgblack@eecs.umich.edu    memcpy(&tgt->f_spare, &host->f_spare, sizeof(host->f_spare));
5568801Sgblack@eecs.umich.edu#else
5572995Ssaidi@eecs.umich.edu    /*
5582995Ssaidi@eecs.umich.edu     * The fields are different sizes per OS. Don't bother with
5594981Ssaidi@eecs.umich.edu     * f_spare or f_reserved on non-Linux for now.
5604981Ssaidi@eecs.umich.edu     */
5614981Ssaidi@eecs.umich.edu    memset(&tgt->f_spare, 0, sizeof(tgt->f_spare));
5624981Ssaidi@eecs.umich.edu#endif
5638661SAli.Saidi@ARM.com
5648661SAli.Saidi@ARM.com    tgt.copyOut(mem);
5658661SAli.Saidi@ARM.com}
5668661SAli.Saidi@ARM.com
5678661SAli.Saidi@ARM.com/// Target ioctl() handler.  For the most part, programs call ioctl()
5688661SAli.Saidi@ARM.com/// only to find out if their stdout is a tty, to determine whether to
5698661SAli.Saidi@ARM.com/// do line or block buffering.  We always claim that output fds are
5708661SAli.Saidi@ARM.com/// not TTYs to provide repeatable results.
5718661SAli.Saidi@ARM.comtemplate <class OS>
5723025Ssaidi@eecs.umich.eduSyscallReturn
5733025Ssaidi@eecs.umich.eduioctlFunc(SyscallDesc *desc, int callnum, Process *p, ThreadContext *tc)
5743025Ssaidi@eecs.umich.edu{
5752934Sktlim@umich.edu    int index = 0;
5762934Sktlim@umich.edu    int tgt_fd = p->getSyscallArg(tc, index);
5775253Sksewell@umich.edu    unsigned req = p->getSyscallArg(tc, index);
5785263Sksewell@umich.edu
5795253Sksewell@umich.edu    DPRINTF(SyscallVerbose, "ioctl(%d, 0x%x, ...)\n", tgt_fd, req);
5805253Sksewell@umich.edu
5815253Sksewell@umich.edu    if (OS::isTtyReq(req))
5825253Sksewell@umich.edu        return -ENOTTY;
5835253Sksewell@umich.edu
5845253Sksewell@umich.edu    auto dfdp = std::dynamic_pointer_cast<DeviceFDEntry>((*p->fds)[tgt_fd]);
5855253Sksewell@umich.edu    if (!dfdp)
5865253Sksewell@umich.edu        return -EBADF;
5875253Sksewell@umich.edu
5885253Sksewell@umich.edu    /**
5895253Sksewell@umich.edu     * If the driver is valid, issue the ioctl through it. Otherwise,
5905253Sksewell@umich.edu     * there's an implicit assumption that the device is a TTY type and we
5915253Sksewell@umich.edu     * return that we do not have a valid TTY.
5925253Sksewell@umich.edu     */
5935253Sksewell@umich.edu    EmulatedDriver *emul_driver = dfdp->getDriver();
5945253Sksewell@umich.edu    if (emul_driver)
5955253Sksewell@umich.edu        return emul_driver->ioctl(p, tc, req);
5965253Sksewell@umich.edu
5975253Sksewell@umich.edu    /**
5985253Sksewell@umich.edu     * For lack of a better return code, return ENOTTY. Ideally, we should
5995253Sksewell@umich.edu     * return something better here, but at least we issue the warning.
6005253Sksewell@umich.edu     */
6015253Sksewell@umich.edu    warn("Unsupported ioctl call (return ENOTTY): ioctl(%d, 0x%x, ...) @ \n",
6025253Sksewell@umich.edu         tgt_fd, req, tc->pcState());
6035253Sksewell@umich.edu    return -ENOTTY;
6045253Sksewell@umich.edu}
6055253Sksewell@umich.edu
6065253Sksewell@umich.edutemplate <class OS>
6075253Sksewell@umich.eduSyscallReturn
6085253Sksewell@umich.eduopenImpl(SyscallDesc *desc, int callnum, Process *p, ThreadContext *tc,
6095253Sksewell@umich.edu         bool isopenat)
6105253Sksewell@umich.edu{
6115253Sksewell@umich.edu    int index = 0;
6125253Sksewell@umich.edu    int tgt_dirfd = -1;
6135253Sksewell@umich.edu
6145253Sksewell@umich.edu    /**
6155253Sksewell@umich.edu     * If using the openat variant, read in the target directory file
6165253Sksewell@umich.edu     * descriptor from the simulated process.
6175253Sksewell@umich.edu     */
6185253Sksewell@umich.edu    if (isopenat)
6195253Sksewell@umich.edu        tgt_dirfd = p->getSyscallArg(tc, index);
6205253Sksewell@umich.edu
6215253Sksewell@umich.edu    /**
6225253Sksewell@umich.edu     * Retrieve the simulated process' memory proxy and then read in the path
6235253Sksewell@umich.edu     * string from that memory space into the host's working memory space.
6245253Sksewell@umich.edu     */
6255253Sksewell@umich.edu    std::string path;
6265253Sksewell@umich.edu    if (!tc->getMemProxy().tryReadString(path, p->getSyscallArg(tc, index)))
6275253Sksewell@umich.edu        return -EFAULT;
6285253Sksewell@umich.edu
6295253Sksewell@umich.edu#ifdef __CYGWIN32__
6305253Sksewell@umich.edu    int host_flags = O_BINARY;
6315253Sksewell@umich.edu#else
6325253Sksewell@umich.edu    int host_flags = 0;
6335253Sksewell@umich.edu#endif
6345253Sksewell@umich.edu    /**
6355253Sksewell@umich.edu     * Translate target flags into host flags. Flags exist which are not
6365253Sksewell@umich.edu     * ported between architectures which can cause check failures.
6375253Sksewell@umich.edu     */
6385253Sksewell@umich.edu    int tgt_flags = p->getSyscallArg(tc, index);
6395253Sksewell@umich.edu    for (int i = 0; i < OS::NUM_OPEN_FLAGS; i++) {
6405253Sksewell@umich.edu        if (tgt_flags & OS::openFlagTable[i].tgtFlag) {
6415253Sksewell@umich.edu            tgt_flags &= ~OS::openFlagTable[i].tgtFlag;
6425253Sksewell@umich.edu            host_flags |= OS::openFlagTable[i].hostFlag;
6435253Sksewell@umich.edu        }
6445253Sksewell@umich.edu    }
6455253Sksewell@umich.edu    if (tgt_flags) {
6465253Sksewell@umich.edu        warn("open%s: cannot decode flags 0x%x",
647             isopenat ? "at" : "", tgt_flags);
648    }
649#ifdef __CYGWIN32__
650    host_flags |= O_BINARY;
651#endif
652
653    int mode = p->getSyscallArg(tc, index);
654
655    /**
656     * If the simulated process called open or openat with AT_FDCWD specified,
657     * take the current working directory value which was passed into the
658     * process class as a Python parameter and append the current path to
659     * create a full path.
660     * Otherwise, openat with a valid target directory file descriptor has
661     * been called. If the path option, which was passed in as a parameter,
662     * is not absolute, retrieve the directory file descriptor's path and
663     * prepend it to the path passed in as a parameter.
664     * In every case, we should have a full path (which is relevant to the
665     * host) to work with after this block has been passed.
666     */
667    if (!isopenat || (isopenat && tgt_dirfd == OS::TGT_AT_FDCWD)) {
668        path = p->fullPath(path);
669    } else if (!startswith(path, "/")) {
670        std::shared_ptr<FDEntry> fdep = ((*p->fds)[tgt_dirfd]);
671        auto ffdp = std::dynamic_pointer_cast<FileFDEntry>(fdep);
672        if (!ffdp)
673            return -EBADF;
674        path.insert(0, ffdp->getFileName());
675    }
676
677    /**
678     * Since this is an emulated environment, we create pseudo file
679     * descriptors for device requests that have been registered with
680     * the process class through Python; this allows us to create a file
681     * descriptor for subsequent ioctl or mmap calls.
682     */
683    if (startswith(path, "/dev/")) {
684        std::string filename = path.substr(strlen("/dev/"));
685        EmulatedDriver *drv = p->findDriver(filename);
686        if (drv) {
687            DPRINTF_SYSCALL(Verbose, "open%s: passing call to "
688                            "driver open with path[%s]\n",
689                            isopenat ? "at" : "", path.c_str());
690            return drv->open(p, tc, mode, host_flags);
691        }
692        /**
693         * Fall through here for pass through to host devices, such
694         * as /dev/zero
695         */
696    }
697
698    /**
699     * Some special paths and files cannot be called on the host and need
700     * to be handled as special cases inside the simulator.
701     * If the full path that was created above does not match any of the
702     * special cases, pass it through to the open call on the host to let
703     * the host open the file on our behalf.
704     * If the host cannot open the file, return the host's error code back
705     * through the system call to the simulated process.
706     */
707    int sim_fd = -1;
708    std::vector<std::string> special_paths =
709            { "/proc/", "/system/", "/sys/", "/platform/", "/etc/passwd" };
710    for (auto entry : special_paths) {
711        if (startswith(path, entry))
712            sim_fd = OS::openSpecialFile(path, p, tc);
713    }
714    if (sim_fd == -1) {
715        sim_fd = open(path.c_str(), host_flags, mode);
716    }
717    if (sim_fd == -1) {
718        int local = -errno;
719        DPRINTF_SYSCALL(Verbose, "open%s: failed -> path:%s\n",
720                        isopenat ? "at" : "", path.c_str());
721        return local;
722    }
723
724    /**
725     * The file was opened successfully and needs to be recorded in the
726     * process' file descriptor array so that it can be retrieved later.
727     * The target file descriptor that is chosen will be the lowest unused
728     * file descriptor.
729     * Return the indirect target file descriptor back to the simulated
730     * process to act as a handle for the opened file.
731     */
732    auto ffdp = std::make_shared<FileFDEntry>(sim_fd, host_flags, path, 0);
733    int tgt_fd = p->fds->allocFD(ffdp);
734    DPRINTF_SYSCALL(Verbose, "open%s: sim_fd[%d], target_fd[%d] -> path:%s\n",
735                    isopenat ? "at" : "", sim_fd, tgt_fd, path.c_str());
736    return tgt_fd;
737}
738
739/// Target open() handler.
740template <class OS>
741SyscallReturn
742openFunc(SyscallDesc *desc, int callnum, Process *process,
743         ThreadContext *tc)
744{
745    return openImpl<OS>(desc, callnum, process, tc, false);
746}
747
748/// Target openat() handler.
749template <class OS>
750SyscallReturn
751openatFunc(SyscallDesc *desc, int callnum, Process *process,
752           ThreadContext *tc)
753{
754    return openImpl<OS>(desc, callnum, process, tc, true);
755}
756
757/// Target unlinkat() handler.
758template <class OS>
759SyscallReturn
760unlinkatFunc(SyscallDesc *desc, int callnum, Process *process,
761             ThreadContext *tc)
762{
763    int index = 0;
764    int dirfd = process->getSyscallArg(tc, index);
765    if (dirfd != OS::TGT_AT_FDCWD)
766        warn("unlinkat: first argument not AT_FDCWD; unlikely to work");
767
768    return unlinkHelper(desc, callnum, process, tc, 1);
769}
770
771/// Target facessat() handler
772template <class OS>
773SyscallReturn
774faccessatFunc(SyscallDesc *desc, int callnum, Process *process,
775              ThreadContext *tc)
776{
777    int index = 0;
778    int dirfd = process->getSyscallArg(tc, index);
779    if (dirfd != OS::TGT_AT_FDCWD)
780        warn("faccessat: first argument not AT_FDCWD; unlikely to work");
781    return accessFunc(desc, callnum, process, tc, 1);
782}
783
784/// Target readlinkat() handler
785template <class OS>
786SyscallReturn
787readlinkatFunc(SyscallDesc *desc, int callnum, Process *process,
788               ThreadContext *tc)
789{
790    int index = 0;
791    int dirfd = process->getSyscallArg(tc, index);
792    if (dirfd != OS::TGT_AT_FDCWD)
793        warn("openat: first argument not AT_FDCWD; unlikely to work");
794    return readlinkFunc(desc, callnum, process, tc, 1);
795}
796
797/// Target renameat() handler.
798template <class OS>
799SyscallReturn
800renameatFunc(SyscallDesc *desc, int callnum, Process *process,
801             ThreadContext *tc)
802{
803    int index = 0;
804
805    int olddirfd = process->getSyscallArg(tc, index);
806    if (olddirfd != OS::TGT_AT_FDCWD)
807        warn("renameat: first argument not AT_FDCWD; unlikely to work");
808
809    std::string old_name;
810
811    if (!tc->getMemProxy().tryReadString(old_name,
812                                         process->getSyscallArg(tc, index)))
813        return -EFAULT;
814
815    int newdirfd = process->getSyscallArg(tc, index);
816    if (newdirfd != OS::TGT_AT_FDCWD)
817        warn("renameat: third argument not AT_FDCWD; unlikely to work");
818
819    std::string new_name;
820
821    if (!tc->getMemProxy().tryReadString(new_name,
822                                         process->getSyscallArg(tc, index)))
823        return -EFAULT;
824
825    // Adjust path for current working directory
826    old_name = process->fullPath(old_name);
827    new_name = process->fullPath(new_name);
828
829    int result = rename(old_name.c_str(), new_name.c_str());
830    return (result == -1) ? -errno : result;
831}
832
833/// Target sysinfo() handler.
834template <class OS>
835SyscallReturn
836sysinfoFunc(SyscallDesc *desc, int callnum, Process *process,
837            ThreadContext *tc)
838{
839
840    int index = 0;
841    TypedBufferArg<typename OS::tgt_sysinfo>
842        sysinfo(process->getSyscallArg(tc, index));
843
844    sysinfo->uptime = seconds_since_epoch;
845    sysinfo->totalram = process->system->memSize();
846    sysinfo->mem_unit = 1;
847
848    sysinfo.copyOut(tc->getMemProxy());
849
850    return 0;
851}
852
853/// Target chmod() handler.
854template <class OS>
855SyscallReturn
856chmodFunc(SyscallDesc *desc, int callnum, Process *process,
857          ThreadContext *tc)
858{
859    std::string path;
860
861    int index = 0;
862    if (!tc->getMemProxy().tryReadString(path,
863                process->getSyscallArg(tc, index))) {
864        return -EFAULT;
865    }
866
867    uint32_t mode = process->getSyscallArg(tc, index);
868    mode_t hostMode = 0;
869
870    // XXX translate mode flags via OS::something???
871    hostMode = mode;
872
873    // Adjust path for current working directory
874    path = process->fullPath(path);
875
876    // do the chmod
877    int result = chmod(path.c_str(), hostMode);
878    if (result < 0)
879        return -errno;
880
881    return 0;
882}
883
884
885/// Target fchmod() handler.
886template <class OS>
887SyscallReturn
888fchmodFunc(SyscallDesc *desc, int callnum, Process *p, ThreadContext *tc)
889{
890    int index = 0;
891    int tgt_fd = p->getSyscallArg(tc, index);
892    uint32_t mode = p->getSyscallArg(tc, index);
893
894    auto ffdp = std::dynamic_pointer_cast<FileFDEntry>((*p->fds)[tgt_fd]);
895    if (!ffdp)
896        return -EBADF;
897    int sim_fd = ffdp->getSimFD();
898
899    mode_t hostMode = mode;
900
901    int result = fchmod(sim_fd, hostMode);
902
903    return (result < 0) ? -errno : 0;
904}
905
906/// Target mremap() handler.
907template <class OS>
908SyscallReturn
909mremapFunc(SyscallDesc *desc, int callnum, Process *process, ThreadContext *tc)
910{
911    int index = 0;
912    Addr start = process->getSyscallArg(tc, index);
913    uint64_t old_length = process->getSyscallArg(tc, index);
914    uint64_t new_length = process->getSyscallArg(tc, index);
915    uint64_t flags = process->getSyscallArg(tc, index);
916    uint64_t provided_address = 0;
917    bool use_provided_address = flags & OS::TGT_MREMAP_FIXED;
918
919    if (use_provided_address)
920        provided_address = process->getSyscallArg(tc, index);
921
922    if ((start % TheISA::PageBytes != 0) ||
923        (provided_address % TheISA::PageBytes != 0)) {
924        warn("mremap failing: arguments not page aligned");
925        return -EINVAL;
926    }
927
928    new_length = roundUp(new_length, TheISA::PageBytes);
929
930    if (new_length > old_length) {
931        std::shared_ptr<MemState> mem_state = process->memState;
932        Addr mmap_end = mem_state->getMmapEnd();
933
934        if ((start + old_length) == mmap_end &&
935            (!use_provided_address || provided_address == start)) {
936            // This case cannot occur when growing downward, as
937            // start is greater than or equal to mmap_end.
938            uint64_t diff = new_length - old_length;
939            process->allocateMem(mmap_end, diff);
940            mem_state->setMmapEnd(mmap_end + diff);
941            return start;
942        } else {
943            if (!use_provided_address && !(flags & OS::TGT_MREMAP_MAYMOVE)) {
944                warn("can't remap here and MREMAP_MAYMOVE flag not set\n");
945                return -ENOMEM;
946            } else {
947                uint64_t new_start = provided_address;
948                if (!use_provided_address) {
949                    new_start = process->mmapGrowsDown() ?
950                                mmap_end - new_length : mmap_end;
951                    mmap_end = process->mmapGrowsDown() ?
952                               new_start : mmap_end + new_length;
953                    mem_state->setMmapEnd(mmap_end);
954                }
955
956                process->pTable->remap(start, old_length, new_start);
957                warn("mremapping to new vaddr %08p-%08p, adding %d\n",
958                     new_start, new_start + new_length,
959                     new_length - old_length);
960                // add on the remaining unallocated pages
961                process->allocateMem(new_start + old_length,
962                                     new_length - old_length,
963                                     use_provided_address /* clobber */);
964                if (use_provided_address &&
965                    ((new_start + new_length > mem_state->getMmapEnd() &&
966                      !process->mmapGrowsDown()) ||
967                    (new_start < mem_state->getMmapEnd() &&
968                      process->mmapGrowsDown()))) {
969                    // something fishy going on here, at least notify the user
970                    // @todo: increase mmap_end?
971                    warn("mmap region limit exceeded with MREMAP_FIXED\n");
972                }
973                warn("returning %08p as start\n", new_start);
974                return new_start;
975            }
976        }
977    } else {
978        if (use_provided_address && provided_address != start)
979            process->pTable->remap(start, new_length, provided_address);
980        process->pTable->unmap(start + new_length, old_length - new_length);
981        return use_provided_address ? provided_address : start;
982    }
983}
984
985/// Target stat() handler.
986template <class OS>
987SyscallReturn
988statFunc(SyscallDesc *desc, int callnum, Process *process,
989         ThreadContext *tc)
990{
991    std::string path;
992
993    int index = 0;
994    if (!tc->getMemProxy().tryReadString(path,
995                process->getSyscallArg(tc, index))) {
996        return -EFAULT;
997    }
998    Addr bufPtr = process->getSyscallArg(tc, index);
999
1000    // Adjust path for current working directory
1001    path = process->fullPath(path);
1002
1003    struct stat hostBuf;
1004    int result = stat(path.c_str(), &hostBuf);
1005
1006    if (result < 0)
1007        return -errno;
1008
1009    copyOutStatBuf<OS>(tc->getMemProxy(), bufPtr, &hostBuf);
1010
1011    return 0;
1012}
1013
1014
1015/// Target stat64() handler.
1016template <class OS>
1017SyscallReturn
1018stat64Func(SyscallDesc *desc, int callnum, Process *process,
1019           ThreadContext *tc)
1020{
1021    std::string path;
1022
1023    int index = 0;
1024    if (!tc->getMemProxy().tryReadString(path,
1025                process->getSyscallArg(tc, index)))
1026        return -EFAULT;
1027    Addr bufPtr = process->getSyscallArg(tc, index);
1028
1029    // Adjust path for current working directory
1030    path = process->fullPath(path);
1031
1032#if NO_STAT64
1033    struct stat  hostBuf;
1034    int result = stat(path.c_str(), &hostBuf);
1035#else
1036    struct stat64 hostBuf;
1037    int result = stat64(path.c_str(), &hostBuf);
1038#endif
1039
1040    if (result < 0)
1041        return -errno;
1042
1043    copyOutStat64Buf<OS>(tc->getMemProxy(), bufPtr, &hostBuf);
1044
1045    return 0;
1046}
1047
1048
1049/// Target fstatat64() handler.
1050template <class OS>
1051SyscallReturn
1052fstatat64Func(SyscallDesc *desc, int callnum, Process *process,
1053              ThreadContext *tc)
1054{
1055    int index = 0;
1056    int dirfd = process->getSyscallArg(tc, index);
1057    if (dirfd != OS::TGT_AT_FDCWD)
1058        warn("fstatat64: first argument not AT_FDCWD; unlikely to work");
1059
1060    std::string path;
1061    if (!tc->getMemProxy().tryReadString(path,
1062                process->getSyscallArg(tc, index)))
1063        return -EFAULT;
1064    Addr bufPtr = process->getSyscallArg(tc, index);
1065
1066    // Adjust path for current working directory
1067    path = process->fullPath(path);
1068
1069#if NO_STAT64
1070    struct stat  hostBuf;
1071    int result = stat(path.c_str(), &hostBuf);
1072#else
1073    struct stat64 hostBuf;
1074    int result = stat64(path.c_str(), &hostBuf);
1075#endif
1076
1077    if (result < 0)
1078        return -errno;
1079
1080    copyOutStat64Buf<OS>(tc->getMemProxy(), bufPtr, &hostBuf);
1081
1082    return 0;
1083}
1084
1085
1086/// Target fstat64() handler.
1087template <class OS>
1088SyscallReturn
1089fstat64Func(SyscallDesc *desc, int callnum, Process *p, ThreadContext *tc)
1090{
1091    int index = 0;
1092    int tgt_fd = p->getSyscallArg(tc, index);
1093    Addr bufPtr = p->getSyscallArg(tc, index);
1094
1095    auto ffdp = std::dynamic_pointer_cast<FileFDEntry>((*p->fds)[tgt_fd]);
1096    if (!ffdp)
1097        return -EBADF;
1098    int sim_fd = ffdp->getSimFD();
1099
1100#if NO_STAT64
1101    struct stat  hostBuf;
1102    int result = fstat(sim_fd, &hostBuf);
1103#else
1104    struct stat64  hostBuf;
1105    int result = fstat64(sim_fd, &hostBuf);
1106#endif
1107
1108    if (result < 0)
1109        return -errno;
1110
1111    copyOutStat64Buf<OS>(tc->getMemProxy(), bufPtr, &hostBuf, (sim_fd == 1));
1112
1113    return 0;
1114}
1115
1116
1117/// Target lstat() handler.
1118template <class OS>
1119SyscallReturn
1120lstatFunc(SyscallDesc *desc, int callnum, Process *process,
1121          ThreadContext *tc)
1122{
1123    std::string path;
1124
1125    int index = 0;
1126    if (!tc->getMemProxy().tryReadString(path,
1127                process->getSyscallArg(tc, index))) {
1128        return -EFAULT;
1129    }
1130    Addr bufPtr = process->getSyscallArg(tc, index);
1131
1132    // Adjust path for current working directory
1133    path = process->fullPath(path);
1134
1135    struct stat hostBuf;
1136    int result = lstat(path.c_str(), &hostBuf);
1137
1138    if (result < 0)
1139        return -errno;
1140
1141    copyOutStatBuf<OS>(tc->getMemProxy(), bufPtr, &hostBuf);
1142
1143    return 0;
1144}
1145
1146/// Target lstat64() handler.
1147template <class OS>
1148SyscallReturn
1149lstat64Func(SyscallDesc *desc, int callnum, Process *process,
1150            ThreadContext *tc)
1151{
1152    std::string path;
1153
1154    int index = 0;
1155    if (!tc->getMemProxy().tryReadString(path,
1156                process->getSyscallArg(tc, index))) {
1157        return -EFAULT;
1158    }
1159    Addr bufPtr = process->getSyscallArg(tc, index);
1160
1161    // Adjust path for current working directory
1162    path = process->fullPath(path);
1163
1164#if NO_STAT64
1165    struct stat hostBuf;
1166    int result = lstat(path.c_str(), &hostBuf);
1167#else
1168    struct stat64 hostBuf;
1169    int result = lstat64(path.c_str(), &hostBuf);
1170#endif
1171
1172    if (result < 0)
1173        return -errno;
1174
1175    copyOutStat64Buf<OS>(tc->getMemProxy(), bufPtr, &hostBuf);
1176
1177    return 0;
1178}
1179
1180/// Target fstat() handler.
1181template <class OS>
1182SyscallReturn
1183fstatFunc(SyscallDesc *desc, int callnum, Process *p, ThreadContext *tc)
1184{
1185    int index = 0;
1186    int tgt_fd = p->getSyscallArg(tc, index);
1187    Addr bufPtr = p->getSyscallArg(tc, index);
1188
1189    DPRINTF_SYSCALL(Verbose, "fstat(%d, ...)\n", tgt_fd);
1190
1191    auto ffdp = std::dynamic_pointer_cast<FileFDEntry>((*p->fds)[tgt_fd]);
1192    if (!ffdp)
1193        return -EBADF;
1194    int sim_fd = ffdp->getSimFD();
1195
1196    struct stat hostBuf;
1197    int result = fstat(sim_fd, &hostBuf);
1198
1199    if (result < 0)
1200        return -errno;
1201
1202    copyOutStatBuf<OS>(tc->getMemProxy(), bufPtr, &hostBuf, (sim_fd == 1));
1203
1204    return 0;
1205}
1206
1207
1208/// Target statfs() handler.
1209template <class OS>
1210SyscallReturn
1211statfsFunc(SyscallDesc *desc, int callnum, Process *process,
1212           ThreadContext *tc)
1213{
1214#if NO_STATFS
1215    warn("Host OS cannot support calls to statfs. Ignoring syscall");
1216#else
1217    std::string path;
1218
1219    int index = 0;
1220    if (!tc->getMemProxy().tryReadString(path,
1221                process->getSyscallArg(tc, index))) {
1222        return -EFAULT;
1223    }
1224    Addr bufPtr = process->getSyscallArg(tc, index);
1225
1226    // Adjust path for current working directory
1227    path = process->fullPath(path);
1228
1229    struct statfs hostBuf;
1230    int result = statfs(path.c_str(), &hostBuf);
1231
1232    if (result < 0)
1233        return -errno;
1234
1235    copyOutStatfsBuf<OS>(tc->getMemProxy(), bufPtr, &hostBuf);
1236#endif
1237    return 0;
1238}
1239
1240template <class OS>
1241SyscallReturn
1242cloneFunc(SyscallDesc *desc, int callnum, Process *p, ThreadContext *tc)
1243{
1244    int index = 0;
1245
1246    TheISA::IntReg flags = p->getSyscallArg(tc, index);
1247    TheISA::IntReg newStack = p->getSyscallArg(tc, index);
1248    Addr ptidPtr = p->getSyscallArg(tc, index);
1249
1250#if THE_ISA == RISCV_ISA
1251    /**
1252     * Linux kernel 4.15 sets CLONE_BACKWARDS flag for RISC-V.
1253     * The flag defines the list of clone() arguments in the following
1254     * order: flags -> newStack -> ptidPtr -> tlsPtr -> ctidPtr
1255     */
1256    Addr tlsPtr M5_VAR_USED = p->getSyscallArg(tc, index);
1257    Addr ctidPtr = p->getSyscallArg(tc, index);
1258#else
1259    Addr ctidPtr = p->getSyscallArg(tc, index);
1260    Addr tlsPtr M5_VAR_USED = p->getSyscallArg(tc, index);
1261#endif
1262
1263    if (((flags & OS::TGT_CLONE_SIGHAND)&& !(flags & OS::TGT_CLONE_VM)) ||
1264        ((flags & OS::TGT_CLONE_THREAD) && !(flags & OS::TGT_CLONE_SIGHAND)) ||
1265        ((flags & OS::TGT_CLONE_FS)     &&  (flags & OS::TGT_CLONE_NEWNS)) ||
1266        ((flags & OS::TGT_CLONE_NEWIPC) &&  (flags & OS::TGT_CLONE_SYSVSEM)) ||
1267        ((flags & OS::TGT_CLONE_NEWPID) &&  (flags & OS::TGT_CLONE_THREAD)) ||
1268        ((flags & OS::TGT_CLONE_VM)     && !(newStack)))
1269        return -EINVAL;
1270
1271    ThreadContext *ctc;
1272    if (!(ctc = p->findFreeContext()))
1273        fatal("clone: no spare thread context in system");
1274
1275    /**
1276     * Note that ProcessParams is generated by swig and there are no other
1277     * examples of how to create anything but this default constructor. The
1278     * fields are manually initialized instead of passing parameters to the
1279     * constructor.
1280     */
1281    ProcessParams *pp = new ProcessParams();
1282    pp->executable.assign(*(new std::string(p->progName())));
1283    pp->cmd.push_back(*(new std::string(p->progName())));
1284    pp->system = p->system;
1285    pp->cwd.assign(p->getcwd());
1286    pp->input.assign("stdin");
1287    pp->output.assign("stdout");
1288    pp->errout.assign("stderr");
1289    pp->uid = p->uid();
1290    pp->euid = p->euid();
1291    pp->gid = p->gid();
1292    pp->egid = p->egid();
1293
1294    /* Find the first free PID that's less than the maximum */
1295    std::set<int> const& pids = p->system->PIDs;
1296    int temp_pid = *pids.begin();
1297    do {
1298        temp_pid++;
1299    } while (pids.find(temp_pid) != pids.end());
1300    if (temp_pid >= System::maxPID)
1301        fatal("temp_pid is too large: %d", temp_pid);
1302
1303    pp->pid = temp_pid;
1304    pp->ppid = (flags & OS::TGT_CLONE_THREAD) ? p->ppid() : p->pid();
1305    Process *cp = pp->create();
1306    delete pp;
1307
1308    Process *owner = ctc->getProcessPtr();
1309    ctc->setProcessPtr(cp);
1310    cp->assignThreadContext(ctc->contextId());
1311    owner->revokeThreadContext(ctc->contextId());
1312
1313    if (flags & OS::TGT_CLONE_PARENT_SETTID) {
1314        BufferArg ptidBuf(ptidPtr, sizeof(long));
1315        long *ptid = (long *)ptidBuf.bufferPtr();
1316        *ptid = cp->pid();
1317        ptidBuf.copyOut(tc->getMemProxy());
1318    }
1319
1320    cp->initState();
1321    p->clone(tc, ctc, cp, flags);
1322
1323    if (flags & OS::TGT_CLONE_THREAD) {
1324        delete cp->sigchld;
1325        cp->sigchld = p->sigchld;
1326    } else if (flags & OS::TGT_SIGCHLD) {
1327        *cp->sigchld = true;
1328    }
1329
1330    if (flags & OS::TGT_CLONE_CHILD_SETTID) {
1331        BufferArg ctidBuf(ctidPtr, sizeof(long));
1332        long *ctid = (long *)ctidBuf.bufferPtr();
1333        *ctid = cp->pid();
1334        ctidBuf.copyOut(ctc->getMemProxy());
1335    }
1336
1337    if (flags & OS::TGT_CLONE_CHILD_CLEARTID)
1338        cp->childClearTID = (uint64_t)ctidPtr;
1339
1340    ctc->clearArchRegs();
1341
1342#if THE_ISA == ALPHA_ISA
1343    TheISA::copyMiscRegs(tc, ctc);
1344#elif THE_ISA == SPARC_ISA
1345    TheISA::copyRegs(tc, ctc);
1346    ctc->setIntReg(TheISA::NumIntArchRegs + 6, 0);
1347    ctc->setIntReg(TheISA::NumIntArchRegs + 4, 0);
1348    ctc->setIntReg(TheISA::NumIntArchRegs + 3, TheISA::NWindows - 2);
1349    ctc->setIntReg(TheISA::NumIntArchRegs + 5, TheISA::NWindows);
1350    ctc->setMiscReg(TheISA::MISCREG_CWP, 0);
1351    ctc->setIntReg(TheISA::NumIntArchRegs + 7, 0);
1352    ctc->setMiscRegNoEffect(TheISA::MISCREG_TL, 0);
1353    ctc->setMiscReg(TheISA::MISCREG_ASI, TheISA::ASI_PRIMARY);
1354    for (int y = 8; y < 32; y++)
1355        ctc->setIntReg(y, tc->readIntReg(y));
1356#elif THE_ISA == ARM_ISA or THE_ISA == X86_ISA or THE_ISA == RISCV_ISA
1357    TheISA::copyRegs(tc, ctc);
1358#endif
1359
1360#if THE_ISA == X86_ISA
1361    if (flags & OS::TGT_CLONE_SETTLS) {
1362        ctc->setMiscRegNoEffect(TheISA::MISCREG_FS_BASE, tlsPtr);
1363        ctc->setMiscRegNoEffect(TheISA::MISCREG_FS_EFF_BASE, tlsPtr);
1364    }
1365#endif
1366
1367    if (newStack)
1368        ctc->setIntReg(TheISA::StackPointerReg, newStack);
1369
1370    cp->setSyscallReturn(ctc, 0);
1371
1372#if THE_ISA == ALPHA_ISA
1373    ctc->setIntReg(TheISA::SyscallSuccessReg, 0);
1374#elif THE_ISA == SPARC_ISA
1375    tc->setIntReg(TheISA::SyscallPseudoReturnReg, 0);
1376    ctc->setIntReg(TheISA::SyscallPseudoReturnReg, 1);
1377#endif
1378
1379    ctc->pcState(tc->nextInstAddr());
1380    ctc->activate();
1381
1382    return cp->pid();
1383}
1384
1385/// Target fstatfs() handler.
1386template <class OS>
1387SyscallReturn
1388fstatfsFunc(SyscallDesc *desc, int callnum, Process *p, ThreadContext *tc)
1389{
1390    int index = 0;
1391    int tgt_fd = p->getSyscallArg(tc, index);
1392    Addr bufPtr = p->getSyscallArg(tc, index);
1393
1394    auto ffdp = std::dynamic_pointer_cast<FileFDEntry>((*p->fds)[tgt_fd]);
1395    if (!ffdp)
1396        return -EBADF;
1397    int sim_fd = ffdp->getSimFD();
1398
1399    struct statfs hostBuf;
1400    int result = fstatfs(sim_fd, &hostBuf);
1401
1402    if (result < 0)
1403        return -errno;
1404
1405    copyOutStatfsBuf<OS>(tc->getMemProxy(), bufPtr, &hostBuf);
1406
1407    return 0;
1408}
1409
1410
1411/// Target writev() handler.
1412template <class OS>
1413SyscallReturn
1414writevFunc(SyscallDesc *desc, int callnum, Process *p, ThreadContext *tc)
1415{
1416    int index = 0;
1417    int tgt_fd = p->getSyscallArg(tc, index);
1418
1419    auto hbfdp = std::dynamic_pointer_cast<HBFDEntry>((*p->fds)[tgt_fd]);
1420    if (!hbfdp)
1421        return -EBADF;
1422    int sim_fd = hbfdp->getSimFD();
1423
1424    SETranslatingPortProxy &prox = tc->getMemProxy();
1425    uint64_t tiov_base = p->getSyscallArg(tc, index);
1426    size_t count = p->getSyscallArg(tc, index);
1427    struct iovec hiov[count];
1428    for (size_t i = 0; i < count; ++i) {
1429        typename OS::tgt_iovec tiov;
1430
1431        prox.readBlob(tiov_base + i*sizeof(typename OS::tgt_iovec),
1432                      (uint8_t*)&tiov, sizeof(typename OS::tgt_iovec));
1433        hiov[i].iov_len = TheISA::gtoh(tiov.iov_len);
1434        hiov[i].iov_base = new char [hiov[i].iov_len];
1435        prox.readBlob(TheISA::gtoh(tiov.iov_base), (uint8_t *)hiov[i].iov_base,
1436                      hiov[i].iov_len);
1437    }
1438
1439    int result = writev(sim_fd, hiov, count);
1440
1441    for (size_t i = 0; i < count; ++i)
1442        delete [] (char *)hiov[i].iov_base;
1443
1444    if (result < 0)
1445        return -errno;
1446
1447    return result;
1448}
1449
1450/// Real mmap handler.
1451template <class OS>
1452SyscallReturn
1453mmapImpl(SyscallDesc *desc, int num, Process *p, ThreadContext *tc,
1454         bool is_mmap2)
1455{
1456    int index = 0;
1457    Addr start = p->getSyscallArg(tc, index);
1458    uint64_t length = p->getSyscallArg(tc, index);
1459    int prot = p->getSyscallArg(tc, index);
1460    int tgt_flags = p->getSyscallArg(tc, index);
1461    int tgt_fd = p->getSyscallArg(tc, index);
1462    int offset = p->getSyscallArg(tc, index);
1463
1464    if (is_mmap2)
1465        offset *= TheISA::PageBytes;
1466
1467    if (start & (TheISA::PageBytes - 1) ||
1468        offset & (TheISA::PageBytes - 1) ||
1469        (tgt_flags & OS::TGT_MAP_PRIVATE &&
1470         tgt_flags & OS::TGT_MAP_SHARED) ||
1471        (!(tgt_flags & OS::TGT_MAP_PRIVATE) &&
1472         !(tgt_flags & OS::TGT_MAP_SHARED)) ||
1473        !length) {
1474        return -EINVAL;
1475    }
1476
1477    if ((prot & PROT_WRITE) && (tgt_flags & OS::TGT_MAP_SHARED)) {
1478        // With shared mmaps, there are two cases to consider:
1479        // 1) anonymous: writes should modify the mapping and this should be
1480        // visible to observers who share the mapping. Currently, it's
1481        // difficult to update the shared mapping because there's no
1482        // structure which maintains information about the which virtual
1483        // memory areas are shared. If that structure existed, it would be
1484        // possible to make the translations point to the same frames.
1485        // 2) file-backed: writes should modify the mapping and the file
1486        // which is backed by the mapping. The shared mapping problem is the
1487        // same as what was mentioned about the anonymous mappings. For
1488        // file-backed mappings, the writes to the file are difficult
1489        // because it requires syncing what the mapping holds with the file
1490        // that resides on the host system. So, any write on a real system
1491        // would cause the change to be propagated to the file mapping at
1492        // some point in the future (the inode is tracked along with the
1493        // mapping). This isn't guaranteed to always happen, but it usually
1494        // works well enough. The guarantee is provided by the msync system
1495        // call. We could force the change through with shared mappings with
1496        // a call to msync, but that again would require more information
1497        // than we currently maintain.
1498        warn("mmap: writing to shared mmap region is currently "
1499             "unsupported. The write succeeds on the target, but it "
1500             "will not be propagated to the host or shared mappings");
1501    }
1502
1503    length = roundUp(length, TheISA::PageBytes);
1504
1505    int sim_fd = -1;
1506    uint8_t *pmap = nullptr;
1507    if (!(tgt_flags & OS::TGT_MAP_ANONYMOUS)) {
1508        std::shared_ptr<FDEntry> fdep = (*p->fds)[tgt_fd];
1509
1510        auto dfdp = std::dynamic_pointer_cast<DeviceFDEntry>(fdep);
1511        if (dfdp) {
1512            EmulatedDriver *emul_driver = dfdp->getDriver();
1513            return emul_driver->mmap(p, tc, start, length, prot,
1514                                     tgt_flags, tgt_fd, offset);
1515        }
1516
1517        auto ffdp = std::dynamic_pointer_cast<FileFDEntry>(fdep);
1518        if (!ffdp)
1519            return -EBADF;
1520        sim_fd = ffdp->getSimFD();
1521
1522        pmap = (decltype(pmap))mmap(nullptr, length, PROT_READ, MAP_PRIVATE,
1523                                    sim_fd, offset);
1524
1525        if (pmap == (decltype(pmap))-1) {
1526            warn("mmap: failed to map file into host address space");
1527            return -errno;
1528        }
1529    }
1530
1531    // Extend global mmap region if necessary. Note that we ignore the
1532    // start address unless MAP_FIXED is specified.
1533    if (!(tgt_flags & OS::TGT_MAP_FIXED)) {
1534        std::shared_ptr<MemState> mem_state = p->memState;
1535        Addr mmap_end = mem_state->getMmapEnd();
1536
1537        start = p->mmapGrowsDown() ? mmap_end - length : mmap_end;
1538        mmap_end = p->mmapGrowsDown() ? start : mmap_end + length;
1539
1540        mem_state->setMmapEnd(mmap_end);
1541    }
1542
1543    DPRINTF_SYSCALL(Verbose, " mmap range is 0x%x - 0x%x\n",
1544                    start, start + length - 1);
1545
1546    // We only allow mappings to overwrite existing mappings if
1547    // TGT_MAP_FIXED is set. Otherwise it shouldn't be a problem
1548    // because we ignore the start hint if TGT_MAP_FIXED is not set.
1549    int clobber = tgt_flags & OS::TGT_MAP_FIXED;
1550    if (clobber) {
1551        for (auto tc : p->system->threadContexts) {
1552            // If we might be overwriting old mappings, we need to
1553            // invalidate potentially stale mappings out of the TLBs.
1554            tc->getDTBPtr()->flushAll();
1555            tc->getITBPtr()->flushAll();
1556        }
1557    }
1558
1559    // Allocate physical memory and map it in. If the page table is already
1560    // mapped and clobber is not set, the simulator will issue throw a
1561    // fatal and bail out of the simulation.
1562    p->allocateMem(start, length, clobber);
1563
1564    // Transfer content into target address space.
1565    SETranslatingPortProxy &tp = tc->getMemProxy();
1566    if (tgt_flags & OS::TGT_MAP_ANONYMOUS) {
1567        // In general, we should zero the mapped area for anonymous mappings,
1568        // with something like:
1569        //     tp.memsetBlob(start, 0, length);
1570        // However, given that we don't support sparse mappings, and
1571        // some applications can map a couple of gigabytes of space
1572        // (intending sparse usage), that can get painfully expensive.
1573        // Fortunately, since we don't properly implement munmap either,
1574        // there's no danger of remapping used memory, so for now all
1575        // newly mapped memory should already be zeroed so we can skip it.
1576    } else {
1577        // It is possible to mmap an area larger than a file, however
1578        // accessing unmapped portions the system triggers a "Bus error"
1579        // on the host. We must know when to stop copying the file from
1580        // the host into the target address space.
1581        struct stat file_stat;
1582        if (fstat(sim_fd, &file_stat) > 0)
1583            fatal("mmap: cannot stat file");
1584
1585        // Copy the portion of the file that is resident. This requires
1586        // checking both the mmap size and the filesize that we are
1587        // trying to mmap into this space; the mmap size also depends
1588        // on the specified offset into the file.
1589        uint64_t size = std::min((uint64_t)file_stat.st_size - offset,
1590                                 length);
1591        tp.writeBlob(start, pmap, size);
1592
1593        // Cleanup the mmap region before exiting this function.
1594        munmap(pmap, length);
1595
1596        // Maintain the symbol table for dynamic executables.
1597        // The loader will call mmap to map the images into its address
1598        // space and we intercept that here. We can verify that we are
1599        // executing inside the loader by checking the program counter value.
1600        // XXX: with multiprogrammed workloads or multi-node configurations,
1601        // this will not work since there is a single global symbol table.
1602        ObjectFile *interpreter = p->getInterpreter();
1603        if (interpreter) {
1604            Addr text_start = interpreter->textBase();
1605            Addr text_end = text_start + interpreter->textSize();
1606
1607            Addr pc = tc->pcState().pc();
1608
1609            if (pc >= text_start && pc < text_end) {
1610                std::shared_ptr<FDEntry> fdep = (*p->fds)[tgt_fd];
1611                auto ffdp = std::dynamic_pointer_cast<FileFDEntry>(fdep);
1612                ObjectFile *lib = createObjectFile(ffdp->getFileName());
1613
1614                if (lib) {
1615                    lib->loadAllSymbols(debugSymbolTable,
1616                                        lib->textBase(), start);
1617                }
1618            }
1619        }
1620
1621        // Note that we do not zero out the remainder of the mapping. This
1622        // is done by a real system, but it probably will not affect
1623        // execution (hopefully).
1624    }
1625
1626    return start;
1627}
1628
1629template <class OS>
1630SyscallReturn
1631pwrite64Func(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
1632{
1633    int index = 0;
1634    int tgt_fd = p->getSyscallArg(tc, index);
1635    Addr bufPtr = p->getSyscallArg(tc, index);
1636    int nbytes = p->getSyscallArg(tc, index);
1637    int offset = p->getSyscallArg(tc, index);
1638
1639    auto ffdp = std::dynamic_pointer_cast<FileFDEntry>((*p->fds)[tgt_fd]);
1640    if (!ffdp)
1641        return -EBADF;
1642    int sim_fd = ffdp->getSimFD();
1643
1644    BufferArg bufArg(bufPtr, nbytes);
1645    bufArg.copyIn(tc->getMemProxy());
1646
1647    int bytes_written = pwrite(sim_fd, bufArg.bufferPtr(), nbytes, offset);
1648
1649    return (bytes_written == -1) ? -errno : bytes_written;
1650}
1651
1652/// Target mmap() handler.
1653template <class OS>
1654SyscallReturn
1655mmapFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
1656{
1657    return mmapImpl<OS>(desc, num, p, tc, false);
1658}
1659
1660/// Target mmap2() handler.
1661template <class OS>
1662SyscallReturn
1663mmap2Func(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
1664{
1665    return mmapImpl<OS>(desc, num, p, tc, true);
1666}
1667
1668/// Target getrlimit() handler.
1669template <class OS>
1670SyscallReturn
1671getrlimitFunc(SyscallDesc *desc, int callnum, Process *process,
1672              ThreadContext *tc)
1673{
1674    int index = 0;
1675    unsigned resource = process->getSyscallArg(tc, index);
1676    TypedBufferArg<typename OS::rlimit> rlp(process->getSyscallArg(tc, index));
1677
1678    switch (resource) {
1679      case OS::TGT_RLIMIT_STACK:
1680        // max stack size in bytes: make up a number (8MB for now)
1681        rlp->rlim_cur = rlp->rlim_max = 8 * 1024 * 1024;
1682        rlp->rlim_cur = TheISA::htog(rlp->rlim_cur);
1683        rlp->rlim_max = TheISA::htog(rlp->rlim_max);
1684        break;
1685
1686      case OS::TGT_RLIMIT_DATA:
1687        // max data segment size in bytes: make up a number
1688        rlp->rlim_cur = rlp->rlim_max = 256 * 1024 * 1024;
1689        rlp->rlim_cur = TheISA::htog(rlp->rlim_cur);
1690        rlp->rlim_max = TheISA::htog(rlp->rlim_max);
1691        break;
1692
1693      default:
1694        warn("getrlimit: unimplemented resource %d", resource);
1695        return -EINVAL;
1696        break;
1697    }
1698
1699    rlp.copyOut(tc->getMemProxy());
1700    return 0;
1701}
1702
1703template <class OS>
1704SyscallReturn
1705prlimitFunc(SyscallDesc *desc, int callnum, Process *process,
1706            ThreadContext *tc)
1707{
1708    int index = 0;
1709    if (process->getSyscallArg(tc, index) != 0)
1710    {
1711        warn("prlimit: ignoring rlimits for nonzero pid");
1712        return -EPERM;
1713    }
1714    int resource = process->getSyscallArg(tc, index);
1715    Addr n = process->getSyscallArg(tc, index);
1716    if (n != 0)
1717        warn("prlimit: ignoring new rlimit");
1718    Addr o = process->getSyscallArg(tc, index);
1719    if (o != 0)
1720    {
1721        TypedBufferArg<typename OS::rlimit> rlp(o);
1722        switch (resource) {
1723          case OS::TGT_RLIMIT_STACK:
1724            // max stack size in bytes: make up a number (8MB for now)
1725            rlp->rlim_cur = rlp->rlim_max = 8 * 1024 * 1024;
1726            rlp->rlim_cur = TheISA::htog(rlp->rlim_cur);
1727            rlp->rlim_max = TheISA::htog(rlp->rlim_max);
1728            break;
1729          case OS::TGT_RLIMIT_DATA:
1730            // max data segment size in bytes: make up a number
1731            rlp->rlim_cur = rlp->rlim_max = 256*1024*1024;
1732            rlp->rlim_cur = TheISA::htog(rlp->rlim_cur);
1733            rlp->rlim_max = TheISA::htog(rlp->rlim_max);
1734          default:
1735            warn("prlimit: unimplemented resource %d", resource);
1736            return -EINVAL;
1737            break;
1738        }
1739        rlp.copyOut(tc->getMemProxy());
1740    }
1741    return 0;
1742}
1743
1744/// Target clock_gettime() function.
1745template <class OS>
1746SyscallReturn
1747clock_gettimeFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
1748{
1749    int index = 1;
1750    //int clk_id = p->getSyscallArg(tc, index);
1751    TypedBufferArg<typename OS::timespec> tp(p->getSyscallArg(tc, index));
1752
1753    getElapsedTimeNano(tp->tv_sec, tp->tv_nsec);
1754    tp->tv_sec += seconds_since_epoch;
1755    tp->tv_sec = TheISA::htog(tp->tv_sec);
1756    tp->tv_nsec = TheISA::htog(tp->tv_nsec);
1757
1758    tp.copyOut(tc->getMemProxy());
1759
1760    return 0;
1761}
1762
1763/// Target clock_getres() function.
1764template <class OS>
1765SyscallReturn
1766clock_getresFunc(SyscallDesc *desc, int num, Process *p, ThreadContext *tc)
1767{
1768    int index = 1;
1769    TypedBufferArg<typename OS::timespec> tp(p->getSyscallArg(tc, index));
1770
1771    // Set resolution at ns, which is what clock_gettime() returns
1772    tp->tv_sec = 0;
1773    tp->tv_nsec = 1;
1774
1775    tp.copyOut(tc->getMemProxy());
1776
1777    return 0;
1778}
1779
1780/// Target gettimeofday() handler.
1781template <class OS>
1782SyscallReturn
1783gettimeofdayFunc(SyscallDesc *desc, int callnum, Process *process,
1784                 ThreadContext *tc)
1785{
1786    int index = 0;
1787    TypedBufferArg<typename OS::timeval> tp(process->getSyscallArg(tc, index));
1788
1789    getElapsedTimeMicro(tp->tv_sec, tp->tv_usec);
1790    tp->tv_sec += seconds_since_epoch;
1791    tp->tv_sec = TheISA::htog(tp->tv_sec);
1792    tp->tv_usec = TheISA::htog(tp->tv_usec);
1793
1794    tp.copyOut(tc->getMemProxy());
1795
1796    return 0;
1797}
1798
1799
1800/// Target utimes() handler.
1801template <class OS>
1802SyscallReturn
1803utimesFunc(SyscallDesc *desc, int callnum, Process *process,
1804           ThreadContext *tc)
1805{
1806    std::string path;
1807
1808    int index = 0;
1809    if (!tc->getMemProxy().tryReadString(path,
1810                process->getSyscallArg(tc, index))) {
1811        return -EFAULT;
1812    }
1813
1814    TypedBufferArg<typename OS::timeval [2]>
1815        tp(process->getSyscallArg(tc, index));
1816    tp.copyIn(tc->getMemProxy());
1817
1818    struct timeval hostTimeval[2];
1819    for (int i = 0; i < 2; ++i) {
1820        hostTimeval[i].tv_sec = TheISA::gtoh((*tp)[i].tv_sec);
1821        hostTimeval[i].tv_usec = TheISA::gtoh((*tp)[i].tv_usec);
1822    }
1823
1824    // Adjust path for current working directory
1825    path = process->fullPath(path);
1826
1827    int result = utimes(path.c_str(), hostTimeval);
1828
1829    if (result < 0)
1830        return -errno;
1831
1832    return 0;
1833}
1834
1835template <class OS>
1836SyscallReturn
1837execveFunc(SyscallDesc *desc, int callnum, Process *p, ThreadContext *tc)
1838{
1839    desc->setFlags(0);
1840
1841    int index = 0;
1842    std::string path;
1843    SETranslatingPortProxy & mem_proxy = tc->getMemProxy();
1844    if (!mem_proxy.tryReadString(path, p->getSyscallArg(tc, index)))
1845        return -EFAULT;
1846
1847    if (access(path.c_str(), F_OK) == -1)
1848        return -EACCES;
1849
1850    auto read_in = [](std::vector<std::string> & vect,
1851                      SETranslatingPortProxy & mem_proxy,
1852                      Addr mem_loc)
1853    {
1854        for (int inc = 0; ; inc++) {
1855            BufferArg b((mem_loc + sizeof(Addr) * inc), sizeof(Addr));
1856            b.copyIn(mem_proxy);
1857
1858            if (!*(Addr*)b.bufferPtr())
1859                break;
1860
1861            vect.push_back(std::string());
1862            mem_proxy.tryReadString(vect[inc], *(Addr*)b.bufferPtr());
1863        }
1864    };
1865
1866    /**
1867     * Note that ProcessParams is generated by swig and there are no other
1868     * examples of how to create anything but this default constructor. The
1869     * fields are manually initialized instead of passing parameters to the
1870     * constructor.
1871     */
1872    ProcessParams *pp = new ProcessParams();
1873    pp->executable = path;
1874    Addr argv_mem_loc = p->getSyscallArg(tc, index);
1875    read_in(pp->cmd, mem_proxy, argv_mem_loc);
1876    Addr envp_mem_loc = p->getSyscallArg(tc, index);
1877    read_in(pp->env, mem_proxy, envp_mem_loc);
1878    pp->uid = p->uid();
1879    pp->egid = p->egid();
1880    pp->euid = p->euid();
1881    pp->gid = p->gid();
1882    pp->ppid = p->ppid();
1883    pp->pid = p->pid();
1884    pp->input.assign("cin");
1885    pp->output.assign("cout");
1886    pp->errout.assign("cerr");
1887    pp->cwd.assign(p->getcwd());
1888    pp->system = p->system;
1889    /**
1890     * Prevent process object creation with identical PIDs (which will trip
1891     * a fatal check in Process constructor). The execve call is supposed to
1892     * take over the currently executing process' identity but replace
1893     * whatever it is doing with a new process image. Instead of hijacking
1894     * the process object in the simulator, we create a new process object
1895     * and bind to the previous process' thread below (hijacking the thread).
1896     */
1897    p->system->PIDs.erase(p->pid());
1898    Process *new_p = pp->create();
1899    delete pp;
1900
1901    /**
1902     * Work through the file descriptor array and close any files marked
1903     * close-on-exec.
1904     */
1905    new_p->fds = p->fds;
1906    for (int i = 0; i < new_p->fds->getSize(); i++) {
1907        std::shared_ptr<FDEntry> fdep = (*new_p->fds)[i];
1908        if (fdep && fdep->getCOE())
1909            new_p->fds->closeFDEntry(i);
1910    }
1911
1912    *new_p->sigchld = true;
1913
1914    delete p;
1915    tc->clearArchRegs();
1916    tc->setProcessPtr(new_p);
1917    new_p->assignThreadContext(tc->contextId());
1918    new_p->initState();
1919    tc->activate();
1920    TheISA::PCState pcState = tc->pcState();
1921    tc->setNPC(pcState.instAddr());
1922
1923    desc->setFlags(SyscallDesc::SuppressReturnValue);
1924    return 0;
1925}
1926
1927/// Target getrusage() function.
1928template <class OS>
1929SyscallReturn
1930getrusageFunc(SyscallDesc *desc, int callnum, Process *process,
1931              ThreadContext *tc)
1932{
1933    int index = 0;
1934    int who = process->getSyscallArg(tc, index); // THREAD, SELF, or CHILDREN
1935    TypedBufferArg<typename OS::rusage> rup(process->getSyscallArg(tc, index));
1936
1937    rup->ru_utime.tv_sec = 0;
1938    rup->ru_utime.tv_usec = 0;
1939    rup->ru_stime.tv_sec = 0;
1940    rup->ru_stime.tv_usec = 0;
1941    rup->ru_maxrss = 0;
1942    rup->ru_ixrss = 0;
1943    rup->ru_idrss = 0;
1944    rup->ru_isrss = 0;
1945    rup->ru_minflt = 0;
1946    rup->ru_majflt = 0;
1947    rup->ru_nswap = 0;
1948    rup->ru_inblock = 0;
1949    rup->ru_oublock = 0;
1950    rup->ru_msgsnd = 0;
1951    rup->ru_msgrcv = 0;
1952    rup->ru_nsignals = 0;
1953    rup->ru_nvcsw = 0;
1954    rup->ru_nivcsw = 0;
1955
1956    switch (who) {
1957      case OS::TGT_RUSAGE_SELF:
1958        getElapsedTimeMicro(rup->ru_utime.tv_sec, rup->ru_utime.tv_usec);
1959        rup->ru_utime.tv_sec = TheISA::htog(rup->ru_utime.tv_sec);
1960        rup->ru_utime.tv_usec = TheISA::htog(rup->ru_utime.tv_usec);
1961        break;
1962
1963      case OS::TGT_RUSAGE_CHILDREN:
1964        // do nothing.  We have no child processes, so they take no time.
1965        break;
1966
1967      default:
1968        // don't really handle THREAD or CHILDREN, but just warn and
1969        // plow ahead
1970        warn("getrusage() only supports RUSAGE_SELF.  Parameter %d ignored.",
1971             who);
1972    }
1973
1974    rup.copyOut(tc->getMemProxy());
1975
1976    return 0;
1977}
1978
1979/// Target times() function.
1980template <class OS>
1981SyscallReturn
1982timesFunc(SyscallDesc *desc, int callnum, Process *process,
1983          ThreadContext *tc)
1984{
1985    int index = 0;
1986    TypedBufferArg<typename OS::tms> bufp(process->getSyscallArg(tc, index));
1987
1988    // Fill in the time structure (in clocks)
1989    int64_t clocks = curTick() * OS::M5_SC_CLK_TCK / SimClock::Int::s;
1990    bufp->tms_utime = clocks;
1991    bufp->tms_stime = 0;
1992    bufp->tms_cutime = 0;
1993    bufp->tms_cstime = 0;
1994
1995    // Convert to host endianness
1996    bufp->tms_utime = TheISA::htog(bufp->tms_utime);
1997
1998    // Write back
1999    bufp.copyOut(tc->getMemProxy());
2000
2001    // Return clock ticks since system boot
2002    return clocks;
2003}
2004
2005/// Target time() function.
2006template <class OS>
2007SyscallReturn
2008timeFunc(SyscallDesc *desc, int callnum, Process *process, ThreadContext *tc)
2009{
2010    typename OS::time_t sec, usec;
2011    getElapsedTimeMicro(sec, usec);
2012    sec += seconds_since_epoch;
2013
2014    int index = 0;
2015    Addr taddr = (Addr)process->getSyscallArg(tc, index);
2016    if (taddr != 0) {
2017        typename OS::time_t t = sec;
2018        t = TheISA::htog(t);
2019        SETranslatingPortProxy &p = tc->getMemProxy();
2020        p.writeBlob(taddr, (uint8_t*)&t, (int)sizeof(typename OS::time_t));
2021    }
2022    return sec;
2023}
2024
2025template <class OS>
2026SyscallReturn
2027tgkillFunc(SyscallDesc *desc, int num, Process *process, ThreadContext *tc)
2028{
2029    int index = 0;
2030    int tgid = process->getSyscallArg(tc, index);
2031    int tid = process->getSyscallArg(tc, index);
2032    int sig = process->getSyscallArg(tc, index);
2033
2034    /**
2035     * This system call is intended to allow killing a specific thread
2036     * within an arbitrary thread group if sanctioned with permission checks.
2037     * It's usually true that threads share the termination signal as pointed
2038     * out by the pthread_kill man page and this seems to be the intended
2039     * usage. Due to this being an emulated environment, assume the following:
2040     * Threads are allowed to call tgkill because the EUID for all threads
2041     * should be the same. There is no signal handling mechanism for kernel
2042     * registration of signal handlers since signals are poorly supported in
2043     * emulation mode. Since signal handlers cannot be registered, all
2044     * threads within in a thread group must share the termination signal.
2045     * We never exhaust PIDs so there's no chance of finding the wrong one
2046     * due to PID rollover.
2047     */
2048
2049    System *sys = tc->getSystemPtr();
2050    Process *tgt_proc = nullptr;
2051    for (int i = 0; i < sys->numContexts(); i++) {
2052        Process *temp = sys->threadContexts[i]->getProcessPtr();
2053        if (temp->pid() == tid) {
2054            tgt_proc = temp;
2055            break;
2056        }
2057    }
2058
2059    if (sig != 0 || sig != OS::TGT_SIGABRT)
2060        return -EINVAL;
2061
2062    if (tgt_proc == nullptr)
2063        return -ESRCH;
2064
2065    if (tgid != -1 && tgt_proc->tgid() != tgid)
2066        return -ESRCH;
2067
2068    if (sig == OS::TGT_SIGABRT)
2069        exitGroupFunc(desc, 252, process, tc);
2070
2071    return 0;
2072}
2073
2074
2075#endif // __SIM_SYSCALL_EMUL_HH__
2076