pgsql: Improve libpq's error recovery for connection loss during COPY.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Improve libpq's error recovery for connection loss during COPY.
Дата
Msg-id E1WDie9-0007VL-Fi@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Improve libpq's error recovery for connection loss during COPY.

In pqSendSome, if the connection is already closed at entry, discard any
queued output data before returning.  There is no possibility of ever
sending the data, and anyway this corresponds to what we'd do if we'd
detected a hard error while trying to send().  This avoids possible
indefinite bloat of the output buffer if the application keeps trying
to send data (or even just keeps trying to do PQputCopyEnd, as psql
indeed will).

Because PQputCopyEnd won't transition out of PGASYNC_COPY_IN state
until it's successfully queued the COPY END message, and pqPutMsgEnd
doesn't distinguish a queuing failure from a pqSendSome failure,
this omission allowed an infinite loop in psql if the connection closure
occurred when we had at least 8K queued to send.  It might be worth
refactoring so that we can make that distinction, but for the moment
the other changes made here seem to offer adequate defenses.

To guard against other variants of this scenario, do not allow
PQgetResult to return a PGRES_COPY_XXX result if the connection is
already known dead.  Make sure it returns PGRES_FATAL_ERROR instead.

Per report from Stephen Frost.  Back-patch to all active branches.

Branch
------
REL8_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/c9256f5b7db5b0ae3f3d5d2011f6e127f635a209

Modified Files
--------------
src/interfaces/libpq/fe-exec.c |   41 ++++++++++++++++++++++++++++++++--------
src/interfaces/libpq/fe-misc.c |    2 ++
2 files changed, 35 insertions(+), 8 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Improve libpq's error recovery for connection loss during COPY.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Improve libpq's error recovery for connection loss during COPY.