<html><head></head><body><div class="ydp942e2e53yahoo-style-wrap" style="font-family:Helvetica Neue, Helvetica, Arial, sans-serif;font-size:13px;"><div></div>
<div dir="ltr" data-setdir="false">Hi Prof. Dr. Arzt, Prof. Dr. Bodden,</div><div dir="ltr" data-setdir="false"><br></div><div dir="ltr" data-setdir="false">I followed your recommendations of using Flowdroid and preprocessors, instead of Soot, for which I thank you once again.</div><div dir="ltr" data-setdir="false"><br></div><div dir="ltr" data-setdir="false">While it did provide me with a much more precise callgraph on the example I showed before, some of the edges that were found previously by Soot are now missing, and from a first look, it seems those are all within fragment lifecycles (e.g onViewCreated). Is there anything regarding how fragment classes are handled by Flowdroid which you believe could explain this behavior?</div><div dir="ltr" data-setdir="false"><br></div><div dir="ltr" data-setdir="false">Best regards,</div><div dir="ltr" data-setdir="false">Faridah Akinotcho </div><div><br></div>
</div><div id="yahoo_quoted_2885228229" class="yahoo_quoted">
<div style="font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;color:#26282a;">
<div>
Le lundi 9 mai 2022, 19:27:11 UTC−7, Faridah Akinotcho <faridath.akinotcho@yahoo.fr> a écrit :
</div>
<div><br></div>
<div><br></div>
<div><div id="yiv5252041963"><div><div style="font-family:Helvetica Neue, Helvetica, Arial, sans-serif;font-size:13px;" class="yiv5252041963ydp103ff1cdyahoo-style-wrap"><div id="yiv5252041963ydp103ff1cdyiv4899222604"><div style="font-family:Helvetica Neue, Helvetica, Arial, sans-serif;font-size:13px;" class="yiv5252041963ydp103ff1cdyiv4899222604ydped419617yahoo-style-wrap"><div></div>
<div dir="ltr">Thank you for clarifying this! I'll try setting up my analysis within this Flowdroid callback instead.<br clear="none"></div><div dir="ltr"><br clear="none"></div><div dir="ltr">Best regards,</div><div dir="ltr">Faridah Akinotcho</div><div><br clear="none"><br clear="none"></div>
</div></div></div><div id="yiv5252041963yqt32760" class="yiv5252041963yqt9597823539"><div id="yiv5252041963yqt18320" class="yiv5252041963yqt1490217447"><div id="yiv5252041963yahoo_quoted_2158210058" class="yiv5252041963yahoo_quoted">
<div style="font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;color:#26282a;">
<div>
Le lundi 9 mai 2022, 12:12:00 UTC−7, Arzt, Steven <steven.arzt@sit.fraunhofer.de> a écrit :
</div>
<div><br clear="none"></div>
<div><br clear="none"></div>
<div><div dir="ltr">Dear Faridah,<br clear="none"><br clear="none">You can call SetupApplication.addPreprocessor() to add a callback that gets invoked once the callgraph construction is done in FlowDroid. The interface has two methods, one before and one after callgraph construction. You just need to use the FlowDroid API, i.e., the SetupApplication class. That should be fairly simple.<br clear="none"><br clear="none">Best regards,<br clear="none"> Steven<br clear="none"><br clear="none">-----Original Message-----<br clear="none">From: Soot-list <<a rel="nofollow noopener noreferrer" shape="rect" ymailto="mailto:soot-list-bounces@CS.McGill.CA" target="_blank" href="mailto:soot-list-bounces@CS.McGill.CA">soot-list-bounces@CS.McGill.CA</a>> On Behalf Of Faridah Akinotcho<br clear="none">Sent: Montag, 9. Mai 2022 21:11<br clear="none">To: Eric Bodden <<a rel="nofollow noopener noreferrer" shape="rect" ymailto="mailto:eric.bodden@uni-paderborn.de" target="_blank" href="mailto:eric.bodden@uni-paderborn.de">eric.bodden@uni-paderborn.de</a>><br clear="none">Cc: Soot-list <<a rel="nofollow noopener noreferrer" shape="rect" ymailto="mailto:soot-list@cs.mcgill.ca" target="_blank" href="mailto:soot-list@cs.mcgill.ca">soot-list@cs.mcgill.ca</a>><br clear="none">Subject: Re: [Soot-list] Missing callgraph edges with Spark<br clear="none"><br clear="none">Hi Prof. Dr. Bodden,<br clear="none"><br clear="none">Thank you for the reply! I am using bare Soot because I am trying to add a wjtp subphase and I couldn't figure out how to do with Flowdroid without having to extend it and override constructCallgraph. Would there be a way for me to this with Flowdroid?<br clear="none"><br clear="none">Best regards,<br clear="none">Faridah Akinotcho<br clear="none"><br clear="none">Le lundi 9 mai 2022, 05:20:22 UTC−7, Eric Bodden <<a rel="nofollow noopener noreferrer" shape="rect" ymailto="mailto:eric.bodden@uni-paderborn.de" target="_blank" href="mailto:eric.bodden@uni-paderborn.de">eric.bodden@uni-paderborn.de</a>> a écrit : <br clear="none"><br clear="none"><br clear="none">Hi Faridah. <br clear="none"><br clear="none"><br clear="none">When creating callgraphs for Android you should be using our Soot-extension FlowDroid because it models Android’s lifecycle. When you use bare Soot then the callgraph will be very incomplete. Are you using FlowDroid already?<br clear="none"><br clear="none"><br clear="none">Cheers<br clear="none">Eric<br clear="none"><br clear="none"><br clear="none"><br clear="none"> On 9. May 2022, at 00:11, Faridah Akinotcho <<a rel="nofollow noopener noreferrer" shape="rect" ymailto="mailto:faridath.akinotcho@yahoo.fr" target="_blank" href="mailto:faridath.akinotcho@yahoo.fr">faridath.akinotcho@yahoo.fr</a> <mailto:<a rel="nofollow noopener noreferrer" shape="rect" ymailto="mailto:faridath.akinotcho@yahoo.fr" target="_blank" href="mailto:faridath.akinotcho@yahoo.fr">faridath.akinotcho@yahoo.fr</a>> > wrote:<br clear="none"><br clear="none"> Hi,<br clear="none"><br clear="none"> I am using Soot (org.soot.oss 4.2.1) to perform an interprocedural analysis on Android methods (in the wjtp phase). To this end, I am extracting reachable methods from Android lifecycles using Scene.v().getCallgraph().edgesOutOf(method). However, I noticed that some virtual and special edges seem to always be missing from the returned set. For e.g, given:<br clear="none"><br clear="none"> class B extends A{<br clear="none"> void onCreate(...){<br clear="none"> setContentView(C0027R.layout.merge);<br clear="none"> super.onCreate(bundle);<br clear="none"> setNextActivity(C.class);<br clear="none"> }<br clear="none"> }<br clear="none"> <br clear="none"> class A{<br clear="none"> public void setNextActivity(){<br clear="none"> ...<br clear="none"> }<br clear="none"> }<br clear="none"><br clear="none"> When computing the reachable methods for B.onCreate(), neither setContentView, super.onCreate or setNextActivity are included as targets for the outgoing edges (only clinit is returned). However, when using CHA instead of Spark, these are part of the returned set (along other overapproximations), so I am assuming there might be some issue when performing the points-to analysis. Here are the options I am using:<br clear="none"><br clear="none"> Options.v().set_src_prec(Options.src_prec_apk);<br clear="none"> Options.v().set_output_format(Options.output_format_none);<br clear="none"><br clear="none"> Options.v().set_no_bodies_for_excluded(true);<br clear="none"> Options.v().set_allow_phantom_refs(true);<br clear="none"> Options.v().set_android_jars(androidJar);<br clear="none"><br clear="none"> Options.v().set_process_dir(Collections.singletonList(apkPath));<br clear="none"> Options.v().set_soot_classpath(androidJar);<br clear="none"> Options.v().set_process_multiple_dex(true);<br clear="none"><br clear="none"> Options.v().set_whole_program(true);<br clear="none"> Options.v().setPhaseOption("cg", "all-reachable:true");<br clear="none"> Options.v().setPhaseOption("cg.spark", "on");<br clear="none"> Options.v().setPhaseOption("cg.spark", "verbose:true");<br clear="none"> Options.v().setPhaseOption("cg.spark", "string-constants:true");<br clear="none"><br clear="none"> Options.v().setPhaseOption("jb.ulp", "off");<br clear="none"> <br clear="none"> Main.v().autoSetOptions();<br clear="none"> Scene.v().loadNecessaryClasses();<br clear="none"><br clear="none"><br clear="none"><br clear="none"> I would greatly appreciate any pointers about what I might be missing (maybe an option that wasn't set properly) or what the problem could be.<br clear="none"><br clear="none"> Best regards,<br clear="none"> Faridah Akinotcho<br clear="none"><br clear="none"> _______________________________________________<br clear="none"> Soot-list mailing list<br clear="none"> <a rel="nofollow noopener noreferrer" shape="rect" ymailto="mailto:Soot-list@CS.McGill.CA" target="_blank" href="mailto:Soot-list@CS.McGill.CA">Soot-list@CS.McGill.CA</a> <mailto:<a rel="nofollow noopener noreferrer" shape="rect" ymailto="mailto:Soot-list@CS.McGill.CA" target="_blank" href="mailto:Soot-list@CS.McGill.CA">Soot-list@CS.McGill.CA</a>> <div id="yiv5252041963yqtfd40889" class="yiv5252041963yqt3210952231"><br clear="none"> <a rel="nofollow noopener noreferrer" shape="rect" target="_blank" href="https://mailman.CS.McGill.CA/mailman/listinfo/soot-list">https://mailman.CS.McGill.CA/mailman/listinfo/soot-list</a><br clear="none"> <br clear="none"><br clear="none"><br clear="none"></div></div></div>
</div>
</div></div></div></div></div></div>
</div>
</div></body></html>