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