move hw cursor pos from cirrus to vga
[qemu.git] / include / hw / elf_ops.h
bloba517753a6fe1b8efe043ac488cd42a4bd8517d71
1 static void glue(bswap_ehdr, SZ)(struct elfhdr *ehdr)
3 bswap16s(&ehdr->e_type); /* Object file type */
4 bswap16s(&ehdr->e_machine); /* Architecture */
5 bswap32s(&ehdr->e_version); /* Object file version */
6 bswapSZs(&ehdr->e_entry); /* Entry point virtual address */
7 bswapSZs(&ehdr->e_phoff); /* Program header table file offset */
8 bswapSZs(&ehdr->e_shoff); /* Section header table file offset */
9 bswap32s(&ehdr->e_flags); /* Processor-specific flags */
10 bswap16s(&ehdr->e_ehsize); /* ELF header size in bytes */
11 bswap16s(&ehdr->e_phentsize); /* Program header table entry size */
12 bswap16s(&ehdr->e_phnum); /* Program header table entry count */
13 bswap16s(&ehdr->e_shentsize); /* Section header table entry size */
14 bswap16s(&ehdr->e_shnum); /* Section header table entry count */
15 bswap16s(&ehdr->e_shstrndx); /* Section header string table index */
18 static void glue(bswap_phdr, SZ)(struct elf_phdr *phdr)
20 bswap32s(&phdr->p_type); /* Segment type */
21 bswapSZs(&phdr->p_offset); /* Segment file offset */
22 bswapSZs(&phdr->p_vaddr); /* Segment virtual address */
23 bswapSZs(&phdr->p_paddr); /* Segment physical address */
24 bswapSZs(&phdr->p_filesz); /* Segment size in file */
25 bswapSZs(&phdr->p_memsz); /* Segment size in memory */
26 bswap32s(&phdr->p_flags); /* Segment flags */
27 bswapSZs(&phdr->p_align); /* Segment alignment */
30 static void glue(bswap_shdr, SZ)(struct elf_shdr *shdr)
32 bswap32s(&shdr->sh_name);
33 bswap32s(&shdr->sh_type);
34 bswapSZs(&shdr->sh_flags);
35 bswapSZs(&shdr->sh_addr);
36 bswapSZs(&shdr->sh_offset);
37 bswapSZs(&shdr->sh_size);
38 bswap32s(&shdr->sh_link);
39 bswap32s(&shdr->sh_info);
40 bswapSZs(&shdr->sh_addralign);
41 bswapSZs(&shdr->sh_entsize);
44 static void glue(bswap_sym, SZ)(struct elf_sym *sym)
46 bswap32s(&sym->st_name);
47 bswapSZs(&sym->st_value);
48 bswapSZs(&sym->st_size);
49 bswap16s(&sym->st_shndx);
52 static struct elf_shdr *glue(find_section, SZ)(struct elf_shdr *shdr_table,
53 int n, int type)
55 int i;
56 for(i=0;i<n;i++) {
57 if (shdr_table[i].sh_type == type)
58 return shdr_table + i;
60 return NULL;
63 static int glue(symfind, SZ)(const void *s0, const void *s1)
65 hwaddr addr = *(hwaddr *)s0;
66 struct elf_sym *sym = (struct elf_sym *)s1;
67 int result = 0;
68 if (addr < sym->st_value) {
69 result = -1;
70 } else if (addr >= sym->st_value + sym->st_size) {
71 result = 1;
73 return result;
76 static const char *glue(lookup_symbol, SZ)(struct syminfo *s,
77 hwaddr orig_addr)
79 struct elf_sym *syms = glue(s->disas_symtab.elf, SZ);
80 struct elf_sym *sym;
82 sym = bsearch(&orig_addr, syms, s->disas_num_syms, sizeof(*syms),
83 glue(symfind, SZ));
84 if (sym != NULL) {
85 return s->disas_strtab + sym->st_name;
88 return "";
91 static int glue(symcmp, SZ)(const void *s0, const void *s1)
93 struct elf_sym *sym0 = (struct elf_sym *)s0;
94 struct elf_sym *sym1 = (struct elf_sym *)s1;
95 return (sym0->st_value < sym1->st_value)
96 ? -1
97 : ((sym0->st_value > sym1->st_value) ? 1 : 0);
100 static int glue(load_symbols, SZ)(struct elfhdr *ehdr, int fd, int must_swab,
101 int clear_lsb)
103 struct elf_shdr *symtab, *strtab, *shdr_table = NULL;
104 struct elf_sym *syms = NULL;
105 struct syminfo *s;
106 int nsyms, i;
107 char *str = NULL;
109 shdr_table = load_at(fd, ehdr->e_shoff,
110 sizeof(struct elf_shdr) * ehdr->e_shnum);
111 if (!shdr_table)
112 return -1;
114 if (must_swab) {
115 for (i = 0; i < ehdr->e_shnum; i++) {
116 glue(bswap_shdr, SZ)(shdr_table + i);
120 symtab = glue(find_section, SZ)(shdr_table, ehdr->e_shnum, SHT_SYMTAB);
121 if (!symtab)
122 goto fail;
123 syms = load_at(fd, symtab->sh_offset, symtab->sh_size);
124 if (!syms)
125 goto fail;
127 nsyms = symtab->sh_size / sizeof(struct elf_sym);
129 i = 0;
130 while (i < nsyms) {
131 if (must_swab)
132 glue(bswap_sym, SZ)(&syms[i]);
133 /* We are only interested in function symbols.
134 Throw everything else away. */
135 if (syms[i].st_shndx == SHN_UNDEF ||
136 syms[i].st_shndx >= SHN_LORESERVE ||
137 ELF_ST_TYPE(syms[i].st_info) != STT_FUNC) {
138 nsyms--;
139 if (i < nsyms) {
140 syms[i] = syms[nsyms];
142 continue;
144 if (clear_lsb) {
145 /* The bottom address bit marks a Thumb or MIPS16 symbol. */
146 syms[i].st_value &= ~(glue(glue(Elf, SZ), _Addr))1;
148 i++;
150 syms = g_realloc(syms, nsyms * sizeof(*syms));
152 qsort(syms, nsyms, sizeof(*syms), glue(symcmp, SZ));
153 for (i = 0; i < nsyms - 1; i++) {
154 if (syms[i].st_size == 0) {
155 syms[i].st_size = syms[i + 1].st_value - syms[i].st_value;
159 /* String table */
160 if (symtab->sh_link >= ehdr->e_shnum)
161 goto fail;
162 strtab = &shdr_table[symtab->sh_link];
164 str = load_at(fd, strtab->sh_offset, strtab->sh_size);
165 if (!str)
166 goto fail;
168 /* Commit */
169 s = g_malloc0(sizeof(*s));
170 s->lookup_symbol = glue(lookup_symbol, SZ);
171 glue(s->disas_symtab.elf, SZ) = syms;
172 s->disas_num_syms = nsyms;
173 s->disas_strtab = str;
174 s->next = syminfos;
175 syminfos = s;
176 g_free(shdr_table);
177 return 0;
178 fail:
179 g_free(syms);
180 g_free(str);
181 g_free(shdr_table);
182 return -1;
185 static int glue(load_elf, SZ)(const char *name, int fd,
186 uint64_t (*translate_fn)(void *, uint64_t),
187 void *translate_opaque,
188 int must_swab, uint64_t *pentry,
189 uint64_t *lowaddr, uint64_t *highaddr,
190 int elf_machine, int clear_lsb)
192 struct elfhdr ehdr;
193 struct elf_phdr *phdr = NULL, *ph;
194 int size, i, total_size;
195 elf_word mem_size, file_size;
196 uint64_t addr, low = (uint64_t)-1, high = 0;
197 uint8_t *data = NULL;
198 char label[128];
199 int ret = ELF_LOAD_FAILED;
201 if (read(fd, &ehdr, sizeof(ehdr)) != sizeof(ehdr))
202 goto fail;
203 if (must_swab) {
204 glue(bswap_ehdr, SZ)(&ehdr);
207 switch (elf_machine) {
208 case EM_PPC64:
209 if (EM_PPC64 != ehdr.e_machine)
210 if (EM_PPC != ehdr.e_machine) {
211 ret = ELF_LOAD_WRONG_ARCH;
212 goto fail;
214 break;
215 case EM_X86_64:
216 if (EM_X86_64 != ehdr.e_machine)
217 if (EM_386 != ehdr.e_machine) {
218 ret = ELF_LOAD_WRONG_ARCH;
219 goto fail;
221 break;
222 case EM_MICROBLAZE:
223 if (EM_MICROBLAZE != ehdr.e_machine)
224 if (EM_MICROBLAZE_OLD != ehdr.e_machine) {
225 ret = ELF_LOAD_WRONG_ARCH;
226 goto fail;
228 break;
229 default:
230 if (elf_machine != ehdr.e_machine) {
231 ret = ELF_LOAD_WRONG_ARCH;
232 goto fail;
236 if (pentry)
237 *pentry = (uint64_t)(elf_sword)ehdr.e_entry;
239 glue(load_symbols, SZ)(&ehdr, fd, must_swab, clear_lsb);
241 size = ehdr.e_phnum * sizeof(phdr[0]);
242 lseek(fd, ehdr.e_phoff, SEEK_SET);
243 phdr = g_malloc0(size);
244 if (!phdr)
245 goto fail;
246 if (read(fd, phdr, size) != size)
247 goto fail;
248 if (must_swab) {
249 for(i = 0; i < ehdr.e_phnum; i++) {
250 ph = &phdr[i];
251 glue(bswap_phdr, SZ)(ph);
255 total_size = 0;
256 for(i = 0; i < ehdr.e_phnum; i++) {
257 ph = &phdr[i];
258 if (ph->p_type == PT_LOAD) {
259 mem_size = ph->p_memsz; /* Size of the ROM */
260 file_size = ph->p_filesz; /* Size of the allocated data */
261 data = g_malloc0(file_size);
262 if (ph->p_filesz > 0) {
263 if (lseek(fd, ph->p_offset, SEEK_SET) < 0) {
264 goto fail;
266 if (read(fd, data, file_size) != file_size) {
267 goto fail;
270 /* address_offset is hack for kernel images that are
271 linked at the wrong physical address. */
272 if (translate_fn) {
273 addr = translate_fn(translate_opaque, ph->p_paddr);
274 } else {
275 addr = ph->p_paddr;
278 /* the entry pointer in the ELF header is a virtual
279 * address, if the text segments paddr and vaddr differ
280 * we need to adjust the entry */
281 if (pentry && !translate_fn &&
282 ph->p_vaddr != ph->p_paddr &&
283 ehdr.e_entry >= ph->p_vaddr &&
284 ehdr.e_entry < ph->p_vaddr + ph->p_filesz &&
285 ph->p_flags & PF_X) {
286 *pentry = ehdr.e_entry - ph->p_vaddr + ph->p_paddr;
289 snprintf(label, sizeof(label), "phdr #%d: %s", i, name);
291 /* rom_add_elf_program() seize the ownership of 'data' */
292 rom_add_elf_program(label, data, file_size, mem_size, addr);
294 total_size += mem_size;
295 if (addr < low)
296 low = addr;
297 if ((addr + mem_size) > high)
298 high = addr + mem_size;
300 data = NULL;
303 g_free(phdr);
304 if (lowaddr)
305 *lowaddr = (uint64_t)(elf_sword)low;
306 if (highaddr)
307 *highaddr = (uint64_t)(elf_sword)high;
308 return total_size;
309 fail:
310 g_free(data);
311 g_free(phdr);
312 return ret;