Interference Freedom
   HOME

TheInfoList



OR:

In
computer science Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to Applied science, practical discipli ...
, interference freedom is a technique for proving partial correctness of concurrent programs with shared variables.
Hoare logic Hoare logic (also known as Floyd–Hoare logic or Hoare rules) is a formal system with a set of logical rules for reasoning rigorously about the correctness of computer programs. It was proposed in 1969 by the British computer scientist and log ...
had been introduced earlier to prove correctness of sequential programs. In her PhD thesis (and papers arising from it ) under advisor
David Gries David Gries (born April 26, 1939 in Flushing, Queens, New York) is an American computer scientist at Cornell University, United States mainly known for his books ''The Science of Programming'' (1981) and ''A Logical Approach to Discrete Math'' ( ...
,
Susan Owicki Susan Owicki is a computer scientist, Association for Computing Machinery (ACM) Fellow, and one of the founding members of the Systers mailing list for women in computing. She changed careers in the early 2000s and became a licensed marriage a ...
extended this work to apply to concurrent programs. Concurrent programming had been in use since the mid 1960s for coding operating systems as sets of concurrent processes (see, in particular, Dijkstra. ), but there was no formal mechanism for proving correctness. Reasoning about interleaved execution sequences of the individual processes was difficult, was error prone, and didn't scale up. Interference freedom applies to ''proofs'' instead of execution sequences; one shows that execution of one process cannot interfere with the correctness proof of another process. A range of intricate concurrent programs have been proved correct using interference freedom, and interference freedom provides the basis for much of the ensuing work on developing concurrent programs with shared variables and proving them correct. The Owicki-Gries paper ''An axiomatic proof technique for parallel programs I'' received the 1977 ACM Award for best paper in programming languages and systems. Note. Lamport presents a similar idea. He writes, "After writing the initial version of this paper, we learned of the recent work of Owicki." His paper has not received as much attention as Owicki-Gries, perhaps because it used flow charts instead of the text of programming constructs like the if statement and while loop. Lamport was generalizing Floyd's method while Owicki-Gries was generalizing Hoare's method. Essentially all later work in this area uses text and not flow charts. Another difference is mentioned below in the section on Auxiliary variables.


Dijkstra's Principle of non-interference

Edsger W. Dijkstra Edsger Wybe Dijkstra ( ; ; 11 May 1930 – 6 August 2002) was a Dutch computer scientist, programmer, software engineer, systems scientist, and science essayist. He received the 1972 Turing Award for fundamental contributions to developing progra ...
introduced the ''principle of non-interference'' in EWD 117, "Programming Considered as a Human Activity", written about 1965. This principle states that: The correctness of the whole can be established by taking into account only the exterior specifications (abbreviated ''specs'' throughout) of the parts, and not their interior construction. Dijkstra outlined the general steps in using this principle: # Give a complete spec of each individual part. # Check that the total problem is solved when program parts meeting their specs are available. # Construct the individual parts to satisfy their specs, but independent of one another and the context in which they will be used. He gave several examples of this principle outside of programming. But its use in programming is a main concern. For example, a programmer using a method (subroutine, function, etc.) should rely only on its spec to determine what it does and how to call it, and ''never'' on its implementation. Program specs are written in
Hoare logic Hoare logic (also known as Floyd–Hoare logic or Hoare rules) is a formal system with a set of logical rules for reasoning rigorously about the correctness of computer programs. It was proposed in 1969 by the British computer scientist and log ...
, introduced by Sir Tony Hoare, as exemplified in the specs of processes and :

Meaning: If execution of in a state in which precondition is true terminates, then upon termination, postcondition is true. Now consider
concurrent programming Concurrent means happening at the same time. Concurrency, concurrent, or concurrence may refer to: Law * Concurrence, in jurisprudence, the need to prove both ''actus reus'' and ''mens rea'' * Concurring opinion (also called a "concurrence"), a ...
with shared variables. The specs of two (or more) processes and are given in terms of their pre- and post-conditions, and we assume that implementations of and are given that satisfy their specs. But when executing their implementations in parallel, since they share variables, a
race condition A race condition or race hazard is the condition of an electronics, software, or other system where the system's substantive behavior is dependent on the sequence or timing of other uncontrollable events. It becomes a bug when one or more of t ...
can occur; one process changes a shared variable to a value that is not anticipated in the proof of the other process, so the other process does not work as intended. Thus, Dijkstra's Principle of non-interference is violated. In her PhD thesis of 1975 in
Computer Science Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to Applied science, practical discipli ...
,
Cornell University Cornell University is a private statutory land-grant research university based in Ithaca, New York. It is a member of the Ivy League. Founded in 1865 by Ezra Cornell and Andrew Dickson White, Cornell was founded with the intention to teach an ...
, written under advisor
David Gries David Gries (born April 26, 1939 in Flushing, Queens, New York) is an American computer scientist at Cornell University, United States mainly known for his books ''The Science of Programming'' (1981) and ''A Logical Approach to Discrete Math'' ( ...
,
Susan Owicki Susan Owicki is a computer scientist, Association for Computing Machinery (ACM) Fellow, and one of the founding members of the Systers mailing list for women in computing. She changed careers in the early 2000s and became a licensed marriage a ...
developed the notion of ''interference freedom''. If processes and satisfy interference freedom, then their parallel execution will work as planned. Dijkstra called this work the first significant step toward applying Hoare logic to concurrent processes. To simplify discussions, we restrict attention to only two concurrent processes, although Owicki-Gries allows more.


Interference freedom in terms of proof outlines

Owicki-Gries introduced the ''proof outline'' for a Hoare triple . It contains all details needed for a proof of correctness of using the axioms and inference rules of
Hoare logic Hoare logic (also known as Floyd–Hoare logic or Hoare rules) is a formal system with a set of logical rules for reasoning rigorously about the correctness of computer programs. It was proposed in 1969 by the British computer scientist and log ...
. (This work uses the assignment statement , and statements, and the loop.) Hoare alluded to proof outlines in his early work; for interference freedom, it had to be formalized. A proof outline for begins with precondition and ends with postcondition . Two assertions within braces appearing next to each other indicates that the first must imply the second. Example: A proof outline for where is:











must hold, where stands for with every occurrence of replaced by . (In this example, and are basic statements, like an assignment statement, skip, or an await statement.) Each statement in the proof outline is preceded by a precondition and followed by a postcondition , and must be provable using some axiom or inference rule of Hoare logic. Thus, the proof outline contains all the information necessary to prove that is correct. Now consider two processes and executing in parallel, and their specs:

Proving that they work suitably in parallel will require restricting them as follows. Each expression in or may refer to at most one variable that can be changed by the other process while is being evaluated, and may refer to at most once. A similar restriction holds for assignment statements . With this convention, the only indivisible action need be the memory reference. For example, suppose process references variable while changes . The value receives for must be the value before or after changes , and not some spurious in-between value. Definition of Interference-free The important innovation of Owicki-Gries was to define what it means for a statement not to interfere with the ''proof'' of . If execution of cannot falsify any assertion given in the proof outline of , then that proof still holds even in the face of concurrent execution of and . Definition. Statement with precondition does not interfere with the proof of if two conditions hold: (1)
(2) Let be any statement within but not within an statement (see later section). Then . Read the last Hoare triple like this: If the state is such that both and can be executed, then execution of is not going to falsify . Definition. Proof outlines for and are interference-free if the following holds. Let be an or assignment statement (that does not appear in an ) of process . Then does not interfere with the proof of . Similarly for of process and .


Statements cobegin and await

Two statements were introduced to deal with concurrency. Execution of the statement executes and in parallel. It terminates when both and have terminated. Execution of the statement is delayed until condition is true. Then, statement is executed as an indivisible action—evaluation of is part of that indivisible action. If two processes are waiting for the same condition , when it becomes true, one of them continues waiting while the other proceeds. The statement cannot be implemented efficiently and is not proposed to be inserted into the programming language. Rather it provides a means of representing several standard primitives such as semaphores—first express the semaphore operations as , then apply the techniques described here. Inference rules for and are:




Auxiliary variables

An ''auxiliary variable'' does not occur in the program but is introduced in the proof of correctness to make reasoning simpler —or even possible. Auxiliary variables are used only in assignments to auxiliary variables, so their introduction neither alters the program for any input nor affects the values of program variables. Typically, they are used either as program counters or to record histories of a computation. Definition. Let be a set of variables that appear in only in assignments , where is in . Then is an ''auxiliary variable set'' for . Since a set of auxiliary variables are used only in assignments to variables in , deleting all assignments to them doesn't change the program's correctness, and we have the inference rule elimination: is an auxiliary variable set for . The variables in do not occur in or . is obtained from by deleting all assignments to the variables in . Instead of using auxiliary variables, one can introduce a program counter into the proof system, but that adds complexity to the proof system. Note: Apt discusses the Owicki-Gries logic in the context of ''recursive'' assertions, that is, ''effectively computable'' assertions. He proves that all the assertions in proof outlines can be recursive, but that this is no longer the case if auxiliary variables are used only as program counters and not to record histories of computation. Lamport, in his similar work, uses assertions about token positions instead of auxiliary variables, where a token on an edge of a flow chart is akin to a program counter. There is no notion of a history variable. This indicates that Owicki-Gries and Lamport's approach are not equivalent when restricted to recursive assertions.


Deadlock and termination

Owicki-Gries deals mainly with partial correctness: means: If executed in a state in which is true terminates, then is true of the state upon termination. However, Owicki-Gries also gives some practical techniques that use information obtained from a partial correctness proof to derive other correctness properties, including freedom from deadlock, program termination, and mutual exclusion. A program is in
deadlock In concurrent computing, deadlock is any situation in which no member of some group of entities can proceed because each waits for another member, including itself, to take action, such as sending a message or, more commonly, releasing a lo ...
if all processes that have not terminated are executing statements and none can proceed because their conditions are false. Owicki-Gries provides conditions under which deadlock cannot occur. Owicki-Gries presents an inference rule for total correctness of the while loop. It uses a bound function that decreases with each iteration and is positive as long as the loop condition is true. Apt ''et al'' show that this new inference rule does not satisfy interference freedom. The fact that the bound function is positive as long as the loop condition is true was not included in an interference test. They show two ways to rectify this mistake.


A simple example

Consider the statement: // The proof outline for it:





//






Proving that does not interfere with the proof of requires proving two Hoare triples: (1) (2) The precondition of (1) reduces to and the precondition of (2) reduces to . From this, it is easy to see that these Hoare triples hold. Two similar Hoare triples are required to show that does not interfere with the proof of . Suppose is changed from the statement to the assignment . Then the proof outline does not satisfy the requirements, because the assignment contains two occurrences of shared variable . Indeed, the value of after execution of the statement could be 2 or 3. Suppose is changed to the statement , so it is the same as . After execution of , should be 4. To prove this, because the two assignments are the same, two auxiliary variables are needed, one to indicate whether has been executed; the other, whether has been executed. We leave the change in the proof outline to the reader.


Examples of formally proved concurrent programs

A. Findpos. Write a program that finds the first positive element of an array (if there is one). One process checks all array elements at even positions of the array and terminates when it finds a positive value or when none is found. Similarly, the other process checks array elements at odd positions of the array. Thus, this example deals with while loops. It also has no statements. This example comes from Barry K. Rosen. The solution in Owicki-Gries, complete with program, proof outline, and discussion of interference freedom, takes less than two pages. Interference freedom is quite easy to check, since there is only one shared variable. In contrast, Rosen's article uses as the single, running example in this 24 page paper. An outline of both processes in a general environment:




//





B. Bounded buffer consumer/producer problem. A producer process generates values and puts them into bounded buffer of size ; a consumer process removes them. They proceed at variable rates. The producer must wait if buffer is full; the consumer must wait if buffer is empty. In Owicki-Gries, a solution in a general environment is shown; it is then embedded in a program that copies an array into an array . This example exhibits a principle to reduce interference checks to a minimum: Place as much as possible in an assertion that is invariantly true everywhere in both processes. In this case the assertion is the definition of the bounded buffer and bounds on variables that indicate how many values have been added to and removed from the buffer. Besides buffer itself, two shared variables record the number of values added to the buffer and the number removed from the buffer. C. Implementing semaphores. In his article on the THE multiprogramming system, Dijkstra introduces the semaphore as a synchronization primitive: is an integer variable that can be referenced in only two ways, shown below; each is an indivisible operation: 1. : Decrease by 1. If now , suspend the process and put it on a list of suspended processes associated with . 2. : Increase by 1. If now , remove one of the processes from the list of suspended processes associated with , so its dynamic progress is again permissible. The implementation of and using statements is:
















Here, is an array of processes that are waiting because they have been suspended; initially, for every process . One could change the implementation to always waken the longest suspended process. D. On-the-fly garbage collection. At the 1975
Summer School Marktoberdorf The International Summer School Marktoberdorf is an annual two-week summer school for international computer science and mathematics postgraduate students and other young researchers, held annually since 1970 in Marktoberdorf, near Munich in southe ...
, Dijkstra discussed an on-the-fly garbage collector as an exercise in understanding parallelism. The data structure used in a conventional implementation of LISP is a directed graph in which each node has at most two outgoing edges, either of which may be missing: an outgoing left edge and an outgoing right edge. All nodes of the graph must be reachable from a known root. Changing a node may result in unreachable nodes, which can no longer be used and are called ''garbage''. An on-the-fly garbage collector has two processes: the program itself and a garbage collector, whose task is to identify garbage nodes and put them on a free list so that they can be used again. Gries felt that interference freedom could be used to prove the on-the-fly garbage collector correct. With help from Dijkstra and Hoare, he was able to give a presentation at the end of the Summer School, which resulted in an article in CACM. E. Verification of readers/writers solution with semaphores. Courtois et al use semaphores to give two versions of the readers/writers problem, without proof. Write operations block both reads and writes, but read operations can occur in parallel. Owicki provides a proof. F.
Peterson's algorithm Peterson's algorithm (or Peterson's solution) is a concurrent programming algorithm for mutual exclusion that allows two or more processes to share a single-use resource without conflict, using only shared memory for communication. It was formulated ...
, a solution to the 2-process mutual exclusion problem, was published by Peterson in a 2-page article.
Schneider Schneider may refer to: Hospital * Schneider Children's Medical Center of Israel People * Schneider (surname) Companies and organizations * G. Schneider & Sohn, a Bavarian brewery company * Schneider Rundfunkwerke AG, the former owner of th ...
and Andrews provide a correctness proof.


Dependencies on interference freedom

The image below, by Ilya Sergey, depicts the flow of ideas that have been implemented in logics that deal with concurrency. At the root is interference freedom. The file contains references. Below, we summarize the major advances. * Rely-Guarantee. 1981. Interference freedom is not compositional. Cliff Jones recovers compositionality by abstracting interference into two new predicates in a spec: a rely-condition records what interference a thread must be able to tolerate and a guarantee-condition sets an upper bound on the interference that the thread can inflict on its sibling threads. Xu ''et al'' observe that Rely-Guarantee is a reformulation of interference freedom; revealing the connection between these two methods, they say, offers a deep understanding about verification of shared variable programs. * CSL. 2004.
Separation logic In computer science, separation logic is an extension of Hoare logic, a way of reasoning about programs. It was developed by John C. Reynolds, Peter O'Hearn, Samin Ishtiaq and Hongseok Yang, drawing upon early work by Rod Burstall. The assertion l ...
supports local reasoning, whereby specifications and proofs of a program component mention only the portion of memory used by the component. Concurrent separation logic (CSL) was originally proposed by
Peter O'Hearn Peter William O'Hearn One or more of the preceding sentences incorporates text from the royalsociety.org website where: (born 13 July 1963 in Halifax, Nova Scotia), formerly a research scientist at Meta, is a Distinguished Engineer at Lacewor ...
, We quote from: "the Owicki-Gries method involves explicit checking of non-interference between program components, while our system rules out interference in an implicit way, by the nature of the way that proofs are constructed." * Deriving concurrent programs. 2005-2007. Feijen and van Gasteren show how to use Owicki-Gries to design concurrent programs, but the lack of a theory of progress means that designs are driven only by safety requirements. Dongol, Goldson, Mooij, and Hayes have extended this work to include a "logic of progress" based on Chandy and Misra's language
Unity Unity may refer to: Buildings * Unity Building, Oregon, Illinois, US; a historic building * Unity Building (Chicago), Illinois, US; a skyscraper * Unity Buildings, Liverpool, UK; two buildings in England * Unity Chapel, Wyoming, Wisconsin, US; a h ...
, molded to fit a sequential programming model. Dongel and Goldson describe their logic of progress. Goldson and Dongol show how this logic is used to improve the process of designing programs, using
Dekker's algorithm Dekker's algorithm is the first known correct solution to the mutual exclusion problem in concurrent programming where processes only communicate via shared memory. The solution is attributed to Dutch mathematician Th. J. Dekker by Edsger W. Dijks ...
for two processes as an example. Dongol and Mooij present more techniques for deriving programs, using Peterson's mutual exclusion algorithm as one example. Dongol and Mooij show how to reduce the calculational overhead in formal proofs and derivations and derive Dekker's algorithm again, leading to some new and simpler variants of the algorithm. Mooij studies calculational rules for Unity's ''leads-to'' relation. Finally, Dongol and Hayes provide a theoretical basis for and prove soundness of the process logic. * OGRA. 2015. Lahav and Vafeiadis strengthen the interference freedom check to produce (we quote from the abstract) "OGRA, a program logic that is sound for reasoning about programs in the release-acquire fragment of the C11 memory model." They provide several examples of its use, including an implementation of the RCU synchronization primitives. *
Quantum programming Quantum programming is the process of assembling sequences of instructions, called quantum circuits, that are capable of running on a quantum computer. Quantum programming languages help express quantum algorithms using high-level constructs. T ...
. 2108. Ying ''et al'' extend interference freedom to quantum programming. Difficulties they face include intertwined nondeterminism: nondeterminism involving quantum measurements and nondeterminism introduced by parallelism occurring at the same time. The authors formally verify Bravyi-Gosset-König's parallel quantum algorithm solving a linear algebra problem, giving, they say, for the first time an unconditional proof of a computational quantum advantage. *POG. 2020. Raad ''et al'' present POG (Persistent Owicki-Gries), the first program logic for reasoning about non-volatile memory technologies, specifically the Intel-x86.


Texts that discuss interference freedom

* ''On A Method of Multiprogramming'', 1999. Van Gasteren and Feijen discuss the formal development of concurrent programs entirely on the idea of interference freedom. * ''On Current Programming'', 1997. Schneider uses interference freedom as the main tool in developing and proving concurrent programs. A connection to temporal logic is given, so arbitrary safety and liveness properties can be proven. Control predicates obviate the need for auxiliary variables for reasoning about program counters. * ''Verification of Sequential and Concurrent Programs'', 1991, 2009. This first text to cover verification of structured concurrent programs, by Apt ''et al'', has gone through several editions over several decades. * ''Concurrency Verification: Introduction to Compositional and Non-Compositional Methods'', 2112. De Roever ''et al'' provide a systematic and comprehensive introduction to compositional and non-compositional proof methods for the state-based verification of concurrent programs


Implementations of interference freedom

* 1999: Nipkow and Nieto present the first formalization of interference freedom and its compositional version, the rely-guarantee method, in a theorem prover: Isabelle/HOL. * 2005: Ábrahám's PhD thesis provides a way to prove multithreaded Java programs correct in three steps: (1) Annotate the program to produce a proof outline, (2) Use their tool ''Verger'' to automatically create verification conditions, and (3) Use the theorem prover PVS to prove the verification conditions interactively. * 2017: Denissen reports on an implementation of Owicki-Gries in the "verification ready" programming language
Dafny Dafny is an imperative and functional compiled language that compiles to other programming languages, such as C#, Java, JavaScript, Go and Python. It supports formal specification through preconditions, postconditions, loop invariants, loop v ...
. Denissen remarks on the ease of use of Dafny and his extension to it, making it extremely suitable when teaching students about interference freedom. Its simplicity and intuitiveness outweighs the drawback of being non-compositional. He lists some twenty institutions that teach interference freedom. * 2017: Amani ''et al'' combine the approaches of Hoare-Parallel, a formalisation of Owicki-Gries in Isabelle/HOL for a simple while-language, and SIMPL, a generic language embedded in Isabelle/HOL, to allow formal reasoning on C programs. * 2022: Dalvandi ''et al'' introduce the first deductive verification environment in Isabelle/HOL for C11-like weak memory programs, building on Nipkow and Nieto's encoding of Owicki–Gries in the Isabelle theorem prover. * 2022: This webpage describes the Civl verifier for concurrent programs and gives instructions for installing it on your computer. It is built on top of Boogie, a verifier for sequential programs. Kragl et al describe how interference freedom is achieved in Civl using their new specification idiom, ''yield invariants''. One can also use specs in the rely-guarantee style. Civl offers a combination of linear typing and logic that allows economical and local reasoning about disjointness (like separation logic). Civl is the first system that offers refinement reasoning on structured concurrent programs. * 2022. Esen and Rümmer developed TRICERA, an automated open-source verification tool for C programs. It is based on the concept of constrained
Horn clause In mathematical logic and logic programming, a Horn clause is a logical formula of a particular rule-like form which gives it useful properties for use in logic programming, formal specification, and model theory. Horn clauses are named for the log ...
s, and it handles programs operating on the heap using a theory of heaps. A web interface to try it online is available. To handle concurrency, TRICERA uses a variant of the Owicki-Gries proof rules, with explicit variables to added to represent time and clocks.


References

{{Reflist Formal methods Program logic Logic in computer science