edu.umd.cs.findbugs.detect.LostLoggerDueToWeakReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotbugs Show documentation
Show all versions of spotbugs Show documentation
SpotBugs: Because it's easy!
The newest version!
/*
* FindBugs - Find bugs in Java programs
* Copyright (C) 2004-2006 University of Maryland
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package edu.umd.cs.findbugs.detect;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import org.apache.bcel.Const;
import org.apache.bcel.classfile.Code;
import edu.umd.cs.findbugs.BugAccumulator;
import edu.umd.cs.findbugs.BugInstance;
import edu.umd.cs.findbugs.BugReporter;
import edu.umd.cs.findbugs.OpcodeStack;
import edu.umd.cs.findbugs.ba.ClassContext;
import edu.umd.cs.findbugs.bcel.OpcodeStackDetector;
import edu.umd.cs.findbugs.classfile.MethodDescriptor;
import edu.umd.cs.findbugs.visitclass.PreorderVisitor;
/**
* We found a problem with the new OpenJDK that everyone is now using to compile
* and run java code. In particular, the java.util.logging.Logger behavior has
* changed. Instead of using strong references, it now uses weak references
* internally. That's a reasonable change, but unfortunately some code relies on
* the old behavior - when changing logger configuration, it simply drops the
* logger reference. That means that the garbage collector is free to reclaim
* that memory, which means that the logger configuration is lost.
*/
public class LostLoggerDueToWeakReference extends OpcodeStackDetector {
private static final List methods = Arrays.asList(
new MethodDescriptor("java/util/logging/Logger", "getLogger", "(Ljava/lang/String;)Ljava/util/logging/Logger;", true),
new MethodDescriptor("java/util/logging/Logger", "getLogger", "(Ljava/lang/String;Ljava/lang/String;)Ljava/util/logging/Logger;", true));
// final BugReporter bugReporter;
final BugAccumulator bugAccumulator;
final HashSet namesOfSetterMethods = new HashSet<>();
public LostLoggerDueToWeakReference(BugReporter bugReporter) {
// this.bugReporter = bugReporter;
this.bugAccumulator = new BugAccumulator(bugReporter);
namesOfSetterMethods.add("addHandler");
namesOfSetterMethods.add("setUseParentHandlers");
namesOfSetterMethods.add("setLevel");
namesOfSetterMethods.add("setFilter");
}
@Override
public void visitClassContext(ClassContext classContext) {
if (hasInterestingMethod(classContext.getJavaClass().getConstantPool(), methods)) {
super.visitClassContext(classContext);
}
}
@Override
public void visit(Code code) {
if (getMethodSig().indexOf("Logger") == -1) {
sawGetLogger = -1;
loggerEscaped = loggerImported = false;
super.visit(code); // make callbacks to sawOpcode for all opcodes
/*
if (false) {
System.out.println(getFullyQualifiedMethodName());
System.out.printf("%d %s %s\n", sawGetLogger, loggerEscaped, loggerImported);
}
*/
if (sawGetLogger >= 0 && !loggerEscaped && !loggerImported) {
bugAccumulator.reportAccumulatedBugs();
} else {
bugAccumulator.clearBugs();
}
}
}
int sawGetLogger;
boolean loggerEscaped;
boolean loggerImported;
@Override
public void sawOpcode(int seen) {
if (loggerEscaped || loggerImported) {
return;
}
switch (seen) {
case Const.INVOKESTATIC:
if ("java/util/logging/Logger".equals(getClassConstantOperand()) && "getLogger".equals(getNameConstantOperand())) {
OpcodeStack.Item item = stack.getStackItem(0);
if (!"".equals(item.getConstant())) {
sawGetLogger = getPC();
}
break;
}
checkForImport();
break;
case Const.INVOKEVIRTUAL:
if ("java/util/logging/Logger".equals(getClassConstantOperand())
&& namesOfSetterMethods.contains(getNameConstantOperand())) {
int priority = HIGH_PRIORITY;
if (getMethod().isStatic() && "main".equals(getMethodName()) && "([Ljava/lang/String;)V".equals(getMethodSig())) {
priority = NORMAL_PRIORITY;
}
OpcodeStack.Item item = stack.getItemMethodInvokedOn(this);
BugInstance bug = new BugInstance(this, "LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE", priority)
.addClassAndMethod(this).addValueSource(item, this);
bugAccumulator.accumulateBug(bug, this);
break;
}
checkForImport();
checkForMethodExportImport();
break;
case Const.INVOKEINTERFACE:
case Const.INVOKESPECIAL:
checkForImport();
checkForMethodExportImport();
break;
case Const.CHECKCAST:
String sig = getClassConstantOperand();
if (sig.indexOf("Logger") >= 0) {
loggerImported = true;
}
break;
case Const.GETFIELD:
case Const.GETSTATIC:
checkForImport();
break;
case Const.PUTFIELD:
case Const.PUTSTATIC:
checkForFieldEscape();
break;
default:
break;
}
}
private void checkForImport() {
if (getSigConstantOperand().endsWith("Logger;")) {
loggerImported = true;
}
}
private void checkForMethodExportImport() {
int numArguments = PreorderVisitor.getNumberArguments(getSigConstantOperand());
for (int i = 0; i < numArguments; i++) {
OpcodeStack.Item item = stack.getStackItem(i);
if (item.getSignature().endsWith("Logger;")) {
loggerEscaped = true;
}
}
String sig = getSigConstantOperand();
int pos = sig.indexOf(')');
int loggerPos = sig.indexOf("Logger");
if (0 <= loggerPos && loggerPos < pos) {
loggerEscaped = true;
}
}
private void checkForFieldEscape() {
String sig = getSigConstantOperand();
if (sig.indexOf("Logger") >= 0) {
loggerEscaped = true;
}
OpcodeStack.Item item = stack.getStackItem(0);
if (item.getSignature().endsWith("Logger;")) {
loggerEscaped = true;
}
}
}