process.cc revision 7073:b8f2983a1c88
112855Sgabeblack@google.com/*
212855Sgabeblack@google.com * Copyright (c) 2003-2006 The Regents of The University of Michigan
312855Sgabeblack@google.com * All rights reserved.
412855Sgabeblack@google.com *
512855Sgabeblack@google.com * Redistribution and use in source and binary forms, with or without
612855Sgabeblack@google.com * modification, are permitted provided that the following conditions are
712855Sgabeblack@google.com * met: redistributions of source code must retain the above copyright
812855Sgabeblack@google.com * notice, this list of conditions and the following disclaimer;
912855Sgabeblack@google.com * redistributions in binary form must reproduce the above copyright
1012855Sgabeblack@google.com * notice, this list of conditions and the following disclaimer in the
1112855Sgabeblack@google.com * documentation and/or other materials provided with the distribution;
1212855Sgabeblack@google.com * neither the name of the copyright holders nor the names of its
1312855Sgabeblack@google.com * contributors may be used to endorse or promote products derived from
1412855Sgabeblack@google.com * this software without specific prior written permission.
1512855Sgabeblack@google.com *
1612855Sgabeblack@google.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1712855Sgabeblack@google.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1812855Sgabeblack@google.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1912855Sgabeblack@google.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2012855Sgabeblack@google.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2112855Sgabeblack@google.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2212855Sgabeblack@google.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2312855Sgabeblack@google.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2412855Sgabeblack@google.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2512855Sgabeblack@google.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2612855Sgabeblack@google.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2712855Sgabeblack@google.com *
2812855Sgabeblack@google.com * Authors: Gabe Black
2912855Sgabeblack@google.com *          Ali Saidi
3012855Sgabeblack@google.com */
3112855Sgabeblack@google.com
3212855Sgabeblack@google.com/*
3312855Sgabeblack@google.com * Copyright (c) 2007 The Hewlett-Packard Development Company
3412855Sgabeblack@google.com * All rights reserved.
3512855Sgabeblack@google.com *
3612855Sgabeblack@google.com * Redistribution and use of this software in source and binary forms,
3712855Sgabeblack@google.com * with or without modification, are permitted provided that the
3812855Sgabeblack@google.com * following conditions are met:
3912855Sgabeblack@google.com *
4012855Sgabeblack@google.com * The software must be used only for Non-Commercial Use which means any
4112855Sgabeblack@google.com * use which is NOT directed to receiving any direct monetary
4212855Sgabeblack@google.com * compensation for, or commercial advantage from such use.  Illustrative
4312855Sgabeblack@google.com * examples of non-commercial use are academic research, personal study,
4412855Sgabeblack@google.com * teaching, education and corporate research & development.
4512855Sgabeblack@google.com * Illustrative examples of commercial use are distributing products for
4612855Sgabeblack@google.com * commercial advantage and providing services using the software for
4712855Sgabeblack@google.com * commercial advantage.
4812855Sgabeblack@google.com *
4912855Sgabeblack@google.com * If you wish to use this software or functionality therein that may be
5012855Sgabeblack@google.com * covered by patents for commercial use, please contact:
5112855Sgabeblack@google.com *     Director of Intellectual Property Licensing
5212855Sgabeblack@google.com *     Office of Strategy and Technology
5312855Sgabeblack@google.com *     Hewlett-Packard Company
5412855Sgabeblack@google.com *     1501 Page Mill Road
5512855Sgabeblack@google.com *     Palo Alto, California  94304
5612855Sgabeblack@google.com *
5712855Sgabeblack@google.com * Redistributions of source code must retain the above copyright notice,
5812855Sgabeblack@google.com * this list of conditions and the following disclaimer.  Redistributions
5912855Sgabeblack@google.com * in binary form must reproduce the above copyright notice, this list of
6012855Sgabeblack@google.com * conditions and the following disclaimer in the documentation and/or
6112855Sgabeblack@google.com * other materials provided with the distribution.  Neither the name of
6212855Sgabeblack@google.com * the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
6312855Sgabeblack@google.com * contributors may be used to endorse or promote products derived from
6412855Sgabeblack@google.com * this software without specific prior written permission.  No right of
6512855Sgabeblack@google.com * sublicense is granted herewith.  Derivatives of the software and
6612855Sgabeblack@google.com * output created using the software may be prepared, but only for
6712855Sgabeblack@google.com * Non-Commercial Uses.  Derivatives of the software may be shared with
6812855Sgabeblack@google.com * others provided: (i) the others agree to abide by the list of
6912855Sgabeblack@google.com * 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/miscregs.hh"
91#include "arch/x86/process.hh"
92#include "arch/x86/segmentregs.hh"
93#include "arch/x86/types.hh"
94#include "base/loader/object_file.hh"
95#include "base/loader/elf_object.hh"
96#include "base/misc.hh"
97#include "base/trace.hh"
98#include "cpu/thread_context.hh"
99#include "mem/page_table.hh"
100#include "mem/translating_port.hh"
101#include "sim/process_impl.hh"
102#include "sim/syscall_emul.hh"
103#include "sim/system.hh"
104
105using namespace std;
106using namespace X86ISA;
107
108static const int ArgumentReg[] = {
109    INTREG_RDI,
110    INTREG_RSI,
111    INTREG_RDX,
112    //This argument register is r10 for syscalls and rcx for C.
113    INTREG_R10W,
114    //INTREG_RCX,
115    INTREG_R8W,
116    INTREG_R9W
117};
118static const int NumArgumentRegs = sizeof(ArgumentReg) / sizeof(const int);
119static const int ArgumentReg32[] = {
120    INTREG_EBX,
121    INTREG_ECX,
122    INTREG_EDX,
123    INTREG_ESI,
124    INTREG_EDI,
125};
126static const int NumArgumentRegs32 = sizeof(ArgumentReg) / sizeof(const int);
127
128X86LiveProcess::X86LiveProcess(LiveProcessParams * params, ObjectFile *objFile,
129        SyscallDesc *_syscallDescs, int _numSyscallDescs) :
130    LiveProcess(params, objFile), syscallDescs(_syscallDescs),
131    numSyscallDescs(_numSyscallDescs)
132{
133    brk_point = objFile->dataBase() + objFile->dataSize() + objFile->bssSize();
134    brk_point = roundUp(brk_point, VMPageSize);
135}
136
137X86_64LiveProcess::X86_64LiveProcess(LiveProcessParams *params,
138        ObjectFile *objFile, SyscallDesc *_syscallDescs,
139        int _numSyscallDescs) :
140    X86LiveProcess(params, objFile, _syscallDescs, _numSyscallDescs)
141{
142
143    vsyscallPage.base = 0xffffffffff600000ULL;
144    vsyscallPage.size = VMPageSize;
145    vsyscallPage.vtimeOffset = 0x400;
146    vsyscallPage.vgettimeofdayOffset = 0x410;
147
148    // Set up stack. On X86_64 Linux, stack goes from the top of memory
149    // downward, less the hole for the kernel address space plus one page
150    // for undertermined purposes.
151    stack_base = (Addr)0x7FFFFFFFF000ULL;
152
153    // Set pointer for next thread stack.  Reserve 8M for main stack.
154    next_thread_stack_base = stack_base - (8 * 1024 * 1024);
155
156    // Set up region for mmaps. This was determined empirically and may not
157    // always be correct.
158    mmap_start = mmap_end = (Addr)0x2aaaaaaab000ULL;
159}
160
161void
162I386LiveProcess::syscall(int64_t callnum, ThreadContext *tc)
163{
164    Addr eip = tc->readPC();
165    if (eip >= vsyscallPage.base &&
166            eip < vsyscallPage.base + vsyscallPage.size) {
167        tc->setNextPC(vsyscallPage.base + vsyscallPage.vsysexitOffset);
168    }
169    X86LiveProcess::syscall(callnum, tc);
170}
171
172
173I386LiveProcess::I386LiveProcess(LiveProcessParams *params,
174        ObjectFile *objFile, SyscallDesc *_syscallDescs,
175        int _numSyscallDescs) :
176    X86LiveProcess(params, objFile, _syscallDescs, _numSyscallDescs)
177{
178    _gdtStart = ULL(0x100000000);
179    _gdtSize = VMPageSize;
180
181    vsyscallPage.base = 0xffffe000ULL;
182    vsyscallPage.size = VMPageSize;
183    vsyscallPage.vsyscallOffset = 0x400;
184    vsyscallPage.vsysexitOffset = 0x410;
185
186    stack_base = vsyscallPage.base;
187
188    // Set pointer for next thread stack.  Reserve 8M for main stack.
189    next_thread_stack_base = stack_base - (8 * 1024 * 1024);
190
191    // Set up region for mmaps. This was determined empirically and may not
192    // always be correct.
193    mmap_start = mmap_end = (Addr)0xf7ffe000ULL;
194}
195
196SyscallDesc*
197X86LiveProcess::getDesc(int callnum)
198{
199    if (callnum < 0 || callnum >= numSyscallDescs)
200        return NULL;
201    return &syscallDescs[callnum];
202}
203
204void
205X86_64LiveProcess::startup()
206{
207    LiveProcess::startup();
208
209    if (checkpointRestored)
210        return;
211
212    argsInit(sizeof(uint64_t), VMPageSize);
213
214       // Set up the vsyscall page for this process.
215    pTable->allocate(vsyscallPage.base, vsyscallPage.size);
216    uint8_t vtimeBlob[] = {
217        0x48,0xc7,0xc0,0xc9,0x00,0x00,0x00,    // mov    $0xc9,%rax
218        0x0f,0x05,                             // syscall
219        0xc3                                   // retq
220    };
221    initVirtMem->writeBlob(vsyscallPage.base + vsyscallPage.vtimeOffset,
222            vtimeBlob, sizeof(vtimeBlob));
223
224    uint8_t vgettimeofdayBlob[] = {
225        0x48,0xc7,0xc0,0x60,0x00,0x00,0x00,    // mov    $0x60,%rax
226        0x0f,0x05,                             // syscall
227        0xc3                                   // retq
228    };
229    initVirtMem->writeBlob(vsyscallPage.base + vsyscallPage.vgettimeofdayOffset,
230            vgettimeofdayBlob, sizeof(vgettimeofdayBlob));
231
232    for (int i = 0; i < contextIds.size(); i++) {
233        ThreadContext * tc = system->getThreadContext(contextIds[i]);
234
235        SegAttr dataAttr = 0;
236        dataAttr.dpl = 3;
237        dataAttr.unusable = 0;
238        dataAttr.defaultSize = 1;
239        dataAttr.longMode = 1;
240        dataAttr.avl = 0;
241        dataAttr.granularity = 1;
242        dataAttr.present = 1;
243        dataAttr.type = 3;
244        dataAttr.writable = 1;
245        dataAttr.readable = 1;
246        dataAttr.expandDown = 0;
247        dataAttr.system = 1;
248
249        //Initialize the segment registers.
250        for(int seg = 0; seg < NUM_SEGMENTREGS; seg++) {
251            tc->setMiscRegNoEffect(MISCREG_SEG_BASE(seg), 0);
252            tc->setMiscRegNoEffect(MISCREG_SEG_EFF_BASE(seg), 0);
253            tc->setMiscRegNoEffect(MISCREG_SEG_ATTR(seg), dataAttr);
254        }
255
256        SegAttr csAttr = 0;
257        csAttr.dpl = 3;
258        csAttr.unusable = 0;
259        csAttr.defaultSize = 0;
260        csAttr.longMode = 1;
261        csAttr.avl = 0;
262        csAttr.granularity = 1;
263        csAttr.present = 1;
264        csAttr.type = 10;
265        csAttr.writable = 0;
266        csAttr.readable = 1;
267        csAttr.expandDown = 0;
268        csAttr.system = 1;
269
270        tc->setMiscRegNoEffect(MISCREG_CS_ATTR, csAttr);
271
272        Efer efer = 0;
273        efer.sce = 1; // Enable system call extensions.
274        efer.lme = 1; // Enable long mode.
275        efer.lma = 1; // Activate long mode.
276        efer.nxe = 1; // Enable nx support.
277        efer.svme = 0; // Disable svm support for now. It isn't implemented.
278        efer.ffxsr = 1; // Turn on fast fxsave and fxrstor.
279        tc->setMiscReg(MISCREG_EFER, efer);
280
281        //Set up the registers that describe the operating mode.
282        CR0 cr0 = 0;
283        cr0.pg = 1; // Turn on paging.
284        cr0.cd = 0; // Don't disable caching.
285        cr0.nw = 0; // This is bit is defined to be ignored.
286        cr0.am = 0; // No alignment checking
287        cr0.wp = 0; // Supervisor mode can write read only pages
288        cr0.ne = 1;
289        cr0.et = 1; // This should always be 1
290        cr0.ts = 0; // We don't do task switching, so causing fp exceptions
291                    // would be pointless.
292        cr0.em = 0; // Allow x87 instructions to execute natively.
293        cr0.mp = 1; // This doesn't really matter, but the manual suggests
294                    // setting it to one.
295        cr0.pe = 1; // We're definitely in protected mode.
296        tc->setMiscReg(MISCREG_CR0, cr0);
297
298        tc->setMiscReg(MISCREG_MXCSR, 0x1f80);
299    }
300}
301
302void
303I386LiveProcess::startup()
304{
305    LiveProcess::startup();
306
307    if (checkpointRestored)
308        return;
309
310    argsInit(sizeof(uint32_t), VMPageSize);
311
312    /*
313     * Set up a GDT for this process. The whole GDT wouldn't really be for
314     * this process, but the only parts we care about are.
315     */
316    pTable->allocate(_gdtStart, _gdtSize);
317    uint64_t zero = 0;
318    assert(_gdtSize % sizeof(zero) == 0);
319    for (Addr gdtCurrent = _gdtStart;
320            gdtCurrent < _gdtStart + _gdtSize; gdtCurrent += sizeof(zero)) {
321        initVirtMem->write(gdtCurrent, zero);
322    }
323
324    // Set up the vsyscall page for this process.
325    pTable->allocate(vsyscallPage.base, vsyscallPage.size);
326    uint8_t vsyscallBlob[] = {
327        0x51,       // push %ecx
328        0x52,       // push %edp
329        0x55,       // push %ebp
330        0x89, 0xe5, // mov %esp, %ebp
331        0x0f, 0x34  // sysenter
332    };
333    initVirtMem->writeBlob(vsyscallPage.base + vsyscallPage.vsyscallOffset,
334            vsyscallBlob, sizeof(vsyscallBlob));
335
336    uint8_t vsysexitBlob[] = {
337        0x5d,       // pop %ebp
338        0x5a,       // pop %edx
339        0x59,       // pop %ecx
340        0xc3        // ret
341    };
342    initVirtMem->writeBlob(vsyscallPage.base + vsyscallPage.vsysexitOffset,
343            vsysexitBlob, sizeof(vsysexitBlob));
344
345    for (int i = 0; i < contextIds.size(); i++) {
346        ThreadContext * tc = system->getThreadContext(contextIds[i]);
347
348        SegAttr dataAttr = 0;
349        dataAttr.dpl = 3;
350        dataAttr.unusable = 0;
351        dataAttr.defaultSize = 1;
352        dataAttr.longMode = 0;
353        dataAttr.avl = 0;
354        dataAttr.granularity = 1;
355        dataAttr.present = 1;
356        dataAttr.type = 3;
357        dataAttr.writable = 1;
358        dataAttr.readable = 1;
359        dataAttr.expandDown = 0;
360        dataAttr.system = 1;
361
362        //Initialize the segment registers.
363        for(int seg = 0; seg < NUM_SEGMENTREGS; seg++) {
364            tc->setMiscRegNoEffect(MISCREG_SEG_BASE(seg), 0);
365            tc->setMiscRegNoEffect(MISCREG_SEG_EFF_BASE(seg), 0);
366            tc->setMiscRegNoEffect(MISCREG_SEG_ATTR(seg), dataAttr);
367            tc->setMiscRegNoEffect(MISCREG_SEG_SEL(seg), 0xB);
368            tc->setMiscRegNoEffect(MISCREG_SEG_LIMIT(seg), (uint32_t)(-1));
369        }
370
371        SegAttr csAttr = 0;
372        csAttr.dpl = 3;
373        csAttr.unusable = 0;
374        csAttr.defaultSize = 1;
375        csAttr.longMode = 0;
376        csAttr.avl = 0;
377        csAttr.granularity = 1;
378        csAttr.present = 1;
379        csAttr.type = 0xa;
380        csAttr.writable = 0;
381        csAttr.readable = 1;
382        csAttr.expandDown = 0;
383        csAttr.system = 1;
384
385        tc->setMiscRegNoEffect(MISCREG_CS_ATTR, csAttr);
386
387        tc->setMiscRegNoEffect(MISCREG_TSG_BASE, _gdtStart);
388        tc->setMiscRegNoEffect(MISCREG_TSG_EFF_BASE, _gdtStart);
389        tc->setMiscRegNoEffect(MISCREG_TSG_LIMIT, _gdtStart + _gdtSize - 1);
390
391        // Set the LDT selector to 0 to deactivate it.
392        tc->setMiscRegNoEffect(MISCREG_TSL, 0);
393
394        Efer efer = 0;
395        efer.sce = 1; // Enable system call extensions.
396        efer.lme = 1; // Enable long mode.
397        efer.lma = 0; // Deactivate long mode.
398        efer.nxe = 1; // Enable nx support.
399        efer.svme = 0; // Disable svm support for now. It isn't implemented.
400        efer.ffxsr = 1; // Turn on fast fxsave and fxrstor.
401        tc->setMiscReg(MISCREG_EFER, efer);
402
403        //Set up the registers that describe the operating mode.
404        CR0 cr0 = 0;
405        cr0.pg = 1; // Turn on paging.
406        cr0.cd = 0; // Don't disable caching.
407        cr0.nw = 0; // This is bit is defined to be ignored.
408        cr0.am = 0; // No alignment checking
409        cr0.wp = 0; // Supervisor mode can write read only pages
410        cr0.ne = 1;
411        cr0.et = 1; // This should always be 1
412        cr0.ts = 0; // We don't do task switching, so causing fp exceptions
413                    // would be pointless.
414        cr0.em = 0; // Allow x87 instructions to execute natively.
415        cr0.mp = 1; // This doesn't really matter, but the manual suggests
416                    // setting it to one.
417        cr0.pe = 1; // We're definitely in protected mode.
418        tc->setMiscReg(MISCREG_CR0, cr0);
419
420        tc->setMiscReg(MISCREG_MXCSR, 0x1f80);
421    }
422}
423
424template<class IntType>
425void
426X86LiveProcess::argsInit(int pageSize,
427        std::vector<AuxVector<IntType> > extraAuxvs)
428{
429    int intSize = sizeof(IntType);
430
431    typedef AuxVector<IntType> auxv_t;
432    std::vector<auxv_t> auxv = extraAuxvs;
433
434    string filename;
435    if(argv.size() < 1)
436        filename = "";
437    else
438        filename = argv[0];
439
440    //We want 16 byte alignment
441    uint64_t align = 16;
442
443    // load object file into target memory
444    objFile->loadSections(initVirtMem);
445
446    enum X86CpuFeature {
447        X86_OnboardFPU = 1 << 0,
448        X86_VirtualModeExtensions = 1 << 1,
449        X86_DebuggingExtensions = 1 << 2,
450        X86_PageSizeExtensions = 1 << 3,
451
452        X86_TimeStampCounter = 1 << 4,
453        X86_ModelSpecificRegisters = 1 << 5,
454        X86_PhysicalAddressExtensions = 1 << 6,
455        X86_MachineCheckExtensions = 1 << 7,
456
457        X86_CMPXCHG8Instruction = 1 << 8,
458        X86_OnboardAPIC = 1 << 9,
459        X86_SYSENTER_SYSEXIT = 1 << 11,
460
461        X86_MemoryTypeRangeRegisters = 1 << 12,
462        X86_PageGlobalEnable = 1 << 13,
463        X86_MachineCheckArchitecture = 1 << 14,
464        X86_CMOVInstruction = 1 << 15,
465
466        X86_PageAttributeTable = 1 << 16,
467        X86_36BitPSEs = 1 << 17,
468        X86_ProcessorSerialNumber = 1 << 18,
469        X86_CLFLUSHInstruction = 1 << 19,
470
471        X86_DebugTraceStore = 1 << 21,
472        X86_ACPIViaMSR = 1 << 22,
473        X86_MultimediaExtensions = 1 << 23,
474
475        X86_FXSAVE_FXRSTOR = 1 << 24,
476        X86_StreamingSIMDExtensions = 1 << 25,
477        X86_StreamingSIMDExtensions2 = 1 << 26,
478        X86_CPUSelfSnoop = 1 << 27,
479
480        X86_HyperThreading = 1 << 28,
481        X86_AutomaticClockControl = 1 << 29,
482        X86_IA64Processor = 1 << 30
483    };
484
485    //Setup the auxilliary vectors. These will already have endian conversion.
486    //Auxilliary vectors are loaded only for elf formatted executables.
487    ElfObject * elfObject = dynamic_cast<ElfObject *>(objFile);
488    if(elfObject)
489    {
490        uint64_t features =
491            X86_OnboardFPU |
492            X86_VirtualModeExtensions |
493            X86_DebuggingExtensions |
494            X86_PageSizeExtensions |
495            X86_TimeStampCounter |
496            X86_ModelSpecificRegisters |
497            X86_PhysicalAddressExtensions |
498            X86_MachineCheckExtensions |
499            X86_CMPXCHG8Instruction |
500            X86_OnboardAPIC |
501            X86_SYSENTER_SYSEXIT |
502            X86_MemoryTypeRangeRegisters |
503            X86_PageGlobalEnable |
504            X86_MachineCheckArchitecture |
505            X86_CMOVInstruction |
506            X86_PageAttributeTable |
507            X86_36BitPSEs |
508//            X86_ProcessorSerialNumber |
509            X86_CLFLUSHInstruction |
510//            X86_DebugTraceStore |
511//            X86_ACPIViaMSR |
512            X86_MultimediaExtensions |
513            X86_FXSAVE_FXRSTOR |
514            X86_StreamingSIMDExtensions |
515            X86_StreamingSIMDExtensions2 |
516//            X86_CPUSelfSnoop |
517//            X86_HyperThreading |
518//            X86_AutomaticClockControl |
519//            X86_IA64Processor |
520            0;
521
522        //Bits which describe the system hardware capabilities
523        //XXX Figure out what these should be
524        auxv.push_back(auxv_t(M5_AT_HWCAP, features));
525        //The system page size
526        auxv.push_back(auxv_t(M5_AT_PAGESZ, X86ISA::VMPageSize));
527        //Frequency at which times() increments
528        //Defined to be 100 in the kernel source.
529        auxv.push_back(auxv_t(M5_AT_CLKTCK, 100));
530        // For statically linked executables, this is the virtual address of the
531        // program header tables if they appear in the executable image
532        auxv.push_back(auxv_t(M5_AT_PHDR, elfObject->programHeaderTable()));
533        // This is the size of a program header entry from the elf file.
534        auxv.push_back(auxv_t(M5_AT_PHENT, elfObject->programHeaderSize()));
535        // This is the number of program headers from the original elf file.
536        auxv.push_back(auxv_t(M5_AT_PHNUM, elfObject->programHeaderCount()));
537        //This is the address of the elf "interpreter", It should be set
538        //to 0 for regular executables. It should be something else
539        //(not sure what) for dynamic libraries.
540        auxv.push_back(auxv_t(M5_AT_BASE, 0));
541
542        //XXX Figure out what this should be.
543        auxv.push_back(auxv_t(M5_AT_FLAGS, 0));
544        //The entry point to the program
545        auxv.push_back(auxv_t(M5_AT_ENTRY, objFile->entryPoint()));
546        //Different user and group IDs
547        auxv.push_back(auxv_t(M5_AT_UID, uid()));
548        auxv.push_back(auxv_t(M5_AT_EUID, euid()));
549        auxv.push_back(auxv_t(M5_AT_GID, gid()));
550        auxv.push_back(auxv_t(M5_AT_EGID, egid()));
551        //Whether to enable "secure mode" in the executable
552        auxv.push_back(auxv_t(M5_AT_SECURE, 0));
553        //The address of 16 "random" bytes.
554        auxv.push_back(auxv_t(M5_AT_RANDOM, 0));
555        //The name of the program
556        auxv.push_back(auxv_t(M5_AT_EXECFN, 0));
557        //The platform string
558        auxv.push_back(auxv_t(M5_AT_PLATFORM, 0));
559    }
560
561    //Figure out how big the initial stack needs to be
562
563    // A sentry NULL void pointer at the top of the stack.
564    int sentry_size = intSize;
565
566    //This is the name of the file which is present on the initial stack
567    //It's purpose is to let the user space linker examine the original file.
568    int file_name_size = filename.size() + 1;
569
570    const int numRandomBytes = 16;
571    int aux_data_size = numRandomBytes;
572
573    string platform = "x86_64";
574    aux_data_size += platform.size() + 1;
575
576    int env_data_size = 0;
577    for (int i = 0; i < envp.size(); ++i) {
578        env_data_size += envp[i].size() + 1;
579    }
580    int arg_data_size = 0;
581    for (int i = 0; i < argv.size(); ++i) {
582        arg_data_size += argv[i].size() + 1;
583    }
584
585    //The info_block needs to be padded so it's size is a multiple of the
586    //alignment mask. Also, it appears that there needs to be at least some
587    //padding, so if the size is already a multiple, we need to increase it
588    //anyway.
589    int base_info_block_size =
590        sentry_size + file_name_size + env_data_size + arg_data_size;
591
592    int info_block_size = roundUp(base_info_block_size, align);
593
594    int info_block_padding = info_block_size - base_info_block_size;
595
596    //Each auxilliary vector is two 8 byte words
597    int aux_array_size = intSize * 2 * (auxv.size() + 1);
598
599    int envp_array_size = intSize * (envp.size() + 1);
600    int argv_array_size = intSize * (argv.size() + 1);
601
602    int argc_size = intSize;
603
604    //Figure out the size of the contents of the actual initial frame
605    int frame_size =
606        aux_array_size +
607        envp_array_size +
608        argv_array_size +
609        argc_size;
610
611    //There needs to be padding after the auxiliary vector data so that the
612    //very bottom of the stack is aligned properly.
613    int partial_size = frame_size + aux_data_size;
614    int aligned_partial_size = roundUp(partial_size, align);
615    int aux_padding = aligned_partial_size - partial_size;
616
617    int space_needed =
618        info_block_size +
619        aux_data_size +
620        aux_padding +
621        frame_size;
622
623    stack_min = stack_base - space_needed;
624    stack_min = roundDown(stack_min, align);
625    stack_size = stack_base - stack_min;
626
627    // map memory
628    pTable->allocate(roundDown(stack_min, pageSize),
629                     roundUp(stack_size, pageSize));
630
631    // map out initial stack contents
632    IntType sentry_base = stack_base - sentry_size;
633    IntType file_name_base = sentry_base - file_name_size;
634    IntType env_data_base = file_name_base - env_data_size;
635    IntType arg_data_base = env_data_base - arg_data_size;
636    IntType aux_data_base = arg_data_base - info_block_padding - aux_data_size;
637    IntType auxv_array_base = aux_data_base - aux_array_size - aux_padding;
638    IntType envp_array_base = auxv_array_base - envp_array_size;
639    IntType argv_array_base = envp_array_base - argv_array_size;
640    IntType argc_base = argv_array_base - argc_size;
641
642    DPRINTF(Stack, "The addresses of items on the initial stack:\n");
643    DPRINTF(Stack, "0x%x - file name\n", file_name_base);
644    DPRINTF(Stack, "0x%x - env data\n", env_data_base);
645    DPRINTF(Stack, "0x%x - arg data\n", arg_data_base);
646    DPRINTF(Stack, "0x%x - aux data\n", aux_data_base);
647    DPRINTF(Stack, "0x%x - auxv array\n", auxv_array_base);
648    DPRINTF(Stack, "0x%x - envp array\n", envp_array_base);
649    DPRINTF(Stack, "0x%x - argv array\n", argv_array_base);
650    DPRINTF(Stack, "0x%x - argc \n", argc_base);
651    DPRINTF(Stack, "0x%x - stack min\n", stack_min);
652
653    // write contents to stack
654
655    // figure out argc
656    IntType argc = argv.size();
657    IntType guestArgc = X86ISA::htog(argc);
658
659    //Write out the sentry void *
660    IntType sentry_NULL = 0;
661    initVirtMem->writeBlob(sentry_base,
662            (uint8_t*)&sentry_NULL, sentry_size);
663
664    //Write the file name
665    initVirtMem->writeString(file_name_base, filename.c_str());
666
667    //Fix up the aux vectors which point to data
668    assert(auxv[auxv.size() - 3].a_type == M5_AT_RANDOM);
669    auxv[auxv.size() - 3].a_val = aux_data_base;
670    assert(auxv[auxv.size() - 2].a_type == M5_AT_EXECFN);
671    auxv[auxv.size() - 2].a_val = argv_array_base;
672    assert(auxv[auxv.size() - 1].a_type == M5_AT_PLATFORM);
673    auxv[auxv.size() - 1].a_val = aux_data_base + numRandomBytes;
674
675    //Copy the aux stuff
676    for(int x = 0; x < auxv.size(); x++)
677    {
678        initVirtMem->writeBlob(auxv_array_base + x * 2 * intSize,
679                (uint8_t*)&(auxv[x].a_type), intSize);
680        initVirtMem->writeBlob(auxv_array_base + (x * 2 + 1) * intSize,
681                (uint8_t*)&(auxv[x].a_val), intSize);
682    }
683    //Write out the terminating zeroed auxilliary vector
684    const uint64_t zero = 0;
685    initVirtMem->writeBlob(auxv_array_base + 2 * intSize * auxv.size(),
686            (uint8_t*)&zero, 2 * intSize);
687
688    initVirtMem->writeString(aux_data_base, platform.c_str());
689
690    copyStringArray(envp, envp_array_base, env_data_base, initVirtMem);
691    copyStringArray(argv, argv_array_base, arg_data_base, initVirtMem);
692
693    initVirtMem->writeBlob(argc_base, (uint8_t*)&guestArgc, intSize);
694
695    ThreadContext *tc = system->getThreadContext(contextIds[0]);
696    //Set the stack pointer register
697    tc->setIntReg(StackPointerReg, stack_min);
698
699    Addr prog_entry = objFile->entryPoint();
700    // There doesn't need to be any segment base added in since we're dealing
701    // with the flat segmentation model.
702    tc->setPC(prog_entry);
703    tc->setNextPC(prog_entry + sizeof(MachInst));
704
705    //Align the "stack_min" to a page boundary.
706    stack_min = roundDown(stack_min, pageSize);
707
708//    num_processes++;
709}
710
711void
712X86_64LiveProcess::argsInit(int intSize, int pageSize)
713{
714    std::vector<AuxVector<uint64_t> > extraAuxvs;
715    extraAuxvs.push_back(AuxVector<uint64_t>(M5_AT_SYSINFO_EHDR,
716                vsyscallPage.base));
717    X86LiveProcess::argsInit<uint64_t>(pageSize, extraAuxvs);
718}
719
720void
721I386LiveProcess::argsInit(int intSize, int pageSize)
722{
723    std::vector<AuxVector<uint32_t> > extraAuxvs;
724    //Tell the binary where the vsyscall part of the vsyscall page is.
725    extraAuxvs.push_back(AuxVector<uint32_t>(M5_AT_SYSINFO,
726                vsyscallPage.base + vsyscallPage.vsyscallOffset));
727    extraAuxvs.push_back(AuxVector<uint32_t>(M5_AT_SYSINFO_EHDR,
728                vsyscallPage.base));
729    X86LiveProcess::argsInit<uint32_t>(pageSize, extraAuxvs);
730}
731
732void
733X86LiveProcess::setSyscallReturn(ThreadContext *tc, SyscallReturn return_value)
734{
735    tc->setIntReg(INTREG_RAX, return_value.value());
736}
737
738X86ISA::IntReg
739X86_64LiveProcess::getSyscallArg(ThreadContext *tc, int &i)
740{
741    assert(i < NumArgumentRegs);
742    return tc->readIntReg(ArgumentReg[i++]);
743}
744
745void
746X86_64LiveProcess::setSyscallArg(ThreadContext *tc, int i, X86ISA::IntReg val)
747{
748    assert(i < NumArgumentRegs);
749    return tc->setIntReg(ArgumentReg[i], val);
750}
751
752X86ISA::IntReg
753I386LiveProcess::getSyscallArg(ThreadContext *tc, int &i)
754{
755    assert(i < NumArgumentRegs32);
756    return tc->readIntReg(ArgumentReg32[i++]);
757}
758
759X86ISA::IntReg
760I386LiveProcess::getSyscallArg(ThreadContext *tc, int &i, int width)
761{
762    assert(width == 32 || width == 64);
763    assert(i < NumArgumentRegs);
764    uint64_t retVal = tc->readIntReg(ArgumentReg32[i++]) & mask(32);
765    if (width == 64)
766        retVal |= ((uint64_t)tc->readIntReg(ArgumentReg[i++]) << 32);
767    return retVal;
768}
769
770void
771I386LiveProcess::setSyscallArg(ThreadContext *tc, int i, X86ISA::IntReg val)
772{
773    assert(i < NumArgumentRegs);
774    return tc->setIntReg(ArgumentReg[i], val);
775}
776