Segfault in PL/Python - Mailing list pgsql-hackers

From Peter Eisentraut
Subject Segfault in PL/Python
Date
Msg-id 1256991858.28195.16.camel@vanquo.pezone.net
Whole thread Raw
Responses Re: Segfault in PL/Python  (Peter Eisentraut <peter_e@gmx.net>)
List pgsql-hackers
I have discovered an obscure segfault condition in PL/Python.  In
PLy_output(), when the elog() call in the TRY branch throws an exception
(this can happen when a statement timeout kicks in, for example), the
PyErr_SetString() call in the CATCH branch can cause a segfault, because
the Py_XDECREF(so) call before it releases memory that is still used by
the sv variable that PyErr_SetString() uses as argument, because sv
points into memory owned by so.

Patch is attached.  This should be backpatched back to 8.0, where this
code was introduced.

I also threw in a couple of volatile declarations for variables that are
used before and after the TRY.  I don't think they caused the crash that
I observed, but they could become issues.

Attachment

pgsql-hackers by date:

Previous
From: Greg Stark
Date:
Subject: Re: Unicode UTF-8 table formatting for psql text output
Next
From: John Murtari
Date:
Subject: Re: Patch set under development to add usage reporting.