Re: Unsafe access BufferDescriptors array in BufferGetLSNAtomic()

Поиск
Список
Период
Сортировка
От Xuneng Zhou
Тема Re: Unsafe access BufferDescriptors array in BufferGetLSNAtomic()
Дата
Msg-id 173631448828.4095.11314230672739095465.pgcf@coridan.postgresql.org
обсуждение исходный текст
Ответы Re: Unsafe access BufferDescriptors array in BufferGetLSNAtomic()
Список pgsql-hackers
Hi Tender,

I’ve looked through the patch, and I believe there is a potential issue. The default size for BufferDescriptors appears
tobe 16,384. Passing and casting a negative buffer ID to a large unsigned integer in GetBufferDescriptor, and then
usingit as an array subscript, could potentially lead to an overflow.
 

void
BufferManagerShmemInit(void)
{
    bool        foundBufs,
                foundDescs,
                foundIOCV,
                foundBufCkpt;

    /* Align descriptors to a cacheline boundary. */
    BufferDescriptors = (BufferDescPadded *)
        ShmemInitStruct("Buffer Descriptors",
                        NBuffers * sizeof(BufferDescPadded),
                        &foundDescs);

int            NBuffers = 16384;

The changes proposed in the patch seem reasonable to me, but it might be helpful to include an explanation of the error
caseand how it’s handled.
 

Best regards,
[Xuneng]

The new status of this patch is: Waiting on Author

В списке pgsql-hackers по дате отправления: