manifest sharing with session types
play

Manifest Sharing with Session Types Stephanie Balzer and Frank - PowerPoint PPT Presentation

Manifest Sharing with Session Types Stephanie Balzer and Frank Pfenning Work in Progress! Department of Computer Science Carnegie Mellon University Theory and Applications of Behavioural Types Dagstuhl Seminar 17051 February 2, 2017 1 / 21


  1. Manifest Sharing with Session Types Stephanie Balzer and Frank Pfenning Work in Progress! Department of Computer Science Carnegie Mellon University Theory and Applications of Behavioural Types Dagstuhl Seminar 17051 February 2, 2017 1 / 21

  2. Background Session types rooted in logic [CP’10,CPT’16,W’12] Curry-Howard correspondence Linear propositions as session types Sequent proofs as message-passing concurrent programs Proof reduction as communication Many threads and contributors Lu´ ıs Caires, Bernardo Toninho, Jorge P´ erez, Dennis Griffith, Henry DeYoung, Limin Jia, Hanna Gommerstadt, Stephanie Balzer, Max Willsey, Co¸ sku Acay, Miguel Silva, M´ ario Florido Implementations Concurrent C0 (Demo Thursday!) SILL (Sessions in Intuitionistic Linear Logic) 2 / 21

  3. SILL: the Judgments Interpreting the linear logical judgment and proofs D A 1 , . . . , A n ⊢ C x 1 : A 1 , . . . , x n : A n ⊢ P :: ( z : C ) Cut as parallel composition (spawn P which provides along fresh channel x ) ∆ ⊢ P x :: ( x : A ) ∆ ′ , x : A ⊢ Q x :: ( z : C ) cut ∆ , ∆ ′ ⊢ x ← P x ; Q x :: ( z : C ) Identity as forward ( x is implemented by y ) y : A ⊢ x ← y :: ( x : A ) id 3 / 21

  4. SILL: the Operational Reading Every channel has a provider and a client Session is tied to provider’s thread of control Provider and client perform complementary actions From the provider perspective: A ⊸ B receive channel of type A , continue as B A ⊗ B send channel of type A , continue as B 1 send ‘ end ’ and terminate � { ℓ i : A i } i ∈ I receive label ℓ k , continue as A k ⊕{ ℓ i : A i } i ∈ I send label ℓ k , continue as A k ∀ x : τ. B ( x ) receive value v of type τ , continue as B ( v ) ∃ x : τ. B ( x ) send value v of type τ , continue as B ( v ) 4 / 21

  5. SILL: Examples Equirecursive types (must be contractive) list A = ⊕{ nil : 1 , cons : A ⊗ list A } queue A = � { enq : A ⊸ queue A , deq : ⊕{ none : 1 , some : A ⊗ queue A } } Recursive processes implement these interfaces 5 / 21

  6. Sharing Programming experience in Concurrent C0 and SILL Many fun and interesting concurrent programs Limitations on shared resources Database, input/output, event loop Wadler’s challenge Functional programming: recursive types recover the full expressive power of the untyped λ -calculus Concurrent programming: how can we recover the full expressive power of the untyped π -calculus? Note: SILL satisfies session-fidelity (preservation) and deadlock-freedom (global progress) 6 / 21

  7. Of Course! ! A represents persistence/replication in linear logic Operationally [CP’10] c : ! A send fresh persistent channel u along c then provide A along u persistently u : A receive fresh linear channel y then provide fresh instance of A along y This copying semantics is appropriate for pure functional programming, but just supports “read only” sharing 7 / 21

  8. Decomposing ! A ! A actually represents two interactions Decompose ! A = ↓ S L ↑ S L A Two layers of propositions/types (as in LNL [Benton’94], Adjoint Logic [Reed’09]) ↑ S Shared ::= L A L [ | A S → B S | A S × B S | · · · ] A S ↓ S Linear A L ::= L A S | A L ⊸ B L | A L ⊗ B L | 1 | · · · Each modality now is one interaction Shifts form an adjunction ↓↑ forms a comonad, ↑↓ a strong monad 8 / 21

  9. Sharing: Independence Principle Shared channels may not depend on linear channels Providing shared channel Γ S ⊢ P :: ( x S : A S ) Providing linear channel Γ S ; ∆ L ⊢ P :: ( x L : A L ) Shared channels are typed as if persistent Can be used arbitrarily often Proof reduction semantics is still copying 9 / 21

  10. Sharing: Logical Rules Omitting shared identity and cut Logically, exactly the same as for persistence Modal rules, based on independence principle Γ , ↑ S L A L ; ∆ , A L ⊢ C L Γ ; · ⊢ A L ↑ S ↑ S L R L L Γ ⊢ ↑ S Γ , ↑ S L A L ; ∆ ⊢ C L L A L Γ ⊢ A S Γ , A S ; ∆ ⊢ C L ↓ S ↓ S L R L L Γ ; · ⊢ ↓ S Γ ; ∆ ↓ S L A S L A S ⊢ C L 10 / 21

  11. Sharing: Process Expressions From provider perspective x S : ↑ S L A L accept connection request along x S continue along linear x 0 x i : ↓ S L A S detach from linear client x i continue along shared x S Matching constructs provider s : ↑ S x ← accept s ; P x L A L client s : ↑ S x ← acquire s ; Q x L A L provider x : ↓ S s ← detach x ; P s L A L client x : ↓ S s ← release x ; Q s L A L 11 / 21

  12. Example: Producer/Consumer Type Earlier purely linear type queue A = � { enq : A ⊸ queue A , deq : ⊕{ none : 1 , some : A ⊗ queue A } } Modify type to make sharing manifest squeue A = ↑ S L � { enq : A ⊸ ↓ S L squeue A , deq : ⊕{ none : ↓ S L squeue A , some : A ⊗ ↓ S L squeue A } } Require types to be equi-synchronizing Release (if there is one) is at the same type as acquire On any continuation path from ↑ S L A to ↓ S L B we have B = ↑ S L A . Otherwise, dynamic type checking would be required 12 / 21

  13. Example: Producer/Consume Code squeue A = ↑ S L � { enq : A ⊸ ↓ S L squeue A , deq : ⊕{ none : ↓ S L squeue A , some : A ⊗ ↓ S L squeue A } } elem : squeue A <- A, squeue A #s <- elem #x #t = c <- accept #s case c of | enq => #y <- recv c d <- acquire #t % begin critical region d.enq ; send d #y #t <- release d % end critical region #s <- detach c #s <- elem #x #t % recurse | deq => c.some ; send c #x #s <- detach c #s <- #t % implement #s by #t 13 / 21

  14. Example: Producer/Consume Code squeue A = ↑ S L � { enq : A ⊸ ↓ S L squeue A , deq : ⊕{ none : ↓ S L squeue A , some : A ⊗ ↓ S L squeue A } } empty : squeue A #s <- empty = c <- accept #s case c of | enq => #y <- recv c #s <- detach c #e <- empty #s <- elem #y #e % continue as elem #y | deq => c.none #s <- detach c #s <- empty % continue as empty 14 / 21

  15. Typing Rules ↑ S L A L : accept (provider) and acquire (client) Γ ; · ⊢ P x :: ( x : A L ) ↑ S L R Γ ⊢ x ← accept s ; P x :: ( s : ↑ S L A L ) Γ , s : ↑ S L A L ; ∆ , x : A L ⊢ Q x :: ( z : C L ) ↑ S L L Γ , s : ↑ S L A L ; ∆ ⊢ x ← acquire s ; Q x :: ( z : C L ) 15 / 21

  16. Typing Rules ↓ S L A S : detach (provider) and release (client) Γ ⊢ P s :: ( s : A S ) ↓ S L R Γ ; · ⊢ s ← detach x ; P s :: ( x : ↓ S L A S ) Γ , s : A S ; ∆ ⊢ Q s :: ( z : C L ) ↓ S L L Γ ; ∆ , x : ↓ S L A S ⊢ s ← release x ; Q s :: ( z : C L ) 16 / 21

  17. Operational Semantics Asynchronous message passing Specify with multiset rewriting over predicates proc( x i , P ) P provides along linear channel x , generation i proc( x S , P ) P provides along shared channel x S unavail( x S ) no process currently providing x S msg( x i , M ) message P is sent along x i Processes cycle through linear ( x i ) and shared ( x S ) phases Think of i as index into message buffer for x Think of S as lock on shared process 17 / 21

  18. Properties Session fidelity (type preservation) Need either equi-synchronous types or runtime checking Proof is somewhat complex due to forwarding “Progress” Failure of progress only due to deadlock in acquiring shared channels Proofs are in progress as we speak . . . 18 / 21

  19. Interpreting the Asynchronous π -Calculus A π -calculus channel may have multiple endpoints Represent a π channel by a buffer process Version 1: single-element buffer of shared type U U = ↑ S L ⊕{ none : � { U ⊸ ↓ S L U , loop : ↓ S L U } , some : � { U ⊗ ↓ S L U , loop : ↓ S L U } } Version 2: multi-element buffer (like shared queue) Use coin flip to model nondeterminism in buffer Coin flip implementable with a simple shared channel Process is represented by a worker process of type 1 Replication is modeled by recursion Conjecture: constitute asynchronous bisimulation (of some form . . . ) 19 / 21

  20. Semantics in the Asynchronous π -Calculus Use continuations channels as part of every interaction Represent a SILL channel by a pair of π -channels ( a i , a S ) a i is i th continuation of linear channel a a S is associated shared channel Conjecture: constitute bisimulation (of some form . . . ) 20 / 21

  21. Summary and Questions Model sharing by decomposing ! A into ↓ S L ↑ S L A Typing rules just as in LNL [Benton’94] Depart from the Curry-Howard isomorphism in operational semantics Computation interleaves proof construction and proof reduction Deadlock if proof cannot be constructed Is this a general approach to multi-party session types? Expressive enough to interpret the asynchronous π -calculus Examples include dining philosophers, producer/consumer, database Elegant criteria for freedom from deadlock? 21 / 21

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