Home | History | Annotate | Line # | Download | only in common
linux_exec_elf32.c revision 1.66.10.1
      1  1.66.10.1      yamt /*	$NetBSD: linux_exec_elf32.c,v 1.66.10.1 2005/03/19 08:33:37 yamt Exp $	*/
      2       1.29  christos 
      3       1.29  christos /*-
      4       1.51      manu  * Copyright (c) 1995, 1998, 2000, 2001 The NetBSD Foundation, Inc.
      5       1.29  christos  * All rights reserved.
      6       1.29  christos  *
      7       1.29  christos  * This code is derived from software contributed to The NetBSD Foundation
      8       1.51      manu  * by Christos Zoulas, Frank van der Linden, Eric Haszlakiewicz and
      9       1.51      manu  * Emmanuel Dreyfus.
     10       1.29  christos  *
     11       1.29  christos  * Redistribution and use in source and binary forms, with or without
     12       1.29  christos  * modification, are permitted provided that the following conditions
     13       1.29  christos  * are met:
     14       1.29  christos  * 1. Redistributions of source code must retain the above copyright
     15       1.29  christos  *    notice, this list of conditions and the following disclaimer.
     16       1.29  christos  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.29  christos  *    notice, this list of conditions and the following disclaimer in the
     18       1.29  christos  *    documentation and/or other materials provided with the distribution.
     19       1.29  christos  * 3. All advertising materials mentioning features or use of this software
     20       1.29  christos  *    must display the following acknowledgement:
     21       1.31       erh  *	This product includes software developed by the NetBSD
     22       1.31       erh  *	Foundation, Inc. and its contributors.
     23       1.29  christos  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24       1.29  christos  *    contributors may be used to endorse or promote products derived
     25       1.29  christos  *    from this software without specific prior written permission.
     26       1.29  christos  *
     27       1.29  christos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28       1.29  christos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29       1.29  christos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30       1.29  christos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31       1.29  christos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32       1.29  christos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33       1.29  christos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34       1.29  christos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35       1.29  christos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36       1.29  christos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37       1.29  christos  * POSSIBILITY OF SUCH DAMAGE.
     38       1.29  christos  */
     39        1.1      fvdl 
     40        1.1      fvdl /*
     41        1.7      fvdl  * based on exec_aout.c, sunos_exec.c and svr4_exec.c
     42        1.1      fvdl  */
     43       1.54     lukem 
     44       1.54     lukem #include <sys/cdefs.h>
     45  1.66.10.1      yamt __KERNEL_RCSID(0, "$NetBSD: linux_exec_elf32.c,v 1.66.10.1 2005/03/19 08:33:37 yamt Exp $");
     46        1.1      fvdl 
     47       1.31       erh #ifndef ELFSIZE
     48       1.58  christos /* XXX should die */
     49       1.58  christos #define	ELFSIZE		32
     50       1.31       erh #endif
     51       1.17       cgd 
     52        1.1      fvdl #include <sys/param.h>
     53        1.1      fvdl #include <sys/systm.h>
     54        1.1      fvdl #include <sys/kernel.h>
     55        1.1      fvdl #include <sys/proc.h>
     56        1.1      fvdl #include <sys/malloc.h>
     57        1.1      fvdl #include <sys/namei.h>
     58        1.1      fvdl #include <sys/vnode.h>
     59       1.13  christos #include <sys/mount.h>
     60       1.25  christos #include <sys/exec.h>
     61        1.8      fvdl #include <sys/exec_elf.h>
     62       1.59  jdolecek #include <sys/stat.h>
     63        1.1      fvdl 
     64        1.1      fvdl #include <sys/mman.h>
     65       1.61   thorpej #include <sys/sa.h>
     66       1.13  christos #include <sys/syscallargs.h>
     67        1.1      fvdl 
     68        1.1      fvdl #include <machine/cpu.h>
     69        1.1      fvdl #include <machine/reg.h>
     70        1.1      fvdl 
     71       1.32  christos #include <compat/linux/common/linux_types.h>
     72       1.32  christos #include <compat/linux/common/linux_signal.h>
     73       1.32  christos #include <compat/linux/common/linux_util.h>
     74       1.32  christos #include <compat/linux/common/linux_exec.h>
     75       1.32  christos #include <compat/linux/common/linux_machdep.h>
     76       1.32  christos 
     77       1.32  christos #include <compat/linux/linux_syscallargs.h>
     78        1.4  christos #include <compat/linux/linux_syscall.h>
     79       1.31       erh 
     80       1.64      fvdl static int ELFNAME2(linux,signature) __P((struct proc *, struct exec_package *,
     81       1.50   mycroft 	Elf_Ehdr *, char *));
     82       1.31       erh #ifdef LINUX_GCC_SIGNATURE
     83       1.64      fvdl static int ELFNAME2(linux,gcc_signature) __P((struct proc *p,
     84       1.31       erh 	struct exec_package *, Elf_Ehdr *));
     85       1.31       erh #endif
     86       1.51      manu #ifdef LINUX_ATEXIT_SIGNATURE
     87       1.64      fvdl static int ELFNAME2(linux,atexit_signature) __P((struct proc *p,
     88       1.51      manu 	struct exec_package *, Elf_Ehdr *));
     89       1.51      manu #endif
     90       1.51      manu 
     91       1.56  christos #ifdef DEBUG_LINUX
     92       1.56  christos #define DPRINTF(a)	uprintf a
     93       1.56  christos #else
     94       1.56  christos #define DPRINTF(a)
     95       1.56  christos #endif
     96       1.56  christos 
     97       1.51      manu #ifdef LINUX_ATEXIT_SIGNATURE
     98       1.51      manu /*
     99       1.51      manu  * On the PowerPC, statically linked Linux binaries are not recognized
    100       1.51      manu  * by linux_signature nor by linux_gcc_signature. Fortunately, thoses
    101       1.51      manu  * binaries features a __libc_atexit ELF section. We therefore assume we
    102       1.51      manu  * have a Linux binary if we find this section.
    103       1.51      manu  */
    104       1.51      manu static int
    105       1.64      fvdl ELFNAME2(linux,atexit_signature)(p, epp, eh)
    106       1.64      fvdl 	struct proc *p;
    107       1.51      manu 	struct exec_package *epp;
    108       1.51      manu 	Elf_Ehdr *eh;
    109       1.51      manu {
    110       1.51      manu 	size_t shsize;
    111       1.65       chs 	int strndx;
    112       1.51      manu 	size_t i;
    113       1.51      manu 	static const char signature[] = "__libc_atexit";
    114       1.65       chs 	char *strtable = NULL;
    115       1.51      manu 	Elf_Shdr *sh;
    116  1.66.10.1      yamt 
    117       1.51      manu 	int error;
    118       1.51      manu 
    119       1.52  christos 	/*
    120  1.66.10.1      yamt 	 * load the section header table
    121       1.52  christos 	 */
    122       1.51      manu 	shsize = eh->e_shnum * sizeof(Elf_Shdr);
    123       1.51      manu 	sh = (Elf_Shdr *) malloc(shsize, M_TEMP, M_WAITOK);
    124       1.64      fvdl 	error = exec_read_from(p, epp->ep_vp, eh->e_shoff, sh, shsize);
    125       1.51      manu 	if (error)
    126       1.51      manu 		goto out;
    127       1.51      manu 
    128  1.66.10.1      yamt 	/*
    129       1.52  christos 	 * Now let's find the string table. If it does not exists, give up.
    130       1.52  christos 	 */
    131       1.51      manu 	strndx = (int)(eh->e_shstrndx);
    132       1.52  christos 	if (strndx == SHN_UNDEF) {
    133       1.51      manu 		error = ENOEXEC;
    134       1.51      manu 		goto out;
    135       1.51      manu 	}
    136       1.51      manu 
    137       1.52  christos 	/*
    138       1.52  christos 	 * strndx is the index in section header table of the string table
    139       1.52  christos 	 * section get the whole string table in strtable, and then we get access to the names
    140       1.52  christos 	 * s->sh_name is the offset of the section name in strtable.
    141       1.52  christos 	 */
    142       1.51      manu 	strtable = malloc(sh[strndx].sh_size, M_TEMP, M_WAITOK);
    143       1.64      fvdl 	error = exec_read_from(p, epp->ep_vp, sh[strndx].sh_offset, strtable,
    144       1.52  christos 	    sh[strndx].sh_size);
    145       1.51      manu 	if (error)
    146       1.51      manu 		goto out;
    147       1.51      manu 
    148       1.51      manu 	for (i = 0; i < eh->e_shnum; i++) {
    149       1.51      manu 		Elf_Shdr *s = &sh[i];
    150  1.66.10.1      yamt 		if (!memcmp((void*)(&(strtable[s->sh_name])), signature,
    151       1.51      manu 				sizeof(signature))) {
    152       1.56  christos 			DPRINTF(("linux_atexit_sig=%s\n",
    153       1.56  christos 			    &(strtable[s->sh_name])));
    154       1.51      manu 			error = 0;
    155       1.51      manu 			goto out;
    156       1.51      manu 		}
    157       1.51      manu 	}
    158       1.51      manu 	error = ENOEXEC;
    159       1.51      manu 
    160       1.51      manu out:
    161       1.51      manu 	free(sh, M_TEMP);
    162       1.65       chs 	if (strtable)
    163       1.65       chs 		free(strtable, M_TEMP);
    164       1.51      manu 	return (error);
    165       1.51      manu }
    166       1.51      manu #endif
    167        1.4  christos 
    168       1.31       erh #ifdef LINUX_GCC_SIGNATURE
    169       1.14  christos /*
    170       1.14  christos  * Take advantage of the fact that all the linux binaries are compiled
    171       1.14  christos  * with gcc, and gcc sticks in the comment field a signature. Note that
    172       1.14  christos  * on SVR4 binaries, the gcc signature will follow the OS name signature,
    173       1.14  christos  * that will not be a problem. We don't bother to read in the string table,
    174       1.14  christos  * but we check all the progbits headers.
    175       1.31       erh  *
    176       1.31       erh  * XXX This only works in the i386.  On the alpha (at least)
    177       1.31       erh  * XXX we have the same gcc signature which incorrectly identifies
    178       1.31       erh  * XXX NetBSD binaries as Linux.
    179       1.14  christos  */
    180       1.14  christos static int
    181       1.64      fvdl ELFNAME2(linux,gcc_signature)(p, epp, eh)
    182       1.64      fvdl 	struct proc *p;
    183       1.14  christos 	struct exec_package *epp;
    184       1.31       erh 	Elf_Ehdr *eh;
    185       1.14  christos {
    186       1.50   mycroft 	size_t shsize;
    187       1.14  christos 	size_t i;
    188       1.14  christos 	static const char signature[] = "\0GCC: (GNU) ";
    189       1.14  christos 	char buf[sizeof(signature) - 1];
    190       1.31       erh 	Elf_Shdr *sh;
    191       1.14  christos 	int error;
    192       1.14  christos 
    193       1.50   mycroft 	shsize = eh->e_shnum * sizeof(Elf_Shdr);
    194       1.31       erh 	sh = (Elf_Shdr *) malloc(shsize, M_TEMP, M_WAITOK);
    195       1.64      fvdl 	error = exec_read_from(p, epp->ep_vp, eh->e_shoff, sh, shsize);
    196       1.50   mycroft 	if (error)
    197       1.14  christos 		goto out;
    198       1.14  christos 
    199       1.14  christos 	for (i = 0; i < eh->e_shnum; i++) {
    200       1.31       erh 		Elf_Shdr *s = &sh[i];
    201       1.14  christos 
    202       1.14  christos 		/*
    203       1.14  christos 		 * Identify candidates for the comment header;
    204       1.15  christos 		 * Header cannot have a load address, or flags and
    205       1.14  christos 		 * it must be large enough.
    206       1.14  christos 		 */
    207       1.43    kleink 		if (s->sh_type != SHT_PROGBITS ||
    208       1.14  christos 		    s->sh_addr != 0 ||
    209       1.14  christos 		    s->sh_flags != 0 ||
    210       1.14  christos 		    s->sh_size < sizeof(signature) - 1)
    211       1.14  christos 			continue;
    212       1.14  christos 
    213       1.64      fvdl 		error = exec_read_from(p, epp->ep_vp, s->sh_offset, buf,
    214       1.52  christos 		    sizeof(signature) - 1);
    215       1.50   mycroft 		if (error)
    216       1.50   mycroft 			continue;
    217       1.14  christos 
    218       1.15  christos 		/*
    219       1.15  christos 		 * error is 0, if the signatures match we are done.
    220       1.15  christos 		 */
    221       1.56  christos 		DPRINTF(("linux_gcc_sig: sig=%s\n", buf));
    222       1.50   mycroft 		if (!memcmp(buf, signature, sizeof(signature) - 1)) {
    223       1.50   mycroft 			error = 0;
    224       1.14  christos 			goto out;
    225       1.50   mycroft 		}
    226       1.14  christos 	}
    227       1.50   mycroft 	error = ENOEXEC;
    228       1.14  christos 
    229       1.14  christos out:
    230       1.14  christos 	free(sh, M_TEMP);
    231       1.50   mycroft 	return (error);
    232       1.14  christos }
    233       1.31       erh #endif
    234       1.31       erh 
    235       1.31       erh static int
    236       1.64      fvdl ELFNAME2(linux,signature)(p, epp, eh, itp)
    237       1.64      fvdl 	struct proc *p;
    238       1.31       erh 	struct exec_package *epp;
    239       1.31       erh 	Elf_Ehdr *eh;
    240       1.50   mycroft 	char *itp;
    241       1.31       erh {
    242       1.31       erh 	size_t i;
    243       1.31       erh 	Elf_Phdr *ph;
    244       1.31       erh 	size_t phsize;
    245       1.50   mycroft 	int error;
    246       1.57  christos 	static const char linux[] = "Linux";
    247       1.57  christos 
    248       1.57  christos 	if (eh->e_ident[EI_OSABI] == 3 ||
    249       1.57  christos 	    memcmp(&eh->e_ident[EI_ABIVERSION], linux, sizeof(linux)) == 0)
    250       1.57  christos 		return 0;
    251       1.31       erh 
    252       1.31       erh 	phsize = eh->e_phnum * sizeof(Elf_Phdr);
    253       1.31       erh 	ph = (Elf_Phdr *)malloc(phsize, M_TEMP, M_WAITOK);
    254       1.64      fvdl 	error = exec_read_from(p, epp->ep_vp, eh->e_phoff, ph, phsize);
    255       1.50   mycroft 	if (error)
    256       1.50   mycroft 		goto out;
    257       1.31       erh 
    258       1.31       erh 	for (i = 0; i < eh->e_phnum; i++) {
    259       1.31       erh 		Elf_Phdr *ephp = &ph[i];
    260       1.50   mycroft 		Elf_Nhdr *np;
    261       1.50   mycroft 		u_int32_t *abi;
    262       1.31       erh 
    263       1.50   mycroft 		if (ephp->p_type != PT_NOTE ||
    264       1.50   mycroft 		    ephp->p_filesz > 1024 ||
    265       1.50   mycroft 		    ephp->p_filesz < sizeof(Elf_Nhdr) + 20)
    266       1.31       erh 			continue;
    267       1.31       erh 
    268       1.50   mycroft 		np = (Elf_Nhdr *)malloc(ephp->p_filesz, M_TEMP, M_WAITOK);
    269       1.64      fvdl 		error = exec_read_from(p, epp->ep_vp, ephp->p_offset, np,
    270       1.52  christos 		    ephp->p_filesz);
    271       1.50   mycroft 		if (error)
    272       1.50   mycroft 			goto next;
    273       1.50   mycroft 
    274       1.50   mycroft 		if (np->n_type != ELF_NOTE_TYPE_ABI_TAG ||
    275       1.50   mycroft 		    np->n_namesz != ELF_NOTE_ABI_NAMESZ ||
    276       1.50   mycroft 		    np->n_descsz != ELF_NOTE_ABI_DESCSZ ||
    277       1.50   mycroft 		    memcmp((caddr_t)(np + 1), ELF_NOTE_ABI_NAME,
    278       1.50   mycroft 		    ELF_NOTE_ABI_NAMESZ))
    279       1.50   mycroft 			goto next;
    280       1.50   mycroft 
    281       1.50   mycroft 		/* Make sure the OS is Linux. */
    282       1.50   mycroft 		abi = (u_int32_t *)((caddr_t)np + sizeof(Elf_Nhdr) +
    283       1.50   mycroft 		    np->n_namesz);
    284       1.50   mycroft 		if (abi[0] == ELF_NOTE_ABI_OS_LINUX)
    285       1.50   mycroft 			error = 0;
    286       1.50   mycroft 		else
    287       1.40       erh 			error = ENOEXEC;
    288       1.50   mycroft 		free(np, M_TEMP);
    289       1.50   mycroft 		goto out;
    290       1.31       erh 
    291       1.50   mycroft 	next:
    292       1.50   mycroft 		free(np, M_TEMP);
    293       1.50   mycroft 		continue;
    294       1.50   mycroft 	}
    295       1.31       erh 
    296       1.50   mycroft 	/* Check for certain intepreter names. */
    297       1.66  drochner 	if (itp) {
    298       1.50   mycroft 		if (!strncmp(itp, "/lib/ld-linux", 13) ||
    299       1.50   mycroft 		    !strncmp(itp, "/lib/ld.so.", 11))
    300       1.50   mycroft 			error = 0;
    301       1.50   mycroft 		else
    302       1.50   mycroft 			error = ENOEXEC;
    303       1.50   mycroft 		goto out;
    304       1.31       erh 	}
    305       1.31       erh 
    306       1.31       erh 	error = ENOEXEC;
    307       1.50   mycroft out:
    308       1.31       erh 	free(ph, M_TEMP);
    309       1.50   mycroft 	return (error);
    310       1.31       erh }
    311       1.14  christos 
    312        1.8      fvdl int
    313       1.64      fvdl ELFNAME2(linux,probe)(p, epp, eh, itp, pos)
    314       1.64      fvdl 	struct proc *p;
    315        1.8      fvdl 	struct exec_package *epp;
    316       1.48  jdolecek 	void *eh;
    317        1.8      fvdl 	char *itp;
    318       1.48  jdolecek 	vaddr_t *pos;
    319        1.6      fvdl {
    320        1.8      fvdl 	int error;
    321       1.14  christos 
    322       1.64      fvdl 	if (((error = ELFNAME2(linux,signature)(p, epp, eh, itp)) != 0) &&
    323       1.51      manu #ifdef LINUX_GCC_SIGNATURE
    324       1.64      fvdl 	    ((error = ELFNAME2(linux,gcc_signature)(p, epp, eh)) != 0) &&
    325       1.53      manu #endif
    326       1.51      manu #ifdef LINUX_ATEXIT_SIGNATURE
    327       1.64      fvdl 	    ((error = ELFNAME2(linux,atexit_signature)(p, epp, eh)) != 0) &&
    328       1.53      manu #endif
    329  1.66.10.1      yamt 	    1)
    330       1.51      manu 			return error;
    331        1.6      fvdl 
    332       1.66  drochner 	if (itp) {
    333       1.64      fvdl 		if ((error = emul_find_interp(p, epp->ep_esch->es_emul->e_path,
    334       1.60  jdolecek 		    itp)))
    335       1.60  jdolecek 			return (error);
    336        1.6      fvdl 	}
    337       1.56  christos 	DPRINTF(("linux_probe: returning 0\n"));
    338        1.6      fvdl 	return 0;
    339        1.6      fvdl }
    340        1.6      fvdl 
    341       1.59  jdolecek #ifndef LINUX_MACHDEP_ELF_COPYARGS
    342       1.59  jdolecek /*
    343       1.59  jdolecek  * Copy arguments onto the stack in the normal way, but add some
    344       1.59  jdolecek  * extra information in case of dynamic binding.
    345       1.59  jdolecek  */
    346       1.59  jdolecek int
    347       1.64      fvdl ELFNAME2(linux,copyargs)(struct proc *p, struct exec_package *pack,
    348       1.59  jdolecek     struct ps_strings *arginfo, char **stackp, void *argp)
    349       1.59  jdolecek {
    350       1.59  jdolecek 	size_t len;
    351       1.59  jdolecek 	AuxInfo ai[LINUX_ELF_AUX_ENTRIES], *a;
    352       1.59  jdolecek 	struct elf_args *ap;
    353       1.59  jdolecek 	int error;
    354       1.59  jdolecek 	struct vattr *vap;
    355       1.59  jdolecek 
    356       1.64      fvdl 	if ((error = copyargs(p, pack, arginfo, stackp, argp)) != 0)
    357       1.59  jdolecek 		return error;
    358       1.59  jdolecek 
    359       1.59  jdolecek 	a = ai;
    360       1.59  jdolecek 
    361       1.59  jdolecek 	/*
    362       1.59  jdolecek 	 * Push extra arguments used by glibc on the stack.
    363       1.59  jdolecek 	 */
    364       1.59  jdolecek 
    365       1.59  jdolecek 	a->a_type = AT_PAGESZ;
    366       1.59  jdolecek 	a->a_v = PAGE_SIZE;
    367       1.59  jdolecek 	a++;
    368       1.59  jdolecek 
    369       1.59  jdolecek 	if ((ap = (struct elf_args *)pack->ep_emul_arg)) {
    370       1.59  jdolecek 
    371       1.59  jdolecek 		a->a_type = AT_PHDR;
    372       1.59  jdolecek 		a->a_v = ap->arg_phaddr;
    373       1.59  jdolecek 		a++;
    374       1.59  jdolecek 
    375       1.59  jdolecek 		a->a_type = AT_PHENT;
    376       1.59  jdolecek 		a->a_v = ap->arg_phentsize;
    377       1.59  jdolecek 		a++;
    378       1.59  jdolecek 
    379       1.59  jdolecek 		a->a_type = AT_PHNUM;
    380       1.59  jdolecek 		a->a_v = ap->arg_phnum;
    381       1.59  jdolecek 		a++;
    382       1.59  jdolecek 
    383       1.59  jdolecek 		a->a_type = AT_BASE;
    384       1.59  jdolecek 		a->a_v = ap->arg_interp;
    385       1.59  jdolecek 		a++;
    386       1.59  jdolecek 
    387       1.59  jdolecek 		a->a_type = AT_FLAGS;
    388       1.59  jdolecek 		a->a_v = 0;
    389       1.59  jdolecek 		a++;
    390       1.59  jdolecek 
    391       1.59  jdolecek 		a->a_type = AT_ENTRY;
    392       1.59  jdolecek 		a->a_v = ap->arg_entry;
    393       1.59  jdolecek 		a++;
    394       1.59  jdolecek 
    395       1.59  jdolecek 		free(pack->ep_emul_arg, M_TEMP);
    396       1.59  jdolecek 		pack->ep_emul_arg = NULL;
    397       1.59  jdolecek 	}
    398       1.59  jdolecek 
    399       1.59  jdolecek 	/* Linux-specific items */
    400       1.59  jdolecek 	a->a_type = LINUX_AT_CLKTCK;
    401       1.59  jdolecek 	a->a_v = hz;
    402       1.59  jdolecek 	a++;
    403       1.59  jdolecek 
    404       1.59  jdolecek 	vap = pack->ep_vap;
    405       1.59  jdolecek 
    406       1.59  jdolecek 	a->a_type = LINUX_AT_UID;
    407       1.59  jdolecek 	a->a_v = p->p_cred->p_ruid;
    408       1.59  jdolecek 	a++;
    409       1.59  jdolecek 
    410       1.59  jdolecek 	a->a_type = LINUX_AT_EUID;
    411       1.59  jdolecek 	if (vap->va_mode & S_ISUID)
    412       1.59  jdolecek 		a->a_v = vap->va_uid;
    413       1.59  jdolecek 	else
    414       1.59  jdolecek 		a->a_v = p->p_ucred->cr_uid;
    415       1.59  jdolecek 	a++;
    416       1.59  jdolecek 
    417       1.59  jdolecek 	a->a_type = LINUX_AT_GID;
    418       1.59  jdolecek 	a->a_v = p->p_cred->p_rgid;
    419       1.59  jdolecek 	a++;
    420       1.59  jdolecek 
    421       1.59  jdolecek 	a->a_type = LINUX_AT_EGID;
    422       1.59  jdolecek 	if (vap->va_mode & S_ISGID)
    423       1.59  jdolecek 		a->a_v = vap->va_gid;
    424       1.59  jdolecek 	else
    425       1.59  jdolecek 		a->a_v = p->p_ucred->cr_gid;
    426       1.59  jdolecek 	a++;
    427       1.59  jdolecek 
    428       1.59  jdolecek 	a->a_type = AT_NULL;
    429       1.59  jdolecek 	a->a_v = 0;
    430       1.59  jdolecek 	a++;
    431       1.59  jdolecek 
    432       1.59  jdolecek 	len = (a - ai) * sizeof(AuxInfo);
    433       1.59  jdolecek 	if ((error = copyout(ai, *stackp, len)) != 0)
    434       1.59  jdolecek 		return error;
    435       1.59  jdolecek 	*stackp += len;
    436       1.59  jdolecek 
    437       1.59  jdolecek 	return 0;
    438       1.59  jdolecek }
    439       1.59  jdolecek #endif /* !LINUX_MACHDEP_ELF_COPYARGS */
    440