process.cc revision 8852:c744483edfcf
1/*
2 * Copyright (c) 2003-2004 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#include "arch/sparc/asi.hh"
33#include "arch/sparc/handlers.hh"
34#include "arch/sparc/isa_traits.hh"
35#include "arch/sparc/process.hh"
36#include "arch/sparc/registers.hh"
37#include "arch/sparc/types.hh"
38#include "base/loader/elf_object.hh"
39#include "base/loader/object_file.hh"
40#include "base/misc.hh"
41#include "cpu/thread_context.hh"
42#include "debug/Stack.hh"
43#include "mem/page_table.hh"
44#include "sim/process_impl.hh"
45#include "sim/system.hh"
46
47using namespace std;
48using namespace SparcISA;
49
50static const int FirstArgumentReg = 8;
51
52
53SparcLiveProcess::SparcLiveProcess(LiveProcessParams * params,
54        ObjectFile *objFile, Addr _StackBias)
55    : LiveProcess(params, objFile), StackBias(_StackBias)
56{
57
58    // XXX all the below need to be updated for SPARC - Ali
59    brk_point = objFile->dataBase() + objFile->dataSize() + objFile->bssSize();
60    brk_point = roundUp(brk_point, VMPageSize);
61
62    // Set pointer for next thread stack.  Reserve 8M for main stack.
63    next_thread_stack_base = stack_base - (8 * 1024 * 1024);
64
65    // Initialize these to 0s
66    fillStart = 0;
67    spillStart = 0;
68}
69
70void
71SparcLiveProcess::handleTrap(int trapNum, ThreadContext *tc)
72{
73    PCState pc = tc->pcState();
74    switch (trapNum) {
75      case 0x01: // Software breakpoint
76        warn("Software breakpoint encountered at pc %#x.\n", pc.pc());
77        break;
78      case 0x02: // Division by zero
79        warn("Software signaled a division by zero at pc %#x.\n", pc.pc());
80        break;
81      case 0x03: // Flush window trap
82        flushWindows(tc);
83        break;
84      case 0x04: // Clean windows
85        warn("Ignoring process request for clean register "
86                "windows at pc %#x.\n", pc.pc());
87        break;
88      case 0x05: // Range check
89        warn("Software signaled a range check at pc %#x.\n", pc.pc());
90        break;
91      case 0x06: // Fix alignment
92        warn("Ignoring process request for os assisted unaligned accesses "
93                "at pc %#x.\n", pc.pc());
94        break;
95      case 0x07: // Integer overflow
96        warn("Software signaled an integer overflow at pc %#x.\n", pc.pc());
97        break;
98      case 0x32: // Get integer condition codes
99        warn("Ignoring process request to get the integer condition codes "
100                "at pc %#x.\n", pc.pc());
101        break;
102      case 0x33: // Set integer condition codes
103        warn("Ignoring process request to set the integer condition codes "
104                "at pc %#x.\n", pc.pc());
105        break;
106      default:
107        panic("Unimplemented trap to operating system: trap number %#x.\n", trapNum);
108    }
109}
110
111void
112SparcLiveProcess::initState()
113{
114    LiveProcess::initState();
115
116    ThreadContext *tc = system->getThreadContext(contextIds[0]);
117    // From the SPARC ABI
118
119    // Setup default FP state
120    tc->setMiscRegNoEffect(MISCREG_FSR, 0);
121
122    tc->setMiscRegNoEffect(MISCREG_TICK, 0);
123
124    /*
125     * Register window management registers
126     */
127
128    // No windows contain info from other programs
129    // tc->setMiscRegNoEffect(MISCREG_OTHERWIN, 0);
130    tc->setIntReg(NumIntArchRegs + 6, 0);
131    // There are no windows to pop
132    // tc->setMiscRegNoEffect(MISCREG_CANRESTORE, 0);
133    tc->setIntReg(NumIntArchRegs + 4, 0);
134    // All windows are available to save into
135    // tc->setMiscRegNoEffect(MISCREG_CANSAVE, NWindows - 2);
136    tc->setIntReg(NumIntArchRegs + 3, NWindows - 2);
137    // All windows are "clean"
138    // tc->setMiscRegNoEffect(MISCREG_CLEANWIN, NWindows);
139    tc->setIntReg(NumIntArchRegs + 5, NWindows);
140    // Start with register window 0
141    tc->setMiscReg(MISCREG_CWP, 0);
142    // Always use spill and fill traps 0
143    // tc->setMiscRegNoEffect(MISCREG_WSTATE, 0);
144    tc->setIntReg(NumIntArchRegs + 7, 0);
145    // Set the trap level to 0
146    tc->setMiscRegNoEffect(MISCREG_TL, 0);
147    // Set the ASI register to something fixed
148    tc->setMiscRegNoEffect(MISCREG_ASI, ASI_PRIMARY);
149
150    /*
151     * T1 specific registers
152     */
153    // Turn on the icache, dcache, dtb translation, and itb translation.
154    tc->setMiscRegNoEffect(MISCREG_MMU_LSU_CTRL, 15);
155}
156
157void
158Sparc32LiveProcess::initState()
159{
160    SparcLiveProcess::initState();
161
162    ThreadContext *tc = system->getThreadContext(contextIds[0]);
163    // The process runs in user mode with 32 bit addresses
164    PSTATE pstate = 0;
165    pstate.ie = 1;
166    pstate.am = 1;
167    tc->setMiscReg(MISCREG_PSTATE, pstate);
168
169    argsInit(32 / 8, VMPageSize);
170}
171
172void
173Sparc64LiveProcess::initState()
174{
175    SparcLiveProcess::initState();
176
177    ThreadContext *tc = system->getThreadContext(contextIds[0]);
178    // The process runs in user mode
179    PSTATE pstate = 0;
180    pstate.ie = 1;
181    tc->setMiscReg(MISCREG_PSTATE, pstate);
182
183    argsInit(sizeof(IntReg), VMPageSize);
184}
185
186template<class IntType>
187void
188SparcLiveProcess::argsInit(int pageSize)
189{
190    int intSize = sizeof(IntType);
191
192    typedef AuxVector<IntType> auxv_t;
193
194    std::vector<auxv_t> auxv;
195
196    string filename;
197    if (argv.size() < 1)
198        filename = "";
199    else
200        filename = argv[0];
201
202    // Even for a 32 bit process, the ABI says we still need to
203    // maintain double word alignment of the stack pointer.
204    uint64_t align = 16;
205
206    // load object file into target memory
207    objFile->loadSections(initVirtMem);
208
209    enum hardwareCaps
210    {
211        M5_HWCAP_SPARC_FLUSH = 1,
212        M5_HWCAP_SPARC_STBAR = 2,
213        M5_HWCAP_SPARC_SWAP = 4,
214        M5_HWCAP_SPARC_MULDIV = 8,
215        M5_HWCAP_SPARC_V9 = 16,
216        // This one should technically only be set
217        // if there is a cheetah or cheetah_plus tlb,
218        // but we'll use it all the time
219        M5_HWCAP_SPARC_ULTRA3 = 32
220    };
221
222    const int64_t hwcap =
223        M5_HWCAP_SPARC_FLUSH |
224        M5_HWCAP_SPARC_STBAR |
225        M5_HWCAP_SPARC_SWAP |
226        M5_HWCAP_SPARC_MULDIV |
227        M5_HWCAP_SPARC_V9 |
228        M5_HWCAP_SPARC_ULTRA3;
229
230    // Setup the auxilliary vectors. These will already have endian conversion.
231    // Auxilliary vectors are loaded only for elf formatted executables.
232    ElfObject * elfObject = dynamic_cast<ElfObject *>(objFile);
233    if (elfObject) {
234        // Bits which describe the system hardware capabilities
235        auxv.push_back(auxv_t(M5_AT_HWCAP, hwcap));
236        // The system page size
237        auxv.push_back(auxv_t(M5_AT_PAGESZ, SparcISA::VMPageSize));
238        // Defined to be 100 in the kernel source.
239        // Frequency at which times() increments
240        auxv.push_back(auxv_t(M5_AT_CLKTCK, 100));
241        // For statically linked executables, this is the virtual address of the
242        // program header tables if they appear in the executable image
243        auxv.push_back(auxv_t(M5_AT_PHDR, elfObject->programHeaderTable()));
244        // This is the size of a program header entry from the elf file.
245        auxv.push_back(auxv_t(M5_AT_PHENT, elfObject->programHeaderSize()));
246        // This is the number of program headers from the original elf file.
247        auxv.push_back(auxv_t(M5_AT_PHNUM, elfObject->programHeaderCount()));
248        // This is the address of the elf "interpreter", It should be set
249        // to 0 for regular executables. It should be something else
250        // (not sure what) for dynamic libraries.
251        auxv.push_back(auxv_t(M5_AT_BASE, 0));
252        // This is hardwired to 0 in the elf loading code in the kernel
253        auxv.push_back(auxv_t(M5_AT_FLAGS, 0));
254        // The entry point to the program
255        auxv.push_back(auxv_t(M5_AT_ENTRY, objFile->entryPoint()));
256        // Different user and group IDs
257        auxv.push_back(auxv_t(M5_AT_UID, uid()));
258        auxv.push_back(auxv_t(M5_AT_EUID, euid()));
259        auxv.push_back(auxv_t(M5_AT_GID, gid()));
260        auxv.push_back(auxv_t(M5_AT_EGID, egid()));
261        // Whether to enable "secure mode" in the executable
262        auxv.push_back(auxv_t(M5_AT_SECURE, 0));
263    }
264
265    // Figure out how big the initial stack needs to be
266
267    // The unaccounted for 8 byte 0 at the top of the stack
268    int sentry_size = 8;
269
270    // This is the name of the file which is present on the initial stack
271    // It's purpose is to let the user space linker examine the original file.
272    int file_name_size = filename.size() + 1;
273
274    int env_data_size = 0;
275    for (int i = 0; i < envp.size(); ++i) {
276        env_data_size += envp[i].size() + 1;
277    }
278    int arg_data_size = 0;
279    for (int i = 0; i < argv.size(); ++i) {
280        arg_data_size += argv[i].size() + 1;
281    }
282
283    // The info_block.
284    int base_info_block_size =
285        sentry_size + file_name_size + env_data_size + arg_data_size;
286
287    int info_block_size = roundUp(base_info_block_size, align);
288
289    int info_block_padding = info_block_size - base_info_block_size;
290
291    // Each auxilliary vector is two words
292    int aux_array_size = intSize * 2 * (auxv.size() + 1);
293
294    int envp_array_size = intSize * (envp.size() + 1);
295    int argv_array_size = intSize * (argv.size() + 1);
296
297    int argc_size = intSize;
298    int window_save_size = intSize * 16;
299
300    // Figure out the size of the contents of the actual initial frame
301    int frame_size =
302        aux_array_size +
303        envp_array_size +
304        argv_array_size +
305        argc_size +
306        window_save_size;
307
308    // There needs to be padding after the auxiliary vector data so that the
309    // very bottom of the stack is aligned properly.
310    int aligned_partial_size = roundUp(frame_size, align);
311    int aux_padding = aligned_partial_size - frame_size;
312
313    int space_needed =
314        info_block_size +
315        aux_padding +
316        frame_size;
317
318    stack_min = stack_base - space_needed;
319    stack_min = roundDown(stack_min, align);
320    stack_size = stack_base - stack_min;
321
322    // Allocate space for the stack
323    allocateMem(roundDown(stack_min, pageSize), roundUp(stack_size, pageSize));
324
325    // map out initial stack contents
326    IntType sentry_base = stack_base - sentry_size;
327    IntType file_name_base = sentry_base - file_name_size;
328    IntType env_data_base = file_name_base - env_data_size;
329    IntType arg_data_base = env_data_base - arg_data_size;
330    IntType auxv_array_base = arg_data_base -
331        info_block_padding - aux_array_size - aux_padding;
332    IntType envp_array_base = auxv_array_base - envp_array_size;
333    IntType argv_array_base = envp_array_base - argv_array_size;
334    IntType argc_base = argv_array_base - argc_size;
335#if TRACING_ON
336    IntType window_save_base = argc_base - window_save_size;
337#endif
338
339    DPRINTF(Stack, "The addresses of items on the initial stack:\n");
340    DPRINTF(Stack, "%#x - sentry NULL\n", sentry_base);
341    DPRINTF(Stack, "filename = %s\n", filename);
342    DPRINTF(Stack, "%#x - file name\n", file_name_base);
343    DPRINTF(Stack, "%#x - env data\n", env_data_base);
344    DPRINTF(Stack, "%#x - arg data\n", arg_data_base);
345    DPRINTF(Stack, "%#x - auxv array\n", auxv_array_base);
346    DPRINTF(Stack, "%#x - envp array\n", envp_array_base);
347    DPRINTF(Stack, "%#x - argv array\n", argv_array_base);
348    DPRINTF(Stack, "%#x - argc \n", argc_base);
349    DPRINTF(Stack, "%#x - window save\n", window_save_base);
350    DPRINTF(Stack, "%#x - stack min\n", stack_min);
351
352    assert(window_save_base == stack_min);
353
354    // write contents to stack
355
356    // figure out argc
357    IntType argc = argv.size();
358    IntType guestArgc = SparcISA::htog(argc);
359
360    // Write out the sentry void *
361    uint64_t sentry_NULL = 0;
362    initVirtMem.writeBlob(sentry_base,
363            (uint8_t*)&sentry_NULL, sentry_size);
364
365    // Write the file name
366    initVirtMem.writeString(file_name_base, filename.c_str());
367
368    // Copy the aux stuff
369    for (int x = 0; x < auxv.size(); x++) {
370        initVirtMem.writeBlob(auxv_array_base + x * 2 * intSize,
371                (uint8_t*)&(auxv[x].a_type), intSize);
372        initVirtMem.writeBlob(auxv_array_base + (x * 2 + 1) * intSize,
373                (uint8_t*)&(auxv[x].a_val), intSize);
374    }
375
376    // Write out the terminating zeroed auxilliary vector
377    const IntType zero = 0;
378    initVirtMem.writeBlob(auxv_array_base + intSize * 2 * auxv.size(),
379            (uint8_t*)&zero, intSize);
380    initVirtMem.writeBlob(auxv_array_base + intSize * (2 * auxv.size() + 1),
381            (uint8_t*)&zero, intSize);
382
383    copyStringArray(envp, envp_array_base, env_data_base, initVirtMem);
384    copyStringArray(argv, argv_array_base, arg_data_base, initVirtMem);
385
386    initVirtMem.writeBlob(argc_base, (uint8_t*)&guestArgc, intSize);
387
388    // Set up space for the trap handlers into the processes address space.
389    // Since the stack grows down and there is reserved address space abov
390    // it, we can put stuff above it and stay out of the way.
391    fillStart = stack_base;
392    spillStart = fillStart + sizeof(MachInst) * numFillInsts;
393
394    ThreadContext *tc = system->getThreadContext(contextIds[0]);
395    // Set up the thread context to start running the process
396    // assert(NumArgumentRegs >= 2);
397    // tc->setIntReg(ArgumentReg[0], argc);
398    // tc->setIntReg(ArgumentReg[1], argv_array_base);
399    tc->setIntReg(StackPointerReg, stack_min - StackBias);
400
401    // %g1 is a pointer to a function that should be run at exit. Since we
402    // don't have anything like that, it should be set to 0.
403    tc->setIntReg(1, 0);
404
405    tc->pcState(objFile->entryPoint());
406
407    // Align the "stack_min" to a page boundary.
408    stack_min = roundDown(stack_min, pageSize);
409
410//    num_processes++;
411}
412
413void
414Sparc64LiveProcess::argsInit(int intSize, int pageSize)
415{
416    SparcLiveProcess::argsInit<uint64_t>(pageSize);
417
418    // Stuff the trap handlers into the process address space
419    initVirtMem.writeBlob(fillStart,
420            (uint8_t*)fillHandler64, sizeof(MachInst) * numFillInsts);
421    initVirtMem.writeBlob(spillStart,
422            (uint8_t*)spillHandler64, sizeof(MachInst) *  numSpillInsts);
423}
424
425void
426Sparc32LiveProcess::argsInit(int intSize, int pageSize)
427{
428    SparcLiveProcess::argsInit<uint32_t>(pageSize);
429
430    // Stuff the trap handlers into the process address space
431    initVirtMem.writeBlob(fillStart,
432            (uint8_t*)fillHandler32, sizeof(MachInst) * numFillInsts);
433    initVirtMem.writeBlob(spillStart,
434            (uint8_t*)spillHandler32, sizeof(MachInst) *  numSpillInsts);
435}
436
437void Sparc32LiveProcess::flushWindows(ThreadContext *tc)
438{
439    IntReg Cansave = tc->readIntReg(NumIntArchRegs + 3);
440    IntReg Canrestore = tc->readIntReg(NumIntArchRegs + 4);
441    IntReg Otherwin = tc->readIntReg(NumIntArchRegs + 6);
442    MiscReg CWP = tc->readMiscReg(MISCREG_CWP);
443    MiscReg origCWP = CWP;
444    CWP = (CWP + Cansave + 2) % NWindows;
445    while (NWindows - 2 - Cansave != 0) {
446        if (Otherwin) {
447            panic("Otherwin non-zero.\n");
448        } else {
449            tc->setMiscReg(MISCREG_CWP, CWP);
450            // Do the stores
451            IntReg sp = tc->readIntReg(StackPointerReg);
452            for (int index = 16; index < 32; index++) {
453                uint32_t regVal = tc->readIntReg(index);
454                regVal = htog(regVal);
455                if (!tc->getMemProxy().tryWriteBlob(
456                        sp + (index - 16) * 4, (uint8_t *)&regVal, 4)) {
457                    warn("Failed to save register to the stack when "
458                            "flushing windows.\n");
459                }
460            }
461            Canrestore--;
462            Cansave++;
463            CWP = (CWP + 1) % NWindows;
464        }
465    }
466    tc->setIntReg(NumIntArchRegs + 3, Cansave);
467    tc->setIntReg(NumIntArchRegs + 4, Canrestore);
468    tc->setMiscReg(MISCREG_CWP, origCWP);
469}
470
471void
472Sparc64LiveProcess::flushWindows(ThreadContext *tc)
473{
474    IntReg Cansave = tc->readIntReg(NumIntArchRegs + 3);
475    IntReg Canrestore = tc->readIntReg(NumIntArchRegs + 4);
476    IntReg Otherwin = tc->readIntReg(NumIntArchRegs + 6);
477    MiscReg CWP = tc->readMiscReg(MISCREG_CWP);
478    MiscReg origCWP = CWP;
479    CWP = (CWP + Cansave + 2) % NWindows;
480    while (NWindows - 2 - Cansave != 0) {
481        if (Otherwin) {
482            panic("Otherwin non-zero.\n");
483        } else {
484            tc->setMiscReg(MISCREG_CWP, CWP);
485            // Do the stores
486            IntReg sp = tc->readIntReg(StackPointerReg);
487            for (int index = 16; index < 32; index++) {
488                IntReg regVal = tc->readIntReg(index);
489                regVal = htog(regVal);
490                if (!tc->getMemProxy().tryWriteBlob(
491                        sp + 2047 + (index - 16) * 8, (uint8_t *)&regVal, 8)) {
492                    warn("Failed to save register to the stack when "
493                            "flushing windows.\n");
494                }
495            }
496            Canrestore--;
497            Cansave++;
498            CWP = (CWP + 1) % NWindows;
499        }
500    }
501    tc->setIntReg(NumIntArchRegs + 3, Cansave);
502    tc->setIntReg(NumIntArchRegs + 4, Canrestore);
503    tc->setMiscReg(MISCREG_CWP, origCWP);
504}
505
506IntReg
507Sparc32LiveProcess::getSyscallArg(ThreadContext *tc, int &i)
508{
509    assert(i < 6);
510    return bits(tc->readIntReg(FirstArgumentReg + i++), 31, 0);
511}
512
513void
514Sparc32LiveProcess::setSyscallArg(ThreadContext *tc, int i, IntReg val)
515{
516    assert(i < 6);
517    tc->setIntReg(FirstArgumentReg + i, bits(val, 31, 0));
518}
519
520IntReg
521Sparc64LiveProcess::getSyscallArg(ThreadContext *tc, int &i)
522{
523    assert(i < 6);
524    return tc->readIntReg(FirstArgumentReg + i++);
525}
526
527void
528Sparc64LiveProcess::setSyscallArg(ThreadContext *tc, int i, IntReg val)
529{
530    assert(i < 6);
531    tc->setIntReg(FirstArgumentReg + i, val);
532}
533
534void
535SparcLiveProcess::setSyscallReturn(ThreadContext *tc,
536        SyscallReturn return_value)
537{
538    // check for error condition.  SPARC syscall convention is to
539    // indicate success/failure in reg the carry bit of the ccr
540    // and put the return value itself in the standard return value reg ().
541    PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
542    if (return_value.successful()) {
543        // no error, clear XCC.C
544        tc->setIntReg(NumIntArchRegs + 2,
545                tc->readIntReg(NumIntArchRegs + 2) & 0xEE);
546        IntReg val = return_value.value();
547        if (pstate.am)
548            val = bits(val, 31, 0);
549        tc->setIntReg(ReturnValueReg, val);
550    } else {
551        // got an error, set XCC.C
552        tc->setIntReg(NumIntArchRegs + 2,
553                tc->readIntReg(NumIntArchRegs + 2) | 0x11);
554        IntReg val = -return_value.value();
555        if (pstate.am)
556            val = bits(val, 31, 0);
557        tc->setIntReg(ReturnValueReg, val);
558    }
559}
560