process.cc revision 5089:26461daa3819
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 * Ali Saidi 31 */ 32 33#include <unistd.h> 34#include <fcntl.h> 35 36#include <string> 37 38#include "arch/remote_gdb.hh" 39#include "base/intmath.hh" 40#include "base/loader/object_file.hh" 41#include "base/loader/symtab.hh" 42#include "base/statistics.hh" 43#include "config/full_system.hh" 44#include "cpu/thread_context.hh" 45#include "mem/page_table.hh" 46#include "mem/physical.hh" 47#include "mem/translating_port.hh" 48#include "params/LiveProcess.hh" 49#include "sim/process.hh" 50#include "sim/process_impl.hh" 51#include "sim/stats.hh" 52#include "sim/syscall_emul.hh" 53#include "sim/system.hh" 54 55#include "arch/isa_specific.hh" 56#if THE_ISA == ALPHA_ISA 57#include "arch/alpha/linux/process.hh" 58#include "arch/alpha/tru64/process.hh" 59#elif THE_ISA == SPARC_ISA 60#include "arch/sparc/linux/process.hh" 61#include "arch/sparc/solaris/process.hh" 62#elif THE_ISA == MIPS_ISA 63#include "arch/mips/linux/process.hh" 64#elif THE_ISA == X86_ISA 65#include "arch/x86/linux/process.hh" 66#else 67#error "THE_ISA not set" 68#endif 69 70 71using namespace std; 72using namespace TheISA; 73 74// 75// The purpose of this code is to fake the loader & syscall mechanism 76// when there's no OS: thus there's no resone to use it in FULL_SYSTEM 77// mode when we do have an OS 78// 79#if FULL_SYSTEM 80#error "process.cc not compatible with FULL_SYSTEM" 81#endif 82 83// current number of allocated processes 84int num_processes = 0; 85 86Process::Process(const string &nm, 87 System *_system, 88 int stdin_fd, // initial I/O descriptors 89 int stdout_fd, 90 int stderr_fd) 91 : SimObject(makeParams(nm)), system(_system) 92{ 93 M5_pid = system->allocatePID(); 94 // initialize first 3 fds (stdin, stdout, stderr) 95 fd_map[STDIN_FILENO] = stdin_fd; 96 fd_map[STDOUT_FILENO] = stdout_fd; 97 fd_map[STDERR_FILENO] = stderr_fd; 98 99 // mark remaining fds as free 100 for (int i = 3; i <= MAX_FD; ++i) { 101 fd_map[i] = -1; 102 } 103 104 mmap_start = mmap_end = 0; 105 nxm_start = nxm_end = 0; 106 pTable = new PageTable(system); 107 // other parameters will be initialized when the program is loaded 108} 109 110 111void 112Process::regStats() 113{ 114 using namespace Stats; 115 116 num_syscalls 117 .name(name() + ".PROG:num_syscalls") 118 .desc("Number of system calls") 119 ; 120} 121 122// 123// static helper functions 124// 125int 126Process::openInputFile(const string &filename) 127{ 128 int fd = open(filename.c_str(), O_RDONLY); 129 130 if (fd == -1) { 131 perror(NULL); 132 cerr << "unable to open \"" << filename << "\" for reading\n"; 133 fatal("can't open input file"); 134 } 135 136 return fd; 137} 138 139 140int 141Process::openOutputFile(const string &filename) 142{ 143 int fd = open(filename.c_str(), O_WRONLY | O_CREAT | O_TRUNC, 0774); 144 145 if (fd == -1) { 146 perror(NULL); 147 cerr << "unable to open \"" << filename << "\" for writing\n"; 148 fatal("can't open output file"); 149 } 150 151 return fd; 152} 153 154 155int 156Process::registerThreadContext(ThreadContext *tc) 157{ 158 // add to list 159 int myIndex = threadContexts.size(); 160 threadContexts.push_back(tc); 161 162// RemoteGDB *rgdb = new RemoteGDB(system, tc); 163// GDBListener *gdbl = new GDBListener(rgdb, 7000 + myIndex); 164// gdbl->listen(); 165 //gdbl->accept(); 166 167// remoteGDB.push_back(rgdb); 168 169 // return CPU number to caller 170 return myIndex; 171} 172 173void 174Process::startup() 175{ 176 if (threadContexts.empty()) 177 fatal("Process %s is not associated with any CPUs!\n", name()); 178 179 // first thread context for this process... initialize & enable 180 ThreadContext *tc = threadContexts[0]; 181 182 // mark this context as active so it will start ticking. 183 tc->activate(0); 184 185 Port *mem_port; 186 mem_port = system->physmem->getPort("functional"); 187 initVirtMem = new TranslatingPort("process init port", this, 188 TranslatingPort::Always); 189 mem_port->setPeer(initVirtMem); 190 initVirtMem->setPeer(mem_port); 191} 192 193void 194Process::replaceThreadContext(ThreadContext *tc, int tcIndex) 195{ 196 if (tcIndex >= threadContexts.size()) { 197 panic("replaceThreadContext: bad tcIndex, %d >= %d\n", 198 tcIndex, threadContexts.size()); 199 } 200 201 threadContexts[tcIndex] = tc; 202} 203 204// map simulator fd sim_fd to target fd tgt_fd 205void 206Process::dup_fd(int sim_fd, int tgt_fd) 207{ 208 if (tgt_fd < 0 || tgt_fd > MAX_FD) 209 panic("Process::dup_fd tried to dup past MAX_FD (%d)", tgt_fd); 210 211 fd_map[tgt_fd] = sim_fd; 212} 213 214 215// generate new target fd for sim_fd 216int 217Process::alloc_fd(int sim_fd) 218{ 219 // in case open() returns an error, don't allocate a new fd 220 if (sim_fd == -1) 221 return -1; 222 223 // find first free target fd 224 for (int free_fd = 0; free_fd < MAX_FD; ++free_fd) { 225 if (fd_map[free_fd] == -1) { 226 fd_map[free_fd] = sim_fd; 227 return free_fd; 228 } 229 } 230 231 panic("Process::alloc_fd: out of file descriptors!"); 232} 233 234 235// free target fd (e.g., after close) 236void 237Process::free_fd(int tgt_fd) 238{ 239 if (fd_map[tgt_fd] == -1) 240 warn("Process::free_fd: request to free unused fd %d", tgt_fd); 241 242 fd_map[tgt_fd] = -1; 243} 244 245 246// look up simulator fd for given target fd 247int 248Process::sim_fd(int tgt_fd) 249{ 250 if (tgt_fd > MAX_FD) 251 return -1; 252 253 return fd_map[tgt_fd]; 254} 255 256bool 257Process::checkAndAllocNextPage(Addr vaddr) 258{ 259 // if this is an initial write we might not have 260 if (vaddr >= stack_min && vaddr < stack_base) { 261 pTable->allocate(roundDown(vaddr, VMPageSize), VMPageSize); 262 return true; 263 } 264 265 // We've accessed the next page of the stack, so extend the stack 266 // to cover it. 267 if(vaddr < stack_min && vaddr >= stack_min - TheISA::PageBytes) 268 { 269 stack_min -= TheISA::PageBytes; 270 if(stack_base - stack_min > 8*1024*1024) 271 fatal("Over max stack size for one thread\n"); 272 pTable->allocate(stack_min, TheISA::PageBytes); 273 warn("Increasing stack size by one page."); 274 return true; 275 } 276 return false; 277} 278 279void 280Process::serialize(std::ostream &os) 281{ 282 SERIALIZE_SCALAR(initialContextLoaded); 283 SERIALIZE_SCALAR(brk_point); 284 SERIALIZE_SCALAR(stack_base); 285 SERIALIZE_SCALAR(stack_size); 286 SERIALIZE_SCALAR(stack_min); 287 SERIALIZE_SCALAR(next_thread_stack_base); 288 SERIALIZE_SCALAR(mmap_start); 289 SERIALIZE_SCALAR(mmap_end); 290 SERIALIZE_SCALAR(nxm_start); 291 SERIALIZE_SCALAR(nxm_end); 292 SERIALIZE_ARRAY(fd_map, MAX_FD); 293 294 pTable->serialize(os); 295} 296 297void 298Process::unserialize(Checkpoint *cp, const std::string §ion) 299{ 300 UNSERIALIZE_SCALAR(initialContextLoaded); 301 UNSERIALIZE_SCALAR(brk_point); 302 UNSERIALIZE_SCALAR(stack_base); 303 UNSERIALIZE_SCALAR(stack_size); 304 UNSERIALIZE_SCALAR(stack_min); 305 UNSERIALIZE_SCALAR(next_thread_stack_base); 306 UNSERIALIZE_SCALAR(mmap_start); 307 UNSERIALIZE_SCALAR(mmap_end); 308 UNSERIALIZE_SCALAR(nxm_start); 309 UNSERIALIZE_SCALAR(nxm_end); 310 UNSERIALIZE_ARRAY(fd_map, MAX_FD); 311 312 pTable->unserialize(cp, section); 313} 314 315 316//////////////////////////////////////////////////////////////////////// 317// 318// LiveProcess member definitions 319// 320//////////////////////////////////////////////////////////////////////// 321 322 323LiveProcess::LiveProcess(const string &nm, ObjectFile *_objFile, 324 System *_system, 325 int stdin_fd, int stdout_fd, int stderr_fd, 326 vector<string> &_argv, vector<string> &_envp, 327 const string &_cwd, 328 uint64_t _uid, uint64_t _euid, 329 uint64_t _gid, uint64_t _egid, 330 uint64_t _pid, uint64_t _ppid) 331 : Process(nm, _system, stdin_fd, stdout_fd, stderr_fd), 332 objFile(_objFile), argv(_argv), envp(_envp), cwd(_cwd) 333{ 334 __uid = _uid; 335 __euid = _euid; 336 __gid = _gid; 337 __egid = _egid; 338 __pid = _pid; 339 __ppid = _ppid; 340 341 prog_fname = argv[0]; 342 343 // load up symbols, if any... these may be used for debugging or 344 // profiling. 345 if (!debugSymbolTable) { 346 debugSymbolTable = new SymbolTable(); 347 if (!objFile->loadGlobalSymbols(debugSymbolTable) || 348 !objFile->loadLocalSymbols(debugSymbolTable)) { 349 // didn't load any symbols 350 delete debugSymbolTable; 351 debugSymbolTable = NULL; 352 } 353 } 354} 355 356void 357LiveProcess::argsInit(int intSize, int pageSize) 358{ 359 Process::startup(); 360 361 // load object file into target memory 362 objFile->loadSections(initVirtMem); 363 364 // Calculate how much space we need for arg & env arrays. 365 int argv_array_size = intSize * (argv.size() + 1); 366 int envp_array_size = intSize * (envp.size() + 1); 367 int arg_data_size = 0; 368 for (int i = 0; i < argv.size(); ++i) { 369 arg_data_size += argv[i].size() + 1; 370 } 371 int env_data_size = 0; 372 for (int i = 0; i < envp.size(); ++i) { 373 env_data_size += envp[i].size() + 1; 374 } 375 376 int space_needed = 377 argv_array_size + envp_array_size + arg_data_size + env_data_size; 378 if (space_needed < 32*1024) 379 space_needed = 32*1024; 380 381 // set bottom of stack 382 stack_min = stack_base - space_needed; 383 // align it 384 stack_min = roundDown(stack_min, pageSize); 385 stack_size = stack_base - stack_min; 386 // map memory 387 pTable->allocate(stack_min, roundUp(stack_size, pageSize)); 388 389 // map out initial stack contents 390 Addr argv_array_base = stack_min + intSize; // room for argc 391 Addr envp_array_base = argv_array_base + argv_array_size; 392 Addr arg_data_base = envp_array_base + envp_array_size; 393 Addr env_data_base = arg_data_base + arg_data_size; 394 395 // write contents to stack 396 uint64_t argc = argv.size(); 397 if (intSize == 8) 398 argc = htog((uint64_t)argc); 399 else if (intSize == 4) 400 argc = htog((uint32_t)argc); 401 else 402 panic("Unknown int size"); 403 404 initVirtMem->writeBlob(stack_min, (uint8_t*)&argc, intSize); 405 406 copyStringArray(argv, argv_array_base, arg_data_base, initVirtMem); 407 copyStringArray(envp, envp_array_base, env_data_base, initVirtMem); 408 409 assert(NumArgumentRegs >= 2); 410 threadContexts[0]->setIntReg(ArgumentReg[0], argc); 411 threadContexts[0]->setIntReg(ArgumentReg[1], argv_array_base); 412 threadContexts[0]->setIntReg(StackPointerReg, stack_min); 413 414 Addr prog_entry = objFile->entryPoint(); 415 threadContexts[0]->setPC(prog_entry); 416 threadContexts[0]->setNextPC(prog_entry + sizeof(MachInst)); 417 418#if THE_ISA != ALPHA_ISA //e.g. MIPS or Sparc 419 threadContexts[0]->setNextNPC(prog_entry + (2 * sizeof(MachInst))); 420#endif 421 422 num_processes++; 423} 424 425void 426LiveProcess::syscall(int64_t callnum, ThreadContext *tc) 427{ 428 num_syscalls++; 429 430 SyscallDesc *desc = getDesc(callnum); 431 if (desc == NULL) 432 fatal("Syscall %d out of range", callnum); 433 434 desc->doSyscall(callnum, this, tc); 435} 436 437LiveProcess * 438LiveProcess::create(const std::string &nm, System *system, int stdin_fd, 439 int stdout_fd, int stderr_fd, std::string executable, 440 std::vector<std::string> &argv, 441 std::vector<std::string> &envp, 442 const std::string &cwd, 443 uint64_t _uid, uint64_t _euid, 444 uint64_t _gid, uint64_t _egid, 445 uint64_t _pid, uint64_t _ppid) 446{ 447 LiveProcess *process = NULL; 448 449 ObjectFile *objFile = createObjectFile(executable); 450 if (objFile == NULL) { 451 fatal("Can't load object file %s", executable); 452 } 453 454 if (objFile->isDynamic()) 455 fatal("Object file is a dynamic executable however only static " 456 "executables are supported!\n Please recompile your " 457 "executable as a static binary and try again.\n"); 458 459#if THE_ISA == ALPHA_ISA 460 if (objFile->hasTLS()) 461 fatal("Object file has a TLS section and single threaded TLS is not\n" 462 " currently supported for Alpha! Please recompile your " 463 "executable with \n a non-TLS toolchain.\n"); 464 465 if (objFile->getArch() != ObjectFile::Alpha) 466 fatal("Object file architecture does not match compiled ISA (Alpha)."); 467 switch (objFile->getOpSys()) { 468 case ObjectFile::Tru64: 469 process = new AlphaTru64Process(nm, objFile, system, 470 stdin_fd, stdout_fd, stderr_fd, 471 argv, envp, cwd, 472 _uid, _euid, _gid, _egid, _pid, _ppid); 473 break; 474 475 case ObjectFile::Linux: 476 process = new AlphaLinuxProcess(nm, objFile, system, 477 stdin_fd, stdout_fd, stderr_fd, 478 argv, envp, cwd, 479 _uid, _euid, _gid, _egid, _pid, _ppid); 480 break; 481 482 default: 483 fatal("Unknown/unsupported operating system."); 484 } 485#elif THE_ISA == SPARC_ISA 486 if (objFile->getArch() != ObjectFile::SPARC64 && objFile->getArch() != ObjectFile::SPARC32) 487 fatal("Object file architecture does not match compiled ISA (SPARC)."); 488 switch (objFile->getOpSys()) { 489 case ObjectFile::Linux: 490 if (objFile->getArch() == ObjectFile::SPARC64) { 491 process = new Sparc64LinuxProcess(nm, objFile, system, 492 stdin_fd, stdout_fd, stderr_fd, 493 argv, envp, cwd, 494 _uid, _euid, _gid, 495 _egid, _pid, _ppid); 496 } else { 497 process = new Sparc32LinuxProcess(nm, objFile, system, 498 stdin_fd, stdout_fd, stderr_fd, 499 argv, envp, cwd, 500 _uid, _euid, _gid, 501 _egid, _pid, _ppid); 502 } 503 break; 504 505 506 case ObjectFile::Solaris: 507 process = new SparcSolarisProcess(nm, objFile, system, 508 stdin_fd, stdout_fd, stderr_fd, 509 argv, envp, cwd, 510 _uid, _euid, _gid, _egid, _pid, _ppid); 511 break; 512 default: 513 fatal("Unknown/unsupported operating system."); 514 } 515#elif THE_ISA == X86_ISA 516 if (objFile->getArch() != ObjectFile::X86) 517 fatal("Object file architecture does not match compiled ISA (x86)."); 518 switch (objFile->getOpSys()) { 519 case ObjectFile::Linux: 520 process = new X86LinuxProcess(nm, objFile, system, 521 stdin_fd, stdout_fd, stderr_fd, 522 argv, envp, cwd, 523 _uid, _euid, _gid, 524 _egid, _pid, _ppid); 525 break; 526 default: 527 fatal("Unknown/unsupported operating system."); 528 } 529#elif THE_ISA == MIPS_ISA 530 if (objFile->getArch() != ObjectFile::Mips) 531 fatal("Object file architecture does not match compiled ISA (MIPS)."); 532 switch (objFile->getOpSys()) { 533 case ObjectFile::Linux: 534 process = new MipsLinuxProcess(nm, objFile, system, 535 stdin_fd, stdout_fd, stderr_fd, 536 argv, envp, cwd, 537 _uid, _euid, _gid, _egid, _pid, _ppid); 538 break; 539 540 default: 541 fatal("Unknown/unsupported operating system."); 542 } 543#else 544#error "THE_ISA not set" 545#endif 546 547 548 if (process == NULL) 549 fatal("Unknown error creating process object."); 550 return process; 551} 552 553LiveProcess * 554LiveProcessParams::create() 555{ 556 string in = input; 557 string out = output; 558 559 // initialize file descriptors to default: same as simulator 560 int stdin_fd, stdout_fd, stderr_fd; 561 562 if (in == "stdin" || in == "cin") 563 stdin_fd = STDIN_FILENO; 564 else 565 stdin_fd = Process::openInputFile(input); 566 567 if (out == "stdout" || out == "cout") 568 stdout_fd = STDOUT_FILENO; 569 else if (out == "stderr" || out == "cerr") 570 stdout_fd = STDERR_FILENO; 571 else 572 stdout_fd = Process::openOutputFile(out); 573 574 stderr_fd = (stdout_fd != STDOUT_FILENO) ? stdout_fd : STDERR_FILENO; 575 576 return LiveProcess::create(name, system, 577 stdin_fd, stdout_fd, stderr_fd, 578 (string)executable == "" ? cmd[0] : executable, 579 cmd, env, cwd, 580 uid, euid, gid, egid, pid, ppid); 581} 582