aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2023-09-25 11:50:28 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2023-09-25 11:50:28 -0400
commitcf1c65070a89de1e810ef2c5a2036ca4a56c2fdc (patch)
treebdb4c93351139022bed0f7a56e79a7c83720115f /src
parent3aff1d3fd0fb7f00da3c9994114e596c6744ea41 (diff)
downloadpostgresql-cf1c65070a89de1e810ef2c5a2036ca4a56c2fdc.tar.gz
postgresql-cf1c65070a89de1e810ef2c5a2036ca4a56c2fdc.zip
Limit to_tsvector_byid's initial array allocation to something sane.
The initial estimate of the number of distinct ParsedWords is just that: an estimate. Don't let it exceed what palloc is willing to allocate. If in fact we need more entries, we'll eventually fail trying to enlarge the array. But if we don't, this allows success on inputs that currently draw "invalid memory alloc request size". Per bug #18080 from Uwe Binder. Back-patch to all supported branches. Discussion: https://postgr.es/m/18080-d5c5e58fef8c99b7@postgresql.org
Diffstat (limited to 'src')
-rw-r--r--src/backend/tsearch/to_tsany.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/tsearch/to_tsany.c b/src/backend/tsearch/to_tsany.c
index 3b6d41f9e8e..fe39d6c4b93 100644
--- a/src/backend/tsearch/to_tsany.c
+++ b/src/backend/tsearch/to_tsany.c
@@ -252,6 +252,8 @@ to_tsvector_byid(PG_FUNCTION_ARGS)
* number */
if (prs.lenwords < 2)
prs.lenwords = 2;
+ else if (prs.lenwords > MaxAllocSize / sizeof(ParsedWord))
+ prs.lenwords = MaxAllocSize / sizeof(ParsedWord);
prs.curwords = 0;
prs.pos = 0;
prs.words = (ParsedWord *) palloc(sizeof(ParsedWord) * prs.lenwords);