2002-12-01 14:02:11 +03:00
|
|
|
/* $NetBSD: netbsd32_exec_elf32.c,v 1.15 2002/12/01 11:02:11 agc Exp $ */
|
2000-12-02 00:51:08 +03:00
|
|
|
/* from: NetBSD: exec_aout.c,v 1.15 1996/09/26 23:34:46 cgd Exp */
|
|
|
|
|
|
|
|
/*
|
2001-08-25 19:06:02 +04:00
|
|
|
* Copyright (c) 1998, 2001 Matthew R. Green.
|
2000-12-02 00:51:08 +03:00
|
|
|
* Copyright (c) 1993, 1994 Christopher G. Demetriou
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Christopher G. Demetriou.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2001-11-13 05:07:52 +03:00
|
|
|
#include <sys/cdefs.h>
|
2002-12-01 14:02:11 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: netbsd32_exec_elf32.c,v 1.15 2002/12/01 11:02:11 agc Exp $");
|
2001-11-13 05:07:52 +03:00
|
|
|
|
2000-12-02 00:51:08 +03:00
|
|
|
#define ELFSIZE 32
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/exec.h>
|
|
|
|
#include <sys/exec_elf.h>
|
|
|
|
#include <sys/resourcevar.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <sys/signalvar.h>
|
|
|
|
|
|
|
|
#include <compat/netbsd32/netbsd32.h>
|
|
|
|
#include <compat/netbsd32/netbsd32_exec.h>
|
|
|
|
|
|
|
|
#include <machine/frame.h>
|
|
|
|
#include <machine/netbsd32_machdep.h>
|
|
|
|
|
2002-06-01 19:10:43 +04:00
|
|
|
int netbsd32_copyinargs(struct exec_package *, struct ps_strings *,
|
|
|
|
void *, size_t, const void *, const void *);
|
|
|
|
int ELFNAME2(netbsd32,probe_noteless)(struct proc *, struct exec_package *epp,
|
|
|
|
void *eh, char *itp, vaddr_t *pos);
|
|
|
|
extern int ELFNAME2(netbsd,signature)(struct proc *, struct exec_package *,
|
|
|
|
Elf_Ehdr *);
|
2000-12-02 00:51:08 +03:00
|
|
|
|
|
|
|
int
|
2002-06-01 19:10:43 +04:00
|
|
|
ELFNAME2(netbsd32,probe)(struct proc *p, struct exec_package *epp,
|
|
|
|
void *eh, char *itp, vaddr_t *pos)
|
2000-12-02 00:51:08 +03:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if ((error = ELFNAME2(netbsd,signature)(p, epp, eh)) != 0)
|
|
|
|
return error;
|
|
|
|
|
2002-05-31 04:49:42 +04:00
|
|
|
return ELFNAME2(netbsd32,probe_noteless)(p, epp, eh, itp, pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-06-01 19:10:43 +04:00
|
|
|
ELFNAME2(netbsd32,probe_noteless)(struct proc *p, struct exec_package *epp,
|
|
|
|
void *eh, char *itp, vaddr_t *pos)
|
2002-05-31 04:49:42 +04:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
2000-12-02 00:51:08 +03:00
|
|
|
if (itp[0]) {
|
2002-05-31 04:49:42 +04:00
|
|
|
/* Translate interpreter name if needed */
|
2002-11-29 22:15:15 +03:00
|
|
|
if ((error = emul_find_interp(p, epp->ep_esch->es_emul->e_path,
|
|
|
|
itp)) != 0)
|
2000-12-02 00:51:08 +03:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
epp->ep_flags |= EXEC_32;
|
2001-02-14 21:21:42 +03:00
|
|
|
epp->ep_vm_minaddr = VM_MIN_ADDRESS;
|
|
|
|
epp->ep_vm_maxaddr = USRSTACK32;
|
2001-02-11 03:00:29 +03:00
|
|
|
*pos = ELFDEFNNAME(NO_ADDR);
|
2000-12-02 00:51:08 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* round up and down to page boundaries. */
|
|
|
|
#define ELF_ROUND(a, b) (((a) + (b) - 1) & ~((b) - 1))
|
|
|
|
#define ELF_TRUNC(a, b) ((a) & ~((b) - 1))
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy arguments onto the stack in the normal way, but add some
|
|
|
|
* extra information in case of dynamic binding.
|
|
|
|
*/
|
2001-07-30 01:28:45 +04:00
|
|
|
int
|
2002-08-27 01:05:59 +04:00
|
|
|
netbsd32_elf32_copyargs(struct proc *p, struct exec_package *pack,
|
|
|
|
struct ps_strings *arginfo, char **stackp, void *argp)
|
2000-12-02 00:51:08 +03:00
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
AuxInfo ai[ELF_AUX_ENTRIES], *a;
|
|
|
|
struct elf_args *ap;
|
2001-07-31 02:04:08 +04:00
|
|
|
int error;
|
2000-12-02 00:51:08 +03:00
|
|
|
|
2002-08-27 01:05:59 +04:00
|
|
|
if ((error = netbsd32_copyargs(p, pack, arginfo, stackp, argp)) != 0)
|
2001-07-30 01:28:45 +04:00
|
|
|
return error;
|
2000-12-02 00:51:08 +03:00
|
|
|
|
|
|
|
a = ai;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Push extra arguments on the stack needed by dynamically
|
|
|
|
* linked binaries
|
|
|
|
*/
|
|
|
|
if ((ap = (struct elf_args *)pack->ep_emul_arg)) {
|
|
|
|
|
|
|
|
a->a_type = AT_PHDR;
|
|
|
|
a->a_v = ap->arg_phaddr;
|
|
|
|
a++;
|
|
|
|
|
|
|
|
a->a_type = AT_PHENT;
|
|
|
|
a->a_v = ap->arg_phentsize;
|
|
|
|
a++;
|
|
|
|
|
|
|
|
a->a_type = AT_PHNUM;
|
|
|
|
a->a_v = ap->arg_phnum;
|
|
|
|
a++;
|
|
|
|
|
|
|
|
a->a_type = AT_PAGESZ;
|
|
|
|
a->a_v = NBPG;
|
|
|
|
a++;
|
|
|
|
|
|
|
|
a->a_type = AT_BASE;
|
|
|
|
a->a_v = ap->arg_interp;
|
|
|
|
a++;
|
|
|
|
|
|
|
|
a->a_type = AT_FLAGS;
|
|
|
|
a->a_v = 0;
|
|
|
|
a++;
|
|
|
|
|
|
|
|
a->a_type = AT_ENTRY;
|
|
|
|
a->a_v = ap->arg_entry;
|
|
|
|
a++;
|
|
|
|
|
2002-08-29 17:48:42 +04:00
|
|
|
a->a_type = AT_EUID;
|
|
|
|
a->a_v = p->p_ucred->cr_uid;
|
2002-08-27 01:05:59 +04:00
|
|
|
a++;
|
|
|
|
|
2002-08-29 17:48:42 +04:00
|
|
|
a->a_type = AT_RUID;
|
2002-08-29 18:02:50 +04:00
|
|
|
a->a_v = p->p_cred->p_ruid;
|
2002-08-27 01:05:59 +04:00
|
|
|
a++;
|
|
|
|
|
2002-08-29 17:48:42 +04:00
|
|
|
a->a_type = AT_EGID;
|
|
|
|
a->a_v = p->p_ucred->cr_gid;
|
2002-08-27 01:05:59 +04:00
|
|
|
a++;
|
|
|
|
|
2002-08-29 17:48:42 +04:00
|
|
|
a->a_type = AT_RGID;
|
2002-08-29 18:02:50 +04:00
|
|
|
a->a_v = p->p_cred->p_rgid;
|
2002-08-27 01:05:59 +04:00
|
|
|
a++;
|
|
|
|
|
2000-12-02 00:51:08 +03:00
|
|
|
free((char *)ap, M_TEMP);
|
|
|
|
pack->ep_emul_arg = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
a->a_type = AT_NULL;
|
|
|
|
a->a_v = 0;
|
|
|
|
a++;
|
|
|
|
|
|
|
|
len = (a - ai) * sizeof(AuxInfo);
|
2001-07-30 01:28:45 +04:00
|
|
|
if ((error = copyout(ai, *stackp, len)) != 0)
|
|
|
|
return error;
|
|
|
|
*stackp += len;
|
2000-12-02 00:51:08 +03:00
|
|
|
|
2001-07-30 01:28:45 +04:00
|
|
|
return 0;
|
2000-12-02 00:51:08 +03:00
|
|
|
}
|