cpython: 4e43e5b3f7fc (original) (raw)

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -9,6 +9,10 @@ What's New in Python 2.7.7? Core and Builtins ----------------- +- Issue #20494: Ensure that free()d memory arenas are really released on POSIX

--- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c @@ -2,6 +2,13 @@ #ifdef WITH_PYMALLOC +#ifdef HAVE_MMAP

+#endif + #ifdef WITH_VALGRIND #include <valgrind/valgrind.h> @@ -75,7 +82,8 @@ static int running_on_valgrind = -1;

#define NB_SMALL_SIZE_CLASSES (SMALL_REQUEST_THRESHOLD / ALIGNMENT) / @@ -174,15 +186,15 @@ static int running_on_valgrind = -1; /

#define ARENA_SIZE (256 << 10) /* 256KB / @@ -440,6 +452,9 @@ static poolp usedpools[2 * ((NB_SMALL_SI , PT(48), PT(49), PT(50), PT(51), PT(52), PT(53), PT(54), PT(55) #if NB_SMALL_SIZE_CLASSES > 56 , PT(56), PT(57), PT(58), PT(59), PT(60), PT(61), PT(62), PT(63) +#if NB_SMALL_SIZE_CLASSES > 64 +#error "NB_SMALL_SIZE_CLASSES should be less than 64" +#endif / NB_SMALL_SIZE_CLASSES > 64 / #endif / NB_SMALL_SIZE_CLASSES > 56 / #endif / NB_SMALL_SIZE_CLASSES > 48 / #endif / NB_SMALL_SIZE_CLASSES > 40 */ @@ -577,7 +592,12 @@ new_arena(void) arenaobj = unused_arena_objects; unused_arena_objects = arenaobj->nextarena; assert(arenaobj->address == 0); +#ifdef ARENAS_USE_MMAP

+#else arenaobj->address = (uptr)malloc(ARENA_SIZE); +#endif if (arenaobj->address == 0) { /* The allocation failed: return NULL after putting the * arenaobj back. @@ -1054,7 +1074,11 @@ PyObject_Free(void p) unused_arena_objects = ao; / Free the entire arena. */ +#ifdef ARENAS_USE_MMAP

+#else free((void )ao->address); +#endif ao->address = 0; / mark unassociated */ --narenas_currently_allocated;

--- a/configure +++ b/configure @@ -10164,7 +10164,7 @@ for ac_func in alarm setitimer getitimer clock confstr ctermid execv fchmod fchown fork fpathconf ftime ftruncate [](#l3.4) gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid [](#l3.5) getpriority getresuid getresgid getpwent getspnam getspent getsid getwd [](#l3.6)

--- a/configure.ac +++ b/configure.ac @@ -2905,7 +2905,7 @@ AC_CHECK_FUNCS(alarm setitimer getitimer clock confstr ctermid execv fchmod fchown fork fpathconf ftime ftruncate [](#l4.4) gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid [](#l4.5) getpriority getresuid getresgid getpwent getspnam getspent getsid getwd [](#l4.6)

--- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -475,6 +475,9 @@ /* Define to 1 if you have the mktime' function. */[](#l5.4) #undef HAVE_MKTIME[](#l5.5) [](#l5.6) +/* Define to 1 if you have the mmap' function. / +#undef HAVE_MMAP + / Define to 1 if you have the `mremap' function. */ #undef HAVE_MREMAP