#ifdef TOSTOOLS
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <a_out.h>
#define MALLOC(x) malloc(x)
#else
#include <lib/libsa/stand.h>
#include <atari_stand.h>
#include <libkern.h>
#include <sys/exec_aout.h>
#define MALLOC(x) alloc(x)
#endif
#include "libtos.h"
#include "kparamb.h"
#include "tosdefs.h"
#include "cread.h"
#ifdef TOSTOOLS
#ifdef AOUT_LDPGSZ
#undef AOUT_LDPGSZ
#endif
#define AOUT_LDPGSZ (8*1024)
#endif
int
aout_load(int fd, osdsc_t *od, char **errp, int loadsyms)
{
long textsz, stringsz;
struct exec ehdr;
int err;
*errp = NULL;
lseek(fd, (off_t)0, SEEK_SET);
if (read(fd, (char *)&ehdr, sizeof(ehdr)) != sizeof(ehdr))
return -1;
#ifdef TOSTOOLS
if ((ehdr.a_magic & 0xffff) != NMAGIC)
return -1;
#else
if ((N_GETMAGIC(ehdr) != NMAGIC) && (N_GETMAGIC(ehdr) != OMAGIC))
return -1;
#endif
textsz = (ehdr.a_text + AOUT_LDPGSZ - 1) & ~(AOUT_LDPGSZ - 1);
od->k_esym = 0;
od->ksize = textsz + ehdr.a_data + ehdr.a_bss;
od->kentry = ehdr.a_entry;
if (loadsyms && ehdr.a_syms) {
err = 1;
if (lseek(fd, ehdr.a_text+ehdr.a_data+ehdr.a_syms+sizeof(ehdr),
0) <= 0)
goto error;
err = 2;
if (read(fd, (char *)&stringsz, sizeof(long)) != sizeof(long))
goto error;
err = 3;
if (lseek(fd, sizeof(ehdr), 0) <= 0)
goto error;
od->ksize += ehdr.a_syms + sizeof(long) + stringsz;
}
err = 4;
if ((od->kstart = (u_char *)MALLOC(od->ksize)) == NULL)
goto error;
err = 5;
if ((read(fd, (char *)(od->kstart), ehdr.a_text) != ehdr.a_text)
||(read(fd,(char *)(od->kstart+textsz),ehdr.a_data) != ehdr.a_data))
goto error;
memset(od->kstart + textsz + ehdr.a_data, 0, ehdr.a_bss);
if (loadsyms && ehdr.a_syms) {
long *p;
p = (long *)((od->kstart) + textsz + ehdr.a_data + ehdr.a_bss);
*p++ = ehdr.a_syms;
err = 6;
if (read(fd, (char *)p, ehdr.a_syms) != ehdr.a_syms)
goto error;
p = (long *)((char *)p + ehdr.a_syms);
err = 7;
if (read(fd, (char *)p, stringsz) != stringsz)
goto error;
od->k_esym = (long)((char *)p-(char *)od->kstart +stringsz);
}
return 0;
error:
#ifdef TOSTOOLS
{
static char *errs[] = {
"Cannot seek to string table",
"Cannot read string-table size",
"Cannot seek back to text start",
"Cannot malloc kernel image space",
"Unable to read kernel image",
"Cannot read symbol table",
"Cannot read string table"
};
*errp = errs[err];
}
#endif
return err;
}