linux_exec_elf32.c revision 1.79.8.1 1 1.79.8.1 matt /* $NetBSD: linux_exec_elf32.c,v 1.79.8.1 2007/11/06 23:24:55 matt 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.79.8.1 matt __KERNEL_RCSID(0, "$NetBSD: linux_exec_elf32.c,v 1.79.8.1 2007/11/06 23:24:55 matt 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.72 elad #include <sys/kauth.h>
64 1.1 fvdl
65 1.1 fvdl #include <sys/mman.h>
66 1.13 christos #include <sys/syscallargs.h>
67 1.1 fvdl
68 1.79.8.1 matt #include <sys/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.56 christos #ifdef DEBUG_LINUX
81 1.56 christos #define DPRINTF(a) uprintf a
82 1.56 christos #else
83 1.56 christos #define DPRINTF(a)
84 1.56 christos #endif
85 1.56 christos
86 1.51 manu #ifdef LINUX_ATEXIT_SIGNATURE
87 1.51 manu /*
88 1.51 manu * On the PowerPC, statically linked Linux binaries are not recognized
89 1.51 manu * by linux_signature nor by linux_gcc_signature. Fortunately, thoses
90 1.51 manu * binaries features a __libc_atexit ELF section. We therefore assume we
91 1.51 manu * have a Linux binary if we find this section.
92 1.51 manu */
93 1.71 manu int
94 1.70 christos ELFNAME2(linux,atexit_signature)(l, epp, eh)
95 1.70 christos struct lwp *l;
96 1.51 manu struct exec_package *epp;
97 1.51 manu Elf_Ehdr *eh;
98 1.51 manu {
99 1.51 manu size_t shsize;
100 1.65 chs int strndx;
101 1.51 manu size_t i;
102 1.51 manu static const char signature[] = "__libc_atexit";
103 1.65 chs char *strtable = NULL;
104 1.51 manu Elf_Shdr *sh;
105 1.67 perry
106 1.51 manu int error;
107 1.51 manu
108 1.52 christos /*
109 1.67 perry * load the section header table
110 1.52 christos */
111 1.51 manu shsize = eh->e_shnum * sizeof(Elf_Shdr);
112 1.51 manu sh = (Elf_Shdr *) malloc(shsize, M_TEMP, M_WAITOK);
113 1.70 christos error = exec_read_from(l, epp->ep_vp, eh->e_shoff, sh, shsize);
114 1.51 manu if (error)
115 1.51 manu goto out;
116 1.51 manu
117 1.67 perry /*
118 1.52 christos * Now let's find the string table. If it does not exists, give up.
119 1.52 christos */
120 1.51 manu strndx = (int)(eh->e_shstrndx);
121 1.52 christos if (strndx == SHN_UNDEF) {
122 1.51 manu error = ENOEXEC;
123 1.51 manu goto out;
124 1.51 manu }
125 1.51 manu
126 1.52 christos /*
127 1.52 christos * strndx is the index in section header table of the string table
128 1.52 christos * section get the whole string table in strtable, and then we get access to the names
129 1.52 christos * s->sh_name is the offset of the section name in strtable.
130 1.52 christos */
131 1.51 manu strtable = malloc(sh[strndx].sh_size, M_TEMP, M_WAITOK);
132 1.70 christos error = exec_read_from(l, epp->ep_vp, sh[strndx].sh_offset, strtable,
133 1.52 christos sh[strndx].sh_size);
134 1.51 manu if (error)
135 1.51 manu goto out;
136 1.51 manu
137 1.51 manu for (i = 0; i < eh->e_shnum; i++) {
138 1.51 manu Elf_Shdr *s = &sh[i];
139 1.67 perry if (!memcmp((void*)(&(strtable[s->sh_name])), signature,
140 1.51 manu sizeof(signature))) {
141 1.56 christos DPRINTF(("linux_atexit_sig=%s\n",
142 1.56 christos &(strtable[s->sh_name])));
143 1.51 manu error = 0;
144 1.51 manu goto out;
145 1.51 manu }
146 1.51 manu }
147 1.51 manu error = ENOEXEC;
148 1.51 manu
149 1.51 manu out:
150 1.51 manu free(sh, M_TEMP);
151 1.65 chs if (strtable)
152 1.65 chs free(strtable, M_TEMP);
153 1.51 manu return (error);
154 1.51 manu }
155 1.51 manu #endif
156 1.4 christos
157 1.31 erh #ifdef LINUX_GCC_SIGNATURE
158 1.14 christos /*
159 1.14 christos * Take advantage of the fact that all the linux binaries are compiled
160 1.14 christos * with gcc, and gcc sticks in the comment field a signature. Note that
161 1.14 christos * on SVR4 binaries, the gcc signature will follow the OS name signature,
162 1.14 christos * that will not be a problem. We don't bother to read in the string table,
163 1.14 christos * but we check all the progbits headers.
164 1.31 erh *
165 1.31 erh * XXX This only works in the i386. On the alpha (at least)
166 1.31 erh * XXX we have the same gcc signature which incorrectly identifies
167 1.31 erh * XXX NetBSD binaries as Linux.
168 1.14 christos */
169 1.71 manu int
170 1.70 christos ELFNAME2(linux,gcc_signature)(l, epp, eh)
171 1.70 christos struct lwp *l;
172 1.14 christos struct exec_package *epp;
173 1.31 erh Elf_Ehdr *eh;
174 1.14 christos {
175 1.50 mycroft size_t shsize;
176 1.14 christos size_t i;
177 1.14 christos static const char signature[] = "\0GCC: (GNU) ";
178 1.69 christos char tbuf[sizeof(signature) - 1];
179 1.31 erh Elf_Shdr *sh;
180 1.14 christos int error;
181 1.14 christos
182 1.50 mycroft shsize = eh->e_shnum * sizeof(Elf_Shdr);
183 1.31 erh sh = (Elf_Shdr *) malloc(shsize, M_TEMP, M_WAITOK);
184 1.70 christos error = exec_read_from(l, epp->ep_vp, eh->e_shoff, sh, shsize);
185 1.50 mycroft if (error)
186 1.14 christos goto out;
187 1.14 christos
188 1.14 christos for (i = 0; i < eh->e_shnum; i++) {
189 1.31 erh Elf_Shdr *s = &sh[i];
190 1.14 christos
191 1.14 christos /*
192 1.14 christos * Identify candidates for the comment header;
193 1.15 christos * Header cannot have a load address, or flags and
194 1.14 christos * it must be large enough.
195 1.14 christos */
196 1.43 kleink if (s->sh_type != SHT_PROGBITS ||
197 1.14 christos s->sh_addr != 0 ||
198 1.14 christos s->sh_flags != 0 ||
199 1.14 christos s->sh_size < sizeof(signature) - 1)
200 1.14 christos continue;
201 1.14 christos
202 1.70 christos error = exec_read_from(l, epp->ep_vp, s->sh_offset, tbuf,
203 1.52 christos sizeof(signature) - 1);
204 1.50 mycroft if (error)
205 1.50 mycroft continue;
206 1.14 christos
207 1.15 christos /*
208 1.15 christos * error is 0, if the signatures match we are done.
209 1.15 christos */
210 1.69 christos DPRINTF(("linux_gcc_sig: sig=%s\n", tbuf));
211 1.69 christos if (!memcmp(tbuf, signature, sizeof(signature) - 1)) {
212 1.50 mycroft error = 0;
213 1.14 christos goto out;
214 1.50 mycroft }
215 1.14 christos }
216 1.50 mycroft error = ENOEXEC;
217 1.14 christos
218 1.14 christos out:
219 1.14 christos free(sh, M_TEMP);
220 1.50 mycroft return (error);
221 1.14 christos }
222 1.31 erh #endif
223 1.31 erh
224 1.74 manu #ifdef LINUX_DEBUGLINK_SIGNATURE
225 1.74 manu /*
226 1.74 manu * Look for a .gnu_debuglink, specific to x86_64 interpeter
227 1.74 manu */
228 1.74 manu int
229 1.74 manu ELFNAME2(linux,debuglink_signature)(l, epp, eh)
230 1.74 manu struct lwp *l;
231 1.74 manu struct exec_package *epp;
232 1.74 manu Elf_Ehdr *eh;
233 1.74 manu {
234 1.74 manu size_t shsize;
235 1.74 manu int strndx;
236 1.74 manu size_t i;
237 1.74 manu static const char signature[] = ".gnu_debuglink";
238 1.74 manu char *strtable = NULL;
239 1.74 manu Elf_Shdr *sh;
240 1.74 manu
241 1.74 manu int error;
242 1.74 manu
243 1.74 manu /*
244 1.74 manu * load the section header table
245 1.74 manu */
246 1.74 manu shsize = eh->e_shnum * sizeof(Elf_Shdr);
247 1.74 manu sh = (Elf_Shdr *) malloc(shsize, M_TEMP, M_WAITOK);
248 1.74 manu error = exec_read_from(l, epp->ep_vp, eh->e_shoff, sh, shsize);
249 1.74 manu if (error)
250 1.74 manu goto out;
251 1.74 manu
252 1.74 manu /*
253 1.74 manu * Now let's find the string table. If it does not exists, give up.
254 1.74 manu */
255 1.74 manu strndx = (int)(eh->e_shstrndx);
256 1.74 manu if (strndx == SHN_UNDEF) {
257 1.74 manu error = ENOEXEC;
258 1.74 manu goto out;
259 1.74 manu }
260 1.74 manu
261 1.74 manu /*
262 1.74 manu * strndx is the index in section header table of the string table
263 1.74 manu * section get the whole string table in strtable, and then we get access to the names
264 1.74 manu * s->sh_name is the offset of the section name in strtable.
265 1.74 manu */
266 1.74 manu strtable = malloc(sh[strndx].sh_size, M_TEMP, M_WAITOK);
267 1.74 manu error = exec_read_from(l, epp->ep_vp, sh[strndx].sh_offset, strtable,
268 1.74 manu sh[strndx].sh_size);
269 1.74 manu if (error)
270 1.74 manu goto out;
271 1.74 manu
272 1.74 manu for (i = 0; i < eh->e_shnum; i++) {
273 1.74 manu Elf_Shdr *s = &sh[i];
274 1.74 manu
275 1.74 manu if (!memcmp((void*)(&(strtable[s->sh_name])), signature,
276 1.74 manu sizeof(signature))) {
277 1.74 manu DPRINTF(("linux_debuglink_sig=%s\n",
278 1.74 manu &(strtable[s->sh_name])));
279 1.74 manu error = 0;
280 1.74 manu goto out;
281 1.74 manu }
282 1.74 manu }
283 1.74 manu error = ENOEXEC;
284 1.74 manu
285 1.74 manu out:
286 1.74 manu free(sh, M_TEMP);
287 1.74 manu if (strtable)
288 1.74 manu free(strtable, M_TEMP);
289 1.74 manu return (error);
290 1.74 manu }
291 1.74 manu #endif
292 1.74 manu
293 1.71 manu int
294 1.70 christos ELFNAME2(linux,signature)(l, epp, eh, itp)
295 1.70 christos struct lwp *l;
296 1.31 erh struct exec_package *epp;
297 1.31 erh Elf_Ehdr *eh;
298 1.50 mycroft char *itp;
299 1.31 erh {
300 1.31 erh size_t i;
301 1.31 erh Elf_Phdr *ph;
302 1.31 erh size_t phsize;
303 1.50 mycroft int error;
304 1.57 christos static const char linux[] = "Linux";
305 1.57 christos
306 1.57 christos if (eh->e_ident[EI_OSABI] == 3 ||
307 1.57 christos memcmp(&eh->e_ident[EI_ABIVERSION], linux, sizeof(linux)) == 0)
308 1.57 christos return 0;
309 1.31 erh
310 1.31 erh phsize = eh->e_phnum * sizeof(Elf_Phdr);
311 1.31 erh ph = (Elf_Phdr *)malloc(phsize, M_TEMP, M_WAITOK);
312 1.70 christos error = exec_read_from(l, epp->ep_vp, eh->e_phoff, ph, phsize);
313 1.50 mycroft if (error)
314 1.50 mycroft goto out;
315 1.31 erh
316 1.31 erh for (i = 0; i < eh->e_phnum; i++) {
317 1.31 erh Elf_Phdr *ephp = &ph[i];
318 1.50 mycroft Elf_Nhdr *np;
319 1.50 mycroft u_int32_t *abi;
320 1.31 erh
321 1.50 mycroft if (ephp->p_type != PT_NOTE ||
322 1.50 mycroft ephp->p_filesz > 1024 ||
323 1.50 mycroft ephp->p_filesz < sizeof(Elf_Nhdr) + 20)
324 1.31 erh continue;
325 1.31 erh
326 1.50 mycroft np = (Elf_Nhdr *)malloc(ephp->p_filesz, M_TEMP, M_WAITOK);
327 1.70 christos error = exec_read_from(l, epp->ep_vp, ephp->p_offset, np,
328 1.52 christos ephp->p_filesz);
329 1.50 mycroft if (error)
330 1.50 mycroft goto next;
331 1.50 mycroft
332 1.50 mycroft if (np->n_type != ELF_NOTE_TYPE_ABI_TAG ||
333 1.50 mycroft np->n_namesz != ELF_NOTE_ABI_NAMESZ ||
334 1.50 mycroft np->n_descsz != ELF_NOTE_ABI_DESCSZ ||
335 1.78 christos memcmp((void *)(np + 1), ELF_NOTE_ABI_NAME,
336 1.50 mycroft ELF_NOTE_ABI_NAMESZ))
337 1.50 mycroft goto next;
338 1.50 mycroft
339 1.50 mycroft /* Make sure the OS is Linux. */
340 1.78 christos abi = (u_int32_t *)((char *)np + sizeof(Elf_Nhdr) +
341 1.50 mycroft np->n_namesz);
342 1.50 mycroft if (abi[0] == ELF_NOTE_ABI_OS_LINUX)
343 1.50 mycroft error = 0;
344 1.50 mycroft else
345 1.40 erh error = ENOEXEC;
346 1.50 mycroft free(np, M_TEMP);
347 1.50 mycroft goto out;
348 1.31 erh
349 1.50 mycroft next:
350 1.50 mycroft free(np, M_TEMP);
351 1.50 mycroft continue;
352 1.50 mycroft }
353 1.31 erh
354 1.50 mycroft /* Check for certain intepreter names. */
355 1.66 drochner if (itp) {
356 1.50 mycroft if (!strncmp(itp, "/lib/ld-linux", 13) ||
357 1.68 manu #if (ELFSIZE == 64)
358 1.68 manu !strncmp(itp, "/lib64/ld-linux", 15) ||
359 1.68 manu #endif
360 1.50 mycroft !strncmp(itp, "/lib/ld.so.", 11))
361 1.50 mycroft error = 0;
362 1.50 mycroft else
363 1.50 mycroft error = ENOEXEC;
364 1.50 mycroft goto out;
365 1.31 erh }
366 1.31 erh
367 1.31 erh error = ENOEXEC;
368 1.50 mycroft out:
369 1.31 erh free(ph, M_TEMP);
370 1.50 mycroft return (error);
371 1.31 erh }
372 1.14 christos
373 1.8 fvdl int
374 1.75 christos ELFNAME2(linux,probe)(struct lwp *l, struct exec_package *epp, void *eh,
375 1.76 christos char *itp, vaddr_t *pos)
376 1.6 fvdl {
377 1.8 fvdl int error;
378 1.14 christos
379 1.70 christos if (((error = ELFNAME2(linux,signature)(l, epp, eh, itp)) != 0) &&
380 1.51 manu #ifdef LINUX_GCC_SIGNATURE
381 1.70 christos ((error = ELFNAME2(linux,gcc_signature)(l, epp, eh)) != 0) &&
382 1.53 manu #endif
383 1.51 manu #ifdef LINUX_ATEXIT_SIGNATURE
384 1.70 christos ((error = ELFNAME2(linux,atexit_signature)(l, epp, eh)) != 0) &&
385 1.53 manu #endif
386 1.74 manu #ifdef LINUX_DEBUGLINK_SIGNATURE
387 1.74 manu ((error = ELFNAME2(linux,debuglink_signature)(l, epp, eh)) != 0) &&
388 1.74 manu #endif
389 1.74 manu 1) {
390 1.74 manu DPRINTF(("linux_probe: returning %d\n", error));
391 1.51 manu return error;
392 1.74 manu }
393 1.6 fvdl
394 1.66 drochner if (itp) {
395 1.79 dsl if ((error = emul_find_interp(l, epp, itp)))
396 1.60 jdolecek return (error);
397 1.6 fvdl }
398 1.56 christos DPRINTF(("linux_probe: returning 0\n"));
399 1.6 fvdl return 0;
400 1.6 fvdl }
401 1.6 fvdl
402 1.59 jdolecek #ifndef LINUX_MACHDEP_ELF_COPYARGS
403 1.59 jdolecek /*
404 1.59 jdolecek * Copy arguments onto the stack in the normal way, but add some
405 1.59 jdolecek * extra information in case of dynamic binding.
406 1.59 jdolecek */
407 1.59 jdolecek int
408 1.70 christos ELFNAME2(linux,copyargs)(struct lwp *l, struct exec_package *pack,
409 1.59 jdolecek struct ps_strings *arginfo, char **stackp, void *argp)
410 1.59 jdolecek {
411 1.59 jdolecek size_t len;
412 1.59 jdolecek AuxInfo ai[LINUX_ELF_AUX_ENTRIES], *a;
413 1.59 jdolecek struct elf_args *ap;
414 1.59 jdolecek int error;
415 1.59 jdolecek struct vattr *vap;
416 1.59 jdolecek
417 1.70 christos if ((error = copyargs(l, pack, arginfo, stackp, argp)) != 0)
418 1.59 jdolecek return error;
419 1.59 jdolecek
420 1.59 jdolecek a = ai;
421 1.59 jdolecek
422 1.59 jdolecek /*
423 1.59 jdolecek * Push extra arguments used by glibc on the stack.
424 1.59 jdolecek */
425 1.59 jdolecek
426 1.59 jdolecek a->a_type = AT_PAGESZ;
427 1.59 jdolecek a->a_v = PAGE_SIZE;
428 1.59 jdolecek a++;
429 1.59 jdolecek
430 1.59 jdolecek if ((ap = (struct elf_args *)pack->ep_emul_arg)) {
431 1.59 jdolecek
432 1.59 jdolecek a->a_type = AT_PHDR;
433 1.59 jdolecek a->a_v = ap->arg_phaddr;
434 1.59 jdolecek a++;
435 1.59 jdolecek
436 1.59 jdolecek a->a_type = AT_PHENT;
437 1.59 jdolecek a->a_v = ap->arg_phentsize;
438 1.59 jdolecek a++;
439 1.59 jdolecek
440 1.59 jdolecek a->a_type = AT_PHNUM;
441 1.59 jdolecek a->a_v = ap->arg_phnum;
442 1.59 jdolecek a++;
443 1.59 jdolecek
444 1.59 jdolecek a->a_type = AT_BASE;
445 1.59 jdolecek a->a_v = ap->arg_interp;
446 1.59 jdolecek a++;
447 1.59 jdolecek
448 1.59 jdolecek a->a_type = AT_FLAGS;
449 1.59 jdolecek a->a_v = 0;
450 1.59 jdolecek a++;
451 1.59 jdolecek
452 1.59 jdolecek a->a_type = AT_ENTRY;
453 1.59 jdolecek a->a_v = ap->arg_entry;
454 1.59 jdolecek a++;
455 1.59 jdolecek
456 1.59 jdolecek free(pack->ep_emul_arg, M_TEMP);
457 1.59 jdolecek pack->ep_emul_arg = NULL;
458 1.59 jdolecek }
459 1.59 jdolecek
460 1.59 jdolecek /* Linux-specific items */
461 1.59 jdolecek a->a_type = LINUX_AT_CLKTCK;
462 1.59 jdolecek a->a_v = hz;
463 1.59 jdolecek a++;
464 1.59 jdolecek
465 1.59 jdolecek vap = pack->ep_vap;
466 1.59 jdolecek
467 1.59 jdolecek a->a_type = LINUX_AT_UID;
468 1.73 ad a->a_v = kauth_cred_getuid(l->l_cred);
469 1.59 jdolecek a++;
470 1.59 jdolecek
471 1.59 jdolecek a->a_type = LINUX_AT_EUID;
472 1.59 jdolecek if (vap->va_mode & S_ISUID)
473 1.59 jdolecek a->a_v = vap->va_uid;
474 1.59 jdolecek else
475 1.73 ad a->a_v = kauth_cred_geteuid(l->l_cred);
476 1.59 jdolecek a++;
477 1.59 jdolecek
478 1.59 jdolecek a->a_type = LINUX_AT_GID;
479 1.73 ad a->a_v = kauth_cred_getgid(l->l_cred);
480 1.59 jdolecek a++;
481 1.59 jdolecek
482 1.59 jdolecek a->a_type = LINUX_AT_EGID;
483 1.59 jdolecek if (vap->va_mode & S_ISGID)
484 1.59 jdolecek a->a_v = vap->va_gid;
485 1.59 jdolecek else
486 1.73 ad a->a_v = kauth_cred_getegid(l->l_cred);
487 1.59 jdolecek a++;
488 1.59 jdolecek
489 1.59 jdolecek a->a_type = AT_NULL;
490 1.59 jdolecek a->a_v = 0;
491 1.59 jdolecek a++;
492 1.59 jdolecek
493 1.59 jdolecek len = (a - ai) * sizeof(AuxInfo);
494 1.59 jdolecek if ((error = copyout(ai, *stackp, len)) != 0)
495 1.59 jdolecek return error;
496 1.59 jdolecek *stackp += len;
497 1.59 jdolecek
498 1.59 jdolecek return 0;
499 1.59 jdolecek }
500 1.59 jdolecek #endif /* !LINUX_MACHDEP_ELF_COPYARGS */
501