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