]> granicus.if.org Git - postgresql/commitdiff
Fix volatile-safety issue in pltcl_SPI_execute_plan().
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 26 Jan 2015 17:18:25 +0000 (12:18 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 26 Jan 2015 17:18:45 +0000 (12:18 -0500)
The "callargs" variable is modified within PG_TRY and then referenced
within PG_CATCH, which is exactly the coding pattern we've now found
to be unsafe.  Marking "callargs" volatile would be problematic because
it is passed by reference to some Tcl functions, so fix the problem
by not modifying it within PG_TRY.  We can just postpone the free()
till we exit the PG_TRY construct, as is already done elsewhere in this
same file.

Also, fix failure to free(callargs) when exiting on too-many-arguments
error.  This is only a minor memory leak, but a leak nonetheless.

In passing, remove some unnecessary "volatile" markings in the same
function.  Those doubtless are there because gcc 2.95.3 whinged about
them, but we now know that its algorithm for complaining is many bricks
shy of a load.

This is certainly a live bug with compilers that optimize similarly
to current gcc, so back-patch to all active branches.

src/pl/tcl/pltcl.c

index 9bff2416b31abad8c5cc774598d09ed838c04a94..e1b689f0a7fc2641854381ccc7939031c0d98616 100644 (file)
@@ -2161,9 +2161,9 @@ pltcl_SPI_execute_plan(ClientData cdata, Tcl_Interp *interp,
        int                     j;
        Tcl_HashEntry *hashent;
        pltcl_query_desc *qdesc;
-       const char *volatile nulls = NULL;
-       CONST84 char *volatile arrayname = NULL;
-       CONST84 char *volatile loop_body = NULL;
+       const char *nulls = NULL;
+       CONST84 char *arrayname = NULL;
+       CONST84 char *loop_body = NULL;
        int                     count = 0;
        int                     callnargs;
        CONST84 char **callargs = NULL;
@@ -2293,6 +2293,8 @@ pltcl_SPI_execute_plan(ClientData cdata, Tcl_Interp *interp,
        if (i != argc)
        {
                Tcl_SetResult(interp, usage, TCL_STATIC);
+               if (callargs)
+                       ckfree((char *) callargs);
                return TCL_ERROR;
        }
 
@@ -2331,10 +2333,6 @@ pltcl_SPI_execute_plan(ClientData cdata, Tcl_Interp *interp,
                        }
                }
 
-               if (callargs)
-                       ckfree((char *) callargs);
-               callargs = NULL;
-
                /************************************************************
                 * Execute the plan
                 ************************************************************/
@@ -2361,6 +2359,9 @@ pltcl_SPI_execute_plan(ClientData cdata, Tcl_Interp *interp,
        }
        PG_END_TRY();
 
+       if (callargs)
+               ckfree((char *) callargs);
+
        return my_rc;
 }