/[gxemul]/trunk/src/file/file_aout.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /trunk/src/file/file_aout.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 40 - (hide annotations)
Mon Oct 8 16:22:11 2007 UTC (16 years, 6 months ago) by dpavlin
File MIME type: text/plain
File size: 6723 byte(s)
++ trunk/HISTORY	(local)
$Id: HISTORY,v 1.1539 2007/05/01 04:03:51 debug Exp $
20070415	Landisk PCLOCK should be 33.33 MHz, not 50 MHz. (This makes
		the clock run at correct speed.)
		FINALLY found and fixed the bug which caused OpenBSD/landisk
		to randomly bug out: an &-sign was missing in the special case
		handling of FPSCR in the 'LDS.L @Rm+,FPSCR' instruction.
		Adding similar special case handling for 'LDC.L @Rm+,SR'
		(calling sh_update_sr() instead of just loading).
		Implementing the 'FCNVSD FPUL,DRn' and 'FCNVDS DRm,FPUL'
		SuperH instructions.
		The 'LDC Rm,SR' instruction now immediately breaks out of the
		dyntrans loop if an interrupt is to be triggered.
20070416	In memory_rw.c, if mapping a page as writable, make sure to
		invalidate code translations even if the data access was a
		read.
		Minor SuperH updates.
20070418	Removing the dummy M68K emulation mode.
		Minor SH update (turning unnecessary sts_mach_rn, sts_macl_rn,
		and sts_pr_rn instruction handlers into mov_rm_rn).
20070419	Beginning to add a skeleton for an M88K mode: Adding a hack to
		allow OpenBSD/m88k a.out binaries to be loaded, and disassembly
		of a few simple 88K instructions.
		Commenting out the 'LDC Rm,SR' fix from a few days ago, because
		it made Linux/dreamcast bug out.
		Adding a hack to dev_sh4.c (an extra translation cache
		invalidation), which allows OpenBSD/landisk to boot ok after
		an install. Upgrading the Landisk machine mode to stable,
		updating documentation, etc.
20070420	Experimenting with adding a PCI controller (pcic) to dev_sh4.
		Adding a dummy Realtek 8139C+ skeleton device (dev_rtl8139c).
		Implementing the first M88K instructions (br, or[.u] imm), and
		adding disassembly of some more instructions.
20070421	Continuing a little on dev_rtl8139c.
20070422	Implementing the 9346 EEPROM "read" command for dev_rtl8139c.
		Finally found and fixed an old bug in the log n symbol search
		(it sometimes missed symbols). Debug trace (-i, -t etc) should
		now show more symbols. :-)
