Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-109191: Fix build with newer editline #110239

Merged
merged 5 commits into from
Oct 9, 2023
Merged

Conversation

Bo98
Copy link
Contributor

@Bo98 Bo98 commented Oct 2, 2023

Fixes compile with BSD libedit versions since April 2023.

Requires backport to 3.12 (should cleanly apply).
Requires backport to 3.11 and 3.10 using this manual cherry-pick: Bo98@b0c571f
I believe 3.9 and older don't technically support libedit except Apple's 2012 version, but a similar cherry-pick could be made if desired.

@cpython-cla-bot
Copy link

cpython-cla-bot bot commented Oct 2, 2023

All commit authors signed the Contributor License Agreement.
CLA signed

@bedevere-app
Copy link

bedevere-app bot commented Oct 2, 2023

Most changes to Python require a NEWS entry.

Please add it using the blurb_it web app or the blurb command-line tool.

@erlend-aasland
Copy link
Contributor

Requires backport to 3.12 (should cleanly apply). Requires backport to 3.11 and 3.10 using this manual cherry-pick: Bo98@b0c571f I believe 3.9 and older don't technically support libedit except Apple's 2012 version, but a similar cherry-pick could be made if desired.

FYI, 3.10 and older is in security-fix-mode; I don't think this applies as a security fix. Backports to 3.12 and 3.11 are allowed for bug-fixes; is this a bugfix?

Copy link
Contributor

@erlend-aasland erlend-aasland left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@corona10: you've recently dived into the readline issues. Would you mind taking a look at this PR?

Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
@bedevere-app
Copy link

bedevere-app bot commented Oct 4, 2023

Most changes to Python require a NEWS entry.

Please add it using the blurb_it web app or the blurb command-line tool.

@Bo98
Copy link
Contributor Author

Bo98 commented Oct 4, 2023

Backports to 3.12 and 3.11 are allowed for bug-fixes; is this a bugfix?

I consider it so. It's certainly not a new feature.

Compile error fixes, including those adjusting for new OS and library versions, seem to have been backported before unless I'm mistaken? I consider this the same category as those. Future FreeBSD and NetBSD will ship with this newer editline out of the box too.

Risk should also be low.

@bedevere-app
Copy link

bedevere-app bot commented Oct 4, 2023

Most changes to Python require a NEWS entry.

Please add it using the blurb_it web app or the blurb command-line tool.

@corona10
Copy link
Member

corona10 commented Oct 5, 2023

@corona10: you've recently dived into the readline issues. Would you mind taking a look at this PR?

I will take a look by this weekend, I need time to investigate it :)

@corona10 corona10 self-assigned this Oct 5, 2023
@erlend-aasland
Copy link
Contributor

@corona10: we should have a conditional CI matrix for readline changes, similar to our OpenSSL CI matrix.

Copy link
Contributor

@erlend-aasland erlend-aasland left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good to me. I'll wait for Donghee's approval before merging.

@erlend-aasland
Copy link
Contributor

Oh, BTW, can you produce a NEWS entry for this, @Bo98?

@corona10
Copy link
Member

corona10 commented Oct 5, 2023

@corona10: we should have a conditional CI matrix for readline changes, similar to our OpenSSL CI matrix.

Good idea

Copy link
Member

@corona10 corona10 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Bo98 cc @erlend-aasland

Since the change was introduced quite recent days
http://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libedit/readline/readline.h.diff?r1=1.53&r2=1.54&sortby=date

I think that we have to support old versions(1.53) too.
WDYT?

@corona10
Copy link
Member

corona10 commented Oct 8, 2023

@erlend-aasland

Requires backport to 3.11 and 3.10 using this manual cherry-pick: Bo98@b0c571f

About the backport patch, I am not sure if we handle this as the bug or not?
IMO, If the user uses CPython <= 3.12, they should use libedit <= 1.53 not the latest version.
How did we deal with similar issue for OpenSSL case?

@Bo98
Copy link
Contributor Author

Bo98 commented Oct 8, 2023

Since the change was introduced quite recent days http://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libedit/readline/readline.h.diff?r1=1.53&r2=1.54&sortby=date

I think that we have to support old versions(1.53) too.

This PR still supports older versions as it checks for the existence of rl_compdisp_func_t, which didn't exist prior to 1.54. So < 1.54 will still use the VFunction type cast as before.

This is evidenced by the compile working with Apple's libedit, which is based on 1.33.

About the backport patch, I am not sure if we handle this as the bug or not?
IMO, If the user uses CPython <= 3.12, they should use libedit <= 1.53 not the latest version.
How did we deal with similar issue for OpenSSL case?

