Skip to content
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

Add checker for static final buffers #12

Merged
merged 6 commits into from Oct 29, 2021
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1,79 @@
/*
* Copyright 2021 The Netty Project
*
* The Netty Project licenses this file to you under the Apache License,
* version 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/

package io.netty.build.checkstyle;

import com.puppycrawl.tools.checkstyle.api.AbstractCheck;
import com.puppycrawl.tools.checkstyle.api.DetailAST;
import com.puppycrawl.tools.checkstyle.api.FileContents;
import com.puppycrawl.tools.checkstyle.api.FullIdent;
import com.puppycrawl.tools.checkstyle.api.TokenTypes;

import java.util.regex.Pattern;

/**
* This check verifies that static final buffers are unreleasable and read-only.
*
* It aims to prevent corruption bugs like khttps://github.com/netty/netty/issues/11792
* from happening in the future.
*/
public class StaticFinalBufferCheck extends AbstractCheck {

// Pattern is single line because variable definition is flattened and trimmed before the match.
private static final Pattern pattern = Pattern.compile(
"(Unpooled\\s*\\.)?unreleasableBuffer\\(.*?\\)\\s*\\.asReadOnly\\(\\)");

@Override
public int[] getRequiredTokens() {
return new int[]{TokenTypes.VARIABLE_DEF};
}

@Override
public int[] getDefaultTokens() {
return getRequiredTokens();
}

@Override
public int[] getAcceptableTokens() {
return getRequiredTokens();
}

@Override
public void visitToken(DetailAST ast) {
DetailAST modifiersAST = ast.findFirstToken(TokenTypes.MODIFIERS);
boolean isStatic = modifiersAST.findFirstToken(TokenTypes.LITERAL_STATIC) != null;
boolean isFinal = modifiersAST.findFirstToken(TokenTypes.FINAL) != null;
FullIdent typeIdent = FullIdent.createFullIdentBelow(ast.findFirstToken(TokenTypes.TYPE));
if (!isStatic || !isFinal || !typeIdent.getText().endsWith("Buf")) {
return;
}
DetailAST assignAST = ast.findFirstToken(TokenTypes.ASSIGN);
DetailAST semiAST = ast.findFirstToken(TokenTypes.SEMI);
if (assignAST == null || semiAST == null) {
log(ast.getLineNo(), "Missing assignment for static final buffer");
return;
}
FileContents fc = getFileContents();
StringBuilder sb = new StringBuilder();
for (int i = assignAST.getLineNo(); i <= semiAST.getLineNo(); i++) {
// getLineNo returns 1-based line number, getLine expects 0-based.
sb.append(fc.getLine(i - 1).trim());
}
if (!pattern.matcher(sb.toString()).find()) {
log(ast.getLineNo(), "static final buffer assignment should match pattern " + pattern);
}
}
}
6 changes: 5 additions & 1 deletion common/src/main/resources/io/netty/checkstyle.xml
Expand Up @@ -55,7 +55,7 @@
<module name="RegexpSingleline">
<property name="format" value="\s+$"/>
<property name="message" value="trailing whitespace"/>
</module>
</module>
<!-- Prohibit consecutive empty lines (except the lines after package/import) -->
<module name="RegexpMultiline">
<property name="format" value="\n *(?!package )(?!import )[^\n]+\n{3,}"/>
Expand All @@ -75,8 +75,12 @@
<property name="max" value="120"/>
<property name="fileExtensions" value="java"/>
</module>
<module name="SuppressWarningsFilter" />

<module name="TreeWalker">
<module name="SuppressWarningsHolder" />
normanmaurer marked this conversation as resolved.
Show resolved Hide resolved
<!-- Make sure final static buffers are unreleasable and read-only. -->
<module name="io.netty.build.checkstyle.StaticFinalBufferCheck"/>
<module name="WhitespaceAfter"/>
<module name="WhitespaceAround">
<property name="tokens" value="ASSIGN, BAND, BAND_ASSIGN, BOR, BOR_ASSIGN, BSR, BSR_ASSIGN, BXOR, BXOR_ASSIGN, DIV, DIV_ASSIGN, EQUAL, GE, GT, LAND, LCURLY, LE, LITERAL_ASSERT, LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_RETURN, LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE, LOR, LT, MINUS, MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL, PLUS, PLUS_ASSIGN, RCURLY, SL, SLIST, SL_ASSIGN, SR, SR_ASSIGN, STAR, STAR_ASSIGN, TYPE_EXTENSION_AND"/>
Expand Down