VeriFix: Verifying Your Fix Towards An Atomicity Violation
Zhuang Li, Qiuping Yi, Jeff Huang
TL;DR
VeriFix addresses the challenging problem of verifying atomicity-violation fixes in concurrent programs by turning fix verification into safety-property checking and encoding both program behavior and the intended atomicity (and potential deadlocks) as symbolic constraints solved by an SMT solver. It introduces a constraint-based, parallel path-exploration framework that systematically enumerates schedule+input combinations across the whole input and schedule space, generating concrete executions to verify the fix or reveal insufficient synchronizations and deadlocks. The key contributions include a formal fix-verification formulation, a detailed constraint encoding for one trace (including atomicity and deadlock constraints), and a parallel exploration algorithm with path-prefix guidance, demonstrated to outperform state-of-the-art approaches on real-world C/C++ programs and in conjunction with APR tools. VeriFix thus provides a practical, scalable method to validate concurrency fixes, enabling reliable repair workflows and safer concurrent software deployment.
Abstract
Atomicity violation is one of the most serious types of bugs in concurrent programs. Synchronizations are commonly used to enforce atomicity. However, it is very challenging to place synchronizations correctly and sufficiently due to complex thread interactions and large input space. This paper presents \textsf{VeriFix}, a new approach for verifying atomicity violation fixes. Given a buggy trace that exposes an atomicity violation and a corresponding fix, % in the form of locks, \textsf{VeriFix} effectively verifies if the fix introduces sufficient synchronizations to repair the atomicity violation without introducing new deadlocks. The key idea is that \textsf{VeriFix} transforms the fix verification problem into a property verification problem, in which both the observed atomicity violation and potential deadlocks are encoded as a safety property, and both the inputs and schedules are encoded as symbolic constraints. By reasoning the conjoined constraints with an SMT solver, \textsf{VeriFix} systematically explores all reachable paths %from the whole schedule and input space and verifies if there exists a concrete \textit{schedule+input} combination to manifest the intended atomicity or any new deadlocks. We have implemented and evaluated \verifix\ on a collection of real-world C/C++ programs. The result shows that \textsf{VeriFix} significantly outperforms the state-of-the-art.
