pgsql: Fix incorrect order of lock file removal and failure to close()
От | Tom Lane |
---|---|
Тема | pgsql: Fix incorrect order of lock file removal and failure to close() |
Дата | |
Msg-id | [email protected] обсуждение исходный текст |
Список | pgsql-committers |
Fix incorrect order of lock file removal and failure to close() sockets. Commit c9b0cbe98bd783e24a8c4d8d8ac472a494b81292 accidentally broke the order of operations during postmaster shutdown: it resulted in removing the per-socket lockfiles after, not before, postmaster.pid. This creates a race-condition hazard for a new postmaster that's started immediately after observing that postmaster.pid has disappeared; if it sees the socket lockfile still present, it will quite properly refuse to start. This error appears to be the explanation for at least some of the intermittent buildfarm failures we've seen in the pg_upgrade test. Another problem, which has been there all along, is that the postmaster has never bothered to close() its listen sockets, but has just allowed them to close at process death. This creates a different race condition for an incoming postmaster: it might be unable to bind to the desired listen address because the old postmaster is still incumbent. This might explain some odd failures we've seen in the past, too. (Note: this is not related to the fact that individual backends don't close their client communication sockets. That behavior is intentional and is not changed by this patch.) Fix by adding an on_proc_exit function that closes the postmaster's ports explicitly, and (in 9.3 and up) reshuffling the responsibility for where to unlink the Unix socket files. Lock file unlinking can stay where it is, but teach it to unlink the lock files in reverse order of creation. Branch ------ REL9_2_STABLE Details ------- http://git.postgresql.org/pg/commitdiff/20d1878b6a7f78a4a9ce3668c4588d92bc0af78d Modified Files -------------- src/backend/postmaster/postmaster.c | 39 +++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+)
В списке pgsql-committers по дате отправления: