Re: BUG #17920: Incorrect memory access in array_position(s) is detected (or not)
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: exclusion@gmail.com
Cc: pgsql-bugs@lists.postgresql.org
Date: 2023-05-04T15:53:48Z
Lists: pgsql-bugs
PG Bug reporting form <noreply@postgresql.org> writes:
> When the following script:
> SELECT array_positions('{}'::int[], 1); SELECT array_positions('{}'::int[],
> 1)
> is executed under Valgrind, an incorrect memory access is detected:
> ==00:00:00:04.955 1823064== Invalid read of size 4
> ==00:00:00:04.955 1823064== at 0x5EDBD0: array_positions
> (array_userfuncs.c:806)
Fixed, thanks for the report!
> I was surprised by the fact, that Valgrind doesn't complain for the single
> query execution:
> SELECT array_positions('{}'::int[], 1)
> IIUC, this is explained by the lack of red zones around palloc'ed memory
> areas.
> sed "s/VALGRIND_CREATE_MEMPOOL(\(.*\), 0, false);/VALGRIND_CREATE_MEMPOOL(\1, 16, false);/" -i
> src/backend/utils/mmgr/mcxt.c
> on master (after 414d66220) helps Valgrind to detect the invalid read on
> the single query execution too:
I didn't try valgrind'ing this on HEAD, but I think this situation
might have been improved by 414d66220.
regards, tom lane
Commits
-
In array_position()/array_positions(), beware of empty input array.
- d5de344a50d3 14.8 landed
- ccb479e76ac3 15.3 landed
- 9a72f499a4b6 13.11 landed
- 580df5078963 12.15 landed
- 4c40995f6122 16.0 landed
- 4624aad61a31 11.20 landed