generating a family of byzantine fault tolerant protocol
play

Generating a Family of Byzantine- Fault-Tolerant Protocol - PowerPoint PPT Presentation

Generating a Family of Byzantine- Fault-Tolerant Protocol Implementations Using a Meta- Model Architecture Graham Kirby, Alan Dearle & Stuart Norcross School of Computer Science, University of St Andrews A Finite State Machine WADS 2007


  1. Generating a Family of Byzantine- Fault-Tolerant Protocol Implementations Using a Meta- Model Architecture Graham Kirby, Alan Dearle & Stuart Norcross School of Computer Science, University of St Andrews

  2. A Finite State Machine WADS 2007 2/18

  3. Problem • Apply a FSM formulation to an algorithm whose generality precludes its expression as a single state machine – algorithm is characterised as a family of related state machines • each corresponding to particular values of some parameters to the general algorithm • Family members: – differ in their individual states and transitions – share a common structure dictated by the general algorithm WADS 2007 3/18

  4. Motivating Example • Distributed update algorithm – each data item replicated on a set of n servers (4 for basic Byzantine-fault-tolerance) – servers agree global ordering of updates • potentially concurrent • symmetric algorithm: no server is special WADS 2007 4/18

  5. Approach • Designed single generic algorithm – quorum-based • ‘enough’ servers must agree to each update – parameterised by replication factor n – about 500 lines pseudo-code • Developed FSM model for selected replication factor ( n =4) – 33 states • 5 boolean variables, 2 integers ranging 1..n WADS 2007 5/18

  6. FSM for Replication Factor 4 WADS 2007 6/18

  7. Did the FSM Help? • No strong correlation between code and state machine – algorithm is generic – FSM is specific to replication factor • states in FSM correspond to message counts • so can’t construct single FSM for algorithm • Wish to unify FSM and algorithm – solution: define meta-model WADS 2007 7/18

  8. Generation Scheme WADS 2007 8/18

  9. State Transitions WADS 2007 9/18

  10. FSM Generation: All States WADS 2007 10/18

  11. FSM Generation: Transitions WADS 2007 11/18

  12. Pruning Unreachable States WADS 2007 12/18

  13. Combining Equivalent States WADS 2007 13/18

  14. Final FSM Representation WADS 2007 14/18

  15. Example Generated State state: T/2/F/0/F/F/F Have received initial ‘put’ from client. Have not voted since another update has already been voted for. Have received 2 votes and no commits. Have not sent a ‘commit’ since neither the vote threshold (3) nor the external commit threshold (2) has been reached. May not choose since another ongoing update has been voted for. Have not chosen this update since another ongoing update has been chosen. Waiting for 1 further vote (including local vote if any) before sending ‘commit’. Waiting for 2 further external commits to finish. Transitions: message: VOTE action: send vote message action: send commit message transition to: T/3/T/0/T/F/F message: COMMIT transition to: T/2/F/1/F/F/F message: FREE action: send vote message action: send commit message action: send not free message transition to: T/2/T/0/T/T/T WADS 2007 15/18

  16. Example Generated FSM WADS 2007 16/18

  17. Example Generated Code void receiveVote() { handler for ‘vote’ message switch (getState()) { switch on current state case (F-0-F-0-F-F-F) : { setState(F-1-F-0-F-F-F); } variable representing state case (F-0-F-0-F-F-T) : { setState(F-1-F-0-F-F-F); } ... action case (T-1-T-1-F-T-T) : { sendCommit(); setState(T-2-T-1-T-T-T); } state transition ... } WADS 2007 17/18

  18. Conclusions • Generative meta-model approach – allows closer coupling of generic algorithm and specific FSMs – lead to discovery of several errors in original algorithm – may be applicable to other protocols for critical infrastructure • Links – ASA project • asa.cs.st-andrews.ac.uk/ – Algorithm details • asa.cs.st-andrews.ac.uk/metamodel/ WADS 2007 18/18

  19. Meta-Model generateTransitionOnVote(State s) { initialise state variables from s increment votes_received if total votes >= threshold( r ): if ! vote_sent : if could_choose : set has_chosen record action: send not free message record action: send vote message set vote_sent unset could_choose , if commit_sent : record action: send commit message set commit_sent derive new state s1 from state variables record transition s->s1 in data structure } WADS 2007 19/18

  20. Generation Times WADS 2007 20/18

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