24ec0d73b5
- introduce new call numbers, names, and field aliases; - initialize request messages to zero for all ABI calls; - format callnr.h in the same way as com.h; - redo call tables in both servers; - remove param.h namespace pollution in the servers; - make brk(2) go to VM directly, rather than through PM; - remove obsolete BRK, UTIME, and WAIT calls; - clean up path copying routine in VFS; - move remaining system calls from libminlib to libc; - correct some errno-related mistakes in libc routines. Change-Id: I2d8ec5d061cd7e0b30c51ffd77aa72ebf84e2565
63 lines
1.5 KiB
C
63 lines
1.5 KiB
C
/* execve() - basic program execution call */
|
|
|
|
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <stddef.h>
|
|
#include <minix/param.h>
|
|
#include <sys/exec_elf.h>
|
|
#include <sys/exec.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(execve, _execve)
|
|
#endif
|
|
|
|
int execve(const char *path, char * const *argv, char * const *envp)
|
|
{
|
|
message m;
|
|
size_t frame_size = 0; /* Size of the new initial stack. */
|
|
int argc = 0; /* Argument count. */
|
|
int envc = 0; /* Environment count */
|
|
char overflow = 0; /* No overflow yet. */
|
|
char *frame;
|
|
struct ps_strings *psp;
|
|
int vsp = 0; /* (virtual) Stack pointer in new address space. */
|
|
|
|
minix_stack_params(path, argv, envp, &frame_size, &overflow,
|
|
&argc, &envc);
|
|
|
|
/* The party is off if there is an overflow. */
|
|
if (overflow) {
|
|
errno = E2BIG;
|
|
return -1;
|
|
}
|
|
|
|
/* Allocate space for the stack frame. */
|
|
if ((frame = (char *) sbrk(frame_size)) == (char *) -1) {
|
|
errno = E2BIG;
|
|
return -1;
|
|
}
|
|
|
|
minix_stack_fill(path, argc, argv, envc, envp, frame_size, frame,
|
|
&vsp, &psp);
|
|
|
|
/* Clear unused message fields */
|
|
memset(&m, 0, sizeof(m));
|
|
|
|
/* We can finally make the system call. */
|
|
m.PM_EXEC_NAME = (char *) __UNCONST(path);
|
|
m.PM_EXEC_NAMELEN = strlen(path) + 1;
|
|
m.PM_EXEC_FRAME = frame;
|
|
m.PM_EXEC_FRAMELEN = frame_size;
|
|
m.PM_EXEC_PS_STR = (char *)(vsp + ((char *)psp - frame));
|
|
|
|
(void) _syscall(PM_PROC_NR, PM_EXEC, &m);
|
|
|
|
/* Failure, return the memory used for the frame and exit. */
|
|
(void) sbrk(-frame_size);
|
|
|
|
return -1;
|
|
}
|