Presentation is loading. Please wait.

Presentation is loading. Please wait.

Quantified Invariant Generation using an Interpolating Saturation Prover Ken McMillan Cadence Research Labs TexPoint fonts used in EMF: A A A A A.

Similar presentations


Presentation on theme: "Quantified Invariant Generation using an Interpolating Saturation Prover Ken McMillan Cadence Research Labs TexPoint fonts used in EMF: A A A A A."— Presentation transcript:

1 Quantified Invariant Generation using an Interpolating Saturation Prover Ken McMillan Cadence Research Labs TexPoint fonts used in EMF: A A A A A

2 Introduction Interpolants derived from proofs can provide an effective relevance heuristic for constructing inductive invariants –Provides a way of generalizing proofs about bounded behaviors to the unbounded case Exploits a provers ability to focus on relevant facts –Used in various applications, including Hardware verification (propositional case) Predicate abstraction (quantifier-free) Program verification (quantifier-free) This talk –Moving to the first-order case, including FO(TC) –Modifying SPASS to create an interpolating FO prover –Apply to program verification with arrays, linked lists

3 Invariants from unwindings Consider this very simple approach: –Partially unwind a program into a loop-free, in-line program –Construct a Floyd/Hoare proof for the in-line program –See if this proof contains an inductive invariant proving the property Example program: x = y = 0; while(*) x++; y++; while(x != 0) x--; y--; assert (y == 0); {x == y} invariant:

4 {x = 0 ^ y = 0} {x = y} {x = 0 ) y = 0} {False} {True} {y = 0} {y = 1} {y = 2} {y = 1} {y = 0} {False} {True} Unwind the loops Proof of inline program contains invariants for both loops Assertions may diverge as we unwind A practical method must somehow prevent this kind of divergence! x = y = 0; x++; y++; [x!=0]; x--; y--; [x!=0]; x--; y--; [x == 0] [y != 0]

5 Interpolation Lemma If A B = false, there exists an interpolant A' for (A,B) such that: –A implies A –A is inconsistent with B –A is expressed over the common vocabulary of A and B [Craig,57] A variety of techniques exist for deriving an interpolant from a refutation of A B, generated by a theorem prover.

6 Interpolants as Floyd-Hoare proofs False x 1 =y 0 True y 1 >x 1 ) ) ) 1. Each formula implies the next 2. Each is over common symbols of prefix and suffix 3. Begins with true, ends with false Proving in-line programs SSA sequence Prover Interpolation Hoare Proof proof x=y; y++; [x=y] x 1 = y 0 y 1 =y 0 +1 x 1 y 1 {False} {x=y} {True} {y>x} x = y y++ [x == y]

7 Need for quantified interpolants Existing interpolating provers cannot produce quantified interpolants Problem: how to prevent the number of quantifiers from diverging in the same way that constants diverge when we unwind the loops? For linked structures we also require a theory of reachability (in effect, transitive closure) for(i = 0; i < N; i++) a[i] = i; for(j = 0; j < N; j++) assert a[j] = j; { 8 x. 0 · x ^ x < i ) a[x] = x} invariant: Can we build an interpolating prover for full FOL than that handles reachability, and avoids divergence?

8 Clausal provers A clausal refutation prover takes a set of clauses and returns a proof of unsatisfiability (i.e., a refutation) if possible. A prover is based on inference rules of this form: P 1... P n C where P 1... P n are the premises and C the conclusion. A typical inference rule is resolution, of which this is an instance: p(a) p(U) ! q(U) q(a) This was accomplished by unifying p(a) and P(U), then dropping the complementary literals.

9 Superposition calculus Modern FOL provers based on the superposition calculus –example superposition inference: – –this is just substitution of equals for equals – –in practice this approach generates a lot of substitutions! – –use reduction order to reduce number of inferences Q(a) P ! (a = c) P ! Q(c)

10 Reduction orders A reduction order  is: –a total, well founded order on ground terms –subterm property: f(a)  a –monotonicity: a  b implies f(a)  f(b) Example: Recursive Path Ordering (with Status) (RPOS) –start with a precedence on symbols: a  b  c  f –induces a reduction ordering on ground terms: f(f(a)  f(a)  a  f(b)  b  c  f

11 These terms must be maximal in their clauses Ordering Constraint Constrains rewrites to be downward in the reduction order: Q(a) P ! (a = c) P ! Q(c) example: this inference only possible if a  c Thm: Superposition with OC is complete for refutation in FOL with equality. So how do we get interpolants from these proofs?

12 Local Proofs A proof is local for a pair of clause sets (A,B) when every inference step uses only symbols from A or only symbols from B. From a local refutation of (A,B), we can derive an interpolant for (A,B) in linear time. This interpolant is a Boolean combination of formulas in the proof

13 Reduction orders and locality A reduction order is oriented for (A,B) when: –s  t for every s L (B) and t 2L (B) Intuition: rewriting eliminates first A variables, then B variables. oriented: x  y  c  d  f x = y AB f(x) = c f(y) = d c d x = y f(x) = c ` f(y) = c f(y) = c f(y) = d ` c = d c = d c d ` ? Local!!

14 Orientation is not enough Local superposition gives only c=c. Solution: replace non-local superposition with two inferences: Q(a) : Q(b) A B Q  a  b  c a = c b = c Q(a) a = c Q(c) Q(a) a = U ! Q(U) This procrastination step is an example of a reduction rule, and preserves completeness. a = c Q(c) Second inference can be postponed until after resolving with : Q(b)

15 Completeness of local inference Thm: Local superposition with procrastination is complete for refutation of pairs (A,B) such that: –(A,B) has a universally quantified interpolant –The reduction order is oriented for (A,B) This gives us a complete method for generation of universally quantified interpolants for arbitrary first-order formulas! This is easily extensible to interpolants for sequences of formulas, hence we can use the method to generate Floyd/Hoare proofs for inline programs.

16 Avoiding Divergence As argued earlier, we still need to prevent interpolants from diverging as we unwind the program further. Idea: stratify the clause language Example: Let L k be the set of clauses with at most k variables and nesting depth at most k. Note that each L k is a finite language. Stratified saturation prover: – –Initially let k = 1 – –Restrict prover to generate only clauses in L k – –When prover saturates, increase k by one and continue The stratified prover is complete, since every proof is contained in some L k.

17 Completeness for universal invariants Lemma: For every safety program M with a 8 safety invariant, and every stratified saturation prover P, there exists an integer k such that P refutes every unwinding of M in L k, provided: – The reduction ordering is oriented properly This means that as we unwind further, eventually all the interpolants are contained in L k, for some k. Theorem: Under the above conditions, there is some unwinding of M for which the interpolants generated by P contain a safety invariant for M. This means we have a complete procedure for finding universally quantified safety invariants whenever these exist!

18 In practice We have proved theoretical convergence. But does the procedure converge in practice in a reasonable time? Modify SPASS, an efficient superposition-based saturation prover: –Generate oriented precedence orders –Add procrastination rule to SPASSs reduction rules –Drop all non-local inferences –Add stratification (SPASS already has something similar) Add axiomatizations of the necessary theories –An advantage of a full FOL prover is we can add axioms! –As argued earlier, we need a theory of arrays and reachability (TC) Since this theory is not finitely axiomatizable, we use an incomplete axiomatization that is intended to handle typical operations in list- manipulating programs

19 Simple example for(i = 0; i < N; i++) a[i] = i; for(j = 0; j < N; j++) assert a[j] = j; { 8 x. 0 · x ^ x < i ) a[x] = x} invariant:

20 i = 0; [i < N]; a[i] = i; i++; [i < N]; a[i] = i; i++; [i >= N]; j = 0; [j < N]; j++; [j < N]; a[j] != j; Unwinding simple example Unwind the loops twice i 0 = 0 i 0 < N a 1 = update(a 0,i 0,i 0 ) i 1 = i 0 + 1 i 1 < N a 2 = update(a 1,i 1,i 1 ) i 2 = i+1 + 1 i ¸ N ^ j 0 = 0 j 0 < N ^ j 1 = j 0 + 1 j 1 < N select(a 2,j 1 ) j 1 invariant {i 0 = 0} {0 · U ^ U < i 1 ) select(a 1,U)=U} {0 · U ^ U < i 2 ) select(a 2,U)=U} {j · U ^ U < N ) select(a 2,U)=U} note: stratification prevents constants diverging as 0, succ(0), succ(succ(0)),...

21 List deletion example Invariant synthesized with 3 unwindings (after some: simplification): a = create_list(); while(a){ tmp = a->next; free(a); a = tmp; } {rea(next,a,nil) ^ 8 x (rea(next,a,x) ! x = nil _ alloc(x))} That is, a is acyclic, and every cell is allocated Note that interpolation can synthesize Boolean structure.

22 More small examples This shows that divergence can be controlled. But can we scale to large programs?...

23 A slightly larger program We have to track a, b and c to prove this property –Lets look at what happens with canonical heap abstractions... main(){ node *a = create_list(); node *b = create_list(); node *c = create_list(); node *p = * ? a : * ? b : c while(p){ assert(alloced(p)); p = p->next; }

24 After creating a a is_null(n) a Pt a (n)is_null(n) a Pt a (n)Re n (n)is_null(n) alloced(n) Predicates: Pt a, Rea a, is_null, alloced Relations: next

25 After creating b a is_null(n) a Pt a (n)is_null(n) alloced(n) a Pt a (n)Re n (n)is_null(n) alloced(n) a is_null(n) a Pt a (n)is_null(n) alloced(n) a Pt a (n)Re n (n)is_null(n) alloced(n) a is_null(n) a Pt a (n)is_null(n) alloced(n) a Pt a (n)Re n (n)is_null(n) alloced(n) b is_null(n) b Pt a (n)is_null(n) alloced(n) b Pt a (n)Re n (n)is_null(n) alloced(n) b is_null(n) b Pt a (n)is_null(n) alloced(n) b Pt a (n)Re n (n)is_null(n) alloced(n) b is_null(n) b Pt a (n)is_null(n) alloced(n) b Pt a (n)Re n (n)is_null(n) alloced(n)

26 After creating c [ Picture 27 abstract heaps here ] Problem: abstraction scales exponentially with number of independent data structures.

27 Independent analyses Suppose we do a Cartesian product of 3 independent analyses for a,b,c. a is_null(n) a Pt a (n)is_null(n) a Pt a (n)Re n (n)is_null(n) alloced(n) b is_null(n) b Pt a (n)is_null(n) b Pt a (n)Re n (n)is_null(n) alloced(n) c is_null(n) c Pt a (n)is_null(n) c Pt a (n)Re n (n)is_null(n) alloced(n) ^^ How do we know we can decompose the analysis in this way and prove the property? – –What if some correlations are needed between the analyses? For non-heap properties, one good answer is to compute interpolants.

28 Abstraction from interpolants Interpolants contain inductive invariants after unrolling loops 3 times. Interpolant after creating c: main(){ node *a = create_list(); node *b = create_list(); node *c = create_list(); node *p = * ? x : * ? b : c while(p){ assert(alloced(p)); p = p->next; } ( a 0 ) alloced(a) ) ^ ( b 0 ) alloced(b) ) ^ ( c 0 ) alloced(c) ) 8 x. (x 0 ^ alloced(x) ) alloced(next(x)) ^

29 Shape of the interpolant Invariant says that allocated cells closed under next relation Notice also the size of this formula is linear in the number of lists, not exponential as is the set of shape graphs. ( a 0 ) alloced(a) ) ^ ( b 0 ) alloced(b) ) ^ ( c 0 ) alloced(c) ) 8 x. (x 0 ^ alloced(x) ) alloced(next(x)) ^ abcabc null alloced next

30 Suggests decomposition Each of these analyses proves one conjunct of the invariant. ( a 0 ) alloced(a) ) ^ ( b 0 ) alloced(a) ) ^ ( c 0 ) alloced(a) ) 8 x. (x 0 ^ alloced(x) ) alloced(next(x)) ^ Predicates Canonical abstract domains Relations a = 0, alloced(n) b = 0, alloced(n) c = 0, alloced(n) n = 0, alloced(n) next

31 Conclusion Interpolants and invariant generation –Computing interpolants from proofs allows us to generalize from special cases such as loop-free unwindings –Interpolation can extract relevant facts from proofs of these special cases –Must avoid divergence Quantified invariants –Needed for programs that manipulating arrays or heaps –FO equality prover modified to produce local proofs (hence interpolants) Complete for universal invariants –Can be used to construct invariants of simple array- and list-manipulating programs, using partial axiomatization of FO(TC) Language stratification prevents divergence –Might be used as a relevance heuristic for shape analysis, IPA

32 Expressiveness hierarchy CanonicalHeapAbstractions IndexedPredicateAbstraction PredicateAbstraction 8 FO(TC) QF Parameterized Abstract Domain InterpolantLanguage Expressiveness 8 FO

33 Interpolants for sequences Let A 1...A n be a sequence of formulas A sequence A 0...A n is an interpolant for A 1...A n when –A 0 = True –A i -1 ^ A i ) A i, for i = 1..n –A n = False –and finally, A i 2 L (A 1...A i ) \ L (A i+1...A n ) A1A1 A2A2 A3A3 AnAn... A' 1 A' 2 A' 3 A n-1... TrueFalse )))) In other words, the interpolant is a structured refutation of A 1...A n

34 Need for Reachability This condition needed to prove memory safety (no use after free). Cannot be expressed in FO –We need some predicate identifying a closed set of nodes that is allocated We require a theory of reachability (in effect, transitive closure)... node *a = create_list(); while(a){ assert(alloc(a)); a = a->next; }... invariant: 8 x (rea(next,a,x) ^ x nil ! alloc(x)) Can we build an interpolating prover for full FOL than that handles reachability, and avoids divergence?

35 Partially Axiomatizing FO(TC) Axioms of the theory of arrays (with select and store) 8 (A, I, V) (select(update(A,I,V), I) = V 8 (A,I,J,V) (I J ! select(update(A,I,V), J) = select(A,J)) Axioms for reachability (rea) 8 (L,E,X) (rea(L,select(L,E),X) ! rea(L,E,X)) 8 (L,E) rea(L,E,E) [ if e->link reaches x then e reaches x] 8 (L,E,X) (rea(L,E,X) ! E = X _ rea(L,select(L,E),X)) [ if e reaches x then e = x or e->link reaches x] etc... Since FO(TC) is incomplete, these axioms must be incomplete


Download ppt "Quantified Invariant Generation using an Interpolating Saturation Prover Ken McMillan Cadence Research Labs TexPoint fonts used in EMF: A A A A A."

Similar presentations


Ads by Google