sys/kern/kern_slaballoc.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 | /* * KERN_SLABALLOC.C - Kernel SLAB memory allocator * * Copyright (c) 2003,2004,2010-2019 The DragonFly Project. * All rights reserved. * * This code is derived from software contributed to The DragonFly Project * by Matthew Dillon <dillon@backplane.com> * * 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. * 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. Neither the name of The DragonFly Project nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific, prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``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 * COPYRIGHT HOLDERS OR CONTRIBUTORS 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. * * This module implements a slab allocator drop-in replacement for the * kernel malloc(). * * A slab allocator reserves a ZONE for each chunk size, then lays the * chunks out in an array within the zone. Allocation and deallocation * is nearly instantanious, and fragmentation/overhead losses are limited * to a fixed worst-case amount. * * The downside of this slab implementation is in the chunk size * multiplied by the number of zones. ~80 zones * 128K = 10MB of VM per cpu. * In a kernel implementation all this memory will be physical so * the zone size is adjusted downward on machines with less physical * memory. The upside is that overhead is bounded... this is the *worst* * case overhead. * * Slab management is done on a per-cpu basis and no locking or mutexes * are required, only a critical section. When one cpu frees memory * belonging to another cpu's slab manager an asynchronous IPI message * will be queued to execute the operation. In addition, both the * high level slab allocator and the low level zone allocator optimize * M_ZERO requests, and the slab allocator does not have to pre initialize * the linked list of chunks. * * XXX Balancing is needed between cpus. Balance will be handled through * asynchronous IPIs primarily by reassigning the z_Cpu ownership of chunks. * * XXX If we have to allocate a new zone and M_USE_RESERVE is set, use of * the new zone should be restricted to M_USE_RESERVE requests only. * * Alloc Size Chunking Number of zones * 0-127 8 16 * 128-255 16 8 * 256-511 32 8 * 512-1023 64 8 * 1024-2047 128 8 * 2048-4095 256 8 * 4096-8191 512 8 * 8192-16383 1024 8 * 16384-32767 2048 8 * (if PAGE_SIZE is 4K the maximum zone allocation is 16383) * * Allocations >= ZoneLimit go directly to kmem. * (n * PAGE_SIZE, n > 2) allocations go directly to kmem. * * Alignment properties: * - All power-of-2 sized allocations are power-of-2 aligned. * - Allocations with M_POWEROF2 are power-of-2 aligned on the nearest * power-of-2 round up of 'size'. * - Non-power-of-2 sized allocations are zone chunk size aligned (see the * above table 'Chunking' column). * * API REQUIREMENTS AND SIDE EFFECTS * * To operate as a drop-in replacement to the FreeBSD-4.x malloc() we * have remained compatible with the following API requirements: * * + malloc(0) is allowed and returns non-NULL (ahc driver) * + ability to allocate arbitrarily large chunks of memory */ #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/slaballoc.h> #include <sys/mbuf.h> #include <sys/vmmeter.h> #include <sys/lock.h> #include <sys/thread.h> #include <sys/globaldata.h> #include <sys/sysctl.h> #include <sys/ktr.h> #include <sys/kthread.h> #include <sys/malloc.h> #include <vm/vm.h> #include <vm/vm_param.h> #include <vm/vm_kern.h> #include <vm/vm_extern.h> #include <vm/vm_object.h> #include <vm/pmap.h> #include <vm/vm_map.h> #include <vm/vm_page.h> #include <vm/vm_pageout.h> #include <machine/cpu.h> #include <sys/thread2.h> #include <vm/vm_page2.h> #if (__VM_CACHELINE_SIZE == 32) #define CAN_CACHEALIGN(sz) ((sz) >= 256) #elif (__VM_CACHELINE_SIZE == 64) #define CAN_CACHEALIGN(sz) ((sz) >= 512) #elif (__VM_CACHELINE_SIZE == 128) #define CAN_CACHEALIGN(sz) ((sz) >= 1024) #else #error "unsupported cacheline size" #endif #define btokup(z) (&pmap_kvtom((vm_offset_t)(z))->ku_pagecnt) #define MEMORY_STRING "ptr=%p type=%p size=%lu flags=%04x" #define MEMORY_ARGS void *ptr, void *type, unsigned long size, int flags #if !defined(KTR_MEMORY) #define KTR_MEMORY KTR_ALL #endif KTR_INFO_MASTER(memory); KTR_INFO(KTR_MEMORY, memory, malloc_beg, 0, "malloc begin"); KTR_INFO(KTR_MEMORY, memory, malloc_end, 1, MEMORY_STRING, MEMORY_ARGS); KTR_INFO(KTR_MEMORY, memory, free_zero, 2, MEMORY_STRING, MEMORY_ARGS); KTR_INFO(KTR_MEMORY, memory, free_ovsz, 3, MEMORY_STRING, MEMORY_ARGS); KTR_INFO(KTR_MEMORY, memory, free_ovsz_delayed, 4, MEMORY_STRING, MEMORY_ARGS); KTR_INFO(KTR_MEMORY, memory, free_chunk, 5, MEMORY_STRING, MEMORY_ARGS); KTR_INFO(KTR_MEMORY, memory, free_request, 6, MEMORY_STRING, MEMORY_ARGS); KTR_INFO(KTR_MEMORY, memory, free_rem_beg, 7, MEMORY_STRING, MEMORY_ARGS); KTR_INFO(KTR_MEMORY, memory, free_rem_end, 8, MEMORY_STRING, MEMORY_ARGS); KTR_INFO(KTR_MEMORY, memory, free_beg, 9, "free begin"); KTR_INFO(KTR_MEMORY, memory, free_end, 10, "free end"); #define logmemory(name, ptr, type, size, flags) \ KTR_LOG(memory_ ## name, ptr, type, size, flags) #define logmemory_quick(name) \ KTR_LOG(memory_ ## name) /* * Fixed globals (not per-cpu) */ __read_frequently static int ZoneSize; __read_frequently static int ZoneLimit; __read_frequently static int ZonePageCount; __read_frequently static uintptr_t ZoneMask; __read_frequently struct malloc_type *kmemstatistics; /* exported to vmstat */ #if defined(INVARIANTS) static void chunk_mark_allocated(SLZone *z, void *chunk); static void chunk_mark_free(SLZone *z, void *chunk); #else #define chunk_mark_allocated(z, chunk) #define chunk_mark_free(z, chunk) #endif /* * Misc constants. Note that allocations that are exact multiples of * PAGE_SIZE, or exceed the zone limit, fall through to the kmem module. */ #define ZONE_RELS_THRESH 32 /* threshold number of zones */ #ifdef INVARIANTS /* * The WEIRD_ADDR is used as known text to copy into free objects to * try to create deterministic failure cases if the data is accessed after * free. */ #define WEIRD_ADDR 0xdeadc0de #endif #define ZERO_LENGTH_PTR ((void *)-8) /* * Misc global malloc buckets */ MALLOC_DEFINE(M_CACHE, "cache", "Various Dynamically allocated caches"); MALLOC_DEFINE(M_DEVBUF, "devbuf", "device driver memory"); MALLOC_DEFINE(M_TEMP, "temp", "misc temporary data buffers"); MALLOC_DEFINE(M_DRM, "m_drm", "DRM memory allocations"); MALLOC_DEFINE(M_IP6OPT, "ip6opt", "IPv6 options"); MALLOC_DEFINE(M_IP6NDP, "ip6ndp", "IPv6 Neighbor Discovery"); /* * Initialize the slab memory allocator. We have to choose a zone size based * on available physical memory. We choose a zone side which is approximately * 1/1024th of our memory, so if we have 128MB of ram we have a zone size of * 128K. The zone size is limited to the bounds set in slaballoc.h * (typically 32K min, 128K max). */ static void kmeminit(void *dummy); static void kmemfinishinit(void *dummy); char *ZeroPage; SYSINIT(kmem1, SI_BOOT1_ALLOCATOR, SI_ORDER_FIRST, kmeminit, NULL); SYSINIT(kmem2, SI_BOOT2_POST_SMP, SI_ORDER_FIRST, kmemfinishinit, NULL); #ifdef INVARIANTS /* * If enabled any memory allocated without M_ZERO is initialized to -1. */ __read_frequently static int use_malloc_pattern; SYSCTL_INT(_debug, OID_AUTO, use_malloc_pattern, CTLFLAG_RW, &use_malloc_pattern, 0, "Initialize memory to -1 if M_ZERO not specified"); __read_frequently static int32_t weirdary[16]; __read_frequently static int use_weird_array; SYSCTL_INT(_debug, OID_AUTO, use_weird_array, CTLFLAG_RW, &use_weird_array, 0, "Initialize memory to weird values on kfree()"); #endif __read_frequently static int ZoneRelsThresh = ZONE_RELS_THRESH; SYSCTL_INT(_kern, OID_AUTO, zone_cache, CTLFLAG_RW, &ZoneRelsThresh, 0, ""); __read_frequently static int kzone_pollfreq = 1; SYSCTL_INT(_kern, OID_AUTO, kzone_pollfreq, CTLFLAG_RW, &kzone_pollfreq, 0, ""); static struct spinlock kmemstat_spin = SPINLOCK_INITIALIZER(&kmemstat_spin, "malinit"); static struct malloc_type *kmemstat_poll; /* * Returns the kernel memory size limit for the purposes of initializing * various subsystem caches. The smaller of available memory and the KVM * memory space is returned. * * The size in megabytes is returned. */ size_t kmem_lim_size(void) { size_t limsize; limsize = (size_t)vmstats.v_page_count * PAGE_SIZE; if (limsize > KvaSize) limsize = KvaSize; return (limsize / (1024 * 1024)); } static void kmeminit(void *dummy) { size_t limsize; int usesize; #ifdef INVARIANTS int i; #endif limsize = kmem_lim_size(); usesize = (int)(limsize * 1024); /* convert to KB */ /* * If the machine has a large KVM space and more than 8G of ram, * double the zone release threshold to reduce SMP invalidations. * If more than 16G of ram, do it again. * * The BIOS eats a little ram so add some slop. We want 8G worth of * memory sticks to trigger the first adjustment. */ if (ZoneRelsThresh == ZONE_RELS_THRESH) { if (limsize >= 7 * 1024) ZoneRelsThresh *= 2; if (limsize >= 15 * 1024) ZoneRelsThresh *= 2; if (limsize >= 31 * 1024) ZoneRelsThresh *= 2; if (limsize >= 63 * 1024) ZoneRelsThresh *= 2; if (limsize >= 127 * 1024) ZoneRelsThresh *= 2; } /* * Calculate the zone size. This typically calculates to * ZALLOC_MAX_ZONE_SIZE */ ZoneSize = ZALLOC_MIN_ZONE_SIZE; while (ZoneSize < ZALLOC_MAX_ZONE_SIZE && (ZoneSize << 1) < usesize) ZoneSize <<= 1; ZoneLimit = ZoneSize / 4; if (ZoneLimit > ZALLOC_ZONE_LIMIT) ZoneLimit = ZALLOC_ZONE_LIMIT; ZoneMask = ~(uintptr_t)(ZoneSize - 1); ZonePageCount = ZoneSize / PAGE_SIZE; #ifdef INVARIANTS for (i = 0; i < NELEM(weirdary); ++i) weirdary[i] = WEIRD_ADDR; #endif ZeroPage = kmem_slab_alloc(PAGE_SIZE, PAGE_SIZE, M_WAITOK|M_ZERO); if (bootverbose) kprintf("Slab ZoneSize set to %dKB\n", ZoneSize / 1024); } /* * Once we know how many cpus are configured reduce ZoneRelsThresh * based on multiples of 32 cpu threads. */ static void kmemfinishinit(void *dummy) { if (ncpus > 32) ZoneRelsThresh = ZoneRelsThresh * 32 / ncpus; } /* * (low level) Initialize slab-related elements in the globaldata structure. * * Occurs after kmeminit(). */ void slab_gdinit(globaldata_t gd) { SLGlobalData *slgd; int i; slgd = &gd->gd_slab; for (i = 0; i < NZONES; ++i) TAILQ_INIT(&slgd->ZoneAry[i]); TAILQ_INIT(&slgd->FreeZones); TAILQ_INIT(&slgd->FreeOvZones); } /* * Initialize a malloc type tracking structure. */ void malloc_init(void *data) { struct malloc_type *type = data; struct kmalloc_use *use; size_t limsize; int n; if (type->ks_magic != M_MAGIC) panic("malloc type lacks magic"); if (type->ks_limit != 0) return; if (vmstats.v_page_count == 0) panic("malloc_init not allowed before vm init"); limsize = kmem_lim_size() * (1024 * 1024); type->ks_limit = limsize / 10; if (type->ks_flags & KSF_OBJSIZE) malloc_mgt_init(type, &type->ks_mgt, type->ks_objsize); if (ncpus == 1) use = &type->ks_use0; else use = kmalloc(ncpus * sizeof(*use), M_TEMP, M_WAITOK | M_ZERO); if (type->ks_flags & KSF_OBJSIZE) { for (n = 0; n < ncpus; ++n) malloc_mgt_init(type, &use[n].mgt, type->ks_objsize); } spin_lock(&kmemstat_spin); type->ks_next = kmemstatistics; type->ks_use = use; kmemstatistics = type; spin_unlock(&kmemstat_spin); } void malloc_uninit(void *data) { struct malloc_type *type = data; struct malloc_type *t; int i; #ifdef INVARIANTS long ttl; #endif if (type->ks_magic != M_MAGIC) panic("malloc type lacks magic"); if (vmstats.v_page_count == 0) panic("malloc_uninit not allowed before vm init"); if (type->ks_limit == 0) panic("malloc_uninit on uninitialized type"); /* Make sure that all pending kfree()s are finished. */ lwkt_synchronize_ipiqs("muninit"); /* * Remove from the kmemstatistics list, blocking if the removal races * the kmalloc poller. * * Advance kmemstat_poll if necessary. */ spin_lock(&kmemstat_spin); while (type->ks_flags & KSF_POLLING) ssleep(type, &kmemstat_spin, 0, "kmuninit", 0); if (kmemstat_poll == type) kmemstat_poll = type->ks_next; if (kmemstatistics == type) { kmemstatistics = type->ks_next; } else { for (t = kmemstatistics; t->ks_next != NULL; t = t->ks_next) { if (t->ks_next == type) { t->ks_next = type->ks_next; break; } } } type->ks_next = NULL; type->ks_limit = 0; spin_unlock(&kmemstat_spin); /* * memuse is only correct in aggregation. Due to memory being allocated * on one cpu and freed on another individual array entries may be * negative or positive (canceling each other out). */ #ifdef INVARIANTS ttl = 0; #endif for (i = 0; i < ncpus; ++i) { #ifdef INVARIANTS ttl += type->ks_use[i].memuse; #endif if (type->ks_flags & KSF_OBJSIZE) malloc_mgt_uninit(type, &type->ks_use[i].mgt); } if (type->ks_flags & KSF_OBJSIZE) malloc_mgt_uninit(type, &type->ks_mgt); #ifdef INVARIANTS if (ttl) { kprintf("malloc_uninit: %ld bytes of '%s' still allocated on cpu %d\n", ttl, type->ks_shortdesc, i); } #endif if (type->ks_use != &type->ks_use0) { kfree(type->ks_use, M_TEMP); type->ks_use = NULL; } } /* * Slowly polls all kmalloc zones for cleanup */ static void kmalloc_poller_thread(void) { struct malloc_type *type; for (;;) { /* * Very slow poll by default, adjustable with sysctl */ int sticks; sticks = kzone_pollfreq; cpu_ccfence(); if (sticks > 0) sticks = hz / sticks + 1; /* approximate */ else sticks = hz; /* safety */ tsleep((caddr_t)&sticks, 0, "kmslp", sticks); /* * [re]poll one zone each period. */ spin_lock(&kmemstat_spin); type = kmemstat_poll; if (type == NULL) type = kmemstatistics; if (type) { atomic_set_int(&type->ks_flags, KSF_POLLING); spin_unlock(&kmemstat_spin); if (malloc_mgt_poll(type)) { spin_lock(&kmemstat_spin); kmemstat_poll = type->ks_next; } else { spin_lock(&kmemstat_spin); } atomic_clear_int(&type->ks_flags, KSF_POLLING); wakeup(type); } else { kmemstat_poll = NULL; } spin_unlock(&kmemstat_spin); } } static struct thread *kmalloc_poller_td; static struct kproc_desc kmalloc_poller_kp = { "kmalloc_poller", kmalloc_poller_thread, &kmalloc_poller_td }; SYSINIT(kmalloc_polller, SI_SUB_KTHREAD_PAGE, SI_ORDER_FIRST, kproc_start, &kmalloc_poller_kp); /* * Reinitialize all installed malloc regions after ncpus has been * determined. type->ks_use0 is initially set to &type->ks_use0, * this function will dynamically allocate it as appropriate for ncpus. */ void malloc_reinit_ncpus(void) { struct malloc_type *t; struct kmalloc_use *use; int n; /* * If only one cpu we can leave ks_use set to ks_use0 */ if (ncpus <= 1) return; /* * Expand ks_use for all kmalloc blocks */ for (t = kmemstatistics; t; t = t->ks_next) { KKASSERT(t->ks_use == &t->ks_use0); t->ks_use = kmalloc(sizeof(*use) * ncpus, M_TEMP, M_WAITOK|M_ZERO); t->ks_use[0] = t->ks_use0; if (t->ks_flags & KSF_OBJSIZE) { malloc_mgt_relocate(&t->ks_use0.mgt, &t->ks_use[0].mgt); for (n = 1; n < ncpus; ++n) malloc_mgt_init(t, &t->ks_use[n].mgt, t->ks_objsize); } } } /* * Increase the kmalloc pool limit for the specified pool. No changes * are the made if the pool would shrink. */ void kmalloc_raise_limit(struct malloc_type *type, size_t bytes) { KKASSERT(type->ks_limit != 0); if (bytes == 0) bytes = KvaSize; if (type->ks_limit < bytes) type->ks_limit = bytes; } void kmalloc_set_unlimited(struct malloc_type *type) { type->ks_limit = kmem_lim_size() * (1024 * 1024); } /* * Dynamically create a malloc pool. This function is a NOP if *typep is * already non-NULL. */ void kmalloc_create(struct malloc_type **typep, const char *descr) { struct malloc_type *type; if (*typep == NULL) { type = kmalloc(sizeof(*type), M_TEMP, M_WAITOK | M_ZERO); type->ks_magic = M_MAGIC; type->ks_shortdesc = descr; malloc_init(type); *typep = type; } } void _kmalloc_create_obj(struct malloc_type **typep, const char *descr, size_t objsize) { struct malloc_type *type; if (*typep == NULL) { type = kmalloc(sizeof(*type), M_TEMP, M_WAITOK | M_ZERO); type->ks_magic = M_MAGIC; type->ks_shortdesc = descr; type->ks_flags = KSF_OBJSIZE; type->ks_objsize = __VM_CACHELINE_ALIGN(objsize); malloc_init(type); *typep = type; } } /* * Destroy a dynamically created malloc pool. This function is a NOP if * the pool has already been destroyed. * * WARNING! For kmalloc_obj's, the exis state for related slabs is ignored, * only call once all references are 100% known to be gone. */ void kmalloc_destroy(struct malloc_type **typep) { if (*typep != NULL) { malloc_uninit(*typep); kfree(*typep, M_TEMP); *typep = NULL; } } /* * Calculate the zone index for the allocation request size and set the * allocation request size to that particular zone's chunk size. */ static __inline int zoneindex(unsigned long *bytes, unsigned long *align) { unsigned int n = (unsigned int)*bytes; /* unsigned for shift opt */ if (n < 128) { *bytes = n = (n + 7) & ~7; *align = 8; return(n / 8 - 1); /* 8 byte chunks, 16 zones */ } if (n < 256) { *bytes = n = (n + 15) & ~15; *align = 16; return(n / 16 + 7); } if (n < 8192) { if (n < 512) { *bytes = n = (n + 31) & ~31; *align = 32; return(n / 32 + 15); } if (n < 1024) { *bytes = n = (n + 63) & ~63; *align = 64; return(n / 64 + 23); } if (n < 2048) { *bytes = n = (n + 127) & ~127; *align = 128; return(n / 128 + 31); } if (n < 4096) { *bytes = n = (n + 255) & ~255; *align = 256; return(n / 256 + 39); } *bytes = n = (n + 511) & ~511; *align = 512; return(n / 512 + 47); } #if ZALLOC_ZONE_LIMIT > 8192 if (n < 16384) { *bytes = n = (n + 1023) & ~1023; *align = 1024; return(n / 1024 + 55); } #endif #if ZALLOC_ZONE_LIMIT > 16384 if (n < 32768) { *bytes = n = (n + 2047) & ~2047; *align = 2048; return(n / 2048 + 63); } #endif panic("Unexpected byte count %d", n); return(0); } static __inline void clean_zone_rchunks(SLZone *z) { SLChunk *bchunk; while ((bchunk = z->z_RChunks) != NULL) { cpu_ccfence(); if (atomic_cmpset_ptr(&z->z_RChunks, bchunk, NULL)) { *z->z_LChunksp = bchunk; while (bchunk) { chunk_mark_free(z, bchunk); z->z_LChunksp = &bchunk->c_Next; bchunk = bchunk->c_Next; ++z->z_NFree; } break; } /* retry */ } } /* * If the zone becomes totally free and is not the only zone listed for a * chunk size we move it to the FreeZones list. We always leave at least * one zone per chunk size listed, even if it is freeable. * * Do not move the zone if there is an IPI in_flight (z_RCount != 0), * otherwise MP races can result in our free_remote code accessing a * destroyed zone. The remote end interlocks z_RCount with z_RChunks * so one has to test both z_NFree and z_RCount. * * Since this code can be called from an IPI callback, do *NOT* try to mess * with kernel_map here. Hysteresis will be performed at kmalloc() time. */ static __inline SLZone * check_zone_free(SLGlobalData *slgd, SLZone *z) { SLZone *znext; znext = TAILQ_NEXT(z, z_Entry); if (z->z_NFree == z->z_NMax && z->z_RCount == 0 && (TAILQ_FIRST(&slgd->ZoneAry[z->z_ZoneIndex]) != z || znext)) { int *kup; TAILQ_REMOVE(&slgd->ZoneAry[z->z_ZoneIndex], z, z_Entry); z->z_Magic = -1; TAILQ_INSERT_HEAD(&slgd->FreeZones, z, z_Entry); ++slgd->NFreeZones; kup = btokup(z); *kup = 0; } return znext; } #ifdef SLAB_DEBUG /* * Used to debug memory corruption issues. Record up to (typically 32) * allocation sources for this zone (for a particular chunk size). */ static void slab_record_source(SLZone *z, const char *file, int line) { int i; int b = line & (SLAB_DEBUG_ENTRIES - 1); i = b; do { if (z->z_Sources[i].file == file && z->z_Sources[i].line == line) return; if (z->z_Sources[i].file == NULL) break; i = (i + 1) & (SLAB_DEBUG_ENTRIES - 1); } while (i != b); z->z_Sources[i].file = file; z->z_Sources[i].line = line; } #endif static __inline unsigned long powerof2_size(unsigned long size) { int i; if (size == 0 || powerof2(size)) return size; i = flsl(size); return (1UL << i); } /* * kmalloc() (SLAB ALLOCATOR) * * Allocate memory via the slab allocator. If the request is too large, * or if it page-aligned beyond a certain size, we fall back to the * KMEM subsystem. A SLAB tracking descriptor must be specified, use * &SlabMisc if you don't care. * * M_RNOWAIT - don't block. * M_NULLOK - return NULL instead of blocking. * M_ZERO - zero the returned memory. * M_USE_RESERVE - allow greater drawdown of the free list * M_USE_INTERRUPT_RESERVE - allow the freelist to be exhausted * M_POWEROF2 - roundup size to the nearest power of 2 * * MPSAFE */ /* don't let kmalloc macro mess up function declaration */ #undef kmalloc #ifdef SLAB_DEBUG void * _kmalloc_debug(unsigned long size, struct malloc_type *type, int flags, const char *file, int line) #else void * _kmalloc(unsigned long size, struct malloc_type *type, int flags) #endif { SLZone *z; SLChunk *chunk; SLGlobalData *slgd; struct globaldata *gd; unsigned long align; int zi; #ifdef INVARIANTS int i; #endif logmemory_quick(malloc_beg); gd = mycpu; slgd = &gd->gd_slab; /* * XXX silly to have this in the critical path. */ KKASSERT(type->ks_limit != 0); ++type->ks_use[gd->gd_cpuid].calls; /* * Flagged for cache-alignment */ if (flags & M_CACHEALIGN) { if (size < __VM_CACHELINE_SIZE) size = __VM_CACHELINE_SIZE; else if (!CAN_CACHEALIGN(size)) flags |= M_POWEROF2; } /* * Flagged to force nearest power-of-2 (higher or same) */ if (flags & M_POWEROF2) size = powerof2_size(size); /* * Handle the case where the limit is reached. Panic if we can't return * NULL. The original malloc code looped, but this tended to * simply deadlock the computer. * * ks_loosememuse is an up-only limit that is NOT MP-synchronized, used * to determine if a more complete limit check should be done. The * actual memory use is tracked via ks_use[cpu].memuse. */ while (type->ks_loosememuse >= type->ks_limit) { int i; long ttl; for (i = ttl = 0; i < ncpus; ++i) ttl += type->ks_use[i].memuse; type->ks_loosememuse = ttl; /* not MP synchronized */ if ((ssize_t)ttl < 0) /* deal with occassional race */ ttl = 0; if (ttl >= type->ks_limit) { if (flags & M_NULLOK) { logmemory(malloc_end, NULL, type, size, flags); return(NULL); } panic("%s: malloc limit exceeded", type->ks_shortdesc); } } /* * Handle the degenerate size == 0 case. Yes, this does happen. * Return a special pointer. This is to maintain compatibility with * the original malloc implementation. Certain devices, such as the * adaptec driver, not only allocate 0 bytes, they check for NULL and * also realloc() later on. Joy. */ if (size == 0) { logmemory(malloc_end, ZERO_LENGTH_PTR, type, size, flags); return(ZERO_LENGTH_PTR); } /* * Handle hysteresis from prior frees here in malloc(). We cannot * safely manipulate the kernel_map in free() due to free() possibly * being called via an IPI message or from sensitive interrupt code. * * NOTE: ku_pagecnt must be cleared before we free the slab or we * might race another cpu allocating the kva and setting * ku_pagecnt. */ while (slgd->NFreeZones > ZoneRelsThresh && (flags & M_RNOWAIT) == 0) { crit_enter(); if (slgd->NFreeZones > ZoneRelsThresh) { /* crit sect race */ int *kup; z = TAILQ_LAST(&slgd->FreeZones, SLZoneList); KKASSERT(z != NULL); TAILQ_REMOVE(&slgd->FreeZones, z, z_Entry); --slgd->NFreeZones; kup = btokup(z); *kup = 0; kmem_slab_free(z, ZoneSize); /* may block */ } crit_exit(); } /* * XXX handle oversized frees that were queued from kfree(). */ while (TAILQ_FIRST(&slgd->FreeOvZones) && (flags & M_RNOWAIT) == 0) { crit_enter(); if ((z = TAILQ_LAST(&slgd->FreeOvZones, SLZoneList)) != NULL) { vm_size_t tsize; KKASSERT(z->z_Magic == ZALLOC_OVSZ_MAGIC); TAILQ_REMOVE(&slgd->FreeOvZones, z, z_Entry); tsize = z->z_ChunkSize; kmem_slab_free(z, tsize); /* may block */ } crit_exit(); } /* * Handle large allocations directly. There should not be very many of * these so performance is not a big issue. * * The backend allocator is pretty nasty on a SMP system. Use the * slab allocator for one and two page-sized chunks even though we lose * some efficiency. XXX maybe fix mmio and the elf loader instead. */ if (size >= ZoneLimit || ((size & PAGE_MASK) == 0 && size > PAGE_SIZE*2)) { int *kup; size = round_page(size); chunk = kmem_slab_alloc(size, PAGE_SIZE, flags); if (chunk == NULL) { logmemory(malloc_end, NULL, type, size, flags); return(NULL); } flags &= ~M_ZERO; /* result already zero'd if M_ZERO was set */ flags |= M_PASSIVE_ZERO; kup = btokup(chunk); *kup = size / PAGE_SIZE; crit_enter(); goto done; } /* * Attempt to allocate out of an existing zone. First try the free list, * then allocate out of unallocated space. If we find a good zone move * it to the head of the list so later allocations find it quickly * (we might have thousands of zones in the list). * * Note: zoneindex() will panic of size is too large. */ zi = zoneindex(&size, &align); KKASSERT(zi < NZONES); crit_enter(); if ((z = TAILQ_LAST(&slgd->ZoneAry[zi], SLZoneList)) != NULL) { /* * Locate a chunk - we have to have at least one. If this is the * last chunk go ahead and do the work to retrieve chunks freed * from remote cpus, and if the zone is still empty move it off * the ZoneAry. */ if (--z->z_NFree <= 0) { KKASSERT(z->z_NFree == 0); /* * WARNING! This code competes with other cpus. It is ok * for us to not drain RChunks here but we might as well, and * it is ok if more accumulate after we're done. * * Set RSignal before pulling rchunks off, indicating that we * will be moving ourselves off of the ZoneAry. Remote ends will * read RSignal before putting rchunks on thus interlocking * their IPI signaling. */ if (z->z_RChunks == NULL) atomic_swap_int(&z->z_RSignal, 1); clean_zone_rchunks(z); /* * Remove from the zone list if no free chunks remain. * Clear RSignal */ if (z->z_NFree == 0) { TAILQ_REMOVE(&slgd->ZoneAry[zi], z, z_Entry); } else { z->z_RSignal = 0; } } /* * Fast path, we have chunks available in z_LChunks. */ chunk = z->z_LChunks; if (chunk) { chunk_mark_allocated(z, chunk); z->z_LChunks = chunk->c_Next; if (z->z_LChunks == NULL) z->z_LChunksp = &z->z_LChunks; #ifdef SLAB_DEBUG slab_record_source(z, file, line); #endif goto done; } /* * No chunks are available in LChunks, the free chunk MUST be * in the never-before-used memory area, controlled by UIndex. * * The consequences are very serious if our zone got corrupted so * we use an explicit panic rather than a KASSERT. */ if (z->z_UIndex + 1 != z->z_NMax) ++z->z_UIndex; else z->z_UIndex = 0; if (z->z_UIndex == z->z_UEndIndex) panic("slaballoc: corrupted zone"); chunk = (SLChunk *)(z->z_BasePtr + z->z_UIndex * size); if ((z->z_Flags & SLZF_UNOTZEROD) == 0) { flags &= ~M_ZERO; flags |= M_PASSIVE_ZERO; } chunk_mark_allocated(z, chunk); #ifdef SLAB_DEBUG slab_record_source(z, file, line); #endif goto done; } /* * If all zones are exhausted we need to allocate a new zone for this * index. Use M_ZERO to take advantage of pre-zerod pages. Also see * UAlloc use above in regards to M_ZERO. Note that when we are reusing * a zone from the FreeZones list UAlloc'd data will not be zero'd, and * we do not pre-zero it because we do not want to mess up the L1 cache. * * At least one subsystem, the tty code (see CROUND) expects power-of-2 * allocations to be power-of-2 aligned. We maintain compatibility by * adjusting the base offset below. */ { int off; int *kup; if ((z = TAILQ_FIRST(&slgd->FreeZones)) != NULL) { TAILQ_REMOVE(&slgd->FreeZones, z, z_Entry); --slgd->NFreeZones; bzero(z, sizeof(SLZone)); z->z_Flags |= SLZF_UNOTZEROD; } else { z = kmem_slab_alloc(ZoneSize, ZoneSize, flags|M_ZERO); if (z == NULL) goto fail; } /* * How big is the base structure? */ #if defined(INVARIANTS) /* * Make room for z_Bitmap. An exact calculation is somewhat more * complicated so don't make an exact calculation. */ off = offsetof(SLZone, z_Bitmap[(ZoneSize / size + 31) / 32]); bzero(z->z_Bitmap, (ZoneSize / size + 31) / 8); #else off = sizeof(SLZone); #endif /* * Guarentee power-of-2 alignment for power-of-2-sized chunks. * Otherwise properly align the data according to the chunk size. */ if (powerof2(size)) align = size; off = roundup2(off, align); z->z_Magic = ZALLOC_SLAB_MAGIC; z->z_ZoneIndex = zi; z->z_NMax = (ZoneSize - off) / size; z->z_NFree = z->z_NMax - 1; z->z_BasePtr = (char *)z + off; z->z_UIndex = z->z_UEndIndex = slgd->JunkIndex % z->z_NMax; z->z_ChunkSize = size; z->z_CpuGd = gd; z->z_Cpu = gd->gd_cpuid; z->z_LChunksp = &z->z_LChunks; #ifdef SLAB_DEBUG bcopy(z->z_Sources, z->z_AltSources, sizeof(z->z_Sources)); bzero(z->z_Sources, sizeof(z->z_Sources)); #endif chunk = (SLChunk *)(z->z_BasePtr + z->z_UIndex * size); TAILQ_INSERT_HEAD(&slgd->ZoneAry[zi], z, z_Entry); if ((z->z_Flags & SLZF_UNOTZEROD) == 0) { flags &= ~M_ZERO; /* already zero'd */ flags |= M_PASSIVE_ZERO; } kup = btokup(z); *kup = -(z->z_Cpu + 1); /* -1 to -(N+1) */ chunk_mark_allocated(z, chunk); #ifdef SLAB_DEBUG slab_record_source(z, file, line); #endif /* * Slide the base index for initial allocations out of the next * zone we create so we do not over-weight the lower part of the * cpu memory caches. */ slgd->JunkIndex = (slgd->JunkIndex + ZALLOC_SLAB_SLIDE) & (ZALLOC_MAX_ZONE_SIZE - 1); } done: ++type->ks_use[gd->gd_cpuid].inuse; type->ks_use[gd->gd_cpuid].memuse += size; type->ks_use[gd->gd_cpuid].loosememuse += size; if (type->ks_use[gd->gd_cpuid].loosememuse >= ZoneSize) { /* not MP synchronized */ type->ks_loosememuse += type->ks_use[gd->gd_cpuid].loosememuse; type->ks_use[gd->gd_cpuid].loosememuse = 0; } crit_exit(); if (flags & M_ZERO) bzero(chunk, size); #ifdef INVARIANTS else if ((flags & (M_ZERO|M_PASSIVE_ZERO)) == 0) { if (use_malloc_pattern) { for (i = 0; i < size; i += sizeof(int)) { *(int *)((char *)chunk + i) = -1; } } chunk->c_Next = (void *)-1; /* avoid accidental double-free check */ } #endif logmemory(malloc_end, chunk, type, size, flags); return(chunk); fail: crit_exit(); logmemory(malloc_end, NULL, type, size, flags); return(NULL); } /* * kernel realloc. (SLAB ALLOCATOR) (MP SAFE) * * Generally speaking this routine is not called very often and we do * not attempt to optimize it beyond reusing the same pointer if the * new size fits within the chunking of the old pointer's zone. */ #ifdef SLAB_DEBUG void * krealloc_debug(void *ptr, unsigned long size, struct malloc_type *type, int flags, const char *file, int line) #else void * krealloc(void *ptr, unsigned long size, struct malloc_type *type, int flags) #endif { unsigned long osize; unsigned long align; SLZone *z; void *nptr; int *kup; KKASSERT((flags & M_ZERO) == 0); /* not supported */ if (ptr == NULL || ptr == ZERO_LENGTH_PTR) return(_kmalloc_debug(size, type, flags, file, line)); if (size == 0) { kfree(ptr, type); return(NULL); } /* * Handle oversized allocations. XXX we really should require that a * size be passed to free() instead of this nonsense. */ kup = btokup(ptr); if (*kup > 0) { osize = *kup << PAGE_SHIFT; if (osize == round_page(size)) return(ptr); if ((nptr = _kmalloc_debug(size, type, flags, file, line)) == NULL) return(NULL); bcopy(ptr, nptr, min(size, osize)); kfree(ptr, type); return(nptr); } /* * Get the original allocation's zone. If the new request winds up * using the same chunk size we do not have to do anything. */ z = (SLZone *)((uintptr_t)ptr & ZoneMask); kup = btokup(z); KKASSERT(*kup < 0); KKASSERT(z->z_Magic == ZALLOC_SLAB_MAGIC); /* * Allocate memory for the new request size. Note that zoneindex has * already adjusted the request size to the appropriate chunk size, which * should optimize our bcopy(). Then copy and return the new pointer. * * Resizing a non-power-of-2 allocation to a power-of-2 size does not * necessary align the result. * * We can only zoneindex (to align size to the chunk size) if the new * size is not too large. */ if (size < ZoneLimit) { zoneindex(&size, &align); if (z->z_ChunkSize == size) return(ptr); } if ((nptr = _kmalloc_debug(size, type, flags, file, line)) == NULL) return(NULL); bcopy(ptr, nptr, min(size, z->z_ChunkSize)); kfree(ptr, type); return(nptr); } size_t kmalloc_usable_size(const void *ptr) { unsigned long size; SLZone *z; int *kup; if (ptr == NULL) return 0; if (ptr == ZERO_LENGTH_PTR) return 0; /* * Check to see if the pointer blongs to an oversized segment */ kup = btokup(ptr); if (*kup > 0) { size = *kup << PAGE_SHIFT; return size; } /* * Zone case. Figure out the zone based on the fact that it is * ZoneSize aligned. */ z = (SLZone *)((uintptr_t)ptr & ZoneMask); KKASSERT(z->z_Magic == ZALLOC_SLAB_MAGIC); return (z->z_ChunkSize); } /* * Return the kmalloc limit for this type, in bytes. */ long kmalloc_limit(struct malloc_type *type) { KKASSERT(type->ks_limit != 0); return(type->ks_limit); } /* * Allocate a copy of the specified string. * * (MP SAFE) (MAY BLOCK) */ #ifdef SLAB_DEBUG char * kstrdup_debug(const char *str, struct malloc_type *type, const char *file, int line) #else char * kstrdup(const char *str, struct malloc_type *type) #endif { int zlen; /* length inclusive of terminating NUL */ char *nstr; if (str == NULL) return(NULL); zlen = strlen(str) + 1; nstr = _kmalloc_debug(zlen, type, M_WAITOK, file, line); bcopy(str, nstr, zlen); return(nstr); } #ifdef SLAB_DEBUG char * kstrndup_debug(const char *str, size_t maxlen, struct malloc_type *type, const char *file, int line) #else char * kstrndup(const char *str, size_t maxlen, struct malloc_type *type) #endif { int zlen; /* length inclusive of terminating NUL */ char *nstr; if (str == NULL) return(NULL); zlen = strnlen(str, maxlen) + 1; nstr = _kmalloc_debug(zlen, type, M_WAITOK, file, line); bcopy(str, nstr, zlen); nstr[zlen - 1] = '\0'; return(nstr); } /* * Notify our cpu that a remote cpu has freed some chunks in a zone that * we own. RCount will be bumped so the memory should be good, but validate * that it really is. */ static void kfree_remote(void *ptr) { SLGlobalData *slgd; SLZone *z; int nfree; int *kup; slgd = &mycpu->gd_slab; z = ptr; kup = btokup(z); KKASSERT(*kup == -((int)mycpuid + 1)); KKASSERT(z->z_RCount > 0); atomic_subtract_int(&z->z_RCount, 1); logmemory(free_rem_beg, z, NULL, 0L, 0); KKASSERT(z->z_Magic == ZALLOC_SLAB_MAGIC); KKASSERT(z->z_Cpu == mycpu->gd_cpuid); nfree = z->z_NFree; /* * Indicate that we will no longer be off of the ZoneAry by * clearing RSignal. */ if (z->z_RChunks) z->z_RSignal = 0; /* * Atomically extract the bchunks list and then process it back * into the lchunks list. We want to append our bchunks to the * lchunks list and not prepend since we likely do not have * cache mastership of the related data (not that it helps since * we are using c_Next). */ clean_zone_rchunks(z); if (z->z_NFree && nfree == 0) { TAILQ_INSERT_HEAD(&slgd->ZoneAry[z->z_ZoneIndex], z, z_Entry); } check_zone_free(slgd, z); logmemory(free_rem_end, z, NULL, 0L, 0); } /* * free (SLAB ALLOCATOR) * * Free a memory block previously allocated by malloc. * * Note: We do not attempt to update ks_loosememuse as MP races could * prevent us from checking memory limits in malloc. YYY we may * consider updating ks_cpu.loosememuse. * * MPSAFE */ void _kfree(void *ptr, struct malloc_type *type) { SLZone *z; SLChunk *chunk; SLGlobalData *slgd; struct globaldata *gd; int *kup; unsigned long size; SLChunk *bchunk; int rsignal; logmemory_quick(free_beg); gd = mycpu; slgd = &gd->gd_slab; if (ptr == NULL) panic("trying to free NULL pointer"); /* * Handle special 0-byte allocations */ if (ptr == ZERO_LENGTH_PTR) { logmemory(free_zero, ptr, type, -1UL, 0); logmemory_quick(free_end); return; } /* * Panic on bad malloc type */ if (type->ks_magic != M_MAGIC) panic("free: malloc type lacks magic"); /* * Handle oversized allocations. XXX we really should require that a * size be passed to free() instead of this nonsense. * * This code is never called via an ipi. */ kup = btokup(ptr); if (*kup > 0) { size = *kup << PAGE_SHIFT; *kup = 0; #ifdef INVARIANTS if (use_weird_array) { KKASSERT(sizeof(weirdary) <= size); bcopy(weirdary, ptr, sizeof(weirdary)); } #endif /* * NOTE: For oversized allocations we do not record the * originating cpu. It gets freed on the cpu calling * kfree(). The statistics are in aggregate. * * note: XXX we have still inherited the interrupts-can't-block * assumption. An interrupt thread does not bump * gd_intr_nesting_level so check TDF_INTTHREAD. This is * primarily until we can fix softupdate's assumptions about free(). */ crit_enter(); --type->ks_use[gd->gd_cpuid].inuse; type->ks_use[gd->gd_cpuid].memuse -= size; if (mycpu->gd_intr_nesting_level || (gd->gd_curthread->td_flags & TDF_INTTHREAD)) { logmemory(free_ovsz_delayed, ptr, type, size, 0); z = (SLZone *)ptr; z->z_Magic = ZALLOC_OVSZ_MAGIC; z->z_ChunkSize = size; TAILQ_INSERT_HEAD(&slgd->FreeOvZones, z, z_Entry); crit_exit(); } else { crit_exit(); logmemory(free_ovsz, ptr, type, size, 0); kmem_slab_free(ptr, size); /* may block */ } logmemory_quick(free_end); return; } /* * Zone case. Figure out the zone based on the fact that it is * ZoneSize aligned. */ z = (SLZone *)((uintptr_t)ptr & ZoneMask); kup = btokup(z); KKASSERT(*kup < 0); KKASSERT(z->z_Magic == ZALLOC_SLAB_MAGIC); /* * If we do not own the zone then use atomic ops to free to the * remote cpu linked list and notify the target zone using a * passive message. * * The target zone cannot be deallocated while we own a chunk of it, * so the zone header's storage is stable until the very moment * we adjust z_RChunks. After that we cannot safely dereference (z). * * (no critical section needed) */ if (z->z_CpuGd != gd) { /* * Making these adjustments now allow us to avoid passing (type) * to the remote cpu. Note that inuse/memuse is being * adjusted on OUR cpu, not the zone cpu, but it should all still * sum up properly and cancel out. */ crit_enter(); --type->ks_use[gd->gd_cpuid].inuse; type->ks_use[gd->gd_cpuid].memuse -= z->z_ChunkSize; crit_exit(); /* * WARNING! This code competes with other cpus. Once we * successfully link the chunk to RChunks the remote * cpu can rip z's storage out from under us. * * Bumping RCount prevents z's storage from getting * ripped out. */ rsignal = z->z_RSignal; cpu_lfence(); if (rsignal) atomic_add_int(&z->z_RCount, 1); chunk = ptr; for (;;) { bchunk = z->z_RChunks; cpu_ccfence(); chunk->c_Next = bchunk; cpu_sfence(); if (atomic_cmpset_ptr(&z->z_RChunks, bchunk, chunk)) break; } /* * We have to signal the remote cpu if our actions will cause * the remote zone to be placed back on ZoneAry so it can * move the zone back on. * * We only need to deal with NULL->non-NULL RChunk transitions * and only if z_RSignal is set. We interlock by reading rsignal * before adding our chunk to RChunks. This should result in * virtually no IPI traffic. * * We can use a passive IPI to reduce overhead even further. */ if (bchunk == NULL && rsignal) { logmemory(free_request, ptr, type, (unsigned long)z->z_ChunkSize, 0); lwkt_send_ipiq_passive(z->z_CpuGd, kfree_remote, z); /* z can get ripped out from under us from this point on */ } else if (rsignal) { atomic_subtract_int(&z->z_RCount, 1); /* z can get ripped out from under us from this point on */ } logmemory_quick(free_end); return; } /* * kfree locally */ logmemory(free_chunk, ptr, type, (unsigned long)z->z_ChunkSize, 0); crit_enter(); chunk = ptr; chunk_mark_free(z, chunk); /* * Put weird data into the memory to detect modifications after freeing, * illegal pointer use after freeing (we should fault on the odd address), * and so forth. XXX needs more work, see the old malloc code. */ #ifdef INVARIANTS if (use_weird_array) { if (z->z_ChunkSize < sizeof(weirdary)) bcopy(weirdary, chunk, z->z_ChunkSize); else bcopy(weirdary, chunk, sizeof(weirdary)); } #endif /* * Add this free non-zero'd chunk to a linked list for reuse. Add * to the front of the linked list so it is more likely to be * reallocated, since it is already in our L1 cache. */ #ifdef INVARIANTS if ((vm_offset_t)chunk < KvaStart || (vm_offset_t)chunk >= KvaEnd) panic("BADFREE %p", chunk); #endif chunk->c_Next = z->z_LChunks; z->z_LChunks = chunk; if (chunk->c_Next == NULL) z->z_LChunksp = &chunk->c_Next; #ifdef INVARIANTS if (chunk->c_Next && (vm_offset_t)chunk->c_Next < KvaStart) panic("BADFREE2"); #endif /* * Bump the number of free chunks. If it becomes non-zero the zone * must be added back onto the appropriate list. A fully allocated * zone that sees its first free is considered 'mature' and is placed * at the head, giving the system time to potentially free the remaining * entries even while other allocations are going on and making the zone * freeable. */ if (z->z_NFree++ == 0) TAILQ_INSERT_HEAD(&slgd->ZoneAry[z->z_ZoneIndex], z, z_Entry); --type->ks_use[gd->gd_cpuid].inuse; type->ks_use[gd->gd_cpuid].memuse -= z->z_ChunkSize; check_zone_free(slgd, z); logmemory_quick(free_end); crit_exit(); } /* * Cleanup slabs which are hanging around due to RChunks or which are wholely * free and can be moved to the free list if not moved by other means. * * Called once every 10 seconds on all cpus. */ void slab_cleanup(void) { SLGlobalData *slgd = &mycpu->gd_slab; SLZone *z; int i; crit_enter(); for (i = 0; i < NZONES; ++i) { if ((z = TAILQ_FIRST(&slgd->ZoneAry[i])) == NULL) continue; /* * Scan zones. */ while (z) { /* * Shift all RChunks to the end of the LChunks list. This is * an O(1) operation. * * Then free the zone if possible. */ clean_zone_rchunks(z); z = check_zone_free(slgd, z); } } crit_exit(); } #if defined(INVARIANTS) /* * Helper routines for sanity checks */ static void chunk_mark_allocated(SLZone *z, void *chunk) { int bitdex = ((char *)chunk - (char *)z->z_BasePtr) / z->z_ChunkSize; uint32_t *bitptr; KKASSERT((((intptr_t)chunk ^ (intptr_t)z) & ZoneMask) == 0); KASSERT(bitdex >= 0 && bitdex < z->z_NMax, ("memory chunk %p bit index %d is illegal", chunk, bitdex)); bitptr = &z->z_Bitmap[bitdex >> 5]; bitdex &= 31; KASSERT((*bitptr & (1 << bitdex)) == 0, ("memory chunk %p is already allocated!", chunk)); *bitptr |= 1 << bitdex; } static void chunk_mark_free(SLZone *z, void *chunk) { int bitdex = ((char *)chunk - (char *)z->z_BasePtr) / z->z_ChunkSize; uint32_t *bitptr; KKASSERT((((intptr_t)chunk ^ (intptr_t)z) & ZoneMask) == 0); KASSERT(bitdex >= 0 && bitdex < z->z_NMax, ("memory chunk %p bit index %d is illegal!", chunk, bitdex)); bitptr = &z->z_Bitmap[bitdex >> 5]; bitdex &= 31; KASSERT((*bitptr & (1 << bitdex)) != 0, ("memory chunk %p is already free!", chunk)); *bitptr &= ~(1 << bitdex); } #endif /* * kmem_slab_alloc() * * Directly allocate and wire kernel memory in PAGE_SIZE chunks with the * specified alignment. M_* flags are expected in the flags field. * * Alignment must be a multiple of PAGE_SIZE. * * NOTE! XXX For the moment we use vm_map_entry_reserve/release(), * but when we move zalloc() over to use this function as its backend * we will have to switch to kreserve/krelease and call reserve(0) * after the new space is made available. * * Interrupt code which has preempted other code is not allowed to * use PQ_CACHE pages. However, if an interrupt thread is run * non-preemptively or blocks and then runs non-preemptively, then * it is free to use PQ_CACHE pages. <--- may not apply any longer XXX */ void * kmem_slab_alloc(vm_size_t size, vm_offset_t align, int flags) { vm_size_t i; vm_offset_t addr; int count, vmflags, base_vmflags; vm_page_t mbase = NULL; vm_page_t m; thread_t td; size = round_page(size); addr = vm_map_min(kernel_map); count = vm_map_entry_reserve(MAP_RESERVE_COUNT); crit_enter(); vm_map_lock(kernel_map); if (vm_map_findspace(kernel_map, addr, size, align, 0, &addr)) { vm_map_unlock(kernel_map); if ((flags & M_NULLOK) == 0) panic("kmem_slab_alloc(): kernel_map ran out of space!"); vm_map_entry_release(count); crit_exit(); return(NULL); } /* * kernel_object maps 1:1 to kernel_map. */ vm_object_hold(kernel_object); vm_object_reference_locked(kernel_object); vm_map_insert(kernel_map, &count, kernel_object, NULL, addr, NULL, addr, addr + size, VM_MAPTYPE_NORMAL, VM_SUBSYS_KMALLOC, VM_PROT_ALL, VM_PROT_ALL, 0); vm_object_drop(kernel_object); vm_map_set_wired_quick(kernel_map, addr, size, &count); vm_map_unlock(kernel_map); td = curthread; base_vmflags = 0; if (flags & M_ZERO) base_vmflags |= VM_ALLOC_ZERO; if (flags & M_USE_RESERVE) base_vmflags |= VM_ALLOC_SYSTEM; if (flags & M_USE_INTERRUPT_RESERVE) base_vmflags |= VM_ALLOC_INTERRUPT; if ((flags & (M_RNOWAIT|M_WAITOK)) == 0) { panic("kmem_slab_alloc: bad flags %08x (%p)", flags, ((int **)&size)[-1]); } /* * Allocate the pages. Do not map them yet. VM_ALLOC_NORMAL can only * be set if we are not preempting. * * VM_ALLOC_SYSTEM is automatically set if we are preempting and * M_WAITOK was specified as an alternative (i.e. M_USE_RESERVE is * implied in this case), though I'm not sure if we really need to * do that. */ vmflags = base_vmflags; if (flags & M_WAITOK) { if (td->td_preempted) vmflags |= VM_ALLOC_SYSTEM; else vmflags |= VM_ALLOC_NORMAL; } vm_object_hold(kernel_object); for (i = 0; i < size; i += PAGE_SIZE) { m = vm_page_alloc(kernel_object, OFF_TO_IDX(addr + i), vmflags); if (i == 0) mbase = m; /* * If the allocation failed we either return NULL or we retry. * * If M_WAITOK is specified we wait for more memory and retry. * If M_WAITOK is specified from a preemption we yield instead of * wait. Livelock will not occur because the interrupt thread * will not be preempting anyone the second time around after the * yield. */ if (m == NULL) { if (flags & M_WAITOK) { if (td->td_preempted) { lwkt_switch(); } else { vm_wait(0); } i -= PAGE_SIZE; /* retry */ continue; } break; } } /* * Check and deal with an allocation failure */ if (i != size) { while (i != 0) { i -= PAGE_SIZE; m = vm_page_lookup(kernel_object, OFF_TO_IDX(addr + i)); /* page should already be busy */ vm_page_free(m); } vm_map_lock(kernel_map); vm_map_delete(kernel_map, addr, addr + size, &count); vm_map_unlock(kernel_map); vm_object_drop(kernel_object); vm_map_entry_release(count); crit_exit(); return(NULL); } /* * Success! * * NOTE: The VM pages are still busied. mbase points to the first one * but we have to iterate via vm_page_next() */ vm_object_drop(kernel_object); crit_exit(); /* * Enter the pages into the pmap and deal with M_ZERO. */ m = mbase; i = 0; while (i < size) { /* * page should already be busy */ m->valid = VM_PAGE_BITS_ALL; pmap_enter(kernel_pmap, addr + i, m, VM_PROT_ALL | VM_PROT_NOSYNC, 1, NULL); if (flags & M_ZERO) pagezero((char *)addr + i); KKASSERT(m->flags & (PG_WRITEABLE | PG_MAPPED)); vm_page_flag_set(m, PG_REFERENCED); vm_page_wakeup(m); i += PAGE_SIZE; vm_object_hold(kernel_object); m = vm_page_next(m); vm_object_drop(kernel_object); } smp_invltlb(); vm_map_entry_release(count); return((void *)addr); } /* * kmem_slab_free() */ void kmem_slab_free(void *ptr, vm_size_t size) { crit_enter(); vm_map_remove(kernel_map, (vm_offset_t)ptr, (vm_offset_t)ptr + size); crit_exit(); } |