Re: Make query cancellation keys longer

From: Heikki Linnakangas <hlinnaka(at)iki(dot)fi>
To: Jelte Fennema-Nio <postgres(at)jeltef(dot)nl>, Robert Haas <robertmhaas(at)gmail(dot)com>
Cc: pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>, Thomas Munro <thomas(dot)munro(at)gmail(dot)com>
Subject: Re: Make query cancellation keys longer
Date: 2025-04-01 14:08:12
Message-ID: 69f53970-1d55-4165-9151-6fb524e36af9@iki.fi
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 22/02/2025 16:58, Jelte Fennema-Nio wrote:
> On Mon, 9 Sept 2024 at 17:58, Robert Haas <robertmhaas(at)gmail(dot)com> wrote:
>>
>> On Fri, Aug 16, 2024 at 11:29 AM Robert Haas <robertmhaas(at)gmail(dot)com> wrote:
>>>> I'll split this patch like that, to make it easier to compare and merge
>>>> with Jelte's corresponding patches.
>>>
>>> That sounds great. IMHO, comparing and merging the patches is the next
>>> step here and would be great to see.
>>
>> Heikki, do you have any update on this work?
>
> My patchset in the other protocol thread needed a rebase. So I took
> that as an opportunity to rebase this patchset on top of it, because
> this seems to be the protocol change that we can most easily push over
> the finish line.
>
> 1. I changed the last patch from Heikki to only contain the changes
> for the cancel lengthening. The general protocol change related things
> I merged with mine (I only kept some error handling and docs).
> 2. I also removed the length field in the new BackendKey definition,
> eventhough I asked for that addition previously. I agree with Heikki
> that it's actually easier to parse and create without, because you can
> use the same code for both versions.
> 3. I made our timingsafe_bcmp implementation call into OpenSSL's CRYPTO_memcmp.

Great, thanks!

I spent some time going over this again, making tiny fixes here and
there. A couple of somewhat notable fixes:

- fixed the "server only supports protocol version %d.%d, but
min_protocol_version was set to %d.%d" message to print the server's
protocol version correctly
- error out if the server sends two NegotiateProtocolVersion messages
for some reason
- added a new "protocol versions" subsection to the docs, moving the
existing paragraphs related to version negotiation there. I also added a
table to list the different protocol versions. See the last patch in the
series.

I'm a bit disappointed that we're not changing the default protocol
version to 3.2 yet. It will receive very little usage in practice until
we do. But that seems to be the least objectionable path forward.

I think this is pretty much ready for commit. I will go over it one more
time, and plan to push tomorrow.

> One open question on the last patch is: Document what the maximum size
> of the cancel key is that the client can expect? I think Jacob might
> have some ideas on that.

It's documented as 256 bytes now. But that still leaves one remaining
question: the idea is that the maximum size is long enough that
middleware can add their data to it, and still include the original
server's key. As the patch stands, the server creates 32 byte keys,
leaving 224 for middleware. But that's not documented anywhere. I'm
inclined to document that the server only uses up to 32 bytes, and
middleware should likewise try to "add" only 32 bytes or so to the key,
so that you can stack multiple such middleware without exceeding the
total length. And perhaps 256 bytes is still too small, if you consider
such stacking.

--
Heikki Linnakangas
Neon (https://neon.tech)

Attachment Content-Type Size
0001-Add-timingsafe_bcmp-for-constant-time-memory-compari.patch text/x-patch 5.4 KB
0002-libpq-Handle-NegotiateProtocolVersion-message-differ.patch text/x-patch 8.7 KB
0003-libpq-Add-min-max_protocol_version-connection-option.patch text/x-patch 12.0 KB
0004-Bump-protocol-version-to-3.2.patch text/x-patch 12.9 KB
0005-Make-cancel-request-keys-longer.patch text/x-patch 27.3 KB
0006-docs-Update-phrase-that-talks-about-message-lengths-.patch text/x-patch 1.8 KB
0007-docs-Add-a-new-section-and-table-listing-protocol-ve.patch text/x-patch 5.9 KB

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Kirill Reshke 2025-04-01 14:14:31 Re: in BeginCopyTo make materialized view using COPY TO instead of COPY (query).
Previous Message Andres Freund 2025-04-01 13:59:01 Re: Better HINT message for "unexpected data beyond EOF"