pg_trgm: fix crash in 2-item picksplit
authorAndrew Gierth <[email protected]>
Thu, 12 Nov 2020 14:34:37 +0000 (14:34 +0000)
committerAndrew Gierth <[email protected]>
Thu, 12 Nov 2020 14:55:51 +0000 (14:55 +0000)
commit4b212b7c87754095d4f89b03a3aaec6e32d09342
tree22eb15cce60137432b837f71b9419153424bf3d7
parent210564a74409f79cb1441fab62c4154dd148840f
pg_trgm: fix crash in 2-item picksplit

Whether from size overflow in gistSplit or from secondary splits,
picksplit is (rarely) called with exactly two items to split.

Formerly, due to special-case handling of the last item, this would
lead to access to an uninitialized cache entry; prior to PG 13 this
might have been harmless or at worst led to an incorrect union datum,
but in 13 onwards it can cause a backend crash from using an
uninitialized pointer.

Repair by removing the special case, which was deemed not to have been
appropriate anyway. Backpatch all the way, because this bug has
existed since pg_trgm was added.

Per report on IRC from user "ftzdomino". Analysis and testing by me,
patch from Alexander Korotkov.

Discussion: https://postgr.es/m/[email protected]
contrib/pg_trgm/trgm_gist.c