Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 38f60f1

Browse files
committed
Revert "Fix corner case with PGP decompression in pgcrypto"
This reverts commit 9e10898, after finding out that buildfarm members running SLES 15 on z390 complain on the compression and decompression logic of the new test: pipistrelles, barbthroat and steamerduck. Those hosts are visibly using hardware-specific changes to improve zlib performance, requiring more investigation. Thanks to Tom Lane for the discussion. Discussion: https://postgr.es/m/20200722093749.GA2564@paquier.xyz Backpatch-through: 9.5
1 parent a57d312 commit 38f60f1

File tree

3 files changed

+11
-62
lines changed

3 files changed

+11
-62
lines changed

contrib/pgcrypto/expected/pgp-compression.out

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -48,33 +48,3 @@ select pgp_sym_decrypt(
4848
Secret message
4949
(1 row)
5050

51-
-- check corner case involving an input string of 16kB, as per bug #16476.
52-
SELECT setseed(0);
53-
setseed
54-
---------
55-
56-
(1 row)
57-
58-
WITH random_string AS
59-
(
60-
-- This generates a random string of 16366 bytes. This is chosen
61-
-- as random so that it does not get compressed, and the decompression
62-
-- would work on a string with the same length as the origin, making the
63-
-- test behavior more predictible. lpad() ensures that the generated
64-
-- hexadecimal value is completed by extra zero characters if random()
65-
-- has generated a value strictly lower than 16.
66-
SELECT string_agg(decode(lpad(to_hex((random()*256)::int), 2, '0'), 'hex'), '') as bytes
67-
FROM generate_series(0, 16365)
68-
)
69-
SELECT bytes =
70-
pgp_sym_decrypt_bytea(
71-
pgp_sym_encrypt_bytea(bytes, 'key',
72-
'compress-algo=1,compress-level=1'),
73-
'key', 'expect-compress-algo=1')
74-
AS is_same
75-
FROM random_string;
76-
is_same
77-
---------
78-
t
79-
(1 row)
80-

contrib/pgcrypto/pgp-compress.c

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -243,17 +243,6 @@ decompress_read(void *priv, PullFilter *src, int len,
243243
struct DecomprData *dec = priv;
244244

245245
restart:
246-
if (dec->stream.avail_in == 0)
247-
{
248-
uint8 *tmp;
249-
250-
res = pullf_read(src, 8192, &tmp);
251-
if (res < 0)
252-
return res;
253-
dec->stream.next_in = tmp;
254-
dec->stream.avail_in = res;
255-
}
256-
257246
if (dec->buf_data > 0)
258247
{
259248
if (len > dec->buf_data)
@@ -267,6 +256,17 @@ decompress_read(void *priv, PullFilter *src, int len,
267256
if (dec->eof)
268257
return 0;
269258

259+
if (dec->stream.avail_in == 0)
260+
{
261+
uint8 *tmp;
262+
263+
res = pullf_read(src, 8192, &tmp);
264+
if (res < 0)
265+
return res;
266+
dec->stream.next_in = tmp;
267+
dec->stream.avail_in = res;
268+
}
269+
270270
dec->stream.next_out = dec->buf;
271271
dec->stream.avail_out = dec->buf_len;
272272
dec->pos = dec->buf;

contrib/pgcrypto/sql/pgp-compression.sql

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,3 @@ select pgp_sym_decrypt(
2828
pgp_sym_encrypt('Secret message', 'key',
2929
'compress-algo=2, compress-level=0'),
3030
'key', 'expect-compress-algo=0');
31-
32-
-- check corner case involving an input string of 16kB, as per bug #16476.
33-
SELECT setseed(0);
34-
WITH random_string AS
35-
(
36-
-- This generates a random string of 16366 bytes. This is chosen
37-
-- as random so that it does not get compressed, and the decompression
38-
-- would work on a string with the same length as the origin, making the
39-
-- test behavior more predictible. lpad() ensures that the generated
40-
-- hexadecimal value is completed by extra zero characters if random()
41-
-- has generated a value strictly lower than 16.
42-
SELECT string_agg(decode(lpad(to_hex((random()*256)::int), 2, '0'), 'hex'), '') as bytes
43-
FROM generate_series(0, 16365)
44-
)
45-
SELECT bytes =
46-
pgp_sym_decrypt_bytea(
47-
pgp_sym_encrypt_bytea(bytes, 'key',
48-
'compress-algo=1,compress-level=1'),
49-
'key', 'expect-compress-algo=1')
50-
AS is_same
51-
FROM random_string;

0 commit comments

Comments
 (0)