-
- Downloads
Fix memory leaks in PL/Python.
Previously, plpython was in the habit of allocating a lot of stuff in TopMemoryContext, and it was very slipshod about making sure that stuff got cleaned up; in particular, use of TopMemoryContext as fn_mcxt for function calls represents an unfixable leak, since we generally don't know what the called function might have allocated in fn_mcxt. This results in session-lifespan leakage in certain usage scenarios, as for example in a case reported by Ed Behn back in July. To fix, get rid of all the retail allocations in TopMemoryContext. All long-lived allocations are now made in sub-contexts that are associated with specific objects (either pl/python procedures, or Python-visible objects such as cursors and plans). We can clean these up when the associated object is deleted. I went so far as to get rid of PLy_malloc completely. There were a couple of places where it could still have been used safely, but on the whole it was just an invitation to bad coding. Haribabu Kommi, based on a draft patch by Heikki Linnakangas; some further work by me
Showing
- src/pl/plpython/plpy_cursorobject.c 21 additions, 9 deletionssrc/pl/plpython/plpy_cursorobject.c
- src/pl/plpython/plpy_cursorobject.h 1 addition, 0 deletionssrc/pl/plpython/plpy_cursorobject.h
- src/pl/plpython/plpy_exec.c 1 addition, 1 deletionsrc/pl/plpython/plpy_exec.c
- src/pl/plpython/plpy_main.c 30 additions, 9 deletionssrc/pl/plpython/plpy_main.c
- src/pl/plpython/plpy_main.h 3 additions, 0 deletionssrc/pl/plpython/plpy_main.h
- src/pl/plpython/plpy_planobject.c 8 additions, 11 deletionssrc/pl/plpython/plpy_planobject.c
- src/pl/plpython/plpy_planobject.h 1 addition, 0 deletionssrc/pl/plpython/plpy_planobject.h
- src/pl/plpython/plpy_procedure.c 52 additions, 66 deletionssrc/pl/plpython/plpy_procedure.c
- src/pl/plpython/plpy_procedure.h 2 additions, 0 deletionssrc/pl/plpython/plpy_procedure.h
- src/pl/plpython/plpy_spi.c 23 additions, 7 deletionssrc/pl/plpython/plpy_spi.c
- src/pl/plpython/plpy_subxactobject.c 11 additions, 4 deletionssrc/pl/plpython/plpy_subxactobject.c
- src/pl/plpython/plpy_typeio.c 64 additions, 73 deletionssrc/pl/plpython/plpy_typeio.c
- src/pl/plpython/plpy_typeio.h 4 additions, 2 deletionssrc/pl/plpython/plpy_typeio.h
- src/pl/plpython/plpy_util.c 0 additions, 36 deletionssrc/pl/plpython/plpy_util.c
- src/pl/plpython/plpy_util.h 0 additions, 5 deletionssrc/pl/plpython/plpy_util.h
Loading
Please register or sign in to comment