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