org.scandroid.prefixtransfer.PrefixTransferGraph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.ibm.wala.scandroid Show documentation
Show all versions of com.ibm.wala.scandroid Show documentation
T. J. Watson Libraries for Analysis
/*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html.
*
* This file is a derivative of code released under the terms listed below.
*
*/
/*
*
* Copyright (c) 2009-2012,
*
* Adam Fuchs
* Avik Chaudhuri
* Steve Suh
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. The names of the contributors may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*
*/
package org.scandroid.prefixtransfer;
import com.ibm.wala.classLoader.CallSiteReference;
import com.ibm.wala.classLoader.IMethod;
import com.ibm.wala.ipa.callgraph.CGNode;
import com.ibm.wala.ipa.callgraph.Context;
import com.ibm.wala.ipa.callgraph.ContextKey;
import com.ibm.wala.ipa.callgraph.propagation.AllocationSite;
import com.ibm.wala.ipa.callgraph.propagation.AllocationSiteInNode;
import com.ibm.wala.ipa.callgraph.propagation.ConstantKey;
import com.ibm.wala.ipa.callgraph.propagation.InstanceKey;
import com.ibm.wala.ipa.callgraph.propagation.NormalAllocationInNode;
import com.ibm.wala.ipa.callgraph.propagation.PointerAnalysis;
import com.ibm.wala.types.ClassLoaderReference;
import com.ibm.wala.util.graph.Graph;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.stream.Stream;
import org.scandroid.prefixtransfer.StringBuilderUseAnalysis.StringBuilderToStringInstanceKeySite;
import org.scandroid.prefixtransfer.modeledAllocations.ConstantString;
public class PrefixTransferGraph implements Graph {
private final Map nodeMap = new HashMap<>();
private final List nodes = new ArrayList<>();
private final Map> successors = new HashMap<>();
private final Map> predecessors = new HashMap<>();
public final Map sbuaMap = new HashMap<>();
public PrefixTransferGraph(PointerAnalysis pa) {
Map> unresolvedDependencies = new HashMap<>();
ArrayList instanceKeys = new ArrayList<>(pa.getInstanceKeys());
for (InstanceKey k : instanceKeys) {
if (k.getConcreteType().getName().toString().equals("Ljava/lang/StringBuilder")) {
if (k instanceof AllocationSiteInNode) {
AllocationSiteInNode as = (AllocationSiteInNode) k;
if (as.getSite()
.getDeclaredType()
.getClassLoader()
.equals(ClassLoaderReference.Application)) {
StringBuilderUseAnalysis sbua;
try {
sbua = new StringBuilderUseAnalysis(k, pa);
} catch (Exception e) {
continue;
}
sbuaMap.put(k, sbua); // map k to sbua in some global map
}
continue;
}
}
}
InstanceKeySite node;
for (InstanceKey k : instanceKeys) {
// create a node for each InstanceKey of type string
if (k.getConcreteType().getName().toString().equals("Ljava/lang/String")) {
if (k instanceof ConstantKey) {
node =
new ConstantString(
pa.getInstanceKeyMapping().getMappedIndex(k),
(String) ((ConstantKey>) k).getValue());
addNode(node);
nodeMap.put(k, node);
} else if (k instanceof NormalAllocationInNode) {
IMethod m = ((NormalAllocationInNode) k).getNode().getMethod();
if (m.getSignature().equals("java.lang.StringBuilder.toString()Ljava/lang/String;")) {
Context context = ((NormalAllocationInNode) k).getNode().getContext();
CGNode caller = (CGNode) context.get(ContextKey.CALLER);
CallSiteReference csr = (CallSiteReference) context.get(ContextKey.CALLSITE);
InstanceKey receiver = (InstanceKey) context.get(ContextKey.RECEIVER);
if (caller != null
&& caller
.getMethod()
.getReference()
.getDeclaringClass()
.getClassLoader()
.equals(ClassLoaderReference.Application)) {
node = sbuaMap.get(receiver).getNode(csr, k);
if (node == null) {
continue;
}
addNode(node);
nodeMap.put(k, node);
HashSet iks = new HashSet<>();
for (Integer i :
((StringBuilderToStringInstanceKeySite) node).concatenatedInstanceKeys) {
iks.add(pa.getInstanceKeyMapping().getMappedObject(i));
}
unresolvedDependencies.put(node, iks);
// TODO: if this string is created inside the toString function of a string builder,
// find the StringBuilderUseAnalysis for that string builder and call getNode(k) to
// get the node for this instance key
// - this may have to be done in another phase
// NormalAllocationInNode ak = (NormalAllocationInNode)k;
// SSAInstruction inst =
// ak.getNode().getIR().getPEI(ak.getSite());
//
//
// for(int i = 0; i < inst.getNumberOfUses(); i++)
// {
// int use = inst.getUse(i);
// OrdinalSet useKeys =
// pa.getPointsToSet(new LocalPointerKey(ak.getNode(), use));
//
// }
//
// for(int i = 0; i < inst.getNumberOfDefs(); i++)
// {
// int def = inst.getDef(i);
// OrdinalSet useKeys =
// pa.getPointsToSet(new LocalPointerKey(ak.getNode(), def));
//
// }
}
}
} else if (k instanceof AllocationSite) {
} else {
}
// create an edge for dependencies used in the creation of each instance key
} else {
}
}
for (Entry> deps : unresolvedDependencies.entrySet()) {
for (InstanceKey dep : deps.getValue()) {
InstanceKeySite depSite = nodeMap.get(dep);
if (depSite == null) {
throw new IllegalStateException(
"cannot resolve dependency of " + deps.getKey() + " on " + dep);
}
addEdge(depSite, deps.getKey());
}
}
}
@Override
public void removeNodeAndEdges(InstanceKeySite n) throws UnsupportedOperationException {
throw new UnsupportedOperationException();
}
@Override
public void addNode(InstanceKeySite n) {
predecessors.put(n, new HashSet<>());
successors.put(n, new HashSet<>());
nodes.add(n);
}
@Override
public boolean containsNode(InstanceKeySite n) {
return nodes.contains(n);
}
@Override
public int getNumberOfNodes() {
return nodes.size();
}
@Override
public Iterator iterator() {
return nodes.iterator();
}
@Override
public Stream stream() {
return nodes.stream();
}
@Override
public void removeNode(InstanceKeySite n) {
throw new UnsupportedOperationException();
}
@Override
public void addEdge(InstanceKeySite src, InstanceKeySite dst) {
Set predSet = predecessors.computeIfAbsent(dst, k -> new HashSet<>());
predSet.add(src);
Set succSet = successors.computeIfAbsent(src, k -> new HashSet<>());
succSet.add(dst);
}
@Override
public int getPredNodeCount(InstanceKeySite n) {
return predecessors.get(n).size();
}
@Override
public Iterator getPredNodes(InstanceKeySite n) {
return predecessors.get(n).iterator();
}
@Override
public int getSuccNodeCount(InstanceKeySite N) {
return successors.get(N).size();
}
@Override
public Iterator getSuccNodes(InstanceKeySite n) {
return successors.get(n).iterator();
}
@Override
public boolean hasEdge(InstanceKeySite src, InstanceKeySite dst) {
throw new UnsupportedOperationException();
}
@Override
public void removeAllIncidentEdges(InstanceKeySite node) throws UnsupportedOperationException {
throw new UnsupportedOperationException();
}
@Override
public void removeEdge(InstanceKeySite src, InstanceKeySite dst)
throws UnsupportedOperationException {
throw new UnsupportedOperationException();
}
@Override
public void removeIncomingEdges(InstanceKeySite node) throws UnsupportedOperationException {
throw new UnsupportedOperationException();
}
@Override
public void removeOutgoingEdges(InstanceKeySite node) throws UnsupportedOperationException {
throw new UnsupportedOperationException();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy