-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
Conversation
👋 Welcome back mchung! A progress list of the required criteria for merging this PR into |
Webrevs
|
There was a problem hiding this 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
@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:
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
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 |
major = Integer.parseInt(osVersion.substring(0, i)); | ||
} catch (NumberFormatException e) {} | ||
} | ||
hasDynamicLoaderCache = major >= 11; |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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) {}
There was a problem hiding this 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.
Mailing list message from Alan Snyder on core-libs-dev:
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 |
There was a problem hiding this 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".
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 |
/integrate |
Going to push as commit 309acbf.
Your commit was automatically rebased without conflicts. |
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 callingJVM_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
Issue
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