040362e379
. 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/)
60 lines
1.4 KiB
C
60 lines
1.4 KiB
C
|
|
#define _SYSTEM 1
|
|
|
|
#include <minix/callnr.h>
|
|
#include <minix/com.h>
|
|
#include <minix/config.h>
|
|
#include <minix/const.h>
|
|
#include <minix/ds.h>
|
|
#include <minix/endpoint.h>
|
|
#include <minix/keymap.h>
|
|
#include <minix/minlib.h>
|
|
#include <minix/type.h>
|
|
#include <minix/ipc.h>
|
|
#include <minix/sysutil.h>
|
|
#include <minix/syslib.h>
|
|
#include <minix/bitmap.h>
|
|
#include <sys/signal.h>
|
|
|
|
#include <errno.h>
|
|
#include <env.h>
|
|
|
|
#include "glo.h"
|
|
#include "vm.h"
|
|
#include "proto.h"
|
|
#include "util.h"
|
|
|
|
#define DATA_CHANGED 1 /* flag value when data segment size changed */
|
|
#define STACK_CHANGED 2 /* flag value when stack size changed */
|
|
|
|
/*===========================================================================*
|
|
* do_push_sig *
|
|
*===========================================================================*/
|
|
int do_push_sig(message *msg)
|
|
{
|
|
int r, n;
|
|
endpoint_t ep;
|
|
vir_bytes sp;
|
|
struct vmproc *vmp;
|
|
|
|
ep = msg->VMPS_ENDPOINT;
|
|
|
|
if((r=vm_isokendpt(ep, &n)) != OK) {
|
|
printf("VM: bogus endpoint %d from %d\n", ep, msg->m_source);
|
|
return r;
|
|
}
|
|
vmp = &vmproc[n];
|
|
|
|
if ((r=get_stack_ptr(ep, &sp)) != OK)
|
|
panic("couldn't get new stack pointer (for sig): %d", r);
|
|
|
|
/* Save old SP for caller */
|
|
msg->VMPS_OLD_SP = (char *) sp;
|
|
|
|
/* Make room for the sigcontext and sigframe struct. */
|
|
sp -= sizeof(struct sigcontext)
|
|
+ 3 * sizeof(char *) + 2 * sizeof(int);
|
|
|
|
return OK;
|
|
}
|
|
|