pgsql: Prevent potentially hazardous compiler/cpu reordering during lwl

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: Prevent potentially hazardous compiler/cpu reordering during lwl
Дата
Msg-id E1Y1y6r-0002q4-30@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Prevent potentially hazardous compiler/cpu reordering during lwlock release.

In LWLockRelease() (and in 9.4+ LWLockUpdateVar()) we release enqueued
waiters using PGSemaphoreUnlock(). As there are other sources of such
unlocks backends only wake up if MyProc->lwWaiting is set to false;
which is only done in the aforementioned functions.

Before this commit there were dangers because the store to lwWaitLink
could become visible before the store to lwWaitLink. This could both
happen due to compiler reordering (on most compilers) and on some
platforms due to the CPU reordering stores.

The possible consequence of this is that a backend stops waiting
before lwWaitLink is set to NULL. If that backend then tries to
acquire another lock and has to wait there the list could become
corrupted once the lwWaitLink store is finally performed.

Add a write memory barrier to prevent that issue.

Unfortunately the barrier support has been only added in 9.2. Given
that the issue has not knowingly been observed in praxis it seems
sufficient to prohibit compiler reordering using volatile for 9.0 and
9.1. Actual problems due to compiler reordering are more likely
anyway.

Discussion: 20140210134625.GA15246@awork2.anarazel.de

Branch
------
REL9_3_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/0e68570e8b4419b0484a0f96ee30ab34561c3a91

Modified Files
--------------
src/backend/storage/lmgr/lwlock.c |   12 ++++++++++++
1 file changed, 12 insertions(+)


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

Предыдущее
От: Andres Freund
Дата:
Сообщение: pgsql: Prevent potentially hazardous compiler/cpu reordering during lwl
Следующее
От: Andres Freund
Дата:
Сообщение: pgsql: Prevent potentially hazardous compiler/cpu reordering during lwl