syntax guided synthesis rajeev alur
play

Syntax-Guided Synthesis Rajeev Alur University of Pennsylvania 1 - PowerPoint PPT Presentation

Syntax-Guided Synthesis Rajeev Alur University of Pennsylvania 1 Program Verification Program P Specification S Verifier Proof of correctness or Witness of a bug 2 Classical Program Synthesis Specification S High Level WHAT


  1. Syntax-Guided Synthesis Rajeev Alur University of Pennsylvania 1

  2. Program Verification Program P Specification S Verifier Proof of correctness or Witness of a bug 2

  3. Classical Program Synthesis Specification S High Level “WHAT” Synthesizer Program P Low Level “HOW” 3

  4. Syntax-Guided Synthesis www.sygus.org Syntactic restrictions R Specification S on the given by space of programs logical constraints Synthesizer Program P 4

  5. Outline  Motivating Examples  Formalization of SyGuS  Solving SyGuS  SyGuS Competition and Conclusions 5

  6. Syntax-Guided Program Synthesis www.sygus.org  Find a program snippet P such that 1. P is in a set E of programs (syntactic constraint) 2. P satisfies logical specification j (semantic constraint)  Core computational problem with many applications Programming by examples Automatic program repair Program superoptimization Template-guided invariant generation Autograding for programming assignments Synthesis of FSA-attack-resilient cryptographic circuits 6

  7. Programming By Examples  Find a program P for bit-vector transformation such that 1. P is constructed from standard bit-vector operations |, &, ~, +, - , <<, >>, 0, 1, … 2. P is consistent with the following input-output examples 00101  00100 01010  01000 10110  10000  Resets rightmost substring of contiguous 1’s to 0’s  Desired solution: x & ( 1 + (x | (x-1) ) 7

  8. FlashFill: Programming by Examples Ref: Gulwani (POPL 2011) Input Output (425)-706-7709 425-706-7709 510.220.5586 510-220-5586 1 425 235 7654 425-235-7654 425 745-8139 425-745-8139 Wired : Excel is now a lot easier for people who aren’t spreadsheet - and chart- making pros. The application’s new Flash Fill feature recognizes patterns, and will offer auto-complete options for your data. For example, if you have a column of first names and a column of last names, and want to create a new column of initials, you’ll only need to type in the first few boxes before Excel recognizes what you’re doing and lets you press Enter to complete the rest of the column. 8

  9. Superoptimizing Compiler Given a program P, find a “shorter” equivalent program P’ multiply (x[1,n], y[1,n]) { x1 = x[1,n/2]; x2 = x[n/2+1, n]; y1 = y[1, n/2]; y2 = y[n/2+1, n]; a = x1 * y1; b = shift( x1 * y2, n/2); Replace with equivalent code c = shift( x2 * y1, n/2); with only 3 multiplications d = shift( x2 * y2, n); return ( a + b + c + d) } 9

  10. Side Channel Attacks on Cryptographic Circuits PPRM1 AES S-box implementation [Morioka & Satoh, in CHES 2002] 1. The only non-linear function in Advanced Encryption Standard algorithm 2. Vulnerable to Fault Sensitivity Analysis attack 10

  11. Side Channel Attacks on Cryptographic Circuits Time at which O 0 changes is different when In2=0 vs In2=1 Consequence: Timing-based attack can reveal secret input In2 11

  12. Countermeasure to Attack FSA attack resilient ckt: All input-to-output paths have same delays Manually hand-crafted solution [Schaumont et al, DATE 2014] Verification problem: Is attack resilient ckt equivalent to original? 12

  13. Synthesis of Attack Countermeasures Given a ckt C, automatically synthesize a ckt C’ such that 1. C’ is functionally equivalent to C [sematic constraint] 2. All input-to- output paths in C’ have same length [syntactic constraint] Existing EDA tools cannot handle this synthesis problem 13

  14. Autograder: Feedback on Programming Homeworks Singh et al (PLDI 2013) Student Solution P + Reference Solution R + Error Model Find min no of edits to P so as to make it equivalent to R 14

  15. Automatic Invariant Generation SelectionSort(int A[],n) { Invariant: ? i := 0; while(i < n −1) { v := i; j := i + 1; while (j < n) { if (A[j]<A[v]) Invariant: ? v := j ; j++; } swap(A[i], A[v]); i++; } return A; } post: ∀ k : 0 ≤k<n ⇒ A[k]≤A[k + 1] 15

  16. Template-based Automatic Invariant Generation SelectionSort(int A[],n) { Invariant: i :=0; ∀ k1,k2. ? ∧ ? while(i < n −1) { v := i; j := i + 1; Invariant: while (j < n) { ? ∧ ? ∧ if (A[j]<A[v]) ( ∀ k1,k2. ? ∧ ?) ∧ ( ∀ k. ? ∧ ?) v := j ; j++; } swap(A[i], A[v]); i++; } Constraint solver return A; } post: ∀ k : 0 ≤k<n ⇒ A[k]≤A[k + 1] 16

  17. Template-based Automatic Invariant Generation SelectionSort(int A[],n) { Invariant: i :=0; ∀ k1,k2. 0≤k1<k2<n ∧ while(i < n −1) { k1<i ⇒ A[k1]≤A[k2] v := i; j := i + 1; while (j < n) { Invariant: if (A[j]<A[v]) i<j ∧ v := j ; i≤v<n ∧ j++; ( ∀ k1,k2. 0≤k1<k2<n ∧ } k1<i ⇒ A[k1]≤A[k2 ]) ∧ swap(A[i], A[v]); ( ∀ k. i1≤ k<j ∧ i++; k≥0 ⇒ A[v] ≤A[k ]) } return A; } post: ∀ k : 0 ≤k<n ⇒ A[k]≤A[k + 1] 17

  18. Syntax-Guided Program Synthesis  Find a program snippet P such that 1. P is in a set E of programs (syntactic constraint) 2. P satisfies logical specification j (semantic constraint)  Core computational problem with many applications Programming by examples Automatic program repair Program superoptimization Template-guided invariant generation Autograding for programming assignments Synthesis of FSA-attack-resilient cryptographic circuits Can we formalize and standardize this computational problem? Inspiration: Success of SMT solvers in formal verification 18

  19. SMT: Satisfiability Modulo Theories  Computational problem: Find a satisfying assignment to a formula Boolean + Int types, logical connectives, arithmetic operators Bit-vectors + bit-manipulation operations in C Boolean + Int types, logical/arithmetic ops + Uninterpreted functs  “Modulo Theory”: Interpretation for symbols is fixed Can use specialized algorithms (e.g. for arithmetic constraints) Little Engines of Proof SAT; Linear arithmetic; Congruence closure 19

  20. SMT Success Story … CBMC SAGE VCC Spec# SMT-LIB Standardized Interchange Format (smt-lib.org) Problem classification + Benchmark repositories LIA, LIA_UF, LRA, QF_LIA, … + Annual Competition (smt-competition.org) … Yices MathSAT5 Z3 CVC4 20

  21. Syntax-Guided Synthesis (SyGuS) Problem  Fix a background theory T: fixes types and operations  Function to be synthesized: name f along with its type General case: multiple functions to be synthesized  Inputs to SyGuS problem: Specification j Typed formula using symbols in T + symbol f Set E of expressions given by a context-free grammar Set of candidate expressions that use symbols in T  Computational problem: Output e in E such that j [f/e] is valid (in theory T) Syntax- guided synthesis; FMCAD’13 with Bodik, Juniwal, Martin, Raghothaman, Seshia, Singh, Solar-Lezama, Torlak, Udupa 21

  22. SyGuS Example  Theory QF-LIA (Quantifier-free linear integer arithmetic) Types: Integers and Booleans Logical connectives, Conditionals, and Linear arithmetic Quantifier-free formulas  Function to be synthesized f (int x, int y) : int  Specification: (x ≤ f(x,y)) & (y ≤ f(x,y))  Candidate Implementations: Linear expressions LinExp := x | y | Const | LinExp + LinExp | LinExp - LinExp  No solution exists 22

  23. SyGuS Example  Theory QF-LIA  Function to be synthesized: f (int x, int y) : int  Specification: (x ≤ f(x,y)) & (y ≤ f(x,y))  Candidate Implementations: Conditional expressions without + Term := x | y | Const | If-Then-Else (Cond, Term, Term) Cond := Term <= Term | Cond & Cond | ~ Cond | (Cond)  Possible solution: If-Then-Else (x ≤ y, y, x) 23

  24. From SMT-LIB to SYNTH-LIB www.sygus.org (set-logic LIA) (synth-fun max2 ((x Int) (y Int)) Int ((Start Int (x y 0 1 (+ Start Start) (- Start Start) (ite StartBool Start Start))) (StartBool Bool ((and StartBool StartBool) (or StartBool StartBool) (not StartBool) (<= Start Start)))) (declare-var x Int) (declare-var y Int) (constraint (>= (max2 x y) x)) (constraint (>= (max2 x y) y)) (constraint (or (= x (max2 x y)) (= y (max2 x y)))) (check-synth) 24

  25. Let Expressions and Auxiliary Variables  Synthesized expression maps directly to a straight-line program  Grammar derivations correspond to expression parse-trees  How to capture common subexpressions (which map to aux vars) ?  Solution: Allow “let” expressions  Candidate-expressions for a function f(int x, int y) : int T := (let [z = U] in z + z) U := x | y | Const | (U) | U + U | U - U 25

  26. Invariant Generation as SyGuS  Goal: Find inductive loop invariant automatically bool x, y, z  Function to be synthesized int a, b, c Inv (bool x, bool z, int a, int b) : bool while( Test ) { loop-body  Compile loop-body into a logical predicate …. } Body(x,y,z,a,b,c, x’,y’,z’,a’,b’,c’)  Specification: ( Inv & Body & Test’) ⇒ Inv ’ & Pre ⇒ Inv & (Inv & ~Test ⇒ Post)  Template for set of candidate invariants Term := a | b | Const | Term + Term | If-Then-Else (Cond, Term, Term) Cond := x | z | Cond & Cond | ~ Cond | (Cond) 26

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