postgresql/contrib/ltree
Thomas Munro 1e7fe06c10 Replace pg_mblen() with bounds-checked versions.
A corrupted string could cause code that iterates with pg_mblen() to
overrun its buffer.  Fix, by converting all callers to one of the
following:

1. Callers with a null-terminated string now use pg_mblen_cstr(), which
raises an "illegal byte sequence" error if it finds a terminator in the
middle of the sequence.

2. Callers with a length or end pointer now use either
pg_mblen_with_len() or pg_mblen_range(), for the same effect, depending
on which of the two seems more convenient at each site.

3. A small number of cases pre-validate a string, and can use
pg_mblen_unbounded().

The traditional pg_mblen() function and COPYCHAR macro still exist for
backward compatibility, but are no longer used by core code and are
hereby deprecated.  The same applies to the t_isXXX() functions.

Security: CVE-2026-2006
Backpatch-through: 14
Co-authored-by: Thomas Munro <thomas.munro@gmail.com>
Co-authored-by: Noah Misch <noah@leadboat.com>
Reviewed-by: Heikki Linnakangas <hlinnaka@iki.fi>
Reported-by: Paul Gerste (as part of zeroday.cloud)
Reported-by: Moritz Sanft (as part of zeroday.cloud)
2026-02-09 12:44:04 +13:00
..
data Add ltree data type to contrib, from Teodor Sigaev and Oleg Bartunov. 2002-07-30 16:40:34 +00:00
expected Fix contrib/ltree's subpath() with negative offset. 2025-11-01 13:25:42 -04:00
sql Fix contrib/ltree's subpath() with negative offset. 2025-11-01 13:25:42 -04:00
.gitignore Support "make check" in contrib 2011-04-25 22:27:11 +03:00
_ltree_gist.c Mark commented out code as unused 2026-01-22 12:44:07 +01:00
_ltree_op.c Use more palloc_object() and palloc_array() in contrib/ 2025-12-05 16:40:26 +09:00
crc32.c Replace pg_mblen() with bounds-checked versions. 2026-02-09 12:44:04 +13:00
crc32.h Add support for binary I/O of ltree, lquery, and ltxtquery types. 2020-04-01 17:31:29 -04:00
lquery_op.c Replace pg_mblen() with bounds-checked versions. 2026-02-09 12:44:04 +13:00
ltree--1.0--1.1.sql Make contrib modules' installation scripts more secure. 2020-08-10 10:44:42 -04:00
ltree--1.1--1.2.sql Add support for binary I/O of ltree, lquery, and ltxtquery types. 2020-04-01 17:31:29 -04:00
ltree--1.1.sql Update extensions with GIN/GIST support for parallel query. 2016-06-14 13:34:37 -04:00
ltree--1.2--1.3.sql Add hash support functions and hash opclass for contrib/ltree. 2024-03-21 18:27:49 -04:00
ltree.control Add hash support functions and hash opclass for contrib/ltree. 2024-03-21 18:27:49 -04:00
ltree.h Replace pg_mblen() with bounds-checked versions. 2026-02-09 12:44:04 +13:00
ltree_gist.c Mark commented out code as unused 2026-01-22 12:44:07 +01:00
ltree_io.c Replace pg_mblen() with bounds-checked versions. 2026-02-09 12:44:04 +13:00
ltree_op.c Use more palloc_object() and palloc_array() in contrib/ 2025-12-05 16:40:26 +09:00
ltreetest.sql Add hash support functions and hash opclass for contrib/ltree. 2024-03-21 18:27:49 -04:00
ltxtquery_io.c Replace pg_mblen() with bounds-checked versions. 2026-02-09 12:44:04 +13:00
ltxtquery_op.c Fix multibyte issue in ltree_strncasecmp(). 2025-12-16 10:35:40 -08:00
Makefile Add hash support functions and hash opclass for contrib/ltree. 2024-03-21 18:27:49 -04:00
meson.build Update copyright for 2026 2026-01-01 13:24:10 -05:00