1999-01-30 06:29:48 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998 Mark Newton
|
2012-01-15 13:23:18 +00:00
|
|
|
* Copyright (c) 1994-1996 Søren Schmidt
|
1999-01-30 06:29:48 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Based heavily on /sys/kern/imgact_aout.c which is:
|
|
|
|
* Copyright (c) 1993, David Greenman
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* in this position and unchanged.
|
|
|
|
* 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.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
2002-06-02 20:05:59 +00:00
|
|
|
* derived from this software without specific prior written permission
|
1999-01-30 06:29:48 +00:00
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE 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.
|
|
|
|
*/
|
|
|
|
|
2003-06-10 21:44:29 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/exec.h>
|
|
|
|
#include <sys/imgact.h>
|
|
|
|
#include <sys/imgact_aout.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/lock.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/mutex.h>
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/proc.h>
|
2011-04-05 20:23:59 +00:00
|
|
|
#include <sys/racct.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/resourcevar.h>
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/vnode.h>
|
|
|
|
|
|
|
|
#include <vm/vm.h>
|
|
|
|
#include <vm/vm_kern.h>
|
|
|
|
#include <vm/vm_param.h>
|
|
|
|
#include <vm/pmap.h>
|
|
|
|
#include <vm/vm_map.h>
|
|
|
|
#include <vm/vm_extern.h>
|
|
|
|
|
2000-08-31 22:54:09 +00:00
|
|
|
#include <compat/svr4/svr4.h>
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2002-03-20 05:48:58 +00:00
|
|
|
static int exec_svr4_imgact(struct image_params *iparams);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
exec_svr4_imgact(imgp)
|
|
|
|
struct image_params *imgp;
|
|
|
|
{
|
|
|
|
const struct exec *a_out = (const struct exec *) imgp->image_header;
|
|
|
|
struct vmspace *vmspace;
|
|
|
|
vm_offset_t vmaddr;
|
|
|
|
unsigned long virtual_offset, file_offset;
|
|
|
|
unsigned long bss_size;
|
2012-02-17 23:47:16 +00:00
|
|
|
ssize_t aresid;
|
1999-01-30 06:29:48 +00:00
|
|
|
int error;
|
|
|
|
|
|
|
|
if (((a_out->a_magic >> 16) & 0xff) != 0x64)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set file/virtual offset based on a.out variant.
|
|
|
|
*/
|
|
|
|
switch ((int)(a_out->a_magic & 0xffff)) {
|
|
|
|
case 0413:
|
|
|
|
virtual_offset = 0;
|
|
|
|
file_offset = 1024;
|
|
|
|
break;
|
|
|
|
case 0314:
|
|
|
|
virtual_offset = 4096;
|
|
|
|
file_offset = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
bss_size = round_page(a_out->a_bss);
|
|
|
|
#ifdef DEBUG
|
2004-06-24 02:21:17 +00:00
|
|
|
printf("imgact: text: %08lx, data: %08lx, bss: %08lx\n", (u_long)a_out->a_text, (u_long)a_out->a_data, bss_size);
|
1999-01-30 06:29:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check various fields in header for validity/bounds.
|
|
|
|
*/
|
|
|
|
if (a_out->a_entry < virtual_offset ||
|
|
|
|
a_out->a_entry >= virtual_offset + a_out->a_text ||
|
|
|
|
a_out->a_text & PAGE_MASK || a_out->a_data & PAGE_MASK)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
/* text + data can't exceed file size */
|
|
|
|
if (a_out->a_data + a_out->a_text > imgp->attr->va_size)
|
|
|
|
return (EFAULT);
|
|
|
|
/*
|
|
|
|
* text/data/bss must not exceed limits
|
|
|
|
*/
|
2004-02-04 21:52:57 +00:00
|
|
|
PROC_LOCK(imgp->proc);
|
2001-10-10 23:06:54 +00:00
|
|
|
if (a_out->a_text > maxtsiz ||
|
2011-04-05 20:23:59 +00:00
|
|
|
a_out->a_data + bss_size > lim_cur(imgp->proc, RLIMIT_DATA) ||
|
2011-04-10 10:15:49 +00:00
|
|
|
racct_set(imgp->proc, RACCT_DATA, a_out->a_data + bss_size) != 0) {
|
2004-02-04 21:52:57 +00:00
|
|
|
PROC_UNLOCK(imgp->proc);
|
1999-01-30 06:29:48 +00:00
|
|
|
return (ENOMEM);
|
2004-02-04 21:52:57 +00:00
|
|
|
}
|
|
|
|
PROC_UNLOCK(imgp->proc);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(imgp->vp, 0);
|
2002-08-13 06:55:28 +00:00
|
|
|
|
1999-01-30 06:29:48 +00:00
|
|
|
/*
|
|
|
|
* Destroy old process VM and create a new one (with a new stack)
|
|
|
|
*/
|
2007-11-05 11:36:16 +00:00
|
|
|
error = exec_new_vmspace(imgp, &svr4_sysvec);
|
|
|
|
if (error)
|
|
|
|
goto fail;
|
1999-01-30 06:29:48 +00:00
|
|
|
vmspace = imgp->proc->p_vmspace;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if file_offset page aligned,.
|
|
|
|
* Currently we cannot handle misalinged file offsets,
|
|
|
|
* and so we read in the entire image (what a waste).
|
|
|
|
*/
|
|
|
|
if (file_offset & PAGE_MASK) {
|
|
|
|
#ifdef DEBUG
|
2001-07-22 00:12:22 +00:00
|
|
|
printf("imgact: Non page aligned binary %lu\n", file_offset);
|
1999-01-30 06:29:48 +00:00
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Map text+data+bss read/write/execute
|
|
|
|
*/
|
|
|
|
vmaddr = virtual_offset;
|
|
|
|
error = vm_map_find(&vmspace->vm_map, NULL, 0, &vmaddr,
|
|
|
|
a_out->a_text + a_out->a_data + bss_size, FALSE,
|
|
|
|
VM_PROT_ALL, VM_PROT_ALL, 0);
|
|
|
|
if (error)
|
2002-08-13 06:55:28 +00:00
|
|
|
goto fail;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2012-02-17 23:47:16 +00:00
|
|
|
error = vn_rdwr(UIO_READ, imgp->vp, (void *)vmaddr, file_offset,
|
|
|
|
a_out->a_text + a_out->a_data, UIO_USERSPACE, 0,
|
|
|
|
curthread->td_ucred, NOCRED, &aresid, curthread);
|
|
|
|
if (error != 0)
|
|
|
|
goto fail;
|
|
|
|
if (aresid != 0) {
|
|
|
|
error = ENOEXEC;
|
|
|
|
goto fail;
|
|
|
|
}
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* remove write enable on the 'text' part
|
|
|
|
*/
|
|
|
|
error = vm_map_protect(&vmspace->vm_map,
|
|
|
|
vmaddr,
|
|
|
|
vmaddr + a_out->a_text,
|
|
|
|
VM_PROT_EXECUTE|VM_PROT_READ,
|
|
|
|
TRUE);
|
|
|
|
if (error)
|
2002-08-13 06:55:28 +00:00
|
|
|
goto fail;
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
#ifdef DEBUG
|
2001-07-22 00:12:22 +00:00
|
|
|
printf("imgact: Page aligned binary %lu\n", file_offset);
|
1999-01-30 06:29:48 +00:00
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Map text+data read/execute
|
|
|
|
*/
|
|
|
|
vmaddr = virtual_offset;
|
|
|
|
error = vm_mmap(&vmspace->vm_map, &vmaddr,
|
|
|
|
a_out->a_text + a_out->a_data,
|
|
|
|
VM_PROT_READ | VM_PROT_EXECUTE,
|
|
|
|
VM_PROT_ALL,
|
|
|
|
MAP_PRIVATE | MAP_FIXED,
|
2005-04-01 20:00:11 +00:00
|
|
|
OBJT_VNODE, imgp->vp, file_offset);
|
1999-01-30 06:29:48 +00:00
|
|
|
if (error)
|
2002-08-13 06:55:28 +00:00
|
|
|
goto fail;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2001-07-22 00:12:22 +00:00
|
|
|
printf("imgact: startaddr=%08lx, length=%08lx\n", (u_long)vmaddr,
|
2004-06-24 02:21:17 +00:00
|
|
|
(u_long)a_out->a_text + a_out->a_data);
|
1999-01-30 06:29:48 +00:00
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* allow read/write of data
|
|
|
|
*/
|
|
|
|
error = vm_map_protect(&vmspace->vm_map,
|
|
|
|
vmaddr + a_out->a_text,
|
|
|
|
vmaddr + a_out->a_text + a_out->a_data,
|
|
|
|
VM_PROT_ALL,
|
|
|
|
FALSE);
|
|
|
|
if (error)
|
2002-08-13 06:55:28 +00:00
|
|
|
goto fail;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate anon demand-zeroed area for uninitialized data
|
|
|
|
*/
|
|
|
|
if (bss_size != 0) {
|
|
|
|
vmaddr = virtual_offset + a_out->a_text + a_out->a_data;
|
|
|
|
error = vm_map_find(&vmspace->vm_map, NULL, 0, &vmaddr,
|
|
|
|
bss_size, FALSE, VM_PROT_ALL, VM_PROT_ALL, 0);
|
|
|
|
if (error)
|
2002-08-13 06:55:28 +00:00
|
|
|
goto fail;
|
1999-01-30 06:29:48 +00:00
|
|
|
#ifdef DEBUG
|
2001-07-22 00:12:22 +00:00
|
|
|
printf("imgact: bssaddr=%08lx, length=%08lx\n",
|
|
|
|
(u_long)vmaddr, bss_size);
|
1999-01-30 06:29:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Fill in process VM information */
|
|
|
|
vmspace->vm_tsize = round_page(a_out->a_text) >> PAGE_SHIFT;
|
|
|
|
vmspace->vm_dsize = round_page(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 */
|
|
|
|
imgp->interpreted = 0;
|
|
|
|
imgp->entry_addr = a_out->a_entry;
|
|
|
|
|
|
|
|
imgp->proc->p_sysent = &svr4_sysvec;
|
2002-08-13 06:55:28 +00:00
|
|
|
fail:
|
2008-01-10 01:10:58 +00:00
|
|
|
vn_lock(imgp->vp, LK_EXCLUSIVE | LK_RETRY);
|
2002-08-13 06:55:28 +00:00
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Tell kern_execve.c about it, with a little help from the linker.
|
|
|
|
*/
|
1999-05-10 12:38:41 +00:00
|
|
|
struct execsw svr4_execsw = { exec_svr4_imgact, "svr4 ELF" };
|
1999-04-17 07:55:15 +00:00
|
|
|
EXEC_SET(execsw_set, svr4_execsw);
|
1999-01-30 06:29:48 +00:00
|
|
|
|