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

jruby-openssl migration #20

Open
zzak opened this issue Aug 5, 2015 · 19 comments
Open

jruby-openssl migration #20

zzak opened this issue Aug 5, 2015 · 19 comments

Comments

@zzak
Copy link
Member

zzak commented Aug 5, 2015

/cc @headius @enebo @kares @mkristian

@tarcieri
Copy link
Collaborator

tarcieri commented Aug 5, 2015

I'm guessing this is about merging jruby-openssl with this gem?

@zzak
Copy link
Member Author

zzak commented Aug 6, 2015

@tarcieri Exactly. We want to start working on merging the two gems into one codebase (including tests).

@tarcieri
Copy link
Collaborator

tarcieri commented Aug 6, 2015

Sounds great! Let me know if I can help

@kares
Copy link

kares commented Aug 6, 2015

interesting, I might have hoped Rails would at some point merge AR-JDBC but never thought of merging jruby-openssl :)

just to double check, @zzak do you realize the JRuby version is not using any of the C (all of OpenSSL is re-invented using Java APIs and libraries) ?

@headius
Copy link
Contributor

headius commented Aug 6, 2015

The main reason to do this merge is that folks are going to start depending on the gem 'openssl' in their applications. By having jruby-openssl pushed as the java version of openssl, they won't have to change their configs.

They are definitely different codebases but I think ease of migration and management is more important than having the exact same code in both.

@tarcieri
Copy link
Collaborator

tarcieri commented Aug 9, 2015

The biggest benefit I can think of is a shared test suite that regression tests can be added to. We see jruby-openssl regressions rather frequently, and it would be great if we could send PRs for tests to this gem so the respective implementations can get fixed.

@kares
Copy link

kares commented Aug 9, 2015

first of all the current tests will need a way of excluding (just as we do run these as part of JRuby's suite).
for jruby-openssl there's actually a slightly different set of cases - some of which are Java/JRuby specific.
also there's integration tests e.g. run against different BC versions to maintain compatibility on that front.

@zzak
Copy link
Member Author

zzak commented Aug 11, 2015

One thing I should mention, since the Java implementation will remain separate (but equal :trollface:), the tests however won't.

I mean, I'd like to still be able to merge the tests from this gem into Ruby trunk, and have them pass on MRI.

@mkristian
Copy link
Collaborator

mkristian commented Aug 11, 2015 via email

@tarcieri
Copy link
Collaborator

I'd be a fan of merging the two gems into a single repository. This is how nokogiri is managed, for example, and my nio4r gem also works this way.

You can set up a Travis CI build matrix that runs the tests against both MRI and JRuby and can even have a separate matrix for testing various BouncyCastle versions.

I would love to see every commit to both MRI openssl and JRuby vetted against such a test matrix.

FWIW, I am about to spend the next 2 hours helping people to debug jruby-openssl bugs (and am literally in the middle of helping someone do this right now)

@hsbt hsbt changed the title jruby jruby-openssl migration Nov 2, 2016
@hsbt
Copy link
Member

hsbt commented Nov 2, 2016

I discussed @rhenium about this issue. He have concerns of licenses confliction.

@rhenium
Copy link
Member

rhenium commented Nov 7, 2016

Sharing the test cases for common parts would be nice. I'm afraid it could be confusing if one gem contains two implementations with slightly different feature set, though.

Anyway, since JRuby-OpenSSL is currently licensed under EPLv1/GPLv2/LGPLv2.1, none of these is compatible with CRuby's 2-clause BSDL, we can't start merging unless this is resolved.

@headius
Copy link
Contributor

headius commented Jan 27, 2022

This never happened but I have a proposal for a simpler path forward: just release a -java openssl gem that depends on our jruby-openssl. We will be responsible for maintaining jruby-openssl, as now, and no major changes are needed to this repository. We would like to get this taken care of since more and more people are including openssl versions in their Gemfiles, which will not work on JRuby (without modification).

@hsbt
Copy link
Member

hsbt commented Jan 27, 2022

Thanks for explanation, it seems fine.

@headius
Copy link
Contributor

headius commented Jan 27, 2022

Pinging @kares and @enebo to chime in here. Adding a -java gem that does not ship any C code and depends on our jruby-openssl should be a pretty simple PR to put together.

@enebo
Copy link

enebo commented Jan 27, 2022

@headius This seems like a good idea to me. There could still need to be some level of coordination but it will decouple some amount of coordination for both impls to update their respective pieces of code.

@headius
Copy link
Contributor

headius commented Feb 1, 2022

I would like to point out that the only real problem here is that the name "openssl" is currently only associated with the CRuby gem, which makes it impossible for any JRuby users to depend on it. That is the primary issue we need to fix. Since there are concerns about licensing (which we could fix), the next best options to merging this in directly are:

  • Allow us to push openssl-java, which would basically just be a renamed jruby-openssl.
  • Push a stub openssl-java that just depends on jruby-openssl.

I believe the second option is probably the least impact, and it would not require merging any jruby-openssl code into the openssl gem.

In any case, the only way for us to support the "openssl" gem name is by pushing a -java platform version of the gem for JRuby, as has been done for dozens of other gems with Java extensions versus C extensions. The openssl maintainers would not have to do anything other than make sure the stub gem gets released when the CRuby gem gets released, and we (JRuby maintainers) would be responsible for any issues in the jruby-openssl gem.

I will try to put a proof-of-concept PR together this week.

headius added a commit to headius/openssl that referenced this issue Feb 8, 2023
JRuby has its own implementation of the `openssl` library in
jruby-openssl. The simplest way for us to allow users to set
openssl as a gem dependency is to ship a stub gem that just
depends on jruby-openssl. This patch adds that to the gemspec.
Additional work may be required to fit this stub gem into the test
and release process.

See ruby#20 for more details.
@headius
Copy link
Contributor

headius commented Feb 8, 2023

I've pushed #598 which includes some tweaks to the gemspec to allow building a stub gem for JRuby. rake build appears to do the right thing when run under JRuby (or with appropriate RubyGems platform configuration), generating an openssl-java gem file that depends on jruby-openssl.

@yweiy10
Copy link

yweiy10 commented Oct 11, 2023

I see that OpenSSL has a support for FIPS mode, whereas JRuby-OpenSSL doesn't. Since it's depending on BC rather than OpenSSL C code I doubt it's a small effort to add the support. So what's the implication of this ticket to the case that a JRuby application wants to depend on this OpenSSL class to be FIPS compliant?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

9 participants