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

pascal.taie.analysis.pta.plugin.taint.TaintManager 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.pta.plugin.taint;

import pascal.taie.analysis.pta.core.heap.Descriptor;
import pascal.taie.analysis.pta.core.heap.HeapModel;
import pascal.taie.analysis.pta.core.heap.MockObj;
import pascal.taie.analysis.pta.core.heap.Obj;
import pascal.taie.language.type.Type;
import pascal.taie.util.AnalysisException;
import pascal.taie.util.collection.Sets;

import java.util.Collections;
import java.util.Set;

/**
 * Manages taint objects.
 */
class TaintManager {

    private static final Descriptor TAINT_DESC = () -> "TaintObj";

    private final HeapModel heapModel;

    private final Set taintObjs = Sets.newHybridSet();

    TaintManager(HeapModel heapModel) {
        this.heapModel = heapModel;
    }

    /**
     * Makes a taint object for given source point and type.
     *
     * @param sourcePoint where the taint is generated
     * @param type        type of the taint object
     * @return the taint object for given source and type.
     */
    Obj makeTaint(SourcePoint sourcePoint, Type type) {
        Obj taint = heapModel.getMockObj(TAINT_DESC, sourcePoint, type, false);
        taintObjs.add(taint);
        return taint;
    }

    /**
     * @return true if given obj represents a taint object, otherwise false.
     */
    boolean isTaint(Obj obj) {
        return obj instanceof MockObj mockObj &&
                mockObj.getDescriptor().equals(TAINT_DESC);
    }

    /**
     * @return the source point of given taint object.
     * @throws AnalysisException if given object is not a taint object.
     */
    SourcePoint getSourcePoint(Obj obj) {
        if (isTaint(obj)) {
            return (SourcePoint) obj.getAllocation();
        }
        throw new AnalysisException(obj + " is not a taint object");
    }

    /**
     * @return all taint objects generated via this manager.
     */
    Set getTaintObjs() {
        return Collections.unmodifiableSet(taintObjs);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy