process.hh revision 5154:7e6431213487
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 *          Steve Reinhardt
30 */
31
32#ifndef __PROCESS_HH__
33#define __PROCESS_HH__
34
35//
36// The purpose of this code is to fake the loader & syscall mechanism
37// when there's no OS: thus there's no reason to use it in FULL_SYSTEM
38// mode when we do have an OS.
39//
40#include "config/full_system.hh"
41
42#if !FULL_SYSTEM
43
44#include <string>
45#include <vector>
46
47#include "base/statistics.hh"
48#include "sim/host.hh"
49#include "sim/sim_object.hh"
50
51class GDBListener;
52class PageTable;
53class ProcessParams;
54class LiveProcessParams;
55class SyscallDesc;
56class System;
57class ThreadContext;
58class TranslatingPort;
59namespace TheISA
60{
61    class RemoteGDB;
62}
63
64class Process : public SimObject
65{
66  public:
67
68    /// Pointer to object representing the system this process is
69    /// running on.
70    System *system;
71
72    // have we initialized a thread context from this process?  If
73    // yes, subsequent contexts are assumed to be for dynamically
74    // created threads and are not initialized.
75    bool initialContextLoaded;
76
77    // thread contexts associated with this process
78    std::vector<ThreadContext *> threadContexts;
79
80    // remote gdb objects
81    std::vector<TheISA::RemoteGDB *> remoteGDB;
82    std::vector<GDBListener *> gdbListen;
83    bool breakpoint();
84
85    // number of CPUs (esxec contexts, really) assigned to this process.
86    unsigned int numCpus() { return threadContexts.size(); }
87
88    // record of blocked context
89    struct WaitRec
90    {
91        Addr waitChan;
92        ThreadContext *waitingContext;
93
94        WaitRec(Addr chan, ThreadContext *ctx)
95            : waitChan(chan), waitingContext(ctx)
96        {	}
97    };
98
99    // list of all blocked contexts
100    std::list<WaitRec> waitList;
101
102    Addr brk_point;		// top of the data segment
103
104    Addr stack_base;		// stack segment base (highest address)
105    unsigned stack_size;	// initial stack size
106    Addr stack_min;		// lowest address accessed on the stack
107
108    // The maximum size allowed for the stack.
109    Addr max_stack_size;
110
111    // addr to use for next stack region (for multithreaded apps)
112    Addr next_thread_stack_base;
113
114    // Base of region for mmaps (when user doesn't specify an address).
115    Addr mmap_start;
116    Addr mmap_end;
117
118    // Base of region for nxm data
119    Addr nxm_start;
120    Addr nxm_end;
121
122    std::string prog_fname;	// file name
123
124    Stats::Scalar<> num_syscalls;	// number of syscalls executed
125
126
127  protected:
128    // constructor
129    Process(ProcessParams * params);
130
131    // post initialization startup
132    virtual void startup();
133
134  protected:
135    /// Memory object for initialization (image loading)
136    TranslatingPort *initVirtMem;
137
138  public:
139    PageTable *pTable;
140
141    //This id is assigned by m5 and is used to keep process' tlb entries
142    //separated.
143    uint64_t M5_pid;
144
145  private:
146    // file descriptor remapping support
147    static const int MAX_FD = 256;	// max legal fd value
148    int fd_map[MAX_FD+1];
149
150  public:
151    // static helper functions to generate file descriptors for constructor
152    static int openInputFile(const std::string &filename);
153    static int openOutputFile(const std::string &filename);
154
155    // override of virtual SimObject method: register statistics
156    virtual void regStats();
157
158    // register a thread context for this process.
159    // returns tc's cpu number (index into threadContexts[])
160    int registerThreadContext(ThreadContext *tc);
161
162
163    void replaceThreadContext(ThreadContext *tc, int tcIndex);
164
165    // map simulator fd sim_fd to target fd tgt_fd
166    void dup_fd(int sim_fd, int tgt_fd);
167
168    // generate new target fd for sim_fd
169    int alloc_fd(int sim_fd);
170
171    // free target fd (e.g., after close)
172    void free_fd(int tgt_fd);
173
174    // look up simulator fd for given target fd
175    int sim_fd(int tgt_fd);
176
177    virtual void syscall(int64_t callnum, ThreadContext *tc) = 0;
178
179    // check if the this addr is on the next available page and allocate it
180    // if it's not we'll panic
181    bool checkAndAllocNextPage(Addr vaddr);
182
183    void serialize(std::ostream &os);
184    void unserialize(Checkpoint *cp, const std::string &section);
185};
186
187//
188// "Live" process with system calls redirected to host system
189//
190class ObjectFile;
191class LiveProcess : public Process
192{
193  protected:
194    ObjectFile *objFile;
195    std::vector<std::string> argv;
196    std::vector<std::string> envp;
197    std::string cwd;
198
199    LiveProcess(LiveProcessParams * params, ObjectFile *objFile);
200
201    virtual void argsInit(int intSize, int pageSize);
202
203    // Id of the owner of the process
204    uint64_t __uid;
205    uint64_t __euid;
206    uint64_t __gid;
207    uint64_t __egid;
208
209    // pid of the process and it's parent
210    uint64_t __pid;
211    uint64_t __ppid;
212
213  public:
214
215    enum AuxiliaryVectorType {
216        M5_AT_NULL = 0,
217        M5_AT_IGNORE = 1,
218        M5_AT_EXECFD = 2,
219        M5_AT_PHDR = 3,
220        M5_AT_PHENT = 4,
221        M5_AT_PHNUM = 5,
222        M5_AT_PAGESZ = 6,
223        M5_AT_BASE = 7,
224        M5_AT_FLAGS = 8,
225        M5_AT_ENTRY = 9,
226        M5_AT_NOTELF = 10,
227        M5_AT_UID = 11,
228        M5_AT_EUID = 12,
229        M5_AT_GID = 13,
230        M5_AT_EGID = 14,
231        // The following may be specific to Linux
232        M5_AT_PLATFORM = 15,
233        M5_AT_HWCAP = 16,
234        M5_AT_CLKTCK = 17,
235
236        M5_AT_SECURE = 23,
237
238        M5_AT_VECTOR_SIZE = 44
239    };
240
241    inline uint64_t uid() {return __uid;}
242    inline uint64_t euid() {return __euid;}
243    inline uint64_t gid() {return __gid;}
244    inline uint64_t egid() {return __egid;}
245    inline uint64_t pid() {return __pid;}
246    inline uint64_t ppid() {return __ppid;}
247
248    std::string
249    fullPath(const std::string &filename)
250    {
251        if (filename[0] == '/' || cwd.empty())
252            return filename;
253
254        std::string full = cwd;
255
256        if (cwd[cwd.size() - 1] != '/')
257            full += '/';
258
259        return full + filename;
260    }
261
262    virtual void syscall(int64_t callnum, ThreadContext *tc);
263
264    virtual SyscallDesc* getDesc(int callnum) = 0;
265
266    // this function is used to create the LiveProcess object, since
267    // we can't tell which subclass of LiveProcess to use until we
268    // open and look at the object file.
269    static LiveProcess *create(LiveProcessParams * params);
270};
271
272
273#endif // !FULL_SYSTEM
274
275#endif // __PROCESS_HH__
276