| author | urbanc |
| Mon, 16 Apr 2012 15:16:02 +0000 | |
| changeset 343 | 1687f868dd5e |
| parent 342 | a40a35d1bc91 |
| child 344 | 27270b4bffba |
| permissions | -rwxr-xr-x |
| 262 | 1 |
(*<*) |
2 |
theory Paper |
|
| 301 | 3 |
imports "../CpsG" "../ExtGG" "~~/src/HOL/Library/LaTeXsugar" |
| 262 | 4 |
begin |
| 335 | 5 |
|
6 |
(* |
|
7 |
find_unused_assms CpsG |
|
8 |
find_unused_assms ExtGG |
|
9 |
find_unused_assms Moment |
|
10 |
find_unused_assms Precedence_ord |
|
11 |
find_unused_assms PrioG |
|
12 |
find_unused_assms PrioGDef |
|
13 |
*) |
|
| 336 | 14 |
|
| 266 | 15 |
ML {*
|
| 273 | 16 |
open Printer; |
| 272 | 17 |
show_question_marks_default := false; |
| 266 | 18 |
*} |
| 284 | 19 |
|
20 |
notation (latex output) |
|
21 |
Cons ("_::_" [78,77] 73) and
|
|
22 |
vt ("valid'_state") and
|
|
23 |
runing ("running") and
|
|
| 286 | 24 |
birthtime ("last'_set") and
|
| 284 | 25 |
If ("(\<^raw:\textrm{>if\<^raw:}> (_)/ \<^raw:\textrm{>then\<^raw:}> (_)/ \<^raw:\textrm{>else\<^raw:}> (_))" 10) and
|
| 286 | 26 |
Prc ("'(_, _')") and
|
| 287 | 27 |
holding ("holds") and
|
28 |
waiting ("waits") and
|
|
| 290 | 29 |
Th ("T") and
|
30 |
Cs ("C") and
|
|
| 287 | 31 |
readys ("ready") and
|
| 290 | 32 |
depend ("RAG") and
|
33 |
preced ("prec") and
|
|
34 |
cpreced ("cprec") and
|
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
35 |
dependents ("dependants") and
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
36 |
cp ("cprec") and
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
37 |
holdents ("resources") and
|
| 299 | 38 |
original_priority ("priority") and
|
| 284 | 39 |
DUMMY ("\<^raw:\mbox{$\_\!\_$}>")
|
| 325 | 40 |
|
41 |
abbreviation |
|
42 |
"detached s th \<equiv> cntP s th = cntV s th" |
|
| 262 | 43 |
(*>*) |
44 |
||
45 |
section {* Introduction *}
|
|
46 |
||
47 |
text {*
|
|
| 284 | 48 |
Many real-time systems need to support threads involving priorities and |
| 267 | 49 |
locking of resources. Locking of resources ensures mutual exclusion |
| 275 | 50 |
when accessing shared data or devices that cannot be |
| 284 | 51 |
preempted. Priorities allow scheduling of threads that need to |
| 275 | 52 |
finish their work within deadlines. Unfortunately, both features |
53 |
can interact in subtle ways leading to a problem, called |
|
| 284 | 54 |
\emph{Priority Inversion}. Suppose three threads having priorities
|
55 |
$H$(igh), $M$(edium) and $L$(ow). We would expect that the thread |
|
| 342 | 56 |
$H$ blocks any other thread with lower priority and the thread itself cannot |
57 |
be blocked indefinitely by any thread with lower priority. Alas, in a naive |
|
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
58 |
implementation of resource locking and priorities this property can |
| 275 | 59 |
be violated. Even worse, $H$ can be delayed indefinitely by |
| 284 | 60 |
threads with lower priorities. For this let $L$ be in the |
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
61 |
possession of a lock for a resource that $H$ also needs. $H$ must |
| 275 | 62 |
therefore wait for $L$ to exit the critical section and release this |
63 |
lock. The problem is that $L$ might in turn be blocked by any |
|
| 284 | 64 |
thread with priority $M$, and so $H$ sits there potentially waiting |
65 |
indefinitely. Since $H$ is blocked by threads with lower |
|
| 275 | 66 |
priorities, the problem is called Priority Inversion. It was first |
| 277 | 67 |
described in \cite{Lampson80} in the context of the
|
| 275 | 68 |
Mesa programming language designed for concurrent programming. |
| 265 | 69 |
|
| 273 | 70 |
If the problem of Priority Inversion is ignored, real-time systems |
| 267 | 71 |
can become unpredictable and resulting bugs can be hard to diagnose. |
72 |
The classic example where this happened is the software that |
|
| 284 | 73 |
controlled the Mars Pathfinder mission in 1997 \cite{Reeves98}.
|
74 |
Once the spacecraft landed, the software shut down at irregular |
|
75 |
intervals leading to loss of project time as normal operation of the |
|
76 |
craft could only resume the next day (the mission and data already |
|
77 |
collected were fortunately not lost, because of a clever system |
|
78 |
design). The reason for the shutdowns was that the scheduling |
|
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
79 |
software fell victim to Priority Inversion: a low priority thread |
| 284 | 80 |
locking a resource prevented a high priority thread from running in |
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
81 |
time, leading to a system reset. Once the problem was found, it was |
| 284 | 82 |
rectified by enabling the \emph{Priority Inheritance Protocol} (PIP)
|
83 |
\cite{Sha90}\footnote{Sha et al.~call it the \emph{Basic Priority
|
|
| 286 | 84 |
Inheritance Protocol} \cite{Sha90} and others sometimes also call it
|
85 |
\emph{Priority Boosting}.} in the scheduling software.
|
|
| 262 | 86 |
|
| 284 | 87 |
The idea behind PIP is to let the thread $L$ temporarily inherit |
| 286 | 88 |
the high priority from $H$ until $L$ leaves the critical section |
| 284 | 89 |
unlocking the resource. This solves the problem of $H$ having to |
90 |
wait indefinitely, because $L$ cannot be blocked by threads having |
|
91 |
priority $M$. While a few other solutions exist for the Priority |
|
92 |
Inversion problem, PIP is one that is widely deployed and |
|
93 |
implemented. This includes VxWorks (a proprietary real-time OS used |
|
94 |
in the Mars Pathfinder mission, in Boeing's 787 Dreamliner, Honda's |
|
95 |
ASIMO robot, etc.), but also the POSIX 1003.1c Standard realised for |
|
| 343 | 96 |
example in libraries for FreeBSD, Solaris and Linux. ({\bf ??? Is this True?})
|
| 274 | 97 |
|
| 284 | 98 |
One advantage of PIP is that increasing the priority of a thread |
| 275 | 99 |
can be dynamically calculated by the scheduler. This is in contrast |
| 277 | 100 |
to, for example, \emph{Priority Ceiling} \cite{Sha90}, another
|
101 |
solution to the Priority Inversion problem, which requires static |
|
| 284 | 102 |
analysis of the program in order to prevent Priority |
103 |
Inversion. However, there has also been strong criticism against |
|
104 |
PIP. For instance, PIP cannot prevent deadlocks when lock |
|
105 |
dependencies are circular, and also blocking times can be |
|
106 |
substantial (more than just the duration of a critical section). |
|
107 |
Though, most criticism against PIP centres around unreliable |
|
108 |
implementations and PIP being too complicated and too inefficient. |
|
109 |
For example, Yodaiken writes in \cite{Yodaiken02}:
|
|
| 274 | 110 |
|
111 |
\begin{quote}
|
|
112 |
\it{}``Priority inheritance is neither efficient nor reliable. Implementations
|
|
113 |
are either incomplete (and unreliable) or surprisingly complex and intrusive.'' |
|
114 |
\end{quote}
|
|
| 273 | 115 |
|
| 274 | 116 |
\noindent |
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
117 |
He suggests avoiding PIP altogether by not allowing critical |
| 286 | 118 |
sections to be preempted. Unfortunately, this solution does not |
| 304 | 119 |
help in real-time systems with hard deadlines for high-priority |
120 |
threads. |
|
| 278 | 121 |
|
| 286 | 122 |
In our opinion, there is clearly a need for investigating correct |
| 278 | 123 |
algorithms for PIP. A few specifications for PIP exist (in English) |
124 |
and also a few high-level descriptions of implementations (e.g.~in |
|
125 |
the textbook \cite[Section 5.6.5]{Vahalia96}), but they help little
|
|
| 332 | 126 |
with actual implementations. That this is a problem in practice is |
| 283 | 127 |
proved by an email from Baker, who wrote on 13 July 2009 on the Linux |
| 278 | 128 |
Kernel mailing list: |
| 274 | 129 |
|
130 |
\begin{quote}
|
|
| 275 | 131 |
\it{}``I observed in the kernel code (to my disgust), the Linux PIP
|
132 |
implementation is a nightmare: extremely heavy weight, involving |
|
133 |
maintenance of a full wait-for graph, and requiring updates for a |
|
134 |
range of events, including priority changes and interruptions of |
|
135 |
wait operations.'' |
|
| 274 | 136 |
\end{quote}
|
137 |
||
138 |
\noindent |
|
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
139 |
The criticism by Yodaiken, Baker and others suggests another look |
|
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
140 |
at PIP from a more abstract level (but still concrete enough |
|
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
141 |
to inform an implementation), and makes PIP a good candidate for a |
|
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
142 |
formal verification. An additional reason is that the original |
| 284 | 143 |
presentation of PIP~\cite{Sha90}, despite being informally
|
| 283 | 144 |
``proved'' correct, is actually \emph{flawed}.
|
145 |
||
146 |
Yodaiken \cite{Yodaiken02} points to a subtlety that had been
|
|
147 |
overlooked in the informal proof by Sha et al. They specify in |
|
| 284 | 148 |
\cite{Sha90} that after the thread (whose priority has been raised)
|
| 283 | 149 |
completes its critical section and releases the lock, it ``returns |
150 |
to its original priority level.'' This leads them to believe that an |
|
| 284 | 151 |
implementation of PIP is ``rather straightforward''~\cite{Sha90}.
|
152 |
Unfortunately, as Yodaiken points out, this behaviour is too |
|
153 |
simplistic. Consider the case where the low priority thread $L$ |
|
154 |
locks \emph{two} resources, and two high-priority threads $H$ and
|
|
| 300 | 155 |
$H'$ each wait for one of them. If $L$ releases one resource |
| 283 | 156 |
so that $H$, say, can proceed, then we still have Priority Inversion |
157 |
with $H'$ (which waits for the other resource). The correct |
|
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
158 |
behaviour for $L$ is to switch to the highest remaining priority of |
| 284 | 159 |
the threads that it blocks. The advantage of formalising the |
160 |
correctness of a high-level specification of PIP in a theorem prover |
|
161 |
is that such issues clearly show up and cannot be overlooked as in |
|
162 |
informal reasoning (since we have to analyse all possible behaviours |
|
| 300 | 163 |
of threads, i.e.~\emph{traces}, that could possibly happen).\medskip
|
| 274 | 164 |
|
| 300 | 165 |
\noindent |
| 301 | 166 |
{\bf Contributions:} There have been earlier formal investigations
|
| 304 | 167 |
into PIP \cite{Faria08,Jahier09,Wellings07}, but they employ model
|
168 |
checking techniques. This paper presents a formalised and |
|
169 |
mechanically checked proof for the correctness of PIP (to our |
|
| 341 | 170 |
knowledge the first one). |
171 |
In contrast to model checking, our |
|
| 304 | 172 |
formalisation provides insight into why PIP is correct and allows us |
| 310 | 173 |
to prove stronger properties that, as we will show, can inform an |
| 314 | 174 |
efficient implementation. For example, we found by ``playing'' with the formalisation |
| 304 | 175 |
that the choice of the next thread to take over a lock when a |
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
176 |
resource is released is irrelevant for PIP being correct---a fact |
| 342 | 177 |
that has not been mentioned in the literature. This is important |
178 |
for an efficient implementation, because we can give the lock to the |
|
179 |
thread with the highest priority so that it terminates more quickly. |
|
| 280 | 180 |
*} |
| 278 | 181 |
|
| 283 | 182 |
section {* Formal Model of the Priority Inheritance Protocol *}
|
| 267 | 183 |
|
| 280 | 184 |
text {*
|
| 286 | 185 |
The Priority Inheritance Protocol, short PIP, is a scheduling |
186 |
algorithm for a single-processor system.\footnote{We shall come back
|
|
| 342 | 187 |
later to the case of PIP on multi-processor systems.} |
188 |
Following good experience in earlier work \cite{Wang09},
|
|
189 |
our model of PIP is based on Paulson's inductive approach to protocol |
|
190 |
verification \cite{Paulson98}. In this approach a \emph{state} of a system is
|
|
191 |
given by a list of events that happened so far (with new events prepended to the list). |
|
192 |
\emph{Events} of PIP fall
|
|
| 290 | 193 |
into five categories defined as the datatype: |
| 283 | 194 |
|
195 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
| 284 | 196 |
\mbox{\begin{tabular}{r@ {\hspace{2mm}}c@ {\hspace{2mm}}l@ {\hspace{7mm}}l}
|
197 |
\isacommand{datatype} event
|
|
198 |
& @{text "="} & @{term "Create thread priority"}\\
|
|
199 |
& @{text "|"} & @{term "Exit thread"} \\
|
|
| 286 | 200 |
& @{text "|"} & @{term "Set thread priority"} & {\rm reset of the priority for} @{text thread}\\
|
| 284 | 201 |
& @{text "|"} & @{term "P thread cs"} & {\rm request of resource} @{text "cs"} {\rm by} @{text "thread"}\\
|
202 |
& @{text "|"} & @{term "V thread cs"} & {\rm release of resource} @{text "cs"} {\rm by} @{text "thread"}
|
|
203 |
\end{tabular}}
|
|
204 |
\end{isabelle}
|
|
205 |
||
206 |
\noindent |
|
| 286 | 207 |
whereby threads, priorities and (critical) resources are represented |
208 |
as natural numbers. The event @{term Set} models the situation that
|
|
209 |
a thread obtains a new priority given by the programmer or |
|
210 |
user (for example via the {\tt nice} utility under UNIX). As in Paulson's work, we
|
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
211 |
need to define functions that allow us to make some observations |
| 297 | 212 |
about states. One, called @{term threads}, calculates the set of
|
| 293 | 213 |
``live'' threads that we have seen so far: |
| 284 | 214 |
|
215 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
216 |
\mbox{\begin{tabular}{lcl}
|
|
217 |
@{thm (lhs) threads.simps(1)} & @{text "\<equiv>"} &
|
|
218 |
@{thm (rhs) threads.simps(1)}\\
|
|
219 |
@{thm (lhs) threads.simps(2)[where thread="th"]} & @{text "\<equiv>"} &
|
|
220 |
@{thm (rhs) threads.simps(2)[where thread="th"]}\\
|
|
221 |
@{thm (lhs) threads.simps(3)[where thread="th"]} & @{text "\<equiv>"} &
|
|
222 |
@{thm (rhs) threads.simps(3)[where thread="th"]}\\
|
|
223 |
@{term "threads (DUMMY#s)"} & @{text "\<equiv>"} & @{term "threads s"}\\
|
|
224 |
\end{tabular}}
|
|
| 283 | 225 |
\end{isabelle}
|
226 |
||
227 |
\noindent |
|
| 299 | 228 |
In this definition @{term "DUMMY # DUMMY"} stands for list-cons.
|
| 290 | 229 |
Another function calculates the priority for a thread @{text "th"}, which is
|
230 |
defined as |
|
| 284 | 231 |
|
232 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
233 |
\mbox{\begin{tabular}{lcl}
|
|
234 |
@{thm (lhs) original_priority.simps(1)[where thread="th"]} & @{text "\<equiv>"} &
|
|
235 |
@{thm (rhs) original_priority.simps(1)[where thread="th"]}\\
|
|
236 |
@{thm (lhs) original_priority.simps(2)[where thread="th" and thread'="th'"]} & @{text "\<equiv>"} &
|
|
237 |
@{thm (rhs) original_priority.simps(2)[where thread="th" and thread'="th'"]}\\
|
|
238 |
@{thm (lhs) original_priority.simps(3)[where thread="th" and thread'="th'"]} & @{text "\<equiv>"} &
|
|
239 |
@{thm (rhs) original_priority.simps(3)[where thread="th" and thread'="th'"]}\\
|
|
240 |
@{term "original_priority th (DUMMY#s)"} & @{text "\<equiv>"} & @{term "original_priority th s"}\\
|
|
241 |
\end{tabular}}
|
|
242 |
\end{isabelle}
|
|
243 |
||
244 |
\noindent |
|
245 |
In this definition we set @{text 0} as the default priority for
|
|
246 |
threads that have not (yet) been created. The last function we need |
|
| 285 | 247 |
calculates the ``time'', or index, at which time a process had its |
| 290 | 248 |
priority last set. |
| 284 | 249 |
|
250 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
251 |
\mbox{\begin{tabular}{lcl}
|
|
252 |
@{thm (lhs) birthtime.simps(1)[where thread="th"]} & @{text "\<equiv>"} &
|
|
253 |
@{thm (rhs) birthtime.simps(1)[where thread="th"]}\\
|
|
254 |
@{thm (lhs) birthtime.simps(2)[where thread="th" and thread'="th'"]} & @{text "\<equiv>"} &
|
|
255 |
@{thm (rhs) birthtime.simps(2)[where thread="th" and thread'="th'"]}\\
|
|
256 |
@{thm (lhs) birthtime.simps(3)[where thread="th" and thread'="th'"]} & @{text "\<equiv>"} &
|
|
257 |
@{thm (rhs) birthtime.simps(3)[where thread="th" and thread'="th'"]}\\
|
|
258 |
@{term "birthtime th (DUMMY#s)"} & @{text "\<equiv>"} & @{term "birthtime th s"}\\
|
|
259 |
\end{tabular}}
|
|
260 |
\end{isabelle}
|
|
| 286 | 261 |
|
262 |
\noindent |
|
| 287 | 263 |
In this definition @{term "length s"} stands for the length of the list
|
264 |
of events @{text s}. Again the default value in this function is @{text 0}
|
|
265 |
for threads that have not been created yet. A \emph{precedence} of a thread @{text th} in a
|
|
| 290 | 266 |
state @{text s} is the pair of natural numbers defined as
|
| 284 | 267 |
|
| 286 | 268 |
\begin{isabelle}\ \ \ \ \ %%%
|
| 290 | 269 |
@{thm preced_def[where thread="th"]}
|
| 286 | 270 |
\end{isabelle}
|
271 |
||
272 |
\noindent |
|
| 287 | 273 |
The point of precedences is to schedule threads not according to priorities (because what should |
| 286 | 274 |
we do in case two threads have the same priority), but according to precedences. |
| 290 | 275 |
Precedences allow us to always discriminate between two threads with equal priority by |
| 296 | 276 |
taking into account the time when the priority was last set. We order precedences so |
| 286 | 277 |
that threads with the same priority get a higher precedence if their priority has been |
| 293 | 278 |
set earlier, since for such threads it is more urgent to finish their work. In an implementation |
279 |
this choice would translate to a quite natural FIFO-scheduling of processes with |
|
| 286 | 280 |
the same priority. |
281 |
||
282 |
Next, we introduce the concept of \emph{waiting queues}. They are
|
|
283 |
lists of threads associated with every resource. The first thread in |
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
284 |
this list (i.e.~the head, or short @{term hd}) is chosen to be the one
|
| 290 | 285 |
that is in possession of the |
| 286 | 286 |
``lock'' of the corresponding resource. We model waiting queues as |
| 293 | 287 |
functions, below abbreviated as @{text wq}. They take a resource as
|
288 |
argument and return a list of threads. This allows us to define |
|
| 290 | 289 |
when a thread \emph{holds}, respectively \emph{waits} for, a
|
| 293 | 290 |
resource @{text cs} given a waiting queue function @{text wq}.
|
| 287 | 291 |
|
292 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
293 |
\begin{tabular}{@ {}l}
|
|
| 290 | 294 |
@{thm cs_holding_def[where thread="th"]}\\
|
295 |
@{thm cs_waiting_def[where thread="th"]}
|
|
| 287 | 296 |
\end{tabular}
|
297 |
\end{isabelle}
|
|
298 |
||
299 |
\noindent |
|
300 |
In this definition we assume @{text "set"} converts a list into a set.
|
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
301 |
At the beginning, that is in the state where no thread is created yet, |
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
302 |
the waiting queue function will be the function that returns the |
| 293 | 303 |
empty list for every resource. |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
304 |
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
305 |
\begin{isabelle}\ \ \ \ \ %%%
|
| 301 | 306 |
@{abbrev all_unlocked}\hfill\numbered{allunlocked}
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
307 |
\end{isabelle}
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
308 |
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
309 |
\noindent |
| 290 | 310 |
Using @{term "holding"} and @{term waiting}, we can introduce \emph{Resource Allocation Graphs}
|
311 |
(RAG), which represent the dependencies between threads and resources. |
|
312 |
We represent RAGs as relations using pairs of the form |
|
313 |
||
314 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
315 |
@{term "(Th th, Cs cs)"} \hspace{5mm}{\rm and}\hspace{5mm}
|
|
316 |
@{term "(Cs cs, Th th)"}
|
|
317 |
\end{isabelle}
|
|
318 |
||
319 |
\noindent |
|
320 |
where the first stands for a \emph{waiting edge} and the second for a
|
|
321 |
\emph{holding edge} (@{term Cs} and @{term Th} are constructors of a
|
|
322 |
datatype for vertices). Given a waiting queue function, a RAG is defined |
|
| 306 | 323 |
as the union of the sets of waiting and holding edges, namely |
| 290 | 324 |
|
325 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
326 |
@{thm cs_depend_def}
|
|
327 |
\end{isabelle}
|
|
328 |
||
329 |
\noindent |
|
| 335 | 330 |
Given four threads and three resources, an instance of a RAG can be pictured |
| 306 | 331 |
as follows: |
| 290 | 332 |
|
333 |
\begin{center}
|
|
| 297 | 334 |
\newcommand{\fnt}{\fontsize{7}{8}\selectfont}
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
335 |
\begin{tikzpicture}[scale=1]
|
| 297 | 336 |
%%\draw[step=2mm] (-3,2) grid (1,-1); |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
337 |
|
| 297 | 338 |
\node (A) at (0,0) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^isub>0"}};
|
339 |
\node (B) at (2,0) [draw, circle, very thick, inner sep=0.4mm] {@{text "cs\<^isub>1"}};
|
|
340 |
\node (C) at (4,0.7) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^isub>1"}};
|
|
341 |
\node (D) at (4,-0.7) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^isub>2"}};
|
|
342 |
\node (E) at (6,-0.7) [draw, circle, very thick, inner sep=0.4mm] {@{text "cs\<^isub>2"}};
|
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
343 |
\node (E1) at (6, 0.2) [draw, circle, very thick, inner sep=0.4mm] {@{text "cs\<^isub>3"}};
|
| 297 | 344 |
\node (F) at (8,-0.7) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^isub>3"}};
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
345 |
|
| 300 | 346 |
\draw [<-,line width=0.6mm] (A) to node [pos=0.54,sloped,above=-0.5mm] {\fnt{}holding} (B);
|
| 297 | 347 |
\draw [->,line width=0.6mm] (C) to node [pos=0.4,sloped,above=-0.5mm] {\fnt{}waiting} (B);
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
348 |
\draw [->,line width=0.6mm] (D) to node [pos=0.4,sloped,below=-0.5mm] {\fnt{}waiting} (B);
|
| 300 | 349 |
\draw [<-,line width=0.6mm] (D) to node [pos=0.54,sloped,below=-0.5mm] {\fnt{}holding} (E);
|
350 |
\draw [<-,line width=0.6mm] (D) to node [pos=0.54,sloped,above=-0.5mm] {\fnt{}holding} (E1);
|
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
351 |
\draw [->,line width=0.6mm] (F) to node [pos=0.45,sloped,below=-0.5mm] {\fnt{}waiting} (E);
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
352 |
\end{tikzpicture}
|
| 290 | 353 |
\end{center}
|
354 |
||
355 |
\noindent |
|
| 296 | 356 |
The use of relations for representing RAGs allows us to conveniently define |
| 306 | 357 |
the notion of the \emph{dependants} of a thread using the transitive closure
|
358 |
operation for relations. This gives |
|
| 290 | 359 |
|
360 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
361 |
@{thm cs_dependents_def}
|
|
362 |
\end{isabelle}
|
|
363 |
||
364 |
\noindent |
|
| 296 | 365 |
This definition needs to account for all threads that wait for a thread to |
| 290 | 366 |
release a resource. This means we need to include threads that transitively |
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
367 |
wait for a resource being released (in the picture above this means the dependants |
| 306 | 368 |
of @{text "th\<^isub>0"} are @{text "th\<^isub>1"} and @{text "th\<^isub>2"}, which wait for resource @{text "cs\<^isub>1"},
|
369 |
but also @{text "th\<^isub>3"},
|
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
370 |
which cannot make any progress unless @{text "th\<^isub>2"} makes progress, which
|
| 332 | 371 |
in turn needs to wait for @{text "th\<^isub>0"} to finish). If there is a circle of dependencies
|
372 |
in a RAG, then clearly |
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
373 |
we have a deadlock. Therefore when a thread requests a resource, |
| 342 | 374 |
we must ensure that the resulting RAG is not circular. In practice, the |
375 |
programmer has to ensure this. |
|
376 |
||
377 |
||
| 343 | 378 |
{\bf ??? define detached}
|
| 342 | 379 |
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
380 |
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
381 |
Next we introduce the notion of the \emph{current precedence} of a thread @{text th} in a
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
382 |
state @{text s}. It is defined as
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
383 |
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
384 |
\begin{isabelle}\ \ \ \ \ %%%
|
| 299 | 385 |
@{thm cpreced_def2}\hfill\numbered{cpreced}
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
386 |
\end{isabelle}
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
387 |
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
388 |
\noindent |
| 306 | 389 |
where the dependants of @{text th} are given by the waiting queue function.
|
| 342 | 390 |
While the precedence @{term prec} of a thread is determined statically
|
| 293 | 391 |
(for example when the thread is |
| 306 | 392 |
created), the point of the current precedence is to let the scheduler increase this |
393 |
precedence, if needed according to PIP. Therefore the current precedence of @{text th} is
|
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
394 |
given as the maximum of the precedence @{text th} has in state @{text s} \emph{and} all
|
| 306 | 395 |
threads that are dependants of @{text th}. Since the notion @{term "dependants"} is
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
396 |
defined as the transitive closure of all dependent threads, we deal correctly with the |
| 306 | 397 |
problem in the informal algorithm by Sha et al.~\cite{Sha90} where a priority of a thread is
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
398 |
lowered prematurely. |
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
399 |
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
400 |
The next function, called @{term schs}, defines the behaviour of the scheduler. It will be defined
|
| 306 | 401 |
by recursion on the state (a list of events); this function returns a \emph{schedule state}, which
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
402 |
we represent as a record consisting of two |
| 296 | 403 |
functions: |
| 293 | 404 |
|
405 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
406 |
@{text "\<lparr>wq_fun, cprec_fun\<rparr>"}
|
|
407 |
\end{isabelle}
|
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
408 |
|
|
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
409 |
\noindent |
| 314 | 410 |
The first function is a waiting queue function (that is, it takes a |
411 |
resource @{text "cs"} and returns the corresponding list of threads
|
|
412 |
that lock, respectively wait for, it); the second is a function that |
|
413 |
takes a thread and returns its current precedence (see |
|
| 332 | 414 |
the definition in \eqref{cpreced}). We assume the usual getter and setter methods for
|
| 314 | 415 |
such records. |
|
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
416 |
|
| 306 | 417 |
In the initial state, the scheduler starts with all resources unlocked (the corresponding |
418 |
function is defined in \eqref{allunlocked}) and the
|
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
419 |
current precedence of every thread is initialised with @{term "Prc 0 0"}; that means
|
| 299 | 420 |
\mbox{@{abbrev initial_cprec}}. Therefore
|
| 332 | 421 |
we have for the initial shedule state |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
422 |
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
423 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
424 |
\begin{tabular}{@ {}l}
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
425 |
@{thm (lhs) schs.simps(1)} @{text "\<equiv>"}\\
|
|
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
426 |
\hspace{5mm}@{term "(|wq_fun = all_unlocked, cprec_fun = (\<lambda>_::thread. Prc 0 0)|)"}
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
427 |
\end{tabular}
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
428 |
\end{isabelle}
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
429 |
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
430 |
\noindent |
| 296 | 431 |
The cases for @{term Create}, @{term Exit} and @{term Set} are also straightforward:
|
432 |
we calculate the waiting queue function of the (previous) state @{text s};
|
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
433 |
this waiting queue function @{text wq} is unchanged in the next schedule state---because
|
| 306 | 434 |
none of these events lock or release any resource; |
435 |
for calculating the next @{term "cprec_fun"}, we use @{text wq} and
|
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
436 |
@{term cpreced}. This gives the following three clauses for @{term schs}:
|
| 290 | 437 |
|
438 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
439 |
\begin{tabular}{@ {}l}
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
440 |
@{thm (lhs) schs.simps(2)} @{text "\<equiv>"}\\
|
|
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
441 |
\hspace{5mm}@{text "let"} @{text "wq = wq_fun (schs s)"} @{text "in"}\\
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
442 |
\hspace{8mm}@{term "(|wq_fun = wq\<iota>, cprec_fun = cpreced wq\<iota> (Create th prio # s)|)"}\smallskip\\
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
443 |
@{thm (lhs) schs.simps(3)} @{text "\<equiv>"}\\
|
|
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
444 |
\hspace{5mm}@{text "let"} @{text "wq = wq_fun (schs s)"} @{text "in"}\\
|
|
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
445 |
\hspace{8mm}@{term "(|wq_fun = wq\<iota>, cprec_fun = cpreced wq\<iota> (Exit th # s)|)"}\smallskip\\
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
446 |
@{thm (lhs) schs.simps(4)} @{text "\<equiv>"}\\
|
|
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
447 |
\hspace{5mm}@{text "let"} @{text "wq = wq_fun (schs s)"} @{text "in"}\\
|
|
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
448 |
\hspace{8mm}@{term "(|wq_fun = wq\<iota>, cprec_fun = cpreced wq\<iota> (Set th prio # s)|)"}
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
449 |
\end{tabular}
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
450 |
\end{isabelle}
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
451 |
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
452 |
\noindent |
| 306 | 453 |
More interesting are the cases where a resource, say @{text cs}, is locked or released. In these cases
|
| 300 | 454 |
we need to calculate a new waiting queue function. For the event @{term "P th cs"}, we have to update
|
| 306 | 455 |
the function so that the new thread list for @{text cs} is the old thread list plus the thread @{text th}
|
| 314 | 456 |
appended to the end of that list (remember the head of this list is assigned to be in the possession of this |
| 306 | 457 |
resource). This gives the clause |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
458 |
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
459 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
460 |
\begin{tabular}{@ {}l}
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
461 |
@{thm (lhs) schs.simps(5)} @{text "\<equiv>"}\\
|
|
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
462 |
\hspace{5mm}@{text "let"} @{text "wq = wq_fun (schs s)"} @{text "in"}\\
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
463 |
\hspace{5mm}@{text "let"} @{text "new_wq = wq(cs := (wq cs @ [th]))"} @{text "in"}\\
|
|
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
464 |
\hspace{8mm}@{term "(|wq_fun = new_wq, cprec_fun = cpreced new_wq (P th cs # s)|)"}
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
465 |
\end{tabular}
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
466 |
\end{isabelle}
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
467 |
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
468 |
\noindent |
| 300 | 469 |
The clause for event @{term "V th cs"} is similar, except that we need to update the waiting queue function
|
| 301 | 470 |
so that the thread that possessed the lock is deleted from the corresponding thread list. For this |
471 |
list transformation, we use |
|
| 296 | 472 |
the auxiliary function @{term release}. A simple version of @{term release} would
|
| 306 | 473 |
just delete this thread and return the remaining threads, namely |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
474 |
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
475 |
\begin{isabelle}\ \ \ \ \ %%%
|
| 296 | 476 |
\begin{tabular}{@ {}lcl}
|
477 |
@{term "release []"} & @{text "\<equiv>"} & @{term "[]"}\\
|
|
478 |
@{term "release (DUMMY # qs)"} & @{text "\<equiv>"} & @{term "qs"}\\
|
|
479 |
\end{tabular}
|
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
480 |
\end{isabelle}
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
481 |
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
482 |
\noindent |
| 300 | 483 |
In practice, however, often the thread with the highest precedence in the list will get the |
| 296 | 484 |
lock next. We have implemented this choice, but later found out that the choice |
| 300 | 485 |
of which thread is chosen next is actually irrelevant for the correctness of PIP. |
| 296 | 486 |
Therefore we prove the stronger result where @{term release} is defined as
|
487 |
||
488 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
489 |
\begin{tabular}{@ {}lcl}
|
|
490 |
@{term "release []"} & @{text "\<equiv>"} & @{term "[]"}\\
|
|
491 |
@{term "release (DUMMY # qs)"} & @{text "\<equiv>"} & @{term "SOME qs'. distinct qs' \<and> set qs' = set qs"}\\
|
|
492 |
\end{tabular}
|
|
493 |
\end{isabelle}
|
|
494 |
||
495 |
\noindent |
|
| 306 | 496 |
where @{text "SOME"} stands for Hilbert's epsilon and implements an arbitrary
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
497 |
choice for the next waiting list. It just has to be a list of distinctive threads and |
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
498 |
contain the same elements as @{text "qs"}. This gives for @{term V} the clause:
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
499 |
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
500 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
501 |
\begin{tabular}{@ {}l}
|
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
502 |
@{thm (lhs) schs.simps(6)} @{text "\<equiv>"}\\
|
|
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
503 |
\hspace{5mm}@{text "let"} @{text "wq = wq_fun (schs s)"} @{text "in"}\\
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
504 |
\hspace{5mm}@{text "let"} @{text "new_wq = release (wq cs)"} @{text "in"}\\
|
|
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
505 |
\hspace{8mm}@{term "(|wq_fun = new_wq, cprec_fun = cpreced new_wq (V th cs # s)|)"}
|
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
506 |
\end{tabular}
|
| 290 | 507 |
\end{isabelle}
|
508 |
||
| 300 | 509 |
Having the scheduler function @{term schs} at our disposal, we can ``lift'', or
|
510 |
overload, the notions |
|
511 |
@{term waiting}, @{term holding}, @{term depend} and @{term cp} to operate on states only.
|
|
| 286 | 512 |
|
513 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
514 |
\begin{tabular}{@ {}rcl}
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
515 |
@{thm (lhs) s_holding_abv} & @{text "\<equiv>"} & @{thm (rhs) s_holding_abv}\\
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
516 |
@{thm (lhs) s_waiting_abv} & @{text "\<equiv>"} & @{thm (rhs) s_waiting_abv}\\
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
517 |
@{thm (lhs) s_depend_abv} & @{text "\<equiv>"} & @{thm (rhs) s_depend_abv}\\
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
518 |
@{thm (lhs) cp_def} & @{text "\<equiv>"} & @{thm (rhs) cp_def}
|
| 287 | 519 |
\end{tabular}
|
520 |
\end{isabelle}
|
|
521 |
||
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
522 |
\noindent |
| 335 | 523 |
With these abbreviations in place we can introduce |
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
524 |
the notion of a thread being @{term ready} in a state (i.e.~threads
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
525 |
that do not wait for any resource) and the running thread. |
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
526 |
|
| 287 | 527 |
\begin{isabelle}\ \ \ \ \ %%%
|
528 |
\begin{tabular}{@ {}l}
|
|
529 |
@{thm readys_def}\\
|
|
530 |
@{thm runing_def}\\
|
|
| 286 | 531 |
\end{tabular}
|
532 |
\end{isabelle}
|
|
| 284 | 533 |
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
534 |
\noindent |
| 332 | 535 |
In the second definition @{term "DUMMY ` DUMMY"} stands for the image of a set under a function.
|
| 306 | 536 |
Note that in the initial state, that is where the list of events is empty, the set |
| 309 | 537 |
@{term threads} is empty and therefore there is neither a thread ready nor running.
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
538 |
If there is one or more threads ready, then there can only be \emph{one} thread
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
539 |
running, namely the one whose current precedence is equal to the maximum of all ready |
| 314 | 540 |
threads. We use sets to capture both possibilities. |
| 306 | 541 |
We can now also conveniently define the set of resources that are locked by a thread in a |
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
542 |
given state. |
| 284 | 543 |
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
544 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
545 |
@{thm holdents_def}
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
546 |
\end{isabelle}
|
| 284 | 547 |
|
| 306 | 548 |
Finally we can define what a \emph{valid state} is in our model of PIP. For
|
| 304 | 549 |
example we cannot expect to be able to exit a thread, if it was not |
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
550 |
created yet. |
| 332 | 551 |
These validity constraints on states are characterised by the |
| 306 | 552 |
inductive predicate @{term "step"} and @{term vt}. We first give five inference rules
|
553 |
for @{term step} relating a state and an event that can happen next.
|
|
| 284 | 554 |
|
555 |
\begin{center}
|
|
556 |
\begin{tabular}{c}
|
|
557 |
@{thm[mode=Rule] thread_create[where thread=th]}\hspace{1cm}
|
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
558 |
@{thm[mode=Rule] thread_exit[where thread=th]}
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
559 |
\end{tabular}
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
560 |
\end{center}
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
561 |
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
562 |
\noindent |
| 333 | 563 |
The first rule states that a thread can only be created, if it is not alive yet. |
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
564 |
Similarly, the second rule states that a thread can only be terminated if it was |
| 306 | 565 |
running and does not lock any resources anymore (this simplifies slightly our model; |
| 314 | 566 |
in practice we would expect the operating system releases all locks held by a |
| 306 | 567 |
thread that is about to exit). The event @{text Set} can happen
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
568 |
if the corresponding thread is running. |
| 284 | 569 |
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
570 |
\begin{center}
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
571 |
@{thm[mode=Rule] thread_set[where thread=th]}
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
572 |
\end{center}
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
573 |
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
574 |
\noindent |
| 301 | 575 |
If a thread wants to lock a resource, then the thread needs to be |
576 |
running and also we have to make sure that the resource lock does |
|
| 342 | 577 |
not lead to a cycle in the RAG. In practice, ensuring the latter |
578 |
is the responsibility of the programmer. In our formal |
|
| 314 | 579 |
model we brush aside these problematic cases in order to be able to make |
| 301 | 580 |
some meaningful statements about PIP.\footnote{This situation is
|
| 333 | 581 |
similar to the infamous \emph{occurs check} in Prolog: In order to say
|
| 306 | 582 |
anything meaningful about unification, one needs to perform an occurs |
| 331 | 583 |
check. But in practice the occurs check is omitted and the |
| 306 | 584 |
responsibility for avoiding problems rests with the programmer.} |
| 342 | 585 |
|
| 306 | 586 |
|
587 |
\begin{center}
|
|
588 |
@{thm[mode=Rule] thread_P[where thread=th]}
|
|
589 |
\end{center}
|
|
590 |
||
591 |
\noindent |
|
| 301 | 592 |
Similarly, if a thread wants to release a lock on a resource, then |
593 |
it must be running and in the possession of that lock. This is |
|
| 306 | 594 |
formally given by the last inference rule of @{term step}.
|
595 |
||
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
596 |
\begin{center}
|
| 306 | 597 |
@{thm[mode=Rule] thread_V[where thread=th]}
|
| 284 | 598 |
\end{center}
|
| 306 | 599 |
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
600 |
\noindent |
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
601 |
A valid state of PIP can then be conveniently be defined as follows: |
| 284 | 602 |
|
603 |
\begin{center}
|
|
604 |
\begin{tabular}{c}
|
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
605 |
@{thm[mode=Axiom] vt_nil}\hspace{1cm}
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
606 |
@{thm[mode=Rule] vt_cons}
|
| 284 | 607 |
\end{tabular}
|
608 |
\end{center}
|
|
609 |
||
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
610 |
\noindent |
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
611 |
This completes our formal model of PIP. In the next section we present |
| 309 | 612 |
properties that show our model of PIP is correct. |
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
613 |
*} |
| 274 | 614 |
|
| 310 | 615 |
section {* The Correctness Proof *}
|
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
616 |
|
| 301 | 617 |
(*<*) |
618 |
context extend_highest_gen |
|
619 |
begin |
|
| 307 | 620 |
(*>*) |
| 301 | 621 |
text {*
|
| 329 | 622 |
Sha et al.~state their first correctness criterion for PIP in terms |
623 |
of the number of low-priority threads \cite[Theorem 3]{Sha90}: if
|
|
624 |
there are @{text n} low-priority threads, then a blocked job with
|
|
| 333 | 625 |
high priority can only be blocked a maximum of @{text n} times.
|
| 332 | 626 |
Their second correctness criterion is given |
| 329 | 627 |
in terms of the number of critical resources \cite[Theorem 6]{Sha90}: if there are
|
| 322 | 628 |
@{text m} critical resources, then a blocked job with high priority
|
| 333 | 629 |
can only be blocked a maximum of @{text m} times. Both results on their own, strictly speaking, do
|
| 324 | 630 |
\emph{not} prevent indefinite, or unbounded, Priority Inversion,
|
| 329 | 631 |
because if a low-priority thread does not give up its critical |
| 324 | 632 |
resource (the one the high-priority thread is waiting for), then the |
| 322 | 633 |
high-priority thread can never run. The argument of Sha et al.~is |
634 |
that \emph{if} threads release locked resources in a finite amount
|
|
| 324 | 635 |
of time, then indefinite Priority Inversion cannot occur---the high-priority |
| 322 | 636 |
thread is guaranteed to run eventually. The assumption is that |
| 332 | 637 |
programmers must ensure that threads are programmed in this way. However, even |
638 |
taking this assumption into account, the correctness properties of |
|
639 |
Sha et al.~are |
|
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
640 |
\emph{not} true for their version of PIP---despite being ``proved''. As Yodaiken
|
| 324 | 641 |
\cite{Yodaiken02} pointed out: If a low-priority thread possesses
|
642 |
locks to two resources for which two high-priority threads are |
|
643 |
waiting for, then lowering the priority prematurely after giving up |
|
644 |
only one lock, can cause indefinite Priority Inversion for one of the |
|
| 329 | 645 |
high-priority threads, invalidating their two bounds. |
| 307 | 646 |
|
| 323 | 647 |
Even when fixed, their proof idea does not seem to go through for |
| 332 | 648 |
us, because of the way we have set up our formal model of PIP. One |
| 342 | 649 |
reason is that we allow critical sections, which start with a @{text P}-event
|
650 |
and finish with a corresponding @{text V}-event, to arbitrarily overlap
|
|
| 333 | 651 |
(something Sha et al.~explicitly exclude). Therefore we have |
652 |
designed a different correctness criterion for PIP. The idea behind |
|
653 |
our criterion is as follows: for all states @{text s}, we know the
|
|
654 |
corresponding thread @{text th} with the highest precedence; we show
|
|
655 |
that in every future state (denoted by @{text "s' @ s"}) in which
|
|
656 |
@{text th} is still alive, either @{text th} is running or it is
|
|
| 335 | 657 |
blocked by a thread that was alive in the state @{text s} and was waiting
|
| 337 | 658 |
for or in the possession of a lock in @{text s}. Since in @{text s}, as in
|
| 333 | 659 |
every state, the set of alive threads is finite, @{text th} can only
|
660 |
be blocked a finite number of times. This is independent of how many |
|
661 |
threads of lower priority are created in @{text "s'"}. We will actually prove a
|
|
662 |
stronger statement where we also provide the current precedence of |
|
663 |
the blocking thread. However, this correctness criterion hinges upon |
|
664 |
a number of assumptions about the states @{text s} and @{text "s' @
|
|
665 |
s"}, the thread @{text th} and the events happening in @{text
|
|
666 |
s'}. We list them next: |
|
| 307 | 667 |
|
668 |
\begin{quote}
|
|
| 333 | 669 |
{\bf Assumptions on the states {\boldmath@{text s}} and
|
| 342 | 670 |
{\boldmath@{text "s' @ s"}:}} We need to require that @{text "s"} and
|
671 |
@{text "s' @ s"} are valid states:
|
|
| 307 | 672 |
\begin{isabelle}\ \ \ \ \ %%%
|
673 |
\begin{tabular}{l}
|
|
674 |
@{term "vt s"}\\
|
|
675 |
@{term "vt (s' @ s)"}
|
|
676 |
\end{tabular}
|
|
677 |
\end{isabelle}
|
|
678 |
\end{quote}
|
|
| 301 | 679 |
|
| 307 | 680 |
\begin{quote}
|
| 333 | 681 |
{\bf Assumptions on the thread {\boldmath@{text "th"}:}}
|
682 |
The thread @{text th} must be alive in @{text s} and
|
|
| 310 | 683 |
has the highest precedence of all alive threads in @{text s}. Furthermore the
|
684 |
priority of @{text th} is @{text prio} (we need this in the next assumptions).
|
|
| 307 | 685 |
\begin{isabelle}\ \ \ \ \ %%%
|
686 |
\begin{tabular}{l}
|
|
687 |
@{term "th \<in> threads s"}\\
|
|
688 |
@{term "prec th s = Max (cprec s ` threads s)"}\\
|
|
689 |
@{term "prec th s = (prio, DUMMY)"}
|
|
690 |
\end{tabular}
|
|
691 |
\end{isabelle}
|
|
692 |
\end{quote}
|
|
693 |
||
694 |
\begin{quote}
|
|
| 333 | 695 |
{\bf Assumptions on the events in {\boldmath@{text "s'"}:}} We want to prove that @{text th} cannot
|
| 309 | 696 |
be blocked indefinitely. Of course this can happen if threads with higher priority |
| 331 | 697 |
than @{text th} are continuously created in @{text s'}. Therefore we have to assume that
|
| 309 | 698 |
events in @{text s'} can only create (respectively set) threads with equal or lower
|
| 310 | 699 |
priority than @{text prio} of @{text th}. We also need to assume that the
|
700 |
priority of @{text "th"} does not get reset and also that @{text th} does
|
|
701 |
not get ``exited'' in @{text "s'"}. This can be ensured by assuming the following three implications.
|
|
| 307 | 702 |
\begin{isabelle}\ \ \ \ \ %%%
|
703 |
\begin{tabular}{l}
|
|
| 310 | 704 |
{If}~~@{text "Create th' prio' \<in> set s'"}~~{then}~~@{text "prio' \<le> prio"}\\
|
| 307 | 705 |
{If}~~@{text "Set th' prio' \<in> set s'"}~~{then}~~@{text "th' \<noteq> th"}~~{and}~~@{text "prio' \<le> prio"}\\
|
706 |
{If}~~@{text "Exit th' \<in> set s'"}~~{then}~~@{text "th' \<noteq> th"}\\
|
|
707 |
\end{tabular}
|
|
708 |
\end{isabelle}
|
|
709 |
\end{quote}
|
|
| 301 | 710 |
|
| 307 | 711 |
\noindent |
| 332 | 712 |
The locale mechanism of Isabelle helps us to manage conveniently such assumptions~\cite{Haftmann08}.
|
| 333 | 713 |
Under these assumptions we shall prove the following correctness property: |
| 307 | 714 |
|
| 308 | 715 |
\begin{theorem}\label{mainthm}
|
| 307 | 716 |
Given the assumptions about states @{text "s"} and @{text "s' @ s"},
|
| 308 | 717 |
the thread @{text th} and the events in @{text "s'"},
|
718 |
if @{term "th' \<in> running (s' @ s)"} and @{text "th' \<noteq> th"} then
|
|
| 329 | 719 |
@{text "th' \<in> threads s"}, @{text "\<not> detached s th'"} and
|
720 |
@{term "cp (s' @ s) th' = prec th s"}.
|
|
| 307 | 721 |
\end{theorem}
|
| 301 | 722 |
|
| 308 | 723 |
\noindent |
| 324 | 724 |
This theorem ensures that the thread @{text th}, which has the
|
725 |
highest precedence in the state @{text s}, can only be blocked in
|
|
726 |
the state @{text "s' @ s"} by a thread @{text th'} that already
|
|
| 329 | 727 |
existed in @{text s} and requested or had a lock on at least
|
728 |
one resource---that means the thread was not \emph{detached} in @{text s}.
|
|
729 |
As we shall see shortly, that means there are only finitely |
|
| 332 | 730 |
many threads that can block @{text th} in this way and then they
|
731 |
need to run with the same current precedence as @{text th}.
|
|
| 329 | 732 |
|
733 |
Like in the argument by Sha et al.~our |
|
| 324 | 734 |
finite bound does not guarantee absence of indefinite Priority |
735 |
Inversion. For this we further have to assume that every thread |
|
| 332 | 736 |
gives up its resources after a finite amount of time. We found that |
| 324 | 737 |
this assumption is awkward to formalise in our model. Therefore we |
738 |
leave it out and let the programmer assume the responsibility to |
|
| 331 | 739 |
program threads in such a benign manner (in addition to causing no |
| 325 | 740 |
circularity in the @{text RAG}). In this detail, we do not
|
| 324 | 741 |
make any progress in comparison with the work by Sha et al. |
| 329 | 742 |
However, we are able to combine their two separate bounds into a |
| 332 | 743 |
single theorem improving their bound. |
| 309 | 744 |
|
745 |
In what follows we will describe properties of PIP that allow us to prove |
|
| 325 | 746 |
Theorem~\ref{mainthm} and, when instructive, briefly describe our argument.
|
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
747 |
It is relatively easy to see that |
| 309 | 748 |
|
749 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
750 |
\begin{tabular}{@ {}l}
|
|
751 |
@{text "running s \<subseteq> ready s \<subseteq> threads s"}\\
|
|
752 |
@{thm[mode=IfThen] finite_threads}
|
|
753 |
\end{tabular}
|
|
754 |
\end{isabelle}
|
|
755 |
||
756 |
\noindent |
|
| 332 | 757 |
The second property is by induction of @{term vt}. The next three
|
| 309 | 758 |
properties are |
| 308 | 759 |
|
| 309 | 760 |
\begin{isabelle}\ \ \ \ \ %%%
|
761 |
\begin{tabular}{@ {}l}
|
|
762 |
@{thm[mode=IfThen] waiting_unique[of _ _ "cs\<^isub>1" "cs\<^isub>2"]}\\
|
|
763 |
@{thm[mode=IfThen] held_unique[of _ "th\<^isub>1" _ "th\<^isub>2"]}\\
|
|
764 |
@{thm[mode=IfThen] runing_unique[of _ "th\<^isub>1" "th\<^isub>2"]}
|
|
765 |
\end{tabular}
|
|
766 |
\end{isabelle}
|
|
| 308 | 767 |
|
| 309 | 768 |
\noindent |
| 325 | 769 |
The first property states that every waiting thread can only wait for a single |
770 |
resource (because it gets suspended after requesting that resource); the second |
|
771 |
that every resource can only be held by a single thread; |
|
| 310 | 772 |
the third property establishes that in every given valid state, there is |
773 |
at most one running thread. We can also show the following properties |
|
| 325 | 774 |
about the @{term RAG} in @{text "s"}.
|
| 310 | 775 |
|
776 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
777 |
\begin{tabular}{@ {}l}
|
|
| 312 | 778 |
@{text If}~@{thm (prem 1) acyclic_depend}~@{text "then"}:\\
|
779 |
\hspace{5mm}@{thm (concl) acyclic_depend},
|
|
780 |
@{thm (concl) finite_depend} and
|
|
781 |
@{thm (concl) wf_dep_converse},\\
|
|
| 325 | 782 |
\hspace{5mm}@{text "if"}~@{thm (prem 2) dm_depend_threads}~@{text "then"}~@{thm (concl) dm_depend_threads}
|
783 |
and\\ |
|
784 |
\hspace{5mm}@{text "if"}~@{thm (prem 2) range_in}~@{text "then"}~@{thm (concl) range_in}.
|
|
| 310 | 785 |
\end{tabular}
|
786 |
\end{isabelle}
|
|
| 309 | 787 |
|
| 325 | 788 |
\noindent |
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
789 |
The acyclicity property follows from how we restricted the events in |
| 325 | 790 |
@{text step}; similarly the finiteness and well-foundedness property.
|
791 |
The last two properties establish that every thread in a @{text "RAG"}
|
|
792 |
(either holding or waiting for a resource) is a live thread. |
|
793 |
||
| 329 | 794 |
The key lemma in our proof of Theorem~\ref{mainthm} is as follows:
|
| 325 | 795 |
|
796 |
\begin{lemma}\label{mainlem}
|
|
797 |
Given the assumptions about states @{text "s"} and @{text "s' @ s"},
|
|
798 |
the thread @{text th} and the events in @{text "s'"},
|
|
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
799 |
if @{term "th' \<in> threads (s' @ s)"}, @{text "th' \<noteq> th"} and @{text "detached (s' @ s) th'"}\\
|
| 325 | 800 |
then @{text "th' \<notin> running (s' @ s)"}.
|
801 |
\end{lemma}
|
|
| 309 | 802 |
|
803 |
\noindent |
|
| 325 | 804 |
The point of this lemma is that a thread different from @{text th} (which has the highest
|
| 332 | 805 |
precedence in @{text s}) and not holding any resource, cannot be running
|
| 325 | 806 |
in the state @{text "s' @ s"}.
|
| 301 | 807 |
|
| 325 | 808 |
\begin{proof}
|
809 |
Since thread @{text "th'"} does not hold any resource, no thread can depend on it.
|
|
810 |
Therefore its current precedence @{term "cp (s' @ s) th'"} equals its own precedence
|
|
811 |
@{term "prec th' (s' @ s)"}. Since @{text "th"} has the highest precedence in the
|
|
812 |
state @{text "(s' @ s)"} and precedences are distinct among threads, we have
|
|
813 |
@{term "prec th' (s' @s ) < prec th (s' @ s)"}. From this
|
|
814 |
we have @{term "cp (s' @ s) th' < prec th (s' @ s)"}.
|
|
815 |
Since @{text "prec th (s' @ s)"} is already the highest
|
|
816 |
@{term "cp (s' @ s) th"} can not be higher than this and can not be lower either (by
|
|
817 |
definition of @{term "cp"}). Consequently, we have @{term "prec th (s' @ s) = cp (s' @ s) th"}.
|
|
818 |
Finally we have @{term "cp (s' @ s) th' < cp (s' @ s) th"}.
|
|
819 |
By defintion of @{text "running"}, @{text "th'"} can not be running in state
|
|
820 |
@{text "s' @ s"}, as we had to show.\qed
|
|
821 |
\end{proof}
|
|
| 308 | 822 |
|
| 325 | 823 |
\noindent |
| 332 | 824 |
Since @{text "th'"} is not able to run in state @{text "s' @ s"}, it is not able to
|
| 328 | 825 |
issue a @{text "P"} or @{text "V"} event. Therefore if @{text "s' @ s"} is extended
|
| 325 | 826 |
one step further, @{text "th'"} still cannot hold any resource. The situation will
|
827 |
not change in further extensions as long as @{text "th"} holds the highest precedence.
|
|
828 |
||
| 329 | 829 |
From this lemma we can deduce Theorem~\ref{mainthm}: that @{text th} can only be
|
830 |
blocked by a thread @{text th'} that
|
|
| 326 | 831 |
held some resource in state @{text s} (that is not @{text "detached"}). And furthermore
|
832 |
that the current precedence of @{text th'} in state @{text "(s' @ s)"} must be equal to the
|
|
833 |
precedence of @{text th} in @{text "s"}.
|
|
834 |
We show this theorem by induction on @{text "s'"} using Lemma~\ref{mainlem}.
|
|
| 333 | 835 |
This theorem gives a stricter bound on the threads that can block @{text th} than the
|
| 332 | 836 |
one obtained by Sha et al.~\cite{Sha90}:
|
| 326 | 837 |
only threads that were alive in state @{text s} and moreover held a resource.
|
| 329 | 838 |
This means our bound is in terms of both---alive threads in state @{text s}
|
839 |
and number of critical resources. Finally, the theorem establishes that the blocking threads have the |
|
| 326 | 840 |
current precedence raised to the precedence of @{text th}.
|
841 |
||
| 329 | 842 |
We can furthermore prove that under our assumptions no deadlock exists in the state @{text "s' @ s"}
|
| 328 | 843 |
by showing that @{text "running (s' @ s)"} is not empty.
|
844 |
||
845 |
\begin{lemma}
|
|
846 |
Given the assumptions about states @{text "s"} and @{text "s' @ s"},
|
|
847 |
the thread @{text th} and the events in @{text "s'"},
|
|
848 |
@{term "running (s' @ s) \<noteq> {}"}.
|
|
849 |
\end{lemma}
|
|
850 |
||
851 |
\begin{proof}
|
|
852 |
If @{text th} is blocked, then by following its dependants graph, we can always
|
|
853 |
reach a ready thread @{text th'}, and that thread must have inherited the
|
|
854 |
precedence of @{text th}.\qed
|
|
855 |
\end{proof}
|
|
856 |
||
857 |
||
| 326 | 858 |
%The following lemmas show how every node in RAG can be chased to ready threads: |
859 |
%\begin{enumerate}
|
|
860 |
%\item Every node in RAG can be chased to a ready thread (@{text "chain_building"}):
|
|
861 |
% @ {thm [display] chain_building[rule_format]}
|
|
862 |
%\item The ready thread chased to is unique (@{text "dchain_unique"}):
|
|
863 |
% @ {thm [display] dchain_unique[of _ _ "th\<^isub>1" "th\<^isub>2"]}
|
|
864 |
%\end{enumerate}
|
|
| 301 | 865 |
|
| 326 | 866 |
%Some deeper results about the system: |
867 |
%\begin{enumerate}
|
|
868 |
%\item The maximum of @{term "cp"} and @{term "preced"} are equal (@{text "max_cp_eq"}):
|
|
869 |
%@ {thm [display] max_cp_eq}
|
|
870 |
%\item There must be one ready thread having the max @{term "cp"}-value
|
|
871 |
%(@{text "max_cp_readys_threads"}):
|
|
872 |
%@ {thm [display] max_cp_readys_threads}
|
|
873 |
%\end{enumerate}
|
|
| 325 | 874 |
|
| 326 | 875 |
%The relationship between the count of @{text "P"} and @{text "V"} and the number of
|
876 |
%critical resources held by a thread is given as follows: |
|
877 |
%\begin{enumerate}
|
|
878 |
%\item The @{term "V"}-operation decreases the number of critical resources
|
|
879 |
% one thread holds (@{text "cntCS_v_dec"})
|
|
880 |
% @ {thm [display] cntCS_v_dec}
|
|
881 |
%\item The number of @{text "V"} never exceeds the number of @{text "P"}
|
|
882 |
% (@ {text "cnp_cnv_cncs"}):
|
|
883 |
% @ {thm [display] cnp_cnv_cncs}
|
|
884 |
%\item The number of @{text "V"} equals the number of @{text "P"} when
|
|
885 |
% the relevant thread is not living: |
|
886 |
% (@{text "cnp_cnv_eq"}):
|
|
887 |
% @ {thm [display] cnp_cnv_eq}
|
|
888 |
%\item When a thread is not living, it does not hold any critical resource |
|
889 |
% (@{text "not_thread_holdents"}):
|
|
890 |
% @ {thm [display] not_thread_holdents}
|
|
891 |
%\item When the number of @{text "P"} equals the number of @{text "V"}, the relevant
|
|
892 |
% thread does not hold any critical resource, therefore no thread can depend on it |
|
893 |
% (@{text "count_eq_dependents"}):
|
|
894 |
% @ {thm [display] count_eq_dependents}
|
|
895 |
%\end{enumerate}
|
|
| 313 | 896 |
|
| 326 | 897 |
%The reason that only threads which already held some resoures |
898 |
%can be runing and block @{text "th"} is that if , otherwise, one thread
|
|
899 |
%does not hold any resource, it may never have its prioirty raised |
|
900 |
%and will not get a chance to run. This fact is supported by |
|
901 |
%lemma @{text "moment_blocked"}:
|
|
902 |
%@ {thm [display] moment_blocked}
|
|
903 |
%When instantiating @{text "i"} to @{text "0"}, the lemma means threads which did not hold any
|
|
904 |
%resource in state @{text "s"} will not have a change to run latter. Rephrased, it means
|
|
905 |
%any thread which is running after @{text "th"} became the highest must have already held
|
|
906 |
%some resource at state @{text "s"}.
|
|
| 313 | 907 |
|
908 |
||
| 326 | 909 |
%When instantiating @{text "i"} to a number larger than @{text "0"}, the lemma means
|
910 |
%if a thread releases all its resources at some moment in @{text "t"}, after that,
|
|
911 |
%it may never get a change to run. If every thread releases its resource in finite duration, |
|
912 |
%then after a while, only thread @{text "th"} is left running. This shows how indefinite
|
|
913 |
%priority inversion can be avoided. |
|
| 313 | 914 |
|
| 326 | 915 |
%All these assumptions are put into a predicate @{term "extend_highest_gen"}.
|
916 |
%It can be proved that @{term "extend_highest_gen"} holds
|
|
917 |
%for any moment @{text "i"} in it @{term "t"} (@{text "red_moment"}):
|
|
918 |
%@ {thm [display] red_moment}
|
|
| 325 | 919 |
|
| 326 | 920 |
%From this, an induction principle can be derived for @{text "t"}, so that
|
921 |
%properties already derived for @{term "t"} can be applied to any prefix
|
|
922 |
%of @{text "t"} in the proof of new properties
|
|
923 |
%about @{term "t"} (@{text "ind"}):
|
|
924 |
%\begin{center}
|
|
925 |
%@ {thm[display] ind}
|
|
926 |
%\end{center}
|
|
| 325 | 927 |
|
| 326 | 928 |
%The following properties can be proved about @{term "th"} in @{term "t"}:
|
929 |
%\begin{enumerate}
|
|
930 |
%\item In @{term "t"}, thread @{term "th"} is kept live and its
|
|
931 |
% precedence is preserved as well |
|
932 |
% (@{text "th_kept"}):
|
|
933 |
% @ {thm [display] th_kept}
|
|
934 |
%\item In @{term "t"}, thread @{term "th"}'s precedence is always the maximum among
|
|
935 |
% all living threads |
|
936 |
% (@{text "max_preced"}):
|
|
937 |
% @ {thm [display] max_preced}
|
|
938 |
%\item In @{term "t"}, thread @{term "th"}'s current precedence is always the maximum precedence
|
|
939 |
% among all living threads |
|
940 |
% (@{text "th_cp_max_preced"}):
|
|
941 |
% @ {thm [display] th_cp_max_preced}
|
|
942 |
%\item In @{term "t"}, thread @{term "th"}'s current precedence is always the maximum current
|
|
943 |
% precedence among all living threads |
|
944 |
% (@{text "th_cp_max"}):
|
|
945 |
% @ {thm [display] th_cp_max}
|
|
946 |
%\item In @{term "t"}, thread @{term "th"}'s current precedence equals its precedence at moment
|
|
947 |
% @{term "s"}
|
|
948 |
% (@{text "th_cp_preced"}):
|
|
949 |
% @ {thm [display] th_cp_preced}
|
|
950 |
%\end{enumerate}
|
|
951 |
||
952 |
%The main theorem of this part is to characterizing the running thread during @{term "t"}
|
|
953 |
%(@{text "runing_inversion_2"}):
|
|
954 |
%@ {thm [display] runing_inversion_2}
|
|
955 |
%According to this, if a thread is running, it is either @{term "th"} or was
|
|
956 |
%already live and held some resource |
|
957 |
%at moment @{text "s"} (expressed by: @{text "cntV s th' < cntP s th'"}).
|
|
958 |
||
959 |
%Since there are only finite many threads live and holding some resource at any moment, |
|
960 |
%if every such thread can release all its resources in finite duration, then after finite |
|
961 |
%duration, none of them may block @{term "th"} anymore. So, no priority inversion may happen
|
|
962 |
%then. |
|
| 325 | 963 |
*} |
| 313 | 964 |
(*<*) |
965 |
end |
|
966 |
(*>*) |
|
967 |
||
| 314 | 968 |
section {* Properties for an Implementation\label{implement} *}
|
| 311 | 969 |
|
970 |
text {*
|
|
| 342 | 971 |
While our formalised proof gives us confidence about the correctness of our model of PIP, |
972 |
we found that the formalisation can even help us with efficiently implementing it. |
|
| 311 | 973 |
|
| 312 | 974 |
For example Baker complained that calculating the current precedence |
| 321 | 975 |
in PIP is quite ``heavy weight'' in Linux (see the Introduction). |
| 332 | 976 |
In our model of PIP the current precedence of a thread in a state @{text s}
|
| 312 | 977 |
depends on all its dependants---a ``global'' transitive notion, |
978 |
which is indeed heavy weight (see Def.~shown in \eqref{cpreced}).
|
|
| 321 | 979 |
We can however improve upon this. For this let us define the notion |
980 |
of @{term children} of a thread @{text th} in a state @{text s} as
|
|
| 312 | 981 |
|
982 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
983 |
\begin{tabular}{@ {}l}
|
|
984 |
@{thm children_def2}
|
|
985 |
\end{tabular}
|
|
986 |
\end{isabelle}
|
|
987 |
||
988 |
\noindent |
|
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
989 |
where a child is a thread that is only one ``hop'' away from the thread |
| 321 | 990 |
@{text th} in the @{term RAG} (and waiting for @{text th} to release
|
| 332 | 991 |
a resource). We can prove the following lemma. |
| 311 | 992 |
|
| 312 | 993 |
\begin{lemma}\label{childrenlem}
|
994 |
@{text "If"} @{thm (prem 1) cp_rec} @{text "then"}
|
|
995 |
\begin{center}
|
|
996 |
@{thm (concl) cp_rec}.
|
|
997 |
\end{center}
|
|
998 |
\end{lemma}
|
|
| 311 | 999 |
|
| 312 | 1000 |
\noindent |
1001 |
That means the current precedence of a thread @{text th} can be
|
|
1002 |
computed locally by considering only the children of @{text th}. In
|
|
1003 |
effect, it only needs to be recomputed for @{text th} when one of
|
|
| 321 | 1004 |
its children changes its current precedence. Once the current |
| 312 | 1005 |
precedence is computed in this more efficient manner, the selection |
1006 |
of the thread with highest precedence from a set of ready threads is |
|
1007 |
a standard scheduling operation implemented in most operating |
|
1008 |
systems. |
|
| 311 | 1009 |
|
| 332 | 1010 |
Of course the main work for implementing PIP involves the |
| 321 | 1011 |
scheduler and coding how it should react to events. Below we |
1012 |
outline how our formalisation guides this implementation for each |
|
1013 |
kind of event.\smallskip |
|
| 312 | 1014 |
*} |
| 311 | 1015 |
|
1016 |
(*<*) |
|
| 312 | 1017 |
context step_create_cps |
1018 |
begin |
|
1019 |
(*>*) |
|
1020 |
text {*
|
|
1021 |
\noindent |
|
| 321 | 1022 |
\colorbox{mygrey}{@{term "Create th prio"}:} We assume that the current state @{text s'} and
|
| 312 | 1023 |
the next state @{term "s \<equiv> Create th prio#s'"} are both valid (meaning the event
|
1024 |
is allowed to occur). In this situation we can show that |
|
1025 |
||
1026 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
1027 |
\begin{tabular}{@ {}l}
|
|
| 321 | 1028 |
@{thm eq_dep},\\
|
1029 |
@{thm eq_cp_th}, and\\
|
|
| 312 | 1030 |
@{thm[mode=IfThen] eq_cp}
|
1031 |
\end{tabular}
|
|
1032 |
\end{isabelle}
|
|
1033 |
||
1034 |
\noindent |
|
| 332 | 1035 |
This means in an implementation we do not have recalculate the @{text RAG} and also none of the
|
| 312 | 1036 |
current precedences of the other threads. The current precedence of the created |
| 321 | 1037 |
thread @{text th} is just its precedence, namely the pair @{term "(prio, length (s::event list))"}.
|
| 312 | 1038 |
\smallskip |
1039 |
*} |
|
1040 |
(*<*) |
|
1041 |
end |
|
1042 |
context step_exit_cps |
|
1043 |
begin |
|
1044 |
(*>*) |
|
1045 |
text {*
|
|
1046 |
\noindent |
|
| 321 | 1047 |
\colorbox{mygrey}{@{term "Exit th"}:} We again assume that the current state @{text s'} and
|
| 312 | 1048 |
the next state @{term "s \<equiv> Exit th#s'"} are both valid. We can show that
|
1049 |
||
1050 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
1051 |
\begin{tabular}{@ {}l}
|
|
| 321 | 1052 |
@{thm eq_dep}, and\\
|
| 312 | 1053 |
@{thm[mode=IfThen] eq_cp}
|
1054 |
\end{tabular}
|
|
1055 |
\end{isabelle}
|
|
1056 |
||
1057 |
\noindent |
|
| 321 | 1058 |
This means again we do not have to recalculate the @{text RAG} and
|
1059 |
also not the current precedences for the other threads. Since @{term th} is not
|
|
| 312 | 1060 |
alive anymore in state @{term "s"}, there is no need to calculate its
|
1061 |
current precedence. |
|
1062 |
\smallskip |
|
1063 |
*} |
|
1064 |
(*<*) |
|
1065 |
end |
|
| 311 | 1066 |
context step_set_cps |
1067 |
begin |
|
1068 |
(*>*) |
|
| 312 | 1069 |
text {*
|
1070 |
\noindent |
|
| 321 | 1071 |
\colorbox{mygrey}{@{term "Set th prio"}:} We assume that @{text s'} and
|
| 312 | 1072 |
@{term "s \<equiv> Set th prio#s'"} are both valid. We can show that
|
| 311 | 1073 |
|
| 312 | 1074 |
\begin{isabelle}\ \ \ \ \ %%%
|
1075 |
\begin{tabular}{@ {}l}
|
|
| 321 | 1076 |
@{thm[mode=IfThen] eq_dep}, and\\
|
| 342 | 1077 |
@{thm[mode=IfThen] eq_cp_pre}
|
| 312 | 1078 |
\end{tabular}
|
1079 |
\end{isabelle}
|
|
| 311 | 1080 |
|
| 312 | 1081 |
\noindent |
| 342 | 1082 |
The first property is again telling us we do not need to change the @{text RAG}.
|
1083 |
The second shows that the @{term cp}-values of all threads other than @{text th}
|
|
1084 |
are unchanged. The reason is that @{text th} is running; therefore it is not in
|
|
1085 |
the @{term dependants} relation of any thread. This in turn means that the
|
|
1086 |
change of its priority cannot affect the threads. |
|
| 312 | 1087 |
|
| 342 | 1088 |
%The second |
1089 |
%however states that only threads that are \emph{not} dependants of @{text th} have their
|
|
1090 |
%current precedence unchanged. For the others we have to recalculate the current |
|
1091 |
%precedence. To do this we can start from @{term "th"}
|
|
1092 |
%and follow the @{term "depend"}-edges to recompute using Lemma~\ref{childrenlem}
|
|
1093 |
%the @{term "cp"} of every
|
|
1094 |
%thread encountered on the way. Since the @{term "depend"}
|
|
1095 |
%is assumed to be loop free, this procedure will always stop. The following two lemmas show, however, |
|
1096 |
%that this procedure can actually stop often earlier without having to consider all |
|
1097 |
%dependants. |
|
1098 |
% |
|
1099 |
%\begin{isabelle}\ \ \ \ \ %%%
|
|
1100 |
%\begin{tabular}{@ {}l}
|
|
1101 |
%@{thm[mode=IfThen] eq_up_self}\\
|
|
1102 |
%@{text "If"} @{thm (prem 1) eq_up}, @{thm (prem 2) eq_up} and @{thm (prem 3) eq_up}\\
|
|
1103 |
%@{text "then"} @{thm (concl) eq_up}.
|
|
1104 |
%\end{tabular}
|
|
1105 |
%\end{isabelle}
|
|
1106 |
% |
|
1107 |
%\noindent |
|
1108 |
%The first lemma states that if the current precedence of @{text th} is unchanged,
|
|
1109 |
%then the procedure can stop immediately (all dependent threads have their @{term cp}-value unchanged).
|
|
1110 |
%The second states that if an intermediate @{term cp}-value does not change, then
|
|
1111 |
%the procedure can also stop, because none of its dependent threads will |
|
1112 |
%have their current precedence changed. |
|
| 312 | 1113 |
\smallskip |
| 311 | 1114 |
*} |
1115 |
(*<*) |
|
1116 |
end |
|
1117 |
context step_v_cps_nt |
|
1118 |
begin |
|
1119 |
(*>*) |
|
1120 |
text {*
|
|
| 312 | 1121 |
\noindent |
| 321 | 1122 |
\colorbox{mygrey}{@{term "V th cs"}:} We assume that @{text s'} and
|
| 312 | 1123 |
@{term "s \<equiv> V th cs#s'"} are both valid. We have to consider two
|
1124 |
subcases: one where there is a thread to ``take over'' the released |
|
| 321 | 1125 |
resource @{text cs}, and one where there is not. Let us consider them
|
| 312 | 1126 |
in turn. Suppose in state @{text s}, the thread @{text th'} takes over
|
| 332 | 1127 |
resource @{text cs} from thread @{text th}. We can prove
|
| 311 | 1128 |
|
1129 |
||
| 312 | 1130 |
\begin{isabelle}\ \ \ \ \ %%%
|
1131 |
@{thm depend_s}
|
|
1132 |
\end{isabelle}
|
|
1133 |
||
1134 |
\noindent |
|
| 332 | 1135 |
which shows how the @{text RAG} needs to be changed. The next lemma suggests
|
| 312 | 1136 |
how the current precedences need to be recalculated. For threads that are |
1137 |
not @{text "th"} and @{text "th'"} nothing needs to be changed, since we
|
|
1138 |
can show |
|
1139 |
||
1140 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
1141 |
@{thm[mode=IfThen] cp_kept}
|
|
1142 |
\end{isabelle}
|
|
1143 |
||
1144 |
\noindent |
|
1145 |
For @{text th} and @{text th'} we need to use Lemma~\ref{childrenlem} to
|
|
| 331 | 1146 |
recalculate their current precedence since their children have changed. *}(*<*)end context step_v_cps_nnt begin (*>*)text {*
|
| 312 | 1147 |
\noindent |
1148 |
In the other case where there is no thread that takes over @{text cs}, we can show how
|
|
1149 |
to recalculate the @{text RAG} and also show that no current precedence needs
|
|
| 321 | 1150 |
to be recalculated. |
| 312 | 1151 |
|
1152 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
1153 |
\begin{tabular}{@ {}l}
|
|
1154 |
@{thm depend_s}\\
|
|
1155 |
@{thm eq_cp}
|
|
1156 |
\end{tabular}
|
|
1157 |
\end{isabelle}
|
|
| 311 | 1158 |
*} |
1159 |
(*<*) |
|
1160 |
end |
|
1161 |
context step_P_cps_e |
|
1162 |
begin |
|
1163 |
(*>*) |
|
1164 |
text {*
|
|
| 312 | 1165 |
\noindent |
| 321 | 1166 |
\colorbox{mygrey}{@{term "P th cs"}:} We assume that @{text s'} and
|
| 312 | 1167 |
@{term "s \<equiv> P th cs#s'"} are both valid. We again have to analyse two subcases, namely
|
| 342 | 1168 |
the one where @{text cs} is not locked, and one where it is. We treat the former case
|
| 312 | 1169 |
first by showing that |
1170 |
||
1171 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
1172 |
\begin{tabular}{@ {}l}
|
|
1173 |
@{thm depend_s}\\
|
|
1174 |
@{thm eq_cp}
|
|
1175 |
\end{tabular}
|
|
1176 |
\end{isabelle}
|
|
| 311 | 1177 |
|
| 312 | 1178 |
\noindent |
| 336 | 1179 |
This means we need to add a holding edge to the @{text RAG} and no
|
| 321 | 1180 |
current precedence needs to be recalculated.*}(*<*)end context step_P_cps_ne begin(*>*) text {*
|
| 312 | 1181 |
\noindent |
| 331 | 1182 |
In the second case we know that resource @{text cs} is locked. We can show that
|
| 312 | 1183 |
|
1184 |
\begin{isabelle}\ \ \ \ \ %%%
|
|
1185 |
\begin{tabular}{@ {}l}
|
|
1186 |
@{thm depend_s}\\
|
|
1187 |
@{thm[mode=IfThen] eq_cp}
|
|
1188 |
\end{tabular}
|
|
1189 |
\end{isabelle}
|
|
| 311 | 1190 |
|
| 312 | 1191 |
\noindent |
1192 |
That means we have to add a waiting edge to the @{text RAG}. Furthermore
|
|
| 321 | 1193 |
the current precedence for all threads that are not dependants of @{text th}
|
1194 |
are unchanged. For the others we need to follow the edges |
|
| 312 | 1195 |
in the @{text RAG} and recompute the @{term "cp"}. However, like in the
|
| 332 | 1196 |
case of @{text Set}, this operation can stop often earlier, namely when intermediate
|
| 312 | 1197 |
values do not change. |
| 311 | 1198 |
*} |
1199 |
(*<*) |
|
1200 |
end |
|
1201 |
(*>*) |
|
1202 |
text {*
|
|
| 312 | 1203 |
\noindent |
| 332 | 1204 |
As can be seen, a pleasing byproduct of our formalisation is that the properties in |
1205 |
this section closely inform an implementation of PIP, namely whether the |
|
| 321 | 1206 |
@{text RAG} needs to be reconfigured or current precedences need to
|
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
1207 |
be recalculated for an event. This information is provided by the lemmas we proved. |
| 311 | 1208 |
*} |
1209 |
||
|
298
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
1210 |
section {* Conclusion *}
|
|
f2e0d031a395
completed model section; vt has only state as argument
urbanc
parents:
297
diff
changeset
|
1211 |
|
| 300 | 1212 |
text {*
|
| 314 | 1213 |
The Priority Inheritance Protocol (PIP) is a classic textbook |
| 332 | 1214 |
algorithm used in many real-time operating systems in order to avoid the problem of |
| 315 | 1215 |
Priority Inversion. Although classic and widely used, PIP does have |
| 317 | 1216 |
its faults: for example it does not prevent deadlocks in cases where threads |
| 315 | 1217 |
have circular lock dependencies. |
| 300 | 1218 |
|
| 317 | 1219 |
We had two goals in mind with our formalisation of PIP: One is to |
| 315 | 1220 |
make the notions in the correctness proof by Sha et al.~\cite{Sha90}
|
| 317 | 1221 |
precise so that they can be processed by a theorem prover. The reason is |
1222 |
that a mechanically checked proof avoids the flaws that crept into their |
|
1223 |
informal reasoning. We achieved this goal: The correctness of PIP now |
|
| 315 | 1224 |
only hinges on the assumptions behind our formal model. The reasoning, which is |
| 342 | 1225 |
sometimes quite intricate and tedious, has been checked by Isabelle/HOL. |
1226 |
We can also confirm that Paulson's |
|
| 321 | 1227 |
inductive method for protocol verification~\cite{Paulson98} is quite
|
| 315 | 1228 |
suitable for our formal model and proof. The traditional application |
| 342 | 1229 |
area of this method is security protocols. |
| 301 | 1230 |
|
| 317 | 1231 |
The second goal of our formalisation is to provide a specification for actually |
1232 |
implementing PIP. Textbooks, for example \cite[Section 5.6.5]{Vahalia96},
|
|
| 315 | 1233 |
explain how to use various implementations of PIP and abstractly |
| 332 | 1234 |
discuss their properties, but surprisingly lack most details important for a |
1235 |
programmer who wants to implement PIP (similarly Sha et al.~\cite{Sha90}).
|
|
1236 |
That this is an issue in practice is illustrated by the |
|
| 315 | 1237 |
email from Baker we cited in the Introduction. We achieved also this |
| 317 | 1238 |
goal: The formalisation gives the first author enough data to enable |
1239 |
his undergraduate students to implement PIP (as part of their OS course) |
|
1240 |
on top of PINTOS, a small operating system for teaching |
|
| 315 | 1241 |
purposes. A byproduct of our formalisation effort is that nearly all |
| 314 | 1242 |
design choices for the PIP scheduler are backed up with a proved |
| 317 | 1243 |
lemma. We were also able to establish the property that the choice of |
1244 |
the next thread which takes over a lock is irrelevant for the correctness |
|
| 332 | 1245 |
of PIP. Earlier model checking approaches which verified particular implementations |
| 317 | 1246 |
of PIP \cite{Faria08,Jahier09,Wellings07} cannot
|
1247 |
provide this kind of ``deep understanding'' about the principles behind |
|
1248 |
PIP and its correctness. |
|
| 315 | 1249 |
|
| 343 | 1250 |
{\bf ??? rewrite the following slightly}
|
| 342 | 1251 |
|
| 315 | 1252 |
PIP is a scheduling algorithm for single-processor systems. We are |
| 316 | 1253 |
now living in a multi-processor world. So the question naturally |
| 318 | 1254 |
arises whether PIP has any relevance in such a world beyond |
1255 |
teaching. Priority Inversion certainly occurs also in |
|
| 321 | 1256 |
multi-processor systems. However, the surprising answer, according |
1257 |
to \cite{Steinberg10}, is that except for one unsatisfactory
|
|
1258 |
proposal nobody has a good idea for how PIP should be modified to |
|
1259 |
work correctly on multi-processor systems. The difficulties become |
|
| 333 | 1260 |
clear when considering the fact that releasing and re-locking a resource always |
| 321 | 1261 |
requires a small amount of time. If processes work independently, |
1262 |
then a low priority process can ``steal'' in such an unguarded |
|
| 332 | 1263 |
moment a lock for a resource that was supposed to allow a high-priority |
| 321 | 1264 |
process to run next. Thus the problem of Priority Inversion is not |
| 332 | 1265 |
really prevented by the classic PIP. It seems difficult to design a PIP-algorithm with |
| 321 | 1266 |
a meaningful correctness property on a multi-processor systems where |
1267 |
processes work independently. We can imagine PIP to be of use in |
|
1268 |
situations where processes are \emph{not} independent, but
|
|
1269 |
coordinated via a master process that distributes work over some |
|
| 332 | 1270 |
slave processes. However, a formal investigation of this idea is beyond |
| 321 | 1271 |
the scope of this paper. We are not aware of any proofs in this |
| 332 | 1272 |
area, not even informal or flawed ones. |
| 265 | 1273 |
|
| 321 | 1274 |
The most closely related work to ours is the formal verification in |
| 342 | 1275 |
PVS of the Priority Ceiling Protocol done by Dutertre |
1276 |
\cite{dutertre99b}---another solution to the Priority Inversion
|
|
1277 |
problem, which however needs static analysis of programs in order to |
|
| 343 | 1278 |
avoid it. {\bf ??? mention model-checking approaches}
|
| 342 | 1279 |
|
1280 |
Our formalisation |
|
| 321 | 1281 |
consists of around 210 lemmas and overall 6950 lines of readable Isabelle/Isar |
1282 |
code with a few apply-scripts interspersed. The formal model of PIP |
|
1283 |
is 385 lines long; the formal correctness proof 3800 lines. Some auxiliary |
|
| 332 | 1284 |
definitions and proofs span over 770 lines of code. The properties relevant |
1285 |
for an implementation require 2000 lines. The code of our formalisation |
|
1286 |
can be downloaded from |
|
|
339
b3add51e2e0f
added some of the comments of the reviewers and made it compile with current Isabelle
urbanc
parents:
337
diff
changeset
|
1287 |
\url{http://www.inf.kcl.ac.uk/staff/urbanc/pip.html}.
|
| 321 | 1288 |
|
| 343 | 1289 |
{\bf ??? say:
|
| 342 | 1290 |
So this paper is a good witness for one |
1291 |
of the major reasons to be interested in machine checked reasoning: |
|
1292 |
gaining deeper understanding of the subject matter. |
|
1293 |
} |
|
1294 |
||
1295 |
||
| 321 | 1296 |
\bibliographystyle{plain}
|
1297 |
\bibliography{root}
|
|
| 262 | 1298 |
*} |
1299 |
||
| 264 | 1300 |
|
1301 |
(*<*) |
|
1302 |
end |
|
| 262 | 1303 |
(*>*) |