1993-12-20 16:16:46 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1993, David Greenman
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
1995-09-08 13:24:33 +00:00
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
1993-12-20 16:16:46 +00:00
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1996-05-02 10:43:17 +00:00
|
|
|
* $Id: imgact_aout.c,v 1.27 1996/05/01 02:42:41 bde Exp $
|
1993-12-20 16:16:46 +00:00
|
|
|
*/
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/resourcevar.h>
|
|
|
|
#include <sys/exec.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/imgact.h>
|
1994-09-24 21:37:01 +00:00
|
|
|
#include <sys/imgact_aout.h>
|
1994-05-25 09:21:21 +00:00
|
|
|
#include <sys/kernel.h>
|
1996-05-01 02:43:13 +00:00
|
|
|
#include <sys/proc.h>
|
1994-08-24 11:52:21 +00:00
|
|
|
#include <sys/sysent.h>
|
1996-05-01 02:43:13 +00:00
|
|
|
#include <sys/vnode.h>
|
1993-12-20 16:16:46 +00:00
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
#include <vm/vm.h>
|
1995-12-07 12:48:31 +00:00
|
|
|
#include <vm/vm_param.h>
|
|
|
|
#include <vm/vm_prot.h>
|
|
|
|
#include <vm/lock.h>
|
|
|
|
#include <vm/pmap.h>
|
|
|
|
#include <vm/vm_map.h>
|
|
|
|
#include <vm/vm_extern.h>
|
1993-12-20 16:16:46 +00:00
|
|
|
|
1995-12-02 16:32:03 +00:00
|
|
|
static int exec_aout_imgact __P((struct image_params *imgp));
|
|
|
|
|
|
|
|
static int
|
1995-11-06 12:52:37 +00:00
|
|
|
exec_aout_imgact(imgp)
|
|
|
|
struct image_params *imgp;
|
1993-12-20 16:16:46 +00:00
|
|
|
{
|
1995-11-06 12:52:37 +00:00
|
|
|
struct exec *a_out = (struct exec *) imgp->image_header;
|
|
|
|
struct vmspace *vmspace = imgp->proc->p_vmspace;
|
1996-03-19 15:03:00 +00:00
|
|
|
vm_offset_t vmaddr;
|
|
|
|
unsigned long virtual_offset;
|
1995-12-11 04:58:34 +00:00
|
|
|
unsigned long file_offset;
|
1993-12-20 16:16:46 +00:00
|
|
|
unsigned long bss_size;
|
1994-09-25 19:34:02 +00:00
|
|
|
int error;
|
1993-12-20 16:16:46 +00:00
|
|
|
|
1995-02-14 19:23:22 +00:00
|
|
|
/*
|
|
|
|
* Linux and *BSD binaries look very much alike,
|
1995-05-30 08:16:23 +00:00
|
|
|
* only the machine id is different:
|
1995-06-11 19:33:05 +00:00
|
|
|
* 0x64 for Linux, 0x86 for *BSD, 0x00 for BSDI.
|
1996-03-03 20:06:53 +00:00
|
|
|
* NetBSD is in network byte order.. ugh.
|
1995-02-14 19:23:22 +00:00
|
|
|
*/
|
1995-06-11 19:33:05 +00:00
|
|
|
if (((a_out->a_magic >> 16) & 0xff) != 0x86 &&
|
1996-03-03 20:06:53 +00:00
|
|
|
((a_out->a_magic >> 16) & 0xff) != 0 &&
|
|
|
|
((((int)ntohl(a_out->a_magic)) >> 16) & 0xff) != 0x86)
|
1995-06-11 19:33:05 +00:00
|
|
|
return -1;
|
1995-02-14 19:23:22 +00:00
|
|
|
|
1993-12-20 16:16:46 +00:00
|
|
|
/*
|
|
|
|
* Set file/virtual offset based on a.out variant.
|
|
|
|
* We do two cases: host byte order and network byte order
|
|
|
|
* (for NetBSD compatibility)
|
|
|
|
*/
|
|
|
|
switch ((int)(a_out->a_magic & 0xffff)) {
|
|
|
|
case ZMAGIC:
|
|
|
|
virtual_offset = 0;
|
|
|
|
if (a_out->a_text) {
|
1996-05-02 10:43:17 +00:00
|
|
|
file_offset = PAGE_SIZE;
|
1993-12-20 16:16:46 +00:00
|
|
|
} else {
|
|
|
|
/* Bill's "screwball mode" */
|
|
|
|
file_offset = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case QMAGIC:
|
1996-05-02 10:43:17 +00:00
|
|
|
virtual_offset = PAGE_SIZE;
|
1993-12-20 16:16:46 +00:00
|
|
|
file_offset = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* NetBSD compatibility */
|
|
|
|
switch ((int)(ntohl(a_out->a_magic) & 0xffff)) {
|
|
|
|
case ZMAGIC:
|
|
|
|
case QMAGIC:
|
1996-05-02 10:43:17 +00:00
|
|
|
virtual_offset = PAGE_SIZE;
|
1993-12-20 16:16:46 +00:00
|
|
|
file_offset = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1996-05-02 10:43:17 +00:00
|
|
|
bss_size = roundup(a_out->a_bss, PAGE_SIZE);
|
1993-12-20 16:16:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check various fields in header for validity/bounds.
|
|
|
|
*/
|
|
|
|
if (/* entry point must lay with text region */
|
|
|
|
a_out->a_entry < virtual_offset ||
|
|
|
|
a_out->a_entry >= virtual_offset + a_out->a_text ||
|
|
|
|
|
|
|
|
/* text and data size must each be page rounded */
|
1996-05-02 10:43:17 +00:00
|
|
|
a_out->a_text & PAGE_MASK || a_out->a_data & PAGE_MASK)
|
1993-12-20 16:16:46 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
/* text + data can't exceed file size */
|
1995-11-06 12:52:37 +00:00
|
|
|
if (a_out->a_data + a_out->a_text > imgp->attr->va_size)
|
1993-12-20 16:16:46 +00:00
|
|
|
return (EFAULT);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* text/data/bss must not exceed limits
|
|
|
|
*/
|
|
|
|
if (/* text can't exceed maximum text size */
|
|
|
|
a_out->a_text > MAXTSIZ ||
|
|
|
|
|
|
|
|
/* data + bss can't exceed maximum data size */
|
|
|
|
a_out->a_data + bss_size > MAXDSIZ ||
|
|
|
|
|
|
|
|
/* data + bss can't exceed rlimit */
|
|
|
|
a_out->a_data + bss_size >
|
1995-11-06 12:52:37 +00:00
|
|
|
imgp->proc->p_rlimit[RLIMIT_DATA].rlim_cur)
|
1993-12-20 16:16:46 +00:00
|
|
|
return (ENOMEM);
|
|
|
|
|
|
|
|
/* copy in arguments and/or environment from old process */
|
1995-11-06 12:52:37 +00:00
|
|
|
error = exec_extract_strings(imgp);
|
1993-12-20 16:16:46 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Destroy old process VM and create a new one (with a new stack)
|
|
|
|
*/
|
1995-11-06 12:52:37 +00:00
|
|
|
exec_new_vmspace(imgp);
|
1993-12-20 16:16:46 +00:00
|
|
|
|
|
|
|
/*
|
1996-01-19 04:00:31 +00:00
|
|
|
* Map text/data read/execute
|
1993-12-20 16:16:46 +00:00
|
|
|
*/
|
|
|
|
vmaddr = virtual_offset;
|
|
|
|
error =
|
|
|
|
vm_mmap(&vmspace->vm_map, /* map */
|
|
|
|
&vmaddr, /* address */
|
1996-01-19 04:00:31 +00:00
|
|
|
a_out->a_text + a_out->a_data, /* size */
|
1993-12-20 16:16:46 +00:00
|
|
|
VM_PROT_READ | VM_PROT_EXECUTE, /* protection */
|
1996-01-19 04:00:31 +00:00
|
|
|
VM_PROT_ALL, /* max protection */
|
1994-05-25 09:21:21 +00:00
|
|
|
MAP_PRIVATE | MAP_FIXED, /* flags */
|
1995-11-06 12:52:37 +00:00
|
|
|
(caddr_t)imgp->vp, /* vnode */
|
1993-12-20 16:16:46 +00:00
|
|
|
file_offset); /* offset */
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
/*
|
1996-01-19 04:00:31 +00:00
|
|
|
* allow writing of data
|
1993-12-20 16:16:46 +00:00
|
|
|
*/
|
1996-01-19 04:00:31 +00:00
|
|
|
vm_map_protect(&vmspace->vm_map,
|
|
|
|
vmaddr + a_out->a_text,
|
|
|
|
vmaddr + a_out->a_text + a_out->a_data,
|
|
|
|
VM_PROT_ALL,
|
|
|
|
FALSE);
|
1993-12-20 16:16:46 +00:00
|
|
|
|
1995-02-20 22:23:31 +00:00
|
|
|
if (bss_size != 0) {
|
|
|
|
/*
|
|
|
|
* Allocate demand-zeroed area for uninitialized data
|
|
|
|
* "bss" = 'block started by symbol' - named after the IBM 7090
|
|
|
|
* instruction of the same name.
|
|
|
|
*/
|
|
|
|
vmaddr = virtual_offset + a_out->a_text + a_out->a_data;
|
1996-01-19 04:00:31 +00:00
|
|
|
error = vm_map_find(&vmspace->vm_map, NULL, 0, &vmaddr, bss_size, FALSE, VM_PROT_ALL, VM_PROT_ALL, 0);
|
1995-02-20 22:23:31 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
1993-12-20 16:16:46 +00:00
|
|
|
|
|
|
|
/* Fill in process VM information */
|
|
|
|
vmspace->vm_tsize = a_out->a_text >> PAGE_SHIFT;
|
|
|
|
vmspace->vm_dsize = (a_out->a_data + bss_size) >> PAGE_SHIFT;
|
|
|
|
vmspace->vm_taddr = (caddr_t) virtual_offset;
|
|
|
|
vmspace->vm_daddr = (caddr_t) virtual_offset + a_out->a_text;
|
|
|
|
|
|
|
|
/* Fill in image_params */
|
1995-11-06 12:52:37 +00:00
|
|
|
imgp->interpreted = 0;
|
|
|
|
imgp->entry_addr = a_out->a_entry;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1995-11-06 12:52:37 +00:00
|
|
|
imgp->proc->p_sysent = &aout_sysvec;
|
1995-08-24 10:32:37 +00:00
|
|
|
|
|
|
|
/* Indicate that this file should not be modified */
|
1995-11-06 12:52:37 +00:00
|
|
|
imgp->vp->v_flag |= VTEXT;
|
1995-08-24 10:32:37 +00:00
|
|
|
|
1993-12-20 16:16:46 +00:00
|
|
|
return (0);
|
|
|
|
}
|
1993-12-20 19:31:41 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Tell kern_execve.c about it, with a little help from the linker.
|
|
|
|
* Since `const' objects end up in the text segment, TEXT_SET is the
|
|
|
|
* correct directive to use.
|
|
|
|
*/
|
1994-08-18 22:36:09 +00:00
|
|
|
static const struct execsw aout_execsw = { exec_aout_imgact, "a.out" };
|
1993-12-20 19:31:41 +00:00
|
|
|
TEXT_SET(execsw_set, aout_execsw);
|