Add a stack overflow check to copyObject().
authorTom Lane <[email protected]>
Tue, 7 Dec 2010 03:56:02 +0000 (22:56 -0500)
committerTom Lane <[email protected]>
Tue, 7 Dec 2010 03:56:02 +0000 (22:56 -0500)
There are some code paths, such as SPI_execute(), where we invoke
copyObject() on raw parse trees before doing parse analysis on them.  Since
the bison grammar is capable of building heavily nested parsetrees while
itself using only minimal stack depth, this means that copyObject() can be
the front-line function that hits stack overflow before anything else does.
Accordingly, it had better have a check_stack_depth() call.  I did a bit of
performance testing and found that this slows down copyObject() by only a
few percent, so the hit ought to be negligible in the context of complete
processing of a query.

Per off-list report from Toshihide Katayama.  Back-patch to all supported
branches.

src/backend/nodes/copyfuncs.c

index b927f41e205e9c78dc02c5ae4f548dc80bfb1747..23425466464c593d454dfd930bcc592b392b84f3 100644 (file)
@@ -22,6 +22,7 @@
 
 #include "postgres.h"
 
+#include "miscadmin.h"
 #include "nodes/plannodes.h"
 #include "nodes/relation.h"
 #include "utils/datum.h"
@@ -3014,6 +3015,9 @@ copyObject(void *from)
        if (from == NULL)
                return NULL;
 
+       /* Guard against stack overflow due to overly complex expressions */
+       check_stack_depth();
+
        switch (nodeTag(from))
        {
                        /*