LCOV - code coverage report
Current view: top level - src/interfaces/libpq - fe-protocol3.c (source / functions) Coverage Total Hit
Test: Code coverage Lines: 55.6 % 1120 623
Test Date: 2026-01-26 10:56:24 Functions: 69.6 % 23 16
Legend: Lines:     hit not hit
Branches: + taken - not taken # not executed
Branches: 47.0 % 856 402

             Branch data     Line data    Source code
       1                 :             : /*-------------------------------------------------------------------------
       2                 :             :  *
       3                 :             :  * fe-protocol3.c
       4                 :             :  *        functions that are specific to frontend/backend protocol version 3
       5                 :             :  *
       6                 :             :  * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
       7                 :             :  * Portions Copyright (c) 1994, Regents of the University of California
       8                 :             :  *
       9                 :             :  *
      10                 :             :  * IDENTIFICATION
      11                 :             :  *        src/interfaces/libpq/fe-protocol3.c
      12                 :             :  *
      13                 :             :  *-------------------------------------------------------------------------
      14                 :             :  */
      15                 :             : #include "postgres_fe.h"
      16                 :             : 
      17                 :             : #include <ctype.h>
      18                 :             : #include <fcntl.h>
      19                 :             : #include <limits.h>
      20                 :             : 
      21                 :             : #ifdef WIN32
      22                 :             : #include "win32.h"
      23                 :             : #else
      24                 :             : #include <unistd.h>
      25                 :             : #include <netinet/tcp.h>
      26                 :             : #endif
      27                 :             : 
      28                 :             : #include "common/int.h"
      29                 :             : #include "libpq-fe.h"
      30                 :             : #include "libpq-int.h"
      31                 :             : #include "mb/pg_wchar.h"
      32                 :             : #include "port/pg_bswap.h"
      33                 :             : 
      34                 :             : /*
      35                 :             :  * This macro lists the backend message types that could be "long" (more
      36                 :             :  * than a couple of kilobytes).
      37                 :             :  */
      38                 :             : #define VALID_LONG_MESSAGE_TYPE(id) \
      39                 :             :         ((id) == PqMsg_CopyData || \
      40                 :             :          (id) == PqMsg_DataRow || \
      41                 :             :          (id) == PqMsg_ErrorResponse || \
      42                 :             :          (id) == PqMsg_FunctionCallResponse || \
      43                 :             :          (id) == PqMsg_NoticeResponse || \
      44                 :             :          (id) == PqMsg_NotificationResponse || \
      45                 :             :          (id) == PqMsg_RowDescription)
      46                 :             : 
      47                 :             : 
      48                 :             : static void handleFatalError(PGconn *conn);
      49                 :             : static void handleSyncLoss(PGconn *conn, char id, int msgLength);
      50                 :             : static int      getRowDescriptions(PGconn *conn, int msgLength);
      51                 :             : static int      getParamDescriptions(PGconn *conn, int msgLength);
      52                 :             : static int      getAnotherTuple(PGconn *conn, int msgLength);
      53                 :             : static int      getParameterStatus(PGconn *conn);
      54                 :             : static int      getBackendKeyData(PGconn *conn, int msgLength);
      55                 :             : static int      getNotify(PGconn *conn);
      56                 :             : static int      getCopyStart(PGconn *conn, ExecStatusType copytype);
      57                 :             : static int      getReadyForQuery(PGconn *conn);
      58                 :             : static void reportErrorPosition(PQExpBuffer msg, const char *query,
      59                 :             :                                                                 int loc, int encoding);
      60                 :             : static size_t build_startup_packet(const PGconn *conn, char *packet,
      61                 :             :                                                                    const PQEnvironmentOption *options);
      62                 :             : 
      63                 :             : 
      64                 :             : /*
      65                 :             :  * parseInput: if appropriate, parse input data from backend
      66                 :             :  * until input is exhausted or a stopping state is reached.
      67                 :             :  * Note that this function will NOT attempt to read more data from the backend.
      68                 :             :  */
      69                 :             : void
      70                 :      238071 : pqParseInput3(PGconn *conn)
      71                 :             : {
      72                 :      238071 :         char            id;
      73                 :      238071 :         int                     msgLength;
      74                 :      238071 :         int                     avail;
      75                 :             : 
      76                 :             :         /*
      77                 :             :          * Loop to parse successive complete messages available in the buffer.
      78                 :             :          */
      79                 :      470957 :         for (;;)
      80                 :             :         {
      81                 :             :                 /*
      82                 :             :                  * Try to read a message.  First get the type code and length. Return
      83                 :             :                  * if not enough data.
      84                 :             :                  */
      85                 :      470957 :                 conn->inCursor = conn->inStart;
      86         [ +  + ]:      470957 :                 if (pqGetc(&id, conn))
      87                 :      182086 :                         return;
      88         [ +  + ]:      288871 :                 if (pqGetInt(&msgLength, 4, conn))
      89                 :           3 :                         return;
      90                 :             : 
      91                 :             :                 /*
      92                 :             :                  * Try to validate message type/length here.  A length less than 4 is
      93                 :             :                  * definitely broken.  Large lengths should only be believed for a few
      94                 :             :                  * message types.
      95                 :             :                  */
      96         [ -  + ]:      288868 :                 if (msgLength < 4)
      97                 :             :                 {
      98                 :           0 :                         handleSyncLoss(conn, id, msgLength);
      99                 :           0 :                         return;
     100                 :             :                 }
     101   [ +  +  +  -  :      288868 :                 if (msgLength > 30000 && !VALID_LONG_MESSAGE_TYPE(id))
          +  +  -  +  #  
          #  #  #  #  #  
                   #  # ]
     102                 :             :                 {
     103                 :           0 :                         handleSyncLoss(conn, id, msgLength);
     104                 :           0 :                         return;
     105                 :             :                 }
     106                 :             : 
     107                 :             :                 /*
     108                 :             :                  * Can't process if message body isn't all here yet.
     109                 :             :                  */
     110                 :      288868 :                 msgLength -= 4;
     111                 :      288868 :                 avail = conn->inEnd - conn->inCursor;
     112         [ +  + ]:      288868 :                 if (avail < msgLength)
     113                 :             :                 {
     114                 :             :                         /*
     115                 :             :                          * Before returning, enlarge the input buffer if needed to hold
     116                 :             :                          * the whole message.  This is better than leaving it to
     117                 :             :                          * pqReadData because we can avoid multiple cycles of realloc()
     118                 :             :                          * when the message is large; also, we can implement a reasonable
     119                 :             :                          * recovery strategy if we are unable to make the buffer big
     120                 :             :                          * enough.
     121                 :             :                          */
     122   [ -  +  -  + ]:         146 :                         if (pqCheckInBufferSpace(conn->inCursor + (size_t) msgLength,
     123                 :          73 :                                                                          conn))
     124                 :             :                         {
     125                 :             :                                 /*
     126                 :             :                                  * Abandon the connection.  There's not much else we can
     127                 :             :                                  * safely do; we can't just ignore the message or we could
     128                 :             :                                  * miss important changes to the connection state.
     129                 :             :                                  * pqCheckInBufferSpace() already reported the error.
     130                 :             :                                  */
     131                 :           0 :                                 handleFatalError(conn);
     132                 :           0 :                         }
     133                 :          73 :                         return;
     134                 :             :                 }
     135                 :             : 
     136                 :             :                 /*
     137                 :             :                  * NOTIFY and NOTICE messages can happen in any state; always process
     138                 :             :                  * them right away.
     139                 :             :                  *
     140                 :             :                  * Most other messages should only be processed while in BUSY state.
     141                 :             :                  * (In particular, in READY state we hold off further parsing until
     142                 :             :                  * the application collects the current PGresult.)
     143                 :             :                  *
     144                 :             :                  * However, if the state is IDLE then we got trouble; we need to deal
     145                 :             :                  * with the unexpected message somehow.
     146                 :             :                  *
     147                 :             :                  * ParameterStatus ('S') messages are a special case: in IDLE state we
     148                 :             :                  * must process 'em (this case could happen if a new value was adopted
     149                 :             :                  * from config file due to SIGHUP), but otherwise we hold off until
     150                 :             :                  * BUSY state.
     151                 :             :                  */
     152         [ -  + ]:      288795 :                 if (id == PqMsg_NotificationResponse)
     153                 :             :                 {
     154         [ #  # ]:           0 :                         if (getNotify(conn))
     155                 :           0 :                                 return;
     156                 :           0 :                 }
     157         [ +  + ]:      288795 :                 else if (id == PqMsg_NoticeResponse)
     158                 :             :                 {
     159         [ +  - ]:        2868 :                         if (pqGetErrorNotice3(conn, false))
     160                 :           0 :                                 return;
     161                 :        2868 :                 }
     162         [ +  + ]:      285927 :                 else if (conn->asyncStatus != PGASYNC_BUSY)
     163                 :             :                 {
     164                 :             :                         /* If not IDLE state, just wait ... */
     165         [ +  - ]:       55909 :                         if (conn->asyncStatus != PGASYNC_IDLE)
     166                 :       55909 :                                 return;
     167                 :             : 
     168                 :             :                         /*
     169                 :             :                          * Unexpected message in IDLE state; need to recover somehow.
     170                 :             :                          * ERROR messages are handled using the notice processor;
     171                 :             :                          * ParameterStatus is handled normally; anything else is just
     172                 :             :                          * dropped on the floor after displaying a suitable warning
     173                 :             :                          * notice.  (An ERROR is very possibly the backend telling us why
     174                 :             :                          * it is about to close the connection, so we don't want to just
     175                 :             :                          * discard it...)
     176                 :             :                          */
     177         [ #  # ]:           0 :                         if (id == PqMsg_ErrorResponse)
     178                 :             :                         {
     179         [ #  # ]:           0 :                                 if (pqGetErrorNotice3(conn, false /* treat as notice */ ))
     180                 :           0 :                                         return;
     181                 :           0 :                         }
     182         [ #  # ]:           0 :                         else if (id == PqMsg_ParameterStatus)
     183                 :             :                         {
     184         [ #  # ]:           0 :                                 if (getParameterStatus(conn))
     185                 :           0 :                                         return;
     186                 :           0 :                         }
     187                 :             :                         else
     188                 :             :                         {
     189                 :             :                                 /* Any other case is unexpected and we summarily skip it */
     190                 :           0 :                                 pqInternalNotice(&conn->noticeHooks,
     191                 :             :                                                                  "message type 0x%02x arrived from server while idle",
     192                 :           0 :                                                                  id);
     193                 :             :                                 /* Discard the unexpected message */
     194                 :           0 :                                 conn->inCursor += msgLength;
     195                 :             :                         }
     196                 :           0 :                 }
     197                 :             :                 else
     198                 :             :                 {
     199                 :             :                         /*
     200                 :             :                          * In BUSY state, we can process everything.
     201                 :             :                          */
     202   [ +  +  +  -  :      230018 :                         switch (id)
          +  +  +  +  +  
          +  +  +  +  +  
             +  +  -  - ]
     203                 :             :                         {
     204                 :             :                                 case PqMsg_CommandComplete:
     205         [ -  + ]:       51362 :                                         if (pqGets(&conn->workBuffer, conn))
     206                 :           0 :                                                 return;
     207   [ +  +  -  + ]:       51362 :                                         if (!pgHavePendingResult(conn))
     208                 :             :                                         {
     209                 :       25505 :                                                 conn->result = PQmakeEmptyPGresult(conn,
     210                 :             :                                                                                                                    PGRES_COMMAND_OK);
     211         [ +  - ]:       25505 :                                                 if (!conn->result)
     212                 :             :                                                 {
     213                 :           0 :                                                         libpq_append_conn_error(conn, "out of memory");
     214                 :           0 :                                                         pqSaveErrorResult(conn);
     215                 :           0 :                                                 }
     216                 :       25505 :                                         }
     217         [ +  - ]:       51362 :                                         if (conn->result)
     218                 :       51362 :                                                 strlcpy(conn->result->cmdStatus, conn->workBuffer.data,
     219                 :             :                                                                 CMDSTATUS_LEN);
     220                 :       51362 :                                         conn->asyncStatus = PGASYNC_READY;
     221                 :       51362 :                                         break;
     222                 :             :                                 case PqMsg_ErrorResponse:
     223         [ +  - ]:        6763 :                                         if (pqGetErrorNotice3(conn, true))
     224                 :           0 :                                                 return;
     225                 :        6763 :                                         conn->asyncStatus = PGASYNC_READY;
     226                 :        6763 :                                         break;
     227                 :             :                                 case PqMsg_ReadyForQuery:
     228         [ +  - ]:       58332 :                                         if (getReadyForQuery(conn))
     229                 :           0 :                                                 return;
     230         [ +  + ]:       58332 :                                         if (conn->pipelineStatus != PQ_PIPELINE_OFF)
     231                 :             :                                         {
     232                 :          63 :                                                 conn->result = PQmakeEmptyPGresult(conn,
     233                 :             :                                                                                                                    PGRES_PIPELINE_SYNC);
     234         [ +  - ]:          63 :                                                 if (!conn->result)
     235                 :             :                                                 {
     236                 :           0 :                                                         libpq_append_conn_error(conn, "out of memory");
     237                 :           0 :                                                         pqSaveErrorResult(conn);
     238                 :           0 :                                                 }
     239                 :             :                                                 else
     240                 :             :                                                 {
     241                 :          63 :                                                         conn->pipelineStatus = PQ_PIPELINE_ON;
     242                 :          63 :                                                         conn->asyncStatus = PGASYNC_READY;
     243                 :             :                                                 }
     244                 :          63 :                                         }
     245                 :             :                                         else
     246                 :             :                                         {
     247                 :             :                                                 /* Advance the command queue and set us idle */
     248                 :       58269 :                                                 pqCommandQueueAdvance(conn, true, false);
     249                 :       58269 :                                                 conn->asyncStatus = PGASYNC_IDLE;
     250                 :             :                                         }
     251                 :       58332 :                                         break;
     252                 :             :                                 case PqMsg_EmptyQueryResponse:
     253   [ +  -  -  + ]:           7 :                                         if (!pgHavePendingResult(conn))
     254                 :             :                                         {
     255                 :           7 :                                                 conn->result = PQmakeEmptyPGresult(conn,
     256                 :             :                                                                                                                    PGRES_EMPTY_QUERY);
     257         [ +  - ]:           7 :                                                 if (!conn->result)
     258                 :             :                                                 {
     259                 :           0 :                                                         libpq_append_conn_error(conn, "out of memory");
     260                 :           0 :                                                         pqSaveErrorResult(conn);
     261                 :           0 :                                                 }
     262                 :           7 :                                         }
     263                 :           7 :                                         conn->asyncStatus = PGASYNC_READY;
     264                 :           7 :                                         break;
     265                 :             :                                 case PqMsg_ParseComplete:
     266                 :             :                                         /* If we're doing PQprepare, we're done; else ignore */
     267   [ +  -  +  + ]:         116 :                                         if (conn->cmd_queue_head &&
     268                 :         116 :                                                 conn->cmd_queue_head->queryclass == PGQUERY_PREPARE)
     269                 :             :                                         {
     270   [ +  -  -  + ]:          20 :                                                 if (!pgHavePendingResult(conn))
     271                 :             :                                                 {
     272                 :          20 :                                                         conn->result = PQmakeEmptyPGresult(conn,
     273                 :             :                                                                                                                            PGRES_COMMAND_OK);
     274         [ -  + ]:          20 :                                                         if (!conn->result)
     275                 :             :                                                         {
     276                 :           0 :                                                                 libpq_append_conn_error(conn, "out of memory");
     277                 :           0 :                                                                 pqSaveErrorResult(conn);
     278                 :           0 :                                                         }
     279                 :          20 :                                                 }
     280                 :          20 :                                                 conn->asyncStatus = PGASYNC_READY;
     281                 :          20 :                                         }
     282                 :         116 :                                         break;
     283                 :             :                                 case PqMsg_BindComplete:
     284                 :             :                                         /* Nothing to do for this message type */
     285                 :             :                                         break;
     286                 :             :                                 case PqMsg_CloseComplete:
     287                 :             :                                         /* If we're doing PQsendClose, we're done; else ignore */
     288   [ +  -  -  + ]:           4 :                                         if (conn->cmd_queue_head &&
     289                 :           4 :                                                 conn->cmd_queue_head->queryclass == PGQUERY_CLOSE)
     290                 :             :                                         {
     291   [ +  -  -  + ]:           4 :                                                 if (!pgHavePendingResult(conn))
     292                 :             :                                                 {
     293                 :           4 :                                                         conn->result = PQmakeEmptyPGresult(conn,
     294                 :             :                                                                                                                            PGRES_COMMAND_OK);
     295         [ +  - ]:           4 :                                                         if (!conn->result)
     296                 :             :                                                         {
     297                 :           0 :                                                                 libpq_append_conn_error(conn, "out of memory");
     298                 :           0 :                                                                 pqSaveErrorResult(conn);
     299                 :           0 :                                                         }
     300                 :           4 :                                                 }
     301                 :           4 :                                                 conn->asyncStatus = PGASYNC_READY;
     302                 :           4 :                                         }
     303                 :           4 :                                         break;
     304                 :             :                                 case PqMsg_ParameterStatus:
     305         [ -  + ]:        6032 :                                         if (getParameterStatus(conn))
     306                 :           0 :                                                 return;
     307                 :        6032 :                                         break;
     308                 :             :                                 case PqMsg_BackendKeyData:
     309                 :             : 
     310                 :             :                                         /*
     311                 :             :                                          * This is expected only during backend startup, but it's
     312                 :             :                                          * just as easy to handle it as part of the main loop.
     313                 :             :                                          * Save the data and continue processing.
     314                 :             :                                          */
     315         [ +  - ]:         316 :                                         if (getBackendKeyData(conn, msgLength))
     316                 :           0 :                                                 return;
     317                 :         316 :                                         break;
     318                 :             :                                 case PqMsg_RowDescription:
     319   [ +  -  -  + ]:       26813 :                                         if (conn->error_result ||
     320         [ +  + ]:       26806 :                                                 (conn->result != NULL &&
     321                 :           7 :                                                  conn->result->resultStatus == PGRES_FATAL_ERROR))
     322                 :             :                                         {
     323                 :             :                                                 /*
     324                 :             :                                                  * We've already choked for some reason.  Just discard
     325                 :             :                                                  * the data till we get to the end of the query.
     326                 :             :                                                  */
     327                 :           0 :                                                 conn->inCursor += msgLength;
     328                 :           0 :                                         }
     329   [ +  +  +  - ]:       26813 :                                         else if (conn->result == NULL ||
     330         [ +  - ]:           7 :                                                          (conn->cmd_queue_head &&
     331                 :           7 :                                                           conn->cmd_queue_head->queryclass == PGQUERY_DESCRIBE))
     332                 :             :                                         {
     333                 :             :                                                 /* First 'T' in a query sequence */
     334         [ +  - ]:       26806 :                                                 if (getRowDescriptions(conn, msgLength))
     335                 :           0 :                                                         return;
     336                 :       26806 :                                         }
     337                 :             :                                         else
     338                 :             :                                         {
     339                 :             :                                                 /*
     340                 :             :                                                  * A new 'T' message is treated as the start of
     341                 :             :                                                  * another PGresult.  (It is not clear that this is
     342                 :             :                                                  * really possible with the current backend.) We stop
     343                 :             :                                                  * parsing until the application accepts the current
     344                 :             :                                                  * result.
     345                 :             :                                                  */
     346                 :           0 :                                                 conn->asyncStatus = PGASYNC_READY;
     347                 :           0 :                                                 return;
     348                 :             :                                         }
     349                 :       26806 :                                         break;
     350                 :             :                                 case PqMsg_NoData:
     351                 :             : 
     352                 :             :                                         /*
     353                 :             :                                          * NoData indicates that we will not be seeing a
     354                 :             :                                          * RowDescription message because the statement or portal
     355                 :             :                                          * inquired about doesn't return rows.
     356                 :             :                                          *
     357                 :             :                                          * If we're doing a Describe, we have to pass something
     358                 :             :                                          * back to the client, so set up a COMMAND_OK result,
     359                 :             :                                          * instead of PGRES_TUPLES_OK.  Otherwise we can just
     360                 :             :                                          * ignore this message.
     361                 :             :                                          */
     362   [ +  -  +  + ]:          24 :                                         if (conn->cmd_queue_head &&
     363                 :          24 :                                                 conn->cmd_queue_head->queryclass == PGQUERY_DESCRIBE)
     364                 :             :                                         {
     365   [ -  +  #  # ]:           2 :                                                 if (!pgHavePendingResult(conn))
     366                 :             :                                                 {
     367                 :           0 :                                                         conn->result = PQmakeEmptyPGresult(conn,
     368                 :             :                                                                                                                            PGRES_COMMAND_OK);
     369         [ #  # ]:           0 :                                                         if (!conn->result)
     370                 :             :                                                         {
     371                 :           0 :                                                                 libpq_append_conn_error(conn, "out of memory");
     372                 :           0 :                                                                 pqSaveErrorResult(conn);
     373                 :           0 :                                                         }
     374                 :           0 :                                                 }
     375                 :           2 :                                                 conn->asyncStatus = PGASYNC_READY;
     376                 :           2 :                                         }
     377                 :          24 :                                         break;
     378                 :             :                                 case PqMsg_ParameterDescription:
     379         [ +  - ]:           9 :                                         if (getParamDescriptions(conn, msgLength))
     380                 :           0 :                                                 return;
     381                 :           9 :                                         break;
     382                 :             :                                 case PqMsg_DataRow:
     383   [ +  -  +  - ]:       79869 :                                         if (conn->result != NULL &&
     384         [ +  + ]:       79839 :                                                 (conn->result->resultStatus == PGRES_TUPLES_OK ||
     385                 :          30 :                                                  conn->result->resultStatus == PGRES_TUPLES_CHUNK))
     386                 :             :                                         {
     387                 :             :                                                 /* Read another tuple of a normal query response */
     388         [ -  + ]:       79839 :                                                 if (getAnotherTuple(conn, msgLength))
     389                 :           0 :                                                         return;
     390                 :       79839 :                                         }
     391   [ #  #  #  # ]:           0 :                                         else if (conn->error_result ||
     392         [ #  # ]:           0 :                                                          (conn->result != NULL &&
     393                 :           0 :                                                           conn->result->resultStatus == PGRES_FATAL_ERROR))
     394                 :             :                                         {
     395                 :             :                                                 /*
     396                 :             :                                                  * We've already choked for some reason.  Just discard
     397                 :             :                                                  * tuples till we get to the end of the query.
     398                 :             :                                                  */
     399                 :           0 :                                                 conn->inCursor += msgLength;
     400                 :           0 :                                         }
     401                 :             :                                         else
     402                 :             :                                         {
     403                 :             :                                                 /* Set up to report error at end of query */
     404                 :           0 :                                                 libpq_append_conn_error(conn, "server sent data (\"D\" message) without prior row description (\"T\" message)");
     405                 :           0 :                                                 pqSaveErrorResult(conn);
     406                 :             :                                                 /* Discard the unexpected message */
     407                 :           0 :                                                 conn->inCursor += msgLength;
     408                 :             :                                         }
     409                 :       79839 :                                         break;
     410                 :             :                                 case PqMsg_CopyInResponse:
     411         [ +  - ]:         132 :                                         if (getCopyStart(conn, PGRES_COPY_IN))
     412                 :           0 :                                                 return;
     413                 :         132 :                                         conn->asyncStatus = PGASYNC_COPY_IN;
     414                 :         132 :                                         break;
     415                 :             :                                 case PqMsg_CopyOutResponse:
     416         [ +  - ]:          89 :                                         if (getCopyStart(conn, PGRES_COPY_OUT))
     417                 :           0 :                                                 return;
     418                 :          89 :                                         conn->asyncStatus = PGASYNC_COPY_OUT;
     419                 :          89 :                                         conn->copy_already_done = 0;
     420                 :          89 :                                         break;
     421                 :             :                                 case PqMsg_CopyBothResponse:
     422         [ #  # ]:           0 :                                         if (getCopyStart(conn, PGRES_COPY_BOTH))
     423                 :           0 :                                                 return;
     424                 :           0 :                                         conn->asyncStatus = PGASYNC_COPY_BOTH;
     425                 :           0 :                                         conn->copy_already_done = 0;
     426                 :           0 :                                         break;
     427                 :             :                                 case PqMsg_CopyData:
     428                 :             : 
     429                 :             :                                         /*
     430                 :             :                                          * If we see Copy Data, just silently drop it.  This would
     431                 :             :                                          * only occur if application exits COPY OUT mode too
     432                 :             :                                          * early.
     433                 :             :                                          */
     434                 :           0 :                                         conn->inCursor += msgLength;
     435                 :           0 :                                         break;
     436                 :             :                                 case PqMsg_CopyDone:
     437                 :             : 
     438                 :             :                                         /*
     439                 :             :                                          * If we see Copy Done, just silently drop it.  This is
     440                 :             :                                          * the normal case during PQendcopy.  We will keep
     441                 :             :                                          * swallowing data, expecting to see command-complete for
     442                 :             :                                          * the COPY command.
     443                 :             :                                          */
     444                 :             :                                         break;
     445                 :             :                                 default:
     446                 :           0 :                                         libpq_append_conn_error(conn, "unexpected response from server; first received character was \"%c\"", id);
     447                 :             :                                         /* build an error result holding the error message */
     448                 :           0 :                                         pqSaveErrorResult(conn);
     449                 :             :                                         /* not sure if we will see more, so go to ready state */
     450                 :           0 :                                         conn->asyncStatus = PGASYNC_READY;
     451                 :             :                                         /* Discard the unexpected message */
     452                 :           0 :                                         conn->inCursor += msgLength;
     453                 :           0 :                                         break;
     454                 :             :                         }                                       /* switch on protocol character */
     455                 :             :                 }
     456                 :             :                 /* Successfully consumed this message */
     457         [ +  - ]:      232886 :                 if (conn->inCursor == conn->inStart + 5 + msgLength)
     458                 :             :                 {
     459                 :             :                         /* Normal case: parsing agrees with specified length */
     460                 :      232886 :                         pqParseDone(conn, conn->inCursor);
     461                 :      232886 :                 }
     462   [ #  #  #  # ]:           0 :                 else if (conn->error_result && conn->status == CONNECTION_BAD)
     463                 :             :                 {
     464                 :             :                         /* The connection was abandoned and we already reported it */
     465                 :           0 :                         return;
     466                 :             :                 }
     467                 :             :                 else
     468                 :             :                 {
     469                 :             :                         /* Trouble --- report it */
     470                 :           0 :                         libpq_append_conn_error(conn, "message contents do not agree with length in message type \"%c\"", id);
     471                 :             :                         /* build an error result holding the error message */
     472                 :           0 :                         pqSaveErrorResult(conn);
     473                 :           0 :                         conn->asyncStatus = PGASYNC_READY;
     474                 :             :                         /* trust the specified message length as what to skip */
     475                 :           0 :                         conn->inStart += 5 + msgLength;
     476                 :             :                 }
     477                 :             :         }
     478                 :      238071 : }
     479                 :             : 
     480                 :             : /*
     481                 :             :  * handleFatalError: clean up after a nonrecoverable error
     482                 :             :  *
     483                 :             :  * This is for errors where we need to abandon the connection.  The caller has
     484                 :             :  * already saved the error message in conn->errorMessage.
     485                 :             :  */
     486                 :             : static void
     487                 :           0 : handleFatalError(PGconn *conn)
     488                 :             : {
     489                 :             :         /* build an error result holding the error message */
     490                 :           0 :         pqSaveErrorResult(conn);
     491                 :           0 :         conn->asyncStatus = PGASYNC_READY;   /* drop out of PQgetResult wait loop */
     492                 :             :         /* flush input data since we're giving up on processing it */
     493                 :           0 :         pqDropConnection(conn, true);
     494                 :           0 :         conn->status = CONNECTION_BAD;       /* No more connection to backend */
     495                 :           0 : }
     496                 :             : 
     497                 :             : /*
     498                 :             :  * handleSyncLoss: clean up after loss of message-boundary sync
     499                 :             :  *
     500                 :             :  * There isn't really a lot we can do here except abandon the connection.
     501                 :             :  */
     502                 :             : static void
     503                 :           0 : handleSyncLoss(PGconn *conn, char id, int msgLength)
     504                 :             : {
     505                 :           0 :         libpq_append_conn_error(conn, "lost synchronization with server: got message type \"%c\", length %d",
     506                 :           0 :                                                         id, msgLength);
     507                 :           0 :         handleFatalError(conn);
     508                 :           0 : }
     509                 :             : 
     510                 :             : /*
     511                 :             :  * parseInput subroutine to read a 'T' (row descriptions) message.
     512                 :             :  * We'll build a new PGresult structure (unless called for a Describe
     513                 :             :  * command for a prepared statement) containing the attribute data.
     514                 :             :  * Returns: 0 if processed message successfully, EOF to suspend parsing
     515                 :             :  * (the latter case is not actually used currently).
     516                 :             :  */
     517                 :             : static int
     518                 :       26806 : getRowDescriptions(PGconn *conn, int msgLength)
     519                 :             : {
     520                 :       26806 :         PGresult   *result;
     521                 :       26806 :         int                     nfields;
     522                 :       26806 :         const char *errmsg;
     523                 :       26806 :         int                     i;
     524                 :             : 
     525                 :             :         /*
     526                 :             :          * When doing Describe for a prepared statement, there'll already be a
     527                 :             :          * PGresult created by getParamDescriptions, and we should fill data into
     528                 :             :          * that.  Otherwise, create a new, empty PGresult.
     529                 :             :          */
     530   [ +  -  +  + ]:       53612 :         if (!conn->cmd_queue_head ||
     531         [ +  - ]:       26806 :                 (conn->cmd_queue_head &&
     532                 :       26806 :                  conn->cmd_queue_head->queryclass == PGQUERY_DESCRIBE))
     533                 :             :         {
     534         [ +  - ]:           7 :                 if (conn->result)
     535                 :           7 :                         result = conn->result;
     536                 :             :                 else
     537                 :           0 :                         result = PQmakeEmptyPGresult(conn, PGRES_COMMAND_OK);
     538                 :           7 :         }
     539                 :             :         else
     540                 :       26799 :                 result = PQmakeEmptyPGresult(conn, PGRES_TUPLES_OK);
     541         [ +  - ]:       26806 :         if (!result)
     542                 :             :         {
     543                 :           0 :                 errmsg = NULL;                  /* means "out of memory", see below */
     544                 :           0 :                 goto advance_and_error;
     545                 :             :         }
     546                 :             : 
     547                 :             :         /* parseInput already read the 'T' label and message length. */
     548                 :             :         /* the next two bytes are the number of fields */
     549         [ -  + ]:       26806 :         if (pqGetInt(&(result->numAttributes), 2, conn))
     550                 :             :         {
     551                 :             :                 /* We should not run out of data here, so complain */
     552                 :           0 :                 errmsg = libpq_gettext("insufficient data in \"T\" message");
     553                 :           0 :                 goto advance_and_error;
     554                 :             :         }
     555                 :       26806 :         nfields = result->numAttributes;
     556                 :             : 
     557                 :             :         /* allocate space for the attribute descriptors */
     558         [ +  + ]:       26806 :         if (nfields > 0)
     559                 :             :         {
     560                 :       26784 :                 result->attDescs = (PGresAttDesc *)
     561                 :       26784 :                         pqResultAlloc(result, nfields * sizeof(PGresAttDesc), true);
     562         [ +  - ]:       26784 :                 if (!result->attDescs)
     563                 :             :                 {
     564                 :           0 :                         errmsg = NULL;          /* means "out of memory", see below */
     565                 :           0 :                         goto advance_and_error;
     566                 :             :                 }
     567   [ +  -  +  -  :      327580 :                 MemSet(result->attDescs, 0, nfields * sizeof(PGresAttDesc));
          +  -  -  +  +  
                      + ]
     568                 :       26784 :         }
     569                 :             : 
     570                 :             :         /* result->binary is true only if ALL columns are binary */
     571                 :       26806 :         result->binary = (nfields > 0) ? 1 : 0;
     572                 :             : 
     573                 :             :         /* get type info */
     574         [ +  + ]:      102005 :         for (i = 0; i < nfields; i++)
     575                 :             :         {
     576                 :       75199 :                 int                     tableid;
     577                 :       75199 :                 int                     columnid;
     578                 :       75199 :                 int                     typid;
     579                 :       75199 :                 int                     typlen;
     580                 :       75199 :                 int                     atttypmod;
     581                 :       75199 :                 int                     format;
     582                 :             : 
     583         [ +  - ]:       75199 :                 if (pqGets(&conn->workBuffer, conn) ||
     584         [ +  - ]:       75199 :                         pqGetInt(&tableid, 4, conn) ||
     585         [ +  - ]:       75199 :                         pqGetInt(&columnid, 2, conn) ||
     586         [ +  - ]:       75199 :                         pqGetInt(&typid, 4, conn) ||
     587         [ +  - ]:       75199 :                         pqGetInt(&typlen, 2, conn) ||
     588   [ +  -  -  + ]:       75199 :                         pqGetInt(&atttypmod, 4, conn) ||
     589                 :       75199 :                         pqGetInt(&format, 2, conn))
     590                 :             :                 {
     591                 :             :                         /* We should not run out of data here, so complain */
     592                 :           0 :                         errmsg = libpq_gettext("insufficient data in \"T\" message");
     593                 :           0 :                         goto advance_and_error;
     594                 :             :                 }
     595                 :             : 
     596                 :             :                 /*
     597                 :             :                  * Since pqGetInt treats 2-byte integers as unsigned, we need to
     598                 :             :                  * coerce these results to signed form.
     599                 :             :                  */
     600                 :       75199 :                 columnid = (int) ((int16) columnid);
     601                 :       75199 :                 typlen = (int) ((int16) typlen);
     602                 :       75199 :                 format = (int) ((int16) format);
     603                 :             : 
     604                 :      150398 :                 result->attDescs[i].name = pqResultStrdup(result,
     605                 :       75199 :                                                                                                   conn->workBuffer.data);
     606         [ +  - ]:       75199 :                 if (!result->attDescs[i].name)
     607                 :             :                 {
     608                 :           0 :                         errmsg = NULL;          /* means "out of memory", see below */
     609                 :           0 :                         goto advance_and_error;
     610                 :             :                 }
     611                 :       75199 :                 result->attDescs[i].tableid = tableid;
     612                 :       75199 :                 result->attDescs[i].columnid = columnid;
     613                 :       75199 :                 result->attDescs[i].format = format;
     614                 :       75199 :                 result->attDescs[i].typid = typid;
     615                 :       75199 :                 result->attDescs[i].typlen = typlen;
     616                 :       75199 :                 result->attDescs[i].atttypmod = atttypmod;
     617                 :             : 
     618         [ -  + ]:       75199 :                 if (format != 1)
     619                 :       75199 :                         result->binary = 0;
     620      [ -  -  + ]:       75199 :         }
     621                 :             : 
     622                 :             :         /* Success! */
     623                 :       26806 :         conn->result = result;
     624                 :             : 
     625                 :             :         /*
     626                 :             :          * If we're doing a Describe, we're done, and ready to pass the result
     627                 :             :          * back to the client.
     628                 :             :          */
     629   [ +  -  +  + ]:       53612 :         if ((!conn->cmd_queue_head) ||
     630         [ +  - ]:       26806 :                 (conn->cmd_queue_head &&
     631                 :       26806 :                  conn->cmd_queue_head->queryclass == PGQUERY_DESCRIBE))
     632                 :             :         {
     633                 :           7 :                 conn->asyncStatus = PGASYNC_READY;
     634                 :           7 :                 return 0;
     635                 :             :         }
     636                 :             : 
     637                 :             :         /*
     638                 :             :          * We could perform additional setup for the new result set here, but for
     639                 :             :          * now there's nothing else to do.
     640                 :             :          */
     641                 :             : 
     642                 :             :         /* And we're done. */
     643                 :       26799 :         return 0;
     644                 :             : 
     645                 :             : advance_and_error:
     646                 :             :         /* Discard unsaved result, if any */
     647   [ #  #  #  # ]:           0 :         if (result && result != conn->result)
     648                 :           0 :                 PQclear(result);
     649                 :             : 
     650                 :             :         /*
     651                 :             :          * Replace partially constructed result with an error result. First
     652                 :             :          * discard the old result to try to win back some memory.
     653                 :             :          */
     654                 :           0 :         pqClearAsyncResult(conn);
     655                 :             : 
     656                 :             :         /*
     657                 :             :          * If preceding code didn't provide an error message, assume "out of
     658                 :             :          * memory" was meant.  The advantage of having this special case is that
     659                 :             :          * freeing the old result first greatly improves the odds that gettext()
     660                 :             :          * will succeed in providing a translation.
     661                 :             :          */
     662         [ #  # ]:           0 :         if (!errmsg)
     663                 :           0 :                 errmsg = libpq_gettext("out of memory for query result");
     664                 :             : 
     665                 :           0 :         appendPQExpBuffer(&conn->errorMessage, "%s\n", errmsg);
     666                 :           0 :         pqSaveErrorResult(conn);
     667                 :             : 
     668                 :             :         /*
     669                 :             :          * Show the message as fully consumed, else pqParseInput3 will overwrite
     670                 :             :          * our error with a complaint about that.
     671                 :             :          */
     672                 :           0 :         conn->inCursor = conn->inStart + 5 + msgLength;
     673                 :             : 
     674                 :             :         /*
     675                 :             :          * Return zero to allow input parsing to continue.  Subsequent "D"
     676                 :             :          * messages will be ignored until we get to end of data, since an error
     677                 :             :          * result is already set up.
     678                 :             :          */
     679                 :           0 :         return 0;
     680                 :       26806 : }
     681                 :             : 
     682                 :             : /*
     683                 :             :  * parseInput subroutine to read a 't' (ParameterDescription) message.
     684                 :             :  * We'll build a new PGresult structure containing the parameter data.
     685                 :             :  * Returns: 0 if processed message successfully, EOF to suspend parsing
     686                 :             :  * (the latter case is not actually used currently).
     687                 :             :  */
     688                 :             : static int
     689                 :           9 : getParamDescriptions(PGconn *conn, int msgLength)
     690                 :             : {
     691                 :           9 :         PGresult   *result;
     692                 :           9 :         const char *errmsg = NULL;      /* means "out of memory", see below */
     693                 :           9 :         int                     nparams;
     694                 :           9 :         int                     i;
     695                 :             : 
     696                 :           9 :         result = PQmakeEmptyPGresult(conn, PGRES_COMMAND_OK);
     697         [ +  - ]:           9 :         if (!result)
     698                 :           0 :                 goto advance_and_error;
     699                 :             : 
     700                 :             :         /* parseInput already read the 't' label and message length. */
     701                 :             :         /* the next two bytes are the number of parameters */
     702         [ -  + ]:           9 :         if (pqGetInt(&(result->numParameters), 2, conn))
     703                 :           0 :                 goto not_enough_data;
     704                 :           9 :         nparams = result->numParameters;
     705                 :             : 
     706                 :             :         /* allocate space for the parameter descriptors */
     707         [ +  + ]:           9 :         if (nparams > 0)
     708                 :             :         {
     709                 :           1 :                 result->paramDescs = (PGresParamDesc *)
     710                 :           1 :                         pqResultAlloc(result, nparams * sizeof(PGresParamDesc), true);
     711         [ +  - ]:           1 :                 if (!result->paramDescs)
     712                 :           0 :                         goto advance_and_error;
     713   [ +  -  +  -  :           2 :                 MemSet(result->paramDescs, 0, nparams * sizeof(PGresParamDesc));
          +  -  -  +  +  
                      + ]
     714                 :           1 :         }
     715                 :             : 
     716                 :             :         /* get parameter info */
     717         [ +  + ]:          11 :         for (i = 0; i < nparams; i++)
     718                 :             :         {
     719                 :           2 :                 int                     typid;
     720                 :             : 
     721         [ -  + ]:           2 :                 if (pqGetInt(&typid, 4, conn))
     722                 :           0 :                         goto not_enough_data;
     723                 :           2 :                 result->paramDescs[i].typid = typid;
     724      [ -  -  + ]:           2 :         }
     725                 :             : 
     726                 :             :         /* Success! */
     727                 :           9 :         conn->result = result;
     728                 :             : 
     729                 :           9 :         return 0;
     730                 :             : 
     731                 :             : not_enough_data:
     732                 :           0 :         errmsg = libpq_gettext("insufficient data in \"t\" message");
     733                 :             : 
     734                 :             : advance_and_error:
     735                 :             :         /* Discard unsaved result, if any */
     736   [ #  #  #  # ]:           0 :         if (result && result != conn->result)
     737                 :           0 :                 PQclear(result);
     738                 :             : 
     739                 :             :         /*
     740                 :             :          * Replace partially constructed result with an error result. First
     741                 :             :          * discard the old result to try to win back some memory.
     742                 :             :          */
     743                 :           0 :         pqClearAsyncResult(conn);
     744                 :             : 
     745                 :             :         /*
     746                 :             :          * If preceding code didn't provide an error message, assume "out of
     747                 :             :          * memory" was meant.  The advantage of having this special case is that
     748                 :             :          * freeing the old result first greatly improves the odds that gettext()
     749                 :             :          * will succeed in providing a translation.
     750                 :             :          */
     751         [ #  # ]:           0 :         if (!errmsg)
     752                 :           0 :                 errmsg = libpq_gettext("out of memory");
     753                 :           0 :         appendPQExpBuffer(&conn->errorMessage, "%s\n", errmsg);
     754                 :           0 :         pqSaveErrorResult(conn);
     755                 :             : 
     756                 :             :         /*
     757                 :             :          * Show the message as fully consumed, else pqParseInput3 will overwrite
     758                 :             :          * our error with a complaint about that.
     759                 :             :          */
     760                 :           0 :         conn->inCursor = conn->inStart + 5 + msgLength;
     761                 :             : 
     762                 :             :         /*
     763                 :             :          * Return zero to allow input parsing to continue.  Essentially, we've
     764                 :             :          * replaced the COMMAND_OK result with an error result, but since this
     765                 :             :          * doesn't affect the protocol state, it's fine.
     766                 :             :          */
     767                 :           0 :         return 0;
     768                 :           9 : }
     769                 :             : 
     770                 :             : /*
     771                 :             :  * parseInput subroutine to read a 'D' (row data) message.
     772                 :             :  * We fill rowbuf with column pointers and then call the row processor.
     773                 :             :  * Returns: 0 if processed message successfully, EOF to suspend parsing
     774                 :             :  * (the latter case is not actually used currently).
     775                 :             :  */
     776                 :             : static int
     777                 :       79839 : getAnotherTuple(PGconn *conn, int msgLength)
     778                 :             : {
     779                 :       79839 :         PGresult   *result = conn->result;
     780                 :       79839 :         int                     nfields = result->numAttributes;
     781                 :       79839 :         const char *errmsg;
     782                 :       79839 :         PGdataValue *rowbuf;
     783                 :       79839 :         int                     tupnfields;             /* # fields from tuple */
     784                 :       79839 :         int                     vlen;                   /* length of the current field value */
     785                 :       79839 :         int                     i;
     786                 :             : 
     787                 :             :         /* Get the field count and make sure it's what we expect */
     788         [ -  + ]:       79839 :         if (pqGetInt(&tupnfields, 2, conn))
     789                 :             :         {
     790                 :             :                 /* We should not run out of data here, so complain */
     791                 :           0 :                 errmsg = libpq_gettext("insufficient data in \"D\" message");
     792                 :           0 :                 goto advance_and_error;
     793                 :             :         }
     794                 :             : 
     795         [ -  + ]:       79839 :         if (tupnfields != nfields)
     796                 :             :         {
     797                 :           0 :                 errmsg = libpq_gettext("unexpected field count in \"D\" message");
     798                 :           0 :                 goto advance_and_error;
     799                 :             :         }
     800                 :             : 
     801                 :             :         /* Resize row buffer if needed */
     802                 :       79839 :         rowbuf = conn->rowBuf;
     803         [ +  - ]:       79839 :         if (nfields > conn->rowBufLen)
     804                 :             :         {
     805                 :           0 :                 rowbuf = (PGdataValue *) realloc(rowbuf,
     806                 :           0 :                                                                                  nfields * sizeof(PGdataValue));
     807         [ #  # ]:           0 :                 if (!rowbuf)
     808                 :             :                 {
     809                 :           0 :                         errmsg = NULL;          /* means "out of memory", see below */
     810                 :           0 :                         goto advance_and_error;
     811                 :             :                 }
     812                 :           0 :                 conn->rowBuf = rowbuf;
     813                 :           0 :                 conn->rowBufLen = nfields;
     814                 :           0 :         }
     815                 :             : 
     816                 :             :         /* Scan the fields */
     817         [ +  + ]:      285236 :         for (i = 0; i < nfields; i++)
     818                 :             :         {
     819                 :             :                 /* get the value length */
     820         [ -  + ]:      205397 :                 if (pqGetInt(&vlen, 4, conn))
     821                 :             :                 {
     822                 :             :                         /* We should not run out of data here, so complain */
     823                 :           0 :                         errmsg = libpq_gettext("insufficient data in \"D\" message");
     824                 :           0 :                         goto advance_and_error;
     825                 :             :                 }
     826                 :      205397 :                 rowbuf[i].len = vlen;
     827                 :             : 
     828                 :             :                 /*
     829                 :             :                  * rowbuf[i].value always points to the next address in the data
     830                 :             :                  * buffer even if the value is NULL.  This allows row processors to
     831                 :             :                  * estimate data sizes more easily.
     832                 :             :                  */
     833                 :      205397 :                 rowbuf[i].value = conn->inBuffer + conn->inCursor;
     834                 :             : 
     835                 :             :                 /* Skip over the data value */
     836         [ +  + ]:      205397 :                 if (vlen > 0)
     837                 :             :                 {
     838         [ +  - ]:      186542 :                         if (pqSkipnchar(vlen, conn))
     839                 :             :                         {
     840                 :             :                                 /* We should not run out of data here, so complain */
     841                 :           0 :                                 errmsg = libpq_gettext("insufficient data in \"D\" message");
     842                 :           0 :                                 goto advance_and_error;
     843                 :             :                         }
     844                 :      186542 :                 }
     845                 :      205397 :         }
     846                 :             : 
     847                 :             :         /* Process the collected row */
     848                 :       79839 :         errmsg = NULL;
     849         [ +  - ]:       79839 :         if (pqRowProcessor(conn, &errmsg))
     850                 :       79839 :                 return 0;                               /* normal, successful exit */
     851                 :             : 
     852                 :             :         /* pqRowProcessor failed, fall through to report it */
     853                 :             : 
     854                 :             : advance_and_error:
     855                 :             : 
     856                 :             :         /*
     857                 :             :          * Replace partially constructed result with an error result. First
     858                 :             :          * discard the old result to try to win back some memory.
     859                 :             :          */
     860                 :           0 :         pqClearAsyncResult(conn);
     861                 :             : 
     862                 :             :         /*
     863                 :             :          * If preceding code didn't provide an error message, assume "out of
     864                 :             :          * memory" was meant.  The advantage of having this special case is that
     865                 :             :          * freeing the old result first greatly improves the odds that gettext()
     866                 :             :          * will succeed in providing a translation.
     867                 :             :          */
     868         [ #  # ]:           0 :         if (!errmsg)
     869                 :           0 :                 errmsg = libpq_gettext("out of memory for query result");
     870                 :             : 
     871                 :           0 :         appendPQExpBuffer(&conn->errorMessage, "%s\n", errmsg);
     872                 :           0 :         pqSaveErrorResult(conn);
     873                 :             : 
     874                 :             :         /*
     875                 :             :          * Show the message as fully consumed, else pqParseInput3 will overwrite
     876                 :             :          * our error with a complaint about that.
     877                 :             :          */
     878                 :           0 :         conn->inCursor = conn->inStart + 5 + msgLength;
     879                 :             : 
     880                 :             :         /*
     881                 :             :          * Return zero to allow input parsing to continue.  Subsequent "D"
     882                 :             :          * messages will be ignored until we get to end of data, since an error
     883                 :             :          * result is already set up.
     884                 :             :          */
     885                 :           0 :         return 0;
     886                 :       79839 : }
     887                 :             : 
     888                 :             : 
     889                 :             : /*
     890                 :             :  * Attempt to read an Error or Notice response message.
     891                 :             :  * This is possible in several places, so we break it out as a subroutine.
     892                 :             :  *
     893                 :             :  * Entry: 'E' or 'N' message type and length have already been consumed.
     894                 :             :  * Exit: returns 0 if successfully consumed message.
     895                 :             :  *               returns EOF if not enough data.
     896                 :             :  */
     897                 :             : int
     898                 :        9631 : pqGetErrorNotice3(PGconn *conn, bool isError)
     899                 :             : {
     900                 :        9631 :         PGresult   *res = NULL;
     901                 :        9631 :         bool            have_position = false;
     902                 :        9631 :         PQExpBufferData workBuf;
     903                 :        9631 :         char            id;
     904                 :             : 
     905                 :             :         /* If in pipeline mode, set error indicator for it */
     906   [ +  +  +  + ]:        9631 :         if (isError && conn->pipelineStatus != PQ_PIPELINE_OFF)
     907                 :          13 :                 conn->pipelineStatus = PQ_PIPELINE_ABORTED;
     908                 :             : 
     909                 :             :         /*
     910                 :             :          * If this is an error message, pre-emptively clear any incomplete query
     911                 :             :          * result we may have.  We'd just throw it away below anyway, and
     912                 :             :          * releasing it before collecting the error might avoid out-of-memory.
     913                 :             :          */
     914         [ +  + ]:        9631 :         if (isError)
     915                 :        6763 :                 pqClearAsyncResult(conn);
     916                 :             : 
     917                 :             :         /*
     918                 :             :          * Since the fields might be pretty long, we create a temporary
     919                 :             :          * PQExpBuffer rather than using conn->workBuffer.  workBuffer is intended
     920                 :             :          * for stuff that is expected to be short.  We shouldn't use
     921                 :             :          * conn->errorMessage either, since this might be only a notice.
     922                 :             :          */
     923                 :        9631 :         initPQExpBuffer(&workBuf);
     924                 :             : 
     925                 :             :         /*
     926                 :             :          * Make a PGresult to hold the accumulated fields.  We temporarily lie
     927                 :             :          * about the result status, so that PQmakeEmptyPGresult doesn't uselessly
     928                 :             :          * copy conn->errorMessage.
     929                 :             :          *
     930                 :             :          * NB: This allocation can fail, if you run out of memory. The rest of the
     931                 :             :          * function handles that gracefully, and we still try to set the error
     932                 :             :          * message as the connection's error message.
     933                 :             :          */
     934                 :        9631 :         res = PQmakeEmptyPGresult(conn, PGRES_EMPTY_QUERY);
     935         [ -  + ]:        9631 :         if (res)
     936                 :        9631 :                 res->resultStatus = isError ? PGRES_FATAL_ERROR : PGRES_NONFATAL_ERROR;
     937                 :             : 
     938                 :             :         /*
     939                 :             :          * Read the fields and save into res.
     940                 :             :          *
     941                 :             :          * While at it, save the SQLSTATE in conn->last_sqlstate, and note whether
     942                 :             :          * we saw a PG_DIAG_STATEMENT_POSITION field.
     943                 :             :          */
     944                 :       85330 :         for (;;)
     945                 :             :         {
     946         [ +  - ]:       85330 :                 if (pqGetc(&id, conn))
     947                 :           0 :                         goto fail;
     948         [ +  + ]:       85330 :                 if (id == '\0')
     949                 :        9631 :                         break;                          /* terminator found */
     950         [ -  + ]:       75699 :                 if (pqGets(&workBuf, conn))
     951                 :           0 :                         goto fail;
     952                 :       75699 :                 pqSaveMessageField(res, id, workBuf.data);
     953         [ +  + ]:       75699 :                 if (id == PG_DIAG_SQLSTATE)
     954                 :        9631 :                         strlcpy(conn->last_sqlstate, workBuf.data,
     955                 :             :                                         sizeof(conn->last_sqlstate));
     956         [ +  + ]:       66068 :                 else if (id == PG_DIAG_STATEMENT_POSITION)
     957                 :        1800 :                         have_position = true;
     958                 :             :         }
     959                 :             : 
     960                 :             :         /*
     961                 :             :          * Save the active query text, if any, into res as well; but only if we
     962                 :             :          * might need it for an error cursor display, which is only true if there
     963                 :             :          * is a PG_DIAG_STATEMENT_POSITION field.
     964                 :             :          */
     965   [ +  +  +  -  :        9631 :         if (have_position && res && conn->cmd_queue_head && conn->cmd_queue_head->query)
             +  -  +  - ]
     966                 :        1800 :                 res->errQuery = pqResultStrdup(res, conn->cmd_queue_head->query);
     967                 :             : 
     968                 :             :         /*
     969                 :             :          * Now build the "overall" error message for PQresultErrorMessage.
     970                 :             :          */
     971                 :        9631 :         resetPQExpBuffer(&workBuf);
     972                 :        9631 :         pqBuildErrorMessage3(&workBuf, res, conn->verbosity, conn->show_context);
     973                 :             : 
     974                 :             :         /*
     975                 :             :          * Either save error as current async result, or just emit the notice.
     976                 :             :          */
     977         [ +  + ]:        9631 :         if (isError)
     978                 :             :         {
     979                 :        6763 :                 pqClearAsyncResult(conn);       /* redundant, but be safe */
     980         [ +  - ]:        6763 :                 if (res)
     981                 :             :                 {
     982                 :        6763 :                         pqSetResultError(res, &workBuf, 0);
     983                 :        6763 :                         conn->result = res;
     984                 :        6763 :                 }
     985                 :             :                 else
     986                 :             :                 {
     987                 :             :                         /* Fall back to using the internal-error processing paths */
     988                 :           0 :                         conn->error_result = true;
     989                 :             :                 }
     990                 :             : 
     991         [ +  - ]:        6763 :                 if (PQExpBufferDataBroken(workBuf))
     992                 :           0 :                         libpq_append_conn_error(conn, "out of memory");
     993                 :             :                 else
     994                 :        6763 :                         appendPQExpBufferStr(&conn->errorMessage, workBuf.data);
     995                 :        6763 :         }
     996                 :             :         else
     997                 :             :         {
     998                 :             :                 /* if we couldn't allocate the result set, just discard the NOTICE */
     999         [ -  + ]:        2868 :                 if (res)
    1000                 :             :                 {
    1001                 :             :                         /*
    1002                 :             :                          * We can cheat a little here and not copy the message.  But if we
    1003                 :             :                          * were unlucky enough to run out of memory while filling workBuf,
    1004                 :             :                          * insert "out of memory", as in pqSetResultError.
    1005                 :             :                          */
    1006         [ +  - ]:        2868 :                         if (PQExpBufferDataBroken(workBuf))
    1007                 :           0 :                                 res->errMsg = libpq_gettext("out of memory\n");
    1008                 :             :                         else
    1009                 :        2868 :                                 res->errMsg = workBuf.data;
    1010         [ -  + ]:        2868 :                         if (res->noticeHooks.noticeRec != NULL)
    1011                 :        2868 :                                 res->noticeHooks.noticeRec(res->noticeHooks.noticeRecArg, res);
    1012                 :        2868 :                         PQclear(res);
    1013                 :        2868 :                 }
    1014                 :             :         }
    1015                 :             : 
    1016                 :        9631 :         termPQExpBuffer(&workBuf);
    1017                 :        9631 :         return 0;
    1018                 :             : 
    1019                 :             : fail:
    1020                 :           0 :         PQclear(res);
    1021                 :           0 :         termPQExpBuffer(&workBuf);
    1022                 :           0 :         return EOF;
    1023                 :        9631 : }
    1024                 :             : 
    1025                 :             : /*
    1026                 :             :  * Construct an error message from the fields in the given PGresult,
    1027                 :             :  * appending it to the contents of "msg".
    1028                 :             :  */
    1029                 :             : void
    1030                 :        9631 : pqBuildErrorMessage3(PQExpBuffer msg, const PGresult *res,
    1031                 :             :                                          PGVerbosity verbosity, PGContextVisibility show_context)
    1032                 :             : {
    1033                 :        9631 :         const char *val;
    1034                 :        9631 :         const char *querytext = NULL;
    1035                 :        9631 :         int                     querypos = 0;
    1036                 :             : 
    1037                 :             :         /* If we couldn't allocate a PGresult, just say "out of memory" */
    1038         [ +  - ]:        9631 :         if (res == NULL)
    1039                 :             :         {
    1040                 :           0 :                 appendPQExpBufferStr(msg, libpq_gettext("out of memory\n"));
    1041                 :           0 :                 return;
    1042                 :             :         }
    1043                 :             : 
    1044                 :             :         /*
    1045                 :             :          * If we don't have any broken-down fields, just return the base message.
    1046                 :             :          * This mainly applies if we're given a libpq-generated error result.
    1047                 :             :          */
    1048         [ +  - ]:        9631 :         if (res->errFields == NULL)
    1049                 :             :         {
    1050   [ #  #  #  # ]:           0 :                 if (res->errMsg && res->errMsg[0])
    1051                 :           0 :                         appendPQExpBufferStr(msg, res->errMsg);
    1052                 :             :                 else
    1053                 :           0 :                         appendPQExpBufferStr(msg, libpq_gettext("no error message available\n"));
    1054                 :           0 :                 return;
    1055                 :             :         }
    1056                 :             : 
    1057                 :             :         /* Else build error message from relevant fields */
    1058                 :        9631 :         val = PQresultErrorField(res, PG_DIAG_SEVERITY);
    1059         [ -  + ]:        9631 :         if (val)
    1060                 :        9631 :                 appendPQExpBuffer(msg, "%s:  ", val);
    1061                 :             : 
    1062         [ +  + ]:        9631 :         if (verbosity == PQERRORS_SQLSTATE)
    1063                 :             :         {
    1064                 :             :                 /*
    1065                 :             :                  * If we have a SQLSTATE, print that and nothing else.  If not (which
    1066                 :             :                  * shouldn't happen for server-generated errors, but might possibly
    1067                 :             :                  * happen for libpq-generated ones), fall back to TERSE format, as
    1068                 :             :                  * that seems better than printing nothing at all.
    1069                 :             :                  */
    1070                 :           9 :                 val = PQresultErrorField(res, PG_DIAG_SQLSTATE);
    1071         [ +  - ]:           9 :                 if (val)
    1072                 :             :                 {
    1073                 :           9 :                         appendPQExpBuffer(msg, "%s\n", val);
    1074                 :           9 :                         return;
    1075                 :             :                 }
    1076                 :           0 :                 verbosity = PQERRORS_TERSE;
    1077                 :           0 :         }
    1078                 :             : 
    1079         [ +  - ]:        9622 :         if (verbosity == PQERRORS_VERBOSE)
    1080                 :             :         {
    1081                 :           0 :                 val = PQresultErrorField(res, PG_DIAG_SQLSTATE);
    1082         [ #  # ]:           0 :                 if (val)
    1083                 :           0 :                         appendPQExpBuffer(msg, "%s: ", val);
    1084                 :           0 :         }
    1085                 :        9622 :         val = PQresultErrorField(res, PG_DIAG_MESSAGE_PRIMARY);
    1086         [ -  + ]:        9622 :         if (val)
    1087                 :        9622 :                 appendPQExpBufferStr(msg, val);
    1088                 :        9622 :         val = PQresultErrorField(res, PG_DIAG_STATEMENT_POSITION);
    1089         [ +  + ]:        9622 :         if (val)
    1090                 :             :         {
    1091   [ +  +  -  + ]:        1799 :                 if (verbosity != PQERRORS_TERSE && res->errQuery != NULL)
    1092                 :             :                 {
    1093                 :             :                         /* emit position as a syntax cursor display */
    1094                 :        1798 :                         querytext = res->errQuery;
    1095                 :        1798 :                         querypos = atoi(val);
    1096                 :        1798 :                 }
    1097                 :             :                 else
    1098                 :             :                 {
    1099                 :             :                         /* emit position as text addition to primary message */
    1100                 :             :                         /* translator: %s represents a digit string */
    1101                 :           2 :                         appendPQExpBuffer(msg, libpq_gettext(" at character %s"),
    1102                 :           1 :                                                           val);
    1103                 :             :                 }
    1104                 :        1799 :         }
    1105                 :             :         else
    1106                 :             :         {
    1107                 :        7823 :                 val = PQresultErrorField(res, PG_DIAG_INTERNAL_POSITION);
    1108         [ +  + ]:        7823 :                 if (val)
    1109                 :             :                 {
    1110                 :          10 :                         querytext = PQresultErrorField(res, PG_DIAG_INTERNAL_QUERY);
    1111   [ +  -  -  + ]:          10 :                         if (verbosity != PQERRORS_TERSE && querytext != NULL)
    1112                 :             :                         {
    1113                 :             :                                 /* emit position as a syntax cursor display */
    1114                 :          10 :                                 querypos = atoi(val);
    1115                 :          10 :                         }
    1116                 :             :                         else
    1117                 :             :                         {
    1118                 :             :                                 /* emit position as text addition to primary message */
    1119                 :             :                                 /* translator: %s represents a digit string */
    1120                 :           0 :                                 appendPQExpBuffer(msg, libpq_gettext(" at character %s"),
    1121                 :           0 :                                                                   val);
    1122                 :             :                         }
    1123                 :          10 :                 }
    1124                 :             :         }
    1125                 :        9622 :         appendPQExpBufferChar(msg, '\n');
    1126         [ +  + ]:        9622 :         if (verbosity != PQERRORS_TERSE)
    1127                 :             :         {
    1128   [ +  +  -  + ]:        9612 :                 if (querytext && querypos > 0)
    1129                 :        3616 :                         reportErrorPosition(msg, querytext, querypos,
    1130                 :        1808 :                                                                 res->client_encoding);
    1131                 :        9612 :                 val = PQresultErrorField(res, PG_DIAG_MESSAGE_DETAIL);
    1132         [ +  + ]:        9612 :                 if (val)
    1133                 :        1734 :                         appendPQExpBuffer(msg, libpq_gettext("DETAIL:  %s\n"), val);
    1134                 :        9612 :                 val = PQresultErrorField(res, PG_DIAG_MESSAGE_HINT);
    1135         [ +  + ]:        9612 :                 if (val)
    1136                 :         632 :                         appendPQExpBuffer(msg, libpq_gettext("HINT:  %s\n"), val);
    1137                 :        9612 :                 val = PQresultErrorField(res, PG_DIAG_INTERNAL_QUERY);
    1138         [ +  + ]:        9612 :                 if (val)
    1139                 :          10 :                         appendPQExpBuffer(msg, libpq_gettext("QUERY:  %s\n"), val);
    1140   [ +  +  +  + ]:       19193 :                 if (show_context == PQSHOW_CONTEXT_ALWAYS ||
    1141         [ +  + ]:        9583 :                         (show_context == PQSHOW_CONTEXT_ERRORS &&
    1142                 :        9581 :                          res->resultStatus == PGRES_FATAL_ERROR))
    1143                 :             :                 {
    1144                 :        6757 :                         val = PQresultErrorField(res, PG_DIAG_CONTEXT);
    1145         [ +  + ]:        6757 :                         if (val)
    1146                 :         542 :                                 appendPQExpBuffer(msg, libpq_gettext("CONTEXT:  %s\n"),
    1147                 :         271 :                                                                   val);
    1148                 :        6757 :                 }
    1149                 :        9612 :         }
    1150         [ +  - ]:        9622 :         if (verbosity == PQERRORS_VERBOSE)
    1151                 :             :         {
    1152                 :           0 :                 val = PQresultErrorField(res, PG_DIAG_SCHEMA_NAME);
    1153         [ #  # ]:           0 :                 if (val)
    1154                 :           0 :                         appendPQExpBuffer(msg,
    1155                 :           0 :                                                           libpq_gettext("SCHEMA NAME:  %s\n"), val);
    1156                 :           0 :                 val = PQresultErrorField(res, PG_DIAG_TABLE_NAME);
    1157         [ #  # ]:           0 :                 if (val)
    1158                 :           0 :                         appendPQExpBuffer(msg,
    1159                 :           0 :                                                           libpq_gettext("TABLE NAME:  %s\n"), val);
    1160                 :           0 :                 val = PQresultErrorField(res, PG_DIAG_COLUMN_NAME);
    1161         [ #  # ]:           0 :                 if (val)
    1162                 :           0 :                         appendPQExpBuffer(msg,
    1163                 :           0 :                                                           libpq_gettext("COLUMN NAME:  %s\n"), val);
    1164                 :           0 :                 val = PQresultErrorField(res, PG_DIAG_DATATYPE_NAME);
    1165         [ #  # ]:           0 :                 if (val)
    1166                 :           0 :                         appendPQExpBuffer(msg,
    1167                 :           0 :                                                           libpq_gettext("DATATYPE NAME:  %s\n"), val);
    1168                 :           0 :                 val = PQresultErrorField(res, PG_DIAG_CONSTRAINT_NAME);
    1169         [ #  # ]:           0 :                 if (val)
    1170                 :           0 :                         appendPQExpBuffer(msg,
    1171                 :           0 :                                                           libpq_gettext("CONSTRAINT NAME:  %s\n"), val);
    1172                 :           0 :         }
    1173         [ +  - ]:        9622 :         if (verbosity == PQERRORS_VERBOSE)
    1174                 :             :         {
    1175                 :           0 :                 const char *valf;
    1176                 :           0 :                 const char *vall;
    1177                 :             : 
    1178                 :           0 :                 valf = PQresultErrorField(res, PG_DIAG_SOURCE_FILE);
    1179                 :           0 :                 vall = PQresultErrorField(res, PG_DIAG_SOURCE_LINE);
    1180                 :           0 :                 val = PQresultErrorField(res, PG_DIAG_SOURCE_FUNCTION);
    1181   [ #  #  #  #  :           0 :                 if (val || valf || vall)
                   #  # ]
    1182                 :             :                 {
    1183                 :           0 :                         appendPQExpBufferStr(msg, libpq_gettext("LOCATION:  "));
    1184         [ #  # ]:           0 :                         if (val)
    1185                 :           0 :                                 appendPQExpBuffer(msg, libpq_gettext("%s, "), val);
    1186   [ #  #  #  # ]:           0 :                         if (valf && vall)       /* unlikely we'd have just one */
    1187                 :           0 :                                 appendPQExpBuffer(msg, libpq_gettext("%s:%s"),
    1188                 :           0 :                                                                   valf, vall);
    1189                 :           0 :                         appendPQExpBufferChar(msg, '\n');
    1190                 :           0 :                 }
    1191                 :           0 :         }
    1192         [ -  + ]:        9631 : }
    1193                 :             : 
    1194                 :             : /*
    1195                 :             :  * Add an error-location display to the error message under construction.
    1196                 :             :  *
    1197                 :             :  * The cursor location is measured in logical characters; the query string
    1198                 :             :  * is presumed to be in the specified encoding.
    1199                 :             :  */
    1200                 :             : static void
    1201                 :        1808 : reportErrorPosition(PQExpBuffer msg, const char *query, int loc, int encoding)
    1202                 :             : {
    1203                 :             : #define DISPLAY_SIZE    60              /* screen width limit, in screen cols */
    1204                 :             : #define MIN_RIGHT_CUT   10              /* try to keep this far away from EOL */
    1205                 :             : 
    1206                 :        1808 :         char       *wquery;
    1207                 :        1808 :         int                     slen,
    1208                 :             :                                 cno,
    1209                 :             :                                 i,
    1210                 :             :                            *qidx,
    1211                 :             :                            *scridx,
    1212                 :             :                                 qoffset,
    1213                 :             :                                 scroffset,
    1214                 :             :                                 ibeg,
    1215                 :             :                                 iend,
    1216                 :             :                                 loc_line;
    1217                 :        1808 :         bool            mb_encoding,
    1218                 :             :                                 beg_trunc,
    1219                 :             :                                 end_trunc;
    1220                 :             : 
    1221                 :             :         /* Convert loc from 1-based to 0-based; no-op if out of range */
    1222                 :        1808 :         loc--;
    1223         [ +  - ]:        1808 :         if (loc < 0)
    1224                 :           0 :                 return;
    1225                 :             : 
    1226                 :             :         /* Need a writable copy of the query */
    1227                 :        1808 :         wquery = strdup(query);
    1228         [ +  - ]:        1808 :         if (wquery == NULL)
    1229                 :           0 :                 return;                                 /* fail silently if out of memory */
    1230                 :             : 
    1231                 :             :         /*
    1232                 :             :          * Each character might occupy multiple physical bytes in the string, and
    1233                 :             :          * in some Far Eastern character sets it might take more than one screen
    1234                 :             :          * column as well.  We compute the starting byte offset and starting
    1235                 :             :          * screen column of each logical character, and store these in qidx[] and
    1236                 :             :          * scridx[] respectively.
    1237                 :             :          */
    1238                 :             : 
    1239                 :             :         /*
    1240                 :             :          * We need a safe allocation size.
    1241                 :             :          *
    1242                 :             :          * The only caller of reportErrorPosition() is pqBuildErrorMessage3(); it
    1243                 :             :          * gets its query from either a PQresultErrorField() or a PGcmdQueueEntry,
    1244                 :             :          * both of which must have fit into conn->inBuffer/outBuffer. So slen fits
    1245                 :             :          * inside an int, but we can't assume that (slen * sizeof(int)) fits
    1246                 :             :          * inside a size_t.
    1247                 :             :          */
    1248                 :        1808 :         slen = strlen(wquery) + 1;
    1249         [ -  + ]:        1808 :         if (slen > SIZE_MAX / sizeof(int))
    1250                 :             :         {
    1251                 :           0 :                 free(wquery);
    1252                 :           0 :                 return;
    1253                 :             :         }
    1254                 :             : 
    1255                 :        1808 :         qidx = (int *) malloc(slen * sizeof(int));
    1256         [ +  - ]:        1808 :         if (qidx == NULL)
    1257                 :             :         {
    1258                 :           0 :                 free(wquery);
    1259                 :           0 :                 return;
    1260                 :             :         }
    1261                 :        1808 :         scridx = (int *) malloc(slen * sizeof(int));
    1262         [ +  - ]:        1808 :         if (scridx == NULL)
    1263                 :             :         {
    1264                 :           0 :                 free(qidx);
    1265                 :           0 :                 free(wquery);
    1266                 :           0 :                 return;
    1267                 :             :         }
    1268                 :             : 
    1269                 :             :         /* We can optimize a bit if it's a single-byte encoding */
    1270                 :        1808 :         mb_encoding = (pg_encoding_max_length(encoding) != 1);
    1271                 :             : 
    1272                 :             :         /*
    1273                 :             :          * Within the scanning loop, cno is the current character's logical
    1274                 :             :          * number, qoffset is its offset in wquery, and scroffset is its starting
    1275                 :             :          * logical screen column (all indexed from 0).  "loc" is the logical
    1276                 :             :          * character number of the error location.  We scan to determine loc_line
    1277                 :             :          * (the 1-based line number containing loc) and ibeg/iend (first character
    1278                 :             :          * number and last+1 character number of the line containing loc). Note
    1279                 :             :          * that qidx[] and scridx[] are filled only as far as iend.
    1280                 :             :          */
    1281                 :        1808 :         qoffset = 0;
    1282                 :        1808 :         scroffset = 0;
    1283                 :        1808 :         loc_line = 1;
    1284                 :        1808 :         ibeg = 0;
    1285                 :        1808 :         iend = -1;                                      /* -1 means not set yet */
    1286                 :             : 
    1287         [ +  + ]:      103607 :         for (cno = 0; wquery[qoffset] != '\0'; cno++)
    1288                 :             :         {
    1289                 :      102002 :                 char            ch = wquery[qoffset];
    1290                 :             : 
    1291                 :      102002 :                 qidx[cno] = qoffset;
    1292                 :      102002 :                 scridx[cno] = scroffset;
    1293                 :             : 
    1294                 :             :                 /*
    1295                 :             :                  * Replace tabs with spaces in the writable copy.  (Later we might
    1296                 :             :                  * want to think about coping with their variable screen width, but
    1297                 :             :                  * not today.)
    1298                 :             :                  */
    1299         [ +  + ]:      102002 :                 if (ch == '\t')
    1300                 :         163 :                         wquery[qoffset] = ' ';
    1301                 :             : 
    1302                 :             :                 /*
    1303                 :             :                  * If end-of-line, count lines and mark positions. Each \r or \n
    1304                 :             :                  * counts as a line except when \r \n appear together.
    1305                 :             :                  */
    1306   [ +  -  +  + ]:      101839 :                 else if (ch == '\r' || ch == '\n')
    1307                 :             :                 {
    1308         [ +  + ]:         668 :                         if (cno < loc)
    1309                 :             :                         {
    1310         [ +  - ]:         465 :                                 if (ch == '\r' ||
    1311   [ +  +  +  - ]:         465 :                                         cno == 0 ||
    1312                 :         464 :                                         wquery[qidx[cno - 1]] != '\r')
    1313                 :         465 :                                         loc_line++;
    1314                 :             :                                 /* extract beginning = last line start before loc. */
    1315                 :         465 :                                 ibeg = cno + 1;
    1316                 :         465 :                         }
    1317                 :             :                         else
    1318                 :             :                         {
    1319                 :             :                                 /* set extract end. */
    1320                 :         203 :                                 iend = cno;
    1321                 :             :                                 /* done scanning. */
    1322                 :         203 :                                 break;
    1323                 :             :                         }
    1324                 :         465 :                 }
    1325                 :             : 
    1326                 :             :                 /* Advance */
    1327         [ +  - ]:      101799 :                 if (mb_encoding)
    1328                 :             :                 {
    1329                 :      101799 :                         int                     w;
    1330                 :             : 
    1331                 :      101799 :                         w = pg_encoding_dsplen(encoding, &wquery[qoffset]);
    1332                 :             :                         /* treat any non-tab control chars as width 1 */
    1333         [ +  + ]:      101799 :                         if (w <= 0)
    1334                 :         465 :                                 w = 1;
    1335                 :      101799 :                         scroffset += w;
    1336                 :      101799 :                         qoffset += PQmblenBounded(&wquery[qoffset], encoding);
    1337                 :      101799 :                 }
    1338                 :             :                 else
    1339                 :             :                 {
    1340                 :             :                         /* We assume wide chars only exist in multibyte encodings */
    1341                 :           0 :                         scroffset++;
    1342                 :           0 :                         qoffset++;
    1343                 :             :                 }
    1344         [ +  + ]:      102002 :         }
    1345                 :             :         /* Fix up if we didn't find an end-of-line after loc */
    1346         [ +  + ]:        1808 :         if (iend < 0)
    1347                 :             :         {
    1348                 :        1605 :                 iend = cno;                             /* query length in chars, +1 */
    1349                 :        1605 :                 qidx[iend] = qoffset;
    1350                 :        1605 :                 scridx[iend] = scroffset;
    1351                 :        1605 :         }
    1352                 :             : 
    1353                 :             :         /* Print only if loc is within computed query length */
    1354         [ +  + ]:        1808 :         if (loc <= cno)
    1355                 :             :         {
    1356                 :             :                 /* If the line extracted is too long, we truncate it. */
    1357                 :        1805 :                 beg_trunc = false;
    1358                 :        1805 :                 end_trunc = false;
    1359         [ +  + ]:        1805 :                 if (scridx[iend] - scridx[ibeg] > DISPLAY_SIZE)
    1360                 :             :                 {
    1361                 :             :                         /*
    1362                 :             :                          * We first truncate right if it is enough.  This code might be
    1363                 :             :                          * off a space or so on enforcing MIN_RIGHT_CUT if there's a wide
    1364                 :             :                          * character right there, but that should be okay.
    1365                 :             :                          */
    1366         [ +  + ]:         526 :                         if (scridx[ibeg] + DISPLAY_SIZE >= scridx[loc] + MIN_RIGHT_CUT)
    1367                 :             :                         {
    1368         [ +  + ]:        5225 :                                 while (scridx[iend] - scridx[ibeg] > DISPLAY_SIZE)
    1369                 :        4917 :                                         iend--;
    1370                 :         308 :                                 end_trunc = true;
    1371                 :         308 :                         }
    1372                 :             :                         else
    1373                 :             :                         {
    1374                 :             :                                 /* Truncate right if not too close to loc. */
    1375         [ +  + ]:        2607 :                                 while (scridx[loc] + MIN_RIGHT_CUT < scridx[iend])
    1376                 :             :                                 {
    1377                 :        2389 :                                         iend--;
    1378                 :        2389 :                                         end_trunc = true;
    1379                 :             :                                 }
    1380                 :             : 
    1381                 :             :                                 /* Truncate left if still too long. */
    1382         [ +  + ]:        4433 :                                 while (scridx[iend] - scridx[ibeg] > DISPLAY_SIZE)
    1383                 :             :                                 {
    1384                 :        4215 :                                         ibeg++;
    1385                 :        4215 :                                         beg_trunc = true;
    1386                 :             :                                 }
    1387                 :             :                         }
    1388                 :         526 :                 }
    1389                 :             : 
    1390                 :             :                 /* truncate working copy at desired endpoint */
    1391                 :        1805 :                 wquery[qidx[iend]] = '\0';
    1392                 :             : 
    1393                 :             :                 /* Begin building the finished message. */
    1394                 :        1805 :                 i = msg->len;
    1395                 :        1805 :                 appendPQExpBuffer(msg, libpq_gettext("LINE %d: "), loc_line);
    1396         [ +  + ]:        1805 :                 if (beg_trunc)
    1397                 :         218 :                         appendPQExpBufferStr(msg, "...");
    1398                 :             : 
    1399                 :             :                 /*
    1400                 :             :                  * While we have the prefix in the msg buffer, compute its screen
    1401                 :             :                  * width.
    1402                 :             :                  */
    1403                 :        1805 :                 scroffset = 0;
    1404         [ +  + ]:       16901 :                 for (; i < msg->len; i += PQmblenBounded(&msg->data[i], encoding))
    1405                 :             :                 {
    1406                 :       15096 :                         int                     w = pg_encoding_dsplen(encoding, &msg->data[i]);
    1407                 :             : 
    1408         [ +  - ]:       15096 :                         if (w <= 0)
    1409                 :           0 :                                 w = 1;
    1410                 :       15096 :                         scroffset += w;
    1411                 :       15096 :                 }
    1412                 :             : 
    1413                 :             :                 /* Finish up the LINE message line. */
    1414                 :        1805 :                 appendPQExpBufferStr(msg, &wquery[qidx[ibeg]]);
    1415         [ +  + ]:        1805 :                 if (end_trunc)
    1416                 :         466 :                         appendPQExpBufferStr(msg, "...");
    1417                 :        1805 :                 appendPQExpBufferChar(msg, '\n');
    1418                 :             : 
    1419                 :             :                 /* Now emit the cursor marker line. */
    1420                 :        1805 :                 scroffset += scridx[loc] - scridx[ibeg];
    1421         [ +  + ]:       58176 :                 for (i = 0; i < scroffset; i++)
    1422                 :       56371 :                         appendPQExpBufferChar(msg, ' ');
    1423                 :        1805 :                 appendPQExpBufferChar(msg, '^');
    1424                 :        1805 :                 appendPQExpBufferChar(msg, '\n');
    1425                 :        1805 :         }
    1426                 :             : 
    1427                 :             :         /* Clean up. */
    1428                 :        1808 :         free(scridx);
    1429                 :        1808 :         free(qidx);
    1430                 :        1808 :         free(wquery);
    1431                 :        1808 : }
    1432                 :             : 
    1433                 :             : 
    1434                 :             : /*
    1435                 :             :  * Attempt to read a NegotiateProtocolVersion message.  Sets conn->pversion
    1436                 :             :  * to the version that's negotiated by the server.
    1437                 :             :  *
    1438                 :             :  * Entry: 'v' message type and length have already been consumed.
    1439                 :             :  * Exit: returns 0 if successfully consumed message.
    1440                 :             :  *               returns 1 on failure. The error message is filled in.
    1441                 :             :  */
    1442                 :             : int
    1443                 :           0 : pqGetNegotiateProtocolVersion3(PGconn *conn)
    1444                 :             : {
    1445                 :           0 :         int                     their_version;
    1446                 :           0 :         int                     num;
    1447                 :             : 
    1448         [ #  # ]:           0 :         if (pqGetInt(&their_version, 4, conn) != 0)
    1449                 :           0 :                 goto eof;
    1450                 :             : 
    1451         [ #  # ]:           0 :         if (pqGetInt(&num, 4, conn) != 0)
    1452                 :           0 :                 goto eof;
    1453                 :             : 
    1454                 :             :         /* Check the protocol version */
    1455         [ #  # ]:           0 :         if (their_version > conn->pversion)
    1456                 :             :         {
    1457                 :           0 :                 libpq_append_conn_error(conn, "received invalid protocol negotiation message: server requested downgrade to a higher-numbered version");
    1458                 :           0 :                 goto failure;
    1459                 :             :         }
    1460                 :             : 
    1461         [ #  # ]:           0 :         if (their_version < PG_PROTOCOL(3, 0))
    1462                 :             :         {
    1463                 :           0 :                 libpq_append_conn_error(conn, "received invalid protocol negotiation message: server requested downgrade to pre-3.0 protocol version");
    1464                 :           0 :                 goto failure;
    1465                 :             :         }
    1466                 :             : 
    1467                 :             :         /* 3.1 never existed, we went straight from 3.0 to 3.2 */
    1468         [ #  # ]:           0 :         if (their_version == PG_PROTOCOL_RESERVED_31)
    1469                 :             :         {
    1470                 :           0 :                 libpq_append_conn_error(conn, "received invalid protocol negotiation message: server requested downgrade to non-existent 3.1 protocol version");
    1471                 :           0 :                 goto failure;
    1472                 :             :         }
    1473                 :             : 
    1474         [ #  # ]:           0 :         if (num < 0)
    1475                 :             :         {
    1476                 :           0 :                 libpq_append_conn_error(conn, "received invalid protocol negotiation message: server reported negative number of unsupported parameters");
    1477                 :           0 :                 goto failure;
    1478                 :             :         }
    1479                 :             : 
    1480   [ #  #  #  # ]:           0 :         if (their_version == conn->pversion && num == 0)
    1481                 :             :         {
    1482                 :           0 :                 libpq_append_conn_error(conn, "received invalid protocol negotiation message: server negotiated but asks for no changes");
    1483                 :           0 :                 goto failure;
    1484                 :             :         }
    1485                 :             : 
    1486         [ #  # ]:           0 :         if (their_version < conn->min_pversion)
    1487                 :             :         {
    1488                 :           0 :                 libpq_append_conn_error(conn, "server only supports protocol version %d.%d, but \"%s\" was set to %d.%d",
    1489                 :           0 :                                                                 PG_PROTOCOL_MAJOR(their_version),
    1490                 :           0 :                                                                 PG_PROTOCOL_MINOR(their_version),
    1491                 :             :                                                                 "min_protocol_version",
    1492                 :           0 :                                                                 PG_PROTOCOL_MAJOR(conn->min_pversion),
    1493                 :           0 :                                                                 PG_PROTOCOL_MINOR(conn->min_pversion));
    1494                 :             : 
    1495                 :           0 :                 goto failure;
    1496                 :             :         }
    1497                 :             : 
    1498                 :             :         /* the version is acceptable */
    1499                 :           0 :         conn->pversion = their_version;
    1500                 :             : 
    1501                 :             :         /*
    1502                 :             :          * We don't currently request any protocol extensions, so we don't expect
    1503                 :             :          * the server to reply with any either.
    1504                 :             :          */
    1505   [ #  #  #  #  :           0 :         for (int i = 0; i < num; i++)
                   #  # ]
    1506                 :             :         {
    1507         [ #  # ]:           0 :                 if (pqGets(&conn->workBuffer, conn))
    1508                 :             :                 {
    1509                 :           0 :                         goto eof;
    1510                 :             :                 }
    1511         [ #  # ]:           0 :                 if (strncmp(conn->workBuffer.data, "_pq_.", 5) != 0)
    1512                 :             :                 {
    1513                 :           0 :                         libpq_append_conn_error(conn, "received invalid protocol negotiation message: server reported unsupported parameter name without a \"%s\" prefix (\"%s\")", "_pq_.", conn->workBuffer.data);
    1514                 :           0 :                         goto failure;
    1515                 :             :                 }
    1516                 :           0 :                 libpq_append_conn_error(conn, "received invalid protocol negotiation message: server reported an unsupported parameter that was not requested (\"%s\")", conn->workBuffer.data);
    1517                 :           0 :                 goto failure;
    1518                 :             :         }
    1519                 :             : 
    1520                 :           0 :         return 0;
    1521                 :             : 
    1522                 :             : eof:
    1523                 :           0 :         libpq_append_conn_error(conn, "received invalid protocol negotiation message: message too short");
    1524                 :             : failure:
    1525                 :           0 :         conn->asyncStatus = PGASYNC_READY;
    1526                 :           0 :         pqSaveErrorResult(conn);
    1527                 :           0 :         return 1;
    1528                 :           0 : }
    1529                 :             : 
    1530                 :             : 
    1531                 :             : /*
    1532                 :             :  * Attempt to read a ParameterStatus message.
    1533                 :             :  * This is possible in several places, so we break it out as a subroutine.
    1534                 :             :  *
    1535                 :             :  * Entry: 'S' message type and length have already been consumed.
    1536                 :             :  * Exit: returns 0 if successfully consumed message.
    1537                 :             :  *               returns EOF if not enough data.
    1538                 :             :  */
    1539                 :             : static int
    1540                 :        6032 : getParameterStatus(PGconn *conn)
    1541                 :             : {
    1542                 :        6032 :         PQExpBufferData valueBuf;
    1543                 :             : 
    1544                 :             :         /* Get the parameter name */
    1545         [ -  + ]:        6032 :         if (pqGets(&conn->workBuffer, conn))
    1546                 :           0 :                 return EOF;
    1547                 :             :         /* Get the parameter value (could be large) */
    1548                 :        6032 :         initPQExpBuffer(&valueBuf);
    1549         [ -  + ]:        6032 :         if (pqGets(&valueBuf, conn))
    1550                 :             :         {
    1551                 :           0 :                 termPQExpBuffer(&valueBuf);
    1552                 :           0 :                 return EOF;
    1553                 :             :         }
    1554                 :             :         /* And save it */
    1555         [ +  - ]:        6032 :         if (!pqSaveParameterStatus(conn, conn->workBuffer.data, valueBuf.data))
    1556                 :             :         {
    1557                 :           0 :                 libpq_append_conn_error(conn, "out of memory");
    1558                 :           0 :                 handleFatalError(conn);
    1559                 :           0 :         }
    1560                 :        6032 :         termPQExpBuffer(&valueBuf);
    1561                 :        6032 :         return 0;
    1562                 :        6032 : }
    1563                 :             : 
    1564                 :             : /*
    1565                 :             :  * parseInput subroutine to read a BackendKeyData message.
    1566                 :             :  * Entry: 'v' message type and length have already been consumed.
    1567                 :             :  * Exit: returns 0 if successfully consumed message.
    1568                 :             :  *               returns EOF if not enough data.
    1569                 :             :  */
    1570                 :             : static int
    1571                 :         316 : getBackendKeyData(PGconn *conn, int msgLength)
    1572                 :             : {
    1573                 :         316 :         int                     cancel_key_len;
    1574                 :             : 
    1575         [ +  - ]:         316 :         if (conn->be_cancel_key)
    1576                 :             :         {
    1577                 :           0 :                 free(conn->be_cancel_key);
    1578                 :           0 :                 conn->be_cancel_key = NULL;
    1579                 :           0 :                 conn->be_cancel_key_len = 0;
    1580                 :           0 :         }
    1581                 :             : 
    1582         [ -  + ]:         316 :         if (pqGetInt(&(conn->be_pid), 4, conn))
    1583                 :           0 :                 return EOF;
    1584                 :             : 
    1585                 :         316 :         cancel_key_len = 5 + msgLength - (conn->inCursor - conn->inStart);
    1586                 :             : 
    1587   [ -  +  #  # ]:         316 :         if (cancel_key_len != 4 && conn->pversion == PG_PROTOCOL(3, 0))
    1588                 :             :         {
    1589                 :           0 :                 libpq_append_conn_error(conn, "received invalid BackendKeyData message: cancel key with length %d not allowed in protocol version 3.0 (must be 4 bytes)", cancel_key_len);
    1590                 :           0 :                 handleFatalError(conn);
    1591                 :           0 :                 return 0;
    1592                 :             :         }
    1593                 :             : 
    1594         [ -  + ]:         316 :         if (cancel_key_len < 4)
    1595                 :             :         {
    1596                 :           0 :                 libpq_append_conn_error(conn, "received invalid BackendKeyData message: cancel key with length %d is too short (minimum 4 bytes)", cancel_key_len);
    1597                 :           0 :                 handleFatalError(conn);
    1598                 :           0 :                 return 0;
    1599                 :             :         }
    1600                 :             : 
    1601         [ -  + ]:         316 :         if (cancel_key_len > 256)
    1602                 :             :         {
    1603                 :           0 :                 libpq_append_conn_error(conn, "received invalid BackendKeyData message: cancel key with length %d is too long (maximum 256 bytes)", cancel_key_len);
    1604                 :           0 :                 handleFatalError(conn);
    1605                 :           0 :                 return 0;
    1606                 :             :         }
    1607                 :             : 
    1608                 :         316 :         conn->be_cancel_key = malloc(cancel_key_len);
    1609         [ +  - ]:         316 :         if (conn->be_cancel_key == NULL)
    1610                 :             :         {
    1611                 :           0 :                 libpq_append_conn_error(conn, "out of memory");
    1612                 :           0 :                 handleFatalError(conn);
    1613                 :           0 :                 return 0;
    1614                 :             :         }
    1615         [ -  + ]:         316 :         if (pqGetnchar(conn->be_cancel_key, cancel_key_len, conn))
    1616                 :             :         {
    1617                 :           0 :                 free(conn->be_cancel_key);
    1618                 :           0 :                 conn->be_cancel_key = NULL;
    1619                 :           0 :                 return EOF;
    1620                 :             :         }
    1621                 :         316 :         conn->be_cancel_key_len = cancel_key_len;
    1622                 :         316 :         return 0;
    1623                 :         316 : }
    1624                 :             : 
    1625                 :             : 
    1626                 :             : /*
    1627                 :             :  * Attempt to read a Notify response message.
    1628                 :             :  * This is possible in several places, so we break it out as a subroutine.
    1629                 :             :  *
    1630                 :             :  * Entry: 'A' message type and length have already been consumed.
    1631                 :             :  * Exit: returns 0 if successfully consumed Notify message.
    1632                 :             :  *               returns EOF if not enough data.
    1633                 :             :  */
    1634                 :             : static int
    1635                 :           0 : getNotify(PGconn *conn)
    1636                 :             : {
    1637                 :           0 :         int                     be_pid;
    1638                 :           0 :         char       *svname;
    1639                 :           0 :         int                     nmlen;
    1640                 :           0 :         int                     extralen;
    1641                 :           0 :         PGnotify   *newNotify;
    1642                 :             : 
    1643         [ #  # ]:           0 :         if (pqGetInt(&be_pid, 4, conn))
    1644                 :           0 :                 return EOF;
    1645         [ #  # ]:           0 :         if (pqGets(&conn->workBuffer, conn))
    1646                 :           0 :                 return EOF;
    1647                 :             :         /* must save name while getting extra string */
    1648                 :           0 :         svname = strdup(conn->workBuffer.data);
    1649         [ #  # ]:           0 :         if (!svname)
    1650                 :             :         {
    1651                 :             :                 /*
    1652                 :             :                  * Notify messages can arrive at any state, so we cannot associate the
    1653                 :             :                  * error with any particular query.  There's no way to return back an
    1654                 :             :                  * "async error", so the best we can do is drop the connection.  That
    1655                 :             :                  * seems better than silently ignoring the notification.
    1656                 :             :                  */
    1657                 :           0 :                 libpq_append_conn_error(conn, "out of memory");
    1658                 :           0 :                 handleFatalError(conn);
    1659                 :           0 :                 return 0;
    1660                 :             :         }
    1661         [ #  # ]:           0 :         if (pqGets(&conn->workBuffer, conn))
    1662                 :             :         {
    1663                 :           0 :                 free(svname);
    1664                 :           0 :                 return EOF;
    1665                 :             :         }
    1666                 :             : 
    1667                 :             :         /*
    1668                 :             :          * Store the strings right after the PGnotify structure so it can all be
    1669                 :             :          * freed at once.  We don't use NAMEDATALEN because we don't want to tie
    1670                 :             :          * this interface to a specific server name length.
    1671                 :             :          */
    1672                 :           0 :         nmlen = strlen(svname);
    1673                 :           0 :         extralen = strlen(conn->workBuffer.data);
    1674                 :           0 :         newNotify = (PGnotify *) malloc(sizeof(PGnotify) + nmlen + extralen + 2);
    1675         [ #  # ]:           0 :         if (!newNotify)
    1676                 :             :         {
    1677                 :           0 :                 free(svname);
    1678                 :           0 :                 libpq_append_conn_error(conn, "out of memory");
    1679                 :           0 :                 handleFatalError(conn);
    1680                 :           0 :                 return 0;
    1681                 :             :         }
    1682                 :             : 
    1683                 :           0 :         newNotify->relname = (char *) newNotify + sizeof(PGnotify);
    1684                 :           0 :         strcpy(newNotify->relname, svname);
    1685                 :           0 :         newNotify->extra = newNotify->relname + nmlen + 1;
    1686                 :           0 :         strcpy(newNotify->extra, conn->workBuffer.data);
    1687                 :           0 :         newNotify->be_pid = be_pid;
    1688                 :           0 :         newNotify->next = NULL;
    1689         [ #  # ]:           0 :         if (conn->notifyTail)
    1690                 :           0 :                 conn->notifyTail->next = newNotify;
    1691                 :             :         else
    1692                 :           0 :                 conn->notifyHead = newNotify;
    1693                 :           0 :         conn->notifyTail = newNotify;
    1694                 :             : 
    1695                 :           0 :         free(svname);
    1696                 :           0 :         return 0;
    1697                 :           0 : }
    1698                 :             : 
    1699                 :             : /*
    1700                 :             :  * getCopyStart - process CopyInResponse, CopyOutResponse or
    1701                 :             :  * CopyBothResponse message
    1702                 :             :  *
    1703                 :             :  * parseInput already read the message type and length.
    1704                 :             :  */
    1705                 :             : static int
    1706                 :         221 : getCopyStart(PGconn *conn, ExecStatusType copytype)
    1707                 :             : {
    1708                 :         221 :         PGresult   *result;
    1709                 :         221 :         int                     nfields;
    1710                 :         221 :         int                     i;
    1711                 :             : 
    1712                 :         221 :         result = PQmakeEmptyPGresult(conn, copytype);
    1713         [ +  - ]:         221 :         if (!result)
    1714                 :           0 :                 goto failure;
    1715                 :             : 
    1716         [ -  + ]:         221 :         if (pqGetc(&conn->copy_is_binary, conn))
    1717                 :           0 :                 goto failure;
    1718                 :         221 :         result->binary = conn->copy_is_binary;
    1719                 :             :         /* the next two bytes are the number of fields  */
    1720         [ -  + ]:         221 :         if (pqGetInt(&(result->numAttributes), 2, conn))
    1721                 :           0 :                 goto failure;
    1722                 :         221 :         nfields = result->numAttributes;
    1723                 :             : 
    1724                 :             :         /* allocate space for the attribute descriptors */
    1725         [ -  + ]:         221 :         if (nfields > 0)
    1726                 :             :         {
    1727                 :         221 :                 result->attDescs = (PGresAttDesc *)
    1728                 :         221 :                         pqResultAlloc(result, nfields * sizeof(PGresAttDesc), true);
    1729         [ +  - ]:         221 :                 if (!result->attDescs)
    1730                 :           0 :                         goto failure;
    1731   [ +  -  +  -  :        2213 :                 MemSet(result->attDescs, 0, nfields * sizeof(PGresAttDesc));
          +  -  -  +  +  
                      + ]
    1732                 :         221 :         }
    1733                 :             : 
    1734         [ +  + ]:         719 :         for (i = 0; i < nfields; i++)
    1735                 :             :         {
    1736                 :         498 :                 int                     format;
    1737                 :             : 
    1738         [ -  + ]:         498 :                 if (pqGetInt(&format, 2, conn))
    1739                 :           0 :                         goto failure;
    1740                 :             : 
    1741                 :             :                 /*
    1742                 :             :                  * Since pqGetInt treats 2-byte integers as unsigned, we need to
    1743                 :             :                  * coerce these results to signed form.
    1744                 :             :                  */
    1745                 :         498 :                 format = (int) ((int16) format);
    1746                 :         498 :                 result->attDescs[i].format = format;
    1747      [ -  -  + ]:         498 :         }
    1748                 :             : 
    1749                 :             :         /* Success! */
    1750                 :         221 :         conn->result = result;
    1751                 :         221 :         return 0;
    1752                 :             : 
    1753                 :             : failure:
    1754                 :           0 :         PQclear(result);
    1755                 :           0 :         return EOF;
    1756                 :         221 : }
    1757                 :             : 
    1758                 :             : /*
    1759                 :             :  * getReadyForQuery - process ReadyForQuery message
    1760                 :             :  */
    1761                 :             : static int
    1762                 :       58591 : getReadyForQuery(PGconn *conn)
    1763                 :             : {
    1764                 :       58591 :         char            xact_status;
    1765                 :             : 
    1766         [ -  + ]:       58591 :         if (pqGetc(&xact_status, conn))
    1767                 :           0 :                 return EOF;
    1768   [ +  -  +  + ]:       58591 :         switch (xact_status)
    1769                 :             :         {
    1770                 :             :                 case 'I':
    1771                 :       53468 :                         conn->xactStatus = PQTRANS_IDLE;
    1772                 :       53468 :                         break;
    1773                 :             :                 case 'T':
    1774                 :        4930 :                         conn->xactStatus = PQTRANS_INTRANS;
    1775                 :        4930 :                         break;
    1776                 :             :                 case 'E':
    1777                 :         193 :                         conn->xactStatus = PQTRANS_INERROR;
    1778                 :         193 :                         break;
    1779                 :             :                 default:
    1780                 :           0 :                         conn->xactStatus = PQTRANS_UNKNOWN;
    1781                 :           0 :                         break;
    1782                 :             :         }
    1783                 :             : 
    1784                 :       58591 :         return 0;
    1785                 :       58591 : }
    1786                 :             : 
    1787                 :             : /*
    1788                 :             :  * getCopyDataMessage - fetch next CopyData message, process async messages
    1789                 :             :  *
    1790                 :             :  * Returns length word of CopyData message (> 0), or 0 if no complete
    1791                 :             :  * message available, -1 if end of copy, -2 if error.
    1792                 :             :  */
    1793                 :             : static int
    1794                 :         411 : getCopyDataMessage(PGconn *conn)
    1795                 :             : {
    1796                 :         411 :         char            id;
    1797                 :         411 :         int                     msgLength;
    1798                 :         411 :         int                     avail;
    1799                 :             : 
    1800                 :         411 :         for (;;)
    1801                 :             :         {
    1802                 :             :                 /*
    1803                 :             :                  * Do we have the next input message?  To make life simpler for async
    1804                 :             :                  * callers, we keep returning 0 until the next message is fully
    1805                 :             :                  * available, even if it is not Copy Data.
    1806                 :             :                  */
    1807                 :         411 :                 conn->inCursor = conn->inStart;
    1808         [ +  + ]:         411 :                 if (pqGetc(&id, conn))
    1809                 :           1 :                         return 0;
    1810         [ +  - ]:         410 :                 if (pqGetInt(&msgLength, 4, conn))
    1811                 :           0 :                         return 0;
    1812         [ -  + ]:         410 :                 if (msgLength < 4)
    1813                 :             :                 {
    1814                 :           0 :                         handleSyncLoss(conn, id, msgLength);
    1815                 :           0 :                         return -2;
    1816                 :             :                 }
    1817                 :         410 :                 avail = conn->inEnd - conn->inCursor;
    1818         [ +  - ]:         410 :                 if (avail < msgLength - 4)
    1819                 :             :                 {
    1820                 :             :                         /*
    1821                 :             :                          * Before returning, enlarge the input buffer if needed to hold
    1822                 :             :                          * the whole message.  See notes in parseInput.
    1823                 :             :                          */
    1824   [ #  #  #  # ]:           0 :                         if (pqCheckInBufferSpace(conn->inCursor + (size_t) msgLength - 4,
    1825                 :           0 :                                                                          conn))
    1826                 :             :                         {
    1827                 :             :                                 /*
    1828                 :             :                                  * Abandon the connection.  There's not much else we can
    1829                 :             :                                  * safely do; we can't just ignore the message or we could
    1830                 :             :                                  * miss important changes to the connection state.
    1831                 :             :                                  * pqCheckInBufferSpace() already reported the error.
    1832                 :             :                                  */
    1833                 :           0 :                                 handleFatalError(conn);
    1834                 :           0 :                                 return -2;
    1835                 :             :                         }
    1836                 :           0 :                         return 0;
    1837                 :             :                 }
    1838                 :             : 
    1839                 :             :                 /*
    1840                 :             :                  * If it's a legitimate async message type, process it.  (NOTIFY
    1841                 :             :                  * messages are not currently possible here, but we handle them for
    1842                 :             :                  * completeness.)  Otherwise, if it's anything except Copy Data,
    1843                 :             :                  * report end-of-copy.
    1844                 :             :                  */
    1845   [ +  -  -  -  :         410 :                 switch (id)
                   -  + ]
    1846                 :             :                 {
    1847                 :             :                         case PqMsg_NotificationResponse:
    1848         [ #  # ]:           0 :                                 if (getNotify(conn))
    1849                 :           0 :                                         return 0;
    1850                 :           0 :                                 break;
    1851                 :             :                         case PqMsg_NoticeResponse:
    1852         [ #  # ]:           0 :                                 if (pqGetErrorNotice3(conn, false))
    1853                 :           0 :                                         return 0;
    1854                 :           0 :                                 break;
    1855                 :             :                         case PqMsg_ParameterStatus:
    1856         [ #  # ]:           0 :                                 if (getParameterStatus(conn))
    1857                 :           0 :                                         return 0;
    1858                 :           0 :                                 break;
    1859                 :             :                         case PqMsg_CopyData:
    1860                 :         321 :                                 return msgLength;
    1861                 :             :                         case PqMsg_CopyDone:
    1862                 :             : 
    1863                 :             :                                 /*
    1864                 :             :                                  * If this is a CopyDone message, exit COPY_OUT mode and let
    1865                 :             :                                  * caller read status with PQgetResult().  If we're in
    1866                 :             :                                  * COPY_BOTH mode, return to COPY_IN mode.
    1867                 :             :                                  */
    1868         [ -  + ]:          89 :                                 if (conn->asyncStatus == PGASYNC_COPY_BOTH)
    1869                 :           0 :                                         conn->asyncStatus = PGASYNC_COPY_IN;
    1870                 :             :                                 else
    1871                 :          89 :                                         conn->asyncStatus = PGASYNC_BUSY;
    1872                 :          89 :                                 return -1;
    1873                 :             :                         default:                        /* treat as end of copy */
    1874                 :             : 
    1875                 :             :                                 /*
    1876                 :             :                                  * Any other message terminates either COPY_IN or COPY_BOTH
    1877                 :             :                                  * mode.
    1878                 :             :                                  */
    1879                 :           0 :                                 conn->asyncStatus = PGASYNC_BUSY;
    1880                 :           0 :                                 return -1;
    1881                 :             :                 }
    1882                 :             : 
    1883                 :             :                 /* Drop the processed message and loop around for another */
    1884                 :           0 :                 pqParseDone(conn, conn->inCursor);
    1885                 :             :         }
    1886                 :         411 : }
    1887                 :             : 
    1888                 :             : /*
    1889                 :             :  * PQgetCopyData - read a row of data from the backend during COPY OUT
    1890                 :             :  * or COPY BOTH
    1891                 :             :  *
    1892                 :             :  * If successful, sets *buffer to point to a malloc'd row of data, and
    1893                 :             :  * returns row length (always > 0) as result.
    1894                 :             :  * Returns 0 if no row available yet (only possible if async is true),
    1895                 :             :  * -1 if end of copy (consult PQgetResult), or -2 if error (consult
    1896                 :             :  * PQerrorMessage).
    1897                 :             :  */
    1898                 :             : int
    1899                 :         410 : pqGetCopyData3(PGconn *conn, char **buffer, int async)
    1900                 :             : {
    1901                 :         410 :         int                     msgLength;
    1902                 :             : 
    1903                 :         410 :         for (;;)
    1904                 :             :         {
    1905                 :             :                 /*
    1906                 :             :                  * Collect the next input message.  To make life simpler for async
    1907                 :             :                  * callers, we keep returning 0 until the next message is fully
    1908                 :             :                  * available, even if it is not Copy Data.
    1909                 :             :                  */
    1910                 :         411 :                 msgLength = getCopyDataMessage(conn);
    1911         [ +  + ]:         411 :                 if (msgLength < 0)
    1912                 :          89 :                         return msgLength;       /* end-of-copy or error */
    1913         [ +  + ]:         322 :                 if (msgLength == 0)
    1914                 :             :                 {
    1915                 :             :                         /* Don't block if async read requested */
    1916         [ -  + ]:           1 :                         if (async)
    1917                 :           0 :                                 return 0;
    1918                 :             :                         /* Need to load more data */
    1919   [ +  -  -  + ]:           1 :                         if (pqWait(true, false, conn) ||
    1920                 :           1 :                                 pqReadData(conn) < 0)
    1921                 :           0 :                                 return -2;
    1922                 :           1 :                         continue;
    1923                 :             :                 }
    1924                 :             : 
    1925                 :             :                 /*
    1926                 :             :                  * Drop zero-length messages (shouldn't happen anyway).  Otherwise
    1927                 :             :                  * pass the data back to the caller.
    1928                 :             :                  */
    1929                 :         321 :                 msgLength -= 4;
    1930         [ -  + ]:         321 :                 if (msgLength > 0)
    1931                 :             :                 {
    1932                 :         321 :                         *buffer = (char *) malloc(msgLength + 1);
    1933         [ +  - ]:         321 :                         if (*buffer == NULL)
    1934                 :             :                         {
    1935                 :           0 :                                 libpq_append_conn_error(conn, "out of memory");
    1936                 :           0 :                                 return -2;
    1937                 :             :                         }
    1938                 :         321 :                         memcpy(*buffer, &conn->inBuffer[conn->inCursor], msgLength);
    1939                 :         321 :                         (*buffer)[msgLength] = '\0';    /* Add terminating null */
    1940                 :             : 
    1941                 :             :                         /* Mark message consumed */
    1942                 :         321 :                         pqParseDone(conn, conn->inCursor + msgLength);
    1943                 :             : 
    1944                 :         321 :                         return msgLength;
    1945                 :             :                 }
    1946                 :             : 
    1947                 :             :                 /* Empty, so drop it and loop around for another */
    1948                 :           0 :                 pqParseDone(conn, conn->inCursor);
    1949                 :             :         }
    1950                 :         410 : }
    1951                 :             : 
    1952                 :             : /*
    1953                 :             :  * PQgetline - gets a newline-terminated string from the backend.
    1954                 :             :  *
    1955                 :             :  * See fe-exec.c for documentation.
    1956                 :             :  */
    1957                 :             : int
    1958                 :           0 : pqGetline3(PGconn *conn, char *s, int maxlen)
    1959                 :             : {
    1960                 :           0 :         int                     status;
    1961                 :             : 
    1962         [ #  # ]:           0 :         if (conn->sock == PGINVALID_SOCKET ||
    1963         [ #  # ]:           0 :                 (conn->asyncStatus != PGASYNC_COPY_OUT &&
    1964         [ #  # ]:           0 :                  conn->asyncStatus != PGASYNC_COPY_BOTH) ||
    1965                 :           0 :                 conn->copy_is_binary)
    1966                 :             :         {
    1967                 :           0 :                 libpq_append_conn_error(conn, "PQgetline: not doing text COPY OUT");
    1968                 :           0 :                 *s = '\0';
    1969                 :           0 :                 return EOF;
    1970                 :             :         }
    1971                 :             : 
    1972         [ #  # ]:           0 :         while ((status = PQgetlineAsync(conn, s, maxlen - 1)) == 0)
    1973                 :             :         {
    1974                 :             :                 /* need to load more data */
    1975   [ #  #  #  # ]:           0 :                 if (pqWait(true, false, conn) ||
    1976                 :           0 :                         pqReadData(conn) < 0)
    1977                 :             :                 {
    1978                 :           0 :                         *s = '\0';
    1979                 :           0 :                         return EOF;
    1980                 :             :                 }
    1981                 :             :         }
    1982                 :             : 
    1983         [ #  # ]:           0 :         if (status < 0)
    1984                 :             :         {
    1985                 :             :                 /* End of copy detected; gin up old-style terminator */
    1986                 :           0 :                 strcpy(s, "\\.");
    1987                 :           0 :                 return 0;
    1988                 :             :         }
    1989                 :             : 
    1990                 :             :         /* Add null terminator, and strip trailing \n if present */
    1991         [ #  # ]:           0 :         if (s[status - 1] == '\n')
    1992                 :             :         {
    1993                 :           0 :                 s[status - 1] = '\0';
    1994                 :           0 :                 return 0;
    1995                 :             :         }
    1996                 :             :         else
    1997                 :             :         {
    1998                 :           0 :                 s[status] = '\0';
    1999                 :           0 :                 return 1;
    2000                 :             :         }
    2001                 :           0 : }
    2002                 :             : 
    2003                 :             : /*
    2004                 :             :  * PQgetlineAsync - gets a COPY data row without blocking.
    2005                 :             :  *
    2006                 :             :  * See fe-exec.c for documentation.
    2007                 :             :  */
    2008                 :             : int
    2009                 :           0 : pqGetlineAsync3(PGconn *conn, char *buffer, int bufsize)
    2010                 :             : {
    2011                 :           0 :         int                     msgLength;
    2012                 :           0 :         int                     avail;
    2013                 :             : 
    2014                 :           0 :         if (conn->asyncStatus != PGASYNC_COPY_OUT
    2015   [ #  #  #  # ]:           0 :                 && conn->asyncStatus != PGASYNC_COPY_BOTH)
    2016                 :           0 :                 return -1;                              /* we are not doing a copy... */
    2017                 :             : 
    2018                 :             :         /*
    2019                 :             :          * Recognize the next input message.  To make life simpler for async
    2020                 :             :          * callers, we keep returning 0 until the next message is fully available
    2021                 :             :          * even if it is not Copy Data.  This should keep PQendcopy from blocking.
    2022                 :             :          * (Note: unlike pqGetCopyData3, we do not change asyncStatus here.)
    2023                 :             :          */
    2024                 :           0 :         msgLength = getCopyDataMessage(conn);
    2025         [ #  # ]:           0 :         if (msgLength < 0)
    2026                 :           0 :                 return -1;                              /* end-of-copy or error */
    2027         [ #  # ]:           0 :         if (msgLength == 0)
    2028                 :           0 :                 return 0;                               /* no data yet */
    2029                 :             : 
    2030                 :             :         /*
    2031                 :             :          * Move data from libpq's buffer to the caller's.  In the case where a
    2032                 :             :          * prior call found the caller's buffer too small, we use
    2033                 :             :          * conn->copy_already_done to remember how much of the row was already
    2034                 :             :          * returned to the caller.
    2035                 :             :          */
    2036                 :           0 :         conn->inCursor += conn->copy_already_done;
    2037                 :           0 :         avail = msgLength - 4 - conn->copy_already_done;
    2038         [ #  # ]:           0 :         if (avail <= bufsize)
    2039                 :             :         {
    2040                 :             :                 /* Able to consume the whole message */
    2041                 :           0 :                 memcpy(buffer, &conn->inBuffer[conn->inCursor], avail);
    2042                 :             :                 /* Mark message consumed */
    2043                 :           0 :                 conn->inStart = conn->inCursor + avail;
    2044                 :             :                 /* Reset state for next time */
    2045                 :           0 :                 conn->copy_already_done = 0;
    2046                 :           0 :                 return avail;
    2047                 :             :         }
    2048                 :             :         else
    2049                 :             :         {
    2050                 :             :                 /* We must return a partial message */
    2051                 :           0 :                 memcpy(buffer, &conn->inBuffer[conn->inCursor], bufsize);
    2052                 :             :                 /* The message is NOT consumed from libpq's buffer */
    2053                 :           0 :                 conn->copy_already_done += bufsize;
    2054                 :           0 :                 return bufsize;
    2055                 :             :         }
    2056                 :           0 : }
    2057                 :             : 
    2058                 :             : /*
    2059                 :             :  * PQendcopy
    2060                 :             :  *
    2061                 :             :  * See fe-exec.c for documentation.
    2062                 :             :  */
    2063                 :             : int
    2064                 :           0 : pqEndcopy3(PGconn *conn)
    2065                 :             : {
    2066                 :           0 :         PGresult   *result;
    2067                 :             : 
    2068         [ #  # ]:           0 :         if (conn->asyncStatus != PGASYNC_COPY_IN &&
    2069   [ #  #  #  # ]:           0 :                 conn->asyncStatus != PGASYNC_COPY_OUT &&
    2070                 :           0 :                 conn->asyncStatus != PGASYNC_COPY_BOTH)
    2071                 :             :         {
    2072                 :           0 :                 libpq_append_conn_error(conn, "no COPY in progress");
    2073                 :           0 :                 return 1;
    2074                 :             :         }
    2075                 :             : 
    2076                 :             :         /* Send the CopyDone message if needed */
    2077   [ #  #  #  # ]:           0 :         if (conn->asyncStatus == PGASYNC_COPY_IN ||
    2078                 :           0 :                 conn->asyncStatus == PGASYNC_COPY_BOTH)
    2079                 :             :         {
    2080   [ #  #  #  # ]:           0 :                 if (pqPutMsgStart(PqMsg_CopyDone, conn) < 0 ||
    2081                 :           0 :                         pqPutMsgEnd(conn) < 0)
    2082                 :           0 :                         return 1;
    2083                 :             : 
    2084                 :             :                 /*
    2085                 :             :                  * If we sent the COPY command in extended-query mode, we must issue a
    2086                 :             :                  * Sync as well.
    2087                 :             :                  */
    2088   [ #  #  #  # ]:           0 :                 if (conn->cmd_queue_head &&
    2089                 :           0 :                         conn->cmd_queue_head->queryclass != PGQUERY_SIMPLE)
    2090                 :             :                 {
    2091   [ #  #  #  # ]:           0 :                         if (pqPutMsgStart(PqMsg_Sync, conn) < 0 ||
    2092                 :           0 :                                 pqPutMsgEnd(conn) < 0)
    2093                 :           0 :                                 return 1;
    2094                 :           0 :                 }
    2095                 :           0 :         }
    2096                 :             : 
    2097                 :             :         /*
    2098                 :             :          * make sure no data is waiting to be sent, abort if we are non-blocking
    2099                 :             :          * and the flush fails
    2100                 :             :          */
    2101   [ #  #  #  # ]:           0 :         if (pqFlush(conn) && pqIsnonblocking(conn))
    2102                 :           0 :                 return 1;
    2103                 :             : 
    2104                 :             :         /* Return to active duty */
    2105                 :           0 :         conn->asyncStatus = PGASYNC_BUSY;
    2106                 :             : 
    2107                 :             :         /*
    2108                 :             :          * Non blocking connections may have to abort at this point.  If everyone
    2109                 :             :          * played the game there should be no problem, but in error scenarios the
    2110                 :             :          * expected messages may not have arrived yet.  (We are assuming that the
    2111                 :             :          * backend's packetizing will ensure that CommandComplete arrives along
    2112                 :             :          * with the CopyDone; are there corner cases where that doesn't happen?)
    2113                 :             :          */
    2114   [ #  #  #  # ]:           0 :         if (pqIsnonblocking(conn) && PQisBusy(conn))
    2115                 :           0 :                 return 1;
    2116                 :             : 
    2117                 :             :         /* Wait for the completion response */
    2118                 :           0 :         result = PQgetResult(conn);
    2119                 :             : 
    2120                 :             :         /* Expecting a successful result */
    2121   [ #  #  #  # ]:           0 :         if (result && result->resultStatus == PGRES_COMMAND_OK)
    2122                 :             :         {
    2123                 :           0 :                 PQclear(result);
    2124                 :           0 :                 return 0;
    2125                 :             :         }
    2126                 :             : 
    2127                 :             :         /*
    2128                 :             :          * Trouble. For backwards-compatibility reasons, we issue the error
    2129                 :             :          * message as if it were a notice (would be nice to get rid of this
    2130                 :             :          * silliness, but too many apps probably don't handle errors from
    2131                 :             :          * PQendcopy reasonably).  Note that the app can still obtain the error
    2132                 :             :          * status from the PGconn object.
    2133                 :             :          */
    2134         [ #  # ]:           0 :         if (conn->errorMessage.len > 0)
    2135                 :             :         {
    2136                 :             :                 /* We have to strip the trailing newline ... pain in neck... */
    2137                 :           0 :                 char            svLast = conn->errorMessage.data[conn->errorMessage.len - 1];
    2138                 :             : 
    2139         [ #  # ]:           0 :                 if (svLast == '\n')
    2140                 :           0 :                         conn->errorMessage.data[conn->errorMessage.len - 1] = '\0';
    2141                 :           0 :                 pqInternalNotice(&conn->noticeHooks, "%s", conn->errorMessage.data);
    2142                 :           0 :                 conn->errorMessage.data[conn->errorMessage.len - 1] = svLast;
    2143                 :           0 :         }
    2144                 :             : 
    2145                 :           0 :         PQclear(result);
    2146                 :             : 
    2147                 :           0 :         return 1;
    2148                 :           0 : }
    2149                 :             : 
    2150                 :             : 
    2151                 :             : /*
    2152                 :             :  * PQfn - Send a function call to the POSTGRES backend.
    2153                 :             :  *
    2154                 :             :  * See fe-exec.c for documentation.
    2155                 :             :  */
    2156                 :             : PGresult *
    2157                 :         259 : pqFunctionCall3(PGconn *conn, Oid fnid,
    2158                 :             :                                 int *result_buf, int *actual_result_len,
    2159                 :             :                                 int result_is_int,
    2160                 :             :                                 const PQArgBlock *args, int nargs)
    2161                 :             : {
    2162                 :         259 :         bool            needInput = false;
    2163                 :         259 :         ExecStatusType status = PGRES_FATAL_ERROR;
    2164                 :         259 :         char            id;
    2165                 :         259 :         int                     msgLength;
    2166                 :         259 :         int                     avail;
    2167                 :         259 :         int                     i;
    2168                 :             : 
    2169                 :             :         /* already validated by PQfn */
    2170         [ +  - ]:         259 :         Assert(conn->pipelineStatus == PQ_PIPELINE_OFF);
    2171                 :             : 
    2172                 :             :         /* PQfn already validated connection state */
    2173                 :             : 
    2174         [ +  - ]:         259 :         if (pqPutMsgStart(PqMsg_FunctionCall, conn) < 0 ||
    2175         [ +  - ]:         259 :                 pqPutInt(fnid, 4, conn) < 0 ||       /* function id */
    2176         [ +  - ]:         259 :                 pqPutInt(1, 2, conn) < 0 || /* # of format codes */
    2177   [ +  -  -  + ]:         259 :                 pqPutInt(1, 2, conn) < 0 || /* format code: BINARY */
    2178                 :         259 :                 pqPutInt(nargs, 2, conn) < 0)        /* # of args */
    2179                 :             :         {
    2180                 :             :                 /* error message should be set up already */
    2181                 :           0 :                 return NULL;
    2182                 :             :         }
    2183                 :             : 
    2184         [ +  + ]:         768 :         for (i = 0; i < nargs; ++i)
    2185                 :             :         {                                                       /* len.int4 + contents     */
    2186         [ -  + ]:         509 :                 if (pqPutInt(args[i].len, 4, conn))
    2187                 :           0 :                         return NULL;
    2188         [ +  - ]:         509 :                 if (args[i].len == -1)
    2189                 :           0 :                         continue;                       /* it's NULL */
    2190                 :             : 
    2191         [ +  + ]:         509 :                 if (args[i].isint)
    2192                 :             :                 {
    2193         [ -  + ]:         345 :                         if (pqPutInt(args[i].u.integer, args[i].len, conn))
    2194                 :           0 :                                 return NULL;
    2195                 :         345 :                 }
    2196                 :             :                 else
    2197                 :             :                 {
    2198         [ -  + ]:         164 :                         if (pqPutnchar(args[i].u.ptr, args[i].len, conn))
    2199                 :           0 :                                 return NULL;
    2200                 :             :                 }
    2201                 :         509 :         }
    2202                 :             : 
    2203         [ -  + ]:         259 :         if (pqPutInt(1, 2, conn) < 0)        /* result format code: BINARY */
    2204                 :           0 :                 return NULL;
    2205                 :             : 
    2206   [ +  -  -  + ]:         259 :         if (pqPutMsgEnd(conn) < 0 ||
    2207                 :         259 :                 pqFlush(conn))
    2208                 :           0 :                 return NULL;
    2209                 :             : 
    2210                 :         518 :         for (;;)
    2211                 :             :         {
    2212         [ +  + ]:         858 :                 if (needInput)
    2213                 :             :                 {
    2214                 :             :                         /* Wait for some data to arrive (or for the channel to close) */
    2215   [ +  -  +  - ]:         340 :                         if (pqWait(true, false, conn) ||
    2216                 :         340 :                                 pqReadData(conn) < 0)
    2217                 :           0 :                                 break;
    2218                 :         340 :                 }
    2219                 :             : 
    2220                 :             :                 /*
    2221                 :             :                  * Scan the message. If we run out of data, loop around to try again.
    2222                 :             :                  */
    2223                 :         858 :                 needInput = true;
    2224                 :             : 
    2225                 :         858 :                 conn->inCursor = conn->inStart;
    2226         [ +  + ]:         858 :                 if (pqGetc(&id, conn))
    2227                 :         259 :                         continue;
    2228         [ -  + ]:         599 :                 if (pqGetInt(&msgLength, 4, conn))
    2229                 :           0 :                         continue;
    2230                 :             : 
    2231                 :             :                 /*
    2232                 :             :                  * Try to validate message type/length here.  A length less than 4 is
    2233                 :             :                  * definitely broken.  Large lengths should only be believed for a few
    2234                 :             :                  * message types.
    2235                 :             :                  */
    2236         [ -  + ]:         599 :                 if (msgLength < 4)
    2237                 :             :                 {
    2238                 :           0 :                         handleSyncLoss(conn, id, msgLength);
    2239                 :           0 :                         break;
    2240                 :             :                 }
    2241   [ -  +  #  #  :         599 :                 if (msgLength > 30000 && !VALID_LONG_MESSAGE_TYPE(id))
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
    2242                 :             :                 {
    2243                 :           0 :                         handleSyncLoss(conn, id, msgLength);
    2244                 :           0 :                         break;
    2245                 :             :                 }
    2246                 :             : 
    2247                 :             :                 /*
    2248                 :             :                  * Can't process if message body isn't all here yet.
    2249                 :             :                  */
    2250                 :         599 :                 msgLength -= 4;
    2251                 :         599 :                 avail = conn->inEnd - conn->inCursor;
    2252         [ +  + ]:         599 :                 if (avail < msgLength)
    2253                 :             :                 {
    2254                 :             :                         /*
    2255                 :             :                          * Before looping, enlarge the input buffer if needed to hold the
    2256                 :             :                          * whole message.  See notes in parseInput.
    2257                 :             :                          */
    2258   [ +  -  +  - ]:         162 :                         if (pqCheckInBufferSpace(conn->inCursor + (size_t) msgLength,
    2259                 :          81 :                                                                          conn))
    2260                 :             :                         {
    2261                 :             :                                 /*
    2262                 :             :                                  * Abandon the connection.  There's not much else we can
    2263                 :             :                                  * safely do; we can't just ignore the message or we could
    2264                 :             :                                  * miss important changes to the connection state.
    2265                 :             :                                  * pqCheckInBufferSpace() already reported the error.
    2266                 :             :                                  */
    2267                 :           0 :                                 handleFatalError(conn);
    2268                 :           0 :                                 break;
    2269                 :             :                         }
    2270                 :          81 :                         continue;
    2271                 :             :                 }
    2272                 :             : 
    2273                 :             :                 /*
    2274                 :             :                  * We should see V or E response to the command, but might get N
    2275                 :             :                  * and/or A notices first. We also need to swallow the final Z before
    2276                 :             :                  * returning.
    2277                 :             :                  */
    2278   [ +  -  -  -  :         518 :                 switch (id)
                +  -  - ]
    2279                 :             :                 {
    2280                 :             :                         case PqMsg_FunctionCallResponse:
    2281         [ -  + ]:         259 :                                 if (pqGetInt(actual_result_len, 4, conn))
    2282                 :           0 :                                         continue;
    2283         [ -  + ]:         259 :                                 if (*actual_result_len != -1)
    2284                 :             :                                 {
    2285         [ +  + ]:         259 :                                         if (result_is_int)
    2286                 :             :                                         {
    2287         [ +  - ]:         176 :                                                 if (pqGetInt(result_buf, *actual_result_len, conn))
    2288                 :           0 :                                                         continue;
    2289                 :         176 :                                         }
    2290                 :             :                                         else
    2291                 :             :                                         {
    2292   [ -  +  -  + ]:         166 :                                                 if (pqGetnchar(result_buf,
    2293                 :          83 :                                                                            *actual_result_len,
    2294                 :          83 :                                                                            conn))
    2295                 :           0 :                                                         continue;
    2296                 :             :                                         }
    2297                 :         259 :                                 }
    2298                 :             :                                 /* correctly finished function result message */
    2299                 :         259 :                                 status = PGRES_COMMAND_OK;
    2300                 :         259 :                                 break;
    2301                 :             :                         case PqMsg_ErrorResponse:
    2302         [ #  # ]:           0 :                                 if (pqGetErrorNotice3(conn, true))
    2303                 :           0 :                                         continue;
    2304                 :           0 :                                 status = PGRES_FATAL_ERROR;
    2305                 :           0 :                                 break;
    2306                 :             :                         case PqMsg_NotificationResponse:
    2307                 :             :                                 /* handle notify and go back to processing return values */
    2308         [ #  # ]:           0 :                                 if (getNotify(conn))
    2309                 :           0 :                                         continue;
    2310                 :           0 :                                 break;
    2311                 :             :                         case PqMsg_NoticeResponse:
    2312                 :             :                                 /* handle notice and go back to processing return values */
    2313         [ #  # ]:           0 :                                 if (pqGetErrorNotice3(conn, false))
    2314                 :           0 :                                         continue;
    2315                 :           0 :                                 break;
    2316                 :             :                         case PqMsg_ReadyForQuery:
    2317         [ +  - ]:         259 :                                 if (getReadyForQuery(conn))
    2318                 :           0 :                                         continue;
    2319                 :             : 
    2320                 :             :                                 /* consume the message */
    2321                 :         259 :                                 pqParseDone(conn, conn->inStart + 5 + msgLength);
    2322                 :             : 
    2323                 :             :                                 /*
    2324                 :             :                                  * If we already have a result object (probably an error), use
    2325                 :             :                                  * that.  Otherwise, if we saw a function result message,
    2326                 :             :                                  * report COMMAND_OK.  Otherwise, the backend violated the
    2327                 :             :                                  * protocol, so complain.
    2328                 :             :                                  */
    2329   [ +  -  -  + ]:         259 :                                 if (!pgHavePendingResult(conn))
    2330                 :             :                                 {
    2331         [ +  - ]:         259 :                                         if (status == PGRES_COMMAND_OK)
    2332                 :             :                                         {
    2333                 :         259 :                                                 conn->result = PQmakeEmptyPGresult(conn, status);
    2334         [ +  - ]:         259 :                                                 if (!conn->result)
    2335                 :             :                                                 {
    2336                 :           0 :                                                         libpq_append_conn_error(conn, "out of memory");
    2337                 :           0 :                                                         pqSaveErrorResult(conn);
    2338                 :           0 :                                                 }
    2339                 :         259 :                                         }
    2340                 :             :                                         else
    2341                 :             :                                         {
    2342                 :           0 :                                                 libpq_append_conn_error(conn, "protocol error: no function result");
    2343                 :           0 :                                                 pqSaveErrorResult(conn);
    2344                 :             :                                         }
    2345                 :         259 :                                 }
    2346                 :             :                                 /* and we're out */
    2347                 :         259 :                                 return pqPrepareAsyncResult(conn);
    2348                 :             :                         case PqMsg_ParameterStatus:
    2349         [ #  # ]:           0 :                                 if (getParameterStatus(conn))
    2350                 :           0 :                                         continue;
    2351                 :           0 :                                 break;
    2352                 :             :                         default:
    2353                 :             :                                 /* The backend violates the protocol. */
    2354                 :           0 :                                 libpq_append_conn_error(conn, "protocol error: id=0x%x", id);
    2355                 :           0 :                                 pqSaveErrorResult(conn);
    2356                 :             : 
    2357                 :             :                                 /*
    2358                 :             :                                  * We can't call parsing done due to the protocol violation
    2359                 :             :                                  * (so message tracing wouldn't work), but trust the specified
    2360                 :             :                                  * message length as what to skip.
    2361                 :             :                                  */
    2362                 :           0 :                                 conn->inStart += 5 + msgLength;
    2363                 :           0 :                                 return pqPrepareAsyncResult(conn);
    2364                 :             :                 }
    2365                 :             : 
    2366                 :             :                 /* Completed parsing this message, keep going */
    2367                 :         259 :                 pqParseDone(conn, conn->inStart + 5 + msgLength);
    2368                 :         259 :                 needInput = false;
    2369                 :             :         }
    2370                 :             : 
    2371                 :             :         /*
    2372                 :             :          * We fall out of the loop only upon failing to read data.
    2373                 :             :          * conn->errorMessage has been set by pqWait or pqReadData. We want to
    2374                 :             :          * append it to any already-received error message.
    2375                 :             :          */
    2376                 :           0 :         pqSaveErrorResult(conn);
    2377                 :           0 :         return pqPrepareAsyncResult(conn);
    2378                 :         259 : }
    2379                 :             : 
    2380                 :             : 
    2381                 :             : /*
    2382                 :             :  * Construct startup packet
    2383                 :             :  *
    2384                 :             :  * Returns a malloc'd packet buffer, or NULL if out of memory
    2385                 :             :  */
    2386                 :             : char *
    2387                 :         316 : pqBuildStartupPacket3(PGconn *conn, int *packetlen,
    2388                 :             :                                           const PQEnvironmentOption *options)
    2389                 :             : {
    2390                 :         316 :         char       *startpacket;
    2391                 :         316 :         size_t          len;
    2392                 :             : 
    2393                 :         316 :         len = build_startup_packet(conn, NULL, options);
    2394   [ +  -  -  + ]:         316 :         if (len == 0 || len > INT_MAX)
    2395                 :           0 :                 return NULL;
    2396                 :             : 
    2397                 :         316 :         *packetlen = len;
    2398                 :         316 :         startpacket = (char *) malloc(*packetlen);
    2399         [ +  - ]:         316 :         if (!startpacket)
    2400                 :           0 :                 return NULL;
    2401                 :             : 
    2402                 :         316 :         len = build_startup_packet(conn, startpacket, options);
    2403         [ +  - ]:         316 :         Assert(*packetlen == len);
    2404                 :             : 
    2405                 :         316 :         return startpacket;
    2406                 :         316 : }
    2407                 :             : 
    2408                 :             : /*
    2409                 :             :  * Build a startup packet given a filled-in PGconn structure.
    2410                 :             :  *
    2411                 :             :  * We need to figure out how much space is needed, then fill it in.
    2412                 :             :  * To avoid duplicate logic, this routine is called twice: the first time
    2413                 :             :  * (with packet == NULL) just counts the space needed, the second time
    2414                 :             :  * (with packet == allocated space) fills it in.  Return value is the number
    2415                 :             :  * of bytes used, or zero in the unlikely event of size_t overflow.
    2416                 :             :  */
    2417                 :             : static size_t
    2418                 :         632 : build_startup_packet(const PGconn *conn, char *packet,
    2419                 :             :                                          const PQEnvironmentOption *options)
    2420                 :             : {
    2421                 :         632 :         size_t          packet_len = 0;
    2422                 :         632 :         const PQEnvironmentOption *next_eo;
    2423                 :         632 :         const char *val;
    2424                 :             : 
    2425                 :             :         /* Protocol version comes first. */
    2426         [ +  + ]:         632 :         if (packet)
    2427                 :             :         {
    2428                 :         316 :                 ProtocolVersion pv = pg_hton32(conn->pversion);
    2429                 :             : 
    2430                 :         316 :                 memcpy(packet + packet_len, &pv, sizeof(ProtocolVersion));
    2431                 :         316 :         }
    2432                 :         632 :         packet_len += sizeof(ProtocolVersion);
    2433                 :             : 
    2434                 :             :         /* Add user name, database name, options */
    2435                 :             : 
    2436                 :             : #define ADD_STARTUP_OPTION(optname, optval) \
    2437                 :             :         do { \
    2438                 :             :                 if (packet) \
    2439                 :             :                         strcpy(packet + packet_len, optname); \
    2440                 :             :                 if (pg_add_size_overflow(packet_len, strlen(optname) + 1, &packet_len)) \
    2441                 :             :                         return 0; \
    2442                 :             :                 if (packet) \
    2443                 :             :                         strcpy(packet + packet_len, optval); \
    2444                 :             :                 if (pg_add_size_overflow(packet_len, strlen(optval) + 1, &packet_len)) \
    2445                 :             :                         return 0; \
    2446                 :             :         } while(0)
    2447                 :             : 
    2448   [ +  -  -  + ]:         632 :         if (conn->pguser && conn->pguser[0])
    2449   [ +  +  -  +  :         632 :                 ADD_STARTUP_OPTION("user", conn->pguser);
             +  +  -  + ]
    2450   [ +  -  -  + ]:         632 :         if (conn->dbName && conn->dbName[0])
    2451   [ +  +  -  +  :         632 :                 ADD_STARTUP_OPTION("database", conn->dbName);
             +  +  -  + ]
    2452   [ -  +  #  # ]:         632 :         if (conn->replication && conn->replication[0])
    2453   [ #  #  #  #  :           0 :                 ADD_STARTUP_OPTION("replication", conn->replication);
             #  #  #  # ]
    2454   [ +  -  +  + ]:         632 :         if (conn->pgoptions && conn->pgoptions[0])
    2455   [ +  +  -  +  :         586 :                 ADD_STARTUP_OPTION("options", conn->pgoptions);
             +  +  -  + ]
    2456         [ -  + ]:         632 :         if (conn->send_appname)
    2457                 :             :         {
    2458                 :             :                 /* Use appname if present, otherwise use fallback */
    2459         [ +  - ]:         632 :                 val = conn->appname ? conn->appname : conn->fbappname;
    2460   [ +  -  -  + ]:         632 :                 if (val && val[0])
    2461   [ +  +  -  +  :         632 :                         ADD_STARTUP_OPTION("application_name", val);
             +  +  -  + ]
    2462                 :         632 :         }
    2463                 :             : 
    2464   [ -  +  #  # ]:         632 :         if (conn->client_encoding_initial && conn->client_encoding_initial[0])
    2465   [ #  #  #  #  :           0 :                 ADD_STARTUP_OPTION("client_encoding", conn->client_encoding_initial);
             #  #  #  # ]
    2466                 :             : 
    2467                 :             :         /* Add any environment-driven GUC settings needed */
    2468         [ +  + ]:        2528 :         for (next_eo = options; next_eo->envName; next_eo++)
    2469                 :             :         {
    2470         [ +  + ]:        1896 :                 if ((val = getenv(next_eo->envName)) != NULL)
    2471                 :             :                 {
    2472         [ -  + ]:        1172 :                         if (pg_strcasecmp(val, "default") != 0)
    2473   [ +  +  -  +  :        1172 :                                 ADD_STARTUP_OPTION(next_eo->pgName, val);
             +  +  -  + ]
    2474                 :        1172 :                 }
    2475                 :        1896 :         }
    2476                 :             : 
    2477                 :             :         /* Add trailing terminator */
    2478         [ +  + ]:         632 :         if (packet)
    2479                 :         316 :                 packet[packet_len] = '\0';
    2480         [ -  + ]:         632 :         if (pg_add_size_overflow(packet_len, 1, &packet_len))
    2481                 :           0 :                 return 0;
    2482                 :             : 
    2483                 :         632 :         return packet_len;
    2484                 :         632 : }
        

Generated by: LCOV version 2.3.2-1