]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/imgact_elf.c
MFC r344705:
[FreeBSD/FreeBSD.git] / sys / kern / imgact_elf.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 2017 Dell EMC
5  * Copyright (c) 2000-2001, 2003 David O'Brien
6  * Copyright (c) 1995-1996 Søren Schmidt
7  * Copyright (c) 1996 Peter Wemm
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer
15  *    in this position and unchanged.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. The name of the author may not be used to endorse or promote products
20  *    derived from this software without specific prior written permission
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36
37 #include "opt_capsicum.h"
38
39 #include <sys/param.h>
40 #include <sys/capsicum.h>
41 #include <sys/compressor.h>
42 #include <sys/exec.h>
43 #include <sys/fcntl.h>
44 #include <sys/imgact.h>
45 #include <sys/imgact_elf.h>
46 #include <sys/jail.h>
47 #include <sys/kernel.h>
48 #include <sys/lock.h>
49 #include <sys/malloc.h>
50 #include <sys/mount.h>
51 #include <sys/mman.h>
52 #include <sys/namei.h>
53 #include <sys/pioctl.h>
54 #include <sys/proc.h>
55 #include <sys/procfs.h>
56 #include <sys/ptrace.h>
57 #include <sys/racct.h>
58 #include <sys/resourcevar.h>
59 #include <sys/rwlock.h>
60 #include <sys/sbuf.h>
61 #include <sys/sf_buf.h>
62 #include <sys/smp.h>
63 #include <sys/systm.h>
64 #include <sys/signalvar.h>
65 #include <sys/stat.h>
66 #include <sys/sx.h>
67 #include <sys/syscall.h>
68 #include <sys/sysctl.h>
69 #include <sys/sysent.h>
70 #include <sys/vnode.h>
71 #include <sys/syslog.h>
72 #include <sys/eventhandler.h>
73 #include <sys/user.h>
74
75 #include <vm/vm.h>
76 #include <vm/vm_kern.h>
77 #include <vm/vm_param.h>
78 #include <vm/pmap.h>
79 #include <vm/vm_map.h>
80 #include <vm/vm_object.h>
81 #include <vm/vm_extern.h>
82
83 #include <machine/elf.h>
84 #include <machine/md_var.h>
85
86 #define ELF_NOTE_ROUNDSIZE      4
87 #define OLD_EI_BRAND    8
88
89 static int __elfN(check_header)(const Elf_Ehdr *hdr);
90 static Elf_Brandinfo *__elfN(get_brandinfo)(struct image_params *imgp,
91     const char *interp, int interp_name_len, int32_t *osrel, uint32_t *fctl0);
92 static int __elfN(load_file)(struct proc *p, const char *file, u_long *addr,
93     u_long *entry);
94 static int __elfN(load_section)(struct image_params *imgp, vm_ooffset_t offset,
95     caddr_t vmaddr, size_t memsz, size_t filsz, vm_prot_t prot);
96 static int __CONCAT(exec_, __elfN(imgact))(struct image_params *imgp);
97 static bool __elfN(freebsd_trans_osrel)(const Elf_Note *note,
98     int32_t *osrel);
99 static bool kfreebsd_trans_osrel(const Elf_Note *note, int32_t *osrel);
100 static boolean_t __elfN(check_note)(struct image_params *imgp,
101     Elf_Brandnote *checknote, int32_t *osrel, uint32_t *fctl0);
102 static vm_prot_t __elfN(trans_prot)(Elf_Word);
103 static Elf_Word __elfN(untrans_prot)(vm_prot_t);
104
105 SYSCTL_NODE(_kern, OID_AUTO, __CONCAT(elf, __ELF_WORD_SIZE), CTLFLAG_RW, 0,
106     "");
107
108 #define CORE_BUF_SIZE   (16 * 1024)
109
110 int __elfN(fallback_brand) = -1;
111 SYSCTL_INT(__CONCAT(_kern_elf, __ELF_WORD_SIZE), OID_AUTO,
112     fallback_brand, CTLFLAG_RWTUN, &__elfN(fallback_brand), 0,
113     __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE)) " brand of last resort");
114
115 static int elf_legacy_coredump = 0;
116 SYSCTL_INT(_debug, OID_AUTO, __elfN(legacy_coredump), CTLFLAG_RW, 
117     &elf_legacy_coredump, 0,
118     "include all and only RW pages in core dumps");
119
120 int __elfN(nxstack) =
121 #if defined(__amd64__) || defined(__powerpc64__) /* both 64 and 32 bit */ || \
122     (defined(__arm__) && __ARM_ARCH >= 7) || defined(__aarch64__)
123         1;
124 #else
125         0;
126 #endif
127 SYSCTL_INT(__CONCAT(_kern_elf, __ELF_WORD_SIZE), OID_AUTO,
128     nxstack, CTLFLAG_RW, &__elfN(nxstack), 0,
129     __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE)) ": enable non-executable stack");
130
131 #if __ELF_WORD_SIZE == 32
132 #if defined(__amd64__)
133 int i386_read_exec = 0;
134 SYSCTL_INT(_kern_elf32, OID_AUTO, read_exec, CTLFLAG_RW, &i386_read_exec, 0,
135     "enable execution from readable segments");
136 #endif
137 #endif
138
139 SYSCTL_NODE(__CONCAT(_kern_elf, __ELF_WORD_SIZE), OID_AUTO, aslr, CTLFLAG_RW, 0,
140     "");
141 #define ASLR_NODE_OID   __CONCAT(__CONCAT(_kern_elf, __ELF_WORD_SIZE), _aslr)
142
143 static int __elfN(aslr_enabled) = 0;
144 SYSCTL_INT(ASLR_NODE_OID, OID_AUTO, enable, CTLFLAG_RWTUN,
145     &__elfN(aslr_enabled), 0,
146     __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE))
147     ": enable address map randomization");
148
149 static int __elfN(pie_aslr_enabled) = 0;
150 SYSCTL_INT(ASLR_NODE_OID, OID_AUTO, pie_enable, CTLFLAG_RWTUN,
151     &__elfN(pie_aslr_enabled), 0,
152     __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE))
153     ": enable address map randomization for PIE binaries");
154
155 static int __elfN(aslr_honor_sbrk) = 1;
156 SYSCTL_INT(ASLR_NODE_OID, OID_AUTO, honor_sbrk, CTLFLAG_RW,
157     &__elfN(aslr_honor_sbrk), 0,
158     __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE)) ": assume sbrk is used");
159
160 static Elf_Brandinfo *elf_brand_list[MAX_BRANDS];
161
162 #define trunc_page_ps(va, ps)   rounddown2(va, ps)
163 #define round_page_ps(va, ps)   roundup2(va, ps)
164 #define aligned(a, t)   (trunc_page_ps((u_long)(a), sizeof(t)) == (u_long)(a))
165
166 static const char FREEBSD_ABI_VENDOR[] = "FreeBSD";
167
168 Elf_Brandnote __elfN(freebsd_brandnote) = {
169         .hdr.n_namesz   = sizeof(FREEBSD_ABI_VENDOR),
170         .hdr.n_descsz   = sizeof(int32_t),
171         .hdr.n_type     = NT_FREEBSD_ABI_TAG,
172         .vendor         = FREEBSD_ABI_VENDOR,
173         .flags          = BN_TRANSLATE_OSREL,
174         .trans_osrel    = __elfN(freebsd_trans_osrel)
175 };
176
177 static bool
178 __elfN(freebsd_trans_osrel)(const Elf_Note *note, int32_t *osrel)
179 {
180         uintptr_t p;
181
182         p = (uintptr_t)(note + 1);
183         p += roundup2(note->n_namesz, ELF_NOTE_ROUNDSIZE);
184         *osrel = *(const int32_t *)(p);
185
186         return (true);
187 }
188
189 static const char GNU_ABI_VENDOR[] = "GNU";
190 static int GNU_KFREEBSD_ABI_DESC = 3;
191
192 Elf_Brandnote __elfN(kfreebsd_brandnote) = {
193         .hdr.n_namesz   = sizeof(GNU_ABI_VENDOR),
194         .hdr.n_descsz   = 16,   /* XXX at least 16 */
195         .hdr.n_type     = 1,
196         .vendor         = GNU_ABI_VENDOR,
197         .flags          = BN_TRANSLATE_OSREL,
198         .trans_osrel    = kfreebsd_trans_osrel
199 };
200
201 static bool
202 kfreebsd_trans_osrel(const Elf_Note *note, int32_t *osrel)
203 {
204         const Elf32_Word *desc;
205         uintptr_t p;
206
207         p = (uintptr_t)(note + 1);
208         p += roundup2(note->n_namesz, ELF_NOTE_ROUNDSIZE);
209
210         desc = (const Elf32_Word *)p;
211         if (desc[0] != GNU_KFREEBSD_ABI_DESC)
212                 return (false);
213
214         /*
215          * Debian GNU/kFreeBSD embed the earliest compatible kernel version
216          * (__FreeBSD_version: <major><two digit minor>Rxx) in the LSB way.
217          */
218         *osrel = desc[1] * 100000 + desc[2] * 1000 + desc[3];
219
220         return (true);
221 }
222
223 int
224 __elfN(insert_brand_entry)(Elf_Brandinfo *entry)
225 {
226         int i;
227
228         for (i = 0; i < MAX_BRANDS; i++) {
229                 if (elf_brand_list[i] == NULL) {
230                         elf_brand_list[i] = entry;
231                         break;
232                 }
233         }
234         if (i == MAX_BRANDS) {
235                 printf("WARNING: %s: could not insert brandinfo entry: %p\n",
236                         __func__, entry);
237                 return (-1);
238         }
239         return (0);
240 }
241
242 int
243 __elfN(remove_brand_entry)(Elf_Brandinfo *entry)
244 {
245         int i;
246
247         for (i = 0; i < MAX_BRANDS; i++) {
248                 if (elf_brand_list[i] == entry) {
249                         elf_brand_list[i] = NULL;
250                         break;
251                 }
252         }
253         if (i == MAX_BRANDS)
254                 return (-1);
255         return (0);
256 }
257
258 int
259 __elfN(brand_inuse)(Elf_Brandinfo *entry)
260 {
261         struct proc *p;
262         int rval = FALSE;
263
264         sx_slock(&allproc_lock);
265         FOREACH_PROC_IN_SYSTEM(p) {
266                 if (p->p_sysent == entry->sysvec) {
267                         rval = TRUE;
268                         break;
269                 }
270         }
271         sx_sunlock(&allproc_lock);
272
273         return (rval);
274 }
275
276 static Elf_Brandinfo *
277 __elfN(get_brandinfo)(struct image_params *imgp, const char *interp,
278     int interp_name_len, int32_t *osrel, uint32_t *fctl0)
279 {
280         const Elf_Ehdr *hdr = (const Elf_Ehdr *)imgp->image_header;
281         Elf_Brandinfo *bi, *bi_m;
282         boolean_t ret;
283         int i;
284
285         /*
286          * We support four types of branding -- (1) the ELF EI_OSABI field
287          * that SCO added to the ELF spec, (2) FreeBSD 3.x's traditional string
288          * branding w/in the ELF header, (3) path of the `interp_path'
289          * field, and (4) the ".note.ABI-tag" ELF section.
290          */
291
292         /* Look for an ".note.ABI-tag" ELF section */
293         bi_m = NULL;
294         for (i = 0; i < MAX_BRANDS; i++) {
295                 bi = elf_brand_list[i];
296                 if (bi == NULL)
297                         continue;
298                 if (interp != NULL && (bi->flags & BI_BRAND_ONLY_STATIC) != 0)
299                         continue;
300                 if (hdr->e_machine == bi->machine && (bi->flags &
301                     (BI_BRAND_NOTE|BI_BRAND_NOTE_MANDATORY)) != 0) {
302                         ret = __elfN(check_note)(imgp, bi->brand_note, osrel,
303                             fctl0);
304                         /* Give brand a chance to veto check_note's guess */
305                         if (ret && bi->header_supported)
306                                 ret = bi->header_supported(imgp);
307                         /*
308                          * If note checker claimed the binary, but the
309                          * interpreter path in the image does not
310                          * match default one for the brand, try to
311                          * search for other brands with the same
312                          * interpreter.  Either there is better brand
313                          * with the right interpreter, or, failing
314                          * this, we return first brand which accepted
315                          * our note and, optionally, header.
316                          */
317                         if (ret && bi_m == NULL && interp != NULL &&
318                             (bi->interp_path == NULL ||
319                             (strlen(bi->interp_path) + 1 != interp_name_len ||
320                             strncmp(interp, bi->interp_path, interp_name_len)
321                             != 0))) {
322                                 bi_m = bi;
323                                 ret = 0;
324                         }
325                         if (ret)
326                                 return (bi);
327                 }
328         }
329         if (bi_m != NULL)
330                 return (bi_m);
331
332         /* If the executable has a brand, search for it in the brand list. */
333         for (i = 0; i < MAX_BRANDS; i++) {
334                 bi = elf_brand_list[i];
335                 if (bi == NULL || (bi->flags & BI_BRAND_NOTE_MANDATORY) != 0 ||
336                     (interp != NULL && (bi->flags & BI_BRAND_ONLY_STATIC) != 0))
337                         continue;
338                 if (hdr->e_machine == bi->machine &&
339                     (hdr->e_ident[EI_OSABI] == bi->brand ||
340                     (bi->compat_3_brand != NULL &&
341                     strcmp((const char *)&hdr->e_ident[OLD_EI_BRAND],
342                     bi->compat_3_brand) == 0))) {
343                         /* Looks good, but give brand a chance to veto */
344                         if (bi->header_supported == NULL ||
345                             bi->header_supported(imgp)) {
346                                 /*
347                                  * Again, prefer strictly matching
348                                  * interpreter path.
349                                  */
350                                 if (interp_name_len == 0 &&
351                                     bi->interp_path == NULL)
352                                         return (bi);
353                                 if (bi->interp_path != NULL &&
354                                     strlen(bi->interp_path) + 1 ==
355                                     interp_name_len && strncmp(interp,
356                                     bi->interp_path, interp_name_len) == 0)
357                                         return (bi);
358                                 if (bi_m == NULL)
359                                         bi_m = bi;
360                         }
361                 }
362         }
363         if (bi_m != NULL)
364                 return (bi_m);
365
366         /* No known brand, see if the header is recognized by any brand */
367         for (i = 0; i < MAX_BRANDS; i++) {
368                 bi = elf_brand_list[i];
369                 if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY ||
370                     bi->header_supported == NULL)
371                         continue;
372                 if (hdr->e_machine == bi->machine) {
373                         ret = bi->header_supported(imgp);
374                         if (ret)
375                                 return (bi);
376                 }
377         }
378
379         /* Lacking a known brand, search for a recognized interpreter. */
380         if (interp != NULL) {
381                 for (i = 0; i < MAX_BRANDS; i++) {
382                         bi = elf_brand_list[i];
383                         if (bi == NULL || (bi->flags &
384                             (BI_BRAND_NOTE_MANDATORY | BI_BRAND_ONLY_STATIC))
385                             != 0)
386                                 continue;
387                         if (hdr->e_machine == bi->machine &&
388                             bi->interp_path != NULL &&
389                             /* ELF image p_filesz includes terminating zero */
390                             strlen(bi->interp_path) + 1 == interp_name_len &&
391                             strncmp(interp, bi->interp_path, interp_name_len)
392                             == 0 && (bi->header_supported == NULL ||
393                             bi->header_supported(imgp)))
394                                 return (bi);
395                 }
396         }
397
398         /* Lacking a recognized interpreter, try the default brand */
399         for (i = 0; i < MAX_BRANDS; i++) {
400                 bi = elf_brand_list[i];
401                 if (bi == NULL || (bi->flags & BI_BRAND_NOTE_MANDATORY) != 0 ||
402                     (interp != NULL && (bi->flags & BI_BRAND_ONLY_STATIC) != 0))
403                         continue;
404                 if (hdr->e_machine == bi->machine &&
405                     __elfN(fallback_brand) == bi->brand &&
406                     (bi->header_supported == NULL ||
407                     bi->header_supported(imgp)))
408                         return (bi);
409         }
410         return (NULL);
411 }
412
413 static int
414 __elfN(check_header)(const Elf_Ehdr *hdr)
415 {
416         Elf_Brandinfo *bi;
417         int i;
418
419         if (!IS_ELF(*hdr) ||
420             hdr->e_ident[EI_CLASS] != ELF_TARG_CLASS ||
421             hdr->e_ident[EI_DATA] != ELF_TARG_DATA ||
422             hdr->e_ident[EI_VERSION] != EV_CURRENT ||
423             hdr->e_phentsize != sizeof(Elf_Phdr) ||
424             hdr->e_version != ELF_TARG_VER)
425                 return (ENOEXEC);
426
427         /*
428          * Make sure we have at least one brand for this machine.
429          */
430
431         for (i = 0; i < MAX_BRANDS; i++) {
432                 bi = elf_brand_list[i];
433                 if (bi != NULL && bi->machine == hdr->e_machine)
434                         break;
435         }
436         if (i == MAX_BRANDS)
437                 return (ENOEXEC);
438
439         return (0);
440 }
441
442 static int
443 __elfN(map_partial)(vm_map_t map, vm_object_t object, vm_ooffset_t offset,
444     vm_offset_t start, vm_offset_t end, vm_prot_t prot)
445 {
446         struct sf_buf *sf;
447         int error;
448         vm_offset_t off;
449
450         /*
451          * Create the page if it doesn't exist yet. Ignore errors.
452          */
453         vm_map_fixed(map, NULL, 0, trunc_page(start), round_page(end) -
454             trunc_page(start), VM_PROT_ALL, VM_PROT_ALL, MAP_CHECK_EXCL);
455
456         /*
457          * Find the page from the underlying object.
458          */
459         if (object != NULL) {
460                 sf = vm_imgact_map_page(object, offset);
461                 if (sf == NULL)
462                         return (KERN_FAILURE);
463                 off = offset - trunc_page(offset);
464                 error = copyout((caddr_t)sf_buf_kva(sf) + off, (caddr_t)start,
465                     end - start);
466                 vm_imgact_unmap_page(sf);
467                 if (error != 0)
468                         return (KERN_FAILURE);
469         }
470
471         return (KERN_SUCCESS);
472 }
473
474 static int
475 __elfN(map_insert)(struct image_params *imgp, vm_map_t map, vm_object_t object,
476     vm_ooffset_t offset, vm_offset_t start, vm_offset_t end, vm_prot_t prot,
477     int cow)
478 {
479         struct sf_buf *sf;
480         vm_offset_t off;
481         vm_size_t sz;
482         int error, locked, rv;
483
484         if (start != trunc_page(start)) {
485                 rv = __elfN(map_partial)(map, object, offset, start,
486                     round_page(start), prot);
487                 if (rv != KERN_SUCCESS)
488                         return (rv);
489                 offset += round_page(start) - start;
490                 start = round_page(start);
491         }
492         if (end != round_page(end)) {
493                 rv = __elfN(map_partial)(map, object, offset +
494                     trunc_page(end) - start, trunc_page(end), end, prot);
495                 if (rv != KERN_SUCCESS)
496                         return (rv);
497                 end = trunc_page(end);
498         }
499         if (start >= end)
500                 return (KERN_SUCCESS);
501         if ((offset & PAGE_MASK) != 0) {
502                 /*
503                  * The mapping is not page aligned.  This means that we have
504                  * to copy the data.
505                  */
506                 rv = vm_map_fixed(map, NULL, 0, start, end - start,
507                     prot | VM_PROT_WRITE, VM_PROT_ALL, MAP_CHECK_EXCL);
508                 if (rv != KERN_SUCCESS)
509                         return (rv);
510                 if (object == NULL)
511                         return (KERN_SUCCESS);
512                 for (; start < end; start += sz) {
513                         sf = vm_imgact_map_page(object, offset);
514                         if (sf == NULL)
515                                 return (KERN_FAILURE);
516                         off = offset - trunc_page(offset);
517                         sz = end - start;
518                         if (sz > PAGE_SIZE - off)
519                                 sz = PAGE_SIZE - off;
520                         error = copyout((caddr_t)sf_buf_kva(sf) + off,
521                             (caddr_t)start, sz);
522                         vm_imgact_unmap_page(sf);
523                         if (error != 0)
524                                 return (KERN_FAILURE);
525                         offset += sz;
526                 }
527         } else {
528                 vm_object_reference(object);
529                 rv = vm_map_fixed(map, object, offset, start, end - start,
530                     prot, VM_PROT_ALL, cow | MAP_CHECK_EXCL);
531                 if (rv != KERN_SUCCESS) {
532                         locked = VOP_ISLOCKED(imgp->vp);
533                         VOP_UNLOCK(imgp->vp, 0);
534                         vm_object_deallocate(object);
535                         vn_lock(imgp->vp, locked | LK_RETRY);
536                         return (rv);
537                 }
538         }
539         return (KERN_SUCCESS);
540 }
541
542 static int
543 __elfN(load_section)(struct image_params *imgp, vm_ooffset_t offset,
544     caddr_t vmaddr, size_t memsz, size_t filsz, vm_prot_t prot)
545 {
546         struct sf_buf *sf;
547         size_t map_len;
548         vm_map_t map;
549         vm_object_t object;
550         vm_offset_t off, map_addr;
551         int error, rv, cow;
552         size_t copy_len;
553         vm_ooffset_t file_addr;
554
555         /*
556          * It's necessary to fail if the filsz + offset taken from the
557          * header is greater than the actual file pager object's size.
558          * If we were to allow this, then the vm_map_find() below would
559          * walk right off the end of the file object and into the ether.
560          *
561          * While I'm here, might as well check for something else that
562          * is invalid: filsz cannot be greater than memsz.
563          */
564         if ((filsz != 0 && (off_t)filsz + offset > imgp->attr->va_size) ||
565             filsz > memsz) {
566                 uprintf("elf_load_section: truncated ELF file\n");
567                 return (ENOEXEC);
568         }
569
570         object = imgp->object;
571         map = &imgp->proc->p_vmspace->vm_map;
572         map_addr = trunc_page_ps((vm_offset_t)vmaddr, PAGE_SIZE);
573         file_addr = trunc_page_ps(offset, PAGE_SIZE);
574
575         /*
576          * We have two choices.  We can either clear the data in the last page
577          * of an oversized mapping, or we can start the anon mapping a page
578          * early and copy the initialized data into that first page.  We
579          * choose the second.
580          */
581         if (filsz == 0)
582                 map_len = 0;
583         else if (memsz > filsz)
584                 map_len = trunc_page_ps(offset + filsz, PAGE_SIZE) - file_addr;
585         else
586                 map_len = round_page_ps(offset + filsz, PAGE_SIZE) - file_addr;
587
588         if (map_len != 0) {
589                 /* cow flags: don't dump readonly sections in core */
590                 cow = MAP_COPY_ON_WRITE | MAP_PREFAULT |
591                     (prot & VM_PROT_WRITE ? 0 : MAP_DISABLE_COREDUMP);
592
593                 rv = __elfN(map_insert)(imgp, map,
594                                       object,
595                                       file_addr,        /* file offset */
596                                       map_addr,         /* virtual start */
597                                       map_addr + map_len,/* virtual end */
598                                       prot,
599                                       cow);
600                 if (rv != KERN_SUCCESS)
601                         return (EINVAL);
602
603                 /* we can stop now if we've covered it all */
604                 if (memsz == filsz)
605                         return (0);
606         }
607
608
609         /*
610          * We have to get the remaining bit of the file into the first part
611          * of the oversized map segment.  This is normally because the .data
612          * segment in the file is extended to provide bss.  It's a neat idea
613          * to try and save a page, but it's a pain in the behind to implement.
614          */
615         copy_len = filsz == 0 ? 0 : (offset + filsz) - trunc_page_ps(offset +
616             filsz, PAGE_SIZE);
617         map_addr = trunc_page_ps((vm_offset_t)vmaddr + filsz, PAGE_SIZE);
618         map_len = round_page_ps((vm_offset_t)vmaddr + memsz, PAGE_SIZE) -
619             map_addr;
620
621         /* This had damn well better be true! */
622         if (map_len != 0) {
623                 rv = __elfN(map_insert)(imgp, map, NULL, 0, map_addr,
624                     map_addr + map_len, prot, 0);
625                 if (rv != KERN_SUCCESS)
626                         return (EINVAL);
627         }
628
629         if (copy_len != 0) {
630                 sf = vm_imgact_map_page(object, offset + filsz);
631                 if (sf == NULL)
632                         return (EIO);
633
634                 /* send the page fragment to user space */
635                 off = trunc_page_ps(offset + filsz, PAGE_SIZE) -
636                     trunc_page(offset + filsz);
637                 error = copyout((caddr_t)sf_buf_kva(sf) + off,
638                     (caddr_t)map_addr, copy_len);
639                 vm_imgact_unmap_page(sf);
640                 if (error != 0)
641                         return (error);
642         }
643
644         /*
645          * Remove write access to the page if it was only granted by map_insert
646          * to allow copyout.
647          */
648         if ((prot & VM_PROT_WRITE) == 0)
649                 vm_map_protect(map, trunc_page(map_addr), round_page(map_addr +
650                     map_len), prot, FALSE);
651
652         return (0);
653 }
654
655 /*
656  * Load the file "file" into memory.  It may be either a shared object
657  * or an executable.
658  *
659  * The "addr" reference parameter is in/out.  On entry, it specifies
660  * the address where a shared object should be loaded.  If the file is
661  * an executable, this value is ignored.  On exit, "addr" specifies
662  * where the file was actually loaded.
663  *
664  * The "entry" reference parameter is out only.  On exit, it specifies
665  * the entry point for the loaded file.
666  */
667 static int
668 __elfN(load_file)(struct proc *p, const char *file, u_long *addr,
669         u_long *entry)
670 {
671         struct {
672                 struct nameidata nd;
673                 struct vattr attr;
674                 struct image_params image_params;
675         } *tempdata;
676         const Elf_Ehdr *hdr = NULL;
677         const Elf_Phdr *phdr = NULL;
678         struct nameidata *nd;
679         struct vattr *attr;
680         struct image_params *imgp;
681         vm_prot_t prot;
682         u_long rbase;
683         u_long base_addr = 0;
684         int error, i, numsegs;
685
686 #ifdef CAPABILITY_MODE
687         /*
688          * XXXJA: This check can go away once we are sufficiently confident
689          * that the checks in namei() are correct.
690          */
691         if (IN_CAPABILITY_MODE(curthread))
692                 return (ECAPMODE);
693 #endif
694
695         tempdata = malloc(sizeof(*tempdata), M_TEMP, M_WAITOK);
696         nd = &tempdata->nd;
697         attr = &tempdata->attr;
698         imgp = &tempdata->image_params;
699
700         /*
701          * Initialize part of the common data
702          */
703         imgp->proc = p;
704         imgp->attr = attr;
705         imgp->firstpage = NULL;
706         imgp->image_header = NULL;
707         imgp->object = NULL;
708         imgp->execlabel = NULL;
709
710         NDINIT(nd, LOOKUP, LOCKLEAF | FOLLOW, UIO_SYSSPACE, file, curthread);
711         if ((error = namei(nd)) != 0) {
712                 nd->ni_vp = NULL;
713                 goto fail;
714         }
715         NDFREE(nd, NDF_ONLY_PNBUF);
716         imgp->vp = nd->ni_vp;
717
718         /*
719          * Check permissions, modes, uid, etc on the file, and "open" it.
720          */
721         error = exec_check_permissions(imgp);
722         if (error)
723                 goto fail;
724
725         error = exec_map_first_page(imgp);
726         if (error)
727                 goto fail;
728
729         /*
730          * Also make certain that the interpreter stays the same, so set
731          * its VV_TEXT flag, too.
732          */
733         VOP_SET_TEXT(nd->ni_vp);
734
735         imgp->object = nd->ni_vp->v_object;
736
737         hdr = (const Elf_Ehdr *)imgp->image_header;
738         if ((error = __elfN(check_header)(hdr)) != 0)
739                 goto fail;
740         if (hdr->e_type == ET_DYN)
741                 rbase = *addr;
742         else if (hdr->e_type == ET_EXEC)
743                 rbase = 0;
744         else {
745                 error = ENOEXEC;
746                 goto fail;
747         }
748
749         /* Only support headers that fit within first page for now      */
750         if ((hdr->e_phoff > PAGE_SIZE) ||
751             (u_int)hdr->e_phentsize * hdr->e_phnum > PAGE_SIZE - hdr->e_phoff) {
752                 error = ENOEXEC;
753                 goto fail;
754         }
755
756         phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff);
757         if (!aligned(phdr, Elf_Addr)) {
758                 error = ENOEXEC;
759                 goto fail;
760         }
761
762         for (i = 0, numsegs = 0; i < hdr->e_phnum; i++) {
763                 if (phdr[i].p_type == PT_LOAD && phdr[i].p_memsz != 0) {
764                         /* Loadable segment */
765                         prot = __elfN(trans_prot)(phdr[i].p_flags);
766                         error = __elfN(load_section)(imgp, phdr[i].p_offset,
767                             (caddr_t)(uintptr_t)phdr[i].p_vaddr + rbase,
768                             phdr[i].p_memsz, phdr[i].p_filesz, prot);
769                         if (error != 0)
770                                 goto fail;
771                         /*
772                          * Establish the base address if this is the
773                          * first segment.
774                          */
775                         if (numsegs == 0)
776                                 base_addr = trunc_page(phdr[i].p_vaddr +
777                                     rbase);
778                         numsegs++;
779                 }
780         }
781         *addr = base_addr;
782         *entry = (unsigned long)hdr->e_entry + rbase;
783
784 fail:
785         if (imgp->firstpage)
786                 exec_unmap_first_page(imgp);
787
788         if (nd->ni_vp)
789                 vput(nd->ni_vp);
790
791         free(tempdata, M_TEMP);
792
793         return (error);
794 }
795
796 static u_long
797 __CONCAT(rnd_, __elfN(base))(vm_map_t map __unused, u_long minv, u_long maxv,
798     u_int align)
799 {
800         u_long rbase, res;
801
802         MPASS(vm_map_min(map) <= minv);
803         MPASS(maxv <= vm_map_max(map));
804         MPASS(minv < maxv);
805         MPASS(minv + align < maxv);
806         arc4rand(&rbase, sizeof(rbase), 0);
807         res = roundup(minv, (u_long)align) + rbase % (maxv - minv);
808         res &= ~((u_long)align - 1);
809         if (res >= maxv)
810                 res -= align;
811         KASSERT(res >= minv,
812             ("res %#lx < minv %#lx, maxv %#lx rbase %#lx",
813             res, minv, maxv, rbase));
814         KASSERT(res < maxv,
815             ("res %#lx > maxv %#lx, minv %#lx rbase %#lx",
816             res, maxv, minv, rbase));
817         return (res);
818 }
819
820 /*
821  * Impossible et_dyn_addr initial value indicating that the real base
822  * must be calculated later with some randomization applied.
823  */
824 #define ET_DYN_ADDR_RAND        1
825
826 static int
827 __CONCAT(exec_, __elfN(imgact))(struct image_params *imgp)
828 {
829         struct thread *td;
830         const Elf_Ehdr *hdr;
831         const Elf_Phdr *phdr;
832         Elf_Auxargs *elf_auxargs;
833         struct vmspace *vmspace;
834         vm_map_t map;
835         const char *err_str, *newinterp;
836         char *interp, *interp_buf, *path;
837         Elf_Brandinfo *brand_info;
838         struct sysentvec *sv;
839         vm_prot_t prot;
840         u_long text_size, data_size, total_size, text_addr, data_addr;
841         u_long seg_size, seg_addr, addr, baddr, et_dyn_addr, entry, proghdr;
842         u_long maxalign, mapsz, maxv, maxv1;
843         uint32_t fctl0;
844         int32_t osrel;
845         int error, i, n, interp_name_len, have_interp;
846
847         hdr = (const Elf_Ehdr *)imgp->image_header;
848
849         /*
850          * Do we have a valid ELF header ?
851          *
852          * Only allow ET_EXEC & ET_DYN here, reject ET_DYN later
853          * if particular brand doesn't support it.
854          */
855         if (__elfN(check_header)(hdr) != 0 ||
856             (hdr->e_type != ET_EXEC && hdr->e_type != ET_DYN))
857                 return (-1);
858
859         /*
860          * From here on down, we return an errno, not -1, as we've
861          * detected an ELF file.
862          */
863
864         if ((hdr->e_phoff > PAGE_SIZE) ||
865             (u_int)hdr->e_phentsize * hdr->e_phnum > PAGE_SIZE - hdr->e_phoff) {
866                 /* Only support headers in first page for now */
867                 uprintf("Program headers not in the first page\n");
868                 return (ENOEXEC);
869         }
870         phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff); 
871         if (!aligned(phdr, Elf_Addr)) {
872                 uprintf("Unaligned program headers\n");
873                 return (ENOEXEC);
874         }
875
876         n = error = 0;
877         baddr = 0;
878         osrel = 0;
879         fctl0 = 0;
880         text_size = data_size = total_size = text_addr = data_addr = 0;
881         entry = proghdr = 0;
882         interp_name_len = 0;
883         err_str = newinterp = NULL;
884         interp = interp_buf = NULL;
885         td = curthread;
886         maxalign = PAGE_SIZE;
887         mapsz = 0;
888
889         for (i = 0; i < hdr->e_phnum; i++) {
890                 switch (phdr[i].p_type) {
891                 case PT_LOAD:
892                         if (n == 0)
893                                 baddr = phdr[i].p_vaddr;
894                         if (phdr[i].p_align > maxalign)
895                                 maxalign = phdr[i].p_align;
896                         mapsz += phdr[i].p_memsz;
897                         n++;
898                         break;
899                 case PT_INTERP:
900                         /* Path to interpreter */
901                         if (phdr[i].p_filesz < 2 ||
902                             phdr[i].p_filesz > MAXPATHLEN) {
903                                 uprintf("Invalid PT_INTERP\n");
904                                 error = ENOEXEC;
905                                 goto ret;
906                         }
907                         if (interp != NULL) {
908                                 uprintf("Multiple PT_INTERP headers\n");
909                                 error = ENOEXEC;
910                                 goto ret;
911                         }
912                         interp_name_len = phdr[i].p_filesz;
913                         if (phdr[i].p_offset > PAGE_SIZE ||
914                             interp_name_len > PAGE_SIZE - phdr[i].p_offset) {
915                                 VOP_UNLOCK(imgp->vp, 0);
916                                 interp_buf = malloc(interp_name_len + 1, M_TEMP,
917                                     M_WAITOK);
918                                 vn_lock(imgp->vp, LK_EXCLUSIVE | LK_RETRY);
919                                 error = vn_rdwr(UIO_READ, imgp->vp, interp_buf,
920                                     interp_name_len, phdr[i].p_offset,
921                                     UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred,
922                                     NOCRED, NULL, td);
923                                 if (error != 0) {
924                                         uprintf("i/o error PT_INTERP %d\n",
925                                             error);
926                                         goto ret;
927                                 }
928                                 interp_buf[interp_name_len] = '\0';
929                                 interp = interp_buf;
930                         } else {
931                                 interp = __DECONST(char *, imgp->image_header) +
932                                     phdr[i].p_offset;
933                                 if (interp[interp_name_len - 1] != '\0') {
934                                         uprintf("Invalid PT_INTERP\n");
935                                         error = ENOEXEC;
936                                         goto ret;
937                                 }
938                         }
939                         break;
940                 case PT_GNU_STACK:
941                         if (__elfN(nxstack))
942                                 imgp->stack_prot =
943                                     __elfN(trans_prot)(phdr[i].p_flags);
944                         imgp->stack_sz = phdr[i].p_memsz;
945                         break;
946                 }
947         }
948
949         brand_info = __elfN(get_brandinfo)(imgp, interp, interp_name_len,
950             &osrel, &fctl0);
951         if (brand_info == NULL) {
952                 uprintf("ELF binary type \"%u\" not known.\n",
953                     hdr->e_ident[EI_OSABI]);
954                 error = ENOEXEC;
955                 goto ret;
956         }
957         sv = brand_info->sysvec;
958         et_dyn_addr = 0;
959         if (hdr->e_type == ET_DYN) {
960                 if ((brand_info->flags & BI_CAN_EXEC_DYN) == 0) {
961                         uprintf("Cannot execute shared object\n");
962                         error = ENOEXEC;
963                         goto ret;
964                 }
965                 /*
966                  * Honour the base load address from the dso if it is
967                  * non-zero for some reason.
968                  */
969                 if (baddr == 0) {
970                         if ((sv->sv_flags & SV_ASLR) == 0 ||
971                             (fctl0 & NT_FREEBSD_FCTL_ASLR_DISABLE) != 0)
972                                 et_dyn_addr = ET_DYN_LOAD_ADDR;
973                         else if ((__elfN(pie_aslr_enabled) &&
974                             (imgp->proc->p_flag2 & P2_ASLR_DISABLE) == 0) ||
975                             (imgp->proc->p_flag2 & P2_ASLR_ENABLE) != 0)
976                                 et_dyn_addr = ET_DYN_ADDR_RAND;
977                         else
978                                 et_dyn_addr = ET_DYN_LOAD_ADDR;
979                 }
980         }
981         if (interp != NULL && brand_info->interp_newpath != NULL)
982                 newinterp = brand_info->interp_newpath;
983
984         /*
985          * Avoid a possible deadlock if the current address space is destroyed
986          * and that address space maps the locked vnode.  In the common case,
987          * the locked vnode's v_usecount is decremented but remains greater
988          * than zero.  Consequently, the vnode lock is not needed by vrele().
989          * However, in cases where the vnode lock is external, such as nullfs,
990          * v_usecount may become zero.
991          *
992          * The VV_TEXT flag prevents modifications to the executable while
993          * the vnode is unlocked.
994          */
995         VOP_UNLOCK(imgp->vp, 0);
996
997         /*
998          * Decide whether to enable randomization of user mappings.
999          * First, reset user preferences for the setid binaries.
1000          * Then, account for the support of the randomization by the
1001          * ABI, by user preferences, and make special treatment for
1002          * PIE binaries.
1003          */
1004         if (imgp->credential_setid) {
1005                 PROC_LOCK(imgp->proc);
1006                 imgp->proc->p_flag2 &= ~(P2_ASLR_ENABLE | P2_ASLR_DISABLE);
1007                 PROC_UNLOCK(imgp->proc);
1008         }
1009         if ((sv->sv_flags & SV_ASLR) == 0 ||
1010             (imgp->proc->p_flag2 & P2_ASLR_DISABLE) != 0 ||
1011             (fctl0 & NT_FREEBSD_FCTL_ASLR_DISABLE) != 0) {
1012                 KASSERT(et_dyn_addr != ET_DYN_ADDR_RAND,
1013                     ("et_dyn_addr == RAND and !ASLR"));
1014         } else if ((imgp->proc->p_flag2 & P2_ASLR_ENABLE) != 0 ||
1015             (__elfN(aslr_enabled) && hdr->e_type == ET_EXEC) ||
1016             et_dyn_addr == ET_DYN_ADDR_RAND) {
1017                 imgp->map_flags |= MAP_ASLR;
1018                 /*
1019                  * If user does not care about sbrk, utilize the bss
1020                  * grow region for mappings as well.  We can select
1021                  * the base for the image anywere and still not suffer
1022                  * from the fragmentation.
1023                  */
1024                 if (!__elfN(aslr_honor_sbrk) ||
1025                     (imgp->proc->p_flag2 & P2_ASLR_IGNSTART) != 0)
1026                         imgp->map_flags |= MAP_ASLR_IGNSTART;
1027         }
1028
1029         error = exec_new_vmspace(imgp, sv);
1030         vmspace = imgp->proc->p_vmspace;
1031         map = &vmspace->vm_map;
1032
1033         imgp->proc->p_sysent = sv;
1034
1035         maxv = vm_map_max(map) - lim_max(td, RLIMIT_STACK);
1036         if (et_dyn_addr == ET_DYN_ADDR_RAND) {
1037                 KASSERT((map->flags & MAP_ASLR) != 0,
1038                     ("ET_DYN_ADDR_RAND but !MAP_ASLR"));
1039                 et_dyn_addr = __CONCAT(rnd_, __elfN(base))(map,
1040                     vm_map_min(map) + mapsz + lim_max(td, RLIMIT_DATA),
1041                     /* reserve half of the address space to interpreter */
1042                     maxv / 2, 1UL << flsl(maxalign));
1043         }
1044
1045         vn_lock(imgp->vp, LK_EXCLUSIVE | LK_RETRY);
1046         if (error != 0)
1047                 goto ret;
1048
1049         for (i = 0; i < hdr->e_phnum; i++) {
1050                 switch (phdr[i].p_type) {
1051                 case PT_LOAD:   /* Loadable segment */
1052                         if (phdr[i].p_memsz == 0)
1053                                 break;
1054                         prot = __elfN(trans_prot)(phdr[i].p_flags);
1055                         error = __elfN(load_section)(imgp, phdr[i].p_offset,
1056                             (caddr_t)(uintptr_t)phdr[i].p_vaddr + et_dyn_addr,
1057                             phdr[i].p_memsz, phdr[i].p_filesz, prot);
1058                         if (error != 0)
1059                                 goto ret;
1060
1061                         /*
1062                          * If this segment contains the program headers,
1063                          * remember their virtual address for the AT_PHDR
1064                          * aux entry. Static binaries don't usually include
1065                          * a PT_PHDR entry.
1066                          */
1067                         if (phdr[i].p_offset == 0 &&
1068                             hdr->e_phoff + hdr->e_phnum * hdr->e_phentsize
1069                                 <= phdr[i].p_filesz)
1070                                 proghdr = phdr[i].p_vaddr + hdr->e_phoff +
1071                                     et_dyn_addr;
1072
1073                         seg_addr = trunc_page(phdr[i].p_vaddr + et_dyn_addr);
1074                         seg_size = round_page(phdr[i].p_memsz +
1075                             phdr[i].p_vaddr + et_dyn_addr - seg_addr);
1076
1077                         /*
1078                          * Make the largest executable segment the official
1079                          * text segment and all others data.
1080                          *
1081                          * Note that obreak() assumes that data_addr + 
1082                          * data_size == end of data load area, and the ELF
1083                          * file format expects segments to be sorted by
1084                          * address.  If multiple data segments exist, the
1085                          * last one will be used.
1086                          */
1087
1088                         if (phdr[i].p_flags & PF_X && text_size < seg_size) {
1089                                 text_size = seg_size;
1090                                 text_addr = seg_addr;
1091                         } else {
1092                                 data_size = seg_size;
1093                                 data_addr = seg_addr;
1094                         }
1095                         total_size += seg_size;
1096                         break;
1097                 case PT_PHDR:   /* Program header table info */
1098                         proghdr = phdr[i].p_vaddr + et_dyn_addr;
1099                         break;
1100                 default:
1101                         break;
1102                 }
1103         }
1104         
1105         if (data_addr == 0 && data_size == 0) {
1106                 data_addr = text_addr;
1107                 data_size = text_size;
1108         }
1109
1110         entry = (u_long)hdr->e_entry + et_dyn_addr;
1111
1112         /*
1113          * Check limits.  It should be safe to check the
1114          * limits after loading the segments since we do
1115          * not actually fault in all the segments pages.
1116          */
1117         PROC_LOCK(imgp->proc);
1118         if (data_size > lim_cur_proc(imgp->proc, RLIMIT_DATA))
1119                 err_str = "Data segment size exceeds process limit";
1120         else if (text_size > maxtsiz)
1121                 err_str = "Text segment size exceeds system limit";
1122         else if (total_size > lim_cur_proc(imgp->proc, RLIMIT_VMEM))
1123                 err_str = "Total segment size exceeds process limit";
1124         else if (racct_set(imgp->proc, RACCT_DATA, data_size) != 0)
1125                 err_str = "Data segment size exceeds resource limit";
1126         else if (racct_set(imgp->proc, RACCT_VMEM, total_size) != 0)
1127                 err_str = "Total segment size exceeds resource limit";
1128         if (err_str != NULL) {
1129                 PROC_UNLOCK(imgp->proc);
1130                 uprintf("%s\n", err_str);
1131                 error = ENOMEM;
1132                 goto ret;
1133         }
1134
1135         vmspace->vm_tsize = text_size >> PAGE_SHIFT;
1136         vmspace->vm_taddr = (caddr_t)(uintptr_t)text_addr;
1137         vmspace->vm_dsize = data_size >> PAGE_SHIFT;
1138         vmspace->vm_daddr = (caddr_t)(uintptr_t)data_addr;
1139
1140         /*
1141          * We load the dynamic linker where a userland call
1142          * to mmap(0, ...) would put it.  The rationale behind this
1143          * calculation is that it leaves room for the heap to grow to
1144          * its maximum allowed size.
1145          */
1146         addr = round_page((vm_offset_t)vmspace->vm_daddr + lim_max(td,
1147             RLIMIT_DATA));
1148         if ((map->flags & MAP_ASLR) != 0) {
1149                 maxv1 = maxv / 2 + addr / 2;
1150                 MPASS(maxv1 >= addr);   /* No overflow */
1151                 map->anon_loc = __CONCAT(rnd_, __elfN(base))(map, addr, maxv1,
1152                     MAXPAGESIZES > 1 ? pagesizes[1] : pagesizes[0]);
1153         } else {
1154                 map->anon_loc = addr;
1155         }
1156         PROC_UNLOCK(imgp->proc);
1157
1158         imgp->entry_addr = entry;
1159
1160         if (interp != NULL) {
1161                 have_interp = FALSE;
1162                 VOP_UNLOCK(imgp->vp, 0);
1163                 if ((map->flags & MAP_ASLR) != 0) {
1164                         /* Assume that interpeter fits into 1/4 of AS */
1165                         maxv1 = maxv / 2 + addr / 2;
1166                         MPASS(maxv1 >= addr);   /* No overflow */
1167                         addr = __CONCAT(rnd_, __elfN(base))(map, addr,
1168                             maxv1, PAGE_SIZE);
1169                 }
1170                 if (brand_info->emul_path != NULL &&
1171                     brand_info->emul_path[0] != '\0') {
1172                         path = malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
1173                         snprintf(path, MAXPATHLEN, "%s%s",
1174                             brand_info->emul_path, interp);
1175                         error = __elfN(load_file)(imgp->proc, path, &addr,
1176                             &imgp->entry_addr);
1177                         free(path, M_TEMP);
1178                         if (error == 0)
1179                                 have_interp = TRUE;
1180                 }
1181                 if (!have_interp && newinterp != NULL &&
1182                     (brand_info->interp_path == NULL ||
1183                     strcmp(interp, brand_info->interp_path) == 0)) {
1184                         error = __elfN(load_file)(imgp->proc, newinterp, &addr,
1185                             &imgp->entry_addr);
1186                         if (error == 0)
1187                                 have_interp = TRUE;
1188                 }
1189                 if (!have_interp) {
1190                         error = __elfN(load_file)(imgp->proc, interp, &addr,
1191                             &imgp->entry_addr);
1192                 }
1193                 vn_lock(imgp->vp, LK_EXCLUSIVE | LK_RETRY);
1194                 if (error != 0) {
1195                         uprintf("ELF interpreter %s not found, error %d\n",
1196                             interp, error);
1197                         goto ret;
1198                 }
1199         } else
1200                 addr = et_dyn_addr;
1201
1202         /*
1203          * Construct auxargs table (used by the fixup routine)
1204          */
1205         elf_auxargs = malloc(sizeof(Elf_Auxargs), M_TEMP, M_WAITOK);
1206         elf_auxargs->execfd = -1;
1207         elf_auxargs->phdr = proghdr;
1208         elf_auxargs->phent = hdr->e_phentsize;
1209         elf_auxargs->phnum = hdr->e_phnum;
1210         elf_auxargs->pagesz = PAGE_SIZE;
1211         elf_auxargs->base = addr;
1212         elf_auxargs->flags = 0;
1213         elf_auxargs->entry = entry;
1214         elf_auxargs->hdr_eflags = hdr->e_flags;
1215
1216         imgp->auxargs = elf_auxargs;
1217         imgp->interpreted = 0;
1218         imgp->reloc_base = addr;
1219         imgp->proc->p_osrel = osrel;
1220         imgp->proc->p_fctl0 = fctl0;
1221         imgp->proc->p_elf_machine = hdr->e_machine;
1222         imgp->proc->p_elf_flags = hdr->e_flags;
1223
1224 ret:
1225         free(interp_buf, M_TEMP);
1226         return (error);
1227 }
1228
1229 #define suword __CONCAT(suword, __ELF_WORD_SIZE)
1230
1231 int
1232 __elfN(freebsd_fixup)(register_t **stack_base, struct image_params *imgp)
1233 {
1234         Elf_Auxargs *args = (Elf_Auxargs *)imgp->auxargs;
1235         Elf_Auxinfo *argarray, *pos;
1236         Elf_Addr *base, *auxbase;
1237         int error;
1238
1239         base = (Elf_Addr *)*stack_base;
1240         auxbase = base + imgp->args->argc + 1 + imgp->args->envc + 1;
1241         argarray = pos = malloc(AT_COUNT * sizeof(*pos), M_TEMP,
1242             M_WAITOK | M_ZERO);
1243
1244         if (args->execfd != -1)
1245                 AUXARGS_ENTRY(pos, AT_EXECFD, args->execfd);
1246         AUXARGS_ENTRY(pos, AT_PHDR, args->phdr);
1247         AUXARGS_ENTRY(pos, AT_PHENT, args->phent);
1248         AUXARGS_ENTRY(pos, AT_PHNUM, args->phnum);
1249         AUXARGS_ENTRY(pos, AT_PAGESZ, args->pagesz);
1250         AUXARGS_ENTRY(pos, AT_FLAGS, args->flags);
1251         AUXARGS_ENTRY(pos, AT_ENTRY, args->entry);
1252         AUXARGS_ENTRY(pos, AT_BASE, args->base);
1253         AUXARGS_ENTRY(pos, AT_EHDRFLAGS, args->hdr_eflags);
1254         if (imgp->execpathp != 0)
1255                 AUXARGS_ENTRY(pos, AT_EXECPATH, imgp->execpathp);
1256         AUXARGS_ENTRY(pos, AT_OSRELDATE,
1257             imgp->proc->p_ucred->cr_prison->pr_osreldate);
1258         if (imgp->canary != 0) {
1259                 AUXARGS_ENTRY(pos, AT_CANARY, imgp->canary);
1260                 AUXARGS_ENTRY(pos, AT_CANARYLEN, imgp->canarylen);
1261         }
1262         AUXARGS_ENTRY(pos, AT_NCPUS, mp_ncpus);
1263         if (imgp->pagesizes != 0) {
1264                 AUXARGS_ENTRY(pos, AT_PAGESIZES, imgp->pagesizes);
1265                 AUXARGS_ENTRY(pos, AT_PAGESIZESLEN, imgp->pagesizeslen);
1266         }
1267         if (imgp->sysent->sv_timekeep_base != 0) {
1268                 AUXARGS_ENTRY(pos, AT_TIMEKEEP,
1269                     imgp->sysent->sv_timekeep_base);
1270         }
1271         AUXARGS_ENTRY(pos, AT_STACKPROT, imgp->sysent->sv_shared_page_obj
1272             != NULL && imgp->stack_prot != 0 ? imgp->stack_prot :
1273             imgp->sysent->sv_stackprot);
1274         if (imgp->sysent->sv_hwcap != NULL)
1275                 AUXARGS_ENTRY(pos, AT_HWCAP, *imgp->sysent->sv_hwcap);
1276         if (imgp->sysent->sv_hwcap2 != NULL)
1277                 AUXARGS_ENTRY(pos, AT_HWCAP2, *imgp->sysent->sv_hwcap2);
1278         AUXARGS_ENTRY(pos, AT_NULL, 0);
1279
1280         free(imgp->auxargs, M_TEMP);
1281         imgp->auxargs = NULL;
1282         KASSERT(pos - argarray <= AT_COUNT, ("Too many auxargs"));
1283
1284         error = copyout(argarray, auxbase, sizeof(*argarray) * AT_COUNT);
1285         free(argarray, M_TEMP);
1286         if (error != 0)
1287                 return (error);
1288
1289         base--;
1290         if (suword(base, imgp->args->argc) == -1)
1291                 return (EFAULT);
1292         *stack_base = (register_t *)base;
1293         return (0);
1294 }
1295
1296 /*
1297  * Code for generating ELF core dumps.
1298  */
1299
1300 typedef void (*segment_callback)(vm_map_entry_t, void *);
1301
1302 /* Closure for cb_put_phdr(). */
1303 struct phdr_closure {
1304         Elf_Phdr *phdr;         /* Program header to fill in */
1305         Elf_Off offset;         /* Offset of segment in core file */
1306 };
1307
1308 /* Closure for cb_size_segment(). */
1309 struct sseg_closure {
1310         int count;              /* Count of writable segments. */
1311         size_t size;            /* Total size of all writable segments. */
1312 };
1313
1314 typedef void (*outfunc_t)(void *, struct sbuf *, size_t *);
1315
1316 struct note_info {
1317         int             type;           /* Note type. */
1318         outfunc_t       outfunc;        /* Output function. */
1319         void            *outarg;        /* Argument for the output function. */
1320         size_t          outsize;        /* Output size. */
1321         TAILQ_ENTRY(note_info) link;    /* Link to the next note info. */
1322 };
1323
1324 TAILQ_HEAD(note_info_list, note_info);
1325
1326 /* Coredump output parameters. */
1327 struct coredump_params {
1328         off_t           offset;
1329         struct ucred    *active_cred;
1330         struct ucred    *file_cred;
1331         struct thread   *td;
1332         struct vnode    *vp;
1333         struct compressor *comp;
1334 };
1335
1336 extern int compress_user_cores;
1337 extern int compress_user_cores_level;
1338
1339 static void cb_put_phdr(vm_map_entry_t, void *);
1340 static void cb_size_segment(vm_map_entry_t, void *);
1341 static int core_write(struct coredump_params *, const void *, size_t, off_t,
1342     enum uio_seg);
1343 static void each_dumpable_segment(struct thread *, segment_callback, void *);
1344 static int __elfN(corehdr)(struct coredump_params *, int, void *, size_t,
1345     struct note_info_list *, size_t);
1346 static void __elfN(prepare_notes)(struct thread *, struct note_info_list *,
1347     size_t *);
1348 static void __elfN(puthdr)(struct thread *, void *, size_t, int, size_t);
1349 static void __elfN(putnote)(struct note_info *, struct sbuf *);
1350 static size_t register_note(struct note_info_list *, int, outfunc_t, void *);
1351 static int sbuf_drain_core_output(void *, const char *, int);
1352 static int sbuf_drain_count(void *arg, const char *data, int len);
1353
1354 static void __elfN(note_fpregset)(void *, struct sbuf *, size_t *);
1355 static void __elfN(note_prpsinfo)(void *, struct sbuf *, size_t *);
1356 static void __elfN(note_prstatus)(void *, struct sbuf *, size_t *);
1357 static void __elfN(note_threadmd)(void *, struct sbuf *, size_t *);
1358 static void __elfN(note_thrmisc)(void *, struct sbuf *, size_t *);
1359 static void __elfN(note_ptlwpinfo)(void *, struct sbuf *, size_t *);
1360 static void __elfN(note_procstat_auxv)(void *, struct sbuf *, size_t *);
1361 static void __elfN(note_procstat_proc)(void *, struct sbuf *, size_t *);
1362 static void __elfN(note_procstat_psstrings)(void *, struct sbuf *, size_t *);
1363 static void note_procstat_files(void *, struct sbuf *, size_t *);
1364 static void note_procstat_groups(void *, struct sbuf *, size_t *);
1365 static void note_procstat_osrel(void *, struct sbuf *, size_t *);
1366 static void note_procstat_rlimit(void *, struct sbuf *, size_t *);
1367 static void note_procstat_umask(void *, struct sbuf *, size_t *);
1368 static void note_procstat_vmmap(void *, struct sbuf *, size_t *);
1369
1370 /*
1371  * Write out a core segment to the compression stream.
1372  */
1373 static int
1374 compress_chunk(struct coredump_params *p, char *base, char *buf, u_int len)
1375 {
1376         u_int chunk_len;
1377         int error;
1378
1379         while (len > 0) {
1380                 chunk_len = MIN(len, CORE_BUF_SIZE);
1381
1382                 /*
1383                  * We can get EFAULT error here.
1384                  * In that case zero out the current chunk of the segment.
1385                  */
1386                 error = copyin(base, buf, chunk_len);
1387                 if (error != 0)
1388                         bzero(buf, chunk_len);
1389                 error = compressor_write(p->comp, buf, chunk_len);
1390                 if (error != 0)
1391                         break;
1392                 base += chunk_len;
1393                 len -= chunk_len;
1394         }
1395         return (error);
1396 }
1397
1398 static int
1399 core_compressed_write(void *base, size_t len, off_t offset, void *arg)
1400 {
1401
1402         return (core_write((struct coredump_params *)arg, base, len, offset,
1403             UIO_SYSSPACE));
1404 }
1405
1406 static int
1407 core_write(struct coredump_params *p, const void *base, size_t len,
1408     off_t offset, enum uio_seg seg)
1409 {
1410
1411         return (vn_rdwr_inchunks(UIO_WRITE, p->vp, __DECONST(void *, base),
1412             len, offset, seg, IO_UNIT | IO_DIRECT | IO_RANGELOCKED,
1413             p->active_cred, p->file_cred, NULL, p->td));
1414 }
1415
1416 static int
1417 core_output(void *base, size_t len, off_t offset, struct coredump_params *p,
1418     void *tmpbuf)
1419 {
1420         int error;
1421
1422         if (p->comp != NULL)
1423                 return (compress_chunk(p, base, tmpbuf, len));
1424
1425         /*
1426          * EFAULT is a non-fatal error that we can get, for example,
1427          * if the segment is backed by a file but extends beyond its
1428          * end.
1429          */
1430         error = core_write(p, base, len, offset, UIO_USERSPACE);
1431         if (error == EFAULT) {
1432                 log(LOG_WARNING, "Failed to fully fault in a core file segment "
1433                     "at VA %p with size 0x%zx to be written at offset 0x%jx "
1434                     "for process %s\n", base, len, offset, curproc->p_comm);
1435
1436                 /*
1437                  * Write a "real" zero byte at the end of the target region
1438                  * in the case this is the last segment.
1439                  * The intermediate space will be implicitly zero-filled.
1440                  */
1441                 error = core_write(p, zero_region, 1, offset + len - 1,
1442                     UIO_SYSSPACE);
1443         }
1444         return (error);
1445 }
1446
1447 /*
1448  * Drain into a core file.
1449  */
1450 static int
1451 sbuf_drain_core_output(void *arg, const char *data, int len)
1452 {
1453         struct coredump_params *p;
1454         int error, locked;
1455
1456         p = (struct coredump_params *)arg;
1457
1458         /*
1459          * Some kern_proc out routines that print to this sbuf may
1460          * call us with the process lock held. Draining with the
1461          * non-sleepable lock held is unsafe. The lock is needed for
1462          * those routines when dumping a live process. In our case we
1463          * can safely release the lock before draining and acquire
1464          * again after.
1465          */
1466         locked = PROC_LOCKED(p->td->td_proc);
1467         if (locked)
1468                 PROC_UNLOCK(p->td->td_proc);
1469         if (p->comp != NULL)
1470                 error = compressor_write(p->comp, __DECONST(char *, data), len);
1471         else
1472                 error = core_write(p, __DECONST(void *, data), len, p->offset,
1473                     UIO_SYSSPACE);
1474         if (locked)
1475                 PROC_LOCK(p->td->td_proc);
1476         if (error != 0)
1477                 return (-error);
1478         p->offset += len;
1479         return (len);
1480 }
1481
1482 /*
1483  * Drain into a counter.
1484  */
1485 static int
1486 sbuf_drain_count(void *arg, const char *data __unused, int len)
1487 {
1488         size_t *sizep;
1489
1490         sizep = (size_t *)arg;
1491         *sizep += len;
1492         return (len);
1493 }
1494
1495 int
1496 __elfN(coredump)(struct thread *td, struct vnode *vp, off_t limit, int flags)
1497 {
1498         struct ucred *cred = td->td_ucred;
1499         int error = 0;
1500         struct sseg_closure seginfo;
1501         struct note_info_list notelst;
1502         struct coredump_params params;
1503         struct note_info *ninfo;
1504         void *hdr, *tmpbuf;
1505         size_t hdrsize, notesz, coresize;
1506
1507         hdr = NULL;
1508         tmpbuf = NULL;
1509         TAILQ_INIT(&notelst);
1510
1511         /* Size the program segments. */
1512         seginfo.count = 0;
1513         seginfo.size = 0;
1514         each_dumpable_segment(td, cb_size_segment, &seginfo);
1515
1516         /*
1517          * Collect info about the core file header area.
1518          */
1519         hdrsize = sizeof(Elf_Ehdr) + sizeof(Elf_Phdr) * (1 + seginfo.count);
1520         if (seginfo.count + 1 >= PN_XNUM)
1521                 hdrsize += sizeof(Elf_Shdr);
1522         __elfN(prepare_notes)(td, &notelst, &notesz);
1523         coresize = round_page(hdrsize + notesz) + seginfo.size;
1524
1525         /* Set up core dump parameters. */
1526         params.offset = 0;
1527         params.active_cred = cred;
1528         params.file_cred = NOCRED;
1529         params.td = td;
1530         params.vp = vp;
1531         params.comp = NULL;
1532
1533 #ifdef RACCT
1534         if (racct_enable) {
1535                 PROC_LOCK(td->td_proc);
1536                 error = racct_add(td->td_proc, RACCT_CORE, coresize);
1537                 PROC_UNLOCK(td->td_proc);
1538                 if (error != 0) {
1539                         error = EFAULT;
1540                         goto done;
1541                 }
1542         }
1543 #endif
1544         if (coresize >= limit) {
1545                 error = EFAULT;
1546                 goto done;
1547         }
1548
1549         /* Create a compression stream if necessary. */
1550         if (compress_user_cores != 0) {
1551                 params.comp = compressor_init(core_compressed_write,
1552                     compress_user_cores, CORE_BUF_SIZE,
1553                     compress_user_cores_level, &params);
1554                 if (params.comp == NULL) {
1555                         error = EFAULT;
1556                         goto done;
1557                 }
1558                 tmpbuf = malloc(CORE_BUF_SIZE, M_TEMP, M_WAITOK | M_ZERO);
1559         }
1560
1561         /*
1562          * Allocate memory for building the header, fill it up,
1563          * and write it out following the notes.
1564          */
1565         hdr = malloc(hdrsize, M_TEMP, M_WAITOK);
1566         error = __elfN(corehdr)(&params, seginfo.count, hdr, hdrsize, &notelst,
1567             notesz);
1568
1569         /* Write the contents of all of the writable segments. */
1570         if (error == 0) {
1571                 Elf_Phdr *php;
1572                 off_t offset;
1573                 int i;
1574
1575                 php = (Elf_Phdr *)((char *)hdr + sizeof(Elf_Ehdr)) + 1;
1576                 offset = round_page(hdrsize + notesz);
1577                 for (i = 0; i < seginfo.count; i++) {
1578                         error = core_output((caddr_t)(uintptr_t)php->p_vaddr,
1579                             php->p_filesz, offset, &params, tmpbuf);
1580                         if (error != 0)
1581                                 break;
1582                         offset += php->p_filesz;
1583                         php++;
1584                 }
1585                 if (error == 0 && params.comp != NULL)
1586                         error = compressor_flush(params.comp);
1587         }
1588         if (error) {
1589                 log(LOG_WARNING,
1590                     "Failed to write core file for process %s (error %d)\n",
1591                     curproc->p_comm, error);
1592         }
1593
1594 done:
1595         free(tmpbuf, M_TEMP);
1596         if (params.comp != NULL)
1597                 compressor_fini(params.comp);
1598         while ((ninfo = TAILQ_FIRST(&notelst)) != NULL) {
1599                 TAILQ_REMOVE(&notelst, ninfo, link);
1600                 free(ninfo, M_TEMP);
1601         }
1602         if (hdr != NULL)
1603                 free(hdr, M_TEMP);
1604
1605         return (error);
1606 }
1607
1608 /*
1609  * A callback for each_dumpable_segment() to write out the segment's
1610  * program header entry.
1611  */
1612 static void
1613 cb_put_phdr(vm_map_entry_t entry, void *closure)
1614 {
1615         struct phdr_closure *phc = (struct phdr_closure *)closure;
1616         Elf_Phdr *phdr = phc->phdr;
1617
1618         phc->offset = round_page(phc->offset);
1619
1620         phdr->p_type = PT_LOAD;
1621         phdr->p_offset = phc->offset;
1622         phdr->p_vaddr = entry->start;
1623         phdr->p_paddr = 0;
1624         phdr->p_filesz = phdr->p_memsz = entry->end - entry->start;
1625         phdr->p_align = PAGE_SIZE;
1626         phdr->p_flags = __elfN(untrans_prot)(entry->protection);
1627
1628         phc->offset += phdr->p_filesz;
1629         phc->phdr++;
1630 }
1631
1632 /*
1633  * A callback for each_dumpable_segment() to gather information about
1634  * the number of segments and their total size.
1635  */
1636 static void
1637 cb_size_segment(vm_map_entry_t entry, void *closure)
1638 {
1639         struct sseg_closure *ssc = (struct sseg_closure *)closure;
1640
1641         ssc->count++;
1642         ssc->size += entry->end - entry->start;
1643 }
1644
1645 /*
1646  * For each writable segment in the process's memory map, call the given
1647  * function with a pointer to the map entry and some arbitrary
1648  * caller-supplied data.
1649  */
1650 static void
1651 each_dumpable_segment(struct thread *td, segment_callback func, void *closure)
1652 {
1653         struct proc *p = td->td_proc;
1654         vm_map_t map = &p->p_vmspace->vm_map;
1655         vm_map_entry_t entry;
1656         vm_object_t backing_object, object;
1657         boolean_t ignore_entry;
1658
1659         vm_map_lock_read(map);
1660         for (entry = map->header.next; entry != &map->header;
1661             entry = entry->next) {
1662                 /*
1663                  * Don't dump inaccessible mappings, deal with legacy
1664                  * coredump mode.
1665                  *
1666                  * Note that read-only segments related to the elf binary
1667                  * are marked MAP_ENTRY_NOCOREDUMP now so we no longer
1668                  * need to arbitrarily ignore such segments.
1669                  */
1670                 if (elf_legacy_coredump) {
1671                         if ((entry->protection & VM_PROT_RW) != VM_PROT_RW)
1672                                 continue;
1673                 } else {
1674                         if ((entry->protection & VM_PROT_ALL) == 0)
1675                                 continue;
1676                 }
1677
1678                 /*
1679                  * Dont include memory segment in the coredump if
1680                  * MAP_NOCORE is set in mmap(2) or MADV_NOCORE in
1681                  * madvise(2).  Do not dump submaps (i.e. parts of the
1682                  * kernel map).
1683                  */
1684                 if (entry->eflags & (MAP_ENTRY_NOCOREDUMP|MAP_ENTRY_IS_SUB_MAP))
1685                         continue;
1686
1687                 if ((object = entry->object.vm_object) == NULL)
1688                         continue;
1689
1690                 /* Ignore memory-mapped devices and such things. */
1691                 VM_OBJECT_RLOCK(object);
1692                 while ((backing_object = object->backing_object) != NULL) {
1693                         VM_OBJECT_RLOCK(backing_object);
1694                         VM_OBJECT_RUNLOCK(object);
1695                         object = backing_object;
1696                 }
1697                 ignore_entry = object->type != OBJT_DEFAULT &&
1698                     object->type != OBJT_SWAP && object->type != OBJT_VNODE &&
1699                     object->type != OBJT_PHYS;
1700                 VM_OBJECT_RUNLOCK(object);
1701                 if (ignore_entry)
1702                         continue;
1703
1704                 (*func)(entry, closure);
1705         }
1706         vm_map_unlock_read(map);
1707 }
1708
1709 /*
1710  * Write the core file header to the file, including padding up to
1711  * the page boundary.
1712  */
1713 static int
1714 __elfN(corehdr)(struct coredump_params *p, int numsegs, void *hdr,
1715     size_t hdrsize, struct note_info_list *notelst, size_t notesz)
1716 {
1717         struct note_info *ninfo;
1718         struct sbuf *sb;
1719         int error;
1720
1721         /* Fill in the header. */
1722         bzero(hdr, hdrsize);
1723         __elfN(puthdr)(p->td, hdr, hdrsize, numsegs, notesz);
1724
1725         sb = sbuf_new(NULL, NULL, CORE_BUF_SIZE, SBUF_FIXEDLEN);
1726         sbuf_set_drain(sb, sbuf_drain_core_output, p);
1727         sbuf_start_section(sb, NULL);
1728         sbuf_bcat(sb, hdr, hdrsize);
1729         TAILQ_FOREACH(ninfo, notelst, link)
1730             __elfN(putnote)(ninfo, sb);
1731         /* Align up to a page boundary for the program segments. */
1732         sbuf_end_section(sb, -1, PAGE_SIZE, 0);
1733         error = sbuf_finish(sb);
1734         sbuf_delete(sb);
1735
1736         return (error);
1737 }
1738
1739 static void
1740 __elfN(prepare_notes)(struct thread *td, struct note_info_list *list,
1741     size_t *sizep)
1742 {
1743         struct proc *p;
1744         struct thread *thr;
1745         size_t size;
1746
1747         p = td->td_proc;
1748         size = 0;
1749
1750         size += register_note(list, NT_PRPSINFO, __elfN(note_prpsinfo), p);
1751
1752         /*
1753          * To have the debugger select the right thread (LWP) as the initial
1754          * thread, we dump the state of the thread passed to us in td first.
1755          * This is the thread that causes the core dump and thus likely to
1756          * be the right thread one wants to have selected in the debugger.
1757          */
1758         thr = td;
1759         while (thr != NULL) {
1760                 size += register_note(list, NT_PRSTATUS,
1761                     __elfN(note_prstatus), thr);
1762                 size += register_note(list, NT_FPREGSET,
1763                     __elfN(note_fpregset), thr);
1764                 size += register_note(list, NT_THRMISC,
1765                     __elfN(note_thrmisc), thr);
1766                 size += register_note(list, NT_PTLWPINFO,
1767                     __elfN(note_ptlwpinfo), thr);
1768                 size += register_note(list, -1,
1769                     __elfN(note_threadmd), thr);
1770
1771                 thr = (thr == td) ? TAILQ_FIRST(&p->p_threads) :
1772                     TAILQ_NEXT(thr, td_plist);
1773                 if (thr == td)
1774                         thr = TAILQ_NEXT(thr, td_plist);
1775         }
1776
1777         size += register_note(list, NT_PROCSTAT_PROC,
1778             __elfN(note_procstat_proc), p);
1779         size += register_note(list, NT_PROCSTAT_FILES,
1780             note_procstat_files, p);
1781         size += register_note(list, NT_PROCSTAT_VMMAP,
1782             note_procstat_vmmap, p);
1783         size += register_note(list, NT_PROCSTAT_GROUPS,
1784             note_procstat_groups, p);
1785         size += register_note(list, NT_PROCSTAT_UMASK,
1786             note_procstat_umask, p);
1787         size += register_note(list, NT_PROCSTAT_RLIMIT,
1788             note_procstat_rlimit, p);
1789         size += register_note(list, NT_PROCSTAT_OSREL,
1790             note_procstat_osrel, p);
1791         size += register_note(list, NT_PROCSTAT_PSSTRINGS,
1792             __elfN(note_procstat_psstrings), p);
1793         size += register_note(list, NT_PROCSTAT_AUXV,
1794             __elfN(note_procstat_auxv), p);
1795
1796         *sizep = size;
1797 }
1798
1799 static void
1800 __elfN(puthdr)(struct thread *td, void *hdr, size_t hdrsize, int numsegs,
1801     size_t notesz)
1802 {
1803         Elf_Ehdr *ehdr;
1804         Elf_Phdr *phdr;
1805         Elf_Shdr *shdr;
1806         struct phdr_closure phc;
1807
1808         ehdr = (Elf_Ehdr *)hdr;
1809
1810         ehdr->e_ident[EI_MAG0] = ELFMAG0;
1811         ehdr->e_ident[EI_MAG1] = ELFMAG1;
1812         ehdr->e_ident[EI_MAG2] = ELFMAG2;
1813         ehdr->e_ident[EI_MAG3] = ELFMAG3;
1814         ehdr->e_ident[EI_CLASS] = ELF_CLASS;
1815         ehdr->e_ident[EI_DATA] = ELF_DATA;
1816         ehdr->e_ident[EI_VERSION] = EV_CURRENT;
1817         ehdr->e_ident[EI_OSABI] = ELFOSABI_FREEBSD;
1818         ehdr->e_ident[EI_ABIVERSION] = 0;
1819         ehdr->e_ident[EI_PAD] = 0;
1820         ehdr->e_type = ET_CORE;
1821         ehdr->e_machine = td->td_proc->p_elf_machine;
1822         ehdr->e_version = EV_CURRENT;
1823         ehdr->e_entry = 0;
1824         ehdr->e_phoff = sizeof(Elf_Ehdr);
1825         ehdr->e_flags = td->td_proc->p_elf_flags;
1826         ehdr->e_ehsize = sizeof(Elf_Ehdr);
1827         ehdr->e_phentsize = sizeof(Elf_Phdr);
1828         ehdr->e_shentsize = sizeof(Elf_Shdr);
1829         ehdr->e_shstrndx = SHN_UNDEF;
1830         if (numsegs + 1 < PN_XNUM) {
1831                 ehdr->e_phnum = numsegs + 1;
1832                 ehdr->e_shnum = 0;
1833         } else {
1834                 ehdr->e_phnum = PN_XNUM;
1835                 ehdr->e_shnum = 1;
1836
1837                 ehdr->e_shoff = ehdr->e_phoff +
1838                     (numsegs + 1) * ehdr->e_phentsize;
1839                 KASSERT(ehdr->e_shoff == hdrsize - sizeof(Elf_Shdr),
1840                     ("e_shoff: %zu, hdrsize - shdr: %zu",
1841                      (size_t)ehdr->e_shoff, hdrsize - sizeof(Elf_Shdr)));
1842
1843                 shdr = (Elf_Shdr *)((char *)hdr + ehdr->e_shoff);
1844                 memset(shdr, 0, sizeof(*shdr));
1845                 /*
1846                  * A special first section is used to hold large segment and
1847                  * section counts.  This was proposed by Sun Microsystems in
1848                  * Solaris and has been adopted by Linux; the standard ELF
1849                  * tools are already familiar with the technique.
1850                  *
1851                  * See table 7-7 of the Solaris "Linker and Libraries Guide"
1852                  * (or 12-7 depending on the version of the document) for more
1853                  * details.
1854                  */
1855                 shdr->sh_type = SHT_NULL;
1856                 shdr->sh_size = ehdr->e_shnum;
1857                 shdr->sh_link = ehdr->e_shstrndx;
1858                 shdr->sh_info = numsegs + 1;
1859         }
1860
1861         /*
1862          * Fill in the program header entries.
1863          */
1864         phdr = (Elf_Phdr *)((char *)hdr + ehdr->e_phoff);
1865
1866         /* The note segement. */
1867         phdr->p_type = PT_NOTE;
1868         phdr->p_offset = hdrsize;
1869         phdr->p_vaddr = 0;
1870         phdr->p_paddr = 0;
1871         phdr->p_filesz = notesz;
1872         phdr->p_memsz = 0;
1873         phdr->p_flags = PF_R;
1874         phdr->p_align = ELF_NOTE_ROUNDSIZE;
1875         phdr++;
1876
1877         /* All the writable segments from the program. */
1878         phc.phdr = phdr;
1879         phc.offset = round_page(hdrsize + notesz);
1880         each_dumpable_segment(td, cb_put_phdr, &phc);
1881 }
1882
1883 static size_t
1884 register_note(struct note_info_list *list, int type, outfunc_t out, void *arg)
1885 {
1886         struct note_info *ninfo;
1887         size_t size, notesize;
1888
1889         size = 0;
1890         out(arg, NULL, &size);
1891         ninfo = malloc(sizeof(*ninfo), M_TEMP, M_ZERO | M_WAITOK);
1892         ninfo->type = type;
1893         ninfo->outfunc = out;
1894         ninfo->outarg = arg;
1895         ninfo->outsize = size;
1896         TAILQ_INSERT_TAIL(list, ninfo, link);
1897
1898         if (type == -1)
1899                 return (size);
1900
1901         notesize = sizeof(Elf_Note) +           /* note header */
1902             roundup2(sizeof(FREEBSD_ABI_VENDOR), ELF_NOTE_ROUNDSIZE) +
1903                                                 /* note name */
1904             roundup2(size, ELF_NOTE_ROUNDSIZE); /* note description */
1905
1906         return (notesize);
1907 }
1908
1909 static size_t
1910 append_note_data(const void *src, void *dst, size_t len)
1911 {
1912         size_t padded_len;
1913
1914         padded_len = roundup2(len, ELF_NOTE_ROUNDSIZE);
1915         if (dst != NULL) {
1916                 bcopy(src, dst, len);
1917                 bzero((char *)dst + len, padded_len - len);
1918         }
1919         return (padded_len);
1920 }
1921
1922 size_t
1923 __elfN(populate_note)(int type, void *src, void *dst, size_t size, void **descp)
1924 {
1925         Elf_Note *note;
1926         char *buf;
1927         size_t notesize;
1928
1929         buf = dst;
1930         if (buf != NULL) {
1931                 note = (Elf_Note *)buf;
1932                 note->n_namesz = sizeof(FREEBSD_ABI_VENDOR);
1933                 note->n_descsz = size;
1934                 note->n_type = type;
1935                 buf += sizeof(*note);
1936                 buf += append_note_data(FREEBSD_ABI_VENDOR, buf,
1937                     sizeof(FREEBSD_ABI_VENDOR));
1938                 append_note_data(src, buf, size);
1939                 if (descp != NULL)
1940                         *descp = buf;
1941         }
1942
1943         notesize = sizeof(Elf_Note) +           /* note header */
1944             roundup2(sizeof(FREEBSD_ABI_VENDOR), ELF_NOTE_ROUNDSIZE) +
1945                                                 /* note name */
1946             roundup2(size, ELF_NOTE_ROUNDSIZE); /* note description */
1947
1948         return (notesize);
1949 }
1950
1951 static void
1952 __elfN(putnote)(struct note_info *ninfo, struct sbuf *sb)
1953 {
1954         Elf_Note note;
1955         ssize_t old_len, sect_len;
1956         size_t new_len, descsz, i;
1957
1958         if (ninfo->type == -1) {
1959                 ninfo->outfunc(ninfo->outarg, sb, &ninfo->outsize);
1960                 return;
1961         }
1962
1963         note.n_namesz = sizeof(FREEBSD_ABI_VENDOR);
1964         note.n_descsz = ninfo->outsize;
1965         note.n_type = ninfo->type;
1966
1967         sbuf_bcat(sb, &note, sizeof(note));
1968         sbuf_start_section(sb, &old_len);
1969         sbuf_bcat(sb, FREEBSD_ABI_VENDOR, sizeof(FREEBSD_ABI_VENDOR));
1970         sbuf_end_section(sb, old_len, ELF_NOTE_ROUNDSIZE, 0);
1971         if (note.n_descsz == 0)
1972                 return;
1973         sbuf_start_section(sb, &old_len);
1974         ninfo->outfunc(ninfo->outarg, sb, &ninfo->outsize);
1975         sect_len = sbuf_end_section(sb, old_len, ELF_NOTE_ROUNDSIZE, 0);
1976         if (sect_len < 0)
1977                 return;
1978
1979         new_len = (size_t)sect_len;
1980         descsz = roundup(note.n_descsz, ELF_NOTE_ROUNDSIZE);
1981         if (new_len < descsz) {
1982                 /*
1983                  * It is expected that individual note emitters will correctly
1984                  * predict their expected output size and fill up to that size
1985                  * themselves, padding in a format-specific way if needed.
1986                  * However, in case they don't, just do it here with zeros.
1987                  */
1988                 for (i = 0; i < descsz - new_len; i++)
1989                         sbuf_putc(sb, 0);
1990         } else if (new_len > descsz) {
1991                 /*
1992                  * We can't always truncate sb -- we may have drained some
1993                  * of it already.
1994                  */
1995                 KASSERT(new_len == descsz, ("%s: Note type %u changed as we "
1996                     "read it (%zu > %zu).  Since it is longer than "
1997                     "expected, this coredump's notes are corrupt.  THIS "
1998                     "IS A BUG in the note_procstat routine for type %u.\n",
1999                     __func__, (unsigned)note.n_type, new_len, descsz,
2000                     (unsigned)note.n_type));
2001         }
2002 }
2003
2004 /*
2005  * Miscellaneous note out functions.
2006  */
2007
2008 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
2009 #include <compat/freebsd32/freebsd32.h>
2010 #include <compat/freebsd32/freebsd32_signal.h>
2011
2012 typedef struct prstatus32 elf_prstatus_t;
2013 typedef struct prpsinfo32 elf_prpsinfo_t;
2014 typedef struct fpreg32 elf_prfpregset_t;
2015 typedef struct fpreg32 elf_fpregset_t;
2016 typedef struct reg32 elf_gregset_t;
2017 typedef struct thrmisc32 elf_thrmisc_t;
2018 #define ELF_KERN_PROC_MASK      KERN_PROC_MASK32
2019 typedef struct kinfo_proc32 elf_kinfo_proc_t;
2020 typedef uint32_t elf_ps_strings_t;
2021 #else
2022 typedef prstatus_t elf_prstatus_t;
2023 typedef prpsinfo_t elf_prpsinfo_t;
2024 typedef prfpregset_t elf_prfpregset_t;
2025 typedef prfpregset_t elf_fpregset_t;
2026 typedef gregset_t elf_gregset_t;
2027 typedef thrmisc_t elf_thrmisc_t;
2028 #define ELF_KERN_PROC_MASK      0
2029 typedef struct kinfo_proc elf_kinfo_proc_t;
2030 typedef vm_offset_t elf_ps_strings_t;
2031 #endif
2032
2033 static void
2034 __elfN(note_prpsinfo)(void *arg, struct sbuf *sb, size_t *sizep)
2035 {
2036         struct sbuf sbarg;
2037         size_t len;
2038         char *cp, *end;
2039         struct proc *p;
2040         elf_prpsinfo_t *psinfo;
2041         int error;
2042
2043         p = (struct proc *)arg;
2044         if (sb != NULL) {
2045                 KASSERT(*sizep == sizeof(*psinfo), ("invalid size"));
2046                 psinfo = malloc(sizeof(*psinfo), M_TEMP, M_ZERO | M_WAITOK);
2047                 psinfo->pr_version = PRPSINFO_VERSION;
2048                 psinfo->pr_psinfosz = sizeof(elf_prpsinfo_t);
2049                 strlcpy(psinfo->pr_fname, p->p_comm, sizeof(psinfo->pr_fname));
2050                 PROC_LOCK(p);
2051                 if (p->p_args != NULL) {
2052                         len = sizeof(psinfo->pr_psargs) - 1;
2053                         if (len > p->p_args->ar_length)
2054                                 len = p->p_args->ar_length;
2055                         memcpy(psinfo->pr_psargs, p->p_args->ar_args, len);
2056                         PROC_UNLOCK(p);
2057                         error = 0;
2058                 } else {
2059                         _PHOLD(p);
2060                         PROC_UNLOCK(p);
2061                         sbuf_new(&sbarg, psinfo->pr_psargs,
2062                             sizeof(psinfo->pr_psargs), SBUF_FIXEDLEN);
2063                         error = proc_getargv(curthread, p, &sbarg);
2064                         PRELE(p);
2065                         if (sbuf_finish(&sbarg) == 0)
2066                                 len = sbuf_len(&sbarg) - 1;
2067                         else
2068                                 len = sizeof(psinfo->pr_psargs) - 1;
2069                         sbuf_delete(&sbarg);
2070                 }
2071                 if (error || len == 0)
2072                         strlcpy(psinfo->pr_psargs, p->p_comm,
2073                             sizeof(psinfo->pr_psargs));
2074                 else {
2075                         KASSERT(len < sizeof(psinfo->pr_psargs),
2076                             ("len is too long: %zu vs %zu", len,
2077                             sizeof(psinfo->pr_psargs)));
2078                         cp = psinfo->pr_psargs;
2079                         end = cp + len - 1;
2080                         for (;;) {
2081                                 cp = memchr(cp, '\0', end - cp);
2082                                 if (cp == NULL)
2083                                         break;
2084                                 *cp = ' ';
2085                         }
2086                 }
2087                 psinfo->pr_pid = p->p_pid;
2088                 sbuf_bcat(sb, psinfo, sizeof(*psinfo));
2089                 free(psinfo, M_TEMP);
2090         }
2091         *sizep = sizeof(*psinfo);
2092 }
2093
2094 static void
2095 __elfN(note_prstatus)(void *arg, struct sbuf *sb, size_t *sizep)
2096 {
2097         struct thread *td;
2098         elf_prstatus_t *status;
2099
2100         td = (struct thread *)arg;
2101         if (sb != NULL) {
2102                 KASSERT(*sizep == sizeof(*status), ("invalid size"));
2103                 status = malloc(sizeof(*status), M_TEMP, M_ZERO | M_WAITOK);
2104                 status->pr_version = PRSTATUS_VERSION;
2105                 status->pr_statussz = sizeof(elf_prstatus_t);
2106                 status->pr_gregsetsz = sizeof(elf_gregset_t);
2107                 status->pr_fpregsetsz = sizeof(elf_fpregset_t);
2108                 status->pr_osreldate = osreldate;
2109                 status->pr_cursig = td->td_proc->p_sig;
2110                 status->pr_pid = td->td_tid;
2111 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
2112                 fill_regs32(td, &status->pr_reg);
2113 #else
2114                 fill_regs(td, &status->pr_reg);
2115 #endif
2116                 sbuf_bcat(sb, status, sizeof(*status));
2117                 free(status, M_TEMP);
2118         }
2119         *sizep = sizeof(*status);
2120 }
2121
2122 static void
2123 __elfN(note_fpregset)(void *arg, struct sbuf *sb, size_t *sizep)
2124 {
2125         struct thread *td;
2126         elf_prfpregset_t *fpregset;
2127
2128         td = (struct thread *)arg;
2129         if (sb != NULL) {
2130                 KASSERT(*sizep == sizeof(*fpregset), ("invalid size"));
2131                 fpregset = malloc(sizeof(*fpregset), M_TEMP, M_ZERO | M_WAITOK);
2132 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
2133                 fill_fpregs32(td, fpregset);
2134 #else
2135                 fill_fpregs(td, fpregset);
2136 #endif
2137                 sbuf_bcat(sb, fpregset, sizeof(*fpregset));
2138                 free(fpregset, M_TEMP);
2139         }
2140         *sizep = sizeof(*fpregset);
2141 }
2142
2143 static void
2144 __elfN(note_thrmisc)(void *arg, struct sbuf *sb, size_t *sizep)
2145 {
2146         struct thread *td;
2147         elf_thrmisc_t thrmisc;
2148
2149         td = (struct thread *)arg;
2150         if (sb != NULL) {
2151                 KASSERT(*sizep == sizeof(thrmisc), ("invalid size"));
2152                 bzero(&thrmisc._pad, sizeof(thrmisc._pad));
2153                 strcpy(thrmisc.pr_tname, td->td_name);
2154                 sbuf_bcat(sb, &thrmisc, sizeof(thrmisc));
2155         }
2156         *sizep = sizeof(thrmisc);
2157 }
2158
2159 static void
2160 __elfN(note_ptlwpinfo)(void *arg, struct sbuf *sb, size_t *sizep)
2161 {
2162         struct thread *td;
2163         size_t size;
2164         int structsize;
2165 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
2166         struct ptrace_lwpinfo32 pl;
2167 #else
2168         struct ptrace_lwpinfo pl;
2169 #endif
2170
2171         td = (struct thread *)arg;
2172         size = sizeof(structsize) + sizeof(pl);
2173         if (sb != NULL) {
2174                 KASSERT(*sizep == size, ("invalid size"));
2175                 structsize = sizeof(pl);
2176                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2177                 bzero(&pl, sizeof(pl));
2178                 pl.pl_lwpid = td->td_tid;
2179                 pl.pl_event = PL_EVENT_NONE;
2180                 pl.pl_sigmask = td->td_sigmask;
2181                 pl.pl_siglist = td->td_siglist;
2182                 if (td->td_si.si_signo != 0) {
2183                         pl.pl_event = PL_EVENT_SIGNAL;
2184                         pl.pl_flags |= PL_FLAG_SI;
2185 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
2186                         siginfo_to_siginfo32(&td->td_si, &pl.pl_siginfo);
2187 #else
2188                         pl.pl_siginfo = td->td_si;
2189 #endif
2190                 }
2191                 strcpy(pl.pl_tdname, td->td_name);
2192                 /* XXX TODO: supply more information in struct ptrace_lwpinfo*/
2193                 sbuf_bcat(sb, &pl, sizeof(pl));
2194         }
2195         *sizep = size;
2196 }
2197
2198 /*
2199  * Allow for MD specific notes, as well as any MD
2200  * specific preparations for writing MI notes.
2201  */
2202 static void
2203 __elfN(note_threadmd)(void *arg, struct sbuf *sb, size_t *sizep)
2204 {
2205         struct thread *td;
2206         void *buf;
2207         size_t size;
2208
2209         td = (struct thread *)arg;
2210         size = *sizep;
2211         if (size != 0 && sb != NULL)
2212                 buf = malloc(size, M_TEMP, M_ZERO | M_WAITOK);
2213         else
2214                 buf = NULL;
2215         size = 0;
2216         __elfN(dump_thread)(td, buf, &size);
2217         KASSERT(sb == NULL || *sizep == size, ("invalid size"));
2218         if (size != 0 && sb != NULL)
2219                 sbuf_bcat(sb, buf, size);
2220         free(buf, M_TEMP);
2221         *sizep = size;
2222 }
2223
2224 #ifdef KINFO_PROC_SIZE
2225 CTASSERT(sizeof(struct kinfo_proc) == KINFO_PROC_SIZE);
2226 #endif
2227
2228 static void
2229 __elfN(note_procstat_proc)(void *arg, struct sbuf *sb, size_t *sizep)
2230 {
2231         struct proc *p;
2232         size_t size;
2233         int structsize;
2234
2235         p = (struct proc *)arg;
2236         size = sizeof(structsize) + p->p_numthreads *
2237             sizeof(elf_kinfo_proc_t);
2238
2239         if (sb != NULL) {
2240                 KASSERT(*sizep == size, ("invalid size"));
2241                 structsize = sizeof(elf_kinfo_proc_t);
2242                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2243                 PROC_LOCK(p);
2244                 kern_proc_out(p, sb, ELF_KERN_PROC_MASK);
2245         }
2246         *sizep = size;
2247 }
2248
2249 #ifdef KINFO_FILE_SIZE
2250 CTASSERT(sizeof(struct kinfo_file) == KINFO_FILE_SIZE);
2251 #endif
2252
2253 static void
2254 note_procstat_files(void *arg, struct sbuf *sb, size_t *sizep)
2255 {
2256         struct proc *p;
2257         size_t size, sect_sz, i;
2258         ssize_t start_len, sect_len;
2259         int structsize, filedesc_flags;
2260
2261         if (coredump_pack_fileinfo)
2262                 filedesc_flags = KERN_FILEDESC_PACK_KINFO;
2263         else
2264                 filedesc_flags = 0;
2265
2266         p = (struct proc *)arg;
2267         structsize = sizeof(struct kinfo_file);
2268         if (sb == NULL) {
2269                 size = 0;
2270                 sb = sbuf_new(NULL, NULL, 128, SBUF_FIXEDLEN);
2271                 sbuf_set_drain(sb, sbuf_drain_count, &size);
2272                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2273                 PROC_LOCK(p);
2274                 kern_proc_filedesc_out(p, sb, -1, filedesc_flags);
2275                 sbuf_finish(sb);
2276                 sbuf_delete(sb);
2277                 *sizep = size;
2278         } else {
2279                 sbuf_start_section(sb, &start_len);
2280
2281                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2282                 PROC_LOCK(p);
2283                 kern_proc_filedesc_out(p, sb, *sizep - sizeof(structsize),
2284                     filedesc_flags);
2285
2286                 sect_len = sbuf_end_section(sb, start_len, 0, 0);
2287                 if (sect_len < 0)
2288                         return;
2289                 sect_sz = sect_len;
2290
2291                 KASSERT(sect_sz <= *sizep,
2292                     ("kern_proc_filedesc_out did not respect maxlen; "
2293                      "requested %zu, got %zu", *sizep - sizeof(structsize),
2294                      sect_sz - sizeof(structsize)));
2295
2296                 for (i = 0; i < *sizep - sect_sz && sb->s_error == 0; i++)
2297                         sbuf_putc(sb, 0);
2298         }
2299 }
2300
2301 #ifdef KINFO_VMENTRY_SIZE
2302 CTASSERT(sizeof(struct kinfo_vmentry) == KINFO_VMENTRY_SIZE);
2303 #endif
2304
2305 static void
2306 note_procstat_vmmap(void *arg, struct sbuf *sb, size_t *sizep)
2307 {
2308         struct proc *p;
2309         size_t size;
2310         int structsize, vmmap_flags;
2311
2312         if (coredump_pack_vmmapinfo)
2313                 vmmap_flags = KERN_VMMAP_PACK_KINFO;
2314         else
2315                 vmmap_flags = 0;
2316
2317         p = (struct proc *)arg;
2318         structsize = sizeof(struct kinfo_vmentry);
2319         if (sb == NULL) {
2320                 size = 0;
2321                 sb = sbuf_new(NULL, NULL, 128, SBUF_FIXEDLEN);
2322                 sbuf_set_drain(sb, sbuf_drain_count, &size);
2323                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2324                 PROC_LOCK(p);
2325                 kern_proc_vmmap_out(p, sb, -1, vmmap_flags);
2326                 sbuf_finish(sb);
2327                 sbuf_delete(sb);
2328                 *sizep = size;
2329         } else {
2330                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2331                 PROC_LOCK(p);
2332                 kern_proc_vmmap_out(p, sb, *sizep - sizeof(structsize),
2333                     vmmap_flags);
2334         }
2335 }
2336
2337 static void
2338 note_procstat_groups(void *arg, struct sbuf *sb, size_t *sizep)
2339 {
2340         struct proc *p;
2341         size_t size;
2342         int structsize;
2343
2344         p = (struct proc *)arg;
2345         size = sizeof(structsize) + p->p_ucred->cr_ngroups * sizeof(gid_t);
2346         if (sb != NULL) {
2347                 KASSERT(*sizep == size, ("invalid size"));
2348                 structsize = sizeof(gid_t);
2349                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2350                 sbuf_bcat(sb, p->p_ucred->cr_groups, p->p_ucred->cr_ngroups *
2351                     sizeof(gid_t));
2352         }
2353         *sizep = size;
2354 }
2355
2356 static void
2357 note_procstat_umask(void *arg, struct sbuf *sb, size_t *sizep)
2358 {
2359         struct proc *p;
2360         size_t size;
2361         int structsize;
2362
2363         p = (struct proc *)arg;
2364         size = sizeof(structsize) + sizeof(p->p_fd->fd_cmask);
2365         if (sb != NULL) {
2366                 KASSERT(*sizep == size, ("invalid size"));
2367                 structsize = sizeof(p->p_fd->fd_cmask);
2368                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2369                 sbuf_bcat(sb, &p->p_fd->fd_cmask, sizeof(p->p_fd->fd_cmask));
2370         }
2371         *sizep = size;
2372 }
2373
2374 static void
2375 note_procstat_rlimit(void *arg, struct sbuf *sb, size_t *sizep)
2376 {
2377         struct proc *p;
2378         struct rlimit rlim[RLIM_NLIMITS];
2379         size_t size;
2380         int structsize, i;
2381
2382         p = (struct proc *)arg;
2383         size = sizeof(structsize) + sizeof(rlim);
2384         if (sb != NULL) {
2385                 KASSERT(*sizep == size, ("invalid size"));
2386                 structsize = sizeof(rlim);
2387                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2388                 PROC_LOCK(p);
2389                 for (i = 0; i < RLIM_NLIMITS; i++)
2390                         lim_rlimit_proc(p, i, &rlim[i]);
2391                 PROC_UNLOCK(p);
2392                 sbuf_bcat(sb, rlim, sizeof(rlim));
2393         }
2394         *sizep = size;
2395 }
2396
2397 static void
2398 note_procstat_osrel(void *arg, struct sbuf *sb, size_t *sizep)
2399 {
2400         struct proc *p;
2401         size_t size;
2402         int structsize;
2403
2404         p = (struct proc *)arg;
2405         size = sizeof(structsize) + sizeof(p->p_osrel);
2406         if (sb != NULL) {
2407                 KASSERT(*sizep == size, ("invalid size"));
2408                 structsize = sizeof(p->p_osrel);
2409                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2410                 sbuf_bcat(sb, &p->p_osrel, sizeof(p->p_osrel));
2411         }
2412         *sizep = size;
2413 }
2414
2415 static void
2416 __elfN(note_procstat_psstrings)(void *arg, struct sbuf *sb, size_t *sizep)
2417 {
2418         struct proc *p;
2419         elf_ps_strings_t ps_strings;
2420         size_t size;
2421         int structsize;
2422
2423         p = (struct proc *)arg;
2424         size = sizeof(structsize) + sizeof(ps_strings);
2425         if (sb != NULL) {
2426                 KASSERT(*sizep == size, ("invalid size"));
2427                 structsize = sizeof(ps_strings);
2428 #if defined(COMPAT_FREEBSD32) && __ELF_WORD_SIZE == 32
2429                 ps_strings = PTROUT(p->p_sysent->sv_psstrings);
2430 #else
2431                 ps_strings = p->p_sysent->sv_psstrings;
2432 #endif
2433                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2434                 sbuf_bcat(sb, &ps_strings, sizeof(ps_strings));
2435         }
2436         *sizep = size;
2437 }
2438
2439 static void
2440 __elfN(note_procstat_auxv)(void *arg, struct sbuf *sb, size_t *sizep)
2441 {
2442         struct proc *p;
2443         size_t size;
2444         int structsize;
2445
2446         p = (struct proc *)arg;
2447         if (sb == NULL) {
2448                 size = 0;
2449                 sb = sbuf_new(NULL, NULL, 128, SBUF_FIXEDLEN);
2450                 sbuf_set_drain(sb, sbuf_drain_count, &size);
2451                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2452                 PHOLD(p);
2453                 proc_getauxv(curthread, p, sb);
2454                 PRELE(p);
2455                 sbuf_finish(sb);
2456                 sbuf_delete(sb);
2457                 *sizep = size;
2458         } else {
2459                 structsize = sizeof(Elf_Auxinfo);
2460                 sbuf_bcat(sb, &structsize, sizeof(structsize));
2461                 PHOLD(p);
2462                 proc_getauxv(curthread, p, sb);
2463                 PRELE(p);
2464         }
2465 }
2466
2467 static boolean_t
2468 __elfN(parse_notes)(struct image_params *imgp, Elf_Note *checknote,
2469     const char *note_vendor, const Elf_Phdr *pnote,
2470     boolean_t (*cb)(const Elf_Note *, void *, boolean_t *), void *cb_arg)
2471 {
2472         const Elf_Note *note, *note0, *note_end;
2473         const char *note_name;
2474         char *buf;
2475         int i, error;
2476         boolean_t res;
2477
2478         /* We need some limit, might as well use PAGE_SIZE. */
2479         if (pnote == NULL || pnote->p_filesz > PAGE_SIZE)
2480                 return (FALSE);
2481         ASSERT_VOP_LOCKED(imgp->vp, "parse_notes");
2482         if (pnote->p_offset > PAGE_SIZE ||
2483             pnote->p_filesz > PAGE_SIZE - pnote->p_offset) {
2484                 VOP_UNLOCK(imgp->vp, 0);
2485                 buf = malloc(pnote->p_filesz, M_TEMP, M_WAITOK);
2486                 vn_lock(imgp->vp, LK_EXCLUSIVE | LK_RETRY);
2487                 error = vn_rdwr(UIO_READ, imgp->vp, buf, pnote->p_filesz,
2488                     pnote->p_offset, UIO_SYSSPACE, IO_NODELOCKED,
2489                     curthread->td_ucred, NOCRED, NULL, curthread);
2490                 if (error != 0) {
2491                         uprintf("i/o error PT_NOTE\n");
2492                         goto retf;
2493                 }
2494                 note = note0 = (const Elf_Note *)buf;
2495                 note_end = (const Elf_Note *)(buf + pnote->p_filesz);
2496         } else {
2497                 note = note0 = (const Elf_Note *)(imgp->image_header +
2498                     pnote->p_offset);
2499                 note_end = (const Elf_Note *)(imgp->image_header +
2500                     pnote->p_offset + pnote->p_filesz);
2501                 buf = NULL;
2502         }
2503         for (i = 0; i < 100 && note >= note0 && note < note_end; i++) {
2504                 if (!aligned(note, Elf32_Addr) || (const char *)note_end -
2505                     (const char *)note < sizeof(Elf_Note)) {
2506                         goto retf;
2507                 }
2508                 if (note->n_namesz != checknote->n_namesz ||
2509                     note->n_descsz != checknote->n_descsz ||
2510                     note->n_type != checknote->n_type)
2511                         goto nextnote;
2512                 note_name = (const char *)(note + 1);
2513                 if (note_name + checknote->n_namesz >=
2514                     (const char *)note_end || strncmp(note_vendor,
2515                     note_name, checknote->n_namesz) != 0)
2516                         goto nextnote;
2517
2518                 if (cb(note, cb_arg, &res))
2519                         goto ret;
2520 nextnote:
2521                 note = (const Elf_Note *)((const char *)(note + 1) +
2522                     roundup2(note->n_namesz, ELF_NOTE_ROUNDSIZE) +
2523                     roundup2(note->n_descsz, ELF_NOTE_ROUNDSIZE));
2524         }
2525 retf:
2526         res = FALSE;
2527 ret:
2528         free(buf, M_TEMP);
2529         return (res);
2530 }
2531
2532 struct brandnote_cb_arg {
2533         Elf_Brandnote *brandnote;
2534         int32_t *osrel;
2535 };
2536
2537 static boolean_t
2538 brandnote_cb(const Elf_Note *note, void *arg0, boolean_t *res)
2539 {
2540         struct brandnote_cb_arg *arg;
2541
2542         arg = arg0;
2543
2544         /*
2545          * Fetch the osreldate for binary from the ELF OSABI-note if
2546          * necessary.
2547          */
2548         *res = (arg->brandnote->flags & BN_TRANSLATE_OSREL) != 0 &&
2549             arg->brandnote->trans_osrel != NULL ?
2550             arg->brandnote->trans_osrel(note, arg->osrel) : TRUE;
2551
2552         return (TRUE);
2553 }
2554
2555 static Elf_Note fctl_note = {
2556         .n_namesz = sizeof(FREEBSD_ABI_VENDOR),
2557         .n_descsz = sizeof(uint32_t),
2558         .n_type = NT_FREEBSD_FEATURE_CTL,
2559 };
2560
2561 struct fctl_cb_arg {
2562         uint32_t *fctl0;
2563 };
2564
2565 static boolean_t
2566 note_fctl_cb(const Elf_Note *note, void *arg0, boolean_t *res)
2567 {
2568         struct fctl_cb_arg *arg;
2569         const Elf32_Word *desc;
2570         uintptr_t p;
2571
2572         arg = arg0;
2573         p = (uintptr_t)(note + 1);
2574         p += roundup2(note->n_namesz, ELF_NOTE_ROUNDSIZE);
2575         desc = (const Elf32_Word *)p;
2576         *arg->fctl0 = desc[0];
2577         return (TRUE);
2578 }
2579
2580 /*
2581  * Try to find the appropriate ABI-note section for checknote, fetch
2582  * the osreldate and feature control flags for binary from the ELF
2583  * OSABI-note.  Only the first page of the image is searched, the same
2584  * as for headers.
2585  */
2586 static boolean_t
2587 __elfN(check_note)(struct image_params *imgp, Elf_Brandnote *brandnote,
2588     int32_t *osrel, uint32_t *fctl0)
2589 {
2590         const Elf_Phdr *phdr;
2591         const Elf_Ehdr *hdr;
2592         struct brandnote_cb_arg b_arg;
2593         struct fctl_cb_arg f_arg;
2594         int i, j;
2595
2596         hdr = (const Elf_Ehdr *)imgp->image_header;
2597         phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff);
2598         b_arg.brandnote = brandnote;
2599         b_arg.osrel = osrel;
2600         f_arg.fctl0 = fctl0;
2601
2602         for (i = 0; i < hdr->e_phnum; i++) {
2603                 if (phdr[i].p_type == PT_NOTE && __elfN(parse_notes)(imgp,
2604                     &brandnote->hdr, brandnote->vendor, &phdr[i], brandnote_cb,
2605                     &b_arg)) {
2606                         for (j = 0; j < hdr->e_phnum; j++) {
2607                                 if (phdr[j].p_type == PT_NOTE &&
2608                                     __elfN(parse_notes)(imgp, &fctl_note,
2609                                     FREEBSD_ABI_VENDOR, &phdr[j],
2610                                     note_fctl_cb, &f_arg))
2611                                         break;
2612                         }
2613                         return (TRUE);
2614                 }
2615         }
2616         return (FALSE);
2617
2618 }
2619
2620 /*
2621  * Tell kern_execve.c about it, with a little help from the linker.
2622  */
2623 static struct execsw __elfN(execsw) = {
2624         .ex_imgact = __CONCAT(exec_, __elfN(imgact)),
2625         .ex_name = __XSTRING(__CONCAT(ELF, __ELF_WORD_SIZE))
2626 };
2627 EXEC_SET(__CONCAT(elf, __ELF_WORD_SIZE), __elfN(execsw));
2628
2629 static vm_prot_t
2630 __elfN(trans_prot)(Elf_Word flags)
2631 {
2632         vm_prot_t prot;
2633
2634         prot = 0;
2635         if (flags & PF_X)
2636                 prot |= VM_PROT_EXECUTE;
2637         if (flags & PF_W)
2638                 prot |= VM_PROT_WRITE;
2639         if (flags & PF_R)
2640                 prot |= VM_PROT_READ;
2641 #if __ELF_WORD_SIZE == 32
2642 #if defined(__amd64__)
2643         if (i386_read_exec && (flags & PF_R))
2644                 prot |= VM_PROT_EXECUTE;
2645 #endif
2646 #endif
2647         return (prot);
2648 }
2649
2650 static Elf_Word
2651 __elfN(untrans_prot)(vm_prot_t prot)
2652 {
2653         Elf_Word flags;
2654
2655         flags = 0;
2656         if (prot & VM_PROT_EXECUTE)
2657                 flags |= PF_X;
2658         if (prot & VM_PROT_READ)
2659                 flags |= PF_R;
2660         if (prot & VM_PROT_WRITE)
2661                 flags |= PF_W;
2662         return (flags);
2663 }