xref: /freebsd/sys/kern/imgact_elf.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /*-
2  * Copyright (c) 2000 David O'Brien
3  * Copyright (c) 1995-1996 S�ren Schmidt
4  * Copyright (c) 1996 Peter Wemm
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer
12  *    in this position and unchanged.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the author may not be used to endorse or promote products
17  *    derived from this software withough specific prior written permission
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  *
30  * $FreeBSD$
31  */
32 
33 #include "opt_rlimit.h"
34 
35 #include <sys/param.h>
36 #include <sys/exec.h>
37 #include <sys/fcntl.h>
38 #include <sys/imgact.h>
39 #include <sys/imgact_elf.h>
40 #include <sys/kernel.h>
41 #include <sys/lock.h>
42 #include <sys/malloc.h>
43 #include <sys/mutex.h>
44 #include <sys/mman.h>
45 #include <sys/namei.h>
46 #include <sys/pioctl.h>
47 #include <sys/proc.h>
48 #include <sys/procfs.h>
49 #include <sys/resourcevar.h>
50 #include <sys/systm.h>
51 #include <sys/signalvar.h>
52 #include <sys/stat.h>
53 #include <sys/sx.h>
54 #include <sys/syscall.h>
55 #include <sys/sysctl.h>
56 #include <sys/sysent.h>
57 #include <sys/vnode.h>
58 
59 #include <vm/vm.h>
60 #include <vm/vm_kern.h>
61 #include <vm/vm_param.h>
62 #include <vm/pmap.h>
63 #include <vm/vm_map.h>
64 #include <vm/vm_object.h>
65 #include <vm/vm_extern.h>
66 
67 #include <machine/elf.h>
68 #include <machine/md_var.h>
69 
70 #define OLD_EI_BRAND	8
71 
72 __ElfType(Brandinfo);
73 __ElfType(Auxargs);
74 
75 static int elf_check_header __P((const Elf_Ehdr *hdr));
76 static int elf_freebsd_fixup __P((register_t **stack_base,
77     struct image_params *imgp));
78 static int elf_load_file __P((struct proc *p, const char *file, u_long *addr,
79     u_long *entry));
80 static int elf_load_section __P((struct proc *p,
81     struct vmspace *vmspace, struct vnode *vp,
82     vm_offset_t offset, caddr_t vmaddr, size_t memsz, size_t filsz,
83     vm_prot_t prot));
84 static int exec_elf_imgact __P((struct image_params *imgp));
85 
86 static int elf_trace = 0;
87 SYSCTL_INT(_debug, OID_AUTO, elf_trace, CTLFLAG_RW, &elf_trace, 0, "");
88 
89 struct sysentvec elf_freebsd_sysvec = {
90         SYS_MAXSYSCALL,
91         sysent,
92         0,
93         0,
94         0,
95         0,
96         0,
97         0,
98         elf_freebsd_fixup,
99         sendsig,
100         sigcode,
101         &szsigcode,
102         0,
103 	"FreeBSD ELF",
104 	elf_coredump,
105 	NULL,
106 	MINSIGSTKSZ
107 };
108 
109 static Elf_Brandinfo freebsd_brand_info = {
110 						ELFOSABI_FREEBSD,
111 						"FreeBSD",
112 						"",
113 						"/usr/libexec/ld-elf.so.1",
114 						&elf_freebsd_sysvec
115 					  };
116 static Elf_Brandinfo *elf_brand_list[MAX_BRANDS] = {
117 							&freebsd_brand_info,
118 							NULL, NULL, NULL,
119 							NULL, NULL, NULL, NULL
120 						    };
121 
122 int
123 elf_insert_brand_entry(Elf_Brandinfo *entry)
124 {
125 	int i;
126 
127 	for (i=1; i<MAX_BRANDS; i++) {
128 		if (elf_brand_list[i] == NULL) {
129 			elf_brand_list[i] = entry;
130 			break;
131 		}
132 	}
133 	if (i == MAX_BRANDS)
134 		return -1;
135 	return 0;
136 }
137 
138 int
139 elf_remove_brand_entry(Elf_Brandinfo *entry)
140 {
141 	int i;
142 
143 	for (i=1; i<MAX_BRANDS; i++) {
144 		if (elf_brand_list[i] == entry) {
145 			elf_brand_list[i] = NULL;
146 			break;
147 		}
148 	}
149 	if (i == MAX_BRANDS)
150 		return -1;
151 	return 0;
152 }
153 
154 int
155 elf_brand_inuse(Elf_Brandinfo *entry)
156 {
157 	struct proc *p;
158 	int rval = FALSE;
159 
160 	sx_slock(&allproc_lock);
161 	LIST_FOREACH(p, &allproc, p_list) {
162 		if (p->p_sysent == entry->sysvec) {
163 			rval = TRUE;
164 			break;
165 		}
166 	}
167 	sx_sunlock(&allproc_lock);
168 
169 	return (rval);
170 }
171 
172 static int
173 elf_check_header(const Elf_Ehdr *hdr)
174 {
175 	if (!IS_ELF(*hdr) ||
176 	    hdr->e_ident[EI_CLASS] != ELF_TARG_CLASS ||
177 	    hdr->e_ident[EI_DATA] != ELF_TARG_DATA ||
178 	    hdr->e_ident[EI_VERSION] != EV_CURRENT)
179 		return ENOEXEC;
180 
181 	if (!ELF_MACHINE_OK(hdr->e_machine))
182 		return ENOEXEC;
183 
184 	if (hdr->e_version != ELF_TARG_VER)
185 		return ENOEXEC;
186 
187 	return 0;
188 }
189 
190 static int
191 elf_load_section(struct proc *p, struct vmspace *vmspace, struct vnode *vp, vm_offset_t offset, caddr_t vmaddr, size_t memsz, size_t filsz, vm_prot_t prot)
192 {
193 	size_t map_len;
194 	vm_offset_t map_addr;
195 	int error, rv;
196 	size_t copy_len;
197 	vm_object_t object;
198 	vm_offset_t file_addr;
199 	vm_offset_t data_buf = 0;
200 
201 	GIANT_REQUIRED;
202 
203 	VOP_GETVOBJECT(vp, &object);
204 	error = 0;
205 
206 	/*
207 	 * It's necessary to fail if the filsz + offset taken from the
208 	 * header is greater than the actual file pager object's size.
209 	 * If we were to allow this, then the vm_map_find() below would
210 	 * walk right off the end of the file object and into the ether.
211 	 *
212 	 * While I'm here, might as well check for something else that
213 	 * is invalid: filsz cannot be greater than memsz.
214 	 */
215 	if ((off_t)filsz + offset > object->un_pager.vnp.vnp_size ||
216 	    filsz > memsz) {
217 		uprintf("elf_load_section: truncated ELF file\n");
218 		return (ENOEXEC);
219 	}
220 
221 	map_addr = trunc_page((vm_offset_t)vmaddr);
222 	file_addr = trunc_page(offset);
223 
224 	/*
225 	 * We have two choices.  We can either clear the data in the last page
226 	 * of an oversized mapping, or we can start the anon mapping a page
227 	 * early and copy the initialized data into that first page.  We
228 	 * choose the second..
229 	 */
230 	if (memsz > filsz)
231 		map_len = trunc_page(offset+filsz) - file_addr;
232 	else
233 		map_len = round_page(offset+filsz) - file_addr;
234 
235 	if (map_len != 0) {
236 		vm_object_reference(object);
237 		vm_map_lock(&vmspace->vm_map);
238 		rv = vm_map_insert(&vmspace->vm_map,
239 				      object,
240 				      file_addr,	/* file offset */
241 				      map_addr,		/* virtual start */
242 				      map_addr + map_len,/* virtual end */
243 				      prot,
244 				      VM_PROT_ALL,
245 				      MAP_COPY_ON_WRITE | MAP_PREFAULT);
246 		vm_map_unlock(&vmspace->vm_map);
247 		if (rv != KERN_SUCCESS) {
248 			vm_object_deallocate(object);
249 			return EINVAL;
250 		}
251 
252 		/* we can stop now if we've covered it all */
253 		if (memsz == filsz) {
254 			return 0;
255 		}
256 	}
257 
258 
259 	/*
260 	 * We have to get the remaining bit of the file into the first part
261 	 * of the oversized map segment.  This is normally because the .data
262 	 * segment in the file is extended to provide bss.  It's a neat idea
263 	 * to try and save a page, but it's a pain in the behind to implement.
264 	 */
265 	copy_len = (offset + filsz) - trunc_page(offset + filsz);
266 	map_addr = trunc_page((vm_offset_t)vmaddr + filsz);
267 	map_len = round_page((vm_offset_t)vmaddr + memsz) - map_addr;
268 
269 	/* This had damn well better be true! */
270         if (map_len != 0) {
271 		vm_map_lock(&vmspace->vm_map);
272 		rv = vm_map_insert(&vmspace->vm_map, NULL, 0,
273 					map_addr, map_addr + map_len,
274 					VM_PROT_ALL, VM_PROT_ALL, 0);
275 		vm_map_unlock(&vmspace->vm_map);
276 		if (rv != KERN_SUCCESS) {
277 			return EINVAL;
278 		}
279 	}
280 
281 	if (copy_len != 0) {
282 		vm_object_reference(object);
283 		rv = vm_map_find(exec_map,
284 				 object,
285 				 trunc_page(offset + filsz),
286 				 &data_buf,
287 				 PAGE_SIZE,
288 				 TRUE,
289 				 VM_PROT_READ,
290 				 VM_PROT_ALL,
291 				 MAP_COPY_ON_WRITE | MAP_PREFAULT_PARTIAL);
292 		if (rv != KERN_SUCCESS) {
293 			vm_object_deallocate(object);
294 			return EINVAL;
295 		}
296 
297 		/* send the page fragment to user space */
298 		error = copyout((caddr_t)data_buf, (caddr_t)map_addr, copy_len);
299 		vm_map_remove(exec_map, data_buf, data_buf + PAGE_SIZE);
300 		if (error) {
301 			return (error);
302 		}
303 	}
304 
305 	/*
306 	 * set it to the specified protection
307 	 */
308 	vm_map_protect(&vmspace->vm_map, map_addr, map_addr + map_len,  prot,
309 		       FALSE);
310 
311 	return error;
312 }
313 
314 /*
315  * Load the file "file" into memory.  It may be either a shared object
316  * or an executable.
317  *
318  * The "addr" reference parameter is in/out.  On entry, it specifies
319  * the address where a shared object should be loaded.  If the file is
320  * an executable, this value is ignored.  On exit, "addr" specifies
321  * where the file was actually loaded.
322  *
323  * The "entry" reference parameter is out only.  On exit, it specifies
324  * the entry point for the loaded file.
325  */
326 static int
327 elf_load_file(struct proc *p, const char *file, u_long *addr, u_long *entry)
328 {
329 	const Elf_Ehdr *hdr = NULL;
330 	const Elf_Phdr *phdr = NULL;
331 	struct nameidata nd;
332 	struct vmspace *vmspace = p->p_vmspace;
333 	struct vattr attr;
334 	struct image_params image_params, *imgp;
335 	vm_prot_t prot;
336 	u_long rbase;
337 	u_long base_addr = 0;
338 	int error, i, numsegs;
339 
340 	imgp = &image_params;
341 	/*
342 	 * Initialize part of the common data
343 	 */
344 	imgp->proc = p;
345 	imgp->uap = NULL;
346 	imgp->attr = &attr;
347 	imgp->firstpage = NULL;
348 	imgp->image_header = (char *)kmem_alloc_wait(exec_map, PAGE_SIZE);
349 
350 	if (imgp->image_header == NULL) {
351 		nd.ni_vp = NULL;
352 		error = ENOMEM;
353 		goto fail;
354 	}
355 
356         NDINIT(&nd, LOOKUP, LOCKLEAF|FOLLOW, UIO_SYSSPACE, file, p);
357 
358 	if ((error = namei(&nd)) != 0) {
359 		nd.ni_vp = NULL;
360 		goto fail;
361 	}
362 	NDFREE(&nd, NDF_ONLY_PNBUF);
363 	imgp->vp = nd.ni_vp;
364 
365 	/*
366 	 * Check permissions, modes, uid, etc on the file, and "open" it.
367 	 */
368 	error = exec_check_permissions(imgp);
369 	if (error) {
370 		VOP_UNLOCK(nd.ni_vp, 0, p);
371 		goto fail;
372 	}
373 
374 	error = exec_map_first_page(imgp);
375 	/*
376 	 * Also make certain that the interpreter stays the same, so set
377 	 * its VTEXT flag, too.
378 	 */
379 	if (error == 0)
380 		nd.ni_vp->v_flag |= VTEXT;
381 	VOP_UNLOCK(nd.ni_vp, 0, p);
382 	if (error)
383                 goto fail;
384 
385 	hdr = (const Elf_Ehdr *)imgp->image_header;
386 	if ((error = elf_check_header(hdr)) != 0)
387 		goto fail;
388 	if (hdr->e_type == ET_DYN)
389 		rbase = *addr;
390 	else if (hdr->e_type == ET_EXEC)
391 		rbase = 0;
392 	else {
393 		error = ENOEXEC;
394 		goto fail;
395 	}
396 
397 	/* Only support headers that fit within first page for now */
398 	if ((hdr->e_phoff > PAGE_SIZE) ||
399 	    (hdr->e_phoff + hdr->e_phentsize * hdr->e_phnum) > PAGE_SIZE) {
400 		error = ENOEXEC;
401 		goto fail;
402 	}
403 
404 	phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff);
405 
406 	for (i = 0, numsegs = 0; i < hdr->e_phnum; i++) {
407 		if (phdr[i].p_type == PT_LOAD) {	/* Loadable segment */
408 			prot = 0;
409 			if (phdr[i].p_flags & PF_X)
410   				prot |= VM_PROT_EXECUTE;
411 			if (phdr[i].p_flags & PF_W)
412   				prot |= VM_PROT_WRITE;
413 			if (phdr[i].p_flags & PF_R)
414   				prot |= VM_PROT_READ;
415 
416 			if ((error = elf_load_section(p, vmspace, nd.ni_vp,
417   						     phdr[i].p_offset,
418   						     (caddr_t)phdr[i].p_vaddr +
419 							rbase,
420   						     phdr[i].p_memsz,
421   						     phdr[i].p_filesz, prot)) != 0)
422 				goto fail;
423 			/*
424 			 * Establish the base address if this is the
425 			 * first segment.
426 			 */
427 			if (numsegs == 0)
428   				base_addr = trunc_page(phdr[i].p_vaddr + rbase);
429 			numsegs++;
430 		}
431 	}
432 	*addr = base_addr;
433 	*entry=(unsigned long)hdr->e_entry + rbase;
434 
435 fail:
436 	if (imgp->firstpage)
437 		exec_unmap_first_page(imgp);
438 	if (imgp->image_header)
439 		kmem_free_wakeup(exec_map, (vm_offset_t)imgp->image_header,
440 			PAGE_SIZE);
441 	if (nd.ni_vp)
442 		vrele(nd.ni_vp);
443 
444 	return error;
445 }
446 
447 /*
448  * non static, as it can be overridden by start_init()
449  */
450 int fallback_elf_brand = -1;
451 SYSCTL_INT(_kern, OID_AUTO, fallback_elf_brand, CTLFLAG_RW,
452 		&fallback_elf_brand, -1,
453 		"ELF brand of last resort");
454 
455 static int
456 exec_elf_imgact(struct image_params *imgp)
457 {
458 	const Elf_Ehdr *hdr = (const Elf_Ehdr *) imgp->image_header;
459 	const Elf_Phdr *phdr;
460 	Elf_Auxargs *elf_auxargs = NULL;
461 	struct vmspace *vmspace;
462 	vm_prot_t prot;
463 	u_long text_size = 0, data_size = 0;
464 	u_long text_addr = 0, data_addr = 0;
465 	u_long addr, entry = 0, proghdr = 0;
466 	int error, i;
467 	const char *interp = NULL;
468 	Elf_Brandinfo *brand_info;
469 	char path[MAXPATHLEN];
470 
471 	GIANT_REQUIRED;
472 
473 	/*
474 	 * Do we have a valid ELF header ?
475 	 */
476 	if (elf_check_header(hdr) != 0 || hdr->e_type != ET_EXEC)
477 		return -1;
478 
479 	/*
480 	 * From here on down, we return an errno, not -1, as we've
481 	 * detected an ELF file.
482 	 */
483 
484 	if ((hdr->e_phoff > PAGE_SIZE) ||
485 	    (hdr->e_phoff + hdr->e_phentsize * hdr->e_phnum) > PAGE_SIZE) {
486 		/* Only support headers in first page for now */
487 		return ENOEXEC;
488 	}
489 	phdr = (const Elf_Phdr*)(imgp->image_header + hdr->e_phoff);
490 
491 	/*
492 	 * From this point on, we may have resources that need to be freed.
493 	 */
494 
495 	/*
496 	 * Yeah, I'm paranoid.  There is every reason in the world to get
497 	 * VTEXT now since from here on out, there are places we can have
498 	 * a context switch.  Better safe than sorry; I really don't want
499 	 * the file to change while it's being loaded.
500 	 */
501 	mtx_lock(&imgp->vp->v_interlock);
502 	imgp->vp->v_flag |= VTEXT;
503 	mtx_unlock(&imgp->vp->v_interlock);
504 
505 	if ((error = exec_extract_strings(imgp)) != 0)
506 		goto fail;
507 
508 	exec_new_vmspace(imgp);
509 
510 	vmspace = imgp->proc->p_vmspace;
511 
512 	for (i = 0; i < hdr->e_phnum; i++) {
513 		switch(phdr[i].p_type) {
514 
515 		case PT_LOAD:	/* Loadable segment */
516 			prot = 0;
517 			if (phdr[i].p_flags & PF_X)
518   				prot |= VM_PROT_EXECUTE;
519 			if (phdr[i].p_flags & PF_W)
520   				prot |= VM_PROT_WRITE;
521 			if (phdr[i].p_flags & PF_R)
522   				prot |= VM_PROT_READ;
523 
524 			if ((error = elf_load_section(imgp->proc,
525 						     vmspace, imgp->vp,
526   						     phdr[i].p_offset,
527   						     (caddr_t)phdr[i].p_vaddr,
528   						     phdr[i].p_memsz,
529   						     phdr[i].p_filesz, prot)) != 0)
530   				goto fail;
531 
532 			/*
533 			 * Is this .text or .data ??
534 			 *
535 			 * We only handle one each of those yet XXX
536 			 */
537 			if (hdr->e_entry >= phdr[i].p_vaddr &&
538 			hdr->e_entry <(phdr[i].p_vaddr+phdr[i].p_memsz)) {
539   				text_addr = trunc_page(phdr[i].p_vaddr);
540   				text_size = round_page(phdr[i].p_memsz +
541 						       phdr[i].p_vaddr -
542 						       text_addr);
543 				entry = (u_long)hdr->e_entry;
544 			} else {
545   				data_addr = trunc_page(phdr[i].p_vaddr);
546   				data_size = round_page(phdr[i].p_memsz +
547 						       phdr[i].p_vaddr -
548 						       data_addr);
549 			}
550 			break;
551 	  	case PT_INTERP:	/* Path to interpreter */
552 			if (phdr[i].p_filesz > MAXPATHLEN ||
553 			    phdr[i].p_offset + phdr[i].p_filesz > PAGE_SIZE) {
554 				error = ENOEXEC;
555 				goto fail;
556 			}
557 			interp = imgp->image_header + phdr[i].p_offset;
558 			break;
559 		case PT_PHDR: 	/* Program header table info */
560 			proghdr = phdr[i].p_vaddr;
561 			break;
562 		default:
563 			break;
564 		}
565 	}
566 
567 	vmspace->vm_tsize = text_size >> PAGE_SHIFT;
568 	vmspace->vm_taddr = (caddr_t)(uintptr_t)text_addr;
569 	vmspace->vm_dsize = data_size >> PAGE_SHIFT;
570 	vmspace->vm_daddr = (caddr_t)(uintptr_t)data_addr;
571 
572 	addr = ELF_RTLD_ADDR(vmspace);
573 
574 	imgp->entry_addr = entry;
575 
576 	brand_info = NULL;
577 
578 	/* We support three types of branding -- (1) the ELF EI_OSABI field
579 	 * that SCO added to the ELF spec, (2) FreeBSD 3.x's traditional string
580 	 * branding w/in the ELF header, and (3) path of the `interp_path'
581 	 * field.  We should also look for an ".note.ABI-tag" ELF section now
582 	 * in all Linux ELF binaries, FreeBSD 4.1+, and some NetBSD ones.
583 	 */
584 
585 	/* If the executable has a brand, search for it in the brand list. */
586 	if (brand_info == NULL) {
587 		for (i = 0;  i < MAX_BRANDS;  i++) {
588 			Elf_Brandinfo *bi = elf_brand_list[i];
589 
590 			if (bi != NULL &&
591 			    (hdr->e_ident[EI_OSABI] == bi->brand
592 			    || 0 ==
593 			    strncmp((const char *)&hdr->e_ident[OLD_EI_BRAND],
594 			    bi->compat_3_brand, strlen(bi->compat_3_brand)))) {
595 				brand_info = bi;
596 				break;
597 			}
598 		}
599 	}
600 
601 	/* Lacking a known brand, search for a recognized interpreter. */
602 	if (brand_info == NULL && interp != NULL) {
603 		for (i = 0;  i < MAX_BRANDS;  i++) {
604 			Elf_Brandinfo *bi = elf_brand_list[i];
605 
606 			if (bi != NULL &&
607 			    strcmp(interp, bi->interp_path) == 0) {
608 				brand_info = bi;
609 				break;
610 			}
611 		}
612 	}
613 
614 	/* Lacking a recognized interpreter, try the default brand */
615 	if (brand_info == NULL) {
616 		for (i = 0; i < MAX_BRANDS; i++) {
617 			Elf_Brandinfo *bi = elf_brand_list[i];
618 
619 			if (bi != NULL && fallback_elf_brand == bi->brand) {
620 				brand_info = bi;
621 				break;
622 			}
623 		}
624 	}
625 
626 	if (brand_info == NULL) {
627 		uprintf("ELF binary type \"%u\" not known.\n",
628 		    hdr->e_ident[EI_OSABI]);
629 		error = ENOEXEC;
630 		goto fail;
631 	}
632 
633 	imgp->proc->p_sysent = brand_info->sysvec;
634 	if (interp != NULL) {
635 	        snprintf(path, sizeof(path), "%s%s",
636 			 brand_info->emul_path, interp);
637 		if ((error = elf_load_file(imgp->proc, path, &addr,
638 					   &imgp->entry_addr)) != 0) {
639 		        if ((error = elf_load_file(imgp->proc, interp, &addr,
640 						   &imgp->entry_addr)) != 0) {
641 			        uprintf("ELF interpreter %s not found\n", path);
642 				goto fail;
643 			}
644                 }
645 	}
646 
647 	/*
648 	 * Construct auxargs table (used by the fixup routine)
649 	 */
650 	elf_auxargs = malloc(sizeof(Elf_Auxargs), M_TEMP, M_WAITOK);
651 	elf_auxargs->execfd = -1;
652 	elf_auxargs->phdr = proghdr;
653 	elf_auxargs->phent = hdr->e_phentsize;
654 	elf_auxargs->phnum = hdr->e_phnum;
655 	elf_auxargs->pagesz = PAGE_SIZE;
656 	elf_auxargs->base = addr;
657 	elf_auxargs->flags = 0;
658 	elf_auxargs->entry = entry;
659 	elf_auxargs->trace = elf_trace;
660 
661 	imgp->auxargs = elf_auxargs;
662 	imgp->interpreted = 0;
663 
664 fail:
665 	return error;
666 }
667 
668 static int
669 elf_freebsd_fixup(register_t **stack_base, struct image_params *imgp)
670 {
671 	Elf_Auxargs *args = (Elf_Auxargs *)imgp->auxargs;
672 	register_t *pos;
673 
674 	pos = *stack_base + (imgp->argc + imgp->envc + 2);
675 
676 	if (args->trace) {
677 		AUXARGS_ENTRY(pos, AT_DEBUG, 1);
678 	}
679 	if (args->execfd != -1) {
680 		AUXARGS_ENTRY(pos, AT_EXECFD, args->execfd);
681 	}
682 	AUXARGS_ENTRY(pos, AT_PHDR, args->phdr);
683 	AUXARGS_ENTRY(pos, AT_PHENT, args->phent);
684 	AUXARGS_ENTRY(pos, AT_PHNUM, args->phnum);
685 	AUXARGS_ENTRY(pos, AT_PAGESZ, args->pagesz);
686 	AUXARGS_ENTRY(pos, AT_FLAGS, args->flags);
687 	AUXARGS_ENTRY(pos, AT_ENTRY, args->entry);
688 	AUXARGS_ENTRY(pos, AT_BASE, args->base);
689 	AUXARGS_ENTRY(pos, AT_NULL, 0);
690 
691 	free(imgp->auxargs, M_TEMP);
692 	imgp->auxargs = NULL;
693 
694 	(*stack_base)--;
695 	suword(*stack_base, (long) imgp->argc);
696 	return 0;
697 }
698 
699 /*
700  * Code for generating ELF core dumps.
701  */
702 
703 typedef void (*segment_callback) __P((vm_map_entry_t, void *));
704 
705 /* Closure for cb_put_phdr(). */
706 struct phdr_closure {
707 	Elf_Phdr *phdr;		/* Program header to fill in */
708 	Elf_Off offset;		/* Offset of segment in core file */
709 };
710 
711 /* Closure for cb_size_segment(). */
712 struct sseg_closure {
713 	int count;		/* Count of writable segments. */
714 	size_t size;		/* Total size of all writable segments. */
715 };
716 
717 static void cb_put_phdr __P((vm_map_entry_t, void *));
718 static void cb_size_segment __P((vm_map_entry_t, void *));
719 static void each_writable_segment __P((struct proc *, segment_callback,
720     void *));
721 static int elf_corehdr __P((struct proc *, struct vnode *, struct ucred *,
722     int, void *, size_t));
723 static void elf_puthdr __P((struct proc *, void *, size_t *,
724     const prstatus_t *, const prfpregset_t *, const prpsinfo_t *, int));
725 static void elf_putnote __P((void *, size_t *, const char *, int,
726     const void *, size_t));
727 
728 extern int osreldate;
729 
730 int
731 elf_coredump(p, vp, limit)
732 	register struct proc *p;
733 	register struct vnode *vp;
734 	off_t limit;
735 {
736 	register struct ucred *cred = p->p_ucred;
737 	int error = 0;
738 	struct sseg_closure seginfo;
739 	void *hdr;
740 	size_t hdrsize;
741 
742 	/* Size the program segments. */
743 	seginfo.count = 0;
744 	seginfo.size = 0;
745 	each_writable_segment(p, cb_size_segment, &seginfo);
746 
747 	/*
748 	 * Calculate the size of the core file header area by making
749 	 * a dry run of generating it.  Nothing is written, but the
750 	 * size is calculated.
751 	 */
752 	hdrsize = 0;
753 	elf_puthdr((struct proc *)NULL, (void *)NULL, &hdrsize,
754 	    (const prstatus_t *)NULL, (const prfpregset_t *)NULL,
755 	    (const prpsinfo_t *)NULL, seginfo.count);
756 
757 	if (hdrsize + seginfo.size >= limit)
758 		return (EFAULT);
759 
760 	/*
761 	 * Allocate memory for building the header, fill it up,
762 	 * and write it out.
763 	 */
764 	hdr = malloc(hdrsize, M_TEMP, M_WAITOK);
765 	if (hdr == NULL) {
766 		return EINVAL;
767 	}
768 	error = elf_corehdr(p, vp, cred, seginfo.count, hdr, hdrsize);
769 
770 	/* Write the contents of all of the writable segments. */
771 	if (error == 0) {
772 		Elf_Phdr *php;
773 		off_t offset;
774 		int i;
775 
776 		php = (Elf_Phdr *)((char *)hdr + sizeof(Elf_Ehdr)) + 1;
777 		offset = hdrsize;
778 		for (i = 0;  i < seginfo.count;  i++) {
779 			error = vn_rdwr(UIO_WRITE, vp, (caddr_t)php->p_vaddr,
780 			    php->p_filesz, offset, UIO_USERSPACE,
781 			    IO_NODELOCKED|IO_UNIT, cred, (int *)NULL, p);
782 			if (error != 0)
783 				break;
784 			offset += php->p_filesz;
785 			php++;
786 		}
787 	}
788 	free(hdr, M_TEMP);
789 
790 	return error;
791 }
792 
793 /*
794  * A callback for each_writable_segment() to write out the segment's
795  * program header entry.
796  */
797 static void
798 cb_put_phdr(entry, closure)
799 	vm_map_entry_t entry;
800 	void *closure;
801 {
802 	struct phdr_closure *phc = (struct phdr_closure *)closure;
803 	Elf_Phdr *phdr = phc->phdr;
804 
805 	phc->offset = round_page(phc->offset);
806 
807 	phdr->p_type = PT_LOAD;
808 	phdr->p_offset = phc->offset;
809 	phdr->p_vaddr = entry->start;
810 	phdr->p_paddr = 0;
811 	phdr->p_filesz = phdr->p_memsz = entry->end - entry->start;
812 	phdr->p_align = PAGE_SIZE;
813 	phdr->p_flags = 0;
814 	if (entry->protection & VM_PROT_READ)
815 		phdr->p_flags |= PF_R;
816 	if (entry->protection & VM_PROT_WRITE)
817 		phdr->p_flags |= PF_W;
818 	if (entry->protection & VM_PROT_EXECUTE)
819 		phdr->p_flags |= PF_X;
820 
821 	phc->offset += phdr->p_filesz;
822 	phc->phdr++;
823 }
824 
825 /*
826  * A callback for each_writable_segment() to gather information about
827  * the number of segments and their total size.
828  */
829 static void
830 cb_size_segment(entry, closure)
831 	vm_map_entry_t entry;
832 	void *closure;
833 {
834 	struct sseg_closure *ssc = (struct sseg_closure *)closure;
835 
836 	ssc->count++;
837 	ssc->size += entry->end - entry->start;
838 }
839 
840 /*
841  * For each writable segment in the process's memory map, call the given
842  * function with a pointer to the map entry and some arbitrary
843  * caller-supplied data.
844  */
845 static void
846 each_writable_segment(p, func, closure)
847 	struct proc *p;
848 	segment_callback func;
849 	void *closure;
850 {
851 	vm_map_t map = &p->p_vmspace->vm_map;
852 	vm_map_entry_t entry;
853 
854 	for (entry = map->header.next;  entry != &map->header;
855 	    entry = entry->next) {
856 		vm_object_t obj;
857 
858 		if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) ||
859 		    (entry->protection & (VM_PROT_READ|VM_PROT_WRITE)) !=
860 		    (VM_PROT_READ|VM_PROT_WRITE))
861 			continue;
862 
863 		/*
864 		** Dont include memory segment in the coredump if
865 		** MAP_NOCORE is set in mmap(2) or MADV_NOCORE in
866 		** madvise(2).
867 		*/
868 		if (entry->eflags & MAP_ENTRY_NOCOREDUMP)
869 			continue;
870 
871 		if ((obj = entry->object.vm_object) == NULL)
872 			continue;
873 
874 		/* Find the deepest backing object. */
875 		while (obj->backing_object != NULL)
876 			obj = obj->backing_object;
877 
878 		/* Ignore memory-mapped devices and such things. */
879 		if (obj->type != OBJT_DEFAULT &&
880 		    obj->type != OBJT_SWAP &&
881 		    obj->type != OBJT_VNODE)
882 			continue;
883 
884 		(*func)(entry, closure);
885 	}
886 }
887 
888 /*
889  * Write the core file header to the file, including padding up to
890  * the page boundary.
891  */
892 static int
893 elf_corehdr(p, vp, cred, numsegs, hdr, hdrsize)
894 	struct proc *p;
895 	struct vnode *vp;
896 	struct ucred *cred;
897 	int numsegs;
898 	size_t hdrsize;
899 	void *hdr;
900 {
901 	size_t off;
902 	prstatus_t status;
903 	prfpregset_t fpregset;
904 	prpsinfo_t psinfo;
905 
906 	/* Gather the information for the header. */
907 	bzero(&status, sizeof status);
908 	status.pr_version = PRSTATUS_VERSION;
909 	status.pr_statussz = sizeof(prstatus_t);
910 	status.pr_gregsetsz = sizeof(gregset_t);
911 	status.pr_fpregsetsz = sizeof(fpregset_t);
912 	status.pr_osreldate = osreldate;
913 	status.pr_cursig = p->p_sig;
914 	status.pr_pid = p->p_pid;
915 	fill_regs(p, &status.pr_reg);
916 
917 	fill_fpregs(p, &fpregset);
918 
919 	bzero(&psinfo, sizeof psinfo);
920 	psinfo.pr_version = PRPSINFO_VERSION;
921 	psinfo.pr_psinfosz = sizeof(prpsinfo_t);
922 	strncpy(psinfo.pr_fname, p->p_comm, MAXCOMLEN);
923 	/* XXX - We don't fill in the command line arguments properly yet. */
924 	strncpy(psinfo.pr_psargs, p->p_comm, PRARGSZ);
925 
926 	/* Fill in the header. */
927 	bzero(hdr, hdrsize);
928 	off = 0;
929 	elf_puthdr(p, hdr, &off, &status, &fpregset, &psinfo, numsegs);
930 
931 	/* Write it to the core file. */
932 	return vn_rdwr(UIO_WRITE, vp, hdr, hdrsize, (off_t)0,
933 	    UIO_SYSSPACE, IO_NODELOCKED|IO_UNIT, cred, NULL, p);
934 }
935 
936 static void
937 elf_puthdr(struct proc *p, void *dst, size_t *off, const prstatus_t *status,
938     const prfpregset_t *fpregset, const prpsinfo_t *psinfo, int numsegs)
939 {
940 	size_t ehoff;
941 	size_t phoff;
942 	size_t noteoff;
943 	size_t notesz;
944 
945 	ehoff = *off;
946 	*off += sizeof(Elf_Ehdr);
947 
948 	phoff = *off;
949 	*off += (numsegs + 1) * sizeof(Elf_Phdr);
950 
951 	noteoff = *off;
952 	elf_putnote(dst, off, "FreeBSD", NT_PRSTATUS, status,
953 	    sizeof *status);
954 	elf_putnote(dst, off, "FreeBSD", NT_FPREGSET, fpregset,
955 	    sizeof *fpregset);
956 	elf_putnote(dst, off, "FreeBSD", NT_PRPSINFO, psinfo,
957 	    sizeof *psinfo);
958 	notesz = *off - noteoff;
959 
960 	/* Align up to a page boundary for the program segments. */
961 	*off = round_page(*off);
962 
963 	if (dst != NULL) {
964 		Elf_Ehdr *ehdr;
965 		Elf_Phdr *phdr;
966 		struct phdr_closure phc;
967 
968 		/*
969 		 * Fill in the ELF header.
970 		 */
971 		ehdr = (Elf_Ehdr *)((char *)dst + ehoff);
972 		ehdr->e_ident[EI_MAG0] = ELFMAG0;
973 		ehdr->e_ident[EI_MAG1] = ELFMAG1;
974 		ehdr->e_ident[EI_MAG2] = ELFMAG2;
975 		ehdr->e_ident[EI_MAG3] = ELFMAG3;
976 		ehdr->e_ident[EI_CLASS] = ELF_CLASS;
977 		ehdr->e_ident[EI_DATA] = ELF_DATA;
978 		ehdr->e_ident[EI_VERSION] = EV_CURRENT;
979 		ehdr->e_ident[EI_OSABI] = ELFOSABI_FREEBSD;
980 		ehdr->e_ident[EI_ABIVERSION] = 0;
981 		ehdr->e_ident[EI_PAD] = 0;
982 		ehdr->e_type = ET_CORE;
983 		ehdr->e_machine = ELF_ARCH;
984 		ehdr->e_version = EV_CURRENT;
985 		ehdr->e_entry = 0;
986 		ehdr->e_phoff = phoff;
987 		ehdr->e_flags = 0;
988 		ehdr->e_ehsize = sizeof(Elf_Ehdr);
989 		ehdr->e_phentsize = sizeof(Elf_Phdr);
990 		ehdr->e_phnum = numsegs + 1;
991 		ehdr->e_shentsize = sizeof(Elf_Shdr);
992 		ehdr->e_shnum = 0;
993 		ehdr->e_shstrndx = SHN_UNDEF;
994 
995 		/*
996 		 * Fill in the program header entries.
997 		 */
998 		phdr = (Elf_Phdr *)((char *)dst + phoff);
999 
1000 		/* The note segement. */
1001 		phdr->p_type = PT_NOTE;
1002 		phdr->p_offset = noteoff;
1003 		phdr->p_vaddr = 0;
1004 		phdr->p_paddr = 0;
1005 		phdr->p_filesz = notesz;
1006 		phdr->p_memsz = 0;
1007 		phdr->p_flags = 0;
1008 		phdr->p_align = 0;
1009 		phdr++;
1010 
1011 		/* All the writable segments from the program. */
1012 		phc.phdr = phdr;
1013 		phc.offset = *off;
1014 		each_writable_segment(p, cb_put_phdr, &phc);
1015 	}
1016 }
1017 
1018 static void
1019 elf_putnote(void *dst, size_t *off, const char *name, int type,
1020     const void *desc, size_t descsz)
1021 {
1022 	Elf_Note note;
1023 
1024 	note.n_namesz = strlen(name) + 1;
1025 	note.n_descsz = descsz;
1026 	note.n_type = type;
1027 	if (dst != NULL)
1028 		bcopy(&note, (char *)dst + *off, sizeof note);
1029 	*off += sizeof note;
1030 	if (dst != NULL)
1031 		bcopy(name, (char *)dst + *off, note.n_namesz);
1032 	*off += roundup2(note.n_namesz, sizeof(Elf_Size));
1033 	if (dst != NULL)
1034 		bcopy(desc, (char *)dst + *off, note.n_descsz);
1035 	*off += roundup2(note.n_descsz, sizeof(Elf_Size));
1036 }
1037 
1038 /*
1039  * Tell kern_execve.c about it, with a little help from the linker.
1040  */
1041 static struct execsw elf_execsw = {exec_elf_imgact, "ELF"};
1042 EXEC_SET(elf, elf_execsw);
1043