-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
8346573: Can't use custom default file system provider with custom system class loader #22842
Conversation
/csr |
👋 Welcome back alanb! A progress list of the required criteria for merging this PR into |
@AlanBateman 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 48 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 |
@AlanBateman has indicated that a compatibility and specification (CSR) request is needed for this pull request. @AlanBateman please create a CSR request for issue JDK-8346573 with the correct fix version. This pull request cannot be integrated until the CSR request is approved. |
@AlanBateman The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
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.
I'm not a reviewer, but this does solve the problem with the circular initialization that we had.
|
||
// use default file system | ||
FileSystem fs = FileSystems.getDefault(); | ||
var path = fs.getPath("foo"); |
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.
Maybe print the path out so that the whole thing does not get optimized away as vacuous in accordance with the language rules?
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.
Looks fine to me.
Constructor<?> ctor = c | ||
.getDeclaredConstructor(FileSystemProvider.class); | ||
provider = (FileSystemProvider)ctor.newInstance(provider); | ||
Class<?> c = Class.forName(cn, true, ClassLoaders.appClassLoader()); |
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.
Note that this might break the case where a custom system ClassLoader
doesn’t depend on a custom default FileSystemProvider
but the latter depends on the custom system ClassLoader
, so this should call ClassLoaders::appClassLoader()
only when VM.isBooted()
is false
.
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.
A custom default file system provider can't depend on a custom system ClassLoader. Think of access to the default file system as something that works at a much lower level that a class loader.
/integrate |
Going to push as commit f119663.
Your commit was automatically rebased without conflicts. |
@AlanBateman Pushed as commit f119663. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
If an application is deployed to use a custom default file system provider, and a custom system class loader, and initialisation of the custom system class loader uses the file system APIs, then it leads to a recursive initialisation issue. This issue has always existed but has only recently been reported. Using both configuration knobs at the same time is probably very rare but it does require attention in advance of any proposals that re-implement the java.io file classes on java.nio.file.
The proposed change here is to re-specify FileSystems.getDefault to use the default system class loader when locating the custom default file system provider. In spec terms, this is changing "system class loader" to "default system class loader" with a link to its meaning in ClassLoader.getSystemClassLoader. As part of the change I've expanded the wording to specify that the custom default file system provider must be public in a package exported to at least java.base, and that the one-arg constructor also be public. This additional clarification specifies long standing behavior and does not change any implementation.
The SetDefaultProvider.java test is expanded to add a new test the runs with both a custom default file system provider and custom system class loader, and where where the custom system class loader uses the file APIs in its initialisation.
Progress
Issues
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/22842/head:pull/22842
$ git checkout pull/22842
Update a local copy of the PR:
$ git checkout pull/22842
$ git pull https://git.openjdk.org/jdk.git pull/22842/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 22842
View PR using the GUI difftool:
$ git pr show -t 22842
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/22842.diff
Using Webrev
Link to Webrev Comment