]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Reject CancelRequestPacket having unexpected length.
authorNoah Misch <noah@leadboat.com>
Sat, 21 Jan 2023 14:08:00 +0000 (06:08 -0800)
committerNoah Misch <noah@leadboat.com>
Sat, 21 Jan 2023 14:08:04 +0000 (06:08 -0800)
commit6900aea67e27990b72bc28b0b69096db9d226cba
tree34bbccac2490362f8a16854c0431b35e7ce13393
parent21c058648ec2cd257b7b8bb10b98e08564a685a4
Reject CancelRequestPacket having unexpected length.

When the length was too short, the server read outside the allocation.
That yielded the same log noise as sending the correct length with
(backendPID,cancelAuthCode) matching nothing.  Change to a message about
the unexpected length.  Given the attacker's lack of control over the
memory layout and the general lack of diversity in memory layouts at the
code in question, we doubt a would-be attacker could cause a segfault.
Hence, while the report arrived via security@postgresql.org, this is not
a vulnerability.  Back-patch to v11 (all supported versions).

Andrey Borodin, reviewed by Tom Lane.  Reported by Andrey Borodin.
src/backend/postmaster/postmaster.c