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 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304
|
/*
* user-level memory-allocation routines
*
* Copyright 2000 by Gray Watson
*
* This file is part of the dmalloc package.
*
* Permission to use, copy, modify, and distribute this software for
* any purpose and without fee is hereby granted, provided that the
* above copyright notice and this permission notice appear in all
* copies, and that the name of Gray Watson not be used in advertising
* or publicity pertaining to distribution of the document or software
* without specific, written prior permission.
*
* Gray Watson makes no representations about the suitability of the
* software described herein for any purpose. It is provided "as is"
* without express or implied warranty.
*
* The author may be contacted via http://dmalloc.com/
*
* $Id: malloc.c,v 1.189 2007/03/25 18:53:41 gray Exp $
*/
/*
* This file contains the user-level calls to the memory allocation
* routines. It handles a lot of the miscellaneous support garbage for
* chunk.c which is the real heap manager.
*/
#include <stdio.h> /* for sprintf sometimes */
#if HAVE_STDLIB_H
# include <stdlib.h> /* for atexit */
#endif
#if HAVE_STRING_H
# include <string.h> /* for strlen */
#endif
#if HAVE_UNISTD_H
# include <unistd.h> /* for write */
#endif
#if HAVE_ERRNO_H
# include <errno.h> /* for ENOMEM EINVAL */
#else
#ifndef ENOMEM
#define ENOMEM 1
#endif /*ENOMEM*/
#ifndef EINVAL
#define EINVAL 2
#endif /*EINVAL*/
#endif /*HAVE_ERRNO_H*/
/*
* cygwin includes
*/
#if HAVE_SYS_CYGWIN_H
# include <sys/cygwin.h>
#endif
#if HAVE_STDARG_H
# include <stdarg.h>
#endif
#if HAVE_W32API_WINDEF_H
# include <w32api/windef.h>
#endif
#if HAVE_W32API_WINBASE_H
# include <w32api/winbase.h>
#endif
#include "conf.h" /* up here for _INCLUDE */
#if LOG_PNT_TIMEVAL
# ifdef TIMEVAL_INCLUDE
# include TIMEVAL_INCLUDE
# endif
#else
# if HAVE_TIME /* NOT LOG_PNT_TIME */
# ifdef TIME_INCLUDE
# include TIME_INCLUDE
# endif
# endif
#endif
#if LOCK_THREADS
#if HAVE_PTHREAD_H
#include <pthread.h>
#endif
#if HAVE_PTHREADS_H
#include <pthreads.h>
#endif
#endif
#if SIGNAL_OKAY && HAVE_SIGNAL_H
#include <signal.h>
#endif
#define DMALLOC_DISABLE
#include "dmalloc.h"
#include "chunk.h"
#include "compat.h"
#include "debug_tok.h"
#include "env.h"
#include "error.h"
#include "error_val.h"
#include "heap.h"
#include "dmalloc_loc.h"
#include "malloc_funcs.h"
#include "return.h"
#if LOCK_THREADS
#if IDENT_WORKS
#ident "@(#) $Information: lock-threads is enabled $"
#else
static char *information = "@(#) $Information: lock-threads is enabled $";
#endif
#endif
/* exported variables */
/* internal dmalloc error number for reference purposes only */
int dmalloc_errno = ERROR_NONE;
/* logfile for dumping dmalloc info, DMALLOC_LOGFILE env var overrides this */
char *dmalloc_logpath = NULL;
/* local variables */
static int enabled_b = 0; /* have we started yet? */
static int in_alloc_b = 0; /* can't be here twice */
static int do_shutdown_b = 0; /* execute shutdown soon */
static dmalloc_track_t tracking_func = NULL; /* memory trxn tracking func */
/* debug variables */
static char *start_file = NULL; /* file to start at */
static int start_line = 0; /* line to start */
static unsigned long start_iter = 0; /* start after X iterations */
static unsigned long start_size = 0; /* start after X bytes */
static int thread_lock_c = 0; /* lock counter */
/****************************** thread locking *******************************/
#if LOCK_THREADS
#ifdef THREAD_MUTEX_T
/*
* Define a global variable we use as a lock counter.
*
* NOTE: we do not use the PTHREAD_MUTEX_INITIALIZER since this
* basically delays the pthread_mutex_init call to when
* pthread_mutex_lock is called for the first time (at least on
* freebsd). Since we don't want to go recursive into the pthread
* library when we go to lock our mutex variable, we want to force the
* initialization to happen beforehand with a call to
* pthread_mute_init.
*/
static THREAD_MUTEX_T dmalloc_mutex;
#else
#error We need to have THREAD_MUTEX_T defined by the configure script
#endif
#endif
/*
* THREADS LOCKING:
*
* Because we need to protect for multiple threads making calls into
* the dmalloc library at the same time, we need to initialize and use
* a thread mutex variable. The problem is that most thread libraries
* uses malloc itself and do not like to go recursive.
*
* There are two places where we may have this problem. One is when
* we try to use our mutex-lock variable when pthreads is starting up
* in a shaky state. The thread library allocates some space, the
* dmalloc library needs to lock its mutex variable so calls back into
* the pthread library before it is ready for a call, and a core dump
* is probably the result.
*
* We hopefully solve this by having the dmalloc library not lock
* during the first couple of memory transactions. The number is
* controlled by lock-on dmalloc program environmental setting (set
* with ``dmalloc -o X''). You will have to play with the value. Too
* many will cause two threads to march into the dmalloc code at the
* same time generating a ERROR_IN_TWICE error. Too few and you will
* get a core dump in the pthreads initialization code.
*
* The second place where we might go recursive is when we go to
* actually initialize our mutex-lock before we can use it. The
* THREAD_INIT_LOCK variable (in settings.h) defines that the
* initialization happens 2 memory transactions before the library
* begins to use the mutex (lock-on - 2). It we waited to initialize
* the variable right before we used it, the pthread library might
* want to allocate some memory for the variable causing a recursive
* call and probably a seg-fault -- at least in OSF. If people need
* to have this variable also be runtime configurable or would like to
* present an alternative default, please let me know.
*/
#if LOCK_THREADS
/*
* mutex lock the malloc library
*/
static void lock_thread(void)
{
/* we only lock if the lock-on counter has reached 0 */
if (thread_lock_c == 0) {
#if HAVE_PTHREAD_MUTEX_LOCK
pthread_mutex_lock(&dmalloc_mutex);
#endif
}
}
/*
* mutex unlock the malloc library
*/
static void unlock_thread(void)
{
/* if the lock-on counter has not reached 0 then count it down */
if (thread_lock_c > 0) {
thread_lock_c--;
/*
* As we approach the time when we start mutex locking the
* library, we need to init the mutex variable. This sets how
* many times before we start locking should we init the variable
* taking in account that the init itself might generate a call
* into the library. Ugh.
*/
if (thread_lock_c == THREAD_INIT_LOCK) {
#if HAVE_PTHREAD_MUTEX_INIT
/*
* NOTE: we do not use the PTHREAD_MUTEX_INITIALIZER since this
* basically delays the pthread_mutex_init call to when
* pthread_mutex_lock is called for the first time (at least on
* freebsd). Since we don't want to go recursive into the
* pthread library when we go to lock our mutex variable, we
* want to force the initialization to happen beforehand with a
* call to pthread_mute_init.
*/
pthread_mutex_init(&dmalloc_mutex, THREAD_LOCK_INIT_VAL);
#endif
}
}
else if (thread_lock_c == 0) {
#if HAVE_PTHREAD_MUTEX_UNLOCK
pthread_mutex_unlock(&dmalloc_mutex);
#endif
}
}
#endif
/****************************** local utilities ******************************/
/*
* check out a pointer to see if we were looking for it. this should
* be re-entrant and it may not return.
*/
static void check_pnt(const char *file, const int line, const void *pnt,
const char *label)
{
static unsigned long addr_c = 0;
char where_buf[64];
if (_dmalloc_address == NULL || pnt != _dmalloc_address) {
return;
}
addr_c++;
dmalloc_message("address '%#lx' found in '%s' at pass %ld from '%s'",
(unsigned long)pnt, label, addr_c,
_dmalloc_chunk_desc_pnt(where_buf, sizeof(where_buf), file,
line));
/* NOTE: if address_seen_n == 0 then never quit */
if (_dmalloc_address_seen_n > 0 && addr_c >= _dmalloc_address_seen_n) {
dmalloc_errno = ERROR_IS_FOUND;
dmalloc_error("check_pnt");
}
}
/*
* process the values of dmalloc environ variables
*/
static void process_environ(const char *option_str)
{
/*
* we have a static here so we can store the string without getting
* into problems
*/
static char options[1024];
/* process the options flag */
if (option_str == NULL) {
options[0] = '\0';
}
else {
strncpy(options, option_str, sizeof(options));
options[sizeof(options) - 1] = '\0';
}
_dmalloc_environ_process(options, &_dmalloc_address,
&_dmalloc_address_seen_n, &_dmalloc_flags,
&_dmalloc_check_interval, &_dmalloc_lock_on,
&dmalloc_logpath, &start_file, &start_line,
&start_iter, &start_size, &_dmalloc_memory_limit);
thread_lock_c = _dmalloc_lock_on;
/* if we set the start stuff, then check-heap comes on later */
if (start_iter > 0 || start_size > 0) {
BIT_CLEAR(_dmalloc_flags, DEBUG_CHECK_HEAP);
}
/* indicate that we should reopen the logfile if we need to */
_dmalloc_reopen_log();
#if LOCK_THREADS == 0
/* was thread-lock-on specified but not configured? */
if (_dmalloc_lock_on > 0) {
dmalloc_errno = ERROR_LOCK_NOT_CONFIG;
_dmalloc_die(0);
}
#endif
}
/************************** startup/shutdown calls ***************************/
#if SIGNAL_OKAY
/*
* signal catcher
*/
static RETSIGTYPE signal_handler(const int sig)
{
dmalloc_message("caught signal %d", sig);
/* if we are already inside malloc then do the shutdown later */
if (in_alloc_b) {
do_shutdown_b = 1;
}
else {
dmalloc_shutdown();
}
}
#endif
/*
* startup the memory-allocation module
*/
static int dmalloc_startup(const char *debug_str)
{
static int some_up_b = 0;
const char *env_str;
#ifdef __CYGWIN__
char env_buf[256];
#endif
/* have we started already? */
if (enabled_b) {
return 0;
}
if (! some_up_b) {
/* set this up here so if an error occurs below, it will not try again */
some_up_b = 1;
#if LOG_PNT_TIMEVAL
GET_TIMEVAL(_dmalloc_start);
#else
#if HAVE_TIME /* NOT LOG_PNT_TIME */
_dmalloc_start = time(NULL);
#endif
#endif
/*
* If we are running under Cygwin then getenv may not be safe. We
* try to use the GetEnvironmentVariableA function instead.
*/
#if defined(__CYGWIN__) && HAVE_GETENVIRONMENTVARIABLEA
/* use this function instead of getenv */
GetEnvironmentVariableA(OPTIONS_ENVIRON, env_buf, sizeof(env_buf));
env_str = env_buf;
#else /* ! __CYGWIN__ */
#if GETENV_SAFE
/* get the options flag */
if (debug_str == NULL) {
env_str = getenv(OPTIONS_ENVIRON);
}
else {
env_str = debug_str;
}
#else
/* oh, well. no idea how to get the environmental variables */
env_str = "";
#endif /* GETENV_SAFE */
#endif /* ! __CYGWIN__ */
/* process the environmental variable(s) */
process_environ(env_str);
/*
* Tune the environment here. If we have a start-file,
* start-count, or interval enabled then make sure the check-heap
* flag is cleared.
*/
if (start_file != NULL
|| start_iter > 0
|| start_size > 0
|| _dmalloc_check_interval > 0) {
BIT_CLEAR(_dmalloc_flags, DEBUG_CHECK_HEAP);
}
/* startup heap code */
if (! _dmalloc_heap_startup()) {
return 0;
}
/* startup the chunk lower-level code */
if (! _dmalloc_chunk_startup()) {
return 0;
}
}
#if LOCK_THREADS
if (thread_lock_c > 0) {
return 1;
}
#endif
/*
* We have initialized all of our code.
*
* NOTE: set this up here so if an error occurs below, it will not
* try again
*/
enabled_b = 1;
/*
* NOTE: we may go recursive below here because atexit or on_exit
* may ask for memory to be allocated. We won't worry about it and
* will just give it to them. We hope that atexit didn't start the
* allocating. Ugh.
*/
#if AUTO_SHUTDOWN
/* NOTE: I use the else here in case some dumb systems has both */
#if HAVE_ATEXIT
(void)atexit(dmalloc_shutdown);
#else
#if HAVE_ON_EXIT
(void)on_exit(dmalloc_shutdown, NULL);
#endif /* HAVE_ON_EXIT */
#endif /* ! HAVE_ATEXIT */
#endif /* AUTO_SHUTDOWN */
#if SIGNAL_OKAY
if (BIT_IS_SET(_dmalloc_flags, DEBUG_CATCH_SIGNALS)) {
#ifdef SIGNAL1
(void)signal(SIGNAL1, signal_handler);
#endif
#ifdef SIGNAL2
(void)signal(SIGNAL2, signal_handler);
#endif
#ifdef SIGNAL3
(void)signal(SIGNAL3, signal_handler);
#endif
#ifdef SIGNAL4
(void)signal(SIGNAL4, signal_handler);
#endif
#ifdef SIGNAL5
(void)signal(SIGNAL5, signal_handler);
#endif
#ifdef SIGNAL6
(void)signal(SIGNAL6, signal_handler);
#endif
}
#endif /* SIGNAL_OKAY */
return 1;
}
/*
* static int dmalloc_in
*
* DESCRIPTION:
*
* Call to the alloc routines has been made. Do some initialization,
* locking, and check some debug variables.
*
* RETURNS:
*
* Success - 1
*
* Failure - 0
*
* ARGUMENTS:
*
* file -> File-name or return-address of the caller.
*
* line -> Line-number of the caller.
*
* check_heap_b -> Set to 1 if it is okay to check the heap. If set
* to 0 then the caller will check it itself or it is a non-invasive
* call.
*/
static int dmalloc_in(const char *file, const int line,
const int check_heap_b)
{
if (_dmalloc_aborting_b) {
return 0;
}
/*
* NOTE: we need to do this outside of lock to get env vars
* otherwise our _dmalloc_lock_on variable won't be initialized and
* the THREAD_LOCK will flip.
*/
if (! enabled_b) {
if (! dmalloc_startup(NULL /* no options string */)) {
return 0;
}
}
#if LOCK_THREADS
lock_thread();
#endif
if (in_alloc_b) {
dmalloc_errno = ERROR_IN_TWICE;
dmalloc_error("dmalloc_in");
/* NOTE: dmalloc_error may die already */
_dmalloc_die(0);
/*NOTREACHED*/
}
in_alloc_b = 1;
/* increment our interval */
_dmalloc_iter_c++;
/* check start file/line specifications */
if ((! BIT_IS_SET(_dmalloc_flags, DEBUG_CHECK_HEAP))
&& start_file != NULL
&& file != DMALLOC_DEFAULT_FILE
&& line != DMALLOC_DEFAULT_LINE
&& strcmp(start_file, file) == 0
&& (start_line == 0 || start_line == line)) {
BIT_SET(_dmalloc_flags, DEBUG_CHECK_HEAP);
/*
* we disable the start file so we won't check this again and the
* interval can go on/off
*/
start_file = NULL;
}
/* start checking heap after X times */
else if (start_iter > 0) {
if (--start_iter == 0) {
BIT_SET(_dmalloc_flags, DEBUG_CHECK_HEAP);
/*
* this is automatically disabled since it goes to 0 so the
* interval can go on/off
*/
}
}
else if (start_size > 0 && start_size >= _dmalloc_alloc_total) {
BIT_SET(_dmalloc_flags, DEBUG_CHECK_HEAP);
start_size = 0;
/* disable this check so the interval can go on/off */
}
/* checking heap every X times */
else if (_dmalloc_check_interval > 0) {
if (_dmalloc_iter_c % _dmalloc_check_interval == 0) {
BIT_SET(_dmalloc_flags, DEBUG_CHECK_HEAP);
}
else {
BIT_CLEAR(_dmalloc_flags, DEBUG_CHECK_HEAP);
}
}
/* after all that, do we need to check the heap? */
if (check_heap_b && BIT_IS_SET(_dmalloc_flags, DEBUG_CHECK_HEAP)) {
(void)_dmalloc_chunk_heap_check();
}
return 1;
}
/*
* Going out of the alloc routines back to user space.
*/
static void dmalloc_out(void)
{
in_alloc_b = 0;
#if LOCK_THREADS
unlock_thread();
#endif
if (do_shutdown_b) {
dmalloc_shutdown();
}
}
/***************************** exported routines *****************************/
/*
* void dmalloc_shutdown
*
* DESCRIPTION:
*
* Shutdown the dmalloc library and provide statistics if necessary.
*
* RETURNS:
*
* None.
*
* ARGUMENTS:
*
* None.
*/
void dmalloc_shutdown(void)
{
/* NOTE: do not generate errors for IN_TWICE here */
/* if we're already in die mode leave fast and quietly */
if (_dmalloc_aborting_b) {
return;
}
/*
* Make sure that the log file is open. We do this here because we
* might cause an allocation in the open() and don't want to go
* recursive.
*/
_dmalloc_open_log();
/* if we've died in dmalloc somewhere then leave fast and quietly */
if (in_alloc_b) {
return;
}
#if LOCK_THREADS
lock_thread();
#endif
/* we do it again in case the lock synced the flag to true now */
if (in_alloc_b) {
#if LOCK_THREADS
unlock_thread();
#endif
return;
}
in_alloc_b = 1;
/*
* Check the heap since we are dumping info from it. We check it
* when check-blank is enabled do make sure all of the areas have
* not been overwritten. Thanks Randell.
*/
if (BIT_IS_SET(_dmalloc_flags, DEBUG_CHECK_HEAP)
|| BIT_IS_SET(_dmalloc_flags, DEBUG_CHECK_BLANK)
|| BIT_IS_SET(_dmalloc_flags, DEBUG_CHECK_SHUTDOWN)) {
(void)_dmalloc_chunk_heap_check();
}
/* dump some statistics to the logfile */
if (BIT_IS_SET(_dmalloc_flags, DEBUG_LOG_STATS)) {
_dmalloc_chunk_log_stats();
}
/* report on non-freed pointers */
if (BIT_IS_SET(_dmalloc_flags, DEBUG_LOG_NONFREE)) {
_dmalloc_chunk_log_changed(0, 1, 0,
#if DUMP_UNFREED_SUMMARY_ONLY
0
#else
1
#endif
);
}
#if LOG_PNT_TIMEVAL
{
TIMEVAL_TYPE now;
char time_buf1[64], time_buf2[64];
GET_TIMEVAL(now);
dmalloc_message("ending time = %s, elapsed since start = %s",
_dmalloc_ptimeval(&now, time_buf1, sizeof(time_buf1), 0),
_dmalloc_ptimeval(&now, time_buf2, sizeof(time_buf2), 1));
}
#else
#if HAVE_TIME /* NOT LOG_PNT_TIME */
{
TIME_TYPE now;
char time_buf1[64], time_buf2[64];
now = time(NULL);
dmalloc_message("ending time = %s, elapsed since start = %s",
_dmalloc_ptime(&now, time_buf1, sizeof(time_buf1), 0),
_dmalloc_ptime(&now, time_buf2, sizeof(time_buf2), 1));
}
#endif
#endif
in_alloc_b = 0;
#if LOCK_THREADS
unlock_thread();
#endif
/* NOTE: do not set enabled_b to false here */
}
#if FINI_DMALLOC
/*
* void __fini_dmalloc
*
* DESCRIPTION:
*
* Automatic function to close dmalloc supported by some operating
* systems. Pretty cool OS/compiler hack. By default it is not
* necessary because we use atexit() and on_exit() to register the
* close functions which are more portable.
*
* RETURNS:
*
* None.
*
* ARGUMENTS:
*
* None.
*/
void __fini_dmalloc(void)
{
dmalloc_shutdown();
}
#endif
/*
* DMALLOC_PNT dmalloc_malloc
*
* DESCRIPTION:
*
* Allocate and return a memory block of a certain size.
*
* RETURNS:
*
* Success - Valid pointer.
*
* Failure - 0L
*
* ARGUMENTS:
*
* file -> File-name or return-address of the caller.
*
* line -> Line-number of the caller.
*
* size -> Number of bytes requested.
*
* func_id -> Function-id to identify the type of call. See
* dmalloc.h.
*
* alignment -> To align the new block to a certain number of bytes,
* set this to a value greater than 0.
*
* xalloc_b -> If set to 1 then print an error and exit if we run out
* of memory.
*/
DMALLOC_PNT dmalloc_malloc(const char *file, const int line,
const DMALLOC_SIZE size, const int func_id,
const DMALLOC_SIZE alignment,
const int xalloc_b)
{
void *new_p;
DMALLOC_SIZE align = 0;
#if DMALLOC_SIZE_UNSIGNED == 0
if (size < 0) {
dmalloc_errno = ERROR_BAD_SIZE;
dmalloc_error("malloc");
if (tracking_func != NULL) {
tracking_func(file, line, func_id, size, alignment, NULL, NULL);
}
return MALLOC_ERROR;
}
#endif
if (! dmalloc_in(file, line, 1)) {
if (tracking_func != NULL) {
tracking_func(file, line, func_id, size, alignment, NULL, NULL);
}
return MALLOC_ERROR;
}
if (alignment == 0) {
if (func_id == DMALLOC_FUNC_VALLOC) {
align = BLOCK_SIZE;
}
else {
align = 0;
}
}
else if (alignment >= BLOCK_SIZE) {
align = BLOCK_SIZE;
}
new_p = _dmalloc_chunk_malloc(file, line, size, func_id, align);
check_pnt(file, line, new_p, "malloc");
dmalloc_out();
if (tracking_func != NULL) {
tracking_func(file, line, func_id, size, alignment, NULL, new_p);
}
if (xalloc_b && new_p == NULL) {
char mess[1024], desc[128];
(void)loc_snprintf(mess, sizeof(mess),
"Out of memory while allocating %d bytes from '%s'\n",
size,
_dmalloc_chunk_desc_pnt(desc, sizeof(desc),
file, line));
if (write(STDERR, mess, strlen(mess)) < 0) {
}
_exit(1);
}
return new_p;
}
/*return one if v is a power of two, zero otherwise*/
static int power_of_two(unsigned int v)
{
unsigned i;
for(i=0;i<(sizeof(v)*8);i++) {
if((((unsigned int)1)<<i)==v)
return 1;
}
return 0;
}
/*
* int dmalloc_posix_memalign
*
* DESCRIPTION:
*
* Overloading the posix_memalign(3) function. Allocate and return a memory
* block of a certain size which has been aligned to a certain
* alignment.
*
* RETURNS:
*
* Success - zero.
* EINVAL The alignment argument was not a power of two, or was not a multiple of sizeof(void *).
* ENOMEM There was insufficient memory to fulfill the allocation request.
*
* ARGUMENTS:
* memptr -> pointer will be returned here on success
*
* alignment -> Value to which the allocation must be aligned. This
* should probably be a multiple of 2 with a maximum value equivalent
* to the block-size which is often 1k or 4k.
*
* size -> Number of bytes requested.
*
* file -> File-name or return-address of the caller.
*
* line -> Line-number of the caller.
*
* func_id -> Function-id to identify the type of call. See
* dmalloc.h.
*
* xalloc_b -> If set to 1 then print an error and exit if we run out
* of memory.
*/
extern
int dmalloc_posix_memalign(const char *file, const int line, DMALLOC_PNT *memptr,
const DMALLOC_SIZE size, const int func_id,
const DMALLOC_SIZE alignment,
const int xalloc_b)
{
DMALLOC_PNT rv;
if((NULL==memptr)||(!power_of_two(alignment))||(alignment<sizeof(void*)))
return EINVAL;
rv=dmalloc_malloc(file, line,size, func_id, alignment, xalloc_b);
if(NULL==rv)
return ENOMEM;
*memptr=rv;
return 0;
}
/*
* DMALLOC_PNT dmalloc_realloc
*
* DESCRIPTION:
*
* Resizes and old pointer to a new number of bytes.
* Will destroy previous alignment.
*
* RETURNS:
*
* Success - Valid pointer.
*
* Failure - 0L
*
* ARGUMENTS:
*
* file -> File-name or return-address of the caller.
*
* line -> Line-number of the caller.
*
* old_pnt -> Pointer to an existing memory chunk that we are
* resizing. If this is NULL then it basically does a malloc.
*
* new_size -> New number of bytes requested for the old pointer.
*
* func_id -> Function-id to identify the type of call. See
* dmalloc.h.
*
* xalloc_b -> If set to 1 then print an error and exit if we run out
* of memory.
*/
DMALLOC_PNT dmalloc_realloc(const char *file, const int line,
DMALLOC_PNT old_pnt, DMALLOC_SIZE new_size,
const int func_id, const int xalloc_b)
{
void *new_p;
#if DMALLOC_SIZE_UNSIGNED == 0
if (new_size < 0) {
dmalloc_errno = ERROR_BAD_SIZE;
dmalloc_error("realloc");
if (tracking_func != NULL) {
tracking_func(file, line, func_id, new_size, 0, old_pnt, NULL);
}
return MALLOC_ERROR;
}
#endif
if (! dmalloc_in(file, line, 1)) {
if (tracking_func != NULL) {
tracking_func(file, line, func_id, new_size, 0, old_pnt, NULL);
}
return REALLOC_ERROR;
}
check_pnt(file, line, old_pnt, "realloc-in");
#if ALLOW_REALLOC_NULL
if (old_pnt == NULL) {
int new_func_id;
/* shift the function id to be calloc or malloc */
if (func_id == DMALLOC_FUNC_RECALLOC) {
new_func_id = DMALLOC_FUNC_CALLOC;
}
else {
new_func_id = DMALLOC_FUNC_MALLOC;
}
new_p = _dmalloc_chunk_malloc(file, line, new_size, new_func_id, 0);
}
else
#endif
#if ALLOW_REALLOC_SIZE_ZERO
if (new_size == 0) {
/*
* If realloc(old_pnt, 0) then free(old_pnt). Thanks to Stefan
* Froehlich for patiently pointing that the realloc in just
* about every Unix has this functionality.
*/
(void)_dmalloc_chunk_free(file, line, old_pnt, func_id);
new_p = NULL;
}
else
#endif
new_p = _dmalloc_chunk_realloc(file, line, old_pnt, new_size, func_id);
if (new_p != NULL) {
check_pnt(file, line, new_p, "realloc-out");
}
dmalloc_out();
if (tracking_func != NULL) {
tracking_func(file, line, func_id, new_size, 0, old_pnt, new_p);
}
if (xalloc_b && new_p == NULL) {
char mess[1024], desc[128];
(void)loc_snprintf(mess, sizeof(mess),
"Out of memory while reallocating %d bytes from '%s'\n",
new_size, _dmalloc_chunk_desc_pnt(desc, sizeof(desc),
file, line));
if (write(STDERR, mess, strlen(mess)) < 0) {
}
_exit(1);
}
return new_p;
}
/*
* int dmalloc_free
*
* DESCRIPTION:
*
* Release a pointer back into the heap.
*
* RETURNS:
*
* Success - FREE_NOERROR
*
* Failure - FREE_ERROR
*
* Note: many operating systems define free to return (void) so this
* return value may be filtered. Dumb.
*
* ARGUMENTS:
*
* file -> File-name or return-address of the caller.
*
* line -> Line-number of the caller.
*
* pnt -> Existing pointer we are freeing.
*
* func_id -> Function-id to identify the type of call. See
* dmalloc.h.
*/
int dmalloc_free(const char *file, const int line, DMALLOC_PNT pnt,
const int func_id)
{
int ret;
if(NULL==pnt)
return FREE_NOERROR;
if (! dmalloc_in(file, line, 1)) {
if (tracking_func != NULL) {
tracking_func(file, line, func_id, 0, 0, pnt, NULL);
}
return FREE_ERROR;
}
check_pnt(file, line, pnt, "free");
ret = _dmalloc_chunk_free(file, line, pnt, func_id);
dmalloc_out();
if (tracking_func != NULL) {
tracking_func(file, line, DMALLOC_FUNC_FREE, 0, 0, pnt, NULL);
}
return ret;
}
/*
* DMALLOC_PNT dmalloc_strndup
*
* DESCRIPTION:
*
* Allocate and return an allocated block of memory holding a copy of
* a string of a certain number of characters.
*
* RETURNS:
*
* Success - Valid pointer.
*
* Failure - 0L
*
* ARGUMENTS:
*
* file -> File-name or return-address of the caller.
*
* line -> Line-number of the caller.
*
* string -> String we are duplicating.
*
* len -> Length of the string we are duplicating.
*
* xalloc_b -> If set to 1 then print an error and exit if we run out
* of memory.
*/
char *dmalloc_strndup(const char *file, const int line,
const char *string, const int len,
const int xalloc_b)
{
DMALLOC_SIZE size;
char *new_string;
const char *string_p;
/* check the arguments */
if (BIT_IS_SET(_dmalloc_flags, DEBUG_CHECK_FUNCS)) {
/* we check for pointer plus \0 */
if (! dmalloc_verify_pnt_strsize(file, line, "strdup", string,
0 /* not exact */, 1 /* strlen */, len)) {
dmalloc_message("bad pointer argument found in strdup");
}
}
/* so we have to figure out the max length of the string directly */
if (len < 0) {
size = strlen(string);
}
else {
for (string_p = string; string_p < string + len; string_p++) {
if (*string_p == '\0') {
break;
}
}
size = string_p - string;
}
/* allocate space for the \0 */
new_string = dmalloc_malloc(file, line, size + 1, DMALLOC_FUNC_STRDUP,
0 /* no alignment */, xalloc_b);
if (new_string != NULL) {
strncpy(new_string, string, size);
new_string[size] = '\0';
}
return new_string;
}
/*************************** external memory calls ***************************/
/*
* DMALLOC_PNT malloc
*
* DESCRIPTION:
*
* Overloading the malloc(3) function. Allocate and return a memory
* block of a certain size.
*
* RETURNS:
*
* Success - Valid pointer.
*
* Failure - 0L
*
* ARGUMENTS:
*
* size -> Number of bytes requested.
*/
#undef malloc
DMALLOC_PNT malloc(DMALLOC_SIZE size)
{
char *file;
GET_RET_ADDR(file);
return dmalloc_malloc(file, DMALLOC_DEFAULT_LINE, size, DMALLOC_FUNC_MALLOC,
0 /* no alignment */, 0 /* no xalloc messages */);
}
/*
* DMALLOC_PNT calloc
*
* DESCRIPTION:
*
* Overloading the calloc(3) function. Returns a block of zeroed memory.
*
* RETURNS:
*
* Success - Valid pointer.
*
* Failure - 0L
*
* ARGUMENTS:
*
* num_elements -> Number of elements being allocated.
*
* size -> The number of bytes in each element.
*/
#undef calloc
DMALLOC_PNT calloc(DMALLOC_SIZE num_elements, DMALLOC_SIZE size)
{
DMALLOC_SIZE len = num_elements * size;
char *file;
GET_RET_ADDR(file);
return dmalloc_malloc(file, DMALLOC_DEFAULT_LINE, len, DMALLOC_FUNC_CALLOC,
0 /* no alignment */, 0 /* no xalloc messages */);
}
/*
* DMALLOC_PNT realloc
*
* DESCRIPTION:
*
* Overload of realloc(3). Resizes and old pointer to a new number of
* bytes.
*
* RETURNS:
*
* Success - Valid pointer.
*
* Failure - 0L
*
* ARGUMENTS:
*
* old_pnt -> Pointer to an existing memory chunk that we are
* resizing. If this is NULL then it basically does a malloc.
*
* new_size -> New number of bytes requested for the old pointer.
*/
#undef realloc
DMALLOC_PNT realloc(DMALLOC_PNT old_pnt, DMALLOC_SIZE new_size)
{
char *file;
GET_RET_ADDR(file);
return dmalloc_realloc(file, DMALLOC_DEFAULT_LINE, old_pnt, new_size,
DMALLOC_FUNC_REALLOC, 0 /* no xalloc messages */);
}
/*
* DMALLOC_PNT recalloc
*
* DESCRIPTION:
*
* Overload of recalloc(3) which exists on some systems. Resizes and
* old pointer to a new number of bytes. If we are expanding, then
* any new bytes will be zeroed.
*
* RETURNS:
*
* Success - Valid pointer.
*
* Failure - 0L
*
* ARGUMENTS:
*
* old_pnt -> Pointer to an existing memory chunk that we are
* resizing.
*
* new_size -> New number of bytes requested for the old pointer.
*/
#undef recalloc
DMALLOC_PNT recalloc(DMALLOC_PNT old_pnt, DMALLOC_SIZE new_size)
{
char *file;
GET_RET_ADDR(file);
return dmalloc_realloc(file, DMALLOC_DEFAULT_LINE, old_pnt, new_size,
DMALLOC_FUNC_RECALLOC, 0 /* no xalloc messages */);
}
/*
* DMALLOC_PNT memalign
*
* DESCRIPTION:
*
* Overloading the memalign(3) function. Allocate and return a memory
* block of a certain size which have been aligned to a certain
* alignment.
*
* RETURNS:
*
* Success - Valid pointer.
*
* Failure - 0L
*
* ARGUMENTS:
*
* alignment -> Value to which the allocation must be aligned. This
* should probably be a multiple of 2 with a maximum value equivalent
* to the block-size which is often 1k or 4k.
*
* size -> Number of bytes requested.
*/
#undef memalign
DMALLOC_PNT memalign(DMALLOC_SIZE alignment, DMALLOC_SIZE size)
{
char *file;
GET_RET_ADDR(file);
return dmalloc_malloc(file, DMALLOC_DEFAULT_LINE, size,
DMALLOC_FUNC_MEMALIGN, alignment,
0 /* no xalloc messages */);
}
/*
* int posix_memalign
*
* DESCRIPTION:
*
* Overloading the posix_memalign(3) function. Allocate and return a memory
* block of a certain size which has been aligned to a certain
* alignment.
*
* RETURNS:
*
* Success - zero.
* EINVAL The alignment argument was not a power of two, or was not a multiple of sizeof(void *).
* ENOMEM There was insufficient memory to fulfill the allocation request.
*
*
* ARGUMENTS:
* memptr -> pointer will be returned here on success
* alignment -> Value to which the allocation must be aligned. This
* should probably be a multiple of 2 with a maximum value equivalent
* to the block-size which is often 1k or 4k.
*
* size -> Number of bytes requested.
*/
#undef posix_memalign
int posix_memalign(DMALLOC_PNT *memptr, DMALLOC_SIZE alignment, DMALLOC_SIZE size)
{
char *file;
GET_RET_ADDR(file);
return dmalloc_posix_memalign(file, DMALLOC_DEFAULT_LINE, memptr,
size, DMALLOC_FUNC_POSIX_MEMALIGN, alignment,
0);
}
/*
* DMALLOC_PNT valloc
*
* DESCRIPTION:
*
* Overloading the valloc(3) function. Allocate and return a memory
* block of a certain size which have been aligned to page boundaries
* which are often 1k or 4k.
*
* RETURNS:
*
* Success - Valid pointer.
*
* Failure - 0L
*
* ARGUMENTS:
*
* size -> Number of bytes requested.
*/
#undef valloc
DMALLOC_PNT valloc(DMALLOC_SIZE size)
{
char *file;
GET_RET_ADDR(file);
return dmalloc_malloc(file, DMALLOC_DEFAULT_LINE, size, DMALLOC_FUNC_VALLOC,
BLOCK_SIZE, 0 /* no xalloc messages */);
}
#ifndef DMALLOC_STRDUP_MACRO
/*
* DMALLOC_PNT strdup
*
* DESCRIPTION:
*
* Overload of strdup(3). Allocate and return an allocated block of
* memory holding a copy of a string.
*
* RETURNS:
*
* Success - Valid pointer.
*
* Failure - 0L
*
* ARGUMENTS:
*
* string -> String we are duplicating.
*/
#undef strdup
char *strdup(const char *string)
{
int len;
char *buf, *file;
GET_RET_ADDR(file);
/* check the arguments */
if (BIT_IS_SET(_dmalloc_flags, DEBUG_CHECK_FUNCS)) {
if (! dmalloc_verify_pnt(file, 0 /* no line */, "strdup", string,
0 /* not exact */, -1)) {
dmalloc_message("bad pointer argument found in strdup");
}
}
/* len + \0 */
len = strlen(string) + 1;
buf = dmalloc_malloc(file, DMALLOC_DEFAULT_LINE, len, DMALLOC_FUNC_STRDUP,
0 /* no alignment */, 0 /* no xalloc messages */);
if (buf != NULL) {
(void)memcpy(buf, string, len);
}
return buf;
}
#endif
/*
* DMALLOC_PNT strndup
*
* DESCRIPTION:
*
* Overload of strndup(3). Allocate and return an allocated block of
* memory holding a copy of a string with a maximum length.
*
* RETURNS:
*
* Success - Valid pointer.
*
* Failure - 0L
*
* ARGUMENTS:
*
* string -> String we are duplicating.
*
* len -> Length of the string to duplicate.
*/
#undef strndup
char *strndup(const char *string, const DMALLOC_SIZE len)
{
int size;
char *buf, *file;
const char *string_p;
GET_RET_ADDR(file);
/* check the arguments */
if (BIT_IS_SET(_dmalloc_flags, DEBUG_CHECK_FUNCS)) {
if (! dmalloc_verify_pnt_strsize(file, 0 /* no line */, "strdup", string,
0 /* not exact */, 1 /* strlen */,
len)) {
dmalloc_message("bad pointer argument found in strdup");
}
}
/* so we have to figure out the max length of the string directly */
for (string_p = string; string_p < string + len; string_p++) {
if (*string_p == '\0') {
break;
}
}
size = string_p - string;
/* at 1 for null */
buf = dmalloc_malloc(file, DMALLOC_DEFAULT_LINE, size + 1,
DMALLOC_FUNC_STRDUP, 0 /* no alignment */,
0 /* no xalloc messages */);
if (buf != NULL) {
(void)memcpy(buf, string, size);
buf[size] = '\0';
}
return buf;
}
/*
* DMALLOC_FREE_RET free
*
* DESCRIPTION:
*
* Release a pointer back into the heap.
*
* RETURNS:
*
* Returns FREE_ERROR, FREE_NOERROR or void depending on whether STDC
* is defined by your compiler.
*
* ARGUMENTS:
*
* pnt -> Existing pointer we are freeing.
*/
#undef free
DMALLOC_FREE_RET free(DMALLOC_PNT pnt)
{
char *file;
int ret;
GET_RET_ADDR(file);
ret = dmalloc_free(file, DMALLOC_DEFAULT_LINE, pnt, DMALLOC_FUNC_FREE);
#if (defined(__STDC__) && __STDC__ == 1) || defined(__cplusplus) || defined(STDC_HEADERS)
(void) ret;
#else
return ret;
#endif
}
/*
* DMALLOC_FREE_RET cfree
*
* DESCRIPTION:
*
* Same as free.
*
* RETURNS:
*
* Returns FREE_ERROR, FREE_NOERROR or void depending on whether STDC
* is defined by your compiler.
*
* ARGUMENTS:
*
* pnt -> Existing pointer we are freeing.
*/
#undef cfree
DMALLOC_FREE_RET cfree(DMALLOC_PNT pnt)
{
char *file;
int ret;
GET_RET_ADDR(file);
ret = dmalloc_free(file, DMALLOC_DEFAULT_LINE, pnt, DMALLOC_FUNC_CFREE);
#if (defined(__STDC__) && __STDC__ == 1) || defined(__cplusplus) || defined(STDC_HEADERS)
(void) ret;
#else
return ret;
#endif
}
/******************************* utility calls *******************************/
/*
* int dmalloc_verify
*
* DESCRIPTION:
*
* Verify a pointer which has previously been allocated by the
* library or check the entire heap.
*
* RETURNS:
*
* Success - MALLOC_VERIFY_NOERROR
*
* Failure - MALLOC_VERIFY_ERROR
*
* ARGUMENTS:
*
* pnt -> Pointer we are verifying. If 0L then check the entire heap.
*/
int dmalloc_verify(const DMALLOC_PNT pnt)
{
int ret;
if (! dmalloc_in(DMALLOC_DEFAULT_FILE, DMALLOC_DEFAULT_LINE, 0)) {
return MALLOC_VERIFY_NOERROR;
}
/* should not check heap here because we will be doing it below */
if (pnt == NULL) {
ret = _dmalloc_chunk_heap_check();
}
else {
ret = _dmalloc_chunk_pnt_check("dmalloc_verify", pnt,
1 /* exact pointer */, 0 /* no strlen */,
0 /* no min size */);
}
dmalloc_out();
if (ret) {
return MALLOC_VERIFY_NOERROR;
}
else {
return MALLOC_VERIFY_ERROR;
}
}
/*
* int malloc_verify
*
* DESCRIPTION:
*
* Verify a pointer which has previously been allocated by the
* library. Same as dmalloc_verify.
*
* RETURNS:
*
* Success - MALLOC_VERIFY_NOERROR
*
* Failure - MALLOC_VERIFY_ERROR
*
* ARGUMENTS:
*
* pnt -> Pointer we are verifying. If 0L then check the entire heap.
*/
int malloc_verify(const DMALLOC_PNT pnt)
{
return dmalloc_verify(pnt);
}
/*
* int dmalloc_verify_pnt
*
* DESCRIPTION:
*
* This function is mainly used by the arg_check.c functions to verify
* specific pointers. This can be used by users to provide more fine
* grained tests on pointers.
*
* RETURNS:
*
* Success - MALLOC_VERIFY_NOERROR
*
* Failure - MALLOC_VERIFY_ERROR
*
* ARGUMENTS:
*
* file -> File-name or return-address of the caller. You can use
* __FILE__ for this argument or 0L for none.
*
* line -> Line-number of the caller. You can use __LINE__ for this
* argument or 0 for none.
*
* func -> Function string which is checking the pointer. 0L if none.
*
* pnt -> Pointer we are checking.
*
* exact_b -> Set to 1 if this pointer was definitely handed back from
* a memory allocation. If set to 0 then this pointer can be inside
* another allocation or outside the heap altogether.
*
* strlen_b -> Set to 1 to make sure that this pointer can handle
* strlen(pnt) + 1 bytes up to the maximum specified by min_size. If
* this is 1 and min_size > 0 then it is in effect a strnlen.
*
* min_size -> Make sure that pointer can hold at least that many
* bytes if inside of the heap. If 0 then don't check the size.
*/
int dmalloc_verify_pnt_strsize(const char *file, const int line,
const char *func, const void *pnt,
const int exact_b, const int strlen_b,
const int min_size)
{
int ret;
if (! dmalloc_in(file, line, 0)) {
return MALLOC_VERIFY_NOERROR;
}
/* call the pnt checking chunk code */
ret = _dmalloc_chunk_pnt_check(func, pnt, exact_b, strlen_b, min_size);
dmalloc_out();
if (ret) {
return MALLOC_VERIFY_NOERROR;
}
else {
return MALLOC_VERIFY_ERROR;
}
}
/*
* int dmalloc_verify_pnt
*
* DESCRIPTION:
*
* This function is mainly used by the arg_check.c functions to verify
* specific pointers. This can be used by users to provide more fine
* grained tests on pointers.
*
* RETURNS:
*
* Success - MALLOC_VERIFY_NOERROR
*
* Failure - MALLOC_VERIFY_ERROR
*
* ARGUMENTS:
*
* file -> File-name or return-address of the caller. You can use
* __FILE__ for this argument or 0L for none.
*
* line -> Line-number of the caller. You can use __LINE__ for this
* argument or 0 for none.
*
* func -> Function string which is checking the pointer. 0L if none.
*
* pnt -> Pointer we are checking.
*
* exact_b -> Set to 1 if this pointer was definitely handed back from
* a memory allocation. If set to 0 then this pointer can be inside
* another allocation or outside the heap altogether.
*
* min_size -> Make sure that pointer can hold at least that many
* bytes if inside of the heap. If -1 then make sure it can handle
* strlen(pnt) + 1 bytes (+1 for the \0). If 0 then don't check the
* size. If you need strnlen functionality with a maximum on the
* strlen, see dmalloc_verify_pnt_strsize.
*/
int dmalloc_verify_pnt(const char *file, const int line, const char *func,
const void *pnt, const int exact_b,
const int min_size)
{
if (min_size < 0) {
return dmalloc_verify_pnt_strsize(file, line, func, pnt, exact_b,
1 /* strlen */, 0 /* no min-size */);
} else {
return dmalloc_verify_pnt_strsize(file, line, func, pnt, exact_b,
0 /* no strlen */, min_size);
}
}
/*
* unsigned int dmalloc_debug
*
* DESCRIPTION:
*
* Set the global debug functionality flags. You can also use
* dmalloc_debug_setup.
*
* Note: you cannot add or remove certain flags such as signal
* handlers since they are setup at initialization time only.
*
* RETURNS:
*
* The old debug flag value.
*
* ARGUMENTS:
*
* flags -> Flag value to set. Pass in 0 to disable all debugging.
*/
unsigned int dmalloc_debug(const unsigned int flags)
{
unsigned int old_flags;
if (! enabled_b) {
(void)dmalloc_startup(NULL /* no options string */);
}
old_flags = _dmalloc_flags;
/* add the new flags */
_dmalloc_flags = flags;
return old_flags;
}
/*
* unsigned int dmalloc_debug_current
*
* DESCRIPTION:
*
* Returns the current debug functionality flags. This allows you to
* save a dmalloc library state to be restored later.
*
* RETURNS:
*
* Current debug flags.
*
* ARGUMENTS:
*
* None.
*/
unsigned int dmalloc_debug_current(void)
{
if (! enabled_b) {
(void)dmalloc_startup(NULL /* no options string */);
}
/* should not check the heap here since we are dumping the debug variable */
return _dmalloc_flags;
}
/*
* void dmalloc_debug_setup
*
* DESCRIPTION:
*
* Set the global debugging functionality as an option string.
* Normally this would be passed in in the DMALLOC_OPTIONS
* environmental variable. This is here to override the env or for
* circumstances where modifying the environment is not possible or
* does not apply such as servers or cgi-bin programs.
*
* RETURNS:
*
* None.
*
* ARGUMENTS:
*
* options_str -> Options string to set the library flags.
*/
void dmalloc_debug_setup(const char *options_str)
{
if (! enabled_b) {
(void)dmalloc_startup(options_str);
/* if we just started up then we don't have to do anything else */
return;
}
/* we need to lock */
if (! dmalloc_in(NULL /* no file-name */, 0 /* no line-number */,
0 /* don't-check-heap */)) {
return;
}
process_environ(options_str);
dmalloc_out();
}
/*
* int dmalloc_examine
*
* DESCRIPTION:
*
* Examine a pointer and pass back information on its allocation size
* as well as the file and line-number where it was allocated. If the
* file and line number is not available, then it will pass back the
* allocation location's return-address if available.
*
* RETURNS:
*
* Success - DMALLOC_NOERROR
*
* Failure - DMALLOC_ERROR
*
* ARGUMENTS:
*
* pnt -> Pointer we are checking.
*
* user_size_p <- Pointer to a DMALLOC_SIZE type variable which, if
* not NULL, will be set to the size of bytes from the pointer.
*
* total_size_p <- Pointer to a DMALLOC_SIZE type variable which, if
* not NULL, will be set to the total size given for this allocation
* including administrative overhead.
*
* file_p <- Pointer to a character pointer which, if not NULL, will
* be set to the file where the pointer was allocated.
*
* line_p <- Pointer to an unsigned integer which, if not NULL, will
* be set to the line-number where the pointer was allocated.
*
* ret_attr_p <- Pointer to a void pointer, if not NULL, will be set
* to the return-address where the pointer was allocated.
*
* used_mark_p <- Pointer to an unsigned integer which, if not NULL,
* will be set to the mark of when the pointer was last "used". This
* could be when it was allocated, reallocated, or freed.
*
* seen_p <- Pointer to an unsigned long which, if not NULL, will be
* set to the number of times that this pointer has been allocated,
* realloced, or freed. NOTE: LOG_PNT_SEEN_COUNT must be set to 1
* otherwise no seen information is available and it will be set to 0.
*/
int dmalloc_examine(const DMALLOC_PNT pnt, DMALLOC_SIZE *user_size_p,
DMALLOC_SIZE *total_size_p, char **file_p,
unsigned int *line_p, DMALLOC_PNT *ret_attr_p,
unsigned long *used_mark_p, unsigned long *seen_p)
{
int ret;
unsigned int user_size_map, tot_size_map;
unsigned long *loc_seen_p;
/*
* NOTE: we use the size maps because we use a unsigned int size
* type internally but may use some size_t externally.
*/
/* need to check the heap here since we are getting info from it below */
if (! dmalloc_in(DMALLOC_DEFAULT_FILE, DMALLOC_DEFAULT_LINE, 1)) {
return DMALLOC_ERROR;
}
/* NOTE: we do not need the alloc-size info */
ret = _dmalloc_chunk_read_info(pnt, "dmalloc_examine", &user_size_map,
&tot_size_map, file_p, line_p, ret_attr_p,
&loc_seen_p, used_mark_p, NULL, NULL);
dmalloc_out();
if (ret) {
SET_POINTER(user_size_p, user_size_map);
SET_POINTER(total_size_p, tot_size_map);
if (loc_seen_p == NULL) {
SET_POINTER(seen_p, 0);
} else {
SET_POINTER(seen_p, *loc_seen_p);
}
return DMALLOC_NOERROR;
}
else {
return DMALLOC_ERROR;
}
}
/*
* int dmalloc_tag_pnt
*
* DESCRIPTION:
*
* Look for a specific address in the skip list. If it exist
* set the file and line fields to given value. Handy for tagging
* pointers from external libraries without dmalloc macros.
* Do _not_ use this function directly, use the dmalloc_tag #define instead.
* As it can be transparently disabled using DMALLOC_DISABLE.
*
* RETURNS:
*
* Success - 1
*
* Failure - 0
*
* ARGUMENTS:
*
* pnt -> Address we are looking for.
*
* file -> should typically point to filename of source file. String is _not_
* copied.
*
* line -> source file line number
*
*/
extern
int dmalloc_tag_pnt(const DMALLOC_PNT pnt,char *file,int line)
{
DMALLOC_PNT p=(DMALLOC_PNT)pnt;
if (! dmalloc_in(DMALLOC_DEFAULT_FILE, DMALLOC_DEFAULT_LINE, 1)) {
return 0;
}
_dmalloc_chunk_tag_pnt(p,file,line);
dmalloc_out();
return 1;
}
/*
* void dmalloc_track
*
* DESCRIPTION:
*
* Register an allocation tracking function which will be called each
* time an allocation occurs.
*
* RETURNS:
*
* None.
*
* ARGUMENTS:
*
* track_func -> Function to register as the tracking function. Set
* to NULL to disable.
*/
void dmalloc_track(const dmalloc_track_t track_func)
{
tracking_func = track_func;
}
/*
* unsigned long dmalloc_mark
*
* DESCRIPTION:
*
* Return to the caller the current "mark" which can be used later by
* dmalloc_log_changed to log the changed pointers since this point.
* Multiple marks can be saved and used.
*
* This is also the iteration number and can be logged at the front of
* each memory transaction in the logfile with the LOG_ITERATION
* define in settings.h and can be logged with each pointer with the
* LOG_PNT_ITERATION define in settings.h.
*
* RETURNS:
*
* Current mark value
*
* ARGUMENTS:
*
* None.
*/
unsigned long dmalloc_mark(void)
{
if (! enabled_b) {
(void)dmalloc_startup(NULL /* no options string */);
}
return _dmalloc_iter_c;
}
/*
* unsigned long dmalloc_memory_allocated
*
* DESCRIPTION:
*
* Return the total number of bytes allocated by the program so far.
*
* RETURNS:
*
* Total number of bytes allocated by the program so far.
*
* ARGUMENTS:
*
* None.
*/
unsigned long dmalloc_memory_allocated(void)
{
if (! enabled_b) {
(void)dmalloc_startup(NULL /* no options string */);
}
return _dmalloc_alloc_total;
}
/*
* unsigned int dmalloc_page_size
*
* DESCRIPTION:
*
* Get the page-size being used by dmalloc.
*
* RETURNS:
*
* Page size.
*
* ARGUMENTS:
*
* None.
*/
unsigned int dmalloc_page_size(void)
{
if (! enabled_b) {
(void)dmalloc_startup(NULL /* no options string */);
}
return BLOCK_SIZE;
}
/*
* unsigned long dmalloc_count_changed
*
* DESCRIPTION:
*
* Count the changed memory bytes since a particular mark.
*
* RETURNS:
*
* Number of bytes since mark.
*
* ARGUMENTS:
*
* mark -> Sets the point from which to count the changed memory. You
* can use dmalloc_mark to get the current mark value which can later
* be passed in here. Pass in 0 to report on the unfreed memory since
* the program started.
*
* not_freed_b -> Set to 1 to count the new pointers that are non-freed.
*
* free_b -> Set to 1 to count the new pointers that are freed.
*/
unsigned long dmalloc_count_changed(const unsigned long mark,
const int not_freed_b, const int free_b)
{
unsigned long mem_count;
if (! dmalloc_in(DMALLOC_DEFAULT_FILE, DMALLOC_DEFAULT_LINE, 1)) {
return 0;
}
if (! BIT_IS_SET(_dmalloc_flags, DEBUG_LOG_TRANS)) {
dmalloc_message("counting the unfreed memory since mark %lu", mark);
}
mem_count = _dmalloc_chunk_count_changed(mark, not_freed_b, free_b);
dmalloc_out();
return mem_count;
}
/*
* void dmalloc_log_status
*
* DESCRIPTION:
*
* Dump dmalloc statistics to logfile.
*
* RETURNS:
*
* None.
*
* ARGUMENTS:
*
* None.
*/
void dmalloc_log_stats(void)
{
if (! dmalloc_in(DMALLOC_DEFAULT_FILE, DMALLOC_DEFAULT_LINE, 1)) {
return;
}
_dmalloc_chunk_log_stats();
dmalloc_out();
}
/*
* void dmalloc_log_unfreed
*
* DESCRIPTION:
*
* Dump unfreed-memory info to logfile.
*
* RETURNS:
*
* None.
*
* ARGUMENTS:
*
* None.
*/
void dmalloc_log_unfreed(void)
{
if (! dmalloc_in(DMALLOC_DEFAULT_FILE, DMALLOC_DEFAULT_LINE, 1)) {
return;
}
if (! BIT_IS_SET(_dmalloc_flags, DEBUG_LOG_TRANS)) {
dmalloc_message("dumping the unfreed pointers");
}
/*
* to log the non-free we are interested in the pointers currently
* being used
*/
_dmalloc_chunk_log_changed(0, 1, 0,
#if DUMP_UNFREED_SUMMARY_ONLY
0
#else
1
#endif
);
dmalloc_out();
}
/*
* void dmalloc_log_changed
*
* DESCRIPTION:
*
* Dump the pointers that have changed since a point in time.
*
* RETURNS:
*
* mark -> Sets the point to compare against. You can use
* dmalloc_mark to get the current mark value which can later be
* passed in here. Pass in 0 to log what has changed since the
* program started.
*
* not_freed_b -> Set to 1 to log the new pointers that are non-freed.
*
* free_b -> Set to 1 to log the new pointers that are freed.
*
* details_b -> Set to 1 to dump the individual pointers that have
* changed otherwise the summaries will be logged.
*/
void dmalloc_log_changed(const unsigned long mark, const int not_freed_b,
const int free_b, const int details_b)
{
if (! dmalloc_in(DMALLOC_DEFAULT_FILE, DMALLOC_DEFAULT_LINE, 1)) {
return;
}
_dmalloc_chunk_log_changed(mark, not_freed_b, free_b, details_b);
dmalloc_out();
}
/*
* void dmalloc_vmessage
*
* DESCRIPTION:
*
* Message writer with vprintf like arguments which adds a line to the
* dmalloc logfile.
*
* RETURNS:
*
* None.
*
* ARGUMENTS:
*
* format -> Printf-style format statement.
*
* args -> Already converted pointer to a stdarg list.
*/
void dmalloc_vmessage(const char *format, va_list args)
{
_dmalloc_vmessage(format, args);
}
/*
* void dmalloc_message
*
* DESCRIPTION:
*
* Message writer with printf like arguments which adds a line to the
* dmalloc logfile.
*
* RETURNS:
*
* None.
*
* ARGUMENTS:
*
* format -> Printf-style format statement.
*
* ... -> Variable argument list.
*/
void dmalloc_message(const char *format, ...)
/* __attribute__ ((format (printf, 1, 2))) */
{
va_list args;
va_start(args, format);
_dmalloc_vmessage(format, args);
va_end(args);
}
/*
* void dmalloc_get_stats
*
* DESCRIPTION:
*
* Return a number of statistics about the current heap.
*
* RETURNS:
*
* None.
*
* ARGUMENTS:
*
* heap_low_p <- Pointer to pointer which, if not 0L, will be set to
* the low address in the heap.
*
* heap_high_p <- Pointer to pointer which, if not 0L, will be set to
* the high address in the heap.
*
* total_space_p <- Pointer to an unsigned long which, if not 0L, will
* be set to the total space managed by the library including user
* space, administrative space, and overhead.
*
* user_space_p <- Pointer to an unsigned long which, if not 0L, will
* be set to the space given to the user process (allocated and free).
*
* current_allocated_p <- Pointer to an unsigned long which, if not
* 0L, will be set to the current allocated space given to the user
* process.
*
* current_pnt_np <- Pointer to an unsigned long which, if not 0L,
* will be set to the current number of pointers allocated by the user
* process.
*
* max_allocated_p <- Pointer to an unsigned long which, if not 0L,
* will be set to the maximum allocated space given to the user
* process.
*
* max_pnt_np <- Pointer to an unsigned long which, if not 0L, will be
* set to the maximum number of pointers allocated by the user
* process.
*
* max_one_p <- Pointer to an unsigned long which, if not 0L, will be
* set to the maximum allocated with 1 call by the user process.
*/
void dmalloc_get_stats(DMALLOC_PNT *heap_low_p,
DMALLOC_PNT *heap_high_p,
unsigned long *total_space_p,
unsigned long *user_space_p,
unsigned long *current_allocated_p,
unsigned long *current_pnt_np,
unsigned long *max_allocated_p,
unsigned long *max_pnt_np,
unsigned long *max_one_p)
{
_dmalloc_chunk_get_stats(heap_low_p, heap_high_p, total_space_p,
user_space_p, current_allocated_p, current_pnt_np,
max_allocated_p, max_pnt_np, max_one_p);
}
/*
* const char *dmalloc_strerror
*
* DESCRIPTION:
*
* Convert a dmalloc error code into its string equivalent.
*
* RETURNS:
*
* Success - String version of the error
*
* Failure - The string "unknown error"
*
* ARGUMENTS:
*
* error_num -> Error number we are converting.
*/
const char *dmalloc_strerror(const int error_num)
{
error_str_t *err_p;
/* should not dmalloc_in here because _dmalloc_error calls this */
for (err_p = error_list; err_p->es_error != 0; err_p++) {
if (err_p->es_error == error_num) {
return err_p->es_string;
}
}
return INVALID_ERROR;
}
|