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