[quandary] understand that parameters are passed by value in Java

Reviewed By: jeremydubreil

Differential Revision: D4145199

fbshipit-source-id: fc2cd98
master
Sam Blackshear 8 years ago committed by Facebook Github Bot
parent dcf67c455f
commit 4b4e4e6f4d

@ -435,10 +435,16 @@ module Make (TaintSpec : TaintSpec.S) = struct
let add_summaries_for_trace summary_acc access_path trace =
let summary_trace = TaintSpec.to_summary_trace trace in
let output_opt =
let base = fst (AccessPath.extract access_path) in
let base, accesses = AccessPath.extract access_path in
match AccessPath.BaseMap.find base formal_map with
| index ->
Some (QuandarySummary.make_formal_output index access_path)
(* Java is pass-by-value. thus, summaries should not include assignments to the formal
parameters (first part of the check) . however, they should reflect when a formal
passes through a sink (second part of the check) *)
if accesses = [] && TraceDomain.Sinks.is_empty (TraceDomain.sinks trace)
(* TODO: and if [base] is not passed by reference, for C/C++/Obj-C *)
then None
else Some (QuandarySummary.make_formal_output index access_path)
| exception Not_found ->
if is_return base
then Some (QuandarySummary.make_return_output access_path)

@ -273,4 +273,26 @@ class Interprocedural {
callSinkThenDiverge(InferTaint.inferSecretSource());
}
public static void assignSourceToParam(Object o) {
o = InferTaint.inferSecretSource();
}
// Java is call-by-value; this is fine
public static void assignSourceToParamOk() {
Object o = null;
assignSourceToParam(o);
InferTaint.inferSensitiveSink(o);
}
public static void swapParams(Object o1, Object o2) {
o1 = o2;
}
public static void swapParamsOk() {
Object notASource = null;
Object source = InferTaint.inferSecretSource();
swapParams(notASource, source);
InferTaint.inferSensitiveSink(notASource);
}
}

Loading…
Cancel
Save