20070423	Continuing a little on M88K disassembly.
20070428	Fixing a memset arg order bug in src/net/net.c (thanks to
		Nigel Horne for noticing the bug).
		Applying parts of a patch from Carl van Schaik to clear out
		bottom bits of MIPS addresses more correctly, when using large
		page sizes, and doing some other minor cleanup/refactoring.
		Fixing a couple of warnings given by gcc with the -W option (a
		few more warnings than just plain -Wall).
		Reducing SuperH dyntrans physical address space from 64-bit to
		32-bit (since SH5/SH64 isn't imlemented yet anyway).
		Adding address-to-symbol annotation to a few more instructions
		in the SuperH instruction trace output.
		Beginning regression testing for the next release.
		Reverting the value of SCIF_DELAYED_TX_VALUE from 1 to 2,
		because OpenBSD/landisk may otherwise hang randomly.
20070429	The ugly hack/workaround to get OpenBSD/landisk booting without
		crashing does NOT work anymore (with the April 21 snapshot
		of OpenBSD/landisk). Strangely enough, removing the hack
		completely causes OpenBSD/landisk to work (!).
		More regression testing (re-testing everything SuperH-related,
		and some other things).
		Cobalt interrupts were actually broken; fixing by commenting
		out the DEC21143s in the Cobalt machine.
20070430	More regression testing.
20070501	Updating the OpenBSD/landisk install instructions to use
		4.1 instead of the current snapshot.
		GAAAH! OpenBSD/landisk 4.1 _needs_ the ugly hack/workaround;
		reintroducing it again. (The 4.1 kernel is actually from
		2007-03-11.)
		Simplifying the NetBSD/evbarm install instructions a bit.
		More regression testing.

==============  RELEASE 0.4.5.1  ==============


1 dpavlin 38 /*
2     * Copyright (C) 2003-2007 Anders Gavare. All rights reserved.
3     *
4     * Redistribution and use in source and binary forms, with or without
5     * modification, are permitted provided that the following conditions are met:
6     *
7     * 1. Redistributions of source code must retain the above copyright
8     * notice, this list of conditions and the following disclaimer.
9     * 2. 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     * 3. The name of the author may not be used to endorse or promote products
13     * derived from this software without specific prior written permission.
14     *
15     * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16     * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17     * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18     * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19     * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20     * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21     * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22     * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23     * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24     * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25     * SUCH DAMAGE.
26     *
27     *
28 dpavlin 40 * $Id: file_aout.c,v 1.2 2007/04/19 15:18:16 debug Exp $
29 dpavlin 38 *
30     * a.out file support.
31     */
32    
33     /* Note: Included from file.c. */
34    
35    
36     #include "exec_aout.h"
37    
38    
39     #define AOUT_FLAG_DECOSF1 1
40     #define AOUT_FLAG_FROM_BEGINNING 2
41     #define AOUT_FLAG_VADDR_ZERO_HACK 4
42     #define AOUT_FLAG_NO_SIZES 8
43    
44     struct aout_symbol {
45     uint32_t strindex;
46     uint32_t type;
47     uint32_t addr;
48     };
49    
50    
51     /*
52     * file_load_aout():
53     *
54     * Loads an a.out binary image into the emulated memory. The entry point
55     * (read from the a.out header) is stored in the specified CPU's registers.
56     *
57     * TODO: This has to be rewritten / corrected to support multiple a.out
58     * formats, where text/data are aligned differently.
59     */
60     static void file_load_aout(struct machine *m, struct memory *mem,
61     char *filename, int flags,
62     uint64_t *entrypointp, int arch, int *byte_orderp)
63     {
64     struct exec aout_header;
65     FILE *f;
66     int len;
67     int encoding = ELFDATA2LSB;
68     uint32_t entry, datasize, textsize;
69     int32_t symbsize = 0;
70     uint32_t vaddr, total_len;
71     unsigned char buf[65536];
72     unsigned char *syms;
73    
74     if (m->cpus[0]->byte_order == EMUL_BIG_ENDIAN)
75     encoding = ELFDATA2MSB;
76    
77     f = fopen(filename, "r");
78     if (f == NULL) {
79     perror(filename);
80     exit(1);
81     }
82    
83     if (flags & AOUT_FLAG_DECOSF1) {
84     fread(&buf, 1, 32, f);
85     vaddr = buf[16] + (buf[17] << 8) +
86     (buf[18] << 16) + ((uint64_t)buf[19] << 24);
87     entry = buf[20] + (buf[21] << 8) +
88     (buf[22] << 16) + ((uint64_t)buf[23] << 24);
89     debug("OSF1 a.out, load address 0x%08lx, "
90     "entry point 0x%08x\n", (long)vaddr, (long)entry);
91     symbsize = 0;
92     fseek(f, 0, SEEK_END);
93     /* This is of course wrong, but should work anyway: */
94     textsize = ftello(f) - 512;
95     datasize = 0;
96     fseek(f, 512, SEEK_SET);
97     } else if (flags & AOUT_FLAG_NO_SIZES) {
98     fseek(f, 0, SEEK_END);
99     textsize = ftello(f) - 32;
100     datasize = 0;
101     vaddr = entry = 0;
102     fseek(f, 32, SEEK_SET);
103     } else {
104     len = fread(&aout_header, 1, sizeof(aout_header), f);
105     if (len != sizeof(aout_header)) {
106     fprintf(stderr, "%s: not a complete a.out image\n",
107     filename);
108     exit(1);
109     }
110    
111     unencode(entry, &aout_header.a_entry, uint32_t);
112     debug("a.out, entry point 0x%08lx\n", (long)entry);
113     vaddr = entry;
114    
115     if (flags & AOUT_FLAG_VADDR_ZERO_HACK)
116     vaddr = 0;
117    
118     unencode(textsize, &aout_header.a_text, uint32_t);
119     unencode(datasize, &aout_header.a_data, uint32_t);
120     debug("text + data = %i + %i bytes\n", textsize, datasize);
121    
122     unencode(symbsize, &aout_header.a_syms, uint32_t);
123     }
124    
125     if (flags & AOUT_FLAG_FROM_BEGINNING) {
126     fseek(f, 0, SEEK_SET);
127     vaddr &= ~0xfff;
128     }
129    
130     /* Load text and data: */
131     total_len = textsize + datasize;
132     while (total_len != 0) {
133     len = total_len > sizeof(buf) ? sizeof(buf) : total_len;
134     len = fread(buf, 1, len, f);
135    
136     /* printf("fread len=%i vaddr=%x buf[0..]=%02x %02x %02x\n",
137     (int)len, (int)vaddr, buf[0], buf[1], buf[2]); */
138    
139     if (len > 0) {
140     int len2 = 0;
141     uint64_t vaddr1 = vaddr &
142     ((1 << BITS_PER_MEMBLOCK) - 1);
143     uint64_t vaddr2 = (vaddr +
144     len) & ((1 << BITS_PER_MEMBLOCK) - 1);
145     if (vaddr2 < vaddr1) {
146     len2 = len - vaddr2;
147     m->cpus[0]->memory_rw(m->cpus[0], mem, vaddr,
148     &buf[0], len2, MEM_WRITE, NO_EXCEPTIONS);
149     }
150     m->cpus[0]->memory_rw(m->cpus[0], mem, vaddr + len2,
151     &buf[len2], len-len2, MEM_WRITE, NO_EXCEPTIONS);
152     } else {
153     if (flags & AOUT_FLAG_DECOSF1)
154     break;
155     else {
156 dpavlin 40 fprintf(stderr, "could not read from %s,"
157     " wanted to read %i bytes\n", filename,
158     (int) total_len);
159 dpavlin 38 exit(1);
160     }
161     }
162    
163     vaddr += len;
164     total_len -= len;
165     }
166    
167     if (symbsize != 0) {
168     struct aout_symbol *aout_symbol_ptr;
169     int i, n_symbols;
170     uint32_t type, addr, str_index;
171     uint32_t strings_len;
172     char *string_symbols;
173     off_t oldpos;
174    
175     debug("symbols: %i bytes @ 0x%x\n", symbsize, (int)ftello(f));
176     syms = malloc(symbsize);
177     if (syms == NULL) {
178     fprintf(stderr, "out of memory\n");
179     exit(1);
180     }
181     len = fread(syms, 1, symbsize, f);
182     if (len != symbsize) {
183     fprintf(stderr, "error reading symbols from %s\n",
184     filename);
185     exit(1);
186     }
187    
188     oldpos = ftello(f);
189     fseek(f, 0, SEEK_END);
190     strings_len = ftello(f) - oldpos;
191     fseek(f, oldpos, SEEK_SET);
192     debug("strings: %i bytes @ 0x%x\n", strings_len,(int)ftello(f));
193     string_symbols = malloc(strings_len);
194     if (string_symbols == NULL) {
195     fprintf(stderr, "out of memory\n");
196     exit(1);
197     }
198     fread(string_symbols, 1, strings_len, f);
199    
200     aout_symbol_ptr = (struct aout_symbol *) syms;
201     n_symbols = symbsize / sizeof(struct aout_symbol);
202     i = 0;
203     while (i < n_symbols) {
204     unencode(str_index, &aout_symbol_ptr[i].strindex,
205     uint32_t);
206     unencode(type, &aout_symbol_ptr[i].type, uint32_t);
207     unencode(addr, &aout_symbol_ptr[i].addr, uint32_t);
208    
209     /* debug("symbol type 0x%04x @ 0x%08x: %s\n",
210     type, addr, string_symbols + str_index); */
211    
212     if (type != 0 && addr != 0)
213     add_symbol_name(&m->symbol_context,
214     addr, 0, string_symbols + str_index, 0, -1);
215     i++;
216     }
217    
218     free(string_symbols);
219     free(syms);
220     }
221    
222     fclose(f);
223    
224     *entrypointp = (int32_t)entry;
225    
226     if (encoding == ELFDATA2LSB)
227     *byte_orderp = EMUL_LITTLE_ENDIAN;
228     else
229     *byte_orderp = EMUL_BIG_ENDIAN;
230    
231     n_executables_loaded ++;
232     }
233    

  ViewVC Help
Powered by ViewVC 1.1.26