]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix use-after-free in parallel_vacuum_reset_dead_items
authorJohn Naylor <john.naylor@postgresql.org>
Wed, 4 Dec 2024 09:51:55 +0000 (16:51 +0700)
committerJohn Naylor <john.naylor@postgresql.org>
Wed, 4 Dec 2024 09:59:12 +0000 (16:59 +0700)
commit83ce20d67184d79f7a1e65feed7c06ec03e4472d
treedb884fbf96d1121d30bfdf691cbf7760ec56e901
parent9abdc1841e16ff4eaf2fa8e2e0472ee71a4a5a5c
Fix use-after-free in parallel_vacuum_reset_dead_items

parallel_vacuum_reset_dead_items used a local variable to hold a
pointer from the passed vacrel, purely as a shorthand. This pointer
was later freed and a new allocation was made and stored to the
struct. Then the local pointer was mistakenly referenced again.

This apparently happened not to break anything since the freed chunk
would have been put on the context's freelist, so it was accidentally
the same pointer anyway, in which case the DSA handle was correctly
updated. The minimal fix is to change two places so they access
dead_items through the vacrel. This coding style is a maintenance
hazard, so while at it get rid of most other similar usages, which
were inconsistently used anyway.

Analysis and patch by Vallimaharajan G, with further defensive coding
by me

Backpath to v17, when TidStore came in

Discussion: https://postgr.es/m/1936493cc38.68cb2ef27266.7456585136086197135@zohocorp.com
src/backend/access/heap/vacuumlazy.c
src/backend/commands/vacuumparallel.c