process.cc revision 5335
12SN/A/*
21762SN/A * Copyright (c) 2001-2005 The Regents of The University of Michigan
32SN/A * All rights reserved.
42SN/A *
52SN/A * Redistribution and use in source and binary forms, with or without
62SN/A * modification, are permitted provided that the following conditions are
72SN/A * met: redistributions of source code must retain the above copyright
82SN/A * notice, this list of conditions and the following disclaimer;
92SN/A * redistributions in binary form must reproduce the above copyright
102SN/A * notice, this list of conditions and the following disclaimer in the
112SN/A * documentation and/or other materials provided with the distribution;
122SN/A * neither the name of the copyright holders nor the names of its
132SN/A * contributors may be used to endorse or promote products derived from
142SN/A * this software without specific prior written permission.
152SN/A *
162SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Nathan Binkert
292665Ssaidi@eecs.umich.edu *          Steve Reinhardt
302665Ssaidi@eecs.umich.edu *          Ali Saidi
312SN/A */
322SN/A
332SN/A#include <unistd.h>
342SN/A#include <fcntl.h>
352SN/A#include <string>
362SN/A
373971Sgblack@eecs.umich.edu#include "arch/remote_gdb.hh"
3856SN/A#include "base/intmath.hh"
3956SN/A#include "base/loader/object_file.hh"
401158SN/A#include "base/loader/symtab.hh"
41146SN/A#include "base/statistics.hh"
421858SN/A#include "config/full_system.hh"
432680Sktlim@umich.edu#include "cpu/thread_context.hh"
442378SN/A#include "mem/page_table.hh"
452522SN/A#include "mem/physical.hh"
462401SN/A#include "mem/translating_port.hh"
475154Sgblack@eecs.umich.edu#include "params/Process.hh"
484762Snate@binkert.org#include "params/LiveProcess.hh"
49360SN/A#include "sim/process.hh"
504434Ssaidi@eecs.umich.edu#include "sim/process_impl.hh"
51695SN/A#include "sim/stats.hh"
522093SN/A#include "sim/syscall_emul.hh"
532378SN/A#include "sim/system.hh"
542SN/A
552715Sstever@eecs.umich.edu#include "arch/isa_specific.hh"
562715Sstever@eecs.umich.edu#if THE_ISA == ALPHA_ISA
572715Sstever@eecs.umich.edu#include "arch/alpha/linux/process.hh"
582715Sstever@eecs.umich.edu#include "arch/alpha/tru64/process.hh"
592715Sstever@eecs.umich.edu#elif THE_ISA == SPARC_ISA
602715Sstever@eecs.umich.edu#include "arch/sparc/linux/process.hh"
612715Sstever@eecs.umich.edu#include "arch/sparc/solaris/process.hh"
622715Sstever@eecs.umich.edu#elif THE_ISA == MIPS_ISA
632715Sstever@eecs.umich.edu#include "arch/mips/linux/process.hh"
645335Shines@cs.fsu.edu#elif THE_ISA == ARM_ISA
655335Shines@cs.fsu.edu#include "arch/arm/linux/process.hh"
664157Sgblack@eecs.umich.edu#elif THE_ISA == X86_ISA
674166Sgblack@eecs.umich.edu#include "arch/x86/linux/process.hh"
682715Sstever@eecs.umich.edu#else
692715Sstever@eecs.umich.edu#error "THE_ISA not set"
702715Sstever@eecs.umich.edu#endif
712715Sstever@eecs.umich.edu
722715Sstever@eecs.umich.edu
732SN/Ausing namespace std;
742107SN/Ausing namespace TheISA;
752SN/A
762SN/A//
772SN/A// The purpose of this code is to fake the loader & syscall mechanism
782SN/A// when there's no OS: thus there's no resone to use it in FULL_SYSTEM
792SN/A// mode when we do have an OS
802SN/A//
811858SN/A#if FULL_SYSTEM
82360SN/A#error "process.cc not compatible with FULL_SYSTEM"
832SN/A#endif
842SN/A
852SN/A// current number of allocated processes
862SN/Aint num_processes = 0;
872SN/A
885154Sgblack@eecs.umich.eduProcess::Process(ProcessParams * params)
895183Ssaidi@eecs.umich.edu    : SimObject(params), system(params->system), checkpointRestored(false),
905154Sgblack@eecs.umich.edu    max_stack_size(params->max_stack_size)
912SN/A{
925154Sgblack@eecs.umich.edu    string in = params->input;
935154Sgblack@eecs.umich.edu    string out = params->output;
945154Sgblack@eecs.umich.edu
955154Sgblack@eecs.umich.edu    // initialize file descriptors to default: same as simulator
965154Sgblack@eecs.umich.edu    int stdin_fd, stdout_fd, stderr_fd;
975154Sgblack@eecs.umich.edu
985154Sgblack@eecs.umich.edu    if (in == "stdin" || in == "cin")
995154Sgblack@eecs.umich.edu        stdin_fd = STDIN_FILENO;
1005154Sgblack@eecs.umich.edu    else if (in == "None")
1015154Sgblack@eecs.umich.edu        stdin_fd = -1;
1025154Sgblack@eecs.umich.edu    else
1035154Sgblack@eecs.umich.edu        stdin_fd = Process::openInputFile(in);
1045154Sgblack@eecs.umich.edu
1055154Sgblack@eecs.umich.edu    if (out == "stdout" || out == "cout")
1065154Sgblack@eecs.umich.edu        stdout_fd = STDOUT_FILENO;
1075154Sgblack@eecs.umich.edu    else if (out == "stderr" || out == "cerr")
1085154Sgblack@eecs.umich.edu        stdout_fd = STDERR_FILENO;
1095154Sgblack@eecs.umich.edu    else if (out == "None")
1105154Sgblack@eecs.umich.edu        stdout_fd = -1;
1115154Sgblack@eecs.umich.edu    else
1125154Sgblack@eecs.umich.edu        stdout_fd = Process::openOutputFile(out);
1135154Sgblack@eecs.umich.edu
1145154Sgblack@eecs.umich.edu    stderr_fd = (stdout_fd != STDOUT_FILENO) ? stdout_fd : STDERR_FILENO;
1155154Sgblack@eecs.umich.edu
1164997Sgblack@eecs.umich.edu    M5_pid = system->allocatePID();
1172SN/A    // initialize first 3 fds (stdin, stdout, stderr)
1185282Srstrong@cs.ucsd.edu    Process::FdMap *fdo = &fd_map[STDIN_FILENO];
1195282Srstrong@cs.ucsd.edu    fdo->fd = stdin_fd;
1205282Srstrong@cs.ucsd.edu    fdo->filename = in;
1215282Srstrong@cs.ucsd.edu    fdo->flags = O_RDONLY;
1225282Srstrong@cs.ucsd.edu    fdo->mode = -1;
1235282Srstrong@cs.ucsd.edu    fdo->fileOffset = 0;
1245282Srstrong@cs.ucsd.edu
1255282Srstrong@cs.ucsd.edu    fdo =  &fd_map[STDOUT_FILENO];
1265282Srstrong@cs.ucsd.edu    fdo->fd = stdout_fd;
1275282Srstrong@cs.ucsd.edu    fdo->filename = out;
1285282Srstrong@cs.ucsd.edu    fdo->flags =  O_WRONLY | O_CREAT | O_TRUNC;
1295282Srstrong@cs.ucsd.edu    fdo->mode = 0774;
1305282Srstrong@cs.ucsd.edu    fdo->fileOffset = 0;
1315282Srstrong@cs.ucsd.edu
1325282Srstrong@cs.ucsd.edu    fdo = &fd_map[STDERR_FILENO];
1335282Srstrong@cs.ucsd.edu    fdo->fd = stderr_fd;
1345282Srstrong@cs.ucsd.edu    fdo->filename = "STDERR";
1355282Srstrong@cs.ucsd.edu    fdo->flags = O_WRONLY;
1365282Srstrong@cs.ucsd.edu    fdo->mode = -1;
1375282Srstrong@cs.ucsd.edu    fdo->fileOffset = 0;
1385282Srstrong@cs.ucsd.edu
1392SN/A
1402SN/A    // mark remaining fds as free
1412SN/A    for (int i = 3; i <= MAX_FD; ++i) {
1425282Srstrong@cs.ucsd.edu        Process::FdMap *fdo = &fd_map[i];
1435282Srstrong@cs.ucsd.edu        fdo->fd = -1;
1442SN/A    }
1452SN/A
1461450SN/A    mmap_start = mmap_end = 0;
1471514SN/A    nxm_start = nxm_end = 0;
1485184Sgblack@eecs.umich.edu    pTable = new PageTable(this);
1492SN/A    // other parameters will be initialized when the program is loaded
1502SN/A}
1512SN/A
1522378SN/A
1532SN/Avoid
1542SN/AProcess::regStats()
1552SN/A{
156729SN/A    using namespace Stats;
1572SN/A
1582SN/A    num_syscalls
1592SN/A        .name(name() + ".PROG:num_syscalls")
1602SN/A        .desc("Number of system calls")
1612SN/A        ;
1622SN/A}
1632SN/A
1642SN/A//
1652SN/A// static helper functions
1662SN/A//
1672SN/Aint
1682SN/AProcess::openInputFile(const string &filename)
1692SN/A{
1702SN/A    int fd = open(filename.c_str(), O_RDONLY);
1712SN/A
1722SN/A    if (fd == -1) {
1732SN/A        perror(NULL);
1742SN/A        cerr << "unable to open \"" << filename << "\" for reading\n";
1752SN/A        fatal("can't open input file");
1762SN/A    }
1772SN/A
1782SN/A    return fd;
1792SN/A}
1802SN/A
1812SN/A
1822SN/Aint
1832SN/AProcess::openOutputFile(const string &filename)
1842SN/A{
1852SN/A    int fd = open(filename.c_str(), O_WRONLY | O_CREAT | O_TRUNC, 0774);
1862SN/A
1872SN/A    if (fd == -1) {
1882SN/A        perror(NULL);
1892SN/A        cerr << "unable to open \"" << filename << "\" for writing\n";
1902SN/A        fatal("can't open output file");
1912SN/A    }
1922SN/A
1932SN/A    return fd;
1942SN/A}
1952SN/A
1962SN/A
197180SN/Aint
1982680Sktlim@umich.eduProcess::registerThreadContext(ThreadContext *tc)
1992SN/A{
200180SN/A    // add to list
2012680Sktlim@umich.edu    int myIndex = threadContexts.size();
2022680Sktlim@umich.edu    threadContexts.push_back(tc);
203180SN/A
2045109Sgblack@eecs.umich.edu    RemoteGDB *rgdb = new RemoteGDB(system, tc);
2055109Sgblack@eecs.umich.edu    GDBListener *gdbl = new GDBListener(rgdb, 7000 + myIndex);
2065109Sgblack@eecs.umich.edu    gdbl->listen();
2073971Sgblack@eecs.umich.edu    //gdbl->accept();
2083971Sgblack@eecs.umich.edu
2095109Sgblack@eecs.umich.edu    remoteGDB.push_back(rgdb);
2103971Sgblack@eecs.umich.edu
2112378SN/A    // return CPU number to caller
212180SN/A    return myIndex;
2132SN/A}
2142SN/A
2151395SN/Avoid
2161395SN/AProcess::startup()
2171395SN/A{
2182680Sktlim@umich.edu    if (threadContexts.empty())
2192378SN/A        fatal("Process %s is not associated with any CPUs!\n", name());
2202378SN/A
2212680Sktlim@umich.edu    // first thread context for this process... initialize & enable
2222680Sktlim@umich.edu    ThreadContext *tc = threadContexts[0];
2231395SN/A
2241634SN/A    // mark this context as active so it will start ticking.
2252680Sktlim@umich.edu    tc->activate(0);
2262462SN/A
2272519SN/A    Port *mem_port;
2282519SN/A    mem_port = system->physmem->getPort("functional");
2294434Ssaidi@eecs.umich.edu    initVirtMem = new TranslatingPort("process init port", this,
2304434Ssaidi@eecs.umich.edu            TranslatingPort::Always);
2312519SN/A    mem_port->setPeer(initVirtMem);
2322519SN/A    initVirtMem->setPeer(mem_port);
2331395SN/A}
2342SN/A
235180SN/Avoid
2362680Sktlim@umich.eduProcess::replaceThreadContext(ThreadContext *tc, int tcIndex)
237180SN/A{
2382680Sktlim@umich.edu    if (tcIndex >= threadContexts.size()) {
2392680Sktlim@umich.edu        panic("replaceThreadContext: bad tcIndex, %d >= %d\n",
2402680Sktlim@umich.edu              tcIndex, threadContexts.size());
241180SN/A    }
242180SN/A
2432680Sktlim@umich.edu    threadContexts[tcIndex] = tc;
244180SN/A}
245180SN/A
2462SN/A// map simulator fd sim_fd to target fd tgt_fd
2472SN/Avoid
2482SN/AProcess::dup_fd(int sim_fd, int tgt_fd)
2492SN/A{
2502SN/A    if (tgt_fd < 0 || tgt_fd > MAX_FD)
2512SN/A        panic("Process::dup_fd tried to dup past MAX_FD (%d)", tgt_fd);
2522SN/A
2535282Srstrong@cs.ucsd.edu    Process::FdMap *fdo = &fd_map[tgt_fd];
2545282Srstrong@cs.ucsd.edu    fdo->fd = sim_fd;
2552SN/A}
2562SN/A
2572SN/A
2582SN/A// generate new target fd for sim_fd
2592SN/Aint
2605282Srstrong@cs.ucsd.eduProcess::alloc_fd(int sim_fd, string filename, int flags, int mode, bool pipe)
2612SN/A{
2622SN/A    // in case open() returns an error, don't allocate a new fd
2632SN/A    if (sim_fd == -1)
2642SN/A        return -1;
2652SN/A
2662SN/A    // find first free target fd
2675282Srstrong@cs.ucsd.edu    for (int free_fd = 0; free_fd <= MAX_FD; ++free_fd) {
2685282Srstrong@cs.ucsd.edu        Process::FdMap *fdo = &fd_map[free_fd];
2695282Srstrong@cs.ucsd.edu        if (fdo->fd == -1) {
2705282Srstrong@cs.ucsd.edu            fdo->fd = sim_fd;
2715282Srstrong@cs.ucsd.edu            fdo->filename = filename;
2725282Srstrong@cs.ucsd.edu            fdo->mode = mode;
2735282Srstrong@cs.ucsd.edu            fdo->fileOffset = 0;
2745282Srstrong@cs.ucsd.edu            fdo->flags = flags;
2755282Srstrong@cs.ucsd.edu            fdo->isPipe = pipe;
2765282Srstrong@cs.ucsd.edu            fdo->readPipeSource = 0;
2771970SN/A            return free_fd;
2781970SN/A        }
2792SN/A    }
2802SN/A
2811970SN/A    panic("Process::alloc_fd: out of file descriptors!");
2821970SN/A}
2832SN/A
2841970SN/A
2851970SN/A// free target fd (e.g., after close)
2861970SN/Avoid
2871970SN/AProcess::free_fd(int tgt_fd)
2881970SN/A{
2895282Srstrong@cs.ucsd.edu    Process::FdMap *fdo = &fd_map[tgt_fd];
2905282Srstrong@cs.ucsd.edu    if (fdo->fd == -1)
2911970SN/A        warn("Process::free_fd: request to free unused fd %d", tgt_fd);
2921970SN/A
2935282Srstrong@cs.ucsd.edu    fdo->fd = -1;
2945282Srstrong@cs.ucsd.edu    fdo->filename = "NULL";
2955282Srstrong@cs.ucsd.edu    fdo->mode = 0;
2965282Srstrong@cs.ucsd.edu    fdo->fileOffset = 0;
2975282Srstrong@cs.ucsd.edu    fdo->flags = 0;
2985282Srstrong@cs.ucsd.edu    fdo->isPipe = false;
2995282Srstrong@cs.ucsd.edu    fdo->readPipeSource = 0;
3002SN/A}
3012SN/A
3022SN/A
3032SN/A// look up simulator fd for given target fd
3042SN/Aint
3052SN/AProcess::sim_fd(int tgt_fd)
3062SN/A{
3072SN/A    if (tgt_fd > MAX_FD)
3082SN/A        return -1;
3092SN/A
3105282Srstrong@cs.ucsd.edu    return fd_map[tgt_fd].fd;
3112SN/A}
3122SN/A
3135282Srstrong@cs.ucsd.eduProcess::FdMap *
3145282Srstrong@cs.ucsd.eduProcess::sim_fd_obj(int tgt_fd)
3155282Srstrong@cs.ucsd.edu{
3165282Srstrong@cs.ucsd.edu    if (tgt_fd > MAX_FD)
3175282Srstrong@cs.ucsd.edu        panic("sim_fd_obj called in fd out of range.");
3185282Srstrong@cs.ucsd.edu
3195282Srstrong@cs.ucsd.edu    return &fd_map[tgt_fd];
3205282Srstrong@cs.ucsd.edu}
3214434Ssaidi@eecs.umich.edubool
3224434Ssaidi@eecs.umich.eduProcess::checkAndAllocNextPage(Addr vaddr)
3234434Ssaidi@eecs.umich.edu{
3244434Ssaidi@eecs.umich.edu    // if this is an initial write we might not have
3254434Ssaidi@eecs.umich.edu    if (vaddr >= stack_min && vaddr < stack_base) {
3264434Ssaidi@eecs.umich.edu        pTable->allocate(roundDown(vaddr, VMPageSize), VMPageSize);
3274434Ssaidi@eecs.umich.edu        return true;
3284434Ssaidi@eecs.umich.edu    }
3294434Ssaidi@eecs.umich.edu
3304434Ssaidi@eecs.umich.edu    // We've accessed the next page of the stack, so extend the stack
3314434Ssaidi@eecs.umich.edu    // to cover it.
3325154Sgblack@eecs.umich.edu    if (vaddr < stack_min && vaddr >= stack_base - max_stack_size) {
3335154Sgblack@eecs.umich.edu        while (vaddr < stack_min) {
3345154Sgblack@eecs.umich.edu            stack_min -= TheISA::PageBytes;
3355154Sgblack@eecs.umich.edu            if(stack_base - stack_min > max_stack_size)
3365154Sgblack@eecs.umich.edu                fatal("Maximum stack size exceeded\n");
3375154Sgblack@eecs.umich.edu            if(stack_base - stack_min > 8*1024*1024)
3385154Sgblack@eecs.umich.edu                fatal("Over max stack size for one thread\n");
3395154Sgblack@eecs.umich.edu            pTable->allocate(stack_min, TheISA::PageBytes);
3405154Sgblack@eecs.umich.edu            warn("Increasing stack size by one page.");
3415154Sgblack@eecs.umich.edu        };
3424434Ssaidi@eecs.umich.edu        return true;
3434434Ssaidi@eecs.umich.edu    }
3444434Ssaidi@eecs.umich.edu    return false;
3454434Ssaidi@eecs.umich.edu}
3464434Ssaidi@eecs.umich.edu
3475282Srstrong@cs.ucsd.edu // find all offsets for currently open files and save them
3485282Srstrong@cs.ucsd.eduvoid
3495282Srstrong@cs.ucsd.eduProcess::fix_file_offsets() {
3505282Srstrong@cs.ucsd.edu    Process::FdMap *fdo_stdin = &fd_map[STDIN_FILENO];
3515282Srstrong@cs.ucsd.edu    Process::FdMap *fdo_stdout = &fd_map[STDOUT_FILENO];
3525282Srstrong@cs.ucsd.edu    Process::FdMap *fdo_stderr = &fd_map[STDERR_FILENO];
3535282Srstrong@cs.ucsd.edu    string in = fdo_stdin->filename;
3545282Srstrong@cs.ucsd.edu    string out = fdo_stdout->filename;
3555282Srstrong@cs.ucsd.edu
3565282Srstrong@cs.ucsd.edu    // initialize file descriptors to default: same as simulator
3575282Srstrong@cs.ucsd.edu    int stdin_fd, stdout_fd, stderr_fd;
3585282Srstrong@cs.ucsd.edu
3595282Srstrong@cs.ucsd.edu    if (in == "stdin" || in == "cin")
3605282Srstrong@cs.ucsd.edu        stdin_fd = STDIN_FILENO;
3615282Srstrong@cs.ucsd.edu    else if (in == "None")
3625282Srstrong@cs.ucsd.edu        stdin_fd = -1;
3635282Srstrong@cs.ucsd.edu    else{
3645282Srstrong@cs.ucsd.edu        //OPEN standard in and seek to the right location
3655282Srstrong@cs.ucsd.edu        stdin_fd = Process::openInputFile(in);
3665282Srstrong@cs.ucsd.edu        if (lseek(stdin_fd, fdo_stdin->fileOffset, SEEK_SET) < 0)
3675282Srstrong@cs.ucsd.edu            panic("Unable to seek to correct location in file: %s", in);
3685282Srstrong@cs.ucsd.edu    }
3695282Srstrong@cs.ucsd.edu
3705282Srstrong@cs.ucsd.edu    if (out == "stdout" || out == "cout")
3715282Srstrong@cs.ucsd.edu        stdout_fd = STDOUT_FILENO;
3725282Srstrong@cs.ucsd.edu    else if (out == "stderr" || out == "cerr")
3735282Srstrong@cs.ucsd.edu        stdout_fd = STDERR_FILENO;
3745282Srstrong@cs.ucsd.edu    else if (out == "None")
3755282Srstrong@cs.ucsd.edu        stdout_fd = -1;
3765282Srstrong@cs.ucsd.edu    else{
3775282Srstrong@cs.ucsd.edu        stdout_fd = Process::openOutputFile(out);
3785282Srstrong@cs.ucsd.edu        if (lseek(stdin_fd, fdo_stdout->fileOffset, SEEK_SET) < 0)
3795282Srstrong@cs.ucsd.edu            panic("Unable to seek to correct in file: %s", out);
3805282Srstrong@cs.ucsd.edu    }
3815282Srstrong@cs.ucsd.edu
3825282Srstrong@cs.ucsd.edu    stderr_fd = (stdout_fd != STDOUT_FILENO) ? stdout_fd : STDERR_FILENO;
3835282Srstrong@cs.ucsd.edu
3845282Srstrong@cs.ucsd.edu    fdo_stdin->fd = stdin_fd;
3855282Srstrong@cs.ucsd.edu    fdo_stdout->fd = stdout_fd;
3865282Srstrong@cs.ucsd.edu    fdo_stderr->fd = stderr_fd;
3875282Srstrong@cs.ucsd.edu
3885282Srstrong@cs.ucsd.edu
3895282Srstrong@cs.ucsd.edu    for (int free_fd = 3; free_fd <= MAX_FD; ++free_fd) {
3905282Srstrong@cs.ucsd.edu        Process::FdMap *fdo = &fd_map[free_fd];
3915282Srstrong@cs.ucsd.edu        if (fdo->fd != -1) {
3925282Srstrong@cs.ucsd.edu            if (fdo->isPipe){
3935282Srstrong@cs.ucsd.edu                if (fdo->filename == "PIPE-WRITE")
3945282Srstrong@cs.ucsd.edu                    continue;
3955282Srstrong@cs.ucsd.edu                else {
3965282Srstrong@cs.ucsd.edu                    assert (fdo->filename == "PIPE-READ");
3975282Srstrong@cs.ucsd.edu                    //create a new pipe
3985282Srstrong@cs.ucsd.edu                    int fds[2];
3995282Srstrong@cs.ucsd.edu                    int pipe_retval = pipe(fds);
4005282Srstrong@cs.ucsd.edu
4015282Srstrong@cs.ucsd.edu                    if (pipe_retval < 0) {
4025282Srstrong@cs.ucsd.edu                        // error
4035282Srstrong@cs.ucsd.edu                        panic("Unable to create new pipe.");
4045282Srstrong@cs.ucsd.edu                    }
4055282Srstrong@cs.ucsd.edu                    fdo->fd = fds[0]; //set read pipe
4065282Srstrong@cs.ucsd.edu                    Process::FdMap *fdo_write = &fd_map[fdo->readPipeSource];
4075282Srstrong@cs.ucsd.edu                    if (fdo_write->filename != "PIPE-WRITE")
4085282Srstrong@cs.ucsd.edu                        panic ("Couldn't find write end of the pipe");
4095282Srstrong@cs.ucsd.edu
4105282Srstrong@cs.ucsd.edu                    fdo_write->fd = fds[1];//set write pipe
4115282Srstrong@cs.ucsd.edu               }
4125282Srstrong@cs.ucsd.edu            } else {
4135282Srstrong@cs.ucsd.edu                //Open file
4145282Srstrong@cs.ucsd.edu                int fd = open(fdo->filename.c_str(), fdo->flags, fdo->mode);
4155282Srstrong@cs.ucsd.edu
4165282Srstrong@cs.ucsd.edu                if (fd == -1)
4175282Srstrong@cs.ucsd.edu                    panic("Unable to open file: %s", fdo->filename);
4185282Srstrong@cs.ucsd.edu                fdo->fd = fd;
4195282Srstrong@cs.ucsd.edu
4205282Srstrong@cs.ucsd.edu                //Seek to correct location before checkpoint
4215282Srstrong@cs.ucsd.edu                if (lseek(fd,fdo->fileOffset, SEEK_SET) < 0)
4225282Srstrong@cs.ucsd.edu                    panic("Unable to seek to correct location in file: %s", fdo->filename);
4235282Srstrong@cs.ucsd.edu            }
4245282Srstrong@cs.ucsd.edu        }
4255282Srstrong@cs.ucsd.edu    }
4265282Srstrong@cs.ucsd.edu}
4275282Srstrong@cs.ucsd.eduvoid
4285282Srstrong@cs.ucsd.eduProcess::find_file_offsets(){
4295282Srstrong@cs.ucsd.edu    for (int free_fd = 0; free_fd <= MAX_FD; ++free_fd) {
4305282Srstrong@cs.ucsd.edu        Process::FdMap *fdo = &fd_map[free_fd];
4315282Srstrong@cs.ucsd.edu        if (fdo->fd != -1) {
4325282Srstrong@cs.ucsd.edu            fdo->fileOffset = lseek(fdo->fd, 0, SEEK_CUR);
4335282Srstrong@cs.ucsd.edu        }  else {
4345282Srstrong@cs.ucsd.edu                fdo->filename = "NULL";
4355282Srstrong@cs.ucsd.edu                fdo->fileOffset = 0;
4365282Srstrong@cs.ucsd.edu        }
4375282Srstrong@cs.ucsd.edu    }
4385282Srstrong@cs.ucsd.edu}
4395282Srstrong@cs.ucsd.edu
4405282Srstrong@cs.ucsd.eduvoid
4415282Srstrong@cs.ucsd.eduProcess::setReadPipeSource(int read_pipe_fd, int source_fd){
4425282Srstrong@cs.ucsd.edu    Process::FdMap *fdo = &fd_map[read_pipe_fd];
4435282Srstrong@cs.ucsd.edu    fdo->readPipeSource = source_fd;
4445282Srstrong@cs.ucsd.edu}
4455282Srstrong@cs.ucsd.edu
4465282Srstrong@cs.ucsd.eduvoid
4475282Srstrong@cs.ucsd.eduProcess::FdMap::serialize(std::ostream &os)
4485282Srstrong@cs.ucsd.edu{
4495282Srstrong@cs.ucsd.edu    SERIALIZE_SCALAR(fd);
4505282Srstrong@cs.ucsd.edu    SERIALIZE_SCALAR(isPipe);
4515282Srstrong@cs.ucsd.edu    SERIALIZE_SCALAR(filename);
4525282Srstrong@cs.ucsd.edu    SERIALIZE_SCALAR(flags);
4535282Srstrong@cs.ucsd.edu    SERIALIZE_SCALAR(readPipeSource);
4545282Srstrong@cs.ucsd.edu    SERIALIZE_SCALAR(fileOffset);
4555282Srstrong@cs.ucsd.edu}
4565282Srstrong@cs.ucsd.edu
4575282Srstrong@cs.ucsd.eduvoid
4585282Srstrong@cs.ucsd.eduProcess::FdMap::unserialize(Checkpoint *cp, const std::string &section)
4595282Srstrong@cs.ucsd.edu{
4605282Srstrong@cs.ucsd.edu    UNSERIALIZE_SCALAR(fd);
4615282Srstrong@cs.ucsd.edu    UNSERIALIZE_SCALAR(isPipe);
4625282Srstrong@cs.ucsd.edu    UNSERIALIZE_SCALAR(filename);
4635282Srstrong@cs.ucsd.edu    UNSERIALIZE_SCALAR(flags);
4645282Srstrong@cs.ucsd.edu    UNSERIALIZE_SCALAR(readPipeSource);
4655282Srstrong@cs.ucsd.edu    UNSERIALIZE_SCALAR(fileOffset);
4665282Srstrong@cs.ucsd.edu}
4675282Srstrong@cs.ucsd.edu
4683311Ssaidi@eecs.umich.eduvoid
4693311Ssaidi@eecs.umich.eduProcess::serialize(std::ostream &os)
4703311Ssaidi@eecs.umich.edu{
4713311Ssaidi@eecs.umich.edu    SERIALIZE_SCALAR(initialContextLoaded);
4723311Ssaidi@eecs.umich.edu    SERIALIZE_SCALAR(brk_point);
4733311Ssaidi@eecs.umich.edu    SERIALIZE_SCALAR(stack_base);
4743311Ssaidi@eecs.umich.edu    SERIALIZE_SCALAR(stack_size);
4753311Ssaidi@eecs.umich.edu    SERIALIZE_SCALAR(stack_min);
4763311Ssaidi@eecs.umich.edu    SERIALIZE_SCALAR(next_thread_stack_base);
4773311Ssaidi@eecs.umich.edu    SERIALIZE_SCALAR(mmap_start);
4783311Ssaidi@eecs.umich.edu    SERIALIZE_SCALAR(mmap_end);
4793311Ssaidi@eecs.umich.edu    SERIALIZE_SCALAR(nxm_start);
4803311Ssaidi@eecs.umich.edu    SERIALIZE_SCALAR(nxm_end);
4815282Srstrong@cs.ucsd.edu    find_file_offsets();
4825282Srstrong@cs.ucsd.edu    pTable->serialize(os);
4835282Srstrong@cs.ucsd.edu    for (int x = 0; x <= MAX_FD; x++) {
4845282Srstrong@cs.ucsd.edu        nameOut(os, csprintf("%s.FdMap%d", name(), x));
4855282Srstrong@cs.ucsd.edu        fd_map[x].serialize(os);
4865282Srstrong@cs.ucsd.edu    }
4873311Ssaidi@eecs.umich.edu
4883311Ssaidi@eecs.umich.edu}
4893311Ssaidi@eecs.umich.edu
4903311Ssaidi@eecs.umich.eduvoid
4913311Ssaidi@eecs.umich.eduProcess::unserialize(Checkpoint *cp, const std::string &section)
4923311Ssaidi@eecs.umich.edu{
4933311Ssaidi@eecs.umich.edu    UNSERIALIZE_SCALAR(initialContextLoaded);
4943311Ssaidi@eecs.umich.edu    UNSERIALIZE_SCALAR(brk_point);
4953311Ssaidi@eecs.umich.edu    UNSERIALIZE_SCALAR(stack_base);
4963311Ssaidi@eecs.umich.edu    UNSERIALIZE_SCALAR(stack_size);
4973311Ssaidi@eecs.umich.edu    UNSERIALIZE_SCALAR(stack_min);
4983311Ssaidi@eecs.umich.edu    UNSERIALIZE_SCALAR(next_thread_stack_base);
4993311Ssaidi@eecs.umich.edu    UNSERIALIZE_SCALAR(mmap_start);
5003311Ssaidi@eecs.umich.edu    UNSERIALIZE_SCALAR(mmap_end);
5013311Ssaidi@eecs.umich.edu    UNSERIALIZE_SCALAR(nxm_start);
5023311Ssaidi@eecs.umich.edu    UNSERIALIZE_SCALAR(nxm_end);
5033311Ssaidi@eecs.umich.edu    pTable->unserialize(cp, section);
5045282Srstrong@cs.ucsd.edu    for (int x = 0; x <= MAX_FD; x++) {
5055282Srstrong@cs.ucsd.edu        fd_map[x].unserialize(cp, csprintf("%s.FdMap%d", section, x));
5065282Srstrong@cs.ucsd.edu     }
5075282Srstrong@cs.ucsd.edu    fix_file_offsets();
5085183Ssaidi@eecs.umich.edu
5095183Ssaidi@eecs.umich.edu    checkpointRestored = true;
5105183Ssaidi@eecs.umich.edu
5113311Ssaidi@eecs.umich.edu}
5122SN/A
5132SN/A
5142SN/A////////////////////////////////////////////////////////////////////////
5152SN/A//
5162SN/A// LiveProcess member definitions
5172SN/A//
5182SN/A////////////////////////////////////////////////////////////////////////
5192SN/A
52012SN/A
5215154Sgblack@eecs.umich.eduLiveProcess::LiveProcess(LiveProcessParams * params, ObjectFile *_objFile)
5225154Sgblack@eecs.umich.edu    : Process(params), objFile(_objFile),
5235154Sgblack@eecs.umich.edu      argv(params->cmd), envp(params->env), cwd(params->cwd)
5242SN/A{
5255154Sgblack@eecs.umich.edu    __uid = params->uid;
5265154Sgblack@eecs.umich.edu    __euid = params->euid;
5275154Sgblack@eecs.umich.edu    __gid = params->gid;
5285154Sgblack@eecs.umich.edu    __egid = params->egid;
5295154Sgblack@eecs.umich.edu    __pid = params->pid;
5305154Sgblack@eecs.umich.edu    __ppid = params->ppid;
5313114Sgblack@eecs.umich.edu
5325154Sgblack@eecs.umich.edu    prog_fname = params->cmd[0];
53312SN/A
5341158SN/A    // load up symbols, if any... these may be used for debugging or
5351158SN/A    // profiling.
5361158SN/A    if (!debugSymbolTable) {
5371158SN/A        debugSymbolTable = new SymbolTable();
5381158SN/A        if (!objFile->loadGlobalSymbols(debugSymbolTable) ||
5391158SN/A            !objFile->loadLocalSymbols(debugSymbolTable)) {
5401158SN/A            // didn't load any symbols
5411158SN/A            delete debugSymbolTable;
5421158SN/A            debugSymbolTable = NULL;
5431158SN/A        }
5441158SN/A    }
5452378SN/A}
5461158SN/A
5472378SN/Avoid
5482474SN/ALiveProcess::argsInit(int intSize, int pageSize)
5492378SN/A{
5502378SN/A    Process::startup();
55112SN/A
5522378SN/A    // load object file into target memory
5532378SN/A    objFile->loadSections(initVirtMem);
55412SN/A
55512SN/A    // Calculate how much space we need for arg & env arrays.
5562474SN/A    int argv_array_size = intSize * (argv.size() + 1);
5572474SN/A    int envp_array_size = intSize * (envp.size() + 1);
55812SN/A    int arg_data_size = 0;
55912SN/A    for (int i = 0; i < argv.size(); ++i) {
56012SN/A        arg_data_size += argv[i].size() + 1;
56112SN/A    }
56212SN/A    int env_data_size = 0;
56312SN/A    for (int i = 0; i < envp.size(); ++i) {
56412SN/A        env_data_size += envp[i].size() + 1;
56512SN/A    }
56612SN/A
56712SN/A    int space_needed =
56812SN/A        argv_array_size + envp_array_size + arg_data_size + env_data_size;
5693005Sstever@eecs.umich.edu    if (space_needed < 32*1024)
5703005Sstever@eecs.umich.edu        space_needed = 32*1024;
57112SN/A
57212SN/A    // set bottom of stack
57312SN/A    stack_min = stack_base - space_needed;
57412SN/A    // align it
5752800Ssaidi@eecs.umich.edu    stack_min = roundDown(stack_min, pageSize);
57612SN/A    stack_size = stack_base - stack_min;
5772378SN/A    // map memory
5782800Ssaidi@eecs.umich.edu    pTable->allocate(stack_min, roundUp(stack_size, pageSize));
57912SN/A
58012SN/A    // map out initial stack contents
5812523SN/A    Addr argv_array_base = stack_min + intSize; // room for argc
58212SN/A    Addr envp_array_base = argv_array_base + argv_array_size;
58312SN/A    Addr arg_data_base = envp_array_base + envp_array_size;
58412SN/A    Addr env_data_base = arg_data_base + arg_data_size;
58512SN/A
58612SN/A    // write contents to stack
58712SN/A    uint64_t argc = argv.size();
5882474SN/A    if (intSize == 8)
5892474SN/A        argc = htog((uint64_t)argc);
5902474SN/A    else if (intSize == 4)
5912474SN/A        argc = htog((uint32_t)argc);
5922474SN/A    else
5932474SN/A        panic("Unknown int size");
5942474SN/A
5952474SN/A    initVirtMem->writeBlob(stack_min, (uint8_t*)&argc, intSize);
59612SN/A
5972378SN/A    copyStringArray(argv, argv_array_base, arg_data_base, initVirtMem);
5982378SN/A    copyStringArray(envp, envp_array_base, env_data_base, initVirtMem);
59912SN/A
6004772Sgblack@eecs.umich.edu    assert(NumArgumentRegs >= 2);
6014772Sgblack@eecs.umich.edu    threadContexts[0]->setIntReg(ArgumentReg[0], argc);
6024772Sgblack@eecs.umich.edu    threadContexts[0]->setIntReg(ArgumentReg[1], argv_array_base);
6032680Sktlim@umich.edu    threadContexts[0]->setIntReg(StackPointerReg, stack_min);
6042451SN/A
6052451SN/A    Addr prog_entry = objFile->entryPoint();
6062680Sktlim@umich.edu    threadContexts[0]->setPC(prog_entry);
6072680Sktlim@umich.edu    threadContexts[0]->setNextPC(prog_entry + sizeof(MachInst));
6082817Sksewell@umich.edu
6092817Sksewell@umich.edu#if THE_ISA != ALPHA_ISA //e.g. MIPS or Sparc
6102680Sktlim@umich.edu    threadContexts[0]->setNextNPC(prog_entry + (2 * sizeof(MachInst)));
6112817Sksewell@umich.edu#endif
6122378SN/A
6132378SN/A    num_processes++;
6142SN/A}
6152SN/A
6162093SN/Avoid
6172680Sktlim@umich.eduLiveProcess::syscall(int64_t callnum, ThreadContext *tc)
6182093SN/A{
6192093SN/A    num_syscalls++;
6202093SN/A
6212093SN/A    SyscallDesc *desc = getDesc(callnum);
6222093SN/A    if (desc == NULL)
6232093SN/A        fatal("Syscall %d out of range", callnum);
6242093SN/A
6252680Sktlim@umich.edu    desc->doSyscall(callnum, this, tc);
6262093SN/A}
6272SN/A
6282715Sstever@eecs.umich.eduLiveProcess *
6295154Sgblack@eecs.umich.eduLiveProcess::create(LiveProcessParams * params)
6302715Sstever@eecs.umich.edu{
6312715Sstever@eecs.umich.edu    LiveProcess *process = NULL;
6322715Sstever@eecs.umich.edu
6335154Sgblack@eecs.umich.edu    string executable =
6345154Sgblack@eecs.umich.edu        params->executable == "" ? params->cmd[0] : params->executable;
6352715Sstever@eecs.umich.edu    ObjectFile *objFile = createObjectFile(executable);
6362715Sstever@eecs.umich.edu    if (objFile == NULL) {
6372715Sstever@eecs.umich.edu        fatal("Can't load object file %s", executable);
6382715Sstever@eecs.umich.edu    }
6392715Sstever@eecs.umich.edu
6403917Ssaidi@eecs.umich.edu    if (objFile->isDynamic())
6413917Ssaidi@eecs.umich.edu       fatal("Object file is a dynamic executable however only static "
6425070Ssaidi@eecs.umich.edu             "executables are supported!\n       Please recompile your "
6433917Ssaidi@eecs.umich.edu             "executable as a static binary and try again.\n");
6443917Ssaidi@eecs.umich.edu
6455089Sgblack@eecs.umich.edu#if THE_ISA == ALPHA_ISA
6465070Ssaidi@eecs.umich.edu    if (objFile->hasTLS())
6475089Sgblack@eecs.umich.edu        fatal("Object file has a TLS section and single threaded TLS is not\n"
6485089Sgblack@eecs.umich.edu              "       currently supported for Alpha! Please recompile your "
6495089Sgblack@eecs.umich.edu              "executable with \n       a non-TLS toolchain.\n");
6505070Ssaidi@eecs.umich.edu
6512715Sstever@eecs.umich.edu    if (objFile->getArch() != ObjectFile::Alpha)
6522715Sstever@eecs.umich.edu        fatal("Object file architecture does not match compiled ISA (Alpha).");
6532715Sstever@eecs.umich.edu    switch (objFile->getOpSys()) {
6542715Sstever@eecs.umich.edu      case ObjectFile::Tru64:
6555154Sgblack@eecs.umich.edu        process = new AlphaTru64Process(params, objFile);
6562715Sstever@eecs.umich.edu        break;
6572715Sstever@eecs.umich.edu
6582715Sstever@eecs.umich.edu      case ObjectFile::Linux:
6595154Sgblack@eecs.umich.edu        process = new AlphaLinuxProcess(params, objFile);
6602715Sstever@eecs.umich.edu        break;
6612715Sstever@eecs.umich.edu
6622715Sstever@eecs.umich.edu      default:
6632715Sstever@eecs.umich.edu        fatal("Unknown/unsupported operating system.");
6642715Sstever@eecs.umich.edu    }
6652715Sstever@eecs.umich.edu#elif THE_ISA == SPARC_ISA
6664111Sgblack@eecs.umich.edu    if (objFile->getArch() != ObjectFile::SPARC64 && objFile->getArch() != ObjectFile::SPARC32)
6672715Sstever@eecs.umich.edu        fatal("Object file architecture does not match compiled ISA (SPARC).");
6682715Sstever@eecs.umich.edu    switch (objFile->getOpSys()) {
6692715Sstever@eecs.umich.edu      case ObjectFile::Linux:
6704111Sgblack@eecs.umich.edu        if (objFile->getArch() == ObjectFile::SPARC64) {
6715154Sgblack@eecs.umich.edu            process = new Sparc64LinuxProcess(params, objFile);
6724111Sgblack@eecs.umich.edu        } else {
6735154Sgblack@eecs.umich.edu            process = new Sparc32LinuxProcess(params, objFile);
6744111Sgblack@eecs.umich.edu        }
6752715Sstever@eecs.umich.edu        break;
6762715Sstever@eecs.umich.edu
6772715Sstever@eecs.umich.edu
6782715Sstever@eecs.umich.edu      case ObjectFile::Solaris:
6795154Sgblack@eecs.umich.edu        process = new SparcSolarisProcess(params, objFile);
6802715Sstever@eecs.umich.edu        break;
6812715Sstever@eecs.umich.edu      default:
6822715Sstever@eecs.umich.edu        fatal("Unknown/unsupported operating system.");
6832715Sstever@eecs.umich.edu    }
6844157Sgblack@eecs.umich.edu#elif THE_ISA == X86_ISA
6854157Sgblack@eecs.umich.edu    if (objFile->getArch() != ObjectFile::X86)
6864166Sgblack@eecs.umich.edu        fatal("Object file architecture does not match compiled ISA (x86).");
6874157Sgblack@eecs.umich.edu    switch (objFile->getOpSys()) {
6884166Sgblack@eecs.umich.edu      case ObjectFile::Linux:
6895154Sgblack@eecs.umich.edu        process = new X86LinuxProcess(params, objFile);
6904166Sgblack@eecs.umich.edu        break;
6914157Sgblack@eecs.umich.edu      default:
6924157Sgblack@eecs.umich.edu        fatal("Unknown/unsupported operating system.");
6934157Sgblack@eecs.umich.edu    }
6942715Sstever@eecs.umich.edu#elif THE_ISA == MIPS_ISA
6952715Sstever@eecs.umich.edu    if (objFile->getArch() != ObjectFile::Mips)
6962715Sstever@eecs.umich.edu        fatal("Object file architecture does not match compiled ISA (MIPS).");
6972715Sstever@eecs.umich.edu    switch (objFile->getOpSys()) {
6982715Sstever@eecs.umich.edu      case ObjectFile::Linux:
6995154Sgblack@eecs.umich.edu        process = new MipsLinuxProcess(params, objFile);
7002715Sstever@eecs.umich.edu        break;
7012715Sstever@eecs.umich.edu
7022715Sstever@eecs.umich.edu      default:
7032715Sstever@eecs.umich.edu        fatal("Unknown/unsupported operating system.");
7042715Sstever@eecs.umich.edu    }
7055335Shines@cs.fsu.edu#elif THE_ISA == ARM_ISA
7065335Shines@cs.fsu.edu    if (objFile->getArch() != ObjectFile::Arm)
7075335Shines@cs.fsu.edu        fatal("Object file architecture does not match compiled ISA (ARM).");
7085335Shines@cs.fsu.edu    switch (objFile->getOpSys()) {
7095335Shines@cs.fsu.edu      case ObjectFile::Linux:
7105335Shines@cs.fsu.edu        process = new ArmLinuxProcess(params, objFile);
7115335Shines@cs.fsu.edu        break;
7125335Shines@cs.fsu.edu
7135335Shines@cs.fsu.edu      default:
7145335Shines@cs.fsu.edu        fatal("Unknown/unsupported operating system.");
7155335Shines@cs.fsu.edu    }
7162715Sstever@eecs.umich.edu#else
7172715Sstever@eecs.umich.edu#error "THE_ISA not set"
7182715Sstever@eecs.umich.edu#endif
7192715Sstever@eecs.umich.edu
7202715Sstever@eecs.umich.edu
7212715Sstever@eecs.umich.edu    if (process == NULL)
7222715Sstever@eecs.umich.edu        fatal("Unknown error creating process object.");
7232715Sstever@eecs.umich.edu    return process;
7242715Sstever@eecs.umich.edu}
7252715Sstever@eecs.umich.edu
7264762Snate@binkert.orgLiveProcess *
7274762Snate@binkert.orgLiveProcessParams::create()
7282715Sstever@eecs.umich.edu{
7295154Sgblack@eecs.umich.edu    return LiveProcess::create(this);
7302715Sstever@eecs.umich.edu}
731