Fix theoretical bug in tuplesort
authorDavid Rowley <[email protected]>
Tue, 13 Jul 2021 00:46:52 +0000 (12:46 +1200)
committerDavid Rowley <[email protected]>
Tue, 13 Jul 2021 00:46:52 +0000 (12:46 +1200)
This fixes a theoretical bug in tuplesort.c which, if a bounded sort was
used in combination with a byval Datum sort (tuplesort_begin_datum), when
switching the sort to a bounded heap in make_bounded_heap(), we'd call
free_sort_tuple().  The problem was that when sorting Datums of a byval
type, the tuple is NULL and free_sort_tuple() would free the memory for it
regardless of that.  This would result in a crash.

Here we fix that simply by adding a check to see if the tuple is NULL
before trying to disassociate and free any memory belonging to it.

The reason this bug is only theoretical is that nowhere in the current
code base do we do tuplesort_set_bound() when performing a Datum sort.
However, let's backpatch a fix for this as if any extension uses the code
in this way then it's likely to cause problems.

Author: Ronan Dunklau
Discussion: https://postgr.es/m/CAApHDvpdoqNC5FjDb3KUTSMs5dg6f+XxH4Bg_dVcLi8UYAG3EQ@mail.gmail.com
Backpatch-through: 9.6, oldest supported version

src/backend/utils/sort/tuplesort.c

index 147889177faace1fe8d0904a06059b8e13796ba6..015c197a77f661dbc973de639ec0089d187c9e44 100644 (file)
@@ -4827,6 +4827,9 @@ movetup_datum(void *dest, void *src, unsigned int len)
 static void
 free_sort_tuple(Tuplesortstate *state, SortTuple *stup)
 {
-   FREEMEM(state, GetMemoryChunkSpace(stup->tuple));
-   pfree(stup->tuple);
+   if (stup->tuple)
+   {
+       FREEMEM(state, GetMemoryChunkSpace(stup->tuple));
+       pfree(stup->tuple);
+   }
 }