verification of blockchains and smart contracts
play

Verification of blockchains and smart contracts Formal Methods - PowerPoint PPT Presentation

Verification of blockchains and smart contracts Formal Methods Update, 2018 BITS Pilani Goa Madhavan Mukund Chennai Mathematical Institute http:/ /www.cmi.ac.in/~madhavan Outline Introduction to blockchains Smart contracts


  1. Verification of blockchains and 
 smart contracts Formal Methods Update, 2018 BITS Pilani Goa Madhavan Mukund 
 Chennai Mathematical Institute http:/ /www.cmi.ac.in/~madhavan

  2. Outline Introduction to blockchains Smart contracts Verification issues

  3. Introduction to blockchains

  4. Banks and ledgers Record of all transactions Maintained by a trusted authority Each entry is validated Compute net balance etc

  5. Public ledgers Ledgers are private Can we maintain a public ledger? Eliminate trusted authority

  6. Challenges Integrity of individual transactions Consensus on overall set of transactions

  7. A solution Maintain a distributed ledger Duplication prevents tampering Cryptography for authentication

  8. A solution A physical ledger has pages Distributed version has blocks of data These blocks are linked together Blockchain!

  9. Blocks Each block is a collection of transactions Each block points to parent block

  10. Hash function Compute random The quick brown summary of input fox jumps over the lazy dog. “Impossible” to invert Collisions rare Different inputs 0d7006cd055e94cf produce 614587e1d2ae0c8e different outputs

  11. Blockchain integrity parent hash(parent) Each block has a hash(my hash of the transactions) transactions it Transactions contains Each block parent includes a hash hash(parent) hash(my of parent block transactions) Transactions

  12. Public key cryptography Each person P has The quick brown a pUblic key U and fox jumps over the lazy dog. a pRivate key R U U and R are 0d7006cd055e94cf inverses 614587e1d2ae0c8e To encrypt text t R for P to read, The quick brown send U(t) fox jumps over R(U(t)) = t the lazy dog.

  13. Digital signatures U and R are Madhavan Mukund inverses R R(U(t)) = t Also, 
 0d7006cd055e94cf U(R(t)) = t !! 614587e1d2ae0c8e Sign using R U Recipient can Madhavan Mukund verify using U

  14. Transactions Who writes the transactions in the blockchain? Transaction No centralised From A authority To B Transactions are Amount created by originator

  15. Transactions A digitally signs Cannot repudiate later Transaction From A A uses B’ s public Dig Sig of A key to create a To B challenge only B Challenge can solve Amount Only B can claim this amount

  16. Transactions Where’ s the money? Transaction No centralised From A authority to certify Dig Sig of A the money A holds To B Must refer to Challenge previous Amount transactions where Sources of A acquired the funds money

  17. Adding blocks Peer to peer network Transactions broadcast to all nodes Periodically, collect transactions into a block and add to chain

  18. Mining blocks Process of adding a block is called mining Mining is decentralised Blockchain may fork Integrity of the ledger is lost!

  19. Distributed consensus All nodes should agree on blocks Elegant solution due to Satoshi Nakomoto Emerging distributed consensus

  20. Proof of work Adding a node requires solving a hashing problem Brute force search Calibrated so that it takes about 10 minutes to solve on current hardware

  21. Proof of work After mining a block, miner broadcasts Other miners abandon efforts, accept this block, move to next block Serial numbers

  22. Blockchain forking Two miners may succeed in parallel Variants of chain may propagate Mismatch between your chain and new block — keep longer chain Eventually converges

  23. Incentive for mining Why spend computational effort to mine? Transaction fees and other incentives Bitcoin!

  24. Smart contracts

  25. Transactions A uses B’ s public key to create a Transaction challenge only B From A can solve Dig Sig of A To B Only B can claim Challenge this amount Amount How is this done?

  26. Challenge scripts Simple stack based programming language Locking script DUP HASH160 <PubKHash> EQUALVERIFY CHECKSIG <PubKHash> — hash of B’ s public key Unlocking script <Sig> <PubK> <Sig> <PubK> — signature, public key of B

  27. Challenge scripts … Concatenate and execute on stack VM <Sig> <PubK> DUP HASH160 <PubKHash> EQUALVERIFY CHECKSIG

  28. More general scripts Multisignature N public keys recorded in the script M must provide signatures to unlock Conditional Three partners, majority must sign Lawyer can access with one partner

  29. Scripting language Bitcoin Scripting language is intentionally Turing incomplete Conditionals, but no loops Ethereum Richer language, Turing complete High level language Solidity that compiles down to stack language

  30. Smart contracts A script that executes when a transaction is invoked Ethereum contracts can express objects with encapsulated state Example: DAO Decentralized Autonomous Organisation

  31. Verification

  32. Blockchain convergence Proof of work — eventually convergent solution to distributed consensus Ensures blockchain does not fork Need majority collusion to fabricate alternate chain Would allow double spending

  33. Vulnerability Hijacking Bitcoin: routing attacks on cryptocurrencies, Apostolaki et al, IEEE Security and Privacy 2017 
 Structure of Internet is not uniform Concentration of switches, routers make partitioning possible Can also delay packets

  34. Model checking Modeling and Verification of the Bitcoin Protocol, Chaudhury et al, MARS Workshop 2015 
 UPPAAl model of Bitcoin network Investigate forking, double spending Model checking of a very small scale model, 4 nodes, 1 malicious

  35. Smart contract verification Online Detection of Effectively Callback Free Objects with Applications to Smart Contracts, Grossman et al, POPL 2018 Decentralized Autonomous Organisation DAO bug stole $150 million dollars Reentrant code (callbacks) Automatic verification of effectively callback free objects

  36. DAO Object Dao Map <Object,int> credit 
 int balance Invariant 
 (sum o: credit[o]) = balance Method 
 Method 
 withdrawAll(Object o) deposit(Object o, 
 int amount) if (credit[o] > 0) 
 this.balance -= 
 credit[o] += amount 
 credit[o] 
 balance += amount o.pay(credit[o]) 
 credit[o] = 0

  37. DAO attack Method 
 Object Attacker withdrawAll(Object o) Object Dao 
 if (credit[o] > 0) 
 bool stop = false 
 this.balance -= 
 int balance credit[o] 
 o.pay(credit[o]) 
 Method pay(int profit) credit[o] = 0 this.balance += 
 profit Method 
 if (!stop) deposit(Object o, 
 int amount) stop = true 
 Dao. 
 credit[o] += amount 
 withdrawAll(this) 
 balance += amount stop = false

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