Home / Publications / CAV'14




Automatic Atomicity Verification for Clients of Concurrent Data Structures

CAV'14

Mohsen Lesani, Todd Millstein, Jens Palsberg



 

Abstract. Mainstream programming languages offer libraries of concurrent data structures. Each method call on a concurrent data structure appears to take effect atomically. However, clients of such data structures often require stronger guarantees. For instance, a histogram class that is implemented using a concurrent map may require a method to atomically increment a histogram bar, but its implementation requires multiple calls to the map and hence is not atomic by default.  Indeed, prior work has shown that atomicity errors in clients of concurrent data structures occur frequently in production code.
We present an automatic and modular verification technique for clients of concurrent data structures. We define a novel sufficient condition for atomicity of clients called condensability. We present a tool called Snowflake that generates proof obligations for condensability of Java client methods and discharges them using an off-the-shelf SMT solver. We applied Snowflake to an existing suite of client methods from several open-source applications. It successfully verified 76.9% of the atomic methods without any change and verified the rest of them with small code refactoring and/or annotations.

 




[Paper]
[Technical Report]
[Source Code]
[Presentation]