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

JDK-8275703: System.loadLibrary fails on Big Sur for libraries hidden from filesystem #6127

Closed
wants to merge 6 commits into from

Conversation

mlchung
Copy link
Member

@mlchung mlchung commented Oct 26, 2021

On, macOS 11.x, system libraries are loaded from dynamic linker cache. The libraries are no longer present on the filesystem. NativeLibraries::loadLibrary checks for the file existence before calling JVM_LoadLibrary. Such check no longer applies on Big Sur. This proposes that on macOS >= 11, it will skip the file existence check and attempt to load a library for each path from java.library.path and system library path.


Progress

  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue
  • Change must be properly reviewed

Issue

  • JDK-8275703: System.loadLibrary fails on Big Sur for libraries hidden from filesystem

Reviewers

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/6127/head:pull/6127
$ git checkout pull/6127

Update a local copy of the PR:
$ git checkout pull/6127
$ git pull https://git.openjdk.java.net/jdk pull/6127/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 6127

View PR using the GUI difftool:
$ git pr show -t 6127

Using diff file

Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/6127.diff

Sorry, something went wrong.

@bridgekeeper
Copy link

bridgekeeper bot commented Oct 26, 2021

👋 Welcome back mchung! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk
Copy link

openjdk bot commented Oct 26, 2021

@mlchung The following labels will be automatically applied to this pull request:

  • core-libs
  • hotspot

When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing lists. If you would like to change these labels, use the /label pull request command.

@openjdk openjdk bot added hotspot hotspot-dev@openjdk.org core-libs core-libs-dev@openjdk.org labels Oct 26, 2021
@openjdk openjdk bot added the rfr Pull request is ready for review label Oct 27, 2021
@mlbridge
Copy link

mlbridge bot commented Oct 27, 2021

Webrevs

Copy link
Member

@dholmes-ora dholmes-ora left a comment

Choose a reason for hiding this comment

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

Hi Mandy,

Hotspot changes are fine.

Thanks,
David

@openjdk
Copy link

openjdk bot commented Oct 27, 2021

@mlchung This change now passes all automated pre-integration checks.

ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details.

After integration, the commit message for the final commit will be:

8275703: System.loadLibrary fails on Big Sur for libraries hidden from filesystem

Reviewed-by: dholmes, alanb, mcimadamore

You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed.

At the time when this comment was updated there had been 15 new commits pushed to the master branch:

  • 9a3e954: 8274879: Replace uses of StringBuffer with StringBuilder within java.base classes
  • e6fa5fa: 8276063: ProblemList gtest dll_address_to_function_and_library_name on macosx-generic
  • 809488b: 8276046: codestrings.validate_vm gtest fails on ppc64, s390
  • 93be099: 4718400: Many quantities are held as signed that should be unsigned
  • 168081e: 8270490: Charset.forName() taking fallback default value
  • a292733: 8275975: Remove dead code in ciInstanceKlass
  • 4060602: 8275800: Redefinition leaks MethodData::_extra_data_lock
  • 485d658: 8275851: Deproblemlist open/test/jdk/javax/swing/JComponent/6683775/bug6683775.java
  • b3f45f8: 8275689: [TESTBUG] Use color tolerance only for XRender in BlitRotateClippedArea test
  • 6c05cc9: 8275863: Use encodeASCII for ASCII-compatible DoubleByte encodings
  • ... and 5 more: https://git.openjdk.java.net/jdk/compare/7addcd7cfb73652841c65c54e84b6ebffcbd664e...master

As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details.

➡️ To integrate this PR with the above commit message to the master branch, type /integrate in a new comment.

@openjdk openjdk bot added the ready Pull request is ready to be integrated label Oct 27, 2021
major = Integer.parseInt(osVersion.substring(0, i));
} catch (NumberFormatException e) {}
}
hasDynamicLoaderCache = major >= 11;
Copy link
Member

Choose a reason for hiding this comment

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

Hello Mandy,
I'm not too familiar with MacOS versioning schemes. However, in this specific logic, if the os.version value doesn't contain a dot character, then the major is initialized to 11, which would then evaluate this hasDynamicLoaderCache to true. That would mean if the os.version is (for example) 10, then hasDynamicLoaderCache will be incorrectly set to true here, isn't it?

Copy link
Member Author

Choose a reason for hiding this comment

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

macOS product version contains 3 parts: major, minor, and patch version. But it does not hurt to handle the case where no dot exists in the string.

        int major = 11;
        int i = osVersion.indexOf('.');
        try {
            major = Integer.parseInt(i < 0 ? osVersion : osVersion.substring(0, i));
        } catch (NumberFormatException e) {}

Copy link
Contributor

@AlanBateman AlanBateman left a comment

Choose a reason for hiding this comment

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

The change is unfortunate but looks okay.

@mlbridge
Copy link

mlbridge bot commented Oct 27, 2021

Mailing list message from Alan Snyder on core-libs-dev:

On Oct 27, 2021, at 9:28 AM, Mandy Chung <mchung at openjdk.java.net> wrote:

On, macOS 11.x, system libraries are loaded from dynamic linker cache. The libraries are no longer present on the filesystem. `NativeLibraries::loadLibrary` checks for the file existence before calling `JVM_LoadLibrary`. Such check no longer applies on Big Sur. This proposes that on macOS >= 11, it will skip the file existence check and attempt to load a library for each path from java.library.path and system library path.

I?m curious about this issue.

I never load system libraries directly. I load my own libraries (that support JNI entry points) and the system loader loads the necessary system frameworks that they were linked against.

What?s different in this case that motivates loading system libraries directly from Java?

Alan

Copy link
Contributor

@mcimadamore mcimadamore left a comment

Choose a reason for hiding this comment

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

This came up on panama-dev a bunch of time now. In fact, in the panama use case this would make sense for other systems as well. For instance on linux systems, there's a bunch of known library names in gnu/lib-names.h which programs can depend on, but for which System::load/loadLibrary cannot be used - as they are neither library names, nor paths - for instance "libm.so.6".

@mlchung
Copy link
Member Author

mlchung commented Oct 27, 2021

I never load system libraries directly. I load my own libraries (that support JNI entry points) and the system loader loads the necessary system frameworks that they were linked against.

What's different in this case that motivates loading system libraries directly from Java

Panama would be the right place to provide the support of loading system libraries directly from Java and enhance the interconnection between JVM and native code.

The bug report is an example showing that developers want to load a system library for their native code to use. It's not surprise that they use System::load/loadLibrary even it's designed for JNI without Panama since it works. So this patch is for compatibility for existing applications to continue to run on Big Sur.

@mlchung
Copy link
Member Author

mlchung commented Oct 28, 2021

/integrate

@openjdk
Copy link

openjdk bot commented Oct 28, 2021

Going to push as commit 309acbf.
Since your change was applied there have been 25 commits pushed to the master branch:

Your commit was automatically rebased without conflicts.

@openjdk openjdk bot closed this Oct 28, 2021
@openjdk openjdk bot added integrated Pull request has been integrated and removed ready Pull request is ready to be integrated rfr Pull request is ready for review labels Oct 28, 2021
@openjdk
Copy link

openjdk bot commented Oct 28, 2021

@mlchung Pushed as commit 309acbf.

💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core-libs core-libs-dev@openjdk.org hotspot hotspot-dev@openjdk.org integrated Pull request has been integrated
Development

Successfully merging this pull request may close these issues.

None yet

5 participants