Had a dig into this, and found the OpenSSL 3 changes to _hashlib (#84659):

  • 3.9 got initial support for the new FIPS API from OpenSSL 3.0 alpha. 3.8 didn't receive a backport for this change as 3.8 didn't contain FIPS API so there was no need to backport. 3.8 did receive a backport to satisfy the compiler and silence deprecation warnings (OpenSSL 3.0.0: define OPENSSL_API_COMPAT 1.1.1 #87965).
  • Final release of OpenSSL 3.0 came when 3.11 was the main branch, but the fixes for the final release were backported to 3.10 and 3.9.
  • _ssl changes were split into multiple issues, but seemed to be backported accordingly at the time, e.g. OpenSSL 3.0.0: handle empty cadata consistently #88086.

Some of those backports (e.g. _hashopenssl.c in 4ddd5da) were fairly large too, and could have affected runtime behaviour. Tbh, I would normally have expected the bar to be higher to only cover compile-level adjustments or small changes, though it seems that wasn't the case here.

With that said, the fixes for libedit in this PR are only compile-level adjustments - there is no runtime change as it's just a type cast adjustment. Both branches of the #if defined are identical otherwise.

@erlend-aasland
Copy link
Contributor

I think that we have to support old versions(1.53) too. WDYT?

It seems to be there is no problem with old versions; AC_CHECK_TYPE will check for the type def and the correct signature will be used.

About the backport patch, I am not sure if we handle this as the bug or not?

Build failure => build bug. IMO, it is a bug fix.

IMO, If the user uses CPython <= 3.12, they should use libedit <= 1.53 not the latest version.

Why?

If we are to restrict the upper version requirement for a third-party dependency, we must document that, and preferrably also implement compile time and runtime checks for that. I don't think any other dependency has an upper version limit.

How did we deal with similar issue for OpenSSL case?

Which issue were you thinking of?

Copy link
Member

@corona10 corona10 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Bo98 @erlend-aasland
After rereading this issue and PR, I noticed that there was a misunderstanding from myself.
LGTM and let's add the backport patch,

@corona10 corona10 added needs backport to 3.11 only security fixes needs backport to 3.12 bug and security fixes labels Oct 9, 2023
@corona10 corona10 enabled auto-merge (squash) October 9, 2023 13:02
@corona10 corona10 merged commit f4cb0d2 into python:main Oct 9, 2023
@miss-islington
Copy link
Contributor

Thanks @Bo98 for the PR, and @corona10 for merging it 🌮🎉.. I'm working now to backport this PR to: 3.11, 3.12.
🐍🍒⛏🤖

@miss-islington
Copy link
Contributor

Sorry, @Bo98 and @corona10, I could not cleanly backport this to 3.11 due to a conflict.
Please backport using cherry_picker on command line.

cherry_picker f4cb0d27cc08f490c42a22e646eb73cc7072d54a 3.11

@bedevere-app
Copy link

bedevere-app bot commented Oct 9, 2023

GH-110562 is a backport of this pull request to the 3.12 branch.

@bedevere-app bedevere-app bot removed the needs backport to 3.12 bug and security fixes label Oct 9, 2023
miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Oct 9, 2023
(cherry picked from commit f4cb0d2)

Co-authored-by: Bo Anderson <mail@boanderson.me>
corona10 pushed a commit that referenced this pull request Oct 9, 2023
gh-109191: Fix build with newer editline (gh-110239)
(cherry picked from commit f4cb0d2)

Co-authored-by: Bo Anderson <mail@boanderson.me>
@erlend-aasland
Copy link
Contributor

Sorry, @Bo98 and @corona10, I could not cleanly backport this to 3.11 due to a conflict.

@Bo98, do you want to do the backport?

Bo98 added a commit to Bo98/cpython that referenced this pull request Oct 9, 2023
(cherry picked from commit f4cb0d2)

Co-authored-by: Bo Anderson <mail@boanderson.me>
@bedevere-app
Copy link

bedevere-app bot commented Oct 9, 2023

GH-110575 is a backport of this pull request to the 3.11 branch.

@bedevere-app bedevere-app bot removed the needs backport to 3.11 only security fixes label Oct 9, 2023
@Bo98 Bo98 deleted the rl_compdisp_func_t branch October 9, 2023 17:26
erlend-aasland pushed a commit that referenced this pull request Oct 9, 2023
OscarL added a commit to OscarL/haikuports that referenced this pull request Jan 27, 2024
Begasus pushed a commit to haikuports/haikuports that referenced this pull request Jan 28, 2024
Glyphack pushed a commit to Glyphack/cpython that referenced this pull request Sep 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants