]> granicus.if.org Git - postgresql/commitdiff
Improve handling of out-of-memory in libpq.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 7 Jul 2015 15:37:45 +0000 (18:37 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 7 Jul 2015 15:45:31 +0000 (18:45 +0300)
If an allocation fails in the main message handling loop, pqParseInput3
or pqParseInput2, it should not be treated as "not enough data available
yet". Otherwise libpq will wait indefinitely for more data to arrive from
the server, and gets stuck forever.

This isn't a complete fix - getParamDescriptions and getCopyStart still
have the same issue, but it's a step in the right direction.

Michael Paquier and me. Backpatch to all supported versions.

src/interfaces/libpq/fe-protocol2.c
src/interfaces/libpq/fe-protocol3.c

index 05a9be90bedb8cf1c7193e4bacb635133dd41877..6824b6d6bc083dacfdb481be316d38667fd3f08d 100644 (file)
@@ -438,10 +438,17 @@ pqParseInput2(PGconn *conn)
                                                conn->result = PQmakeEmptyPGresult(conn,
                                                                                                                   PGRES_COMMAND_OK);
                                                if (!conn->result)
-                                                       return;
+                                               {
+                                                       printfPQExpBuffer(&conn->errorMessage,
+                                                                                         libpq_gettext("out of memory"));
+                                                       pqSaveErrorResult(conn);
+                                               }
+                                       }
+                                       if (conn->result)
+                                       {
+                                               strlcpy(conn->result->cmdStatus, conn->workBuffer.data,
+                                                               CMDSTATUS_LEN);
                                        }
-                                       strlcpy(conn->result->cmdStatus, conn->workBuffer.data,
-                                                       CMDSTATUS_LEN);
                                        checkXactStatus(conn, conn->workBuffer.data);
                                        conn->asyncStatus = PGASYNC_READY;
                                        break;
@@ -462,8 +469,16 @@ pqParseInput2(PGconn *conn)
                                                                                 "unexpected character %c following empty query response (\"I\" message)",
                                                                                 id);
                                        if (conn->result == NULL)
+                                       {
                                                conn->result = PQmakeEmptyPGresult(conn,
                                                                                                                   PGRES_EMPTY_QUERY);
+                                               if (!conn->result)
+                                               {
+                                                       printfPQExpBuffer(&conn->errorMessage,
+                                                                                         libpq_gettext("out of memory"));
+                                                       pqSaveErrorResult(conn);
+                                               }
+                                       }
                                        conn->asyncStatus = PGASYNC_READY;
                                        break;
                                case 'K':               /* secret key data from the backend */
@@ -811,14 +826,17 @@ pqGetErrorNotice2(PGconn *conn, bool isError)
         * Make a PGresult to hold the message.  We temporarily lie about the
         * result status, so that PQmakeEmptyPGresult doesn't uselessly copy
         * conn->errorMessage.
+        *
+        * NB: This allocation can fail, if you run out of memory. The rest of the
+        * function handles that gracefully, and we still try to set the error
+        * message as the connection's error message.
         */
        res = PQmakeEmptyPGresult(conn, PGRES_EMPTY_QUERY);
-       if (!res)
-               goto failure;
-       res->resultStatus = isError ? PGRES_FATAL_ERROR : PGRES_NONFATAL_ERROR;
-       res->errMsg = pqResultStrdup(res, workBuf.data);
-       if (!res->errMsg)
-               goto failure;
+       if (res)
+       {
+               res->resultStatus = isError ? PGRES_FATAL_ERROR : PGRES_NONFATAL_ERROR;
+               res->errMsg = pqResultStrdup(res, workBuf.data);
+       }
 
        /*
         * Break the message into fields.  We can't do very much here, but we can
@@ -870,15 +888,22 @@ pqGetErrorNotice2(PGconn *conn, bool isError)
                pqClearAsyncResult(conn);
                conn->result = res;
                resetPQExpBuffer(&conn->errorMessage);
-               appendPQExpBufferStr(&conn->errorMessage, res->errMsg);
+               if (res && !PQExpBufferDataBroken(workBuf) && res->errMsg)
+                       appendPQExpBufferStr(&conn->errorMessage, res->errMsg);
+               else
+                       printfPQExpBuffer(&conn->errorMessage,
+                                                         libpq_gettext("out of memory"));
                if (conn->xactStatus == PQTRANS_INTRANS)
                        conn->xactStatus = PQTRANS_INERROR;
        }
        else
        {
-               if (res->noticeHooks.noticeRec != NULL)
-                       (*res->noticeHooks.noticeRec) (res->noticeHooks.noticeRecArg, res);
-               PQclear(res);
+               if (res)
+               {
+                       if (res->noticeHooks.noticeRec != NULL)
+                               (*res->noticeHooks.noticeRec) (res->noticeHooks.noticeRecArg, res);
+                       PQclear(res);
+               }
        }
 
        termPQExpBuffer(&workBuf);
index 580abb6fde2e9a8e17d6b900d1c3e98f2fe9d9bf..e314ab0a5269a65634c8ae90b4dba2ce3f318c8b 100644 (file)
@@ -204,10 +204,15 @@ pqParseInput3(PGconn *conn)
                                                conn->result = PQmakeEmptyPGresult(conn,
                                                                                                                   PGRES_COMMAND_OK);
                                                if (!conn->result)
-                                                       return;
+                                               {
+                                                       printfPQExpBuffer(&conn->errorMessage,
+                                                                                         libpq_gettext("out of memory"));
+                                                       pqSaveErrorResult(conn);
+                                               }
                                        }
-                                       strlcpy(conn->result->cmdStatus, conn->workBuffer.data,
-                                                       CMDSTATUS_LEN);
+                                       if (conn->result)
+                                               strlcpy(conn->result->cmdStatus, conn->workBuffer.data,
+                                                               CMDSTATUS_LEN);
                                        conn->asyncStatus = PGASYNC_READY;
                                        break;
                                case 'E':               /* error return */
