Practical Byzantine Fault Tolerance and Proactive Recovery

Download: abstract.

“Practical Byzantine Fault Tolerance and Proactive Recovery” by Miguel Castro and Barbara Liskov. ACM Transactions on Computer Systems (TOCS), vol. 20, no. 4, Nov. 2002, pp. 398-461.

Abstract

Our growing reliance on online services accessible on the Internet demands highly available systems that provide correct service without interruptions. Software bugs, operator mistakes, and malicious attacks are a major cause of service interruptions and they can cause arbitrary behavior, that is, Byzantine faults. This article describes a new replication algorithm, BFT, that can be used to build highly available systems that tolerate Byzantine faults. BFT can be used in practice to implement real services: it performs well, it is safe in asynchronous environments such as the Internet, it incorporates mechanisms to defend against Byzantine-faulty clients, and it recovers replicas proactively. The recovery mechanism allows the algorithm to tolerate any number of faults over the lifetime of the system provided fewer than 1/3 of the replicas become faulty within a small window of vulnerability. BFT has been implemented as a generic program library with a simple interface. We used the library to implement the first Byzantine-fault-tolerant NFS file system, BFS. The BFT library and BFS perform well because the library incorporates several important optimizations, the most important of which is the use of symmetric cryptography to authenticate messages. The performance results show that BFS performs 2%; faster to 24%; slower than production implementations of the NFS protocol that are not replicated. This supports our claim that the BFT library can be used to build practical systems that tolerate Byzantine faults.

Download: abstract.

BibTeX entry:

@article{castro02practical,
   author = {Miguel Castro and Barbara Liskov},
   title = {Practical Byzantine Fault Tolerance and Proactive Recovery},
   journal = {ACM Transactions on Computer Systems (TOCS)},
   volume = {20},
   number = {4},
   pages = {398--461},
   month = nov,
   year = {2002}
}

Back to PMG BFT publications .

Programming Methodology Group