cleanup elf stuff
[nestedvm.git] / src / org / ibex / nestedvm / Runtime.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 // Copyright 2003 Brian Alliet
6 // Based on org.xwt.imp.MIPS by Adam Megacz
7 // Portions Copyright 2003 Adam Megacz
8
9 package org.ibex.nestedvm;
10
11 import org.ibex.nestedvm.util.*;
12 import java.io.*;
13
14 public abstract class Runtime implements UsermodeConstants,Registers,Cloneable {
15     public static final String VERSION = "1.0";
16     
17     /** True to write useful diagnostic information to stderr when things go wrong */
18     final static boolean STDERR_DIAG = true;
19     
20     /** Number of bits to shift to get the page number (1<<<pageShift == pageSize) */
21     protected final int pageShift;
22     /** Bottom of region of memory allocated to the stack */
23     private final int stackBottom;
24     
25     /** Readable main memory pages */
26     protected int[][] readPages;
27     /** Writable main memory pages.
28         If the page is writable writePages[x] == readPages[x]; if not writePages[x] == null. */
29     protected int[][] writePages;
30     
31     /** The address of the end of the heap */
32     private int heapEnd;
33     
34     /** Number of guard pages to keep between the stack and the heap */
35     private static final int STACK_GUARD_PAGES = 4;
36     
37     /** The last address the executable uses (other than the heap/stack) */
38     protected abstract int heapStart();
39         
40     /** The program's entry point */
41     protected abstract int entryPoint();
42
43     /** The location of the _user_info block (or 0 is there is none) */
44     protected int userInfoBase() { return 0; }
45     protected int userInfoSize() { return 0; }
46     
47     /** The location of the global pointer */
48     protected abstract int gp();
49     
50     /** When the process started */
51     private long startTime;
52     
53     /** Program is executing instructions */
54     public final static int RUNNING = 0; // Horrible things will happen if this isn't 0
55     /**  Text/Data loaded in memory  */
56     public final static int STOPPED = 1;
57     /** Prgram has been started but is paused */
58     public final static int PAUSED = 2;
59     /** Program is executing a callJava() method */
60     public final static int CALLJAVA = 3;
61     /** Program has exited (it cannot currently be restarted) */
62     public final static int EXITED = 4;
63     /** Program has executed a successful exec(), a new Runtime needs to be run (used by UnixRuntime) */
64     public final static int EXECED = 5;
65     
66     /** The current state */
67     protected int state = STOPPED;
68     /** @see Runtime#state state */
69     public final int getState() { return state; }
70     
71     /** The exit status if the process (only valid if state==DONE) 
72         @see Runtime#state */
73     private int exitStatus;
74     public ExecutionException exitException;
75     
76     /** Table containing all open file descriptors. (Entries are null if the fd is not in use */
77     FD[] fds; // package-private for UnixRuntime
78     boolean closeOnExec[];
79     
80     /** Pointer to a SecurityManager for this process */
81     SecurityManager sm;
82     public void setSecurityManager(SecurityManager sm) { this.sm = sm; }
83     
84     /** Pointer to a callback for the call_java syscall */
85     private CallJavaCB callJavaCB;
86     public void setCallJavaCB(CallJavaCB callJavaCB) { this.callJavaCB = callJavaCB; }
87         
88     /** Temporary buffer for read/write operations */
89     private byte[] _byteBuf;
90     /** Max size of temporary buffer
91         @see Runtime#_byteBuf */
92     final static int MAX_CHUNK = 16*1024*1024 - 1024;
93         
94     /** Subclasses should actually execute program in this method. They should continue 
95         executing until state != RUNNING. Only syscall() can modify state. It is safe 
96         to only check the state attribute after a call to syscall() */
97     protected abstract void _execute() throws ExecutionException;
98     
99     /** Subclasses should return the address of the symbol <i>symbol</i> or -1 it it doesn't exits in this method 
100         This method is only required if the call() function is used */
101     protected int lookupSymbol(String symbol) { return -1; }
102     
103     /** Subclasses should populate a CPUState object representing the cpu state */
104     protected abstract void getCPUState(CPUState state);
105     
106     /** Subclasses should set the CPUState to the state held in <i>state</i> */
107     protected abstract void setCPUState(CPUState state);
108     
109     /** True to enabled a few hacks to better support the win32 console */
110     final static boolean win32Hacks;
111     
112     static {
113         String os = Platform.getProperty("os.name");
114         String prop = Platform.getProperty("nestedvm.win32hacks");
115         if(prop != null) { win32Hacks = Boolean.valueOf(prop).booleanValue(); }
116         else { win32Hacks = os != null && os.toLowerCase().indexOf("windows") != -1; }
117     }
118     
119     protected Object clone() throws CloneNotSupportedException {
120         Runtime r = (Runtime) super.clone();
121         r._byteBuf = null;
122         r.startTime = 0;
123         r.fds = new FD[OPEN_MAX];
124         for(int i=0;i<OPEN_MAX;i++) if(fds[i] != null) r.fds[i] = fds[i].dup();
125         int totalPages = writePages.length;
126         r.readPages = new int[totalPages][];
127         r.writePages = new int[totalPages][];
128         for(int i=0;i<totalPages;i++) {
129             if(readPages[i] == null) continue;
130             if(writePages[i] == null) r.readPages[i] = readPages[i];
131             else r.readPages[i] = r.writePages[i] = (int[])writePages[i].clone();
132         }
133         return r;
134     }
135     
136     protected Runtime(int pageSize, int totalPages) { this(pageSize, totalPages,false); }
137     protected Runtime(int pageSize, int totalPages, boolean exec) {
138         if(pageSize <= 0) throw new IllegalArgumentException("pageSize <= 0");
139         if(totalPages <= 0) throw new IllegalArgumentException("totalPages <= 0");
140         if((pageSize&(pageSize-1)) != 0) throw new IllegalArgumentException("pageSize not a power of two");
141
142         int _pageShift = 0;
143         while(pageSize>>>_pageShift != 1) _pageShift++;
144         pageShift = _pageShift;
145         
146         int heapStart = heapStart();
147         int totalMemory = totalPages * pageSize;
148         int stackSize = max(totalMemory/512,ARG_MAX+65536);
149         int stackPages = 0;
150         if(totalPages > 1) {
151             stackSize = max(stackSize,pageSize);
152             stackSize = (stackSize + pageSize - 1) & ~(pageSize-1);
153             stackPages = stackSize >>> pageShift;
154             heapStart = (heapStart + pageSize - 1) & ~(pageSize-1);
155             if(stackPages + STACK_GUARD_PAGES + (heapStart >>> pageShift) >= totalPages)
156                 throw new IllegalArgumentException("total pages too small");
157         } else {
158             if(pageSize < heapStart + stackSize) throw new IllegalArgumentException("total memory too small");
159             heapStart = (heapStart + 4095) & ~4096;
160         }
161         
162         stackBottom = totalMemory - stackSize;
163         heapEnd = heapStart;
164         
165         readPages = new int[totalPages][];
166         writePages = new int[totalPages][];
167         
168         if(totalPages == 1) {
169             readPages[0] = writePages[0] = new int[pageSize>>2];
170         } else {
171             for(int i=(stackBottom >>> pageShift);i<writePages.length;i++) {
172                 readPages[i] = writePages[i] = new int[pageSize>>2];
173             }
174         }
175
176         if(!exec) {
177             fds = new FD[OPEN_MAX];
178             closeOnExec = new boolean[OPEN_MAX];
179         
180             InputStream stdin = win32Hacks ? new Win32ConsoleIS(System.in) : System.in;
181             addFD(new TerminalFD(stdin));
182             addFD(new TerminalFD(System.out));
183             addFD(new TerminalFD(System.err));
184         }
185     }
186     
187     /** Copy everything from <i>src</i> to <i>addr</i> initializing uninitialized pages if required. 
188        Newly initalized pages will be marked read-only if <i>ro</i> is set */
189     protected final void initPages(int[] src, int addr, boolean ro) {
190         int pageWords = (1<<pageShift)>>>2;
191         int pageMask = (1<<pageShift) - 1;
192         
193         for(int i=0;i<src.length;) {
194             int page = addr >>> pageShift;
195             int start = (addr&pageMask)>>2;
196             int elements = min(pageWords-start,src.length-i);
197             if(readPages[page]==null) {
198                 initPage(page,ro);
199             } else if(!ro) {
200                 if(writePages[page] == null) writePages[page] = readPages[page];
201             }
202             System.arraycopy(src,i,readPages[page],start,elements);
203             i += elements;
204             addr += elements*4;
205         }
206     }
207     
208     /** Initialize <i>words</i> of pages starting at <i>addr</i> to 0 */
209     protected final void clearPages(int addr, int words) {
210         int pageWords = (1<<pageShift)>>>2;
211         int pageMask = (1<<pageShift) - 1;
212
213         for(int i=0;i<words;) {
214             int page = addr >>> pageShift;
215             int start = (addr&pageMask)>>2;
216             int elements = min(pageWords-start,words-i);
217             if(readPages[page]==null) {
218                 readPages[page] = writePages[page] = new int[pageWords];
219             } else {
220                 if(writePages[page] == null) writePages[page] = readPages[page];
221                 for(int j=start;j<start+elements;j++) writePages[page][j] = 0;
222             }
223             i += elements;
224             addr += elements*4;
225         }
226     }
227     
228     /** Copies <i>length</i> bytes from the processes memory space starting at
229         <i>addr</i> INTO a java byte array <i>a</i> */
230     public final void copyin(int addr, byte[] buf, int count) throws ReadFaultException {
231         int pageWords = (1<<pageShift)>>>2;
232         int pageMask = pageWords - 1;
233
234         int x=0;
235         if(count == 0) return;
236         if((addr&3)!=0) {
237             int word = memRead(addr&~3);
238             switch(addr&3) {
239                 case 1: buf[x++] = (byte)((word>>>16)&0xff); if(--count==0) break;
240                 case 2: buf[x++] = (byte)((word>>> 8)&0xff); if(--count==0) break;
241                 case 3: buf[x++] = (byte)((word>>> 0)&0xff); if(--count==0) break;
242             }
243             addr = (addr&~3)+4;
244         }
245         if((count&~3) != 0) {
246             int c = count>>>2;
247             int a = addr>>>2;
248             while(c != 0) {
249                 int[] page = readPages[a >>> (pageShift-2)];
250                 if(page == null) throw new ReadFaultException(a<<2);
251                 int index = a&pageMask;
252                 int n = min(c,pageWords-index);
253                 for(int i=0;i<n;i++,x+=4) {
254                     int word = page[index+i];
255                     buf[x+0] = (byte)((word>>>24)&0xff); buf[x+1] = (byte)((word>>>16)&0xff);
256                     buf[x+2] = (byte)((word>>> 8)&0xff); buf[x+3] = (byte)((word>>> 0)&0xff);                        
257                 }
258                 a += n; c -=n;
259             }
260             addr = a<<2; count &=3;
261         }
262         if(count != 0) {
263             int word = memRead(addr);
264             switch(count) {
265                 case 3: buf[x+2] = (byte)((word>>>8)&0xff);
266                 case 2: buf[x+1] = (byte)((word>>>16)&0xff);
267                 case 1: buf[x+0] = (byte)((word>>>24)&0xff);
268             }
269         }
270     }
271     
272     /** Copies <i>length</i> bytes OUT OF the java array <i>a</i> into the processes memory
273         space at <i>addr</i> */
274     public final void copyout(byte[] buf, int addr, int count) throws FaultException {
275         int pageWords = (1<<pageShift)>>>2;
276         int pageWordMask = pageWords - 1;
277         
278         int x=0;
279         if(count == 0) return;
280         if((addr&3)!=0) {
281             int word = memRead(addr&~3);
282             switch(addr&3) {
283                 case 1: word = (word&0xff00ffff)|((buf[x++]&0xff)<<16); if(--count==0) break;
284                 case 2: word = (word&0xffff00ff)|((buf[x++]&0xff)<< 8); if(--count==0) break;
285                 case 3: word = (word&0xffffff00)|((buf[x++]&0xff)<< 0); if(--count==0) break;
286             }
287             memWrite(addr&~3,word);
288             addr += x;
289         }
290
291         if((count&~3) != 0) {
292             int c = count>>>2;
293             int a = addr>>>2;
294             while(c != 0) {
295                 int[] page = writePages[a >>> (pageShift-2)];
296                 if(page == null) throw new WriteFaultException(a<<2);
297                 int index = a&pageWordMask;
298                 int n = min(c,pageWords-index);
299                 for(int i=0;i<n;i++,x+=4)
300                     page[index+i] = ((buf[x+0]&0xff)<<24)|((buf[x+1]&0xff)<<16)|((buf[x+2]&0xff)<<8)|((buf[x+3]&0xff)<<0);
301                 a += n; c -=n;
302             }
303             addr = a<<2; count&=3;
304         }
305
306         if(count != 0) {
307             int word = memRead(addr);
308             switch(count) {
309                 case 1: word = (word&0x00ffffff)|((buf[x+0]&0xff)<<24); break;
310                 case 2: word = (word&0x0000ffff)|((buf[x+0]&0xff)<<24)|((buf[x+1]&0xff)<<16); break;
311                 case 3: word = (word&0x000000ff)|((buf[x+0]&0xff)<<24)|((buf[x+1]&0xff)<<16)|((buf[x+2]&0xff)<<8); break;
312             }
313             memWrite(addr,word);
314         }
315     }
316     
317     public final void memcpy(int dst, int src, int count) throws FaultException {
318         int pageWords = (1<<pageShift)>>>2;
319         int pageWordMask = pageWords - 1;
320         if((dst&3) == 0 && (src&3)==0) {
321             if((count&~3) != 0) {
322                 int c = count>>2;
323                 int s = src>>>2;
324                 int d = dst>>>2;
325                 while(c != 0) {
326                     int[] srcPage = readPages[s>>>(pageShift-2)];
327                     if(srcPage == null) throw new ReadFaultException(s<<2);
328                     int[] dstPage = writePages[d>>>(pageShift-2)];
329                     if(dstPage == null) throw new WriteFaultException(d<<2);
330                     int srcIndex = s&pageWordMask;
331                     int dstIndex = d&pageWordMask;
332                     int n = min(c,pageWords-max(srcIndex,dstIndex));
333                     System.arraycopy(srcPage,srcIndex,dstPage,dstIndex,n);
334                     s += n; d += n; c -= n;
335                 }
336                 src = s<<2; dst = d<<2; count&=3;
337             }
338             if(count != 0) {
339                 int word1 = memRead(src);
340                 int word2 = memRead(dst);
341                 switch(count) {
342                     case 1: memWrite(dst,(word1&0xff000000)|(word2&0x00ffffff)); break;
343                     case 2: memWrite(dst,(word1&0xffff0000)|(word2&0x0000ffff)); break;
344                     case 3: memWrite(dst,(word1&0xffffff00)|(word2&0x000000ff)); break;
345                 }
346             }
347         } else {
348             while(count > 0) {
349                 int n = min(count,MAX_CHUNK);
350                 byte[] buf = byteBuf(n);
351                 copyin(src,buf,n);
352                 copyout(buf,dst,n);
353                 count -= n; src += n; dst += n;
354             }
355         }
356     }
357     
358     public final void memset(int addr, int ch, int count) throws FaultException {
359         int pageWords = (1<<pageShift)>>>2;
360         int pageWordMask = pageWords - 1;
361         
362         int fourBytes = ((ch&0xff)<<24)|((ch&0xff)<<16)|((ch&0xff)<<8)|((ch&0xff)<<0);
363         if((addr&3)!=0) {
364             int word = memRead(addr&~3);
365             switch(addr&3) {
366                 case 1: word = (word&0xff00ffff)|((ch&0xff)<<16); if(--count==0) break;
367                 case 2: word = (word&0xffff00ff)|((ch&0xff)<< 8); if(--count==0) break;
368                 case 3: word = (word&0xffffff00)|((ch&0xff)<< 0); if(--count==0) break;
369             }
370             memWrite(addr&~3,word);
371             addr = (addr&~3)+4;
372         }
373         if((count&~3) != 0) {
374             int c = count>>2;
375             int a = addr>>>2;
376             while(c != 0) {
377                 int[] page = readPages[a>>>(pageShift-2)];
378                 if(page == null) throw new WriteFaultException(a<<2);
379                 int index = a&pageWordMask;
380                 int n = min(c,pageWords-index);
381                 /* Arrays.fill(page,index,index+n,fourBytes);*/
382                 for(int i=index;i<index+n;i++) page[i] = fourBytes;
383                 a += n; c -= n;
384             }
385             addr = a<<2; count&=3;
386         }
387         if(count != 0) {
388             int word = memRead(addr);
389             switch(count) {
390                 case 1: word = (word&0x00ffffff)|(fourBytes&0xff000000); break;
391                 case 2: word = (word&0x0000ffff)|(fourBytes&0xffff0000); break;
392                 case 3: word = (word&0x000000ff)|(fourBytes&0xffffff00); break;
393             }
394             memWrite(addr,word);
395         }
396     }
397     
398     /** Read a word from the processes memory at <i>addr</i> */
399     public final int memRead(int addr) throws ReadFaultException  {
400         if((addr & 3) != 0) throw new ReadFaultException(addr);
401         return unsafeMemRead(addr);
402     }
403        
404     protected final int unsafeMemRead(int addr) throws ReadFaultException {
405         int page = addr >>> pageShift;
406         int entry = (addr&(1<<pageShift) - 1)>>2;
407         try {
408             return readPages[page][entry];
409         } catch(ArrayIndexOutOfBoundsException e) {
410             if(page < 0 || page >= readPages.length) throw new ReadFaultException(addr);
411             throw e; // should never happen
412         } catch(NullPointerException e) {
413             throw new ReadFaultException(addr);
414         }
415     }
416     
417     /** Writes a word to the processes memory at <i>addr</i> */
418     public final void memWrite(int addr, int value) throws WriteFaultException  {
419         if((addr & 3) != 0) throw new WriteFaultException(addr);
420         unsafeMemWrite(addr,value);
421     }
422     
423     protected final void unsafeMemWrite(int addr, int value) throws WriteFaultException {
424         int page = addr >>> pageShift;
425         int entry = (addr&(1<<pageShift) - 1)>>2;
426         try {
427             writePages[page][entry] = value;
428         } catch(ArrayIndexOutOfBoundsException e) {
429             if(page < 0 || page >= writePages.length) throw new WriteFaultException(addr);
430             throw e; // should never happen
431         } catch(NullPointerException e) {
432             throw new WriteFaultException(addr);
433         }
434     }
435     
436     /** Created a new non-empty writable page at page number <i>page</i> */
437     private final int[] initPage(int page) { return initPage(page,false); }
438     /** Created a new non-empty page at page number <i>page</i>. If <i>ro</i> is set the page will be read-only */
439     private final int[] initPage(int page, boolean ro) {
440         int[] buf = new int[(1<<pageShift)>>>2];
441         writePages[page] = ro ? null : buf;
442         readPages[page] = buf;
443         return buf;
444     }
445     
446     /** Returns the exit status of the process. (only valid if state == DONE) 
447         @see Runtime#state */
448     public final int exitStatus() {
449         if(state != EXITED) throw new IllegalStateException("exitStatus() called in an inappropriate state");
450         return exitStatus;
451     }
452         
453     private int addStringArray(String[] strings, int topAddr) throws FaultException {
454         int count = strings.length;
455         int total = 0; /* null last table entry  */
456         for(int i=0;i<count;i++) total += strings[i].length() + 1;
457         total += (count+1)*4;
458         int start = (topAddr - total)&~3;
459         int addr = start + (count+1)*4;
460         int[] table = new int[count+1];
461         try {
462             for(int i=0;i<count;i++) {
463                 byte[] a = getBytes(strings[i]);
464                 table[i] = addr;
465                 copyout(a,addr,a.length);
466                 memset(addr+a.length,0,1);
467                 addr += a.length + 1;
468             }
469             addr=start;
470             for(int i=0;i<count+1;i++) {
471                 memWrite(addr,table[i]);
472                 addr += 4;
473             }
474         } catch(FaultException e) {
475             throw new RuntimeException(e.toString());
476         }
477         return start;
478     }
479     
480     String[] createEnv(String[] extra) { if(extra == null) extra = new String[0]; return extra; }
481     
482     /** Sets word number <i>index</i> in the _user_info table to <i>word</i>
483      * The user_info table is a chunk of memory in the program's memory defined by the
484      * symbol "user_info". The compiler/interpreter automatically determine the size
485      * and location of the user_info table from the ELF symbol table. setUserInfo and
486      * getUserInfo are used to modify the words in the user_info table. */
487     public void setUserInfo(int index, int word) {
488         if(index < 0 || index >= userInfoSize()/4) throw new IndexOutOfBoundsException("setUserInfo called with index >= " + (userInfoSize()/4));
489         try {
490             memWrite(userInfoBase()+index*4,word);
491         } catch(FaultException e) { throw new RuntimeException(e.toString()); }
492     }
493     
494     /** Returns the word in the _user_info table entry <i>index</i>
495         @see Runtime#setUserInfo(int,int) setUserInfo */
496     public int getUserInfo(int index) {
497         if(index < 0 || index >= userInfoSize()/4) throw new IndexOutOfBoundsException("setUserInfo called with index >= " + (userInfoSize()/4));
498         try {
499             return memRead(userInfoBase()+index*4);
500         } catch(FaultException e) { throw new RuntimeException(e.toString()); }
501     }
502     
503     /** Calls _execute() (subclass's execute()) and catches exceptions */
504     private void __execute() {
505         try {
506             _execute();
507         } catch(FaultException e) {
508             if(STDERR_DIAG) e.printStackTrace();
509             exit(128+11,true); // SIGSEGV
510             exitException = e;
511         } catch(ExecutionException e) {
512             if(STDERR_DIAG) e.printStackTrace();
513             exit(128+4,true); // SIGILL
514             exitException = e;
515         }
516     }
517     
518     /** Executes the process until the PAUSE syscall is invoked or the process exits. Returns true if the process exited. */
519     public final boolean execute()  {
520         if(state != PAUSED) throw new IllegalStateException("execute() called in inappropriate state");
521         if(startTime == 0) startTime = System.currentTimeMillis();
522         state = RUNNING;
523         __execute();
524         if(state != PAUSED && state != EXITED && state != EXECED)
525             throw new IllegalStateException("execute() ended up in an inappropriate state (" + state + ")");
526         return state != PAUSED;
527     }
528     
529     static String[] concatArgv(String argv0, String[] rest) {
530         String[] argv = new String[rest.length+1];
531         System.arraycopy(rest,0,argv,1,rest.length);
532         argv[0] = argv0;
533         return argv;
534     }
535     
536     public final int run() { return run(null); }
537     public final int run(String argv0, String[] rest) { return run(concatArgv(argv0,rest)); }
538     public final int run(String[] args) { return run(args,null); }
539     
540     /** Runs the process until it exits and returns the exit status.
541         If the process executes the PAUSE syscall execution will be paused for 500ms and a warning will be displayed */
542     public final int run(String[] args, String[] env) {
543         start(args,env);
544         for(;;) {
545             if(execute()) break;
546             if(STDERR_DIAG) System.err.println("WARNING: Pause requested while executing run()");
547         }
548         if(state == EXECED && STDERR_DIAG) System.err.println("WARNING: Process exec()ed while being run under run()");
549         return state == EXITED ? exitStatus() : 0;
550     }
551
552     public final void start() { start(null); }
553     public final void start(String[] args) { start(args,null); }
554     
555     /** Initializes the process and prepairs it to be executed with execute() */
556     public final void start(String[] args, String[] environ)  {
557         int top, sp, argsAddr, envAddr;
558         if(state != STOPPED) throw new IllegalStateException("start() called in inappropriate state");
559
560         if(args == null) args = new String[]{getClass().getName()};
561         
562         sp = top = writePages.length*(1<<pageShift);
563         try {
564             sp = argsAddr = addStringArray(args,sp);
565             sp = envAddr = addStringArray(createEnv(environ),sp);
566         } catch(FaultException e) {
567             throw new IllegalArgumentException("args/environ too big");
568         }
569         sp &= ~15;
570         if(top - sp > ARG_MAX) throw new IllegalArgumentException("args/environ too big");
571
572         // HACK: heapStart() isn't always available when the constructor
573         // is run and this sometimes doesn't get initialized
574         if(heapEnd == 0) {
575             heapEnd = heapStart();
576             if(heapEnd == 0) throw new Error("heapEnd == 0");
577             int pageSize = writePages.length == 1 ? 4096 : (1<<pageShift);
578             heapEnd = (heapEnd + pageSize - 1) & ~(pageSize-1);
579         }
580
581         CPUState cpuState = new CPUState();
582         cpuState.r[A0] = argsAddr;
583         cpuState.r[A1] = envAddr;
584         cpuState.r[SP] = sp;
585         cpuState.r[RA] = 0xdeadbeef;
586         cpuState.r[GP] = gp();
587         cpuState.pc = entryPoint();
588         setCPUState(cpuState);
589         
590         state = PAUSED;
591         
592         _started();        
593     }
594     
595     /** Hook for subclasses to do their own startup */
596     void _started() {  }
597     
598     public final int call(String sym, Object[] args) throws CallException, FaultException {
599         if(state != PAUSED && state != CALLJAVA) throw new IllegalStateException("call() called in inappropriate state");
600         if(args.length > 7) throw new IllegalArgumentException("args.length > 7");
601         CPUState state = new CPUState();
602         getCPUState(state);
603         
604         int sp = state.r[SP];
605         int[] ia = new int[args.length];
606         for(int i=0;i<args.length;i++) {
607             Object o = args[i];
608             byte[] buf = null;
609             if(o instanceof String) {
610                 buf = getBytes((String)o);
611             } else if(o instanceof byte[]) {
612                 buf = (byte[]) o;
613             } else if(o instanceof Number) {
614                 ia[i] = ((Number)o).intValue();
615             }
616             if(buf != null) {
617                 sp -= buf.length;
618                 copyout(buf,sp,buf.length);
619                 ia[i] = sp;
620             }
621         }
622         int oldSP = state.r[SP];
623         if(oldSP == sp) return call(sym,ia);
624         
625         state.r[SP] = sp;
626         setCPUState(state);
627         int ret = call(sym,ia);
628         state.r[SP] = oldSP;
629         setCPUState(state);
630         return ret;
631     }
632     
633     public final int call(String sym) throws CallException { return call(sym,new int[]{}); }
634     public final int call(String sym, int a0) throws CallException  { return call(sym,new int[]{a0}); }
635     public final int call(String sym, int a0, int a1) throws CallException  { return call(sym,new int[]{a0,a1}); }
636     
637     /** Calls a function in the process with the given arguments */
638     public final int call(String sym, int[] args) throws CallException {
639         int func = lookupSymbol(sym);
640         if(func == -1) throw new CallException(sym + " not found");
641         int helper = lookupSymbol("_call_helper");
642         if(helper == -1) throw new CallException("_call_helper not found");
643         return call(helper,func,args);
644     }
645     
646     /** Executes the code at <i>addr</i> in the process setting A0-A3 and S0-S3 to the given arguments
647         and returns the contents of V1 when the the pause syscall is invoked */
648     //public final int call(int addr, int a0, int a1, int a2, int a3, int s0, int s1, int s2, int s3) {
649     public final int call(int addr, int a0, int[] rest) throws CallException {
650         if(rest.length > 7) throw new IllegalArgumentException("rest.length > 7");
651         if(state != PAUSED && state != CALLJAVA) throw new IllegalStateException("call() called in inappropriate state");
652         int oldState = state;
653         CPUState saved = new CPUState();        
654         getCPUState(saved);
655         CPUState cpustate = saved.dup();
656         
657         cpustate.r[SP] = cpustate.r[SP]&~15;
658         cpustate.r[RA] = 0xdeadbeef;
659         cpustate.r[A0] = a0;
660         switch(rest.length) {            
661             case 7: cpustate.r[S3] = rest[6];
662             case 6: cpustate.r[S2] = rest[5];
663             case 5: cpustate.r[S1] = rest[4];
664             case 4: cpustate.r[S0] = rest[3];
665             case 3: cpustate.r[A3] = rest[2];
666             case 2: cpustate.r[A2] = rest[1];
667             case 1: cpustate.r[A1] = rest[0];
668         }
669         cpustate.pc = addr;
670         
671         state = RUNNING;
672
673         setCPUState(cpustate);
674         __execute();
675         getCPUState(cpustate);
676         setCPUState(saved);
677
678         if(state != PAUSED) throw new CallException("Process exit()ed while servicing a call() request");
679         state = oldState;
680         
681         return cpustate.r[V1];
682     }
683         
684     /** Allocated an entry in the FileDescriptor table for <i>fd</i> and returns the number.
685         Returns -1 if the table is full. This can be used by subclasses to use custom file
686         descriptors */
687     public final int addFD(FD fd) {
688         if(state == EXITED || state == EXECED) throw new IllegalStateException("addFD called in inappropriate state");
689         int i;
690         for(i=0;i<OPEN_MAX;i++) if(fds[i] == null) break;
691         if(i==OPEN_MAX) return -1;
692         fds[i] = fd;
693         closeOnExec[i] = false;
694         return i;
695     }
696
697     /** Closes file descriptor <i>fdn</i> and removes it from the file descriptor table */
698     public final boolean closeFD(int fdn) {
699         if(state == EXITED || state == EXECED) throw new IllegalStateException("closeFD called in inappropriate state");
700         if(fdn < 0 || fdn >= OPEN_MAX) return false;
701         if(fds[fdn] == null) return false;
702         fds[fdn].close();
703         fds[fdn] = null;        
704         return true;
705     }
706     
707     /** Duplicates the file descriptor <i>fdn</i> and returns the new fs */
708     public final int dupFD(int fdn) {
709         int i;
710         if(fdn < 0 || fdn >= OPEN_MAX) return -1;
711         if(fds[fdn] == null) return -1;
712         for(i=0;i<OPEN_MAX;i++) if(fds[i] == null) break;
713         if(i==OPEN_MAX) return -1;
714         fds[i] = fds[fdn].dup();
715         return i;
716     }
717
718     public static final int RD_ONLY = 0;
719     public static final int WR_ONLY = 1;
720     public static final int RDWR = 2;
721     
722     public static final int O_CREAT = 0x0200;
723     public static final int O_EXCL = 0x0800;
724     public static final int O_APPEND = 0x0008;
725     public static final int O_TRUNC = 0x0400;
726     public static final int O_NONBLOCK = 0x4000;
727     public static final int O_NOCTTY = 0x8000;
728     
729     
730     FD hostFSOpen(final File f, int flags, int mode, final Object data) throws ErrnoException {
731         if((flags & ~(3|O_CREAT|O_EXCL|O_APPEND|O_TRUNC)) != 0) {
732             if(STDERR_DIAG)
733                 System.err.println("WARNING: Unsupported flags passed to open(\"" + f + "\"): " + toHex(flags & ~(3|O_CREAT|O_EXCL|O_APPEND|O_TRUNC)));
734             throw new ErrnoException(ENOTSUP);
735         }
736         boolean write = (flags&3) != RD_ONLY;
737
738         if(sm != null && !(write ? sm.allowWrite(f) : sm.allowRead(f))) throw new ErrnoException(EACCES);
739         
740         if((flags & (O_EXCL|O_CREAT)) == (O_EXCL|O_CREAT)) {
741             try {
742                 if(!Platform.atomicCreateFile(f)) throw new ErrnoException(EEXIST);
743             } catch(IOException e) {
744                 throw new ErrnoException(EIO);
745             }
746         } else if(!f.exists()) {
747             if((flags&O_CREAT)==0) return null;
748         } else if(f.isDirectory()) {
749             return hostFSDirFD(f,data);
750         }
751         
752         final Seekable.File sf;
753         try {
754             sf = new Seekable.File(f,write,(flags & O_TRUNC) != 0);
755         } catch(FileNotFoundException e) {
756             if(e.getMessage() != null && e.getMessage().indexOf("Permission denied") >= 0) throw new ErrnoException(EACCES);
757             return null;
758         } catch(IOException e) { throw new ErrnoException(EIO); }
759         
760         return new SeekableFD(sf,flags) { protected FStat _fstat() { return hostFStat(f,data); } };
761     }
762     
763     FStat hostFStat(File f, Object data) { return new HostFStat(f); }
764     
765     FD hostFSDirFD(File f, Object data) { return null; }
766     
767     FD _open(String path, int flags, int mode) throws ErrnoException {
768         return hostFSOpen(new File(path),flags,mode,null);
769     }
770     
771     /** The open syscall */
772     private int sys_open(int addr, int flags, int mode) throws ErrnoException, FaultException {
773         String name = cstring(addr);
774         
775         // HACK: TeX, or GPC, or something really sucks
776         if(name.length() == 1024 && getClass().getName().equals("tests.TeX")) name = name.trim();
777         
778         flags &= ~O_NOCTTY; // this is meaningless under nestedvm
779         FD fd = _open(name,flags,mode);
780         if(fd == null) return -ENOENT;
781         int fdn = addFD(fd);
782         if(fdn == -1) { fd.close(); return -ENFILE; }
783         return fdn;
784     }
785
786     /** The write syscall */
787     
788     private int sys_write(int fdn, int addr, int count) throws FaultException, ErrnoException {
789         count = Math.min(count,MAX_CHUNK);
790         if(fdn < 0 || fdn >= OPEN_MAX) return -EBADFD;
791         if(fds[fdn] == null) return -EBADFD;
792         byte[] buf = byteBuf(count);
793         copyin(addr,buf,count);
794         try {
795             return fds[fdn].write(buf,0,count);
796         } catch(ErrnoException e) {
797             if(e.errno == EPIPE) sys_exit(128+13);
798             throw e;
799         }
800     }
801
802     /** The read syscall */
803     private int sys_read(int fdn, int addr, int count) throws FaultException, ErrnoException {
804         count = Math.min(count,MAX_CHUNK);
805         if(fdn < 0 || fdn >= OPEN_MAX) return -EBADFD;
806         if(fds[fdn] == null) return -EBADFD;
807         byte[] buf = byteBuf(count);
808         int n = fds[fdn].read(buf,0,count);
809         copyout(buf,addr,n);
810         return n;
811     }
812     
813     /** The close syscall */
814     private int sys_close(int fdn) {
815         return closeFD(fdn) ? 0 : -EBADFD;
816     }
817
818     
819     /** The seek syscall */
820     private int sys_lseek(int fdn, int offset, int whence) throws ErrnoException {
821         if(fdn < 0 || fdn >= OPEN_MAX) return -EBADFD;
822         if(fds[fdn] == null) return -EBADFD;
823         if(whence != SEEK_SET && whence !=  SEEK_CUR && whence !=  SEEK_END) return -EINVAL;
824         int n = fds[fdn].seek(offset,whence);
825         return n < 0 ? -ESPIPE : n;
826     }
827     
828     /** The stat/fstat syscall helper */
829     int stat(FStat fs, int addr) throws FaultException {
830         memWrite(addr+0,(fs.dev()<<16)|(fs.inode()&0xffff)); // st_dev (top 16), // st_ino (bottom 16)
831         memWrite(addr+4,((fs.type()&0xf000))|(fs.mode()&0xfff)); // st_mode
832         memWrite(addr+8,fs.nlink()<<16|fs.uid()&0xffff); // st_nlink (top 16) // st_uid (bottom 16)
833         memWrite(addr+12,fs.gid()<<16|0); // st_gid (top 16) // st_rdev (bottom 16)
834         memWrite(addr+16,fs.size()); // st_size
835         memWrite(addr+20,fs.atime()); // st_atime
836         // memWrite(addr+24,0) // st_spare1
837         memWrite(addr+28,fs.mtime()); // st_mtime
838         // memWrite(addr+32,0) // st_spare2
839         memWrite(addr+36,fs.ctime()); // st_ctime
840         // memWrite(addr+40,0) // st_spare3
841         memWrite(addr+44,fs.blksize()); // st_bklsize;
842         memWrite(addr+48,fs.blocks()); // st_blocks
843         // memWrite(addr+52,0) // st_spare4[0]
844         // memWrite(addr+56,0) // st_spare4[1]
845         return 0;
846     }
847     
848     /** The fstat syscall */
849     private int sys_fstat(int fdn, int addr) throws FaultException {
850         if(fdn < 0 || fdn >= OPEN_MAX) return -EBADFD;
851         if(fds[fdn] == null) return -EBADFD;
852         return stat(fds[fdn].fstat(),addr);
853     }
854     
855     /*
856     struct timeval {
857     long tv_sec;
858     long tv_usec;
859     };
860     */
861     private int sys_gettimeofday(int timevalAddr, int timezoneAddr) throws FaultException {
862         long now = System.currentTimeMillis();
863         int tv_sec = (int)(now / 1000);
864         int tv_usec = (int)((now%1000)*1000);
865         memWrite(timevalAddr+0,tv_sec);
866         memWrite(timevalAddr+4,tv_usec);
867         return 0;
868     }
869     
870     private int sys_sleep(int sec) {
871         if(sec < 0) sec = Integer.MAX_VALUE;
872         try {
873             Thread.sleep((long)sec*1000);
874             return 0;
875         } catch(InterruptedException e) {
876             return -1;
877         }
878     }
879     
880     /*
881       #define _CLOCKS_PER_SEC_ 1000
882       #define    _CLOCK_T_    unsigned long
883     struct tms {
884       clock_t   tms_utime;
885       clock_t   tms_stime;
886       clock_t   tms_cutime;    
887       clock_t   tms_cstime;
888     };*/
889    
890     private int sys_times(int tms) {
891         long now = System.currentTimeMillis();
892         int userTime = (int)((now - startTime)/16);
893         int sysTime = (int)((now - startTime)/16);
894         
895         try {
896             if(tms!=0) {
897                 memWrite(tms+0,userTime);
898                 memWrite(tms+4,sysTime);
899                 memWrite(tms+8,userTime);
900                 memWrite(tms+12,sysTime);
901             }
902         } catch(FaultException e) {
903             return -EFAULT;
904         }
905         return (int)now;
906     }
907     
908     private int sys_sysconf(int n) {
909         switch(n) {
910             case _SC_CLK_TCK: return 1000;
911             case _SC_PAGESIZE: return  writePages.length == 1 ? 4096 : (1<<pageShift);
912             case _SC_PHYS_PAGES: return writePages.length == 1 ? (1<<pageShift)/4096 : writePages.length;
913             default:
914                 if(STDERR_DIAG) System.err.println("WARNING: Attempted to use unknown sysconf key: " + n);
915                 return -EINVAL;
916         }
917     }
918     
919     /** The sbrk syscall. This can also be used by subclasses to allocate memory.
920         <i>incr</i> is how much to increase the break by */
921     public final int sbrk(int incr) {
922         if(incr < 0) return -ENOMEM;
923         if(incr==0) return heapEnd;
924         incr = (incr+3)&~3;
925         int oldEnd = heapEnd;
926         int newEnd = oldEnd + incr;
927         if(newEnd >= stackBottom) return -ENOMEM;
928         
929         if(writePages.length > 1) {
930             int pageMask = (1<<pageShift) - 1;
931             int pageWords = (1<<pageShift) >>> 2;
932             int start = (oldEnd + pageMask) >>> pageShift;
933             int end = (newEnd + pageMask) >>> pageShift;
934             try {
935                 for(int i=start;i<end;i++) readPages[i] = writePages[i] = new int[pageWords];
936             } catch(OutOfMemoryError e) {
937                 if(STDERR_DIAG) System.err.println("WARNING: Caught OOM Exception in sbrk: " + e);
938                 return -ENOMEM;
939             }
940         }
941         heapEnd = newEnd;
942         return oldEnd;
943     }
944
945     /** The getpid syscall */
946     private int sys_getpid() { return getPid(); }
947     int getPid() { return 1; }
948     
949     public static interface CallJavaCB { public int call(int a, int b, int c, int d); }
950     
951     private int sys_calljava(int a, int b, int c, int d) {
952         if(state != RUNNING) throw new IllegalStateException("wound up calling sys_calljava while not in RUNNING");
953         if(callJavaCB != null) {
954             state = CALLJAVA;
955             int ret;
956             try {
957                 ret = callJavaCB.call(a,b,c,d);
958             } catch(RuntimeException e) {
959                 System.err.println("Error while executing callJavaCB");
960                 e.printStackTrace();
961                 ret = 0;
962             }
963             state = RUNNING;
964             return ret;
965         } else {
966             if(STDERR_DIAG) System.err.println("WARNING: calljava syscall invoked without a calljava callback set");
967             return 0;
968         }
969     }
970         
971     private int sys_pause() {
972         state = PAUSED;
973         return 0;
974     }
975     
976     private int sys_getpagesize() { return writePages.length == 1 ? 4096 : (1<<pageShift); }
977     
978     /** Hook for subclasses to do something when the process exits  */
979     void _exited() {  }
980     
981     void exit(int status, boolean fromSignal) {
982         if(fromSignal && fds[2] != null) {
983             try {
984                 byte[] msg = getBytes("Process exited on signal " + (status - 128) + "\n");
985                 fds[2].write(msg,0,msg.length);
986             } catch(ErrnoException e) { }
987         }
988         exitStatus = status;
989         for(int i=0;i<fds.length;i++) if(fds[i] != null) closeFD(i);
990         state = EXITED;
991         _exited();
992     }
993     
994     private int sys_exit(int status) {
995         exit(status,false);
996         return 0;
997     }
998        
999     private int sys_fcntl(int fdn, int cmd, int arg) {
1000         int i;
1001             
1002         if(fdn < 0 || fdn >= OPEN_MAX) return -EBADFD;
1003         if(fds[fdn] == null) return -EBADFD;
1004         FD fd = fds[fdn];
1005         
1006         switch(cmd) {
1007             case F_DUPFD:
1008                 if(arg < 0 || arg >= OPEN_MAX) return -EINVAL;
1009                 for(i=arg;i<OPEN_MAX;i++) if(fds[i]==null) break;
1010                 if(i==OPEN_MAX) return -EMFILE;
1011                 fds[i] = fd.dup();
1012                 return i;
1013             case F_GETFL:
1014                 return fd.flags();
1015             case F_SETFD:
1016                 closeOnExec[fdn] = arg != 0;
1017                 return 0;
1018             case F_GETFD:
1019                 return closeOnExec[fdn] ? 1 : 0;
1020             default:
1021                 if(STDERR_DIAG) System.err.println("WARNING: Unknown fcntl command: " + cmd);
1022                 return -ENOSYS;
1023         }
1024     }
1025           
1026     /** The syscall dispatcher.
1027         The should be called by subclasses when the syscall instruction is invoked.
1028         <i>syscall</i> should be the contents of V0 and <i>a</i>, <i>b</i>, <i>c</i>, and <i>d</i> should be 
1029         the contenst of A0, A1, A2, and A3. The call MAY change the state
1030         @see Runtime#state state */
1031     protected final int syscall(int syscall, int a, int b, int c, int d, int e, int f) {
1032         try {
1033             int n = _syscall(syscall,a,b,c,d,e,f);
1034             //if(n < 0) System.err.println("syscall: " + syscall + " returned " + n);
1035             return n;
1036         } catch(ErrnoException ex) {
1037             //ex.printStackTrace();
1038             return -ex.errno;
1039         } catch(FaultException ex) {
1040             return -EFAULT;
1041         } catch(RuntimeException ex) {
1042             ex.printStackTrace();
1043             throw new Error("Internal Error in _syscall()");
1044         }
1045     }
1046     
1047     int _syscall(int syscall, int a, int b, int c, int d, int e, int f) throws ErrnoException, FaultException {
1048         switch(syscall) {
1049             case SYS_null: return 0;
1050             case SYS_exit: return sys_exit(a);
1051             case SYS_pause: return sys_pause();
1052             case SYS_write: return sys_write(a,b,c);
1053             case SYS_fstat: return sys_fstat(a,b);
1054             case SYS_sbrk: return sbrk(a);
1055             case SYS_open: return sys_open(a,b,c);
1056             case SYS_close: return sys_close(a);
1057             case SYS_read: return sys_read(a,b,c);
1058             case SYS_lseek: return sys_lseek(a,b,c);
1059             case SYS_getpid: return sys_getpid();
1060             case SYS_calljava: return sys_calljava(a,b,c,d);
1061             case SYS_gettimeofday: return sys_gettimeofday(a,b);
1062             case SYS_sleep: return sys_sleep(a);
1063             case SYS_times: return sys_times(a);
1064             case SYS_getpagesize: return sys_getpagesize();
1065             case SYS_fcntl: return sys_fcntl(a,b,c);
1066             case SYS_sysconf: return sys_sysconf(a);
1067             case SYS_getuid: return sys_getuid();
1068             case SYS_geteuid: return sys_geteuid();
1069             case SYS_getgid: return sys_getgid();
1070             case SYS_getegid: return sys_getegid();
1071             
1072             case SYS_memcpy: memcpy(a,b,c); return a;
1073             case SYS_memset: memset(a,b,c); return a;
1074
1075             case SYS_kill:
1076             case SYS_fork:
1077             case SYS_pipe:
1078             case SYS_dup2:
1079             case SYS_waitpid:
1080             case SYS_stat:
1081             case SYS_mkdir:
1082             case SYS_getcwd:
1083             case SYS_chdir:
1084                 if(STDERR_DIAG) System.err.println("Attempted to use a UnixRuntime syscall in Runtime (" + syscall + ")");
1085                 return -ENOSYS;
1086             default:
1087                 if(STDERR_DIAG) System.err.println("Attempted to use unknown syscall: " + syscall);
1088                 return -ENOSYS;
1089         }
1090     }
1091     
1092     private int sys_getuid() { return 0; }
1093     private int sys_geteuid() { return 0; }
1094     private int sys_getgid() { return 0; }
1095     private int sys_getegid() { return 0; }
1096     
1097     public int xmalloc(int size) { int p=malloc(size); if(p==0) throw new RuntimeException("malloc() failed"); return p; }
1098     public int xrealloc(int addr,int newsize) { int p=realloc(addr,newsize); if(p==0) throw new RuntimeException("realloc() failed"); return p; }
1099     public int realloc(int addr, int newsize) { try { return call("realloc",addr,newsize); } catch(CallException e) { return 0; } }
1100     public int malloc(int size) { try { return call("malloc",size); } catch(CallException e) { return 0; } }
1101     public void free(int p) { try { if(p!=0) call("free",p); } catch(CallException e) { /*noop*/ } }
1102     
1103     /** Helper function to create a cstring in main memory */
1104     public int strdup(String s) {
1105         byte[] a;
1106         if(s == null) s = "(null)";
1107         byte[] a2 = getBytes(s);
1108         a = new byte[a2.length+1];
1109         System.arraycopy(a2,0,a,0,a2.length);
1110         int addr = malloc(a.length);
1111         if(addr == 0) return 0;
1112         try {
1113             copyout(a,addr,a.length);
1114         } catch(FaultException e) {
1115             free(addr);
1116             return 0;
1117         }
1118         return addr;
1119     }
1120     
1121     /** Helper function to read a cstring from main memory */
1122     public final String cstring(int addr) throws ReadFaultException {
1123         StringBuffer sb = new StringBuffer();
1124         for(;;) {
1125             int word = memRead(addr&~3);
1126             switch(addr&3) {
1127                 case 0: if(((word>>>24)&0xff)==0) return sb.toString(); sb.append((char)((word>>>24)&0xff)); addr++;
1128                 case 1: if(((word>>>16)&0xff)==0) return sb.toString(); sb.append((char)((word>>>16)&0xff)); addr++;
1129                 case 2: if(((word>>> 8)&0xff)==0) return sb.toString(); sb.append((char)((word>>> 8)&0xff)); addr++;
1130                 case 3: if(((word>>> 0)&0xff)==0) return sb.toString(); sb.append((char)((word>>> 0)&0xff)); addr++;
1131             }
1132         }
1133     }
1134     
1135     /** File Descriptor class */
1136     public static abstract class FD {
1137         private int refCount = 1;
1138         
1139         /** Read some bytes. Should return the number of bytes read, 0 on EOF, or throw an IOException on error */
1140         public int read(byte[] a, int off, int length) throws ErrnoException { throw new ErrnoException(EBADFD); }
1141         /** Write. Should return the number of bytes written or throw an IOException on error */
1142         public int write(byte[] a, int off, int length) throws ErrnoException { throw new ErrnoException(EBADFD); }
1143
1144         /** Seek in the filedescriptor. Whence is SEEK_SET, SEEK_CUR, or SEEK_END. Should return -1 on error or the new position. */
1145         public int seek(int n, int whence)  throws ErrnoException  { return -1; }
1146         
1147         public int getdents(byte[] a, int off, int length) throws ErrnoException { throw new ErrnoException(EBADFD); }
1148         
1149         /** Return a Seekable object representing this file descriptor (can be read only) 
1150             This is required for exec() */
1151         Seekable seekable() { return null; }
1152         
1153         private FStat cachedFStat = null;
1154         public final FStat fstat() {
1155             if(cachedFStat == null) cachedFStat = _fstat(); 
1156             return cachedFStat;
1157         }
1158         
1159         protected abstract FStat _fstat();
1160         public abstract int  flags();
1161         
1162         /** Closes the fd */
1163         public final void close() { if(--refCount==0) _close(); }
1164         protected void _close() { /* noop*/ }
1165         
1166         FD dup() { refCount++; return this; }
1167     }
1168         
1169     /** FileDescriptor class for normal files */
1170     public abstract static class SeekableFD extends FD {
1171         private final int flags;
1172         private final Seekable data;
1173         
1174         SeekableFD(Seekable data, int flags) { this.data = data; this.flags = flags; }
1175         
1176         protected abstract FStat _fstat();
1177         public int flags() { return flags; }
1178
1179         Seekable seekable() { return data; }
1180         
1181         public int seek(int n, int whence) throws ErrnoException {
1182             try {
1183                 switch(whence) {
1184                         case SEEK_SET: break;
1185                         case SEEK_CUR: n += data.pos(); break;
1186                         case SEEK_END: n += data.length(); break;
1187                         default: return -1;
1188                 }
1189                 data.seek(n);
1190                 return n;
1191             } catch(IOException e) {
1192                 throw new ErrnoException(ESPIPE);
1193             }
1194         }
1195         
1196         public int write(byte[] a, int off, int length) throws ErrnoException {
1197             if((flags&3) == RD_ONLY) throw new ErrnoException(EBADFD);
1198             // NOTE: There is race condition here but we can't fix it in pure java
1199             if((flags&O_APPEND) != 0) seek(0,SEEK_END);
1200             try {
1201                 return data.write(a,off,length);
1202             } catch(IOException e) {
1203                 throw new ErrnoException(EIO);
1204             }
1205         }
1206         
1207         public int read(byte[] a, int off, int length) throws ErrnoException {
1208             if((flags&3) == WR_ONLY) throw new ErrnoException(EBADFD);
1209             try {
1210                 int n = data.read(a,off,length);
1211                 return n < 0 ? 0 : n;
1212             } catch(IOException e) {
1213                 throw new ErrnoException(EIO);
1214             }
1215         }
1216         
1217         protected void _close() { try { data.close(); } catch(IOException e) { /*ignore*/ } }        
1218     }
1219     
1220     public static class InputOutputStreamFD extends FD {
1221         private final InputStream is;
1222         private final OutputStream os;
1223         
1224         public InputOutputStreamFD(InputStream is) { this(is,null); }
1225         public InputOutputStreamFD(OutputStream os) { this(null,os); }
1226         public InputOutputStreamFD(InputStream is, OutputStream os) {
1227             this.is = is;
1228             this.os = os;
1229             if(is == null && os == null) throw new IllegalArgumentException("at least one stream must be supplied");
1230         }
1231         
1232         public int flags() {
1233             if(is != null && os != null) return O_RDWR;
1234             if(is != null) return O_RDONLY;
1235             if(os != null) return O_WRONLY;
1236             throw new Error("should never happen");
1237         }
1238         
1239         public void _close() {
1240             if(is != null) try { is.close(); } catch(IOException e) { /*ignore*/ }
1241             if(os != null) try { os.close(); } catch(IOException e) { /*ignore*/ }
1242         }
1243         
1244         public int read(byte[] a, int off, int length) throws ErrnoException {
1245             if(is == null) return super.read(a,off,length);
1246             try {
1247                 int n = is.read(a,off,length);
1248                 return n < 0 ? 0 : n;
1249             } catch(IOException e) {
1250                 throw new ErrnoException(EIO);
1251             }
1252         }    
1253         
1254         public int write(byte[] a, int off, int length) throws ErrnoException {
1255             if(os == null) return super.write(a,off,length);
1256             try {
1257                 os.write(a,off,length);
1258                 return length;
1259             } catch(IOException e) {
1260                 throw new ErrnoException(EIO);
1261             }
1262         }
1263         
1264         public FStat _fstat() { return new SocketFStat(); }
1265     }
1266     
1267     static class TerminalFD extends InputOutputStreamFD {
1268         public TerminalFD(InputStream is) { this(is,null); }
1269         public TerminalFD(OutputStream os) { this(null,os); }
1270         public TerminalFD(InputStream is, OutputStream os) { super(is,os); }
1271         public void _close() { /* noop */ }
1272         public FStat _fstat() { return new SocketFStat() { public int type() { return S_IFCHR; } public int mode() { return 0600; } }; }
1273     }
1274     
1275     // This is pretty inefficient but it is only used for reading from the console on win32
1276     static class Win32ConsoleIS extends InputStream {
1277         private int pushedBack = -1;
1278         private final InputStream parent;
1279         public Win32ConsoleIS(InputStream parent) { this.parent = parent; }
1280         public int read() throws IOException {
1281             if(pushedBack != -1) { int c = pushedBack; pushedBack = -1; return c; }
1282             int c = parent.read();
1283             if(c == '\r' && (c = parent.read()) != '\n') { pushedBack = c; return '\r'; }
1284             return c;
1285         }
1286         public int read(byte[] buf, int pos, int len) throws IOException {
1287             boolean pb = false;
1288             if(pushedBack != -1 && len > 0) {
1289                 buf[0] = (byte) pushedBack;
1290                 pushedBack = -1;
1291                 pos++; len--; pb = true;
1292             }
1293             int n = parent.read(buf,pos,len);
1294             if(n == -1) return -1;
1295             for(int i=0;i<n;i++) {
1296                 if(buf[pos+i] == '\r') {
1297                     if(i==n-1) {
1298                         int c = parent.read();
1299                         if(c == '\n') buf[pos+i] = '\n';
1300                         else pushedBack = c;
1301                     } else if(buf[pos+i+1] == '\n') {
1302                         System.arraycopy(buf,pos+i+1,buf,pos+i,len-i-1);
1303                         n--;
1304                     }
1305                 }
1306             }
1307             return n + (pb ? 1 : 0);
1308         }
1309     }
1310     
1311     public abstract static class FStat {
1312         public static final int S_IFIFO =  0010000;
1313         public static final int S_IFCHR =  0020000;
1314         public static final int S_IFDIR =  0040000;
1315         public static final int S_IFREG =  0100000;
1316         public static final int S_IFSOCK = 0140000;
1317         
1318         public int mode() { return 0; }
1319         public int nlink() { return 0; }
1320         public int uid() { return 0; }
1321         public int gid() { return 0; }
1322         public int size() { return 0; }
1323         public int atime() { return 0; }
1324         public int mtime() { return 0; }
1325         public int ctime() { return 0; }
1326         public int blksize() { return 512; }
1327         public int blocks() { return (size()+blksize()-1)/blksize(); }        
1328         
1329         public abstract int dev();
1330         public abstract int type();
1331         public abstract int inode();
1332     }
1333     
1334     public static class SocketFStat extends FStat {
1335         public int dev() { return -1; }
1336         public int type() { return S_IFSOCK; }
1337         public int inode() { return hashCode() & 0x7fff; }
1338     }
1339     
1340     static class HostFStat extends FStat {
1341         private final File f;
1342         private final boolean executable; 
1343         public HostFStat(File f) { this(f,false); }
1344         public HostFStat(File f, boolean executable) {
1345             this.f = f;
1346             this.executable = executable;
1347         }
1348         public int dev() { return 1; }
1349         public int inode() { return f.getAbsolutePath().hashCode() & 0x7fff; }
1350         public int type() { return f.isDirectory() ? S_IFDIR : S_IFREG; }
1351         public int nlink() { return 1; }
1352         public int mode() {
1353             int mode = 0;
1354             boolean canread = f.canRead();
1355             if(canread && (executable || f.isDirectory())) mode |= 0111;
1356             if(canread) mode |= 0444;
1357             if(f.canWrite()) mode |= 0222;
1358             return mode;
1359         }
1360         public int size() { return (int) f.length(); }
1361         public int mtime() { return (int)(f.lastModified()/1000); }        
1362     }
1363     
1364     // Exceptions
1365     public static class ReadFaultException extends FaultException {
1366         public ReadFaultException(int addr) { super(addr); }
1367     }
1368     public static class WriteFaultException extends FaultException {
1369         public WriteFaultException(int addr) { super(addr); }
1370     }
1371     public static class FaultException extends ExecutionException {
1372         public final int addr;
1373         public final RuntimeException cause;
1374         public FaultException(int addr) { super("fault at: " + toHex(addr)); this.addr = addr; cause = null; }
1375         public FaultException(RuntimeException e) { super(e.toString()); addr = -1; cause = e; }
1376     }
1377     public static class ExecutionException extends Exception {
1378         private String message = "(null)";
1379         private String location = "(unknown)";
1380         public ExecutionException() { /* noop */ }
1381         public ExecutionException(String s) { if(s != null) message = s; }
1382         void setLocation(String s) { location = s == null ? "(unknown)" : s; }
1383         public final String getMessage() { return message + " at " + location; }
1384     }
1385     public static class CallException extends Exception {
1386         public CallException(String s) { super(s); }
1387     }
1388     
1389     protected static class ErrnoException extends Exception {
1390         public int errno;
1391         public ErrnoException(int errno) { super("Errno: " + errno); this.errno = errno; }
1392     }
1393     
1394     // CPU State
1395     protected static class CPUState {
1396         public CPUState() { /* noop */ }
1397         /* GPRs */
1398         public int[] r = new int[32];
1399         /* Floating point regs */
1400         public int[] f = new int[32];
1401         public int hi, lo;
1402         public int fcsr;
1403         public int pc;
1404         
1405         public CPUState dup() {
1406             CPUState c = new CPUState();
1407             c.hi = hi;
1408             c.lo = lo;
1409             c.fcsr = fcsr;
1410             c.pc = pc;
1411             for(int i=0;i<32;i++) {
1412                     c.r[i] = r[i];
1413                 c.f[i] = f[i];
1414             }
1415             return c;
1416         }
1417     }
1418     
1419     public static class SecurityManager {
1420         public boolean allowRead(File f) { return true; }
1421         public boolean allowWrite(File f) { return true; }
1422         public boolean allowStat(File f) { return true; }
1423         public boolean allowUnlink(File f) { return true; }
1424     }
1425     
1426     // Null pointer check helper function
1427     protected final void nullPointerCheck(int addr) throws ExecutionException {
1428         if(addr < 65536)
1429             throw new ExecutionException("Attempted to dereference a null pointer " + toHex(addr));
1430     }
1431     
1432     // Utility functions
1433     byte[] byteBuf(int size) {
1434         if(_byteBuf==null) _byteBuf = new byte[size];
1435         else if(_byteBuf.length < size)
1436             _byteBuf = new byte[min(max(_byteBuf.length*2,size),MAX_CHUNK)];
1437         return _byteBuf;
1438     }
1439     
1440     /** Decode a packed string */
1441     protected static final int[] decodeData(String s, int words) {
1442         if(s.length() % 8 != 0) throw new IllegalArgumentException("string length must be a multiple of 8");
1443         if((s.length() / 8) * 7 < words*4) throw new IllegalArgumentException("string isn't big enough");
1444         int[] buf = new int[words];
1445         int prev = 0, left=0;
1446         for(int i=0,n=0;n<words;i+=8) {
1447             long l = 0;
1448             for(int j=0;j<8;j++) { l <<= 7; l |= s.charAt(i+j) & 0x7f; }
1449             if(left > 0) buf[n++] = prev | (int)(l>>>(56-left));
1450             if(n < words) buf[n++] = (int) (l >>> (24-left));
1451             left = (left + 8) & 0x1f;
1452             prev = (int)(l << left);
1453         }
1454         return buf;
1455     }
1456     
1457     static byte[] getBytes(String s) {
1458         try {
1459             return s.getBytes("ISO-8859-1");
1460         } catch(UnsupportedEncodingException e) {
1461             return null; // should never happen
1462         }
1463     }
1464     
1465     static byte[] getNullTerminatedBytes(String s) {
1466         byte[] buf1 = getBytes(s);
1467         byte[] buf2 = new byte[buf1.length+1];
1468         System.arraycopy(buf1,0,buf2,0,buf1.length);
1469         return buf2;
1470     }
1471     
1472     final static String toHex(int n) { return "0x" + Long.toString(n & 0xffffffffL, 16); }
1473     final static int min(int a, int b) { return a < b ? a : b; }
1474     final static int max(int a, int b) { return a > b ? a : b; }
1475 }