@@ -226,7 +231,11 @@ pqParseInput3(PGconn *conn)
                                                conn->result = PQmakeEmptyPGresult(conn,
                                                                                                                   PGRES_EMPTY_QUERY);
                                                if (!conn->result)
-                                                       return;
+                                               {
+                                                       printfPQExpBuffer(&conn->errorMessage,
+                                                                                         libpq_gettext("out of memory"));
+                                                       pqSaveErrorResult(conn);
+                                               }
                                        }
                                        conn->asyncStatus = PGASYNC_READY;
                                        break;
@@ -239,7 +248,11 @@ pqParseInput3(PGconn *conn)
                                                        conn->result = PQmakeEmptyPGresult(conn,
                                                                                                                   PGRES_COMMAND_OK);
                                                        if (!conn->result)
-                                                               return;
+                                                       {
+                                                               printfPQExpBuffer(&conn->errorMessage,
+                                                                                                 libpq_gettext("out of memory"));
+                                                               pqSaveErrorResult(conn);
+                                                       }
                                                }
                                                conn->asyncStatus = PGASYNC_READY;
                                        }
@@ -311,7 +324,11 @@ pqParseInput3(PGconn *conn)
                                                        conn->result = PQmakeEmptyPGresult(conn,
                                                                                                                   PGRES_COMMAND_OK);
                                                        if (!conn->result)
-                                                               return;
+                                                       {
+                                                               printfPQExpBuffer(&conn->errorMessage,
+                                                                                                 libpq_gettext("out of memory"));
+                                                               pqSaveErrorResult(conn);
+                                                       }
                                                }
                                                conn->asyncStatus = PGASYNC_READY;
                                        }
@@ -736,11 +753,14 @@ pqGetErrorNotice3(PGconn *conn, bool isError)
         * Make a PGresult to hold the accumulated fields.  We temporarily lie
         * about the result status, so that PQmakeEmptyPGresult doesn't uselessly
         * copy conn->errorMessage.
+        *
+        * NB: This allocation can fail, if you run out of memory. The rest of the
+        * function handles that gracefully, and we still try to set the error
+        * message as the connection's error message.
         */
        res = PQmakeEmptyPGresult(conn, PGRES_EMPTY_QUERY);
-       if (!res)
-               goto fail;
-       res->resultStatus = isError ? PGRES_FATAL_ERROR : PGRES_NONFATAL_ERROR;
+       if (res)
+               res->resultStatus = isError ? PGRES_FATAL_ERROR : PGRES_NONFATAL_ERROR;
 
        /*
         * Read the fields and save into res.
@@ -853,20 +873,27 @@ pqGetErrorNotice3(PGconn *conn, bool isError)
         */
        if (isError)
        {
-               res->errMsg = pqResultStrdup(res, workBuf.data);
-               if (!res->errMsg)
-                       goto fail;
+               if (res)
+                       res->errMsg = pqResultStrdup(res, workBuf.data);
                pqClearAsyncResult(conn);
                conn->result = res;
-               appendPQExpBufferStr(&conn->errorMessage, workBuf.data);
+               if (PQExpBufferDataBroken(workBuf))
+                       printfPQExpBuffer(&conn->errorMessage,
+                                                         libpq_gettext("out of memory"));
+               else
+                       appendPQExpBufferStr(&conn->errorMessage, workBuf.data);
        }
        else
        {
-               /* We can cheat a little here and not copy the message. */
-               res->errMsg = workBuf.data;
-               if (res->noticeHooks.noticeRec != NULL)
-                       (*res->noticeHooks.noticeRec) (res->noticeHooks.noticeRecArg, res);
-               PQclear(res);
+               /* if we couldn't allocate the result set, just discard the NOTICE */
+               if (res)
+               {
+                       /* We can cheat a little here and not copy the message. */
+                       res->errMsg = workBuf.data;
+                       if (res->noticeHooks.noticeRec != NULL)
+                               (*res->noticeHooks.noticeRec) (res->noticeHooks.noticeRecArg, res);
+                       PQclear(res);
+               }
        }
 
        termPQExpBuffer(&workBuf);