-
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
8256865: Foreign Memory Access and Linker API are missing NPE checks #1388
Conversation
👋 Welcome back mcimadamore! A progress list of the required criteria for merging this PR into |
@mcimadamore 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. |
Webrevs
|
/csr |
@mcimadamore this pull request will not be integrated until the CSR request JDK-8256866 for issue JDK-8256865 has been approved. |
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.
Already looked at this in panama-foreign, but found one minor issue.
@@ -140,9 +148,11 @@ public static FunctionDescriptor ofVoid(MemoryLayout... argLayouts) { | |||
* of this function descriptor. | |||
* @param addedLayouts the argument layouts to append. | |||
* @return the new function descriptor. | |||
* @throws NullPointerException if any of the new argument layouts is null. | |||
* @throws NullPointerException if either {@code addedLayouts == null}, or any of the | |||
* layouts in {@code addedLayouts} is null.@throws NullPointerException if any of the new argument layouts is null. |
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.
Spurious @throws
tag here
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.
Good catch
Just an observation but there are precedents for just placing a generic statement in the package and/or class javadoc: "Unless specified otherwise any method that is passed a null reference will throw NullPointerException" rather than adding @throws NPE all over the place. |
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.
Unused imports in TestLayouts.java?
Add test support for LibraryLookup.
Following @dholmes-ora suggestion and also @jddarcy (in CSR review), I've uploaded a new iteration which instead of adding a |
@mcimadamore 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 43 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 |
/integrate |
@mcimadamore Since your change was applied there have been 43 commits pushed to the
Your commit was automatically rebased without conflicts. Pushed as commit 9aeadbb. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Both the Foreign Memory Access and the Foreign Linker APIs leave something to be desired when it comes to handling NPEs - first, most of the API javadoc is oblivious to NPEs being thrown. Secondly, not all API method implementations add expicit NPE checks - with the result of NPE often being thrown very deep in the call chain - if at all. Third, test for API coverage of nulls is ad-hoc.
This patch rectifies all these issues. To increase coverage for null injected into APIs, this patch introduces a new framework for testing an API in bulk, so that all methods are reflectively called with some values replaced with nulls, so that all combinations are tried.
I've also added, as part of this patch, a test to cover the statics in MemoryAccess which were not covered throughly.
Progress
Testing
Failed test tasks
Issue
Reviewers
Download
$ git fetch https://git.openjdk.java.net/jdk pull/1388/head:pull/1388
$ git checkout pull/1388