process.cc revision 5004:7d94cedab264
1/*
2 * Copyright (c) 2003-2006 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: Gabe Black
29 *          Ali Saidi
30 */
31
32/*
33 * Copyright (c) 2007 The Hewlett-Packard Development Company
34 * All rights reserved.
35 *
36 * Redistribution and use of this software in source and binary forms,
37 * with or without modification, are permitted provided that the
38 * following conditions are met:
39 *
40 * The software must be used only for Non-Commercial Use which means any
41 * use which is NOT directed to receiving any direct monetary
42 * compensation for, or commercial advantage from such use.  Illustrative
43 * examples of non-commercial use are academic research, personal study,
44 * teaching, education and corporate research & development.
45 * Illustrative examples of commercial use are distributing products for
46 * commercial advantage and providing services using the software for
47 * commercial advantage.
48 *
49 * If you wish to use this software or functionality therein that may be
50 * covered by patents for commercial use, please contact:
51 *     Director of Intellectual Property Licensing
52 *     Office of Strategy and Technology
53 *     Hewlett-Packard Company
54 *     1501 Page Mill Road
55 *     Palo Alto, California  94304
56 *
57 * Redistributions of source code must retain the above copyright notice,
58 * this list of conditions and the following disclaimer.  Redistributions
59 * in binary form must reproduce the above copyright notice, this list of
60 * conditions and the following disclaimer in the documentation and/or
61 * other materials provided with the distribution.  Neither the name of
62 * the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
63 * contributors may be used to endorse or promote products derived from
64 * this software without specific prior written permission.  No right of
65 * sublicense is granted herewith.  Derivatives of the software and
66 * output created using the software may be prepared, but only for
67 * Non-Commercial Uses.  Derivatives of the software may be shared with
68 * others provided: (i) the others agree to abide by the list of
69 * conditions herein which includes the Non-Commercial Use restrictions;
70 * and (ii) such Derivatives of the software include the above copyright
71 * notice to acknowledge the contribution from this software where
72 * applicable, this list of conditions and the disclaimer below.
73 *
74 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
75 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
76 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
77 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
78 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
79 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
80 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
81 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
82 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
83 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
84 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
85 *
86 * Authors: Gabe Black
87 */
88
89#include "arch/x86/isa_traits.hh"
90#include "arch/x86/process.hh"
91#include "arch/x86/segmentregs.hh"
92#include "arch/x86/types.hh"
93#include "base/loader/object_file.hh"
94#include "base/loader/elf_object.hh"
95#include "base/misc.hh"
96#include "base/trace.hh"
97#include "cpu/thread_context.hh"
98#include "mem/page_table.hh"
99#include "mem/translating_port.hh"
100#include "sim/process_impl.hh"
101#include "sim/system.hh"
102
103using namespace std;
104using namespace X86ISA;
105
106M5_64_auxv_t::M5_64_auxv_t(int64_t type, int64_t val)
107{
108    a_type = TheISA::htog(type);
109    a_val = TheISA::htog(val);
110}
111
112X86LiveProcess::X86LiveProcess(const std::string &nm, ObjectFile *objFile,
113        System *_system, int stdin_fd, int stdout_fd, int stderr_fd,
114        std::vector<std::string> &argv, std::vector<std::string> &envp,
115        const std::string &cwd,
116        uint64_t _uid, uint64_t _euid, uint64_t _gid, uint64_t _egid,
117        uint64_t _pid, uint64_t _ppid)
118    : LiveProcess(nm, objFile, _system, stdin_fd, stdout_fd, stderr_fd,
119        argv, envp, cwd, _uid, _euid, _gid, _egid, _pid, _ppid)
120{
121    brk_point = objFile->dataBase() + objFile->dataSize() + objFile->bssSize();
122    brk_point = roundUp(brk_point, VMPageSize);
123
124    // Set pointer for next thread stack.  Reserve 8M for main stack.
125    next_thread_stack_base = stack_base - (8 * 1024 * 1024);
126
127    // Set up stack. On X86_64 Linux, stack goes from the top of memory
128    // downward, less the hole for the kernel address space plus one page
129    // for undertermined purposes.
130    stack_base = (Addr)0x7FFFFFFFF000ULL;
131
132    // Set up region for mmaps. This was determined empirically and may not
133    // always be correct.
134    mmap_start = mmap_end = 0x2aaaaaaab000;
135}
136
137void X86LiveProcess::handleTrap(int trapNum, ThreadContext *tc)
138{
139    switch(trapNum)
140    {
141      default:
142        panic("Unimplemented trap to operating system: trap number %#x.\n", trapNum);
143    }
144}
145
146void
147X86LiveProcess::startup()
148{
149    argsInit(sizeof(IntReg), VMPageSize);
150    for(int i = 0; i < NUM_SEGMENTREGS; i++)
151        threadContexts[0]->setMiscRegNoEffect(MISCREG_ES_BASE + i, 0);
152}
153
154void
155X86LiveProcess::argsInit(int intSize, int pageSize)
156{
157    typedef M5_64_auxv_t auxv_t;
158    Process::startup();
159
160    string filename;
161    if(argv.size() < 1)
162        filename = "";
163    else
164        filename = argv[0];
165
166    //We want 16 byte alignment
167    uint64_t align = 16;
168
169    // load object file into target memory
170    objFile->loadSections(initVirtMem);
171
172    enum X86CpuFeature {
173        X86_OnboardFPU = 1 << 0,
174        X86_VirtualModeExtensions = 1 << 1,
175        X86_DebuggingExtensions = 1 << 2,
176        X86_PageSizeExtensions = 1 << 3,
177
178        X86_TimeStampCounter = 1 << 4,
179        X86_ModelSpecificRegisters = 1 << 5,
180        X86_PhysicalAddressExtensions = 1 << 6,
181        X86_MachineCheckExtensions = 1 << 7,
182
183        X86_CMPXCHG8Instruction = 1 << 8,
184        X86_OnboardAPIC = 1 << 9,
185        X86_SYSENTER_SYSEXIT = 1 << 11,
186
187        X86_MemoryTypeRangeRegisters = 1 << 12,
188        X86_PageGlobalEnable = 1 << 13,
189        X86_MachineCheckArchitecture = 1 << 14,
190        X86_CMOVInstruction = 1 << 15,
191
192        X86_PageAttributeTable = 1 << 16,
193        X86_36BitPSEs = 1 << 17,
194        X86_ProcessorSerialNumber = 1 << 18,
195        X86_CLFLUSHInstruction = 1 << 19,
196
197        X86_DebugTraceStore = 1 << 21,
198        X86_ACPIViaMSR = 1 << 22,
199        X86_MultimediaExtensions = 1 << 23,
200
201        X86_FXSAVE_FXRSTOR = 1 << 24,
202        X86_StreamingSIMDExtensions = 1 << 25,
203        X86_StreamingSIMDExtensions2 = 1 << 26,
204        X86_CPUSelfSnoop = 1 << 27,
205
206        X86_HyperThreading = 1 << 28,
207        X86_AutomaticClockControl = 1 << 29,
208        X86_IA64Processor = 1 << 30
209    };
210
211    //Setup the auxilliary vectors. These will already have endian conversion.
212    //Auxilliary vectors are loaded only for elf formatted executables.
213    ElfObject * elfObject = dynamic_cast<ElfObject *>(objFile);
214    if(elfObject)
215    {
216        uint64_t features =
217            X86_OnboardFPU |
218            X86_VirtualModeExtensions |
219            X86_DebuggingExtensions |
220            X86_PageSizeExtensions |
221            X86_TimeStampCounter |
222            X86_ModelSpecificRegisters |
223            X86_PhysicalAddressExtensions |
224            X86_MachineCheckExtensions |
225            X86_CMPXCHG8Instruction |
226            X86_OnboardAPIC |
227            X86_SYSENTER_SYSEXIT |
228            X86_MemoryTypeRangeRegisters |
229            X86_PageGlobalEnable |
230            X86_MachineCheckArchitecture |
231            X86_CMOVInstruction |
232            X86_PageAttributeTable |
233            X86_36BitPSEs |
234//            X86_ProcessorSerialNumber |
235            X86_CLFLUSHInstruction |
236//            X86_DebugTraceStore |
237//            X86_ACPIViaMSR |
238            X86_MultimediaExtensions |
239            X86_FXSAVE_FXRSTOR |
240            X86_StreamingSIMDExtensions |
241            X86_StreamingSIMDExtensions2 |
242//            X86_CPUSelfSnoop |
243//            X86_HyperThreading |
244//            X86_AutomaticClockControl |
245//            X86_IA64Processor |
246            0;
247
248        //Bits which describe the system hardware capabilities
249        //XXX Figure out what these should be
250        auxv.push_back(auxv_t(M5_AT_HWCAP, features));
251        //The system page size
252        auxv.push_back(auxv_t(M5_AT_PAGESZ, X86ISA::VMPageSize));
253        //Frequency at which times() increments
254        auxv.push_back(auxv_t(M5_AT_CLKTCK, 100));
255        // For statically linked executables, this is the virtual address of the
256        // program header tables if they appear in the executable image
257        auxv.push_back(auxv_t(M5_AT_PHDR, elfObject->programHeaderTable()));
258        // This is the size of a program header entry from the elf file.
259        auxv.push_back(auxv_t(M5_AT_PHENT, elfObject->programHeaderSize()));
260        // This is the number of program headers from the original elf file.
261        auxv.push_back(auxv_t(M5_AT_PHNUM, elfObject->programHeaderCount()));
262        //Defined to be 100 in the kernel source.
263        //This is the address of the elf "interpreter", It should be set
264        //to 0 for regular executables. It should be something else
265        //(not sure what) for dynamic libraries.
266        auxv.push_back(auxv_t(M5_AT_BASE, 0));
267
268        //XXX Figure out what this should be.
269        auxv.push_back(auxv_t(M5_AT_FLAGS, 0));
270        //The entry point to the program
271        auxv.push_back(auxv_t(M5_AT_ENTRY, objFile->entryPoint()));
272        //Different user and group IDs
273        auxv.push_back(auxv_t(M5_AT_UID, uid()));
274        auxv.push_back(auxv_t(M5_AT_EUID, euid()));
275        auxv.push_back(auxv_t(M5_AT_GID, gid()));
276        auxv.push_back(auxv_t(M5_AT_EGID, egid()));
277        //Whether to enable "secure mode" in the executable
278        auxv.push_back(auxv_t(M5_AT_SECURE, 0));
279        //The string "x86_64" with unknown meaning
280        auxv.push_back(auxv_t(M5_AT_PLATFORM, 0));
281    }
282
283    //Figure out how big the initial stack needs to be
284
285    // A sentry NULL void pointer at the top of the stack.
286    int sentry_size = intSize;
287
288    //This is the name of the file which is present on the initial stack
289    //It's purpose is to let the user space linker examine the original file.
290    int file_name_size = filename.size() + 1;
291
292    string platform = "x86_64";
293    int aux_data_size = platform.size() + 1;
294
295    int env_data_size = 0;
296    for (int i = 0; i < envp.size(); ++i) {
297        env_data_size += envp[i].size() + 1;
298    }
299    int arg_data_size = 0;
300    for (int i = 0; i < argv.size(); ++i) {
301        arg_data_size += argv[i].size() + 1;
302    }
303
304    //The info_block needs to be padded so it's size is a multiple of the
305    //alignment mask. Also, it appears that there needs to be at least some
306    //padding, so if the size is already a multiple, we need to increase it
307    //anyway.
308    int base_info_block_size =
309        sentry_size + file_name_size + env_data_size + arg_data_size;
310
311    int info_block_size = roundUp(base_info_block_size, align);
312
313    int info_block_padding = info_block_size - base_info_block_size;
314
315    //Each auxilliary vector is two 8 byte words
316    int aux_array_size = intSize * 2 * (auxv.size() + 1);
317
318    int envp_array_size = intSize * (envp.size() + 1);
319    int argv_array_size = intSize * (argv.size() + 1);
320
321    int argc_size = intSize;
322
323    //Figure out the size of the contents of the actual initial frame
324    int frame_size =
325        aux_array_size +
326        envp_array_size +
327        argv_array_size +
328        argc_size;
329
330    //There needs to be padding after the auxiliary vector data so that the
331    //very bottom of the stack is aligned properly.
332    int partial_size = frame_size + aux_data_size;
333    int aligned_partial_size = roundUp(partial_size, align);
334    int aux_padding = aligned_partial_size - partial_size;
335
336    int space_needed =
337        info_block_size +
338        aux_data_size +
339        aux_padding +
340        frame_size;
341
342    stack_min = stack_base - space_needed;
343    stack_min = roundDown(stack_min, align);
344    stack_size = stack_base - stack_min;
345
346    // map memory
347    pTable->allocate(roundDown(stack_min, pageSize),
348                     roundUp(stack_size, pageSize));
349
350    // map out initial stack contents
351    Addr sentry_base = stack_base - sentry_size;
352    Addr file_name_base = sentry_base - file_name_size;
353    Addr env_data_base = file_name_base - env_data_size;
354    Addr arg_data_base = env_data_base - arg_data_size;
355    Addr aux_data_base = arg_data_base - info_block_padding - aux_data_size;
356    Addr auxv_array_base = aux_data_base - aux_array_size - aux_padding;
357    Addr envp_array_base = auxv_array_base - envp_array_size;
358    Addr argv_array_base = envp_array_base - argv_array_size;
359    Addr argc_base = argv_array_base - argc_size;
360
361    DPRINTF(X86, "The addresses of items on the initial stack:\n");
362    DPRINTF(X86, "0x%x - file name\n", file_name_base);
363    DPRINTF(X86, "0x%x - env data\n", env_data_base);
364    DPRINTF(X86, "0x%x - arg data\n", arg_data_base);
365    DPRINTF(X86, "0x%x - aux data\n", aux_data_base);
366    DPRINTF(X86, "0x%x - auxv array\n", auxv_array_base);
367    DPRINTF(X86, "0x%x - envp array\n", envp_array_base);
368    DPRINTF(X86, "0x%x - argv array\n", argv_array_base);
369    DPRINTF(X86, "0x%x - argc \n", argc_base);
370    DPRINTF(X86, "0x%x - stack min\n", stack_min);
371
372    // write contents to stack
373
374    // figure out argc
375    uint64_t argc = argv.size();
376    uint64_t guestArgc = TheISA::htog(argc);
377
378    //Write out the sentry void *
379    uint64_t sentry_NULL = 0;
380    initVirtMem->writeBlob(sentry_base,
381            (uint8_t*)&sentry_NULL, sentry_size);
382
383    //Write the file name
384    initVirtMem->writeString(file_name_base, filename.c_str());
385
386    //Fix up the aux vector which points to the "platform" string
387    assert(auxv[auxv.size() - 1].a_type = M5_AT_PLATFORM);
388    auxv[auxv.size() - 1].a_val = aux_data_base;
389
390    //Copy the aux stuff
391    for(int x = 0; x < auxv.size(); x++)
392    {
393        initVirtMem->writeBlob(auxv_array_base + x * 2 * intSize,
394                (uint8_t*)&(auxv[x].a_type), intSize);
395        initVirtMem->writeBlob(auxv_array_base + (x * 2 + 1) * intSize,
396                (uint8_t*)&(auxv[x].a_val), intSize);
397    }
398    //Write out the terminating zeroed auxilliary vector
399    const uint64_t zero = 0;
400    initVirtMem->writeBlob(auxv_array_base + 2 * intSize * auxv.size(),
401            (uint8_t*)&zero, 2 * intSize);
402
403    initVirtMem->writeString(aux_data_base, platform.c_str());
404
405    copyStringArray(envp, envp_array_base, env_data_base, initVirtMem);
406    copyStringArray(argv, argv_array_base, arg_data_base, initVirtMem);
407
408    initVirtMem->writeBlob(argc_base, (uint8_t*)&guestArgc, intSize);
409
410    //Set the stack pointer register
411    threadContexts[0]->setIntReg(StackPointerReg, stack_min);
412
413    Addr prog_entry = objFile->entryPoint();
414    threadContexts[0]->setPC(prog_entry);
415    threadContexts[0]->setNextPC(prog_entry + sizeof(MachInst));
416
417    //Align the "stack_min" to a page boundary.
418    stack_min = roundDown(stack_min, pageSize);
419
420//    num_processes++;
421}
422