blob: d2d212b25d7ec6aa02aed416b59b9c1083055525 [file] [log] [blame]
Stéphane Wirtelcbb64842019-05-17 11:55:34 +02001.. highlight:: c
Georg Brandl116aa622007-08-15 14:28:22 +00002
3
4.. _memory:
5
6*****************
7Memory Management
8*****************
9
10.. sectionauthor:: Vladimir Marangozov <Vladimir.Marangozov@inrialpes.fr>
11
12
13
14.. _memoryoverview:
15
16Overview
17========
18
19Memory management in Python involves a private heap containing all Python
20objects and data structures. The management of this private heap is ensured
21internally by the *Python memory manager*. The Python memory manager has
22different components which deal with various dynamic storage management aspects,
23like sharing, segmentation, preallocation or caching.
24
25At the lowest level, a raw memory allocator ensures that there is enough room in
26the private heap for storing all Python-related data by interacting with the
27memory manager of the operating system. On top of the raw memory allocator,
28several object-specific allocators operate on the same heap and implement
29distinct memory management policies adapted to the peculiarities of every object
30type. For example, integer objects are managed differently within the heap than
31strings, tuples or dictionaries because integers imply different storage
32requirements and speed/space tradeoffs. The Python memory manager thus delegates
33some of the work to the object-specific allocators, but ensures that the latter
34operate within the bounds of the private heap.
35
36It is important to understand that the management of the Python heap is
37performed by the interpreter itself and that the user has no control over it,
Andrés Delfino50924392018-06-18 01:34:30 -030038even if they regularly manipulate object pointers to memory blocks inside that
Georg Brandl116aa622007-08-15 14:28:22 +000039heap. The allocation of heap space for Python objects and other internal
40buffers is performed on demand by the Python memory manager through the Python/C
41API functions listed in this document.
42
43.. index::
44 single: malloc()
45 single: calloc()
46 single: realloc()
47 single: free()
48
49To avoid memory corruption, extension writers should never try to operate on
Georg Brandl60203b42010-10-06 10:11:56 +000050Python objects with the functions exported by the C library: :c:func:`malloc`,
51:c:func:`calloc`, :c:func:`realloc` and :c:func:`free`. This will result in mixed
Georg Brandl116aa622007-08-15 14:28:22 +000052calls between the C allocator and the Python memory manager with fatal
53consequences, because they implement different algorithms and operate on
54different heaps. However, one may safely allocate and release memory blocks
55with the C library allocator for individual purposes, as shown in the following
56example::
57
58 PyObject *res;
59 char *buf = (char *) malloc(BUFSIZ); /* for I/O */
60
61 if (buf == NULL)
62 return PyErr_NoMemory();
63 ...Do some I/O operation involving buf...
Gregory P. Smith4b52ae82013-03-22 13:43:30 -070064 res = PyBytes_FromString(buf);
Georg Brandl116aa622007-08-15 14:28:22 +000065 free(buf); /* malloc'ed */
66 return res;
67
68In this example, the memory request for the I/O buffer is handled by the C
69library allocator. The Python memory manager is involved only in the allocation
Hai Shi39a5d172019-07-05 23:03:13 -050070of the bytes object returned as a result.
Georg Brandl116aa622007-08-15 14:28:22 +000071
72In most situations, however, it is recommended to allocate memory from the
73Python heap specifically because the latter is under control of the Python
74memory manager. For example, this is required when the interpreter is extended
75with new object types written in C. Another reason for using the Python heap is
76the desire to *inform* the Python memory manager about the memory needs of the
77extension module. Even when the requested memory is used exclusively for
78internal, highly-specific purposes, delegating all memory requests to the Python
79memory manager causes the interpreter to have a more accurate image of its
80memory footprint as a whole. Consequently, under certain circumstances, the
81Python memory manager may or may not trigger appropriate actions, like garbage
82collection, memory compaction or other preventive procedures. Note that by using
83the C library allocator as shown in the previous example, the allocated memory
84for the I/O buffer escapes completely the Python memory manager.
85
Victor Stinner29bf27f2016-03-09 14:49:52 +010086.. seealso::
87
Victor Stinner34be807c2016-03-14 12:04:26 +010088 The :envvar:`PYTHONMALLOC` environment variable can be used to configure
89 the memory allocators used by Python.
90
Victor Stinner29bf27f2016-03-09 14:49:52 +010091 The :envvar:`PYTHONMALLOCSTATS` environment variable can be used to print
Victor Stinner34be807c2016-03-14 12:04:26 +010092 statistics of the :ref:`pymalloc memory allocator <pymalloc>` every time a
93 new pymalloc object arena is created, and on shutdown.
Victor Stinner29bf27f2016-03-09 14:49:52 +010094
Pablo Galindobc450f92021-01-18 22:20:57 +000095Allocator Domains
96=================
97
98All allocating functions belong to one of three different "domains" (see also
Pablo Galindob0478d72021-02-02 20:43:11 +000099:c:type:`PyMemAllocatorDomain`). These domains represent different allocation
Pablo Galindobc450f92021-01-18 22:20:57 +0000100strategies and are optimized for different purposes. The specific details on
101how every domain allocates memory or what internal functions each domain calls
102is considered an implementation detail, but for debugging purposes a simplified
103table can be found at :ref:`here <default-memory-allocators>`. There is no hard
104requirement to use the memory returned by the allocation functions belonging to
105a given domain for only the purposes hinted by that domain (although this is the
106recommended practice). For example, one could use the memory returned by
107:c:func:`PyMem_RawMalloc` for allocating Python objects or the memory returned
108by :c:func:`PyObject_Malloc` for allocating memory for buffers.
109
110The three allocation domains are:
111
112* Raw domain: intended for allocating memory for general-purpose memory
113 buffers where the allocation *must* go to the system allocator or where the
114 allocator can operate without the :term:`GIL`. The memory is requested directly
115 to the system.
116
117* "Mem" domain: intended for allocating memory for Python buffers and
118 general-purpose memory buffers where the allocation must be performed with
119 the :term:`GIL` held. The memory is taken from the Python private heap.
120
121* Object domain: intended for allocating memory belonging to Python objects. The
122 memory is taken from the Python private heap.
123
124When freeing memory previously allocated by the allocating functions belonging to a
125given domain,the matching specific deallocating functions must be used. For example,
126:c:func:`PyMem_Free` must be used to free memory allocated using :c:func:`PyMem_Malloc`.
Georg Brandl116aa622007-08-15 14:28:22 +0000127
Victor Stinner0507bf52013-07-07 02:05:46 +0200128Raw Memory Interface
129====================
130
131The following function sets are wrappers to the system allocator. These
132functions are thread-safe, the :term:`GIL <global interpreter lock>` does not
133need to be held.
134
Victor Stinner5d39e042017-11-29 17:20:38 +0100135The :ref:`default raw memory allocator <default-memory-allocators>` uses
136the following functions: :c:func:`malloc`, :c:func:`calloc`, :c:func:`realloc`
137and :c:func:`free`; call ``malloc(1)`` (or ``calloc(1, 1)``) when requesting
138zero bytes.
Victor Stinner0507bf52013-07-07 02:05:46 +0200139
140.. versionadded:: 3.4
141
142.. c:function:: void* PyMem_RawMalloc(size_t n)
143
Victor Stinner474652f2020-08-13 22:11:50 +0200144 Allocates *n* bytes and returns a pointer of type :c:type:`void*` to the
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200145 allocated memory, or ``NULL`` if the request fails.
Victor Stinner29bf27f2016-03-09 14:49:52 +0100146
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200147 Requesting zero bytes returns a distinct non-``NULL`` pointer if possible, as
Victor Stinner29bf27f2016-03-09 14:49:52 +0100148 if ``PyMem_RawMalloc(1)`` had been called instead. The memory will not have
Victor Stinner0507bf52013-07-07 02:05:46 +0200149 been initialized in any way.
150
151
Victor Stinnerdb067af2014-05-02 22:31:14 +0200152.. c:function:: void* PyMem_RawCalloc(size_t nelem, size_t elsize)
153
154 Allocates *nelem* elements each whose size in bytes is *elsize* and returns
Victor Stinner474652f2020-08-13 22:11:50 +0200155 a pointer of type :c:type:`void*` to the allocated memory, or ``NULL`` if the
Victor Stinner29bf27f2016-03-09 14:49:52 +0100156 request fails. The memory is initialized to zeros.
157
158 Requesting zero elements or elements of size zero bytes returns a distinct
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200159 non-``NULL`` pointer if possible, as if ``PyMem_RawCalloc(1, 1)`` had been
Victor Stinner29bf27f2016-03-09 14:49:52 +0100160 called instead.
Victor Stinnerdb067af2014-05-02 22:31:14 +0200161
162 .. versionadded:: 3.5
163
164
Victor Stinner0507bf52013-07-07 02:05:46 +0200165.. c:function:: void* PyMem_RawRealloc(void *p, size_t n)
166
167 Resizes the memory block pointed to by *p* to *n* bytes. The contents will
Victor Stinner29bf27f2016-03-09 14:49:52 +0100168 be unchanged to the minimum of the old and the new sizes.
169
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200170 If *p* is ``NULL``, the call is equivalent to ``PyMem_RawMalloc(n)``; else if
Victor Stinner29bf27f2016-03-09 14:49:52 +0100171 *n* is equal to zero, the memory block is resized but is not freed, and the
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200172 returned pointer is non-``NULL``.
Victor Stinner29bf27f2016-03-09 14:49:52 +0100173
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200174 Unless *p* is ``NULL``, it must have been returned by a previous call to
Victor Stinner29bf27f2016-03-09 14:49:52 +0100175 :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawRealloc` or
176 :c:func:`PyMem_RawCalloc`.
177
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200178 If the request fails, :c:func:`PyMem_RawRealloc` returns ``NULL`` and *p*
Victor Stinner29bf27f2016-03-09 14:49:52 +0100179 remains a valid pointer to the previous memory area.
Victor Stinner0507bf52013-07-07 02:05:46 +0200180
181
182.. c:function:: void PyMem_RawFree(void *p)
183
184 Frees the memory block pointed to by *p*, which must have been returned by a
Victor Stinner29bf27f2016-03-09 14:49:52 +0100185 previous call to :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawRealloc` or
Victor Stinnerec2cbdd2017-10-31 09:37:25 -0700186 :c:func:`PyMem_RawCalloc`. Otherwise, or if ``PyMem_RawFree(p)`` has been
Victor Stinner29bf27f2016-03-09 14:49:52 +0100187 called before, undefined behavior occurs.
188
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200189 If *p* is ``NULL``, no operation is performed.
Victor Stinner0507bf52013-07-07 02:05:46 +0200190
191
Georg Brandl116aa622007-08-15 14:28:22 +0000192.. _memoryinterface:
193
194Memory Interface
195================
196
197The following function sets, modeled after the ANSI C standard, but specifying
198behavior when requesting zero bytes, are available for allocating and releasing
Victor Stinner0507bf52013-07-07 02:05:46 +0200199memory from the Python heap.
Georg Brandl116aa622007-08-15 14:28:22 +0000200
Victor Stinner5d39e042017-11-29 17:20:38 +0100201The :ref:`default memory allocator <default-memory-allocators>` uses the
202:ref:`pymalloc memory allocator <pymalloc>`.
Victor Stinner0507bf52013-07-07 02:05:46 +0200203
204.. warning::
205
206 The :term:`GIL <global interpreter lock>` must be held when using these
207 functions.
Georg Brandl116aa622007-08-15 14:28:22 +0000208
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200209.. versionchanged:: 3.6
210
211 The default allocator is now pymalloc instead of system :c:func:`malloc`.
212
Georg Brandl60203b42010-10-06 10:11:56 +0000213.. c:function:: void* PyMem_Malloc(size_t n)
Georg Brandl116aa622007-08-15 14:28:22 +0000214
Victor Stinner474652f2020-08-13 22:11:50 +0200215 Allocates *n* bytes and returns a pointer of type :c:type:`void*` to the
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200216 allocated memory, or ``NULL`` if the request fails.
Victor Stinner29bf27f2016-03-09 14:49:52 +0100217
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200218 Requesting zero bytes returns a distinct non-``NULL`` pointer if possible, as
Victor Stinner29bf27f2016-03-09 14:49:52 +0100219 if ``PyMem_Malloc(1)`` had been called instead. The memory will not have
220 been initialized in any way.
Georg Brandl116aa622007-08-15 14:28:22 +0000221
222
Victor Stinnerdb067af2014-05-02 22:31:14 +0200223.. c:function:: void* PyMem_Calloc(size_t nelem, size_t elsize)
224
225 Allocates *nelem* elements each whose size in bytes is *elsize* and returns
Victor Stinner474652f2020-08-13 22:11:50 +0200226 a pointer of type :c:type:`void*` to the allocated memory, or ``NULL`` if the
Victor Stinner29bf27f2016-03-09 14:49:52 +0100227 request fails. The memory is initialized to zeros.
228
229 Requesting zero elements or elements of size zero bytes returns a distinct
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200230 non-``NULL`` pointer if possible, as if ``PyMem_Calloc(1, 1)`` had been called
Victor Stinner29bf27f2016-03-09 14:49:52 +0100231 instead.
Victor Stinnerdb067af2014-05-02 22:31:14 +0200232
233 .. versionadded:: 3.5
234
235
Georg Brandl60203b42010-10-06 10:11:56 +0000236.. c:function:: void* PyMem_Realloc(void *p, size_t n)
Georg Brandl116aa622007-08-15 14:28:22 +0000237
238 Resizes the memory block pointed to by *p* to *n* bytes. The contents will be
Victor Stinner29bf27f2016-03-09 14:49:52 +0100239 unchanged to the minimum of the old and the new sizes.
240
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200241 If *p* is ``NULL``, the call is equivalent to ``PyMem_Malloc(n)``; else if *n*
Victor Stinner29bf27f2016-03-09 14:49:52 +0100242 is equal to zero, the memory block is resized but is not freed, and the
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200243 returned pointer is non-``NULL``.
Victor Stinner29bf27f2016-03-09 14:49:52 +0100244
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200245 Unless *p* is ``NULL``, it must have been returned by a previous call to
Victor Stinner29bf27f2016-03-09 14:49:52 +0100246 :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc` or :c:func:`PyMem_Calloc`.
247
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200248 If the request fails, :c:func:`PyMem_Realloc` returns ``NULL`` and *p* remains
Victor Stinner29bf27f2016-03-09 14:49:52 +0100249 a valid pointer to the previous memory area.
Georg Brandl116aa622007-08-15 14:28:22 +0000250
251
Georg Brandl60203b42010-10-06 10:11:56 +0000252.. c:function:: void PyMem_Free(void *p)
Georg Brandl116aa622007-08-15 14:28:22 +0000253
254 Frees the memory block pointed to by *p*, which must have been returned by a
Victor Stinner29bf27f2016-03-09 14:49:52 +0100255 previous call to :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc` or
256 :c:func:`PyMem_Calloc`. Otherwise, or if ``PyMem_Free(p)`` has been called
257 before, undefined behavior occurs.
258
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200259 If *p* is ``NULL``, no operation is performed.
Georg Brandl116aa622007-08-15 14:28:22 +0000260
261The following type-oriented macros are provided for convenience. Note that
262*TYPE* refers to any C type.
263
264
Georg Brandl60203b42010-10-06 10:11:56 +0000265.. c:function:: TYPE* PyMem_New(TYPE, size_t n)
Georg Brandl116aa622007-08-15 14:28:22 +0000266
Georg Brandl60203b42010-10-06 10:11:56 +0000267 Same as :c:func:`PyMem_Malloc`, but allocates ``(n * sizeof(TYPE))`` bytes of
Victor Stinner474652f2020-08-13 22:11:50 +0200268 memory. Returns a pointer cast to :c:type:`TYPE*`. The memory will not have
Georg Brandl116aa622007-08-15 14:28:22 +0000269 been initialized in any way.
270
271
Georg Brandl60203b42010-10-06 10:11:56 +0000272.. c:function:: TYPE* PyMem_Resize(void *p, TYPE, size_t n)
Georg Brandl116aa622007-08-15 14:28:22 +0000273
Georg Brandl60203b42010-10-06 10:11:56 +0000274 Same as :c:func:`PyMem_Realloc`, but the memory block is resized to ``(n *
Victor Stinner474652f2020-08-13 22:11:50 +0200275 sizeof(TYPE))`` bytes. Returns a pointer cast to :c:type:`TYPE*`. On return,
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200276 *p* will be a pointer to the new memory area, or ``NULL`` in the event of
Victor Stinner29bf27f2016-03-09 14:49:52 +0100277 failure.
278
279 This is a C preprocessor macro; *p* is always reassigned. Save the original
280 value of *p* to avoid losing memory when handling errors.
Georg Brandl116aa622007-08-15 14:28:22 +0000281
282
Georg Brandl60203b42010-10-06 10:11:56 +0000283.. c:function:: void PyMem_Del(void *p)
Georg Brandl116aa622007-08-15 14:28:22 +0000284
Georg Brandl60203b42010-10-06 10:11:56 +0000285 Same as :c:func:`PyMem_Free`.
Georg Brandl116aa622007-08-15 14:28:22 +0000286
287In addition, the following macro sets are provided for calling the Python memory
288allocator directly, without involving the C API functions listed above. However,
289note that their use does not preserve binary compatibility across Python
290versions and is therefore deprecated in extension modules.
291
Victor Stinner29bf27f2016-03-09 14:49:52 +0100292* ``PyMem_MALLOC(size)``
293* ``PyMem_NEW(type, size)``
294* ``PyMem_REALLOC(ptr, size)``
295* ``PyMem_RESIZE(ptr, type, size)``
296* ``PyMem_FREE(ptr)``
297* ``PyMem_DEL(ptr)``
Georg Brandl116aa622007-08-15 14:28:22 +0000298
299
Victor Stinnerec2cbdd2017-10-31 09:37:25 -0700300Object allocators
301=================
302
303The following function sets, modeled after the ANSI C standard, but specifying
304behavior when requesting zero bytes, are available for allocating and releasing
305memory from the Python heap.
306
Pablo Galindoe485be52021-01-19 13:09:06 +0000307.. note::
308 There is no guarantee that the memory returned by these allocators can be
309 succesfully casted to a Python object when intercepting the allocating
310 functions in this domain by the methods described in
311 the :ref:`Customize Memory Allocators <customize-memory-allocators>` section.
312
Victor Stinner5d39e042017-11-29 17:20:38 +0100313The :ref:`default object allocator <default-memory-allocators>` uses the
314:ref:`pymalloc memory allocator <pymalloc>`.
Victor Stinnerec2cbdd2017-10-31 09:37:25 -0700315
316.. warning::
317
318 The :term:`GIL <global interpreter lock>` must be held when using these
319 functions.
320
321.. c:function:: void* PyObject_Malloc(size_t n)
322
Victor Stinner474652f2020-08-13 22:11:50 +0200323 Allocates *n* bytes and returns a pointer of type :c:type:`void*` to the
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200324 allocated memory, or ``NULL`` if the request fails.
Victor Stinnerec2cbdd2017-10-31 09:37:25 -0700325
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200326 Requesting zero bytes returns a distinct non-``NULL`` pointer if possible, as
Victor Stinnerec2cbdd2017-10-31 09:37:25 -0700327 if ``PyObject_Malloc(1)`` had been called instead. The memory will not have
328 been initialized in any way.
329
330
331.. c:function:: void* PyObject_Calloc(size_t nelem, size_t elsize)
332
333 Allocates *nelem* elements each whose size in bytes is *elsize* and returns
Victor Stinner474652f2020-08-13 22:11:50 +0200334 a pointer of type :c:type:`void*` to the allocated memory, or ``NULL`` if the
Victor Stinnerec2cbdd2017-10-31 09:37:25 -0700335 request fails. The memory is initialized to zeros.
336
337 Requesting zero elements or elements of size zero bytes returns a distinct
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200338 non-``NULL`` pointer if possible, as if ``PyObject_Calloc(1, 1)`` had been called
Victor Stinnerec2cbdd2017-10-31 09:37:25 -0700339 instead.
340
341 .. versionadded:: 3.5
342
343
344.. c:function:: void* PyObject_Realloc(void *p, size_t n)
345
346 Resizes the memory block pointed to by *p* to *n* bytes. The contents will be
347 unchanged to the minimum of the old and the new sizes.
348
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200349 If *p* is ``NULL``, the call is equivalent to ``PyObject_Malloc(n)``; else if *n*
Victor Stinnerec2cbdd2017-10-31 09:37:25 -0700350 is equal to zero, the memory block is resized but is not freed, and the
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200351 returned pointer is non-``NULL``.
Victor Stinnerec2cbdd2017-10-31 09:37:25 -0700352
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200353 Unless *p* is ``NULL``, it must have been returned by a previous call to
Victor Stinnerec2cbdd2017-10-31 09:37:25 -0700354 :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or :c:func:`PyObject_Calloc`.
355
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200356 If the request fails, :c:func:`PyObject_Realloc` returns ``NULL`` and *p* remains
Victor Stinnerec2cbdd2017-10-31 09:37:25 -0700357 a valid pointer to the previous memory area.
358
359
360.. c:function:: void PyObject_Free(void *p)
361
362 Frees the memory block pointed to by *p*, which must have been returned by a
363 previous call to :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or
364 :c:func:`PyObject_Calloc`. Otherwise, or if ``PyObject_Free(p)`` has been called
365 before, undefined behavior occurs.
366
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200367 If *p* is ``NULL``, no operation is performed.
Victor Stinnerec2cbdd2017-10-31 09:37:25 -0700368
369
Victor Stinner5d39e042017-11-29 17:20:38 +0100370.. _default-memory-allocators:
371
372Default Memory Allocators
373=========================
374
375Default memory allocators:
376
377=============================== ==================== ================== ===================== ====================
378Configuration Name PyMem_RawMalloc PyMem_Malloc PyObject_Malloc
379=============================== ==================== ================== ===================== ====================
380Release build ``"pymalloc"`` ``malloc`` ``pymalloc`` ``pymalloc``
381Debug build ``"pymalloc_debug"`` ``malloc`` + debug ``pymalloc`` + debug ``pymalloc`` + debug
382Release build, without pymalloc ``"malloc"`` ``malloc`` ``malloc`` ``malloc``
Kevin Adlera4070042018-11-30 01:42:47 -0600383Debug build, without pymalloc ``"malloc_debug"`` ``malloc`` + debug ``malloc`` + debug ``malloc`` + debug
Victor Stinner5d39e042017-11-29 17:20:38 +0100384=============================== ==================== ================== ===================== ====================
385
386Legend:
387
388* Name: value for :envvar:`PYTHONMALLOC` environment variable
389* ``malloc``: system allocators from the standard C library, C functions:
390 :c:func:`malloc`, :c:func:`calloc`, :c:func:`realloc` and :c:func:`free`
391* ``pymalloc``: :ref:`pymalloc memory allocator <pymalloc>`
392* "+ debug": with debug hooks installed by :c:func:`PyMem_SetupDebugHooks`
393
Pablo Galindoe485be52021-01-19 13:09:06 +0000394.. _customize-memory-allocators:
Victor Stinner5d39e042017-11-29 17:20:38 +0100395
Victor Stinner0507bf52013-07-07 02:05:46 +0200396Customize Memory Allocators
397===========================
398
399.. versionadded:: 3.4
400
Victor Stinnerd8f0d922014-06-02 21:57:10 +0200401.. c:type:: PyMemAllocatorEx
Victor Stinner0507bf52013-07-07 02:05:46 +0200402
403 Structure used to describe a memory block allocator. The structure has
404 four fields:
405
406 +----------------------------------------------------------+---------------------------------------+
407 | Field | Meaning |
408 +==========================================================+=======================================+
409 | ``void *ctx`` | user context passed as first argument |
410 +----------------------------------------------------------+---------------------------------------+
411 | ``void* malloc(void *ctx, size_t size)`` | allocate a memory block |
412 +----------------------------------------------------------+---------------------------------------+
Victor Stinnerdb067af2014-05-02 22:31:14 +0200413 | ``void* calloc(void *ctx, size_t nelem, size_t elsize)`` | allocate a memory block initialized |
414 | | with zeros |
415 +----------------------------------------------------------+---------------------------------------+
Victor Stinner0507bf52013-07-07 02:05:46 +0200416 | ``void* realloc(void *ctx, void *ptr, size_t new_size)`` | allocate or resize a memory block |
417 +----------------------------------------------------------+---------------------------------------+
418 | ``void free(void *ctx, void *ptr)`` | free a memory block |
419 +----------------------------------------------------------+---------------------------------------+
420
Victor Stinnerdb067af2014-05-02 22:31:14 +0200421 .. versionchanged:: 3.5
Victor Stinnerd8f0d922014-06-02 21:57:10 +0200422 The :c:type:`PyMemAllocator` structure was renamed to
423 :c:type:`PyMemAllocatorEx` and a new ``calloc`` field was added.
424
Victor Stinnerdb067af2014-05-02 22:31:14 +0200425
Victor Stinner0507bf52013-07-07 02:05:46 +0200426.. c:type:: PyMemAllocatorDomain
427
428 Enum used to identify an allocator domain. Domains:
429
Victor Stinner474652f2020-08-13 22:11:50 +0200430 .. c:macro:: PYMEM_DOMAIN_RAW
Victor Stinner0507bf52013-07-07 02:05:46 +0200431
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200432 Functions:
433
434 * :c:func:`PyMem_RawMalloc`
435 * :c:func:`PyMem_RawRealloc`
436 * :c:func:`PyMem_RawCalloc`
437 * :c:func:`PyMem_RawFree`
438
Victor Stinner474652f2020-08-13 22:11:50 +0200439 .. c:macro:: PYMEM_DOMAIN_MEM
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200440
441 Functions:
442
443 * :c:func:`PyMem_Malloc`,
444 * :c:func:`PyMem_Realloc`
445 * :c:func:`PyMem_Calloc`
446 * :c:func:`PyMem_Free`
447
Victor Stinner474652f2020-08-13 22:11:50 +0200448 .. c:macro:: PYMEM_DOMAIN_OBJ
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200449
450 Functions:
451
452 * :c:func:`PyObject_Malloc`
453 * :c:func:`PyObject_Realloc`
454 * :c:func:`PyObject_Calloc`
455 * :c:func:`PyObject_Free`
Victor Stinner0507bf52013-07-07 02:05:46 +0200456
Victor Stinnerd8f0d922014-06-02 21:57:10 +0200457.. c:function:: void PyMem_GetAllocator(PyMemAllocatorDomain domain, PyMemAllocatorEx *allocator)
Victor Stinner0507bf52013-07-07 02:05:46 +0200458
459 Get the memory block allocator of the specified domain.
460
461
Victor Stinnerd8f0d922014-06-02 21:57:10 +0200462.. c:function:: void PyMem_SetAllocator(PyMemAllocatorDomain domain, PyMemAllocatorEx *allocator)
Victor Stinner0507bf52013-07-07 02:05:46 +0200463
464 Set the memory block allocator of the specified domain.
465
Serhiy Storchakae835b312019-10-30 21:37:16 +0200466 The new allocator must return a distinct non-``NULL`` pointer when requesting
Victor Stinner0507bf52013-07-07 02:05:46 +0200467 zero bytes.
468
469 For the :c:data:`PYMEM_DOMAIN_RAW` domain, the allocator must be
470 thread-safe: the :term:`GIL <global interpreter lock>` is not held when the
471 allocator is called.
472
473 If the new allocator is not a hook (does not call the previous allocator),
474 the :c:func:`PyMem_SetupDebugHooks` function must be called to reinstall the
475 debug hooks on top on the new allocator.
476
477
478.. c:function:: void PyMem_SetupDebugHooks(void)
479
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200480 Setup hooks to detect bugs in the Python memory allocator functions.
Victor Stinner0507bf52013-07-07 02:05:46 +0200481
Victor Stinner4c409be2019-04-11 13:01:15 +0200482 Newly allocated memory is filled with the byte ``0xCD`` (``CLEANBYTE``),
483 freed memory is filled with the byte ``0xDD`` (``DEADBYTE``). Memory blocks
484 are surrounded by "forbidden bytes" (``FORBIDDENBYTE``: byte ``0xFD``).
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200485
486 Runtime checks:
Victor Stinner0507bf52013-07-07 02:05:46 +0200487
Victor Stinnerc4aec362016-03-14 22:26:53 +0100488 - Detect API violations, ex: :c:func:`PyObject_Free` called on a buffer
Victor Stinner0507bf52013-07-07 02:05:46 +0200489 allocated by :c:func:`PyMem_Malloc`
Victor Stinnerc4aec362016-03-14 22:26:53 +0100490 - Detect write before the start of the buffer (buffer underflow)
491 - Detect write after the end of the buffer (buffer overflow)
492 - Check that the :term:`GIL <global interpreter lock>` is held when
Victor Stinnerc2fc5682016-03-18 11:04:31 +0100493 allocator functions of :c:data:`PYMEM_DOMAIN_OBJ` (ex:
494 :c:func:`PyObject_Malloc`) and :c:data:`PYMEM_DOMAIN_MEM` (ex:
495 :c:func:`PyMem_Malloc`) domains are called
Victor Stinner0507bf52013-07-07 02:05:46 +0200496
Victor Stinner0611c262016-03-15 22:22:13 +0100497 On error, the debug hooks use the :mod:`tracemalloc` module to get the
498 traceback where a memory block was allocated. The traceback is only
499 displayed if :mod:`tracemalloc` is tracing Python memory allocations and the
500 memory block was traced.
501
Victor Stinner5d39e042017-11-29 17:20:38 +0100502 These hooks are :ref:`installed by default <default-memory-allocators>` if
503 Python is compiled in debug
Victor Stinner34be807c2016-03-14 12:04:26 +0100504 mode. The :envvar:`PYTHONMALLOC` environment variable can be used to install
505 debug hooks on a Python compiled in release mode.
506
507 .. versionchanged:: 3.6
508 This function now also works on Python compiled in release mode.
Victor Stinner0611c262016-03-15 22:22:13 +0100509 On error, the debug hooks now use :mod:`tracemalloc` to get the traceback
Victor Stinnerc2fc5682016-03-18 11:04:31 +0100510 where a memory block was allocated. The debug hooks now also check
Victor Stinner9b46a572016-03-18 15:10:43 +0100511 if the GIL is held when functions of :c:data:`PYMEM_DOMAIN_OBJ` and
Victor Stinnerc2fc5682016-03-18 11:04:31 +0100512 :c:data:`PYMEM_DOMAIN_MEM` domains are called.
Victor Stinner0507bf52013-07-07 02:05:46 +0200513
Nick Coghlan17a058e2019-07-28 21:40:47 +1000514 .. versionchanged:: 3.8
Victor Stinner4c409be2019-04-11 13:01:15 +0200515 Byte patterns ``0xCB`` (``CLEANBYTE``), ``0xDB`` (``DEADBYTE``) and
516 ``0xFB`` (``FORBIDDENBYTE``) have been replaced with ``0xCD``, ``0xDD``
517 and ``0xFD`` to use the same values than Windows CRT debug ``malloc()``
518 and ``free()``.
519
Victor Stinner0507bf52013-07-07 02:05:46 +0200520
Victor Stinner34be807c2016-03-14 12:04:26 +0100521.. _pymalloc:
Victor Stinner0507bf52013-07-07 02:05:46 +0200522
Victor Stinner34be807c2016-03-14 12:04:26 +0100523The pymalloc allocator
524======================
Victor Stinner0507bf52013-07-07 02:05:46 +0200525
Victor Stinner34be807c2016-03-14 12:04:26 +0100526Python has a *pymalloc* allocator optimized for small objects (smaller or equal
527to 512 bytes) with a short lifetime. It uses memory mappings called "arenas"
Victor Stinner8c663fd2017-11-08 14:44:44 -0800528with a fixed size of 256 KiB. It falls back to :c:func:`PyMem_RawMalloc` and
Victor Stinner34be807c2016-03-14 12:04:26 +0100529:c:func:`PyMem_RawRealloc` for allocations larger than 512 bytes.
530
Victor Stinner5d39e042017-11-29 17:20:38 +0100531*pymalloc* is the :ref:`default allocator <default-memory-allocators>` of the
532:c:data:`PYMEM_DOMAIN_MEM` (ex: :c:func:`PyMem_Malloc`) and
533:c:data:`PYMEM_DOMAIN_OBJ` (ex: :c:func:`PyObject_Malloc`) domains.
Victor Stinner34be807c2016-03-14 12:04:26 +0100534
535The arena allocator uses the following functions:
Victor Stinner0507bf52013-07-07 02:05:46 +0200536
537* :c:func:`VirtualAlloc` and :c:func:`VirtualFree` on Windows,
538* :c:func:`mmap` and :c:func:`munmap` if available,
539* :c:func:`malloc` and :c:func:`free` otherwise.
540
Victor Stinner34be807c2016-03-14 12:04:26 +0100541Customize pymalloc Arena Allocator
542----------------------------------
543
Victor Stinner0507bf52013-07-07 02:05:46 +0200544.. versionadded:: 3.4
545
546.. c:type:: PyObjectArenaAllocator
547
548 Structure used to describe an arena allocator. The structure has
549 three fields:
550
551 +--------------------------------------------------+---------------------------------------+
552 | Field | Meaning |
553 +==================================================+=======================================+
554 | ``void *ctx`` | user context passed as first argument |
555 +--------------------------------------------------+---------------------------------------+
556 | ``void* alloc(void *ctx, size_t size)`` | allocate an arena of size bytes |
557 +--------------------------------------------------+---------------------------------------+
Victor Stinner0d6bd1c2021-03-09 12:16:42 +0100558 | ``void free(void *ctx, void *ptr, size_t size)`` | free an arena |
Victor Stinner0507bf52013-07-07 02:05:46 +0200559 +--------------------------------------------------+---------------------------------------+
560
Victor Stinner474652f2020-08-13 22:11:50 +0200561.. c:function:: void PyObject_GetArenaAllocator(PyObjectArenaAllocator *allocator)
Victor Stinner0507bf52013-07-07 02:05:46 +0200562
563 Get the arena allocator.
564
Victor Stinner474652f2020-08-13 22:11:50 +0200565.. c:function:: void PyObject_SetArenaAllocator(PyObjectArenaAllocator *allocator)
Victor Stinner0507bf52013-07-07 02:05:46 +0200566
567 Set the arena allocator.
568
569
Victor Stinner5ea4c062017-06-20 17:46:36 +0200570tracemalloc C API
571=================
572
573.. versionadded:: 3.7
574
Julien Danjoud4d17fd2020-02-21 11:47:41 +0100575.. c:function:: int PyTraceMalloc_Track(unsigned int domain, uintptr_t ptr, size_t size)
Victor Stinner5ea4c062017-06-20 17:46:36 +0200576
577 Track an allocated memory block in the :mod:`tracemalloc` module.
578
Serhiy Storchaka5bb00052018-02-09 13:31:19 +0200579 Return ``0`` on success, return ``-1`` on error (failed to allocate memory to
Victor Stinner5ea4c062017-06-20 17:46:36 +0200580 store the trace). Return ``-2`` if tracemalloc is disabled.
581
582 If memory block is already tracked, update the existing trace.
583
Julien Danjoud4d17fd2020-02-21 11:47:41 +0100584.. c:function:: int PyTraceMalloc_Untrack(unsigned int domain, uintptr_t ptr)
Victor Stinner5ea4c062017-06-20 17:46:36 +0200585
586 Untrack an allocated memory block in the :mod:`tracemalloc` module.
587 Do nothing if the block was not tracked.
588
589 Return ``-2`` if tracemalloc is disabled, otherwise return ``0``.
590
591
Georg Brandl116aa622007-08-15 14:28:22 +0000592.. _memoryexamples:
593
594Examples
595========
596
597Here is the example from section :ref:`memoryoverview`, rewritten so that the
598I/O buffer is allocated from the Python heap by using the first function set::
599
600 PyObject *res;
601 char *buf = (char *) PyMem_Malloc(BUFSIZ); /* for I/O */
602
603 if (buf == NULL)
604 return PyErr_NoMemory();
605 /* ...Do some I/O operation involving buf... */
Gregory P. Smith4b52ae82013-03-22 13:43:30 -0700606 res = PyBytes_FromString(buf);
Georg Brandl116aa622007-08-15 14:28:22 +0000607 PyMem_Free(buf); /* allocated with PyMem_Malloc */
608 return res;
609
610The same code using the type-oriented function set::
611
612 PyObject *res;
613 char *buf = PyMem_New(char, BUFSIZ); /* for I/O */
614
615 if (buf == NULL)
616 return PyErr_NoMemory();
617 /* ...Do some I/O operation involving buf... */
Gregory P. Smith4b52ae82013-03-22 13:43:30 -0700618 res = PyBytes_FromString(buf);
Georg Brandl116aa622007-08-15 14:28:22 +0000619 PyMem_Del(buf); /* allocated with PyMem_New */
620 return res;
621
622Note that in the two examples above, the buffer is always manipulated via
623functions belonging to the same set. Indeed, it is required to use the same
624memory API family for a given memory block, so that the risk of mixing different
625allocators is reduced to a minimum. The following code sequence contains two
626errors, one of which is labeled as *fatal* because it mixes two different
627allocators operating on different heaps. ::
628
629 char *buf1 = PyMem_New(char, BUFSIZ);
630 char *buf2 = (char *) malloc(BUFSIZ);
631 char *buf3 = (char *) PyMem_Malloc(BUFSIZ);
632 ...
633 PyMem_Del(buf3); /* Wrong -- should be PyMem_Free() */
634 free(buf2); /* Right -- allocated via malloc() */
635 free(buf1); /* Fatal -- should be PyMem_Del() */
636
637In addition to the functions aimed at handling raw memory blocks from the Python
Georg Brandl60203b42010-10-06 10:11:56 +0000638heap, objects in Python are allocated and released with :c:func:`PyObject_New`,
639:c:func:`PyObject_NewVar` and :c:func:`PyObject_Del`.
Georg Brandl116aa622007-08-15 14:28:22 +0000640
641These will be explained in the next chapter on defining and implementing new
642object types in C.