Re: Fix unsafe PlannedStmt access in pg_stat_statements
Michael Paquier <michael@paquier.xyz>
From: Michael Paquier <michael@paquier.xyz>
To: Chao Li <li.evan.chao@gmail.com>
Cc: PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2026-05-12T03:30:53Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
pg_stat_statements: Set PlannedStmt to NULL after nested utility execution
- 66366217822e 19 (unreleased) landed
-
pg_stat_statements: Fix potential use-after-free of PlannedStmt
- 8268e41aca23 19 (unreleased) landed
-
pg_stat_statements: Add counters for generic and custom plans
- 3357471cf9f5 19 (unreleased) cited
Attachments
- 0001-pg_stat_statements-Fix-potential-use-after-free-of-P.patch (text/plain) patch 0001
On Mon, May 11, 2026 at 04:11:41PM +0800, Chao Li wrote: > On May 11, 2026, at 16:07, Chao Li <li.evan.chao@gmail.com> wrote: >> In pgss_ProcessUtility(), there is this comment: >> ``` >> /* >> * CAUTION: do not access the *pstmt data structure again below here. >> * If it was a ROLLBACK or similar, that data structure may have been >> * freed. We must copy everything we still need into local variables, >> * which we did above. >> * >> * For the same reason, we can't risk restoring pstmt->queryId to its >> * former value, which'd otherwise be a good idea. >> */ >> ``` >> >> The attached patch fixes this by saving pstmt->planOrigin, >> following the same pattern already used for queryId, stmt_location, >> and stmt_len. Yeah, you are right. This code should save the planOrigin but it does not do so. This is also pointing at a second issue that is not addressed by your patch: there is no coverage for the assumption of this comment, or we would have known about this issue when 3357471cf9f5 was committed. Running the regression tests of PGSS with valgrind enabled leads to no reports. And that's where things got hairy on my side because it took me a few hours before finding a case where I was able to get the following report, where a PlannedStmt can get freed while we are in the hook path: ==28059== Invalid read of size 4 ==28059== at 0x165E42DF: pgss_ProcessUtility (pg_stat_statements.c:1200) ==28059== by 0x158AFCD: ProcessUtility (utility.c:524) ==28059== by 0x1587F3B: PortalRunUtility (pquery.c:1149) ==28059== by 0x15877E9: FillPortalStore (pquery.c:1022) This has come down to the extended protocol and a ROLLBACK inside a CALL procedure. The internal ROLLBACK is able to free the PlannedStmt in pgss_ProcessUtility() in this case, after two executions. > Oops! Forgot the attachment. No problem. All that said, I am attaching an updated version of the patch, for posterity. I'll apply that in a bit with your fix and the test on HEAD, after more checks. -- Michael