Re: Protect against possible memory corruption (src/backend/access/nbtree/nbtxlog.c)
От | Heikki Linnakangas |
---|---|
Тема | Re: Protect against possible memory corruption (src/backend/access/nbtree/nbtxlog.c) |
Дата | |
Msg-id | 50678df4-4f70-4308-5028-71af9bbc678e@iki.fi обсуждение исходный текст |
Ответ на | Re: Protect against possible memory corruption (src/backend/access/nbtree/nbtxlog.c) (Ranier Vilela <ranier.vf@gmail.com>) |
Ответы |
Re: Protect against possible memory corruption (src/backend/access/nbtree/nbtxlog.c)
|
Список | pgsql-hackers |
On 12/07/2021 02:34, Ranier Vilela wrote: > If it is not possible, know the upper limits, before the loop. > It is necessary to do this inside the loop. > @@ -49,10 +47,14 @@ _bt_restore_page(Page page, char *from, int len) > * To get the items back in the original order, we add them to the page in > * reverse. To figure out where one tuple ends and another begins, we > * have to scan them in forward order first. > + * Check the array upper limit to not overtake him. > */ > i = 0; > - while (from < end) > + while (from < end && i <= MaxIndexTuplesPerPage) > { > + IndexTupleData itupdata; > + Size itemsz; > + > /* > * As we step through the items, 'from' won't always be properly > * aligned, so we need to use memcpy(). Further, we use Item (which If we bother checking it, we should throw an error if the check fails, not just silently soldier on. Also, shouldn't it be '<', not '<='? In general though, we don't do much checking on WAL records, we assume that the contents are sane. It would be nice to add more checks and make WAL redo routines more robust to corrupt records, but this seems like an odd place to start. I committed the removal of bogus assignment to 'from'. Thanks! - Heikki
В списке pgsql-hackers по дате отправления: