[
https://issues.apache.org/jira/browse/AVRO-4313?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ryan Skraba resolved AVRO-4313.
-------------------------------
Fix Version/s: 1.13.0
Resolution: Fixed
Cherry-picked to
[branch-1.12|https://github.com/apache/avro/commit/7cd02f6fd5479c613fab7f80a4b4d2c61aba1ec3].
> [java] Tighten javaAnnotation string-literal validation in SpecificCompiler
> ---------------------------------------------------------------------------
>
> Key: AVRO-4313
> URL: https://issues.apache.org/jira/browse/AVRO-4313
> Project: Apache Avro
> Issue Type: Bug
> Components: java
> Affects Versions: 1.11.5, 1.12.1
> Reporter: Ismaël Mejía
> Assignee: Ismaël Mejía
> Priority: Major
> Labels: pull-request-available
> Fix For: 1.13.0, 1.12.2
>
> Time Spent: 1h
> Remaining Estimate: 0h
>
> The {{javaAnnotation}} validator in {{SpecificCompiler}} uses a regular
> expression (\{{PATTERN_STRING}}) whose string-literal grammar accepts an
> unescaped quote inside the literal body. As a result a single string literal
> can extend past its intended closing quote and absorb arbitrary tokens, so a
> crafted {{javaAnnotation}} value can full-match the {{IDENTIFIER(STRING)}}
> shape while actually containing extra Java declarations. Because the record
> template emits annotation values verbatim, such a value would be written
> directly into the generated specific-record source.
> This tightens the string-literal grammar so the body may only contain
> recognized escape sequences or characters that are not a quote, backslash, or
> line terminator. Legitimate annotation values (for example
> {{{}SuppressWarnings("unchecked"){}}}, {{{}Deprecated(forRemoval = true,
> since = "forever"){}}}, and values with escaped quotes) continue to validate.
> A regression test is added.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)