From: Tom Lane Date: Fri, 2 Oct 2015 19:00:52 +0000 (-0400) Subject: Add recursion depth protection to LIKE matching. X-Git-Tag: REL9_2_14~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=57bf7b54831b68f63cea006b988e82cccb3469de;p=thirdparty%2Fpostgresql.git Add recursion depth protection to LIKE matching. Since MatchText() recurses, it could in principle be driven to stack overflow, although quite a long pattern would be needed. --- diff --git a/src/backend/utils/adt/like.c b/src/backend/utils/adt/like.c index 6e2aa9a86dc..845931d998d 100644 --- a/src/backend/utils/adt/like.c +++ b/src/backend/utils/adt/like.c @@ -21,6 +21,7 @@ #include "catalog/pg_collation.h" #include "mb/pg_wchar.h" +#include "miscadmin.h" #include "utils/builtins.h" #include "utils/pg_locale.h" diff --git a/src/backend/utils/adt/like_match.c b/src/backend/utils/adt/like_match.c index fcd36f09ee1..89814a4b56c 100644 --- a/src/backend/utils/adt/like_match.c +++ b/src/backend/utils/adt/like_match.c @@ -83,6 +83,9 @@ MatchText(char *t, int tlen, char *p, int plen, if (plen == 1 && *p == '%') return LIKE_TRUE; + /* Since this function recurses, it could be driven to stack overflow */ + check_stack_depth(); + /* * In this loop, we advance by char when matching wildcards (and thus on * recursive entry to this function we are properly char-synced). On other