12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118 |
- /* Copyright (c) 1982 Regents of the University of California */
- static char sccsid[] = "@(#)process.c 1.12 8/19/83";
- /*
- * Process management.
- *
- * This module contains the routines to manage the execution and
- * tracing of the debuggee process.
- */
- #include "defs.h"
- #include "process.h"
- #include "machine.h"
- #include "events.h"
- #include "tree.h"
- #include "eval.h"
- #include "operators.h"
- #include "source.h"
- #include "object.h"
- #include "mappings.h"
- #include "main.h"
- #include "coredump.h"
- #include <signal.h>
- #include <errno.h>
- #include <sys/param.h>
- #include <machine/reg.h>
- #include <sys/stat.h>
- #ifndef public
- typedef struct Process *Process;
- Process process;
- #define DEFSIG -1
- #include "machine.h"
- #endif
- #define NOTSTARTED 1
- #define STOPPED 0177
- #define FINISHED 0
- /*
- * Cache-ing of instruction segment is done to reduce the number
- * of system calls.
- */
- #define CSIZE 1003 /* size of instruction cache */
- typedef struct {
- Word addr;
- Word val;
- } CacheWord;
- /*
- * This structure holds the information we need from the user structure.
- */
- struct Process {
- int pid; /* process being traced */
- int mask; /* process status word */
- Word reg[NREG]; /* process' registers */
- Word oreg[NREG]; /* registers when process last stopped */
- short status; /* either STOPPED or FINISHED */
- short signo; /* signal that stopped process */
- int exitval; /* return value from exit() */
- long sigset; /* bit array of traced signals */
- CacheWord word[CSIZE]; /* text segment cache */
- Ttyinfo ttyinfo; /* process' terminal characteristics */
- };
- /*
- * These definitions are for the arguments to "pio".
- */
- typedef enum { PREAD, PWRITE } PioOp;
- typedef enum { TEXTSEG, DATASEG } PioSeg;
- private struct Process pbuf;
- #define MAXNCMDARGS 100 /* maximum number of arguments to RUN */
- extern int errno;
- private Boolean just_started;
- private int argc;
- private String argv[MAXNCMDARGS];
- private String infile, outfile;
- /*
- * Initialize process information.
- */
- public process_init()
- {
- register Integer i;
- Char buf[10];
- process = &pbuf;
- process->status = (coredump) ? STOPPED : NOTSTARTED;
- setsigtrace();
- for (i = 0; i < NREG; i++) {
- sprintf(buf, "$r%d", i);
- defregname(identname(buf, false), i);
- }
- defregname(identname("$ap", true), ARGP);
- defregname(identname("$fp", true), FRP);
- defregname(identname("$sp", true), STKP);
- defregname(identname("$pc", true), PROGCTR);
- if (coredump) {
- coredump_readin(process->mask, process->reg, process->signo);
- pc = process->reg[PROGCTR];
- getsrcpos();
- }
- arginit();
- }
- /*
- * Routines to get at process information from outside this module.
- */
- public Word reg(n)
- Integer n;
- {
- register Word w;
- if (n == NREG) {
- w = process->mask;
- } else {
- w = process->reg[n];
- }
- return w;
- }
- public setreg(n, w)
- Integer n;
- Word w;
- {
- process->reg[n] = w;
- }
- /*
- * Begin execution.
- *
- * We set a breakpoint at the end of the code so that the
- * process data doesn't disappear after the program terminates.
- */
- private Boolean remade();
- public start(argv, infile, outfile)
- String argv[];
- String infile, outfile;
- {
- String pargv[4];
- Node cond;
- if (coredump) {
- coredump = false;
- fclose(corefile);
- coredump_close();
- }
- if (argv == nil) {
- argv = pargv;
- pargv[0] = objname;
- pargv[1] = nil;
- } else {
- argv[argc] = nil;
- }
- if (remade(objname)) {
- reinit(argv, infile, outfile);
- }
- pstart(process, argv, infile, outfile);
- if (process->status == STOPPED) {
- pc = 0;
- curfunc = program;
- if (objsize != 0) {
- cond = build(O_EQ, build(O_SYM, pcsym), build(O_LCON, lastaddr()));
- event_once(cond, buildcmdlist(build(O_ENDX)));
- }
- }
- }
- /*
- * Check to see if the object file has changed since the symbolic
- * information last was read.
- */
- private time_t modtime;
- private Boolean remade(filename)
- String filename;
- {
- struct stat s;
- Boolean b;
- stat(filename, &s);
- b = (Boolean) (modtime != 0 and modtime < s.st_mtime);
- modtime = s.st_mtime;
- return b;
- }
- /*
- * Set up what signals we want to trace.
- */
- private setsigtrace()
- {
- register Integer i;
- register Process p;
- p = process;
- for (i = 1; i <= NSIG; i++) {
- psigtrace(p, i, true);
- }
- psigtrace(p, SIGHUP, false);
- psigtrace(p, SIGKILL, false);
- psigtrace(p, SIGALRM, false);
- psigtrace(p, SIGTSTP, false);
- psigtrace(p, SIGCONT, false);
- psigtrace(p, SIGCHLD, false);
- }
- /*
- * Initialize the argument list.
- */
- public arginit()
- {
- infile = nil;
- outfile = nil;
- argv[0] = objname;
- argc = 1;
- }
- /*
- * Add an argument to the list for the debuggee.
- */
- public newarg(arg)
- String arg;
- {
- if (argc >= MAXNCMDARGS) {
- error("too many arguments");
- }
- argv[argc++] = arg;
- }
- /*
- * Set the standard input for the debuggee.
- */
- public inarg(filename)
- String filename;
- {
- if (infile != nil) {
- error("multiple input redirects");
- }
- infile = filename;
- }
- /*
- * Set the standard output for the debuggee.
- * Probably should check to avoid overwriting an existing file.
- */
- public outarg(filename)
- String filename;
- {
- if (outfile != nil) {
- error("multiple output redirect");
- }
- outfile = filename;
- }
- /*
- * Start debuggee executing.
- */
- public run()
- {
- process->status = STOPPED;
- fixbps();
- curline = 0;
- start(argv, infile, outfile);
- just_started = true;
- isstopped = false;
- cont(0);
- }
- /*
- * Continue execution wherever we left off.
- *
- * Note that this routine never returns. Eventually bpact() will fail
- * and we'll call printstatus or step will call it.
- */
- typedef int Intfunc();
- private Intfunc *dbintr;
- private intr();
- #define succeeds == true
- #define fails == false
- public cont(signo)
- int signo;
- {
- dbintr = signal(SIGINT, intr);
- if (just_started) {
- just_started = false;
- } else {
- if (not isstopped) {
- error("can't continue execution");
- }
- isstopped = false;
- stepover();
- }
- for (;;) {
- if (single_stepping) {
- printnews();
- } else {
- setallbps();
- resume(signo);
- unsetallbps();
- if (bpact() fails) {
- printstatus();
- }
- }
- stepover();
- }
- /* NOTREACHED */
- }
- /*
- * This routine is called if we get an interrupt while "running" px
- * but actually in the debugger. Could happen, for example, while
- * processing breakpoints.
- *
- * We basically just want to keep going; the assumption is
- * that when the process resumes it will get the interrupt
- * which will then be handled.
- */
- private intr()
- {
- signal(SIGINT, intr);
- }
- public fixintr()
- {
- signal(SIGINT, dbintr);
- }
- /*
- * Resume execution.
- */
- public resume(signo)
- int signo;
- {
- register Process p;
- p = process;
- if (traceexec) {
- printf("execution resumes at pc 0x%x\n", process->reg[PROGCTR]);
- fflush(stdout);
- }
- pcont(p, signo);
- pc = process->reg[PROGCTR];
- if (traceexec) {
- printf("execution stops at pc 0x%x on sig %d\n",
- process->reg[PROGCTR], p->signo);
- fflush(stdout);
- }
- if (p->status != STOPPED) {
- if (p->signo != 0) {
- error("program terminated by signal %d", p->signo);
- } else if (not runfirst) {
- error("program unexpectedly exited with %d", p->exitval);
- }
- }
- }
- /*
- * Continue execution up to the next source line.
- *
- * There are two ways to define the next source line depending on what
- * is desired when a procedure or function call is encountered. Step
- * stops at the beginning of the procedure or call; next skips over it.
- */
- /*
- * Stepc is what is called when the step command is given.
- * It has to play with the "isstopped" information.
- */
- public stepc()
- {
- if (not isstopped) {
- error("can't continue execution");
- }
- isstopped = false;
- dostep(false);
- isstopped = true;
- }
- public next()
- {
- if (not isstopped) {
- error("can't continue execution");
- }
- isstopped = false;
- dostep(true);
- isstopped = true;
- }
- /*
- * Single-step over the current machine instruction.
- *
- * If we're single-stepping by source line we want to step to the
- * next source line. Otherwise we're going to continue so there's
- * no reason to do all the work necessary to single-step to the next
- * source line.
- */
- private stepover()
- {
- Boolean b;
- if (single_stepping) {
- dostep(false);
- } else {
- b = inst_tracing;
- inst_tracing = true;
- dostep(false);
- inst_tracing = b;
- }
- }
- /*
- * Resume execution up to the given address. It is assumed that
- * no breakpoints exist between the current address and the one
- * we're stepping to. This saves us from setting all the breakpoints.
- */
- public stepto(addr)
- Address addr;
- {
- setbp(addr);
- resume(DEFSIG);
- unsetbp(addr);
- if (not isbperr()) {
- printstatus();
- }
- }
- /*
- * Print the status of the process.
- * This routine does not return.
- */
- public printstatus()
- {
- int status;
- if (process->status == FINISHED) {
- exit(0);
- } else {
- curfunc = whatblock(pc);
- getsrcpos();
- if (process->signo == SIGINT) {
- isstopped = true;
- printerror();
- } else if (isbperr() and isstopped) {
- printf("stopped ");
- printloc();
- putchar('\n');
- if (curline > 0) {
- printlines(curline, curline);
- } else {
- printinst(pc, pc);
- }
- erecover();
- } else {
- fixbps();
- fixintr();
- isstopped = true;
- printerror();
- }
- }
- }
- /*
- * Print out the current location in the debuggee.
- */
- public printloc()
- {
- printf("in ");
- printname(stdout, curfunc);
- putchar(' ');
- if (curline > 0 and not useInstLoc) {
- printsrcpos();
- } else {
- useInstLoc = false;
- curline = 0;
- printf("at 0x%x", pc);
- }
- }
- /*
- * Some functions for testing the state of the process.
- */
- public Boolean notstarted(p)
- Process p;
- {
- return (Boolean) (p->status == NOTSTARTED);
- }
- public Boolean isfinished(p)
- Process p;
- {
- return (Boolean) (p->status == FINISHED);
- }
- /*
- * Return the signal number which stopped the process.
- */
- public Integer errnum(p)
- Process p;
- {
- return p->signo;
- }
- /*
- * Return the termination code of the process.
- */
- public Integer exitcode(p)
- Process p;
- {
- return p->exitval;
- }
- /*
- * These routines are used to access the debuggee process from
- * outside this module.
- *
- * They invoke "pio" which eventually leads to a call to "ptrace".
- * The system generates an I/O error when a ptrace fails. During reads
- * these are ignored, during writes they are reported as an error, and
- * for anything else they cause a fatal error.
- */
- extern Intfunc *onsyserr();
- private badaddr;
- private read_err(), write_err();
- /*
- * Read from the process' instruction area.
- */
- public iread(buff, addr, nbytes)
- char *buff;
- Address addr;
- int nbytes;
- {
- Intfunc *f;
- f = onsyserr(EIO, read_err);
- badaddr = addr;
- if (coredump) {
- coredump_readtext(buff, addr, nbytes);
- } else {
- pio(process, PREAD, TEXTSEG, buff, addr, nbytes);
- }
- onsyserr(EIO, f);
- }
- /*
- * Write to the process' instruction area, usually in order to set
- * or unset a breakpoint.
- */
- public iwrite(buff, addr, nbytes)
- char *buff;
- Address addr;
- int nbytes;
- {
- Intfunc *f;
- if (coredump) {
- error("no process to write to");
- }
- f = onsyserr(EIO, write_err);
- badaddr = addr;
- pio(process, PWRITE, TEXTSEG, buff, addr, nbytes);
- onsyserr(EIO, f);
- }
- /*
- * Read for the process' data area.
- */
- public dread(buff, addr, nbytes)
- char *buff;
- Address addr;
- int nbytes;
- {
- Intfunc *f;
- f = onsyserr(EIO, read_err);
- badaddr = addr;
- if (coredump) {
- coredump_readdata(buff, addr, nbytes);
- } else {
- pio(process, PREAD, DATASEG, buff, addr, nbytes);
- }
- onsyserr(EIO, f);
- }
- /*
- * Write to the process' data area.
- */
- public dwrite(buff, addr, nbytes)
- char *buff;
- Address addr;
- int nbytes;
- {
- Intfunc *f;
- if (coredump) {
- error("no process to write to");
- }
- f = onsyserr(EIO, write_err);
- badaddr = addr;
- pio(process, PWRITE, DATASEG, buff, addr, nbytes);
- onsyserr(EIO, f);
- }
- /*
- * Trap for errors in reading or writing to a process.
- * The current approach is to "ignore" read errors and complain
- * bitterly about write errors.
- */
- private read_err()
- {
- /*
- * Ignore.
- */
- }
- private write_err()
- {
- error("can't write to process (address 0x%x)", badaddr);
- }
- /*
- * Ptrace interface.
- */
- /*
- * This magic macro enables us to look at the process' registers
- * in its user structure.
- */
- #define regloc(reg) (ctob(UPAGES) + ( sizeof(int) * (reg) ))
- #define WMASK (~(sizeof(Word) - 1))
- #define cachehash(addr) ((unsigned) ((addr >> 2) % CSIZE))
- #define FIRSTSIG SIGINT
- #define LASTSIG SIGQUIT
- #define ischild(pid) ((pid) == 0)
- #define traceme() ptrace(0, 0, 0, 0)
- #define setrep(n) (1 << ((n)-1))
- #define istraced(p) (p->sigset&setrep(p->signo))
- /*
- * Ptrace options (specified in first argument).
- */
- #define UREAD 3 /* read from process's user structure */
- #define UWRITE 6 /* write to process's user structure */
- #define IREAD 1 /* read from process's instruction space */
- #define IWRITE 4 /* write to process's instruction space */
- #define DREAD 2 /* read from process's data space */
- #define DWRITE 5 /* write to process's data space */
- #define CONT 7 /* continue stopped process */
- #define SSTEP 9 /* continue for approximately one instruction */
- #define PKILL 8 /* terminate the process */
- /*
- * Start up a new process by forking and exec-ing the
- * given argument list, returning when the process is loaded
- * and ready to execute. The PROCESS information (pointed to
- * by the first argument) is appropriately filled.
- *
- * If the given PROCESS structure is associated with an already running
- * process, we terminate it.
- */
- /* VARARGS2 */
- private pstart(p, argv, infile, outfile)
- Process p;
- String argv[];
- String infile;
- String outfile;
- {
- int status;
- Fileid in, out;
- if (p->pid != 0) { /* child already running? */
- ptrace(PKILL, p->pid, 0, 0); /* ... kill it! */
- pwait(p->pid, &status); /* wait for it to exit */
- unptraced(p->pid);
- }
- psigtrace(p, SIGTRAP, true);
- p->pid = vfork();
- if (p->pid == -1) {
- panic("can't fork");
- }
- if (ischild(p->pid)) {
- /* setpgrp (p->pid, p->pid); */
- traceme();
- if (infile != nil) {
- in = open(infile, 0);
- if (in == -1) {
- write(2, "can't read ", 11);
- write(2, infile, strlen(infile));
- write(2, "\n", 1);
- _exit(1);
- }
- fswap(0, in);
- }
- if (outfile != nil) {
- out = creat(outfile, 0666);
- if (out == -1) {
- write(2, "can't write ", 12);
- write(2, outfile, strlen(outfile));
- write(2, "\n", 1);
- _exit(1);
- }
- fswap(1, out);
- }
- execv(argv[0], argv);
- write(2, "can't exec ", 11);
- write(2, argv[0], strlen(argv[0]));
- write(2, "\n", 1);
- _exit(1);
- }
- pwait(p->pid, &status);
- getinfo(p, status);
- savetty(stdout, &(p->ttyinfo));
- if (p->status != STOPPED) {
- error("program could not begin execution");
- }
- ptraced(p->pid);
- }
- /*
- * Continue a stopped process. The first argument points to a Process
- * structure. Before the process is restarted it's user area is modified
- * according to the values in the structure. When this routine finishes,
- * the structure has the new values from the process's user area.
- *
- * Pcont terminates when the process stops with a signal pending that
- * is being traced (via psigtrace), or when the process terminates.
- */
- private pcont(p, signo)
- Process p;
- int signo;
- {
- int status;
- if (p->pid == 0) {
- error("program not active");
- }
- restoretty(stdout, &(p->ttyinfo));
- do {
- setinfo(p, signo);
- sigs_off();
- if (ptrace(CONT, p->pid, p->reg[PROGCTR], p->signo) < 0) {
- panic("error %d trying to continue process", errno);
- }
- pwait(p->pid, &status);
- savetty(stdout, &(p->ttyinfo));
- sigs_on();
- getinfo(p, status);
- } while (p->status == STOPPED and not istraced(p));
- }
- /*
- * Single step as best ptrace can.
- */
- public pstep(p)
- Process p;
- {
- int status;
- setinfo(p, DEFSIG);
- sigs_off();
- restoretty(stdout, &(p->ttyinfo));
- ptrace(SSTEP, p->pid, p->reg[PROGCTR], p->signo);
- pwait(p->pid, &status);
- savetty(stdout, &(p->ttyinfo));
- sigs_on();
- getinfo(p, status);
- }
- /*
- * Return from execution when the given signal is pending.
- */
- public psigtrace(p, sig, sw)
- Process p;
- int sig;
- Boolean sw;
- {
- if (sw) {
- p->sigset |= setrep(sig);
- } else {
- p->sigset &= ~setrep(sig);
- }
- }
- /*
- * Don't catch any signals.
- * Particularly useful when letting a process finish uninhibited.
- */
- public unsetsigtraces(p)
- Process p;
- {
- p->sigset = 0;
- }
- /*
- * Turn off attention to signals not being caught.
- */
- private Intfunc *sigfunc[NSIG];
- private sigs_off()
- {
- register int i;
- for (i = FIRSTSIG; i < LASTSIG; i++) {
- if (i != SIGKILL) {
- sigfunc[i] = signal(i, SIG_IGN);
- }
- }
- }
- /*
- * Turn back on attention to signals.
- */
- private sigs_on()
- {
- register int i;
- for (i = FIRSTSIG; i < LASTSIG; i++) {
- if (i != SIGKILL) {
- signal(i, sigfunc[i]);
- }
- }
- }
- /*
- * Get process information from user area.
- */
- private int rloc[] ={
- R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, AP, FP, SP, PC
- };
- private getinfo(p, status)
- register Process p;
- register int status;
- {
- register int i;
- /* ioctl(fileno(stdout), TIOCSPGRP, getpgrp (0)); */
- p->signo = (status&0177);
- p->exitval = ((status >> 8)&0377);
- if (p->signo != STOPPED) {
- p->status = FINISHED;
- p->pid = 0;
- } else {
- p->status = p->signo;
- p->signo = p->exitval;
- p->exitval = 0;
- p->mask = ptrace(UREAD, p->pid, regloc(PS), 0);
- for (i = 0; i < NREG; i++) {
- p->reg[i] = ptrace(UREAD, p->pid, regloc(rloc[i]), 0);
- p->oreg[i] = p->reg[i];
- }
- }
- }
- /*
- * Set process's user area information from given process structure.
- */
- private setinfo(p, signo)
- register Process p;
- int signo;
- {
- register int i;
- register int r;
- if (signo == DEFSIG) {
- if (istraced(p)) {
- p->signo = 0;
- }
- } else {
- p->signo = signo;
- }
- for (i = 0; i < NREG; i++) {
- if ((r = p->reg[i]) != p->oreg[i]) {
- ptrace(UWRITE, p->pid, regloc(rloc[i]), r);
- }
- }
- /* ioctl(fileno(stdout), TIOCSPGRP, getpgrp (p->pid)); */
- }
- /*
- * Structure for reading and writing by words, but dealing with bytes.
- */
- typedef union {
- Word pword;
- Byte pbyte[sizeof(Word)];
- } Pword;
- /*
- * Read (write) from (to) the process' address space.
- * We must deal with ptrace's inability to look anywhere other
- * than at a word boundary.
- */
- private Word fetch();
- private store();
- private pio(p, op, seg, buff, addr, nbytes)
- Process p;
- PioOp op;
- PioSeg seg;
- char *buff;
- Address addr;
- int nbytes;
- {
- register int i;
- register Address newaddr;
- register char *cp;
- char *bufend;
- Pword w;
- Address wordaddr;
- int byteoff;
- if (p->status != STOPPED) {
- error("program is not active");
- }
- cp = buff;
- newaddr = addr;
- wordaddr = (newaddr&WMASK);
- if (wordaddr != newaddr) {
- w.pword = fetch(p, seg, wordaddr);
- for (i = newaddr - wordaddr; i < sizeof(Word) and nbytes > 0; i++) {
- if (op == PREAD) {
- *cp++ = w.pbyte[i];
- } else {
- w.pbyte[i] = *cp++;
- }
- nbytes--;
- }
- if (op == PWRITE) {
- store(p, seg, wordaddr, w.pword);
- }
- newaddr = wordaddr + sizeof(Word);
- }
- byteoff = (nbytes&(~WMASK));
- nbytes -= byteoff;
- bufend = cp + nbytes;
- while (cp < bufend) {
- if (op == PREAD) {
- *((Word *) cp) = fetch(p, seg, newaddr);
- } else {
- store(p, seg, newaddr, *((Word *) cp));
- }
- cp += sizeof(Word);
- newaddr += sizeof(Word);
- }
- if (byteoff > 0) {
- w.pword = fetch(p, seg, newaddr);
- for (i = 0; i < byteoff; i++) {
- if (op == PREAD) {
- *cp++ = w.pbyte[i];
- } else {
- w.pbyte[i] = *cp++;
- }
- }
- if (op == PWRITE) {
- store(p, seg, newaddr, w.pword);
- }
- }
- }
- /*
- * Get a word from a process at the given address.
- * The address is assumed to be on a word boundary.
- *
- * A simple cache scheme is used to avoid redundant ptrace calls
- * to the instruction space since it is assumed to be pure.
- *
- * It is necessary to use a write-through scheme so that
- * breakpoints right next to each other don't interfere.
- */
- private Integer nfetchs, nreads, nwrites;
- private Word fetch(p, seg, addr)
- Process p;
- PioSeg seg;
- register int addr;
- {
- register CacheWord *wp;
- register Word w;
- switch (seg) {
- case TEXTSEG:
- ++nfetchs;
- wp = &p->word[cachehash(addr)];
- if (addr == 0 or wp->addr != addr) {
- ++nreads;
- w = ptrace(IREAD, p->pid, addr, 0);
- wp->addr = addr;
- wp->val = w;
- } else {
- w = wp->val;
- }
- break;
- case DATASEG:
- w = ptrace(DREAD, p->pid, addr, 0);
- break;
- default:
- panic("fetch: bad seg %d", seg);
- /* NOTREACHED */
- }
- return w;
- }
- /*
- * Put a word into the process' address space at the given address.
- * The address is assumed to be on a word boundary.
- */
- private store(p, seg, addr, data)
- Process p;
- PioSeg seg;
- int addr;
- Word data;
- {
- register CacheWord *wp;
- switch (seg) {
- case TEXTSEG:
- ++nwrites;
- wp = &p->word[cachehash(addr)];
- wp->addr = addr;
- wp->val = data;
- ptrace(IWRITE, p->pid, addr, data);
- break;
- case DATASEG:
- ptrace(DWRITE, p->pid, addr, data);
- break;
- default:
- panic("store: bad seg %d", seg);
- /* NOTREACHED */
- }
- }
- public printptraceinfo()
- {
- printf("%d fetchs, %d reads, %d writes\n", nfetchs, nreads, nwrites);
- }
- /*
- * Swap file numbers so as to redirect standard input and output.
- */
- private fswap(oldfd, newfd)
- int oldfd;
- int newfd;
- {
- if (oldfd != newfd) {
- close(oldfd);
- dup(newfd);
- close(newfd);
- }
- }
|