All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pascal.taie.analysis.bugfinder.DroppedException Maven / Gradle / Ivy

The newest version!
/*
 * Tai-e: A Static Analysis Framework for Java
 *
 * Copyright (C) 2022 Tian Tan 
 * Copyright (C) 2022 Yue Li 
 *
 * This file is part of Tai-e.
 *
 * Tai-e 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 3
 * of the License, or (at your option) any later version.
 *
 * Tai-e 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 Tai-e. If not, see .
 */

package pascal.taie.analysis.bugfinder;

import pascal.taie.analysis.MethodAnalysis;
import pascal.taie.config.AnalysisConfig;
import pascal.taie.ir.IR;
import pascal.taie.ir.proginfo.ExceptionEntry;
import pascal.taie.ir.stmt.Goto;
import pascal.taie.ir.stmt.Nop;
import pascal.taie.ir.stmt.Return;
import pascal.taie.ir.stmt.Stmt;
import pascal.taie.language.classes.ClassNames;
import pascal.taie.util.collection.Sets;

import java.util.Set;

public class DroppedException extends MethodAnalysis> {

    public static final String ID = "dropped-exception";

    public DroppedException(AnalysisConfig config) {
        super(config);
    }

    @Override
    public Set analyze(IR ir) {
        Set bugInstanceSet = Sets.newHybridSet();
        for (ExceptionEntry entry : ir.getExceptionEntries()) {
            String exceptionName = entry.catchType().getName();
            if (exceptionName.equals(ClassNames.CLONE_NOT_SUPPORTED_EXCEPTION)
                    || exceptionName.equals(ClassNames.INTERRUPTED_EXCEPTION)) {
                continue;
            }
            Stmt catchHandler = entry.handler();
            int nextStmt = catchHandler.getIndex() + 1;

            while (nextStmt < ir.getStmts().size() && ir.getStmt(nextStmt) instanceof Nop) {
                nextStmt++;
            }

            if (nextStmt < ir.getStmts().size() &&
                    (ir.getStmt(nextStmt) instanceof Goto || ir.getStmt(nextStmt) instanceof Return)) {
                boolean exitInTryBlock = false;
                for (int i = entry.start().getIndex(); i <= entry.end().getIndex(); ++i) {
                    if (ir.getStmt(i) instanceof Return) {
                        exitInTryBlock = true;
                        break;
                    }
                }
                Severity severity = Severity.MINOR;
                if (exceptionName.equals(ClassNames.ERROR)
                        || exceptionName.equals(ClassNames.EXCEPTION)
                        || exceptionName.equals(ClassNames.THROWABLE)
                        || exceptionName.equals(ClassNames.RUNTIME_EXCEPTION)) {
                    severity = Severity.CRITICAL;
                }
                BugInstance bugInstance = new BugInstance(
                        exitInTryBlock ? BugType.DE_MIGHT_DROP : BugType.DE_MIGHT_IGNORE,
                        severity, ir.getMethod())
                        .setSourceLine(catchHandler.getLineNumber());
                bugInstanceSet.add(bugInstance);
            }
        }

        return bugInstanceSet;
    }

    private enum BugType implements pascal.taie.analysis.bugfinder.BugType {
        DE_MIGHT_DROP,
        DE_MIGHT_IGNORE
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy