hoare logic and model checking
play

Hoare Logic and Model Checking It is clear that proofs can be long - PowerPoint PPT Presentation

Mechanised Program Verification Hoare Logic and Model Checking It is clear that proofs can be long and boring even if programs being verified are quite simple. Kasper Svendsen University of Cambridge In this lecture we will sketch the


  1. Mechanised Program Verification Hoare Logic and Model Checking It is clear that proofs can be long and boring even if programs being verified are quite simple. Kasper Svendsen University of Cambridge In this lecture we will sketch the architecture of a simple automated program verifier and justify it using the rules of Hoare logic. CST Part II – 2016/17 Our goal is automate the routine bits of proofs in Hoare logic. Acknowledgement: slides heavily based on previous versions by Mike Gordon and Alan Mycroft 1 Mechanisation Mechanisation Unfortunately, logicians have shown that it is impossible in principle to design a decision procedure to decide automatically the The standard approach to this will be described in the course truth or falsehood of an arbitrary mathematical statement. • ideas very old (JC King’s 1969 CMU PhD, Stanford verifier in This does not mean that one cannot have procedures that will 1970s) prove many useful theorems: • used by program verifiers (e.g. Gypsy and SPARK verifier) • the non-existence of a general decision procedure merely • provides a verification front end to di ff erent provers (see Why shows that one cannot hope to prove everything automatically system) • in practice, it is quite possible to build a system that will mechanise the boring and routine aspects of verification 2 3

  2. Architecture of a verifier Architecture of a verifier Specification to be proved Specification to be proved human expert human expert Annotated specification Annotated specification VC generator VC generator Set of logic statements (VCs) Set of logic statements (VCs) theorem prover theorem prover Simplified set of VCs Simplified set of VCs human expert human expert End of proof End of proof 4 4 VC generator Using a verifier The three steps in proving { P } C { Q } with a verifier The VC generator takes as input an annotated program along with the desired specification. 1. The program C is annotated by inserting assertions expressing conditions that are meant to hold whenever From these inputs it generates a set of verification conditions execution reaches the given annotation (VCs) expressed in first-order logic. 2. A set of logical statements called verification conditions is These VCs have the property that if they hold then the original then generated from the annotated program and desired program satisfies the desired specification. specification 3. A theorem prover attempts to prove as many of the Since the VCs are expressed in first-order logic we can use standard verification conditions it can, leaving the rest to the user FOL theorem provers to discharge VCs. 5 6

  3. Using a verifier Example Before diving into the details, lets look at an example. Verifiers are not a silver bullet! We will illustrate the process with the following example • inserting appropriate annotations is tricky and requires a good { > } understanding of how the program works R := X ; Q := 0; while Y  R do • the verification conditions left over from step 3 may bear little resembles to annotations and specification written by the user ( R := R � Y ; Q := Q + 1) { X = R + Y · Q ^ R < Y } 7 8 Example Example Step 1 is to annotated the program with two assertions, φ 1 and φ 2 Step 2 will generate the following four VCs for our example { > } 1. > ) ( X = X ^ 0 = 0) R := X ; Q := 0; { R = X ^ Q = 0 } � φ 1 2. ( R = X ^ Q = 0) ) ( X = R + ( Y · Q )) while Y  R do { X = R + Y · Q } � φ 2 3. ( X = R +( Y · Q )) ^ Y  R ) ) ( X = ( R � Y )+( Y · ( Q +1))) ( R := R � Y ; Q := Q + 1) 4. ( X = R +( Y · Q )) ^ ¬ ( Y  R ) ) ( X = R +( Y · Q ) ^ R < Y ) { X = R + Y · Q ^ R < Y } Notice that these are statements of arithmetic; the constructs of The annotations φ 1 and φ 2 state conditions which are intended to our programming language have been ’compiled away’ hold whenever control reaches them Step 3 uses a standard theorem prover to automatically discharge Control reaches φ 1 once and reaches φ 2 each time the loop body is as many VCs as possible and let the user prove the rest manually executed; φ 2 should thus be a loop invariant 9 10

  4. Annotation of Commands Backwards-reasoning proof rules An annotated command is a command with extra assertions ` P ) Q ` { P } C 1 { R } ` { R } C 2 { Q } embedded within it ` { P } skip { Q } ` { P } C 1 ; C 2 { Q } A command is properly annotated if assertions have been ` P ) Q [ E / V ] ` { P } C { Q [ E / V ] } inserted at the following places ` { P } V := E { Q } ` { P } C ; V := E { Q } • before C2 in C1;C2 if C2 is not an assignment command ` { I ^ B } C { I } ` I ^ ¬ B ) Q ` P ) I • after the word DO in WHILE commands ` { P } while B do C { Q } The inserted assertions should express the conditions one expects ` { P ^ B } C 1 { Q } ` { P ^ ¬ B } C 2 { Q } to hold whenever control reaches the assertion ` { P } if B then C 1 else C 2 { Q } 11 12 Annotations of Specifications Generating VCs A properly annotated specification is a specification { P } C { Q } where C is a properly annotated command Next we need to specify the VC generator Example: To be properly annotated, assertions should be at points l 1 and l 2 of the specification below We will specify it as a function VC ( P , C , Q ) that gives a set of { X = n } verification conditions for a properly annotated specification Y := 1; � l 1 The function will be defined by recursion on C and is easily while X = 0 do � l 2 implementable ( Y := Y ⇤ X ; X := X � 1) { X = 0 ^ Y = n ! } 13 14

  5. Backwards-reasoning proof rules Justification of VCs To prove soundness of the verifier the VC generator should have ` P ) Q ` { P } C 1 { R } ` { R } C 2 { Q } the property that if all the VCs generated for { P } C { Q } hold then the ` { P } C { Q } should be derivable in Hoare Logic ` { P } skip { Q } ` { P } C 1 ; C 2 { Q } ` P ) Q [ E / V ] ` { P } C { Q [ E / V ] } Formally, ` { P } V := E { Q } ` { P } C ; V := E { Q } 8 C , P , Q . ( 8 φ 2 VC ( P , C , Q ) . ` φ ) ) ( ` { P } C { Q } ) ` { I ^ B } C { I } ` I ^ ¬ B ) Q ` P ) I This will be proven by induction on C ` { P } while B do C { Q } • we have to show the result holds for all primitive commands ` { P ^ B } C 1 { Q } ` { P ^ ¬ B } C 2 { Q } • and that it holds for all compound commands C , assuming it ` { P } if B then C 1 else C 2 { Q } holds for the constituent commands of C 15 16 VC for assignments VC for assignments To justify the VC generated for assignment we need to show def VC ( P , V := E , Q ) = { P ) Q [ E / V ] } if ` P ) Q [ E / V ] then ` { P } V := E { Q } which holds by the backwards-reasoning assignment rule Example: The verification condition for This is one of the base-cases for the inductive proof of { X = 0 } X := X + 1 { X = 1 } ( 8 φ 2 VC ( P , C , Q ) . ` φ ) ) ( ` { P } C { Q } ) is X = 0 ) ( X + 1) = 1. 17 18

  6. VCs for conditionals VCs for conditionals def VC ( P , if S then C 1 else C 2 , Q ) = To justify the VC generated for assignment we need to show that VC ( P ^ S , C 1 , Q ) [ VC ( P ^ ¬ S , C 2 , Q ) ψ ( C 1 ) ^ ψ ( C 2 ) ) ψ ( if S then C 1 else C 2 ) where Example: The verification conditions for def ψ ( C ) = 8 P , Q . ( 8 φ 2 VC ( P , C , Q ) . ` φ ) ) ( ` { P } C { Q } ) { > } if X � Y then R := X else R := Y { R = max ( X , Y ) } This is one of the inductive cases of the proof and ψ ( C 1 ) and are ψ ( C 2 ) are the induction hypotheses • the VCs for { > ^ X � Y } R := X { R = max ( X , Y ) } , and • the VCs for { > ^ ¬ ( X � Y ) } R := Y { R = max ( X , Y ) } 19 20 VCs for conditions VCs for sequences Since we have restricted the domain of VC to be properly def Let ψ ( C ) = 8 P , Q . ( 8 φ 2 VC ( P , C , Q ) . ` φ ) ) ( ` { P } C { Q } ) annotated specifications, we can assume that sequences C 1 ; C 2 Assume ψ ( C 1 ), ψ ( C 2 ). To show that ψ ( if S then C 1 else C 2 ), • have either been annotated with an intermediate assertion, or assume 8 φ 2 VC ( P , if S then C 1 else C 2 , Q ) . ` φ • C 2 is an assignment We define VC for each of these two cases Since VC ( P , if S then C 1 else C 2 , Q ) it follows that 8 φ 2 VC ( P ^ S , C 1 , Q ) . ` φ and 8 φ 2 VC ( P ^ ¬ S , C 2 , Q ) . ` φ By the induction hypotheses, ψ ( C 1 ) and ψ ( C 2 ) it follows that def VC ( P , C 1 ; { R } C 2 , Q ) = VC ( P , C 1 , R ) [ VC ( R , C 2 , Q ) ` { P ^ S } C 1 { Q } and ` { P ^ ¬ S } C 2 { Q } def VC ( P , C ; V := E , Q ) = VC ( P , C , Q [ E / V ]) By the conditional rule, ` { P } if S then C 1 else C 2 { Q } 21 22

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend