exec() cleanup, generalization, improvement
. make exec() callers (i.e. vfs and rs) determine the memory layout by explicitly reserving regions using mmap() calls on behalf of the exec()ing process, i.e. handling all of the exec logic, thereby eliminating all special exec() knowledge from VM. . the new procedure is: clear the exec()ing process first, then call third-party mmap()s to reserve memory, then copy the executable file section contents in, all using callbacks tailored to the caller's way of starting an executable . i.e. no more explicit EXEC_NEWMEM-style calls in PM or VM as with rigid 2-section arguments . this naturally allows generalizing exec() by simply loading all ELF sections . drop/merge of lots of duplicate exec() code into libexec . not copying the code sections to vfs and into the executable again is a measurable performance improvement (about 3.3% faster for 'make' in src/servers/)
This commit is contained in:
@@ -2,13 +2,18 @@
|
||||
|
||||
#include <minix/type.h>
|
||||
#include <minix/const.h>
|
||||
#include <minix/com.h>
|
||||
#include <minix/syslib.h>
|
||||
#include <sys/param.h>
|
||||
#include <sys/mman.h>
|
||||
#include <assert.h>
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
#include <libexec.h>
|
||||
#include <string.h>
|
||||
#include <machine/elf.h>
|
||||
#include <machine/vmparam.h>
|
||||
#include <machine/memory.h>
|
||||
|
||||
/* For verbose logging */
|
||||
#define ELF_DEBUG 0
|
||||
@@ -18,9 +23,9 @@
|
||||
|
||||
#define SECTOR_SIZE 512
|
||||
|
||||
static int check_header(const Elf_Ehdr *hdr);
|
||||
static int check_header(Elf_Ehdr *hdr);
|
||||
|
||||
static int elf_sane(const Elf_Ehdr *hdr)
|
||||
static int elf_sane(Elf_Ehdr *hdr)
|
||||
{
|
||||
if (check_header(hdr) != OK) {
|
||||
return 0;
|
||||
@@ -41,7 +46,7 @@ static int elf_sane(const Elf_Ehdr *hdr)
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int elf_ph_sane(const Elf_Phdr *phdr)
|
||||
static int elf_ph_sane(Elf_Phdr *phdr)
|
||||
{
|
||||
if (rounddown((uintptr_t)phdr, sizeof(Elf_Addr)) != (uintptr_t)phdr) {
|
||||
return 0;
|
||||
@@ -49,17 +54,17 @@ static int elf_ph_sane(const Elf_Phdr *phdr)
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int elf_unpack(const char *exec_hdr,
|
||||
int hdr_len, const Elf_Ehdr **hdr, const Elf_Phdr **phdr)
|
||||
static int elf_unpack(char *exec_hdr,
|
||||
int hdr_len, Elf_Ehdr **hdr, Elf_Phdr **phdr)
|
||||
{
|
||||
*hdr = (const Elf_Ehdr *)exec_hdr;
|
||||
*hdr = (Elf_Ehdr *) exec_hdr;
|
||||
if(!elf_sane(*hdr)) {
|
||||
#if ELF_DEBUG
|
||||
printf("elf_sane failed\n");
|
||||
#endif
|
||||
return ENOEXEC;
|
||||
}
|
||||
*phdr = (const Elf_Phdr *)(exec_hdr + (*hdr)->e_phoff);
|
||||
*phdr = (Elf_Phdr *)(exec_hdr + (*hdr)->e_phoff);
|
||||
if(!elf_ph_sane(*phdr)) {
|
||||
#if ELF_DEBUG
|
||||
printf("elf_ph_sane failed\n");
|
||||
@@ -73,23 +78,23 @@ static int elf_unpack(const char *exec_hdr,
|
||||
}
|
||||
|
||||
int read_header_elf(
|
||||
const char *exec_hdr, /* executable header */
|
||||
int hdr_len, /* significant bytes in exec_hdr */
|
||||
vir_bytes *text_vaddr, /* text virtual address */
|
||||
phys_bytes *text_paddr, /* text physical address */
|
||||
vir_bytes *text_filebytes, /* text segment size (in the file) */
|
||||
vir_bytes *text_membytes, /* text segment size (in memory) */
|
||||
vir_bytes *data_vaddr, /* data virtual address */
|
||||
phys_bytes *data_paddr, /* data physical address */
|
||||
vir_bytes *data_filebytes, /* data segment size (in the file) */
|
||||
vir_bytes *data_membytes, /* data segment size (in memory) */
|
||||
vir_bytes *pc, /* program entry point (initial PC) */
|
||||
off_t *text_offset, /* file offset to text segment */
|
||||
off_t *data_offset /* file offset to data segment */
|
||||
char *exec_hdr, /* executable header */
|
||||
int hdr_len, /* significant bytes in exec_hdr */
|
||||
vir_bytes *text_vaddr, /* text virtual address */
|
||||
phys_bytes *text_paddr, /* text physical address */
|
||||
vir_bytes *text_filebytes, /* text segment size (in the file) */
|
||||
vir_bytes *text_membytes, /* text segment size (in memory) */
|
||||
vir_bytes *data_vaddr, /* data virtual address */
|
||||
phys_bytes *data_paddr, /* data physical address */
|
||||
vir_bytes *data_filebytes, /* data segment size (in the file) */
|
||||
vir_bytes *data_membytes, /* data segment size (in memory) */
|
||||
vir_bytes *pc, /* program entry point (initial PC) */
|
||||
off_t *text_offset, /* file offset to text segment */
|
||||
off_t *data_offset /* file offset to data segment */
|
||||
)
|
||||
{
|
||||
const Elf_Ehdr *hdr = NULL;
|
||||
const Elf_Phdr *phdr = NULL;
|
||||
Elf_Ehdr *hdr = NULL;
|
||||
Elf_Phdr *phdr = NULL;
|
||||
unsigned long seg_filebytes, seg_membytes;
|
||||
int e, i = 0;
|
||||
|
||||
@@ -101,9 +106,9 @@ int read_header_elf(
|
||||
|
||||
if((e=elf_unpack(exec_hdr, hdr_len, &hdr, &phdr)) != OK) {
|
||||
#if ELF_DEBUG
|
||||
printf("elf_unpack failed\n");
|
||||
printf("elf_unpack failed\n");
|
||||
#endif
|
||||
return e;
|
||||
return e;
|
||||
}
|
||||
|
||||
#if ELF_DEBUG
|
||||
@@ -120,30 +125,30 @@ int read_header_elf(
|
||||
for (i = 0; i < hdr->e_phnum; i++) {
|
||||
switch (phdr[i].p_type) {
|
||||
case PT_LOAD:
|
||||
if (phdr[i].p_memsz == 0)
|
||||
break;
|
||||
seg_filebytes = phdr[i].p_filesz;
|
||||
seg_membytes = round_page(phdr[i].p_memsz + phdr[i].p_vaddr -
|
||||
trunc_page(phdr[i].p_vaddr));
|
||||
if (phdr[i].p_memsz == 0)
|
||||
break;
|
||||
seg_filebytes = phdr[i].p_filesz;
|
||||
seg_membytes = round_page(phdr[i].p_memsz + phdr[i].p_vaddr -
|
||||
trunc_page(phdr[i].p_vaddr));
|
||||
|
||||
if (hdr->e_entry >= phdr[i].p_vaddr &&
|
||||
hdr->e_entry < (phdr[i].p_vaddr + phdr[i].p_memsz)) {
|
||||
*text_vaddr = phdr[i].p_vaddr;
|
||||
*text_paddr = phdr[i].p_paddr;
|
||||
*text_filebytes = seg_filebytes;
|
||||
*text_membytes = seg_membytes;
|
||||
*pc = (vir_bytes)hdr->e_entry;
|
||||
*text_offset = phdr[i].p_offset;
|
||||
} else {
|
||||
*data_vaddr = phdr[i].p_vaddr;
|
||||
*data_paddr = phdr[i].p_paddr;
|
||||
*data_filebytes = seg_filebytes;
|
||||
*data_membytes = seg_membytes;
|
||||
*data_offset = phdr[i].p_offset;
|
||||
}
|
||||
break;
|
||||
if (hdr->e_entry >= phdr[i].p_vaddr &&
|
||||
hdr->e_entry < (phdr[i].p_vaddr + phdr[i].p_memsz)) {
|
||||
*text_vaddr = phdr[i].p_vaddr;
|
||||
*text_paddr = phdr[i].p_paddr;
|
||||
*text_filebytes = seg_filebytes;
|
||||
*text_membytes = seg_membytes;
|
||||
*pc = (vir_bytes)hdr->e_entry;
|
||||
*text_offset = phdr[i].p_offset;
|
||||
} else {
|
||||
*data_vaddr = phdr[i].p_vaddr;
|
||||
*data_paddr = phdr[i].p_paddr;
|
||||
*data_filebytes = seg_filebytes;
|
||||
*data_membytes = seg_membytes;
|
||||
*data_offset = phdr[i].p_offset;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -169,7 +174,7 @@ int read_header_elf(
|
||||
(ehdr).e_ident[EI_MAG2] == ELFMAG2 && \
|
||||
(ehdr).e_ident[EI_MAG3] == ELFMAG3)
|
||||
|
||||
static int check_header(const Elf_Ehdr *hdr)
|
||||
static int check_header(Elf_Ehdr *hdr)
|
||||
{
|
||||
if (!IS_ELF(*hdr) ||
|
||||
hdr->e_ident[EI_DATA] != ELF_TARG_DATA ||
|
||||
@@ -181,46 +186,16 @@ static int check_header(const Elf_Ehdr *hdr)
|
||||
return OK;
|
||||
}
|
||||
|
||||
int elf_phdr(const char *exec_hdr, int hdr_len, vir_bytes *ret_phdr)
|
||||
{
|
||||
const Elf_Ehdr *hdr = NULL;
|
||||
const Elf_Phdr *phdr = NULL;
|
||||
int e, i, have_computed_phdr = 1;
|
||||
|
||||
if((e=elf_unpack(exec_hdr, hdr_len, &hdr, &phdr)) != OK) return e;
|
||||
|
||||
for (i = 0; i < hdr->e_phnum; i++) {
|
||||
switch (phdr[i].p_type) {
|
||||
case PT_LOAD:
|
||||
/* compute phdr based on this heuristic, to be used
|
||||
* if there is no PT_PHDR
|
||||
*/
|
||||
if(phdr[i].p_offset == 0) {
|
||||
*ret_phdr = phdr[i].p_vaddr + hdr->e_phoff;
|
||||
have_computed_phdr = 1;
|
||||
}
|
||||
break;
|
||||
case PT_PHDR:
|
||||
*ret_phdr = phdr[i].p_vaddr;
|
||||
return OK;
|
||||
default:
|
||||
break;;
|
||||
}
|
||||
}
|
||||
if(have_computed_phdr) return OK;
|
||||
return ENOENT;
|
||||
}
|
||||
|
||||
/* Return >0 if there is an ELF interpreter (i.e. it is a dynamically linked
|
||||
* executable) and we could extract it successfully.
|
||||
* Return 0 if there isn't one.
|
||||
* Return <0 on error.
|
||||
*/
|
||||
int elf_has_interpreter(const char *exec_hdr, /* executable header */
|
||||
int elf_has_interpreter(char *exec_hdr, /* executable header */
|
||||
int hdr_len, char *interp, int maxsz)
|
||||
{
|
||||
const Elf_Ehdr *hdr = NULL;
|
||||
const Elf_Phdr *phdr = NULL;
|
||||
Elf_Ehdr *hdr = NULL;
|
||||
Elf_Phdr *phdr = NULL;
|
||||
int e, i;
|
||||
|
||||
if((e=elf_unpack(exec_hdr, hdr_len, &hdr, &phdr)) != OK) return e;
|
||||
@@ -243,3 +218,95 @@ int elf_has_interpreter(const char *exec_hdr, /* executable header */
|
||||
return 0;
|
||||
}
|
||||
|
||||
int libexec_load_elf(struct exec_info *execi)
|
||||
{
|
||||
int r;
|
||||
Elf_Ehdr *hdr = NULL;
|
||||
Elf_Phdr *phdr = NULL;
|
||||
int e, i = 0;
|
||||
int first = 1;
|
||||
vir_bytes startv, stacklow;
|
||||
|
||||
assert(execi != NULL);
|
||||
assert(execi->hdr != NULL);
|
||||
|
||||
if((e=elf_unpack(execi->hdr, execi->hdr_len, &hdr, &phdr)) != OK) {
|
||||
printf("libexec_load_elf: elf_unpack failed\n");
|
||||
return e;
|
||||
}
|
||||
|
||||
/* this function can load the dynamic linker, but that
|
||||
* shouldn't require an interpreter itself.
|
||||
*/
|
||||
i = elf_has_interpreter(execi->hdr, execi->hdr_len, NULL, 0);
|
||||
if(i > 0) {
|
||||
printf("libexec: cannot load dynamically linked executable\n");
|
||||
return ENOEXEC;
|
||||
}
|
||||
|
||||
/* Make VM forget about all existing memory in process. */
|
||||
vm_procctl(execi->proc_e, VMPPARAM_CLEAR);
|
||||
|
||||
execi->stack_size = roundup(execi->stack_size, PAGE_SIZE);
|
||||
execi->stack_high = VM_STACKTOP;
|
||||
assert(!(VM_STACKTOP % PAGE_SIZE));
|
||||
stacklow = execi->stack_high - execi->stack_size;
|
||||
|
||||
for (i = 0; i < hdr->e_phnum; i++) {
|
||||
vir_bytes seg_membytes, page_offset, vaddr;
|
||||
Elf_Phdr *ph = &phdr[i];
|
||||
if (ph->p_type != PT_LOAD || ph->p_memsz == 0) continue;
|
||||
#if 0
|
||||
printf("index %d memsz 0x%lx vaddr 0x%lx\n", i, ph->p_memsz, ph->p_vaddr);
|
||||
#endif
|
||||
vaddr = ph->p_vaddr;
|
||||
seg_membytes = ph->p_memsz;
|
||||
page_offset = vaddr % PAGE_SIZE;
|
||||
vaddr -= page_offset;
|
||||
seg_membytes += page_offset;
|
||||
seg_membytes = roundup(seg_membytes, PAGE_SIZE);
|
||||
if(first || startv > vaddr) startv = vaddr;
|
||||
first = 0;
|
||||
|
||||
#if 0
|
||||
printf("libexec_load_elf: mmap 0x%lx bytes at 0x%lx\n",
|
||||
seg_membytes, vaddr);
|
||||
#endif
|
||||
|
||||
/* Tell VM to make us some memory */
|
||||
if(minix_mmap_for(execi->proc_e, (void *) vaddr, seg_membytes,
|
||||
PROT_READ|PROT_WRITE|PROT_EXEC,
|
||||
MAP_ANON|MAP_PREALLOC|MAP_FIXED, -1, 0) == MAP_FAILED) {
|
||||
printf("libexec_load_elf: mmap of 0x%lx bytes failed\n", seg_membytes);
|
||||
vm_procctl(execi->proc_e, VMPPARAM_CLEAR);
|
||||
return ENOMEM;
|
||||
}
|
||||
|
||||
/* Copy executable section into it */
|
||||
if(execi->load(execi, ph->p_offset, ph->p_vaddr, ph->p_filesz) != OK) {
|
||||
printf("libexec_load_elf: load callback failed\n");
|
||||
vm_procctl(execi->proc_e, VMPPARAM_CLEAR);
|
||||
return ENOMEM;
|
||||
}
|
||||
}
|
||||
|
||||
/* Make it a stack */
|
||||
if(minix_mmap_for(execi->proc_e, (void *) stacklow, execi->stack_size,
|
||||
PROT_READ|PROT_WRITE|PROT_EXEC,
|
||||
MAP_ANON|MAP_FIXED, -1, 0) == MAP_FAILED) {
|
||||
printf("libexec_load_elf: mmap for stack failed\n");
|
||||
vm_procctl(execi->proc_e, VMPPARAM_CLEAR);
|
||||
return ENOMEM;
|
||||
}
|
||||
|
||||
/* record entry point and lowest load vaddr for caller */
|
||||
execi->pc = hdr->e_entry;
|
||||
execi->load_base = startv;
|
||||
|
||||
if((r = libexec_pm_newexec(execi->proc_e, execi)) != OK) {
|
||||
printf("libexec_load_elf: pm_newexec failed: %d\n", r);
|
||||
}
|
||||
|
||||
return(r);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user