Download PDF Download PDF

ECOOP, Date: 2019/07/15 - 2019/07/19, Location: London

Publication date: 2019-07-10
Volume: 134 Pages: 19:1 - 19:58
ISSN: 978-3-95977-111-5
Publisher: Dagstuhl LIPIcs; Dagstuhl, Germany

33rd European Conference on Object-Oriented Programming (ECOOP 2019)

Author:

Hamin, Jafar
Jacobs, bart

Keywords:

46 Information and computing sciences

Abstract:

One common approach for verifying safety properties of multithreaded programs is assigning appropriate permissions, such as ownership of a heap location, and obligations, such as an obligation to send a message on a channel, to each thread and making sure that each thread only performs the actions for which it has permissions and it also fulfills all of its obligations before it terminates. Although permissions can be transferred through synchronizations from a sender thread, where for example a message is sent or a condition variable is notified, to a receiver thread, where that message or that notification is received, in existing approaches obligations can only be transferred when a thread is forked. In this paper we introduce two mechanisms, one for channels and the other for condition variables, that allow obligations, along with permissions, to be transferred from the sender to the receiver, while ensuring that there is no state where the transferred obligations are lost, i.e. where they are discharged from the sender thread but not loaded onto the receiver thread yet. We show how these mechanisms can be used to modularly verify deadlock-freedom of a number of interesting programs, such as some variations of client-server programs, fair readers-writers locks, and dining philosophers, which cannot be modularly verified without such transfer. We also encoded the proposed separation logic-based proof rules in the VeriFast program verifier and succeeded in verifying the mentioned programs.