pgsql: Use BIO_{get,set}_app_data instead of BIO_{get,set}_data.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Use BIO_{get,set}_app_data instead of BIO_{get,set}_data.
Дата
Msg-id E1r81yU-007giB-6Y@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Use BIO_{get,set}_app_data instead of BIO_{get,set}_data.

We should have done it this way all along, but we accidentally got
away with using the wrong BIO field up until OpenSSL 3.2.  There,
the library's BIO routines that we rely on use the "data" field
for their own purposes, and our conflicting use causes assorted
weird behaviors up to and including core dumps when SSL connections
are attempted.  Switch to using the approved field for the purpose,
i.e. app_data.

While at it, remove our configure probes for BIO_get_data as well
as the fallback implementation.  BIO_{get,set}_app_data have been
there since long before any OpenSSL version that we still support,
even in the back branches.

Also, update src/test/ssl/t/001_ssltests.pl to allow for a minor
change in an error message spelling that evidently came in with 3.2.

Tristan Partin and Bo Andreson.  Back-patch to all supported branches.

Discussion: https://postgr.es/m/CAN55FZ1eDDYsYaL7mv+oSLUij2h_u6hvD4Qmv-7PK7jkji0uyQ@mail.gmail.com

Branch
------
REL_12_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/0bd682246a619fd8eb9b538f1af61afb991b06b4

Modified Files
--------------
configure                                |  2 +-
configure.in                             |  2 +-
src/backend/libpq/be-secure-openssl.c    | 11 +++--------
src/include/pg_config.h.in               |  3 ---
src/include/pg_config.h.win32            |  3 ---
src/interfaces/libpq/fe-secure-openssl.c | 11 +++--------
src/tools/msvc/Solution.pm               |  1 -
7 files changed, 8 insertions(+), 25 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Fix comment about ressortgrouprefs being unique in setop plans.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Clean up usage of bison precedence for non-operator keywords.