authentication_timeout ineffective for replication connections

Поиск
Список
Период
Сортировка
От Andres Freund
Тема authentication_timeout ineffective for replication connections
Дата
Msg-id 20150113142904.GO6299@alap3.anarazel.de
обсуждение исходный текст
Ответы Re: authentication_timeout ineffective for replication connections  (Bruce Momjian <bruce@momjian.us>)
Список pgsql-hackers
Hi,

I just noticed that authentication_timeout is ineffective for
replication=true type connections. That's because walsender doesn't
register a SIGINT handler and authentication_timeout relies on having
one.

There's no problem with reading the initial startup packet
(ProcessStartupPacket/BackendInitialize) because we use a separate
handler there. But once that's done, before finishing authentication,
WalSndSignals() will have set SIGINT's handler to SIG_IGN.

Demo python program attached. You'll only see the problem if the
authentication method requires a password/addititional packets.

I think we could fix this by simply mapping SIGINT to die() instead
SIG_IGN.

Greetings,

Andres Freund

--
 Andres Freund                       http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training & Services

Вложения

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

Предыдущее
От: Alexey Bashtanov
Дата:
Сообщение: Re: OOM on EXPLAIN with lots of nodes
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Safe memory allocation functions