-
Notifications
You must be signed in to change notification settings - Fork 28
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
Add versions without --enable-shared for ruby <= 2.3 #3
Conversation
https://github.com/bak1an/oldruby-crash-sample/blob/master/main.rb There I added a repo where the segfault can be observed. |
Doesn't a very similar problem happen if openssl is statically linked? |
From what I see libssl/libcrypto are not linked dynamically depending on --enabled-shared or not.
And even if I look at https://github.com/ruby/ruby-builder/releases/download/enable-shared/ruby-2.3.8-ubuntu-18.04.tar.gz:
No So I think this issue comes from using I think there is no solution here, to work well the system would need to use the same OpenSSL version as ruby. |
I looked at the wrong place, of course
So |
@eregon Thanks for digging! You are right indeed. I've just tried to build 2.3.8 with eregon/ruby-build@b7eff43 without I'll close this PR as it is not doing what I assumed it would. I have another old 18.04 env where I got ruby 2.3.7 built with rbenv/ruby-build, which does not have
And gems in that env are linked with openssl 1.1 from
Surprisingly, that sample app does not segfault there despite having both libssl1.0 and libssl1.1 in dependencies:
I'll try to dig into what exact build/libs difference actually makes it work there and post the results here if I have any. Thanks for your help again! |
This PR adds builds without
--enable-shared
for rubies <= 2.3. Those will have_noshared
suffix after version in the release filename (for exampleruby-2.3.1_noshared-ubuntu-18.04.tar.gz
).Builds with
--enable-shared
are left as they are.Idea is that in https://github.com/ruby/setup-ruby we could request
_noshared
suffixed version if needed (or add a separate action input there to do so).Why this is required:
When trying to use gems with native extensions which are linked with openssl 1.1 this
--enable-shared
old ruby will segfault as the ruby itself loads openssl 1.0 and the gems (likemysql2
orrugged
) load system installed openssl 1.1 (or more precisely, libraries likelibmysqclient
orlibgit2
which those gems are wrapping are doing so).Sample segfault when trying to use shared ruby 2.3.8 and mysql2 gem (wraps libmysqlient) in github action:
Note that at some point calls jump from system
libcrypto.so.1.1
into ruby bundledlibcrypto.so.1.0
.The same thing happens when trying to call rugged gem, which wraps libgit2. This makes such ruby builds useless when testing some projects.
This problem is not an issue with rubies >= 2.4, as those are built with openssl 1.1 around.
Having noshared build for ruby 2.3 helps as there will be no
.so
files around for openssl1.0 as it will be statically linked into the ruby.