2003-12-02 04:34:38 +01:00
|
|
|
/*
|
2005-03-10 20:20:12 +01:00
|
|
|
* Copyright (c) 2003-2005 The Regents of The University of Michigan
|
2003-12-02 04:34:38 +01:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2005-01-15 00:34:56 +01:00
|
|
|
#ifndef __SIM_SYSCALL_EMUL_HH__
|
|
|
|
#define __SIM_SYSCALL_EMUL_HH__
|
2003-12-02 04:34:38 +01:00
|
|
|
|
2006-02-10 20:21:32 +01:00
|
|
|
#define BSD_HOST (defined(__APPLE__) || defined(__OpenBSD__) || \
|
|
|
|
defined(__FreeBSD__))
|
|
|
|
|
2003-12-02 04:34:38 +01:00
|
|
|
///
|
|
|
|
/// @file syscall_emul.hh
|
|
|
|
///
|
|
|
|
/// This file defines objects used to emulate syscalls from the target
|
|
|
|
/// application on the host machine.
|
|
|
|
|
2005-01-15 00:34:56 +01:00
|
|
|
#include <errno.h>
|
2003-12-02 04:34:38 +01:00
|
|
|
#include <string>
|
2005-06-30 06:42:27 +02:00
|
|
|
#ifdef __CYGWIN32__
|
|
|
|
#include <sys/fcntl.h> // for O_BINARY
|
|
|
|
#endif
|
2005-11-22 18:08:08 +01:00
|
|
|
#include <sys/uio.h>
|
2003-12-02 04:34:38 +01:00
|
|
|
|
|
|
|
#include "base/intmath.hh" // for RoundUp
|
2006-02-21 05:26:39 +01:00
|
|
|
#include "mem/translating_port.hh"
|
2006-02-12 18:40:58 +01:00
|
|
|
#include "arch/isa_traits.hh" // for Addr
|
2003-12-02 04:34:38 +01:00
|
|
|
|
2005-01-15 00:34:56 +01:00
|
|
|
#include "base/trace.hh"
|
|
|
|
#include "cpu/exec_context.hh"
|
2006-02-16 04:05:23 +01:00
|
|
|
#include "cpu/base.hh"
|
2005-01-15 00:34:56 +01:00
|
|
|
#include "sim/process.hh"
|
2003-12-02 04:34:38 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// System call descriptor.
|
|
|
|
///
|
|
|
|
class SyscallDesc {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2003-12-02 07:39:27 +01:00
|
|
|
/// Typedef for target syscall handler functions.
|
2005-03-09 21:52:10 +01:00
|
|
|
typedef SyscallReturn (*FuncPtr)(SyscallDesc *, int num,
|
2003-12-02 04:34:38 +01:00
|
|
|
Process *, ExecContext *);
|
|
|
|
|
|
|
|
const char *name; //!< Syscall name (e.g., "open").
|
|
|
|
FuncPtr funcPtr; //!< Pointer to emulation function.
|
|
|
|
int flags; //!< Flags (see Flags enum).
|
|
|
|
|
|
|
|
/// Flag values for controlling syscall behavior.
|
|
|
|
enum Flags {
|
|
|
|
/// Don't set return regs according to funcPtr return value.
|
|
|
|
/// Used for syscalls with non-standard return conventions
|
|
|
|
/// that explicitly set the ExecContext regs (e.g.,
|
|
|
|
/// sigreturn).
|
|
|
|
SuppressReturnValue = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Constructor.
|
|
|
|
SyscallDesc(const char *_name, FuncPtr _funcPtr, int _flags = 0)
|
|
|
|
: name(_name), funcPtr(_funcPtr), flags(_flags)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Emulate the syscall. Public interface for calling through funcPtr.
|
|
|
|
void doSyscall(int callnum, Process *proc, ExecContext *xc);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class BaseBufferArg {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
BaseBufferArg(Addr _addr, int _size) : addr(_addr), size(_size)
|
|
|
|
{
|
|
|
|
bufPtr = new uint8_t[size];
|
|
|
|
// clear out buffer: in case we only partially populate this,
|
|
|
|
// and then do a copyOut(), we want to make sure we don't
|
|
|
|
// introduce any random junk into the simulated address space
|
|
|
|
memset(bufPtr, 0, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~BaseBufferArg() { delete [] bufPtr; }
|
|
|
|
|
|
|
|
//
|
|
|
|
// copy data into simulator space (read from target memory)
|
|
|
|
//
|
2006-02-21 05:26:39 +01:00
|
|
|
virtual bool copyIn(TranslatingPort *memport)
|
2003-12-02 04:34:38 +01:00
|
|
|
{
|
2006-02-15 23:52:49 +01:00
|
|
|
memport->readBlobFunctional(addr, bufPtr, size);
|
2003-12-02 04:34:38 +01:00
|
|
|
return true; // no EFAULT detection for now
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// copy data out of simulator space (write to target memory)
|
|
|
|
//
|
2006-02-21 05:26:39 +01:00
|
|
|
virtual bool copyOut(TranslatingPort *memport)
|
2003-12-02 04:34:38 +01:00
|
|
|
{
|
2006-02-15 23:52:49 +01:00
|
|
|
memport->writeBlobFunctional(addr, bufPtr, size);
|
2003-12-02 04:34:38 +01:00
|
|
|
return true; // no EFAULT detection for now
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
Addr addr;
|
|
|
|
int size;
|
|
|
|
uint8_t *bufPtr;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class BufferArg : public BaseBufferArg
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BufferArg(Addr _addr, int _size) : BaseBufferArg(_addr, _size) { }
|
|
|
|
void *bufferPtr() { return bufPtr; }
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class TypedBufferArg : public BaseBufferArg
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// user can optionally specify a specific number of bytes to
|
|
|
|
// allocate to deal with those structs that have variable-size
|
|
|
|
// arrays at the end
|
|
|
|
TypedBufferArg(Addr _addr, int _size = sizeof(T))
|
|
|
|
: BaseBufferArg(_addr, _size)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
// type case
|
|
|
|
operator T*() { return (T *)bufPtr; }
|
|
|
|
|
|
|
|
// dereference operators
|
2004-02-03 00:55:35 +01:00
|
|
|
T &operator*() { return *((T *)bufPtr); }
|
2003-12-02 04:34:38 +01:00
|
|
|
T* operator->() { return (T *)bufPtr; }
|
2004-02-03 00:55:35 +01:00
|
|
|
T &operator[](int i) { return ((T *)bufPtr)[i]; }
|
2003-12-02 04:34:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// The following emulation functions are generic enough that they
|
|
|
|
// don't need to be recompiled for different emulated OS's. They are
|
|
|
|
// defined in sim/syscall_emul.cc.
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2003-12-02 07:39:27 +01:00
|
|
|
/// Handler for unimplemented syscalls that we haven't thought about.
|
2005-06-03 22:19:34 +02:00
|
|
|
SyscallReturn unimplementedFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
2003-12-02 07:39:27 +01:00
|
|
|
|
|
|
|
/// Handler for unimplemented syscalls that we never intend to
|
|
|
|
/// implement (signal handling, etc.) and should not affect the correct
|
|
|
|
/// behavior of the program. Print a warning only if the appropriate
|
|
|
|
/// trace flag is enabled. Return success to the target program.
|
2005-06-03 22:19:34 +02:00
|
|
|
SyscallReturn ignoreFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
2003-12-02 04:34:38 +01:00
|
|
|
|
2003-12-02 07:39:27 +01:00
|
|
|
/// Target exit() handler: terminate simulation.
|
2005-06-03 22:19:34 +02:00
|
|
|
SyscallReturn exitFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
2003-12-02 07:39:27 +01:00
|
|
|
|
|
|
|
/// Target getpagesize() handler.
|
2005-06-03 22:19:34 +02:00
|
|
|
SyscallReturn getpagesizeFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
2003-12-02 07:39:27 +01:00
|
|
|
|
|
|
|
/// Target obreak() handler: set brk address.
|
2005-06-03 22:19:34 +02:00
|
|
|
SyscallReturn obreakFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
2003-12-02 07:39:27 +01:00
|
|
|
|
|
|
|
/// Target close() handler.
|
2005-06-03 22:19:34 +02:00
|
|
|
SyscallReturn closeFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
2003-12-02 07:39:27 +01:00
|
|
|
|
|
|
|
/// Target read() handler.
|
2005-06-03 22:19:34 +02:00
|
|
|
SyscallReturn readFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
2003-12-02 07:39:27 +01:00
|
|
|
|
|
|
|
/// Target write() handler.
|
2005-06-03 22:19:34 +02:00
|
|
|
SyscallReturn writeFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
2003-12-02 07:39:27 +01:00
|
|
|
|
|
|
|
/// Target lseek() handler.
|
2005-06-03 22:19:34 +02:00
|
|
|
SyscallReturn lseekFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
2003-12-02 07:39:27 +01:00
|
|
|
|
|
|
|
/// Target munmap() handler.
|
2005-06-03 22:19:34 +02:00
|
|
|
SyscallReturn munmapFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
2003-12-02 07:39:27 +01:00
|
|
|
|
|
|
|
/// Target gethostname() handler.
|
2005-06-03 22:19:34 +02:00
|
|
|
SyscallReturn gethostnameFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
2003-12-02 04:34:38 +01:00
|
|
|
|
2004-02-05 18:16:17 +01:00
|
|
|
/// Target unlink() handler.
|
2005-06-03 22:19:34 +02:00
|
|
|
SyscallReturn unlinkFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
2004-02-05 18:16:17 +01:00
|
|
|
|
|
|
|
/// Target rename() handler.
|
2005-06-03 22:19:34 +02:00
|
|
|
SyscallReturn renameFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
|
|
|
|
|
|
|
/// Target truncate() handler.
|
|
|
|
SyscallReturn truncateFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
|
|
|
|
|
|
|
/// Target ftruncate() handler.
|
|
|
|
SyscallReturn ftruncateFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
2004-02-05 18:16:17 +01:00
|
|
|
|
2005-11-22 18:08:08 +01:00
|
|
|
/// Target chown() handler.
|
|
|
|
SyscallReturn chownFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
|
|
|
|
|
|
|
/// Target fchown() handler.
|
|
|
|
SyscallReturn fchownFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
2006-02-19 05:44:22 +01:00
|
|
|
/// Target fnctl() handler.
|
|
|
|
SyscallReturn fcntlFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *process, ExecContext *xc);
|
|
|
|
|
2006-03-09 21:42:09 +01:00
|
|
|
/// Target setuid() handler.
|
|
|
|
SyscallReturn setuidFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
|
|
|
/// Target getpid() handler.
|
|
|
|
SyscallReturn getpidFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
|
|
|
/// Target getuid() handler.
|
|
|
|
SyscallReturn getuidFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
|
|
|
/// Target getgid() handler.
|
|
|
|
SyscallReturn getgidFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
|
|
|
/// Target getppid() handler.
|
|
|
|
SyscallReturn getppidFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
|
|
|
/// Target geteuid() handler.
|
|
|
|
SyscallReturn geteuidFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
|
|
|
/// Target getegid() handler.
|
|
|
|
SyscallReturn getegidFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Pseudo Funcs - These functions use a different return convension,
|
|
|
|
/// returning a second value in a register other than the normal return register
|
|
|
|
SyscallReturn pipePseudoFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *process, ExecContext *xc);
|
|
|
|
|
|
|
|
/// Target getpidPseudo() handler.
|
|
|
|
SyscallReturn getpidPseudoFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
|
|
|
/// Target getuidPseudo() handler.
|
|
|
|
SyscallReturn getuidPseudoFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
|
|
|
/// Target getgidPseudo() handler.
|
|
|
|
SyscallReturn getgidPseudoFunc(SyscallDesc *desc, int num,
|
|
|
|
Process *p, ExecContext *xc);
|
|
|
|
|
|
|
|
|
2005-01-15 00:34:56 +01:00
|
|
|
/// This struct is used to build an target-OS-dependent table that
|
|
|
|
/// maps the target's open() flags to the host open() flags.
|
|
|
|
struct OpenFlagTransTable {
|
|
|
|
int tgtFlag; //!< Target system flag value.
|
|
|
|
int hostFlag; //!< Corresponding host system flag value.
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// A readable name for 1,000,000, for converting microseconds to seconds.
|
|
|
|
const int one_million = 1000000;
|
|
|
|
|
|
|
|
/// Approximate seconds since the epoch (1/1/1970). About a billion,
|
|
|
|
/// by my reckoning. We want to keep this a constant (not use the
|
|
|
|
/// real-world time) to keep simulations repeatable.
|
|
|
|
const unsigned seconds_since_epoch = 1000000000;
|
|
|
|
|
|
|
|
/// Helper function to convert current elapsed time to seconds and
|
|
|
|
/// microseconds.
|
|
|
|
template <class T1, class T2>
|
|
|
|
void
|
|
|
|
getElapsedTime(T1 &sec, T2 &usec)
|
|
|
|
{
|
2005-03-29 14:55:44 +02:00
|
|
|
int elapsed_usecs = curTick / Clock::Int::us;
|
2005-01-15 00:34:56 +01:00
|
|
|
sec = elapsed_usecs / one_million;
|
|
|
|
usec = elapsed_usecs % one_million;
|
|
|
|
}
|
|
|
|
|
2003-12-02 04:34:38 +01:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// The following emulation functions are generic, but need to be
|
|
|
|
// templated to account for differences in types, constants, etc.
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
2003-12-02 07:39:27 +01:00
|
|
|
/// Target ioctl() handler. For the most part, programs call ioctl()
|
|
|
|
/// only to find out if their stdout is a tty, to determine whether to
|
|
|
|
/// do line or block buffering.
|
2003-12-02 04:34:38 +01:00
|
|
|
template <class OS>
|
2005-03-09 21:52:10 +01:00
|
|
|
SyscallReturn
|
2003-12-02 04:34:38 +01:00
|
|
|
ioctlFunc(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
int fd = xc->getSyscallArg(0);
|
|
|
|
unsigned req = xc->getSyscallArg(1);
|
|
|
|
|
2005-11-11 03:05:31 +01:00
|
|
|
DPRINTF(SyscallVerbose, "ioctl(%d, 0x%x, ...)\n", fd, req);
|
2003-12-02 04:34:38 +01:00
|
|
|
|
|
|
|
if (fd < 0 || process->sim_fd(fd) < 0) {
|
|
|
|
// doesn't map to any simulator fd: not a valid target fd
|
2005-03-10 20:20:12 +01:00
|
|
|
return -EBADF;
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (req) {
|
|
|
|
case OS::TIOCISATTY:
|
|
|
|
case OS::TIOCGETP:
|
|
|
|
case OS::TIOCSETP:
|
|
|
|
case OS::TIOCSETN:
|
|
|
|
case OS::TIOCSETC:
|
|
|
|
case OS::TIOCGETC:
|
2004-02-05 18:16:17 +01:00
|
|
|
case OS::TIOCGETS:
|
|
|
|
case OS::TIOCGETA:
|
2005-03-10 20:20:12 +01:00
|
|
|
return -ENOTTY;
|
2003-12-02 04:34:38 +01:00
|
|
|
|
|
|
|
default:
|
2005-06-03 22:19:34 +02:00
|
|
|
fatal("Unsupported ioctl call: ioctl(%d, 0x%x, ...) @ 0x%llx\n",
|
|
|
|
fd, req, xc->readPC());
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-02 07:39:27 +01:00
|
|
|
/// Target open() handler.
|
2003-12-02 04:34:38 +01:00
|
|
|
template <class OS>
|
2005-03-09 21:52:10 +01:00
|
|
|
SyscallReturn
|
2003-12-02 04:34:38 +01:00
|
|
|
openFunc(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
std::string path;
|
|
|
|
|
2006-03-10 00:35:28 +01:00
|
|
|
if (xc->port->readStringFunctional(path, xc->getSyscallArg(0)) != NoFault)
|
2005-03-10 20:20:12 +01:00
|
|
|
return -EFAULT;
|
2003-12-02 04:34:38 +01:00
|
|
|
|
|
|
|
if (path == "/dev/sysdev0") {
|
|
|
|
// This is a memory-mapped high-resolution timer device on Alpha.
|
|
|
|
// We don't support it, so just punt.
|
2005-06-03 22:19:34 +02:00
|
|
|
warn("Ignoring open(%s, ...)\n", path);
|
2005-03-10 20:20:12 +01:00
|
|
|
return -ENOENT;
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int tgtFlags = xc->getSyscallArg(1);
|
|
|
|
int mode = xc->getSyscallArg(2);
|
|
|
|
int hostFlags = 0;
|
|
|
|
|
|
|
|
// translate open flags
|
|
|
|
for (int i = 0; i < OS::NUM_OPEN_FLAGS; i++) {
|
|
|
|
if (tgtFlags & OS::openFlagTable[i].tgtFlag) {
|
|
|
|
tgtFlags &= ~OS::openFlagTable[i].tgtFlag;
|
|
|
|
hostFlags |= OS::openFlagTable[i].hostFlag;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// any target flags left?
|
|
|
|
if (tgtFlags != 0)
|
2005-06-03 22:19:34 +02:00
|
|
|
warn("Syscall: open: cannot decode flags 0x%x", tgtFlags);
|
2003-12-02 04:34:38 +01:00
|
|
|
|
|
|
|
#ifdef __CYGWIN32__
|
|
|
|
hostFlags |= O_BINARY;
|
|
|
|
#endif
|
|
|
|
|
2005-06-03 22:19:34 +02:00
|
|
|
DPRINTF(SyscallVerbose, "opening file %s\n", path.c_str());
|
|
|
|
|
2003-12-02 04:34:38 +01:00
|
|
|
// open the file
|
|
|
|
int fd = open(path.c_str(), hostFlags, mode);
|
|
|
|
|
2005-11-11 03:08:33 +01:00
|
|
|
return (fd == -1) ? -errno : process->alloc_fd(fd);
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-22 18:08:08 +01:00
|
|
|
/// Target chmod() handler.
|
|
|
|
template <class OS>
|
|
|
|
SyscallReturn
|
|
|
|
chmodFunc(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
std::string path;
|
|
|
|
|
2006-03-10 00:35:28 +01:00
|
|
|
if (xc->port->readStringFunctional(path, xc->getSyscallArg(0)) != NoFault)
|
2005-11-22 18:08:08 +01:00
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
uint32_t mode = xc->getSyscallArg(1);
|
|
|
|
mode_t hostMode = 0;
|
|
|
|
|
|
|
|
// XXX translate mode flags via OS::something???
|
|
|
|
hostMode = mode;
|
|
|
|
|
|
|
|
// do the chmod
|
|
|
|
int result = chmod(path.c_str(), hostMode);
|
|
|
|
if (result < 0)
|
2006-03-05 03:06:40 +01:00
|
|
|
return -errno;
|
2005-11-22 18:08:08 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Target fchmod() handler.
|
|
|
|
template <class OS>
|
|
|
|
SyscallReturn
|
|
|
|
fchmodFunc(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
int fd = xc->getSyscallArg(0);
|
|
|
|
if (fd < 0 || process->sim_fd(fd) < 0) {
|
|
|
|
// doesn't map to any simulator fd: not a valid target fd
|
|
|
|
return -EBADF;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t mode = xc->getSyscallArg(1);
|
|
|
|
mode_t hostMode = 0;
|
|
|
|
|
|
|
|
// XXX translate mode flags via OS::someting???
|
|
|
|
hostMode = mode;
|
|
|
|
|
|
|
|
// do the fchmod
|
|
|
|
int result = fchmod(process->sim_fd(fd), hostMode);
|
|
|
|
if (result < 0)
|
2006-03-05 03:06:40 +01:00
|
|
|
return -errno;
|
2005-11-22 18:08:08 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-02 07:39:27 +01:00
|
|
|
/// Target stat() handler.
|
2003-12-02 04:34:38 +01:00
|
|
|
template <class OS>
|
2005-03-09 21:52:10 +01:00
|
|
|
SyscallReturn
|
2003-12-02 04:34:38 +01:00
|
|
|
statFunc(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
std::string path;
|
|
|
|
|
2006-03-10 00:35:28 +01:00
|
|
|
if (xc->port->readStringFunctional(path, xc->getSyscallArg(0)) != NoFault)
|
2006-02-21 05:26:39 +01:00
|
|
|
return -EFAULT;
|
2003-12-02 04:34:38 +01:00
|
|
|
|
|
|
|
struct stat hostBuf;
|
|
|
|
int result = stat(path.c_str(), &hostBuf);
|
|
|
|
|
|
|
|
if (result < 0)
|
2006-03-05 03:06:40 +01:00
|
|
|
return -errno;
|
2003-12-02 04:34:38 +01:00
|
|
|
|
2006-02-21 05:26:39 +01:00
|
|
|
OS::copyOutStatBuf(xc->port, xc->getSyscallArg(1), &hostBuf);
|
2003-12-02 04:34:38 +01:00
|
|
|
|
2005-03-10 20:20:12 +01:00
|
|
|
return 0;
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-22 18:08:08 +01:00
|
|
|
/// Target fstat64() handler.
|
|
|
|
template <class OS>
|
|
|
|
SyscallReturn
|
|
|
|
fstat64Func(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
int fd = xc->getSyscallArg(0);
|
|
|
|
if (fd < 0 || process->sim_fd(fd) < 0) {
|
|
|
|
// doesn't map to any simulator fd: not a valid target fd
|
|
|
|
return -EBADF;
|
|
|
|
}
|
|
|
|
|
2006-02-10 20:59:37 +01:00
|
|
|
#if BSD_HOST
|
2006-02-10 20:21:32 +01:00
|
|
|
struct stat hostBuf;
|
|
|
|
int result = fstat(process->sim_fd(fd), &hostBuf);
|
|
|
|
#else
|
|
|
|
struct stat64 hostBuf;
|
2005-11-22 18:08:08 +01:00
|
|
|
int result = fstat64(process->sim_fd(fd), &hostBuf);
|
2006-02-10 20:21:32 +01:00
|
|
|
#endif
|
2005-11-22 18:08:08 +01:00
|
|
|
|
|
|
|
if (result < 0)
|
2006-03-05 03:06:40 +01:00
|
|
|
return -errno;
|
2005-11-22 18:08:08 +01:00
|
|
|
|
2006-03-10 00:35:28 +01:00
|
|
|
OS::copyOutStat64Buf(xc->port, fd, xc->getSyscallArg(1), &hostBuf);
|
2005-11-22 18:08:08 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-02 07:39:27 +01:00
|
|
|
/// Target lstat() handler.
|
2003-12-02 04:34:38 +01:00
|
|
|
template <class OS>
|
2005-03-09 21:52:10 +01:00
|
|
|
SyscallReturn
|
2003-12-02 04:34:38 +01:00
|
|
|
lstatFunc(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
std::string path;
|
|
|
|
|
2006-03-10 00:35:28 +01:00
|
|
|
if (xc->port->readStringFunctional(path, xc->getSyscallArg(0)) != NoFault)
|
2006-02-21 05:26:39 +01:00
|
|
|
return -EFAULT;
|
2003-12-02 04:34:38 +01:00
|
|
|
|
|
|
|
struct stat hostBuf;
|
|
|
|
int result = lstat(path.c_str(), &hostBuf);
|
|
|
|
|
|
|
|
if (result < 0)
|
2005-03-10 20:20:12 +01:00
|
|
|
return -errno;
|
2003-12-02 04:34:38 +01:00
|
|
|
|
2006-02-21 05:26:39 +01:00
|
|
|
OS::copyOutStatBuf(xc->port, xc->getSyscallArg(1), &hostBuf);
|
2003-12-02 04:34:38 +01:00
|
|
|
|
2005-03-10 20:20:12 +01:00
|
|
|
return 0;
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
2005-11-22 18:08:08 +01:00
|
|
|
/// Target lstat64() handler.
|
|
|
|
template <class OS>
|
|
|
|
SyscallReturn
|
|
|
|
lstat64Func(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
std::string path;
|
|
|
|
|
2006-03-10 00:35:28 +01:00
|
|
|
if (xc->port->readStringFunctional(path, xc->getSyscallArg(0)) != NoFault)
|
2006-02-21 05:26:39 +01:00
|
|
|
return -EFAULT;
|
2005-11-22 18:08:08 +01:00
|
|
|
|
2006-02-10 20:59:37 +01:00
|
|
|
#if BSD_HOST
|
2006-02-10 20:21:32 +01:00
|
|
|
struct stat hostBuf;
|
|
|
|
int result = lstat(path.c_str(), &hostBuf);
|
|
|
|
#else
|
2005-11-22 18:08:08 +01:00
|
|
|
struct stat64 hostBuf;
|
|
|
|
int result = lstat64(path.c_str(), &hostBuf);
|
2006-02-10 20:21:32 +01:00
|
|
|
#endif
|
2005-11-22 18:08:08 +01:00
|
|
|
|
|
|
|
if (result < 0)
|
|
|
|
return -errno;
|
|
|
|
|
2006-03-10 00:35:28 +01:00
|
|
|
OS::copyOutStat64Buf(xc->port, -1, xc->getSyscallArg(1), &hostBuf);
|
2005-11-22 18:08:08 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-12-02 07:39:27 +01:00
|
|
|
/// Target fstat() handler.
|
2003-12-02 04:34:38 +01:00
|
|
|
template <class OS>
|
2005-03-09 21:52:10 +01:00
|
|
|
SyscallReturn
|
2003-12-02 04:34:38 +01:00
|
|
|
fstatFunc(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
int fd = process->sim_fd(xc->getSyscallArg(0));
|
|
|
|
|
2005-11-11 03:05:31 +01:00
|
|
|
DPRINTF(SyscallVerbose, "fstat(%d, ...)\n", fd);
|
2003-12-02 04:34:38 +01:00
|
|
|
|
|
|
|
if (fd < 0)
|
2005-03-10 20:20:12 +01:00
|
|
|
return -EBADF;
|
2003-12-02 04:34:38 +01:00
|
|
|
|
|
|
|
struct stat hostBuf;
|
|
|
|
int result = fstat(fd, &hostBuf);
|
|
|
|
|
|
|
|
if (result < 0)
|
2005-03-10 20:20:12 +01:00
|
|
|
return -errno;
|
2003-12-02 04:34:38 +01:00
|
|
|
|
2006-02-21 05:26:39 +01:00
|
|
|
OS::copyOutStatBuf(xc->port, xc->getSyscallArg(1), &hostBuf);
|
2003-12-02 04:34:38 +01:00
|
|
|
|
2005-03-10 20:20:12 +01:00
|
|
|
return 0;
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-03 22:19:34 +02:00
|
|
|
/// Target statfs() handler.
|
|
|
|
template <class OS>
|
|
|
|
SyscallReturn
|
|
|
|
statfsFunc(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
std::string path;
|
|
|
|
|
2006-03-10 00:35:28 +01:00
|
|
|
if (xc->port->readStringFunctional(path, xc->getSyscallArg(0)) != NoFault)
|
2006-02-21 05:26:39 +01:00
|
|
|
return -EFAULT;
|
2005-06-03 22:19:34 +02:00
|
|
|
|
|
|
|
struct statfs hostBuf;
|
|
|
|
int result = statfs(path.c_str(), &hostBuf);
|
|
|
|
|
|
|
|
if (result < 0)
|
2006-03-05 03:06:40 +01:00
|
|
|
return -errno;
|
2005-06-03 22:19:34 +02:00
|
|
|
|
2006-02-21 05:26:39 +01:00
|
|
|
OS::copyOutStatfsBuf(xc->port, xc->getSyscallArg(1), &hostBuf);
|
2005-06-03 22:19:34 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Target fstatfs() handler.
|
|
|
|
template <class OS>
|
|
|
|
SyscallReturn
|
|
|
|
fstatfsFunc(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
int fd = process->sim_fd(xc->getSyscallArg(0));
|
|
|
|
|
|
|
|
if (fd < 0)
|
|
|
|
return -EBADF;
|
|
|
|
|
|
|
|
struct statfs hostBuf;
|
|
|
|
int result = fstatfs(fd, &hostBuf);
|
|
|
|
|
|
|
|
if (result < 0)
|
2006-03-05 03:06:40 +01:00
|
|
|
return -errno;
|
2005-06-03 22:19:34 +02:00
|
|
|
|
2006-02-21 05:26:39 +01:00
|
|
|
OS::copyOutStatfsBuf(xc->port, xc->getSyscallArg(1), &hostBuf);
|
2005-06-03 22:19:34 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-22 18:08:08 +01:00
|
|
|
/// Target writev() handler.
|
|
|
|
template <class OS>
|
|
|
|
SyscallReturn
|
|
|
|
writevFunc(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
int fd = xc->getSyscallArg(0);
|
|
|
|
if (fd < 0 || process->sim_fd(fd) < 0) {
|
|
|
|
// doesn't map to any simulator fd: not a valid target fd
|
|
|
|
return -EBADF;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t tiov_base = xc->getSyscallArg(1);
|
|
|
|
size_t count = xc->getSyscallArg(2);
|
|
|
|
struct iovec hiov[count];
|
|
|
|
for (int i = 0; i < count; ++i)
|
|
|
|
{
|
|
|
|
typename OS::tgt_iovec tiov;
|
2006-02-21 05:26:39 +01:00
|
|
|
xc->port->readBlobFunctional(tiov_base + i*sizeof(typename OS::tgt_iovec),(uint8_t*)
|
2005-11-22 18:08:08 +01:00
|
|
|
&tiov, sizeof(typename OS::tgt_iovec));
|
2006-02-15 07:23:13 +01:00
|
|
|
hiov[i].iov_len = gtoh(tiov.iov_len);
|
2005-11-22 18:08:08 +01:00
|
|
|
hiov[i].iov_base = new char [hiov[i].iov_len];
|
2006-03-10 00:35:28 +01:00
|
|
|
xc->port->readBlobFunctional(gtoh(tiov.iov_base),
|
2006-02-21 05:26:39 +01:00
|
|
|
(uint8_t *)hiov[i].iov_base, hiov[i].iov_len);
|
2005-11-22 18:08:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int result = writev(process->sim_fd(fd), hiov, count);
|
|
|
|
|
|
|
|
for (int i = 0; i < count; ++i)
|
|
|
|
{
|
|
|
|
delete [] (char *)hiov[i].iov_base;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result < 0)
|
2006-03-05 03:06:40 +01:00
|
|
|
return -errno;
|
2005-11-22 18:08:08 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-02 07:39:27 +01:00
|
|
|
/// Target mmap() handler.
|
|
|
|
///
|
|
|
|
/// We don't really handle mmap(). If the target is mmaping an
|
|
|
|
/// anonymous region or /dev/zero, we can get away with doing basically
|
|
|
|
/// nothing (since memory is initialized to zero and the simulator
|
|
|
|
/// doesn't really check addresses anyway). Always print a warning,
|
|
|
|
/// since this could be seriously broken if we're not mapping
|
|
|
|
/// /dev/zero.
|
2003-12-02 04:34:38 +01:00
|
|
|
//
|
2003-12-02 07:39:27 +01:00
|
|
|
/// Someday we should explicitly check for /dev/zero in open, flag the
|
|
|
|
/// file descriptor, and fail (or implement!) a non-anonymous mmap to
|
|
|
|
/// anything else.
|
2003-12-02 04:34:38 +01:00
|
|
|
template <class OS>
|
2005-03-09 21:52:10 +01:00
|
|
|
SyscallReturn
|
2003-12-02 04:34:38 +01:00
|
|
|
mmapFunc(SyscallDesc *desc, int num, Process *p, ExecContext *xc)
|
|
|
|
{
|
|
|
|
Addr start = xc->getSyscallArg(0);
|
|
|
|
uint64_t length = xc->getSyscallArg(1);
|
|
|
|
// int prot = xc->getSyscallArg(2);
|
|
|
|
int flags = xc->getSyscallArg(3);
|
2003-12-02 07:39:27 +01:00
|
|
|
// int fd = p->sim_fd(xc->getSyscallArg(4));
|
2003-12-02 04:34:38 +01:00
|
|
|
// int offset = xc->getSyscallArg(5);
|
|
|
|
|
|
|
|
if (start == 0) {
|
|
|
|
// user didn't give an address... pick one from our "mmap region"
|
2005-02-23 17:45:25 +01:00
|
|
|
start = p->mmap_end;
|
Changes to untemplate StaticInst and StaticInstPtr, change the isa to a namespace instead of a class, an improvement to the architecture specific header file selection system, and fixed up a few include paths.
arch/alpha/alpha_linux_process.cc:
Added using directive for AlphaISA namespace
arch/alpha/alpha_memory.hh:
arch/alpha/isa/branch.isa:
cpu/pc_event.hh:
Added typedefs for Addr
arch/alpha/alpha_tru64_process.cc:
arch/alpha/arguments.cc:
Added using directive for AlphaISA
arch/alpha/ev5.hh:
Added an include of arch/alpha/isa_traits.hh, and a using directive for the AlphaISA namespace.
arch/alpha/faults.hh:
Added a typedef for the Addr type, and changed the formatting of the faults slightly.
arch/alpha/isa/main.isa:
Untemplatized StaticInst, added a using for namespace AlphaISA to show up in decoder.cc and the exec.ccs, relocated makeNop to decoder.hh
arch/alpha/isa/mem.isa:
Untemplatized StaticInst and StaticInstPtr
arch/alpha/isa/pal.isa:
cpu/base_dyn_inst.cc:
Untemplatized StaticInstPtr
arch/alpha/isa_traits.hh:
Changed variables to be externs instead of static since they are part of a namespace and not a class.
arch/alpha/stacktrace.cc:
Untemplatized StaticInstPtr, and added a using directive for AlphaISA.
arch/alpha/stacktrace.hh:
Added some typedefs for Addr and MachInst, and untemplatized StaticInstPtr
arch/alpha/vtophys.cc:
Added a using directive for AlphaISA
arch/alpha/vtophys.hh:
Added the AlphaISA namespace specifier where needed
arch/isa_parser.py:
Changed the placement of the definition of the decodeInst function to be outside the namespaceInst namespace.
base/loader/object_file.hh:
cpu/o3/bpred_unit.hh:
Added a typedef for Addr
base/loader/symtab.hh:
Added a typedef for Addr, and added a TheISA to Addr in another typedef
base/remote_gdb.cc:
Added a using namespace TheISA, and untemplatized StaticInstPtr
base/remote_gdb.hh:
Added typedefs for Addr and MachInst
cpu/base.cc:
Added TheISA specifier to some variables exported from the isa.
cpu/base.hh:
Added a typedef for Addr, and TheISA to some variables from the ISA
cpu/base_dyn_inst.hh:
Untemplatized StaticInstPtr, and added TheISA specifier to some variables from the ISA.
cpu/exec_context.hh:
Added some typedefs for types from the isa, and added TheISA specifier to some variables from the isa
cpu/exetrace.hh:
Added typedefs for some types from the ISA, and untemplatized StaticInstPtr
cpu/memtest/memtest.cc:
cpu/o3/btb.cc:
dev/baddev.cc:
dev/ide_ctrl.cc:
dev/ide_disk.cc:
dev/isa_fake.cc:
dev/ns_gige.cc:
dev/pciconfigall.cc:
dev/platform.cc:
dev/sinic.cc:
dev/uart8250.cc:
kern/freebsd/freebsd_system.cc:
kern/linux/linux_system.cc:
kern/system_events.cc:
kern/tru64/dump_mbuf.cc:
kern/tru64/tru64_events.cc:
sim/process.cc:
sim/pseudo_inst.cc:
sim/system.cc:
Added using namespace TheISA
cpu/memtest/memtest.hh:
cpu/trace/opt_cpu.hh:
cpu/trace/reader/itx_reader.hh:
dev/ide_disk.hh:
dev/pcidev.hh:
dev/platform.hh:
dev/tsunami.hh:
sim/system.hh:
sim/vptr.hh:
Added typedef for Addr
cpu/o3/2bit_local_pred.hh:
Changed the include to use arch/isa_traits.hh instead of arch/alpha/isa_traits.hh. Added typedef for Addr
cpu/o3/alpha_cpu.hh:
Added typedefs for Addr and IntReg
cpu/o3/alpha_cpu_impl.hh:
Added this-> to setNextPC to fix a problem since it didn't depend on template parameters any more. Removed "typename" where it was no longer needed.
cpu/o3/alpha_dyn_inst.hh:
Cleaned up some typedefs, and untemplatized StaticInst
cpu/o3/alpha_dyn_inst_impl.hh:
untemplatized StaticInstPtr
cpu/o3/alpha_impl.hh:
Fixed up a typedef of MachInst
cpu/o3/bpred_unit_impl.hh:
Added a using TheISA::MachInst to a function
cpu/o3/btb.hh:
Changed an include from arch/alpha/isa_traits.hh to arch/isa_traits.hh, and added a typedef for Addr
cpu/o3/commit.hh:
Removed a typedef of Impl::ISA as ISA, since TheISA takes care of this now.
cpu/o3/cpu.cc:
Cleaned up namespace issues
cpu/o3/cpu.hh:
Cleaned up namespace usage
cpu/o3/decode.hh:
Removed typedef of ISA, and changed it to TheISA
cpu/o3/fetch.hh:
Fized up typedefs, and changed ISA to TheISA
cpu/o3/free_list.hh:
Changed include of arch/alpha/isa_traits.hh to arch/isa_traits.hh
cpu/o3/iew.hh:
Removed typedef of ISA
cpu/o3/iew_impl.hh:
Added TheISA namespace specifier to MachInst
cpu/o3/ras.hh:
Changed include from arch/alpha/isa_traits.hh to arch/isa_traits.hh, and added a typedef for Addr.
cpu/o3/regfile.hh:
Changed ISA to TheISA, and added some typedefs for Addr, IntReg, FloatReg, and MiscRegFile
cpu/o3/rename.hh:
Changed ISA to TheISA, and added a typedef for RegIndex
cpu/o3/rename_map.hh:
Added an include for arch/isa_traits.hh, and a typedef for RegIndex
cpu/o3/rob.hh:
Added a typedef for RegIndex
cpu/o3/store_set.hh:
cpu/o3/tournament_pred.hh:
Changed an include of arch/alpha/isa_traits.hh to arch/isa_traits.hh, and added a typedef of Addr
cpu/ozone/cpu.hh:
Changed ISA into TheISA, and untemplatized StaticInst
cpu/pc_event.cc:
Added namespace specifier TheISA to Addr types
cpu/profile.hh:
kern/kernel_stats.hh:
Added typedef for Addr, and untemplatized StaticInstPtr
cpu/simple/cpu.cc:
Changed using directive from LittleEndianGuest to AlphaISA, which will contain both namespaces. Added TheISA where needed, and untemplatized StaticInst
cpu/simple/cpu.hh:
Added a typedef for MachInst, and untemplatized StaticInst
cpu/static_inst.cc:
Untemplatized StaticInst
cpu/static_inst.hh:
Untemplatized StaticInst by using the TheISA namespace
dev/alpha_console.cc:
Added using namespace AlphaISA
dev/simple_disk.hh:
Added typedef for Addr and fixed up some formatting
dev/sinicreg.hh:
Added TheISA namespace specifier where needed
dev/tsunami.cc:
dev/tsunami_io.cc:
dev/tsunami_pchip.cc:
Added using namespace TheISA. It might be better for it to be AlphaISA
dev/tsunami_cchip.cc:
Added typedef for TheISA. It might be better for it to be AlphaISA
kern/linux/aligned.hh:
sim/pseudo_inst.hh:
Added TheISA namespace specifier to Addr
kern/linux/linux_threadinfo.hh:
Added typedef for Addr, and TheISA namespace specifier to StackPointerReg
kern/tru64/mbuf.hh:
Added TheISA to Addr type in structs
sim/process.hh:
Added typedefs of Addr, RegFile, and MachInst
sim/syscall_emul.cc:
Added using namespace TheISA, and a cast of VMPageSize to the int type
sim/syscall_emul.hh:
Added typecast for Addr, and TheISA namespace specifier for where needed
--HG--
extra : convert_revision : 91d4f6ca33a73b21c1f1771d74bfdea3b80eff45
2006-02-19 08:34:37 +01:00
|
|
|
p->mmap_end += roundUp(length, TheISA::VMPageSize);
|
2005-03-16 16:30:33 +01:00
|
|
|
if (p->nxm_start != 0) {
|
|
|
|
//If we have an nxm space, make sure we haven't colided
|
|
|
|
assert(p->mmap_end < p->nxm_start);
|
|
|
|
}
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!(flags & OS::TGT_MAP_ANONYMOUS)) {
|
2005-11-11 03:05:31 +01:00
|
|
|
warn("allowing mmap of file @ fd %d. "
|
|
|
|
"This will break if not /dev/zero.", xc->getSyscallArg(4));
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
2005-03-10 20:20:12 +01:00
|
|
|
return start;
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
2003-12-02 07:39:27 +01:00
|
|
|
/// Target getrlimit() handler.
|
2003-12-02 04:34:38 +01:00
|
|
|
template <class OS>
|
2005-03-09 21:52:10 +01:00
|
|
|
SyscallReturn
|
2003-12-02 04:34:38 +01:00
|
|
|
getrlimitFunc(SyscallDesc *desc, int callnum, Process *process,
|
2006-02-10 20:21:32 +01:00
|
|
|
ExecContext *xc)
|
2003-12-02 04:34:38 +01:00
|
|
|
{
|
|
|
|
unsigned resource = xc->getSyscallArg(0);
|
|
|
|
TypedBufferArg<typename OS::rlimit> rlp(xc->getSyscallArg(1));
|
|
|
|
|
|
|
|
switch (resource) {
|
2006-02-10 20:21:32 +01:00
|
|
|
case OS::TGT_RLIMIT_STACK:
|
|
|
|
// max stack size in bytes: make up a number (2MB for now)
|
|
|
|
rlp->rlim_cur = rlp->rlim_max = 8 * 1024 * 1024;
|
2006-02-15 07:23:13 +01:00
|
|
|
rlp->rlim_cur = htog(rlp->rlim_cur);
|
|
|
|
rlp->rlim_max = htog(rlp->rlim_max);
|
2006-02-10 20:21:32 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
std::cerr << "getrlimitFunc: unimplemented resource " << resource
|
|
|
|
<< std::endl;
|
|
|
|
abort();
|
|
|
|
break;
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
2006-02-21 05:26:39 +01:00
|
|
|
rlp.copyOut(xc->port);
|
2005-03-10 20:20:12 +01:00
|
|
|
return 0;
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
2003-12-02 07:39:27 +01:00
|
|
|
/// Target gettimeofday() handler.
|
2003-12-02 04:34:38 +01:00
|
|
|
template <class OS>
|
2005-03-09 21:52:10 +01:00
|
|
|
SyscallReturn
|
2003-12-02 04:34:38 +01:00
|
|
|
gettimeofdayFunc(SyscallDesc *desc, int callnum, Process *process,
|
2006-02-10 20:21:32 +01:00
|
|
|
ExecContext *xc)
|
2003-12-02 04:34:38 +01:00
|
|
|
{
|
|
|
|
TypedBufferArg<typename OS::timeval> tp(xc->getSyscallArg(0));
|
|
|
|
|
|
|
|
getElapsedTime(tp->tv_sec, tp->tv_usec);
|
|
|
|
tp->tv_sec += seconds_since_epoch;
|
2006-02-15 07:23:13 +01:00
|
|
|
tp->tv_sec = htog(tp->tv_sec);
|
|
|
|
tp->tv_usec = htog(tp->tv_usec);
|
2003-12-02 04:34:38 +01:00
|
|
|
|
2006-02-21 05:26:39 +01:00
|
|
|
tp.copyOut(xc->port);
|
2003-12-02 04:34:38 +01:00
|
|
|
|
2005-03-10 20:20:12 +01:00
|
|
|
return 0;
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-22 18:08:08 +01:00
|
|
|
/// Target utimes() handler.
|
|
|
|
template <class OS>
|
|
|
|
SyscallReturn
|
|
|
|
utimesFunc(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
std::string path;
|
|
|
|
|
2006-03-10 00:35:28 +01:00
|
|
|
if (xc->port->readStringFunctional(path, xc->getSyscallArg(0)) != NoFault)
|
2006-02-21 05:26:39 +01:00
|
|
|
return -EFAULT;
|
2005-11-22 18:08:08 +01:00
|
|
|
|
|
|
|
TypedBufferArg<typename OS::timeval [2]> tp(xc->getSyscallArg(1));
|
2006-02-21 05:26:39 +01:00
|
|
|
tp.copyIn(xc->port);
|
2005-11-22 18:08:08 +01:00
|
|
|
|
|
|
|
struct timeval hostTimeval[2];
|
|
|
|
for (int i = 0; i < 2; ++i)
|
|
|
|
{
|
2006-02-15 07:23:13 +01:00
|
|
|
hostTimeval[i].tv_sec = gtoh((*tp)[i].tv_sec);
|
|
|
|
hostTimeval[i].tv_usec = gtoh((*tp)[i].tv_usec);
|
2005-11-22 18:08:08 +01:00
|
|
|
}
|
|
|
|
int result = utimes(path.c_str(), hostTimeval);
|
|
|
|
|
|
|
|
if (result < 0)
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2003-12-02 07:39:27 +01:00
|
|
|
/// Target getrusage() function.
|
2003-12-02 04:34:38 +01:00
|
|
|
template <class OS>
|
2005-03-09 21:52:10 +01:00
|
|
|
SyscallReturn
|
2003-12-02 04:34:38 +01:00
|
|
|
getrusageFunc(SyscallDesc *desc, int callnum, Process *process,
|
|
|
|
ExecContext *xc)
|
|
|
|
{
|
|
|
|
int who = xc->getSyscallArg(0); // THREAD, SELF, or CHILDREN
|
|
|
|
TypedBufferArg<typename OS::rusage> rup(xc->getSyscallArg(1));
|
|
|
|
|
2006-02-10 20:21:32 +01:00
|
|
|
if (who != OS::TGT_RUSAGE_SELF) {
|
2003-12-02 04:34:38 +01:00
|
|
|
// don't really handle THREAD or CHILDREN, but just warn and
|
|
|
|
// plow ahead
|
2005-11-11 03:05:31 +01:00
|
|
|
warn("getrusage() only supports RUSAGE_SELF. Parameter %d ignored.",
|
|
|
|
who);
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
getElapsedTime(rup->ru_utime.tv_sec, rup->ru_utime.tv_usec);
|
2006-02-15 07:23:13 +01:00
|
|
|
rup->ru_utime.tv_sec = htog(rup->ru_utime.tv_sec);
|
|
|
|
rup->ru_utime.tv_usec = htog(rup->ru_utime.tv_usec);
|
|
|
|
|
2003-12-02 04:34:38 +01:00
|
|
|
rup->ru_stime.tv_sec = 0;
|
|
|
|
rup->ru_stime.tv_usec = 0;
|
|
|
|
rup->ru_maxrss = 0;
|
|
|
|
rup->ru_ixrss = 0;
|
|
|
|
rup->ru_idrss = 0;
|
|
|
|
rup->ru_isrss = 0;
|
|
|
|
rup->ru_minflt = 0;
|
|
|
|
rup->ru_majflt = 0;
|
|
|
|
rup->ru_nswap = 0;
|
|
|
|
rup->ru_inblock = 0;
|
|
|
|
rup->ru_oublock = 0;
|
|
|
|
rup->ru_msgsnd = 0;
|
|
|
|
rup->ru_msgrcv = 0;
|
|
|
|
rup->ru_nsignals = 0;
|
|
|
|
rup->ru_nvcsw = 0;
|
|
|
|
rup->ru_nivcsw = 0;
|
|
|
|
|
2006-02-21 05:26:39 +01:00
|
|
|
rup.copyOut(xc->port);
|
2003-12-02 04:34:38 +01:00
|
|
|
|
2005-03-10 20:20:12 +01:00
|
|
|
return 0;
|
2003-12-02 04:34:38 +01:00
|
|
|
}
|
|
|
|
|
2005-01-15 00:34:56 +01:00
|
|
|
#endif // __SIM_SYSCALL_EMUL_HH__
|