-
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
8343437: ClassDesc.of incorrectly permitting empty names #21830
Conversation
👋 Welcome back liach! A progress list of the required criteria for merging this PR into |
@liach 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 10 new commits pushed to the
Please see this link for an up-to-date comparison between the source branch of this pull request and the ➡️ To integrate this PR with the above commit message to the |
Webrevs
|
Please describe where the bug was caused and also record the evaluation explaining the cause in the issue. Here is one part I understand for your reference. One of the causes is that the refactoring done by JDK-8338544 converts the explicit check of the return value from I think it requires a thorough understanding of what being validated before JDK-8338544 to see if anything else is missing. I am not sure what validation of package name is regressed. Please also explain. |
Before 8338544, the binary/internal name validation was partial. It missed a few validations performed by PackageDesc in theory should not accept leading or trailing or consecutive separator chars, just like the names of classes and interfaces do not. Added validations for PackageDesc, so if we wish to create ClassDesc from a PackageDesc, we won't find invalid packages that cannot have classes or interfaces. |
With your proposed change, all validations are done by |
Yes. Now all validations are done by that and |
src/java.base/share/classes/jdk/internal/constant/ConstantUtils.java
Outdated
Show resolved
Hide resolved
src/java.base/share/classes/jdk/internal/constant/ConstantUtils.java
Outdated
Show resolved
Hide resolved
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 good with minor suggestion to rename the method name.
/integrate |
Going to push as commit 1f7d524.
Your commit was automatically rebased without conflicts. |
In the patch for JDK-8338544 #20665, the validation methods
validateBinaryClassName
andvalidateInternalClassName
only checks if a separator char is the initial or final char, or if it immediately follows another chars. This omitted the case of empty strings, and allowed creation of invalid ClassDesc with empty binary name, which is otherwise rejected byofDescriptor
.To better check for the separator char, the tracking mechanism is updated to indicate a position where a separator char shouldn't appear, or where the name string should not terminate. This is initially set to the initial position 0, and upon each time of encountering a separator, this is updated to the next char.
This logic is similar to the existing one in
skipOverFieldSignature
, which uses a booleanlegal
variable. Both reject empty strings, leading and trailing separators, or consecutive separators. The new logic, however, does not require repeated updates to the newafterSeparator
variable upon scanning each character.In addition, I noted the package name validation erroneously does not prohibit leading, trailing, or consecutive separator chars. (Package names are derived from class or interface names, so the same restrictions shall apply) This patch also makes package name validation reuse class or interface name validation in non-empty (unnamed package) cases, and added those cases to the test suite.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/21830/head:pull/21830
$ git checkout pull/21830
Update a local copy of the PR:
$ git checkout pull/21830
$ git pull https://git.openjdk.org/jdk.git pull/21830/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 21830
View PR using the GUI difftool:
$ git pr show -t 21830
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/21830.diff
Using Webrev
Link to Webrev Comment