sys/kern/imgact_elf.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 | /*- * Copyright (c) 2000 David O'Brien * Copyright (c) 1995-1996 Søren Schmidt * Copyright (c) 1996 Peter Wemm * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer * in this position and unchanged. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * $FreeBSD: src/sys/kern/imgact_elf.c,v 1.73.2.13 2002/12/28 19:49:41 dillon Exp $ */ #include <sys/param.h> #include <sys/exec.h> #include <sys/fcntl.h> #include <sys/file.h> #include <sys/imgact.h> #include <sys/imgact_elf.h> #include <sys/kernel.h> #include <sys/malloc.h> #include <sys/mman.h> #include <sys/systm.h> #include <sys/proc.h> #include <sys/nlookup.h> #include <sys/pioctl.h> #include <sys/procfs.h> #include <sys/resourcevar.h> #include <sys/signalvar.h> #include <sys/stat.h> #include <sys/syscall.h> #include <sys/sysctl.h> #include <sys/sysent.h> #include <sys/vnode.h> #include <sys/eventhandler.h> #include <cpu/lwbuf.h> #include <vm/vm.h> #include <vm/vm_kern.h> #include <vm/vm_param.h> #include <vm/pmap.h> #include <sys/lock.h> #include <vm/vm_map.h> #include <vm/vm_object.h> #include <vm/vm_extern.h> #include <machine/elf.h> #include <machine/md_var.h> #include <sys/mount.h> #include <sys/ckpt.h> #define OLD_EI_BRAND 8 #define truncps(va,ps) rounddown2(va, ps) #define aligned(a,t) (truncps((u_long)(a), sizeof(t)) == (u_long)(a)) static int __elfN(check_header)(const Elf_Ehdr *hdr); static Elf_Brandinfo *__elfN(get_brandinfo)(struct image_params *imgp, const char *interp, int32_t *osrel); static int __elfN(load_file)(struct proc *p, const char *file, u_long *addr, u_long *entry); static int __elfN(load_section)(struct proc *p, struct vmspace *vmspace, struct vnode *vp, vm_offset_t offset, caddr_t vmaddr, size_t memsz, size_t filsz, vm_prot_t prot); static int __CONCAT(exec_, __elfN(imgact))(struct image_params *imgp); static boolean_t __elfN(bsd_trans_osrel)(const Elf_Note *note, int32_t *osrel); static boolean_t __elfN(check_note)(struct image_params *imgp, Elf_Brandnote *checknote, int32_t *osrel); static vm_prot_t __elfN(trans_prot)(Elf_Word); static Elf_Word __elfN(untrans_prot)(vm_prot_t); static boolean_t check_PT_NOTE(struct image_params *imgp, Elf_Brandnote *checknote, int32_t *osrel, const Elf_Phdr * pnote); static boolean_t extract_interpreter(struct image_params *imgp, const Elf_Phdr *pinterpreter, char *data); static u_long pie_base_hint(struct proc *p); static int elf_legacy_coredump = 0; static int __elfN(fallback_brand) = -1; static int elf_pie_base_mmap = 0; #if defined(__x86_64__) SYSCTL_NODE(_kern, OID_AUTO, elf64, CTLFLAG_RW, 0, ""); SYSCTL_INT(_debug, OID_AUTO, elf64_legacy_coredump, CTLFLAG_RW, &elf_legacy_coredump, 0, "legacy coredump mode"); SYSCTL_INT(_kern_elf64, OID_AUTO, fallback_brand, CTLFLAG_RW, &elf64_fallback_brand, 0, "ELF64 brand of last resort"); TUNABLE_INT("kern.elf64.fallback_brand", &elf64_fallback_brand); SYSCTL_INT(_kern_elf64, OID_AUTO, pie_base_mmap, CTLFLAG_RW, &elf_pie_base_mmap, 0, "choose a base address for PIE as if it is mapped with mmap()"); TUNABLE_INT("kern.elf64.pie_base_mmap", &elf_pie_base_mmap); #else /* i386 assumed */ SYSCTL_NODE(_kern, OID_AUTO, elf32, CTLFLAG_RW, 0, ""); SYSCTL_INT(_debug, OID_AUTO, elf32_legacy_coredump, CTLFLAG_RW, &elf_legacy_coredump, 0, "legacy coredump mode"); SYSCTL_INT(_kern_elf32, OID_AUTO, fallback_brand, CTLFLAG_RW, &elf32_fallback_brand, 0, "ELF32 brand of last resort"); TUNABLE_INT("kern.elf32.fallback_brand", &elf32_fallback_brand); SYSCTL_INT(_kern_elf32, OID_AUTO, pie_base_mmap, CTLFLAG_RW, &elf_pie_base_mmap, 0, "choose a base address for PIE as if it is mapped with mmap()"); TUNABLE_INT("kern.elf32.pie_base_mmap", &elf_pie_base_mmap); #endif static Elf_Brandinfo *elf_brand_list[MAX_BRANDS]; static const char DRAGONFLY_ABI_VENDOR[] = "DragonFly"; Elf_Brandnote __elfN(dragonfly_brandnote) = { .hdr.n_namesz = sizeof(DRAGONFLY_ABI_VENDOR), .hdr.n_descsz = sizeof(int32_t), .hdr.n_type = 1, .vendor = DRAGONFLY_ABI_VENDOR, .flags = BN_TRANSLATE_OSREL, .trans_osrel = __elfN(bsd_trans_osrel), }; int __elfN(insert_brand_entry)(Elf_Brandinfo *entry) { int i; for (i = 0; i < MAX_BRANDS; i++) { if (elf_brand_list[i] == NULL) { elf_brand_list[i] = entry; break; } } if (i == MAX_BRANDS) { uprintf("WARNING: %s: could not insert brandinfo entry: %p\n", __func__, entry); return (-1); } return (0); } int __elfN(remove_brand_entry)(Elf_Brandinfo *entry) { int i; for (i = 0; i < MAX_BRANDS; i++) { if (elf_brand_list[i] == entry) { elf_brand_list[i] = NULL; break; } } if (i == MAX_BRANDS) return (-1); return (0); } /* * Check if an elf brand is being used anywhere in the system. * * Used by the linux emulation module unloader. This isn't safe from * races. */ struct elf_brand_inuse_info { int rval; Elf_Brandinfo *entry; }; static int elf_brand_inuse_callback(struct proc *p, void *data); int __elfN(brand_inuse)(Elf_Brandinfo *entry) { struct elf_brand_inuse_info info; info.rval = FALSE; info.entry = entry; allproc_scan(elf_brand_inuse_callback, &info, 0); return (info.rval); } static int elf_brand_inuse_callback(struct proc *p, void *data) { struct elf_brand_inuse_info *info = data; if (p->p_sysent == info->entry->sysvec) { info->rval = TRUE; return (-1); } return (0); } static int __elfN(check_header)(const Elf_Ehdr *hdr) { Elf_Brandinfo *bi; int i; if (!IS_ELF(*hdr) || hdr->e_ident[EI_CLASS] != ELF_TARG_CLASS || hdr->e_ident[EI_DATA] != ELF_TARG_DATA || hdr->e_ident[EI_VERSION] != EV_CURRENT || hdr->e_phentsize != sizeof(Elf_Phdr) || hdr->e_ehsize != sizeof(Elf_Ehdr) || hdr->e_version != ELF_TARG_VER) return (ENOEXEC); /* * Make sure we have at least one brand for this machine. */ for (i = 0; i < MAX_BRANDS; i++) { bi = elf_brand_list[i]; if (bi != NULL && bi->machine == hdr->e_machine) break; } if (i == MAX_BRANDS) return (ENOEXEC); return (0); } static int __elfN(load_section)(struct proc *p, struct vmspace *vmspace, struct vnode *vp, vm_offset_t offset, caddr_t vmaddr, size_t memsz, size_t filsz, vm_prot_t prot) { size_t map_len; vm_offset_t map_addr; int error, rv, cow; int count; int shared; size_t copy_len; vm_object_t object; vm_offset_t file_addr; object = vp->v_object; error = 0; /* * In most cases we will be able to use a shared lock on the * object we are inserting into the map. The lock will be * upgraded in situations where new VM pages must be allocated. */ vm_object_hold_shared(object); shared = 1; /* * It's necessary to fail if the filsz + offset taken from the * header is greater than the actual file pager object's size. * If we were to allow this, then the vm_map_find() below would * walk right off the end of the file object and into the ether. * * While I'm here, might as well check for something else that * is invalid: filsz cannot be greater than memsz. */ if ((off_t)filsz + offset > vp->v_filesize || filsz > memsz) { uprintf("elf_load_section: truncated ELF file\n"); vm_object_drop(object); return (ENOEXEC); } map_addr = trunc_page((vm_offset_t)vmaddr); file_addr = trunc_page(offset); /* * We have two choices. We can either clear the data in the last page * of an oversized mapping, or we can start the anon mapping a page * early and copy the initialized data into that first page. We * choose the second.. */ if (memsz > filsz) map_len = trunc_page(offset+filsz) - file_addr; else map_len = round_page(offset+filsz) - file_addr; if (map_len != 0) { vm_object_reference_locked(object); /* cow flags: don't dump readonly sections in core */ cow = COWF_COPY_ON_WRITE | COWF_PREFAULT; if ((prot & VM_PROT_WRITE) == 0) cow |= COWF_DISABLE_COREDUMP; if (shared == 0) cow |= COWF_PREFAULT_RELOCK; count = vm_map_entry_reserve(MAP_RESERVE_COUNT); vm_map_lock(&vmspace->vm_map); rv = vm_map_insert(&vmspace->vm_map, &count, object, NULL, file_addr, NULL, /* file offset */ map_addr, /* virtual start */ map_addr + map_len,/* virtual end */ VM_MAPTYPE_NORMAL, VM_SUBSYS_IMGACT, prot, VM_PROT_ALL, cow); vm_map_unlock(&vmspace->vm_map); vm_map_entry_release(count); /* * NOTE: Object must have a hold ref when calling * vm_object_deallocate(). */ if (rv != KERN_SUCCESS) { vm_object_deallocate_locked(object); vm_object_drop(object); return (EINVAL); } /* we can stop now if we've covered it all */ if (memsz == filsz) { vm_object_drop(object); return (0); } } /* * We have to get the remaining bit of the file into the first part * of the oversized map segment. This is normally because the .data * segment in the file is extended to provide bss. It's a neat idea * to try and save a page, but it's a pain in the behind to implement. */ copy_len = (offset + filsz) - trunc_page(offset + filsz); map_addr = trunc_page((vm_offset_t)vmaddr + filsz); map_len = round_page((vm_offset_t)vmaddr + memsz) - map_addr; /* This had damn well better be true! */ if (map_len != 0) { count = vm_map_entry_reserve(MAP_RESERVE_COUNT); vm_map_lock(&vmspace->vm_map); rv = vm_map_insert(&vmspace->vm_map, &count, NULL, NULL, 0, NULL, map_addr, map_addr + map_len, VM_MAPTYPE_NORMAL, VM_SUBSYS_IMGACT, VM_PROT_ALL, VM_PROT_ALL, 0); vm_map_unlock(&vmspace->vm_map); vm_map_entry_release(count); if (rv != KERN_SUCCESS) { vm_object_drop(object); return (EINVAL); } } if (copy_len != 0) { struct lwbuf *lwb; struct lwbuf lwb_cache; vm_page_t m; m = vm_fault_object_page(object, trunc_page(offset + filsz), VM_PROT_READ, 0, &shared, &error); vm_object_drop(object); if (m) { lwb = lwbuf_alloc(m, &lwb_cache); error = copyout((caddr_t)lwbuf_kva(lwb), (caddr_t)map_addr, copy_len); lwbuf_free(lwb); vm_page_unhold(m); } } else { vm_object_drop(object); } /* * set it to the specified protection */ if (error == 0) { vm_map_protect(&vmspace->vm_map, map_addr, map_addr + map_len, prot, FALSE); } return (error); } /* * Load the file "file" into memory. It may be either a shared object * or an executable. * * The "addr" reference parameter is in/out. On entry, it specifies * the address where a shared object should be loaded. If the file is * an executable, this value is ignored. On exit, "addr" specifies * where the file was actually loaded. * * The "entry" reference parameter is out only. On exit, it specifies * the entry point for the loaded file. */ static int __elfN(load_file)(struct proc *p, const char *file, u_long *addr, u_long *entry) { struct { struct nlookupdata nd; struct vattr_lite lva; struct image_params image_params; } *tempdata; const Elf_Ehdr *hdr = NULL; const Elf_Phdr *phdr = NULL; struct nlookupdata *nd; struct vmspace *vmspace = p->p_vmspace; struct vattr_lite *lvap; struct image_params *imgp; struct mount *topmnt; vm_prot_t prot; u_long rbase; u_long base_addr = 0; int error, i, numsegs; tempdata = kmalloc(sizeof(*tempdata), M_TEMP, M_WAITOK); nd = &tempdata->nd; lvap = &tempdata->lva; imgp = &tempdata->image_params; /* * Initialize part of the common data */ imgp->proc = p; imgp->lvap = lvap; imgp->firstpage = NULL; imgp->image_header = NULL; imgp->vp = NULL; error = nlookup_init(nd, file, UIO_SYSSPACE, NLC_FOLLOW); if (error == 0) error = nlookup(nd); if (error == 0) error = cache_vget(&nd->nl_nch, nd->nl_cred, LK_SHARED, &imgp->vp); topmnt = nd->nl_nch.mount; nlookup_done(nd); if (error) goto fail; /* * Check permissions, modes, uid, etc on the file, and "open" it. */ error = exec_check_permissions(imgp, topmnt); if (error) { vn_unlock(imgp->vp); goto fail; } error = exec_map_first_page(imgp); /* * Also make certain that the interpreter stays the same, so set * its VTEXT flag, too. */ if (error == 0) vsetflags(imgp->vp, VTEXT); vn_unlock(imgp->vp); if (error) goto fail; hdr = (const Elf_Ehdr *)imgp->image_header; if ((error = __elfN(check_header)(hdr)) != 0) goto fail; if (hdr->e_type == ET_DYN) rbase = *addr; else if (hdr->e_type == ET_EXEC) rbase = 0; else { error = ENOEXEC; goto fail; } /* Only support headers that fit within first page for now */ /* (multiplication of two Elf_Half fields will not overflow) */ if ((hdr->e_phoff > PAGE_SIZE) || (hdr->e_phentsize * hdr->e_phnum) > PAGE_SIZE - hdr->e_phoff) { error = ENOEXEC; goto fail; } phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff); if (!aligned(phdr, Elf_Addr)) { error = ENOEXEC; goto fail; } for (i = 0, numsegs = 0; i < hdr->e_phnum; i++) { if (phdr[i].p_type == PT_LOAD && phdr[i].p_memsz != 0) { /* Loadable segment */ prot = __elfN(trans_prot)(phdr[i].p_flags); error = __elfN(load_section)( p, vmspace, imgp->vp, phdr[i].p_offset, (caddr_t)phdr[i].p_vaddr + rbase, phdr[i].p_memsz, phdr[i].p_filesz, prot); if (error != 0) goto fail; /* * Establish the base address if this is the * first segment. */ if (numsegs == 0) base_addr = trunc_page(phdr[i].p_vaddr + rbase); numsegs++; } } *addr = base_addr; *entry = (unsigned long)hdr->e_entry + rbase; fail: if (imgp->firstpage) exec_unmap_first_page(imgp); if (imgp->vp) { vrele(imgp->vp); imgp->vp = NULL; } kfree(tempdata, M_TEMP); return (error); } static Elf_Brandinfo * __elfN(get_brandinfo)(struct image_params *imgp, const char *interp, int32_t *osrel) { const Elf_Ehdr *hdr = (const Elf_Ehdr *)imgp->image_header; Elf_Brandinfo *bi; boolean_t ret; int i; /* We support four types of branding -- (1) the ELF EI_OSABI field * that SCO added to the ELF spec, (2) FreeBSD 3.x's traditional string * branding within the ELF header, (3) path of the `interp_path' field, * and (4) the ".note.ABI-tag" ELF section. */ /* Look for an ".note.ABI-tag" ELF section */ for (i = 0; i < MAX_BRANDS; i++) { bi = elf_brand_list[i]; if (bi == NULL) continue; if (hdr->e_machine == bi->machine && (bi->flags & (BI_BRAND_NOTE|BI_BRAND_NOTE_MANDATORY)) != 0) { ret = __elfN(check_note)(imgp, bi->brand_note, osrel); if (ret) return (bi); } } /* If the executable has a brand, search for it in the brand list. */ for (i = 0; i < MAX_BRANDS; i++) { bi = elf_brand_list[i]; if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY) continue; if (hdr->e_machine == bi->machine && (hdr->e_ident[EI_OSABI] == bi->brand || strncmp((const char *)&hdr->e_ident[OLD_EI_BRAND], bi->compat_3_brand, strlen(bi->compat_3_brand)) == 0)) return (bi); } /* Lacking a known brand, search for a recognized interpreter. */ if (interp != NULL) { for (i = 0; i < MAX_BRANDS; i++) { bi = elf_brand_list[i]; if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY) continue; if (hdr->e_machine == bi->machine && strcmp(interp, bi->interp_path) == 0) return (bi); } } /* Lacking a recognized interpreter, try the default brand */ for (i = 0; i < MAX_BRANDS; i++) { bi = elf_brand_list[i]; if (bi == NULL || bi->flags & BI_BRAND_NOTE_MANDATORY) continue; if (hdr->e_machine == bi->machine && __elfN(fallback_brand) == bi->brand) return (bi); } return (NULL); } static int __CONCAT(exec_,__elfN(imgact))(struct image_params *imgp) { const Elf_Ehdr *hdr = (const Elf_Ehdr *) imgp->image_header; const Elf_Phdr *phdr; Elf_Auxargs *elf_auxargs; struct vmspace *vmspace; vm_prot_t prot; u_long text_size = 0, data_size = 0, total_size = 0; u_long text_addr = 0, data_addr = 0; u_long seg_size, seg_addr; u_long addr, baddr, et_dyn_addr = 0, entry = 0, proghdr = 0; int32_t osrel = 0; int error = 0, i, n; boolean_t failure; char *interp = NULL; const char *newinterp = NULL; Elf_Brandinfo *brand_info; char *path; /* * Do we have a valid ELF header ? * * Only allow ET_EXEC & ET_DYN here, reject ET_DYN later if a particular * brand doesn't support it. Both DragonFly platforms do by default. */ if (__elfN(check_header)(hdr) != 0 || (hdr->e_type != ET_EXEC && hdr->e_type != ET_DYN)) return (-1); /* * From here on down, we return an errno, not -1, as we've * detected an ELF file. */ if ((hdr->e_phoff > PAGE_SIZE) || (hdr->e_phoff + hdr->e_phentsize * hdr->e_phnum) > PAGE_SIZE) { /* Only support headers in first page for now */ return (ENOEXEC); } phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff); if (!aligned(phdr, Elf_Addr)) return (ENOEXEC); n = 0; baddr = 0; for (i = 0; i < hdr->e_phnum; i++) { if (phdr[i].p_type == PT_LOAD) { if (n == 0) baddr = phdr[i].p_vaddr; n++; continue; } if (phdr[i].p_type == PT_INTERP) { /* * If interp is already defined there are more than * one PT_INTERP program headers present. Take only * the first one and ignore the rest. */ if (interp != NULL) continue; if (phdr[i].p_filesz == 0 || phdr[i].p_filesz > PAGE_SIZE || phdr[i].p_filesz > MAXPATHLEN) return (ENOEXEC); interp = kmalloc(phdr[i].p_filesz, M_TEMP, M_WAITOK); failure = extract_interpreter(imgp, &phdr[i], interp); if (failure) { kfree(interp, M_TEMP); return (ENOEXEC); } continue; } } brand_info = __elfN(get_brandinfo)(imgp, interp, &osrel); if (brand_info == NULL) { uprintf("ELF binary type \"%u\" not known.\n", hdr->e_ident[EI_OSABI]); if (interp != NULL) kfree(interp, M_TEMP); return (ENOEXEC); } if (hdr->e_type == ET_DYN) { if ((brand_info->flags & BI_CAN_EXEC_DYN) == 0) { if (interp != NULL) kfree(interp, M_TEMP); return (ENOEXEC); } /* * If p_vaddr field of PT_LOAD program header is zero and type of an * executale is ET_DYN, then it must be a position independent * executable (PIE). In this case the system needs to pick a base * address for us. Set et_dyn_addr to non-zero and choose the actual * address when we are ready. */ if (baddr == 0) et_dyn_addr = 1; } if (interp != NULL && brand_info->interp_newpath != NULL) newinterp = brand_info->interp_newpath; exec_new_vmspace(imgp, NULL); /* * Yeah, I'm paranoid. There is every reason in the world to get * VTEXT now since from here on out, there are places we can have * a context switch. Better safe than sorry; I really don't want * the file to change while it's being loaded. */ vsetflags(imgp->vp, VTEXT); vmspace = imgp->proc->p_vmspace; /* Choose the base address for dynamic executables if we need to. */ if (et_dyn_addr) et_dyn_addr = pie_base_hint(imgp->proc); for (i = 0; i < hdr->e_phnum; i++) { switch (phdr[i].p_type) { case PT_LOAD: /* Loadable segment */ if (phdr[i].p_memsz == 0) break; prot = __elfN(trans_prot)(phdr[i].p_flags); if ((error = __elfN(load_section)( imgp->proc, vmspace, imgp->vp, phdr[i].p_offset, (caddr_t)phdr[i].p_vaddr + et_dyn_addr, phdr[i].p_memsz, phdr[i].p_filesz, prot)) != 0) { if (interp != NULL) kfree (interp, M_TEMP); return (error); } /* * If this segment contains the program headers, * remember their virtual address for the AT_PHDR * aux entry. Static binaries don't usually include * a PT_PHDR entry. */ if (phdr[i].p_offset == 0 && hdr->e_phoff + hdr->e_phnum * hdr->e_phentsize <= phdr[i].p_filesz) proghdr = phdr[i].p_vaddr + hdr->e_phoff + et_dyn_addr; seg_addr = trunc_page(phdr[i].p_vaddr + et_dyn_addr); seg_size = round_page(phdr[i].p_memsz + phdr[i].p_vaddr + et_dyn_addr - seg_addr); /* * Is this .text or .data? We can't use * VM_PROT_WRITE or VM_PROT_EXEC, it breaks the * alpha terribly and possibly does other bad * things so we stick to the old way of figuring * it out: If the segment contains the program * entry point, it's a text segment, otherwise it * is a data segment. * * Note that obreak() assumes that data_addr + * data_size == end of data load area, and the ELF * file format expects segments to be sorted by * address. If multiple data segments exist, the * last one will be used. */ if (hdr->e_entry >= phdr[i].p_vaddr && hdr->e_entry < (phdr[i].p_vaddr + phdr[i].p_memsz)) { text_size = seg_size; text_addr = seg_addr; entry = (u_long)hdr->e_entry + et_dyn_addr; } else { data_size = seg_size; data_addr = seg_addr; } total_size += seg_size; /* * Check limits. It should be safe to check the * limits after loading the segment since we do * not actually fault in all the segment's pages. */ if (data_size > imgp->proc->p_rlimit[RLIMIT_DATA].rlim_cur || text_size > maxtsiz || total_size > imgp->proc->p_rlimit[RLIMIT_VMEM].rlim_cur) { if (interp != NULL) kfree(interp, M_TEMP); error = ENOMEM; return (error); } break; case PT_PHDR: /* Program header table info */ proghdr = phdr[i].p_vaddr + et_dyn_addr; break; default: break; } } vmspace->vm_tsize = text_size; /* in bytes */ vmspace->vm_taddr = (caddr_t)(uintptr_t)text_addr; vmspace->vm_dsize = data_size; /* in bytes */ vmspace->vm_daddr = (caddr_t)(uintptr_t)data_addr; addr = ELF_RTLD_ADDR(vmspace); imgp->entry_addr = entry; imgp->proc->p_sysent = brand_info->sysvec; if (interp != NULL) { int have_interp = FALSE; if (brand_info->emul_path != NULL && brand_info->emul_path[0] != '\0') { path = kmalloc(MAXPATHLEN, M_TEMP, M_WAITOK); ksnprintf(path, MAXPATHLEN, "%s%s", brand_info->emul_path, interp); error = __elfN(load_file)(imgp->proc, path, &addr, &imgp->entry_addr); kfree(path, M_TEMP); if (error == 0) have_interp = TRUE; } if (!have_interp && newinterp != NULL) { error = __elfN(load_file)(imgp->proc, newinterp, &addr, &imgp->entry_addr); if (error == 0) have_interp = TRUE; } if (!have_interp) { error = __elfN(load_file)(imgp->proc, interp, &addr, &imgp->entry_addr); } if (error != 0) { uprintf("ELF interpreter %s not found\n", interp); kfree(interp, M_TEMP); return (error); } kfree(interp, M_TEMP); } else addr = et_dyn_addr; /* * Construct auxargs table (used by the fixup routine) */ elf_auxargs = kmalloc(sizeof(Elf_Auxargs), M_TEMP, M_WAITOK); elf_auxargs->execfd = -1; elf_auxargs->phdr = proghdr; elf_auxargs->phent = hdr->e_phentsize; elf_auxargs->phnum = hdr->e_phnum; elf_auxargs->pagesz = PAGE_SIZE; elf_auxargs->base = addr; elf_auxargs->flags = 0; elf_auxargs->entry = entry; imgp->auxargs = elf_auxargs; imgp->interpreted = 0; imgp->proc->p_osrel = osrel; return (error); } int __elfN(dragonfly_fixup)(register_t **stack_base, struct image_params *imgp) { Elf_Auxargs *args = (Elf_Auxargs *)imgp->auxargs; Elf_Addr *base; Elf_Addr *pos; base = (Elf_Addr *)*stack_base; pos = base + (imgp->args->argc + imgp->args->envc + 2); if (args->execfd != -1) AUXARGS_ENTRY(pos, AT_EXECFD, args->execfd); AUXARGS_ENTRY(pos, AT_PHDR, args->phdr); AUXARGS_ENTRY(pos, AT_PHENT, args->phent); AUXARGS_ENTRY(pos, AT_PHNUM, args->phnum); AUXARGS_ENTRY(pos, AT_PAGESZ, args->pagesz); AUXARGS_ENTRY(pos, AT_FLAGS, args->flags); AUXARGS_ENTRY(pos, AT_ENTRY, args->entry); AUXARGS_ENTRY(pos, AT_BASE, args->base); if (imgp->execpathp != 0) AUXARGS_ENTRY(pos, AT_EXECPATH, imgp->execpathp); AUXARGS_ENTRY(pos, AT_OSRELDATE, osreldate); AUXARGS_ENTRY(pos, AT_NULL, 0); kfree(imgp->auxargs, M_TEMP); imgp->auxargs = NULL; base--; suword64(base, (long)imgp->args->argc); *stack_base = (register_t *)base; return (0); } /* * Code for generating ELF core dumps. */ typedef int (*segment_callback)(vm_map_entry_t, void *); /* Closure for cb_put_phdr(). */ struct phdr_closure { Elf_Phdr *phdr; /* Program header to fill in (incremented) */ Elf_Phdr *phdr_max; /* Pointer bound for error check */ Elf_Off offset; /* Offset of segment in core file */ }; /* Closure for cb_size_segment(). */ struct sseg_closure { int count; /* Count of writable segments. */ size_t vsize; /* Total size of all writable segments. */ }; /* Closure for cb_put_fp(). */ struct fp_closure { struct vn_hdr *vnh; struct vn_hdr *vnh_max; int count; struct stat *sb; }; typedef struct elf_buf { char *buf; size_t off; size_t off_max; } *elf_buf_t; static void *target_reserve(elf_buf_t target, size_t bytes, int *error); static int cb_put_phdr (vm_map_entry_t, void *); static int cb_size_segment (vm_map_entry_t, void *); static int cb_fpcount_segment(vm_map_entry_t, void *); static int cb_put_fp(vm_map_entry_t, void *); static int each_segment (struct proc *, segment_callback, void *, int); static int __elfN(corehdr)(struct lwp *, int, struct file *, struct ucred *, int, elf_buf_t); enum putmode { WRITE, DRYRUN }; static int __elfN(puthdr)(struct lwp *, elf_buf_t, int sig, enum putmode, int, struct file *); static int elf_putallnotes(struct lwp *, elf_buf_t, int, enum putmode); static int __elfN(putnote)(elf_buf_t, const char *, int, const void *, size_t); static int elf_putsigs(struct lwp *, elf_buf_t); static int elf_puttextvp(struct proc *, elf_buf_t); static int elf_putfiles(struct proc *, elf_buf_t, struct file *); int __elfN(coredump)(struct lwp *lp, int sig, struct vnode *vp, off_t limit) { struct file *fp; int error; if ((error = falloc(NULL, &fp, NULL)) != 0) return (error); fsetcred(fp, lp->lwp_proc->p_ucred); /* * XXX fixme. */ fp->f_type = DTYPE_VNODE; fp->f_flag = O_CREAT|O_WRONLY|O_NOFOLLOW; fp->f_ops = &vnode_fileops; fp->f_data = vp; error = generic_elf_coredump(lp, sig, fp, limit); fp->f_type = 0; fp->f_flag = 0; fp->f_ops = &badfileops; fp->f_data = NULL; fdrop(fp); return (error); } int generic_elf_coredump(struct lwp *lp, int sig, struct file *fp, off_t limit) { struct proc *p = lp->lwp_proc; struct ucred *cred = p->p_ucred; int error = 0; struct sseg_closure seginfo; struct elf_buf target; if (!fp) kprintf("can't dump core - null fp\n"); /* * Size the program segments */ seginfo.count = 0; seginfo.vsize = 0; each_segment(p, cb_size_segment, &seginfo, 1); /* * Calculate the size of the core file header area by making * a dry run of generating it. Nothing is written, but the * size is calculated. */ bzero(&target, sizeof(target)); __elfN(puthdr)(lp, &target, sig, DRYRUN, seginfo.count, fp); if (target.off + seginfo.vsize >= limit) return (EFAULT); /* * Allocate memory for building the header, fill it up, * and write it out. */ target.off_max = target.off; target.off = 0; target.buf = kmalloc(target.off_max, M_TEMP, M_WAITOK|M_ZERO); error = __elfN(corehdr)(lp, sig, fp, cred, seginfo.count, &target); /* Write the contents of all of the writable segments. */ if (error == 0) { Elf_Phdr *php; int i; ssize_t nbytes; php = (Elf_Phdr *)(target.buf + sizeof(Elf_Ehdr)) + 1; for (i = 0; i < seginfo.count; i++) { error = fp_write(fp, (caddr_t)php->p_vaddr, php->p_filesz, &nbytes, UIO_USERSPACE); if (error != 0) break; if (p->p_flags & P_MUSTKILL) { error = EIO; break; } php++; } } kfree(target.buf, M_TEMP); return (error); } /* * A callback for each_segment() to write out the segment's * program header entry. */ static int cb_put_phdr(vm_map_entry_t entry, void *closure) { struct phdr_closure *phc = closure; Elf_Phdr *phdr = phc->phdr; if (phc->phdr == phc->phdr_max) return (EINVAL); phc->offset = round_page(phc->offset); phdr->p_type = PT_LOAD; phdr->p_offset = phc->offset; phdr->p_vaddr = entry->ba.start; phdr->p_paddr = 0; phdr->p_filesz = phdr->p_memsz = entry->ba.end - entry->ba.start; phdr->p_align = PAGE_SIZE; phdr->p_flags = __elfN(untrans_prot)(entry->protection); phc->offset += phdr->p_filesz; ++phc->phdr; return (0); } /* * A callback for each_writable_segment() to gather information about * the number of segments and their total size. */ static int cb_size_segment(vm_map_entry_t entry, void *closure) { struct sseg_closure *ssc = closure; ++ssc->count; ssc->vsize += entry->ba.end - entry->ba.start; return (0); } /* * A callback for each_segment() to gather information about * the number of text segments. */ static int cb_fpcount_segment(vm_map_entry_t entry, void *closure) { int *count = closure; struct vnode *vp; if (entry->ba.object && entry->ba.object->type == OBJT_VNODE) { vp = (struct vnode *)entry->ba.object->handle; if ((vp->v_flag & VCKPT) && curproc->p_textvp == vp) return (0); ++*count; } return (0); } static int cb_put_fp(vm_map_entry_t entry, void *closure) { struct fp_closure *fpc = closure; struct vn_hdr *vnh = fpc->vnh; Elf_Phdr *phdr = &vnh->vnh_phdr; struct vnode *vp; int error; /* * If an entry represents a vnode then write out a file handle. * * If we are checkpointing a checkpoint-restored program we do * NOT record the filehandle for the old checkpoint vnode (which * is mapped all over the place). Instead we rely on the fact * that a checkpoint-restored program does not mmap() the checkpt * vnode NOCORE, so its contents will be written out to the * new checkpoint file. This is necessary because the 'old' * checkpoint file is typically destroyed when a new one is created * and thus cannot be used to restore the new checkpoint. * * Theoretically we could create a chain of checkpoint files and * operate the checkpointing operation kinda like an incremental * checkpoint, but a checkpoint restore would then likely wind up * referencing many prior checkpoint files and that is a bit over * the top for the purpose of the checkpoint API. */ if (entry->ba.object && entry->ba.object->type == OBJT_VNODE) { vp = (struct vnode *)entry->ba.object->handle; if ((vp->v_flag & VCKPT) && curproc->p_textvp == vp) return (0); if (vnh == fpc->vnh_max) return (EINVAL); if (vp->v_mount) vnh->vnh_fh.fh_fsid = vp->v_mount->mnt_stat.f_fsid; error = VFS_VPTOFH(vp, &vnh->vnh_fh.fh_fid); if (error) { char *freepath, *fullpath; /* * This is actually a relatively common occurance, * so don't spew on the console by default. */ if (vn_fullpath(curproc, vp, &fullpath, &freepath, 0)) { if (bootverbose) kprintf("Warning: coredump, error %d: cannot store file handle for vnode %p\n", error, vp); } else { if (bootverbose) kprintf("Warning: coredump, error %d: cannot store file handle for %s\n", error, fullpath); kfree(freepath, M_TEMP); } error = 0; } phdr->p_type = PT_LOAD; phdr->p_offset = 0; /* not written to core */ phdr->p_vaddr = entry->ba.start; phdr->p_paddr = 0; phdr->p_filesz = phdr->p_memsz = entry->ba.end - entry->ba.start; phdr->p_align = PAGE_SIZE; phdr->p_flags = 0; if (entry->protection & VM_PROT_READ) phdr->p_flags |= PF_R; if (entry->protection & VM_PROT_WRITE) phdr->p_flags |= PF_W; if (entry->protection & VM_PROT_EXECUTE) phdr->p_flags |= PF_X; ++fpc->vnh; ++fpc->count; } return (0); } /* * For each writable segment in the process's memory map, call the given * function with a pointer to the map entry and some arbitrary * caller-supplied data. */ static int each_segment(struct proc *p, segment_callback func, void *closure, int writable) { int error = 0; vm_map_t map = &p->p_vmspace->vm_map; vm_map_entry_t entry; RB_FOREACH(entry, vm_map_rb_tree, &map->rb_root) { vm_map_backing_t ba; vm_object_t obj; /* * Don't dump inaccessible mappings, deal with legacy * coredump mode. * * Note that read-only segments related to the elf binary * are marked MAP_ENTRY_NOCOREDUMP now so we no longer * need to arbitrarily ignore such segments. */ if (elf_legacy_coredump) { if (writable && (entry->protection & VM_PROT_RW) != VM_PROT_RW) continue; } else { if (writable && (entry->protection & VM_PROT_ALL) == 0) continue; } /* * Dont include memory segment in the coredump if * MAP_NOCORE is set in mmap(2) or MADV_NOCORE in * madvise(2). * * Currently we only dump normal VM object maps. We do * not dump submaps or virtual page tables. */ if (writable && (entry->eflags & MAP_ENTRY_NOCOREDUMP)) continue; if (entry->maptype != VM_MAPTYPE_NORMAL) continue; /* * Find the bottom-most object, leaving the base object * and the bottom-most object held (but only one hold * if they happen to be the same). */ ba = &entry->ba; while (ba->backing_ba) ba = ba->backing_ba; obj = ba->object; /* * The callback only applies to default, swap, or vnode * objects. Other types of objects such as memory-mapped * devices are ignored. */ if (obj) { vm_object_hold_shared(obj); if (obj->type == OBJT_DEFAULT || obj->type == OBJT_SWAP || obj->type == OBJT_VNODE) { error = (*func)(entry, closure); } vm_object_drop(obj); } } return (error); } static void * target_reserve(elf_buf_t target, size_t bytes, int *error) { void *res = NULL; if (target->buf) { if (target->off + bytes > target->off_max) *error = EINVAL; else res = target->buf + target->off; } target->off += bytes; return (res); } /* * Write the core file header to the file, including padding up to * the page boundary. */ static int __elfN(corehdr)(struct lwp *lp, int sig, struct file *fp, struct ucred *cred, int numsegs, elf_buf_t target) { int error; ssize_t nbytes; /* * Fill in the header. The fp is passed so we can detect and flag * a checkpoint file pointer within the core file itself, because * it may not be restored from the same file handle. */ error = __elfN(puthdr)(lp, target, sig, WRITE, numsegs, fp); /* Write it to the core file. */ if (error == 0) { error = fp_write(fp, target->buf, target->off, &nbytes, UIO_SYSSPACE); } return (error); } static int __elfN(puthdr)(struct lwp *lp, elf_buf_t target, int sig, enum putmode mode, int numsegs, struct file *fp) { struct proc *p = lp->lwp_proc; int error = 0; size_t phoff; size_t noteoff; size_t notesz; Elf_Ehdr *ehdr; Elf_Phdr *phdr; ehdr = target_reserve(target, sizeof(Elf_Ehdr), &error); phoff = target->off; phdr = target_reserve(target, (numsegs + 1) * sizeof(Elf_Phdr), &error); noteoff = target->off; if (error == 0) elf_putallnotes(lp, target, sig, mode); notesz = target->off - noteoff; /* * put extra cruft for dumping process state here * - we really want it be before all the program * mappings * - we just need to update the offset accordingly * and GDB will be none the wiser. */ if (error == 0) error = elf_puttextvp(p, target); if (error == 0) error = elf_putsigs(lp, target); if (error == 0) error = elf_putfiles(p, target, fp); /* * Align up to a page boundary for the program segments. The * actual data will be written to the outptu file, not to elf_buf_t, * so we do not have to do any further bounds checking. */ target->off = round_page(target->off); if (error == 0 && ehdr != NULL) { /* * Fill in the ELF header. */ ehdr->e_ident[EI_MAG0] = ELFMAG0; ehdr->e_ident[EI_MAG1] = ELFMAG1; ehdr->e_ident[EI_MAG2] = ELFMAG2; ehdr->e_ident[EI_MAG3] = ELFMAG3; ehdr->e_ident[EI_CLASS] = ELF_CLASS; ehdr->e_ident[EI_DATA] = ELF_DATA; ehdr->e_ident[EI_VERSION] = EV_CURRENT; ehdr->e_ident[EI_OSABI] = ELFOSABI_NONE; ehdr->e_ident[EI_ABIVERSION] = 0; ehdr->e_ident[EI_PAD] = 0; ehdr->e_type = ET_CORE; ehdr->e_machine = ELF_ARCH; ehdr->e_version = EV_CURRENT; ehdr->e_entry = 0; ehdr->e_phoff = phoff; ehdr->e_flags = 0; ehdr->e_ehsize = sizeof(Elf_Ehdr); ehdr->e_phentsize = sizeof(Elf_Phdr); ehdr->e_phnum = numsegs + 1; ehdr->e_shentsize = sizeof(Elf_Shdr); ehdr->e_shnum = 0; ehdr->e_shstrndx = SHN_UNDEF; } if (error == 0 && phdr != NULL) { /* * Fill in the program header entries. */ struct phdr_closure phc; /* The note segement. */ phdr->p_type = PT_NOTE; phdr->p_offset = noteoff; phdr->p_vaddr = 0; phdr->p_paddr = 0; phdr->p_filesz = notesz; phdr->p_memsz = 0; phdr->p_flags = 0; phdr->p_align = 0; ++phdr; /* All the writable segments from the program. */ phc.phdr = phdr; phc.phdr_max = phdr + numsegs; phc.offset = target->off; each_segment(p, cb_put_phdr, &phc, 1); } return (error); } /* * Append core dump notes to target ELF buffer or simply update target size * if dryrun selected. */ static int elf_putallnotes(struct lwp *corelp, elf_buf_t target, int sig, enum putmode mode) { struct proc *p = corelp->lwp_proc; int error; struct { prstatus_t status; prfpregset_t fpregs; prpsinfo_t psinfo; } *tmpdata; prstatus_t *status; prfpregset_t *fpregs; prpsinfo_t *psinfo; struct lwp *lp; /* * Allocate temporary storage for notes on heap to avoid stack overflow. */ if (mode != DRYRUN) { tmpdata = kmalloc(sizeof(*tmpdata), M_TEMP, M_ZERO | M_WAITOK); status = &tmpdata->status; fpregs = &tmpdata->fpregs; psinfo = &tmpdata->psinfo; } else { tmpdata = NULL; status = NULL; fpregs = NULL; psinfo = NULL; } /* * Append LWP-agnostic note. */ if (mode != DRYRUN) { psinfo->pr_version = PRPSINFO_VERSION; psinfo->pr_psinfosz = sizeof(prpsinfo_t); strlcpy(psinfo->pr_fname, p->p_comm, sizeof(psinfo->pr_fname)); /* * XXX - We don't fill in the command line arguments * properly yet. */ strlcpy(psinfo->pr_psargs, p->p_comm, sizeof(psinfo->pr_psargs)); } error = __elfN(putnote)(target, "CORE", NT_PRPSINFO, psinfo, sizeof *psinfo); if (error) goto exit; /* * Append first note for LWP that triggered core so that it is * the selected one when the debugger starts. */ if (mode != DRYRUN) { status->pr_version = PRSTATUS_VERSION; status->pr_statussz = sizeof(prstatus_t); status->pr_gregsetsz = sizeof(gregset_t); status->pr_fpregsetsz = sizeof(fpregset_t); status->pr_osreldate = osreldate; status->pr_cursig = sig; status->pr_pid = corelp->lwp_tid; fill_regs(corelp, &status->pr_reg); fill_fpregs(corelp, fpregs); } error = __elfN(putnote)(target, "CORE", NT_PRSTATUS, status, sizeof *status); if (error) goto exit; error = __elfN(putnote)(target, "CORE", NT_FPREGSET, fpregs, sizeof *fpregs); if (error) goto exit; /* * Then append notes for other LWPs. */ FOREACH_LWP_IN_PROC(lp, p) { if (lp == corelp) continue; /* skip lwps being created */ if (lp->lwp_thread == NULL) continue; if (mode != DRYRUN) { status->pr_pid = lp->lwp_tid; fill_regs(lp, &status->pr_reg); fill_fpregs(lp, fpregs); } error = __elfN(putnote)(target, "CORE", NT_PRSTATUS, status, sizeof *status); if (error) goto exit; error = __elfN(putnote)(target, "CORE", NT_FPREGSET, fpregs, sizeof *fpregs); if (error) goto exit; } exit: if (tmpdata != NULL) kfree(tmpdata, M_TEMP); return (error); } /* * Generate a note sub-structure. * * NOTE: 4-byte alignment. */ static int __elfN(putnote)(elf_buf_t target, const char *name, int type, const void *desc, size_t descsz) { int error = 0; char *dst; Elf_Note note; note.n_namesz = strlen(name) + 1; note.n_descsz = descsz; note.n_type = type; dst = target_reserve(target, sizeof(note), &error); if (dst != NULL) bcopy(¬e, dst, sizeof note); dst = target_reserve(target, note.n_namesz, &error); if (dst != NULL) bcopy(name, dst, note.n_namesz); target->off = roundup2(target->off, sizeof(Elf_Word)); dst = target_reserve(target, note.n_descsz, &error); if (dst != NULL) bcopy(desc, dst, note.n_descsz); target->off = roundup2(target->off, sizeof(Elf_Word)); return (error); } static int elf_putsigs(struct lwp *lp, elf_buf_t target) { /* XXX lwp handle more than one lwp */ struct proc *p = lp->lwp_proc; int error = 0; struct ckpt_siginfo *csi; csi = target_reserve(target, sizeof(struct ckpt_siginfo), &error); if (csi) { csi->csi_ckptpisz = sizeof(struct ckpt_siginfo); bcopy(p->p_sigacts, &csi->csi_sigacts, sizeof(*p->p_sigacts)); bcopy(&p->p_realtimer, &csi->csi_itimerval, sizeof(struct itimerval)); bcopy(&lp->lwp_sigmask, &csi->csi_sigmask, sizeof(sigset_t)); csi->csi_sigparent = p->p_sigparent; } return (error); } static int elf_putfiles(struct proc *p, elf_buf_t target, struct file *ckfp) { thread_t td = curthread; int error = 0; int i; struct ckpt_filehdr *cfh = NULL; struct ckpt_fileinfo *cfi; struct file *fp; struct vnode *vp; /* * the duplicated loop is gross, but it was the only way * to eliminate uninitialized variable warnings */ cfh = target_reserve(target, sizeof(struct ckpt_filehdr), &error); if (cfh) { cfh->cfh_nfiles = 0; } /* * ignore STDIN/STDERR/STDOUT. */ KKASSERT(td->td_proc == p); for (i = 3; error == 0 && i < p->p_fd->fd_nfiles; i++) { fp = holdfp(td, i, -1); if (fp == NULL) continue; /* * XXX Only checkpoint vnodes for now. */ if (fp->f_type != DTYPE_VNODE) { fdrop(fp); continue; } cfi = target_reserve(target, sizeof(struct ckpt_fileinfo), &error); if (cfi == NULL) { fdrop(fp); continue; } cfi->cfi_index = -1; cfi->cfi_type = fp->f_type; cfi->cfi_flags = fp->f_flag; cfi->cfi_offset = fp->f_offset; cfi->cfi_ckflags = 0; if (fp == ckfp) cfi->cfi_ckflags |= CKFIF_ISCKPTFD; /* f_count and f_msgcount should not be saved/restored */ /* XXX save cred info */ switch(fp->f_type) { case DTYPE_VNODE: vp = (struct vnode *)fp->f_data; /* * it looks like a bug in ptrace is marking * a non-vnode as a vnode - until we find the * root cause this will at least prevent * further panics from truss */ if (vp == NULL || vp->v_mount == NULL) break; cfh->cfh_nfiles++; cfi->cfi_index = i; cfi->cfi_fh.fh_fsid = vp->v_mount->mnt_stat.f_fsid; error = VFS_VPTOFH(vp, &cfi->cfi_fh.fh_fid); break; default: break; } fdrop(fp); } return (error); } static int elf_puttextvp(struct proc *p, elf_buf_t target) { int error = 0; int *vn_count; struct fp_closure fpc; struct ckpt_vminfo *vminfo; vminfo = target_reserve(target, sizeof(struct ckpt_vminfo), &error); if (vminfo != NULL) { vminfo->cvm_dsize = btoc(p->p_vmspace->vm_dsize); /* pages */ vminfo->cvm_tsize = btoc(p->p_vmspace->vm_tsize); /* pages */ vminfo->cvm_daddr = p->p_vmspace->vm_daddr; vminfo->cvm_taddr = p->p_vmspace->vm_taddr; } fpc.count = 0; vn_count = target_reserve(target, sizeof(int), &error); if (target->buf != NULL) { fpc.vnh = (struct vn_hdr *)(target->buf + target->off); fpc.vnh_max = fpc.vnh + (target->off_max - target->off) / sizeof(struct vn_hdr); error = each_segment(p, cb_put_fp, &fpc, 0); if (vn_count) *vn_count = fpc.count; } else { error = each_segment(p, cb_fpcount_segment, &fpc.count, 0); } target->off += fpc.count * sizeof(struct vn_hdr); return (error); } /* * Try to find the appropriate ABI-note section for checknote, * The entire image is searched if necessary, not only the first page. */ static boolean_t __elfN(check_note)(struct image_params *imgp, Elf_Brandnote *checknote, int32_t *osrel) { boolean_t valid_note_found; const Elf_Phdr *phdr, *pnote; const Elf_Ehdr *hdr; int i; valid_note_found = FALSE; hdr = (const Elf_Ehdr *)imgp->image_header; phdr = (const Elf_Phdr *)(imgp->image_header + hdr->e_phoff); for (i = 0; i < hdr->e_phnum; i++) { if (phdr[i].p_type == PT_NOTE) { pnote = &phdr[i]; valid_note_found = check_PT_NOTE (imgp, checknote, osrel, pnote); if (valid_note_found) break; } } return valid_note_found; } /* * Be careful not to create new overflow conditions when checking * for overflow. */ static boolean_t note_overflow(const Elf_Note *note, size_t maxsize) { if (sizeof(*note) > maxsize) return TRUE; if (note->n_namesz > maxsize - sizeof(*note)) return TRUE; return FALSE; } static boolean_t hdr_overflow(__ElfN(Off) off_beg, __ElfN(Size) size) { __ElfN(Off) off_end; off_end = off_beg + size; if (off_end < off_beg) return TRUE; return FALSE; } static boolean_t check_PT_NOTE(struct image_params *imgp, Elf_Brandnote *checknote, int32_t *osrel, const Elf_Phdr * pnote) { boolean_t limited_to_first_page; boolean_t found = FALSE; const Elf_Note *note, *note0, *note_end; const char *note_name; __ElfN(Off) noteloc, firstloc; __ElfN(Size) notesz, firstlen, endbyte; struct lwbuf *lwb; struct lwbuf lwb_cache; const char *page; char *data = NULL; int n; if (hdr_overflow(pnote->p_offset, pnote->p_filesz)) return (FALSE); notesz = pnote->p_filesz; noteloc = pnote->p_offset; endbyte = noteloc + notesz; limited_to_first_page = noteloc < PAGE_SIZE && endbyte < PAGE_SIZE; if (limited_to_first_page) { note = (const Elf_Note *)(imgp->image_header + noteloc); note_end = (const Elf_Note *)(imgp->image_header + endbyte); note0 = note; } else { firstloc = noteloc & PAGE_MASK; firstlen = PAGE_SIZE - firstloc; if (notesz < sizeof(Elf_Note) || notesz > PAGE_SIZE) return (FALSE); lwb = &lwb_cache; if (exec_map_page(imgp, noteloc >> PAGE_SHIFT, &lwb, &page)) return (FALSE); if (firstlen < notesz) { /* crosses page boundary */ data = kmalloc(notesz, M_TEMP, M_WAITOK); bcopy(page + firstloc, data, firstlen); exec_unmap_page(lwb); lwb = &lwb_cache; if (exec_map_page(imgp, (noteloc >> PAGE_SHIFT) + 1, &lwb, &page)) { kfree(data, M_TEMP); return (FALSE); } bcopy(page, data + firstlen, notesz - firstlen); note = note0 = (const Elf_Note *)(data); note_end = (const Elf_Note *)(data + notesz); } else { note = note0 = (const Elf_Note *)(page + firstloc); note_end = (const Elf_Note *)(page + firstloc + firstlen); } } for (n = 0; n < 100 && note >= note0 && note < note_end; n++) { if (!aligned(note, Elf32_Addr)) break; if (note_overflow(note, (const char *)note_end - (const char *)note)) { break; } note_name = (const char *)(note + 1); if (note->n_namesz == checknote->hdr.n_namesz && note->n_descsz == checknote->hdr.n_descsz && note->n_type == checknote->hdr.n_type && (strncmp(checknote->vendor, note_name, checknote->hdr.n_namesz) == 0)) { /* Fetch osreldata from ABI.note-tag */ if ((checknote->flags & BN_TRANSLATE_OSREL) != 0 && checknote->trans_osrel != NULL) checknote->trans_osrel(note, osrel); found = TRUE; break; } note = (const Elf_Note *)((const char *)(note + 1) + roundup2(note->n_namesz, sizeof(Elf32_Addr)) + roundup2(note->n_descsz, sizeof(Elf32_Addr))); } if (!limited_to_first_page) { if (data != NULL) kfree(data, M_TEMP); exec_unmap_page(lwb); } return (found); } /* * The interpreter program header may be located beyond the first page, so * regardless of its location, a copy of the interpreter path is created so * that it may be safely referenced by the calling function in all case. The * memory is allocated by calling function, and the copying is done here. */ static boolean_t extract_interpreter(struct image_params *imgp, const Elf_Phdr *pinterpreter, char *data) { boolean_t limited_to_first_page; const boolean_t result_success = FALSE; const boolean_t result_failure = TRUE; __ElfN(Off) pathloc, firstloc; __ElfN(Size) pathsz, firstlen, endbyte; struct lwbuf *lwb; struct lwbuf lwb_cache; const char *page; if (hdr_overflow(pinterpreter->p_offset, pinterpreter->p_filesz)) return (result_failure); pathsz = pinterpreter->p_filesz; pathloc = pinterpreter->p_offset; endbyte = pathloc + pathsz; limited_to_first_page = pathloc < PAGE_SIZE && endbyte < PAGE_SIZE; if (limited_to_first_page) { bcopy(imgp->image_header + pathloc, data, pathsz); return (result_success); } firstloc = pathloc & PAGE_MASK; firstlen = PAGE_SIZE - firstloc; lwb = &lwb_cache; if (exec_map_page(imgp, pathloc >> PAGE_SHIFT, &lwb, &page)) return (result_failure); if (firstlen < pathsz) { /* crosses page boundary */ bcopy(page + firstloc, data, firstlen); exec_unmap_page(lwb); lwb = &lwb_cache; if (exec_map_page(imgp, (pathloc >> PAGE_SHIFT) + 1, &lwb, &page)) return (result_failure); bcopy(page, data + firstlen, pathsz - firstlen); } else bcopy(page + firstloc, data, pathsz); exec_unmap_page(lwb); return (result_success); } static boolean_t __elfN(bsd_trans_osrel)(const Elf_Note *note, int32_t *osrel) { uintptr_t p; p = (uintptr_t)(note + 1); p += roundup2(note->n_namesz, sizeof(Elf32_Addr)); *osrel = *(const int32_t *)(p); return (TRUE); } /* * Tell kern_execve.c about it, with a little help from the linker. */ #if defined(__x86_64__) static struct execsw elf_execsw = {exec_elf64_imgact, "ELF64"}; EXEC_SET_ORDERED(elf64, elf_execsw, SI_ORDER_FIRST); #else /* i386 assumed */ static struct execsw elf_execsw = {exec_elf32_imgact, "ELF32"}; EXEC_SET_ORDERED(elf32, elf_execsw, SI_ORDER_FIRST); #endif static vm_prot_t __elfN(trans_prot)(Elf_Word flags) { vm_prot_t prot; prot = 0; if (flags & PF_X) prot |= VM_PROT_EXECUTE; if (flags & PF_W) prot |= VM_PROT_WRITE; if (flags & PF_R) prot |= VM_PROT_READ; return (prot); } static Elf_Word __elfN(untrans_prot)(vm_prot_t prot) { Elf_Word flags; flags = 0; if (prot & VM_PROT_EXECUTE) flags |= PF_X; if (prot & VM_PROT_READ) flags |= PF_R; if (prot & VM_PROT_WRITE) flags |= PF_W; return (flags); } static u_long pie_base_hint(struct proc *p) { u_long base; if (elf_pie_base_mmap) base = vm_map_hint(p, 0, VM_PROT_READ | VM_PROT_EXECUTE, 0); else base = ET_DYN_LOAD_ADDR; return base; } |